gem-graph-server/include/base.h

146 lines
4.2 KiB
C
Raw Normal View History

2021-06-08 20:15:47 +02:00
//=-------------------------------------------------------------------------=//
2021-06-09 14:40:23 +02:00
// base definition //
2021-06-08 20:15:47 +02:00
// //
// Copyright © 2021 Libre en Communs (contact@a-lec.org) //
// Copyright © 2021 Adrien Bourmault (neox@a-lec.org) //
2021-06-08 20:15:47 +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-06-16 19:44:48 +02:00
#include <sys/param.h>
2021-06-08 20:15:47 +02:00
#include <stdbool.h>
2024-03-13 19:10:10 +01:00
#include <assert.h>
2021-06-09 14:40:23 +02:00
#include <unistd.h>
#include <malloc.h>
2021-06-11 15:11:06 +02:00
#include <string.h>
2021-06-11 17:39:34 +02:00
#include <stdlib.h>
2021-06-16 19:44:48 +02:00
#include <errno.h>
#include <stdio.h>
2021-07-09 20:34:32 +02:00
#include <netinet/in.h>
2024-03-15 22:10:10 +01:00
#include <omp.h>
2021-06-09 14:40:23 +02:00
#define BASE_H
2021-06-08 20:15:47 +02:00
/* -------------------------------------------------------------------------- */
2024-03-13 19:10:10 +01:00
#define LOGMSG "<%s:%s()>"
2024-03-15 22:10:10 +01:00
#define printlog(FORMAT, ...) printf("\e[0;36m" LOGMSG "\e[0m" " " FORMAT \
"\e[0m", __FILE__,__func__, ##__VA_ARGS__)
#define printerr(FORMAT,...) fprintf(stderr, "\e[0;31m" LOGMSG "\e[0m" " " \
FORMAT "\e[0m", __FILE__,__func__, \
##__VA_ARGS__)
#define LEN(x) (sizeof(x) / sizeof((x)[0]))
/* -------------------------------------------------------------------------- */
2024-03-13 19:10:10 +01:00
struct parameters_t
{
char *configDir;
char *userDir;
char *modelDir;
};
2021-06-16 13:06:23 +02:00
2024-03-13 19:10:10 +01:00
/*
* Structure describing an arrow
*/
struct arrow_t {
uint load;
uint site;
uint x;
uint y;
uint z;
};
2024-03-14 22:15:18 +01:00
2024-03-15 22:10:10 +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;
};
2024-03-14 22:15:18 +01:00
struct model_t {
2024-03-15 22:10:10 +01:00
// Metadata
2024-03-14 22:15:18 +01:00
int id;
2024-03-15 22:10:10 +01:00
int owner_id;
time_t date;
union version
{
int major;
int minor;
};
// 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;
};
struct worker_t
{
int id;
int status;
};
2024-03-14 22:15:18 +01:00
struct scheduler_t
{
int id;
2024-03-15 22:10:10 +01:00
struct model_t **model; // Queue (array) of waiting models
2024-03-14 22:15:18 +01:00
};