2021-06-21 14:26:09 +02:00
|
|
|
//=-------------------------------------------------------------------------=//
|
|
|
|
// Model definitions //
|
|
|
|
// //
|
2021-10-13 09:44:00 +02:00
|
|
|
// 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/>. //
|
|
|
|
//=-------------------------------------------------------------------------=//
|
|
|
|
|
2021-09-15 18:25:35 +02:00
|
|
|
#pragma once
|
2021-06-21 14:26:09 +02:00
|
|
|
#ifndef BASE_H
|
|
|
|
#include "../include/base.h"
|
|
|
|
#endif
|
|
|
|
|
2021-09-18 01:00:48 +02:00
|
|
|
#include <dirent.h>
|
|
|
|
#include <signal.h>
|
2024-03-10 21:19:12 +01:00
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
2024-03-13 19:10:10 +01:00
|
|
|
#include <libxml/parser.h>
|
|
|
|
#include <libxml/xmlschemas.h>
|
2021-09-18 01:00:48 +02:00
|
|
|
|
2024-03-20 22:59:00 +01:00
|
|
|
#include "../include/arrows.h"
|
|
|
|
|
2021-09-02 16:54:42 +02:00
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
|
2021-09-18 01:00:48 +02:00
|
|
|
#define MODEL_STRING_SIZE 64
|
2021-09-17 16:14:04 +02:00
|
|
|
#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
|
|
|
|
{
|
|
|
|
bool lock;
|
|
|
|
struct arrow_t **sites; // Array of struct arrow_t* elements
|
|
|
|
// - lenght is multiplicity
|
|
|
|
};
|
|
|
|
|
|
|
|
struct space_t
|
|
|
|
{
|
|
|
|
// Dimensions of space.
|
|
|
|
// Note that a value 0 is not allowed, minimum is 1
|
|
|
|
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
|
|
|
|
int id;
|
|
|
|
int owner_id;
|
|
|
|
time_t date;
|
|
|
|
|
|
|
|
struct space_t *space;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct model_t {
|
|
|
|
|
|
|
|
// Metadata
|
|
|
|
int id;
|
|
|
|
int owner_id;
|
|
|
|
time_t date;
|
|
|
|
union version
|
|
|
|
{
|
|
|
|
int major;
|
|
|
|
int minor;
|
|
|
|
};
|
|
|
|
|
|
|
|
// XML handlers
|
|
|
|
xmlDocPtr model;
|
|
|
|
xmlHashTablePtr model_hashtable;
|
|
|
|
|
|
|
|
// User friendly metadata
|
|
|
|
char *owner_name;
|
|
|
|
char *model_name;
|
|
|
|
|
|
|
|
// 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;
|
|
|
|
|
|
|
|
// Handler to the saved states of the model
|
|
|
|
struct state_t **states;
|
|
|
|
};
|
|
|
|
|
2021-09-02 16:54:42 +02:00
|
|
|
// -------------------------------------------------------------------------- //
|
|
|
|
// Model init function (and model discovery) //
|
|
|
|
// -------------------------------------------------------------------------- //
|
2024-03-13 19:10:10 +01:00
|
|
|
// void model_system_init (parameters_t *parameters);
|
2021-06-23 09:13:46 +02:00
|
|
|
|
2021-09-02 16:54:42 +02:00
|
|
|
// -------------------------------------------------------------------------- //
|
|
|
|
// Model stopping function //
|
|
|
|
// -------------------------------------------------------------------------- //
|
2024-03-13 19:10:10 +01:00
|
|
|
// void model_system_shutdown (void);
|
2021-06-23 09:13:46 +02:00
|
|
|
|
2021-09-02 16:54:42 +02:00
|
|
|
// -------------------------------------------------------------------------- //
|
|
|
|
// Load a model ready to execute //
|
|
|
|
// -------------------------------------------------------------------------- //
|
2024-03-13 19:10:10 +01:00
|
|
|
// int model_load (int id);
|
2021-06-23 09:13:46 +02:00
|
|
|
|
2024-03-20 22:59:00 +01:00
|
|
|
bool model_init(struct model_t *self,
|
|
|
|
const char *content,
|
|
|
|
size_t length,
|
|
|
|
const char *basename);
|
2024-03-15 22:10:10 +01:00
|
|
|
|
2021-09-02 16:54:42 +02: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
|
|
|
|
2024-03-20 22:59:00 +01:00
|
|
|
bool model_shutdown(struct model_t *self);
|
2024-03-15 22:10:10 +01:00
|
|
|
|
2021-09-02 16:54:42 +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
|
|
|
|
2021-09-02 16:54:42 +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
|
|
|
|
2021-09-02 16:54:42 +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
|
|
|
|
2021-09-02 16:54:42 +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
|
|
|
|
2021-09-02 16:54:42 +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);
|