gem-graph-server/include/model.h

194 lines
7.1 KiB
C
Raw Permalink Normal View History

2021-06-21 14:26:09 +02:00
//=-------------------------------------------------------------------------=//
// Model definitions //
// //
// Copyright © 2021 Libre en Communs (contact@a-lec.org) //
// Copyright © 2021 Adrien Bourmault (neox@a-lec.org) //
2021-06-21 14:26:09 +02:00
// //
// This file is part of gem-graph. //
// //
// This program is free software: you can redistribute it and/or modify //
// it under the terms of the GNU Affero General Public License as //
// published by the Free Software Foundation, either version 3 of the //
// License, or (at your option) any later version. //
// //
// This program is distributed in the hope that it will be useful, //
// but WITHOUT ANY WARRANTY; without even the implied warranty of //
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the //
// GNU Affero General Public License for more details. //
// //
// You should have received a copy of the GNU Affero General Public License //
// along with this program. If not, see <https://www.gnu.org/licenses/>. //
//=-------------------------------------------------------------------------=//
#pragma once
2021-06-21 14:26:09 +02:00
#ifndef BASE_H
#include "../include/base.h"
#endif
#include <dirent.h>
#include <signal.h>
#include <string.h>
#include <stdlib.h>
2024-03-13 19:10:10 +01:00
#include <libxml/parser.h>
#include <libxml/xmlschemas.h>
2024-03-20 22:59:00 +01:00
#include "../include/arrows.h"
/* -------------------------------------------------------------------------- */
#define MODEL_STRING_SIZE 64
#define MAX_MODEL_NUMBER 1
#define ARROW_NUMBER 6
#define SITE_NUMBER 2
#define MAX_CYCLES 10
#define MAX_THREAD 0
#define XMAX 39
#define YMAX 0
#define ZMAX 0
#define SPACE_SIZE (XMAX+1) * (YMAX+1) * (ZMAX+1)
/* -------------------------------------------------------------------------- */
2024-03-20 22:59:00 +01:00
struct space_unit_t
{
2024-03-22 00:07:07 +01:00
uint id;
struct arrow_t *sites[]; // Array of struct arrow_t elements
2024-03-20 22:59:00 +01:00
// - lenght is multiplicity
};
struct space_t
{
// Dimensions of space.
int x_dim;
int y_dim;
int z_dim;
struct space_unit_t *units; // (flat) arraw of space_unit_t elements :
// - lenght is x_dim * y_dim * z_dim
// - access to the (x,y,z) is done by
// units[ x
// + dim_x * y
// + dim_x * dim_y * z ]
};
struct state_t
{
// Metadata
2024-03-21 01:09:00 +01:00
char id[25];
2024-03-20 22:59:00 +01:00
int owner_id;
time_t date;
struct space_t *space;
2024-03-21 02:05:04 +01:00
struct arrow_t *arrows;
2024-03-20 22:59:00 +01:00
};
2024-03-21 01:09:00 +01:00
struct model_t
{
2024-03-20 22:59:00 +01:00
// Metadata
2024-03-21 01:09:00 +01:00
char id;
2024-03-20 22:59:00 +01:00
int owner_id;
time_t date;
union version
{
int major;
int minor;
};
// XML handlers
2024-03-21 01:09:00 +01:00
xmlDocPtr doc;
xmlHashTablePtr hashtable;
2024-03-20 22:59:00 +01:00
// User friendly metadata
char *owner_name;
char *model_name;
2024-03-21 01:09:00 +01:00
char *filename;
2024-03-20 22:59:00 +01:00
// Model parameters
int multiplicity; // number of sites in a space_unit
int dimension; // number of space dimensions
// Simulation parameters
int max_thread;
int max_cycles;
// Handler to the current space of the model
struct space_t *space;
2024-03-21 02:05:04 +01:00
// Handler to the conditions
struct condition_t *conditions;
2024-03-21 01:09:00 +01:00
// Handler to the arrows
struct arrow_t *arrows;
size_t n_arrows;
// Handler to the saved states array
struct state_t *states;
size_t n_states;
2024-03-21 02:05:04 +01:00
struct model_t *next;
struct model_t *prev;
2024-03-20 22:59:00 +01:00
};
// -------------------------------------------------------------------------- //
// Model init function (and model discovery) //
// -------------------------------------------------------------------------- //
2024-03-21 01:09:00 +01:00
void model_system_init (struct parameters_t *parameters);
2021-06-23 09:13:46 +02:00
// -------------------------------------------------------------------------- //
// Model stopping function //
// -------------------------------------------------------------------------- //
2024-03-21 02:05:04 +01:00
void model_system_shutdown (void);
2021-06-23 09:13:46 +02:00
// -------------------------------------------------------------------------- //
// Load a model ready to execute //
// -------------------------------------------------------------------------- //
2024-03-21 01:09:00 +01:00
bool model_load (struct model_t *self);
2024-03-15 22:10:10 +01:00
// -------------------------------------------------------------------------- //
// Unload a model //
// -------------------------------------------------------------------------- //
2024-03-13 19:10:10 +01:00
// int model_unload (int id);
2021-06-23 14:16:45 +02:00
// -------------------------------------------------------------------------- //
// Add a model to the known model list //
// -------------------------------------------------------------------------- //
2024-03-13 19:10:10 +01:00
// void model_add_to_known (model_t **newModel);
2021-06-23 17:07:43 +02:00
// -------------------------------------------------------------------------- //
// Print informations about all models (known and loaded) to the client //
// -------------------------------------------------------------------------- //
2024-03-13 19:10:10 +01:00
// void print_models (char *buf);
2021-07-07 19:46:23 +02:00
// -------------------------------------------------------------------------- //
// Launch a model execution //
// -------------------------------------------------------------------------- //
2024-03-13 19:10:10 +01:00
// int model_run (int id);
2021-06-23 17:07:43 +02:00
// -------------------------------------------------------------------------- //
// Stop a model execution //
// -------------------------------------------------------------------------- //
2024-03-13 19:10:10 +01:00
// int model_stop (int id);
2021-06-23 17:07:43 +02:00
// -------------------------------------------------------------------------- //
// Stop and unload all loaded or running model //
// -------------------------------------------------------------------------- //
2024-03-13 19:10:10 +01:00
// void model_shutdown (void);
2024-03-15 22:10:10 +01:00
// -------------------------------------------------------------------------- //
// Parsing primitives //
// -------------------------------------------------------------------------- //
2024-03-20 22:59:00 +01:00
char model_get_dim(struct model_t *self);
2024-03-15 22:10:10 +01:00
2024-03-20 22:59:00 +01:00
long model_get_dim_value(struct model_t *self, const char *axis);
2024-03-15 22:10:10 +01:00
2024-03-20 22:59:00 +01:00
char model_get_multiplicity(struct model_t *self);
2024-03-15 22:10:10 +01:00
2024-03-20 22:59:00 +01:00
bool model_get_next_state(struct model_t *self, char *new_state_id);
2024-03-15 22:10:10 +01:00
2024-03-20 22:59:00 +01:00
bool model_get_next_arrow(struct model_t *self,
struct arrow_t *new_arrow,
2024-03-15 22:10:10 +01:00
const char *state_id,
char dimension);