gem-graph-server/include/base.h

202 lines
5.6 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 The Gem-graph Project //
// //
// 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>
2021-06-09 14:40:23 +02:00
#include <pthread.h>
#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>
2021-06-09 14:40:23 +02:00
#define BASE_H
2021-06-08 20:15:47 +02:00
/* -------------------------------------------------------------------------- */
#define LOGMSG "[%s]"
#define printLog(FORMAT, ...) printf("\e[0m" LOGMSG " " FORMAT "\e[0m", \
__func__, ##__VA_ARGS__)
2021-09-22 16:43:01 +02:00
#define printErr(FORMAT,...) fprintf(stderr, "\e[0m" LOGMSG " " FORMAT "\e[0m",\
2021-09-21 22:39:24 +02:00
__func__, ##__VA_ARGS__)
#define LEN(x) (sizeof(x) / sizeof((x)[0]))
/* -------------------------------------------------------------------------- */
struct IntArray_t {
2021-06-16 13:06:23 +02:00
size_t size;
int *space;
} typedef IntArray_t;
struct Arrow_t {
int x;
int y;
int z;
2021-06-21 14:26:09 +02:00
int siteId;
} typedef Arrow_t;
struct ArrowArray_t {
2021-06-16 12:42:19 +02:00
size_t size;
2021-06-23 09:13:46 +02:00
pthread_spinlock_t lock;
2021-06-16 12:42:19 +02:00
Arrow_t *array;
} typedef ArrowArray_t;
struct Site_t {
2021-06-16 12:42:19 +02:00
char *label;
2021-06-23 14:16:45 +02:00
int nArrow;
2021-06-16 12:42:19 +02:00
} typedef Site_t;
struct SpaceUnit_t {
2021-06-23 14:16:45 +02:00
int nSite;
2021-06-16 12:42:19 +02:00
char *label;
Site_t *sites;
} typedef SpaceUnit_t;
struct Space_t {
2021-06-23 14:16:45 +02:00
int xMax;
int yMax;
int zMax;
2021-06-08 20:15:47 +02:00
size_t size;
2021-06-16 12:42:19 +02:00
SpaceUnit_t *space;
} typedef Space_t;
2021-06-08 20:15:47 +02:00
/* -------------------------------------------------------------------------- */
2021-06-11 12:23:16 +02:00
//
// Scheduler
//
struct Scheduler_t {
pthread_t id;
bool pleaseStop;
2021-06-16 12:42:19 +02:00
Space_t *globalDrawingSpace;
2021-06-23 11:37:47 +02:00
IntArray_t *conditionTree;
2021-06-23 09:13:46 +02:00
ArrowArray_t *arrowArray;
2021-06-23 14:16:45 +02:00
int nMaxThread;
int nMaxCycles;
int ruleRadius;
2021-06-14 18:33:13 +02:00
} typedef Scheduler_t;
2021-06-11 12:23:16 +02:00
/* -------------------------------------------------------------------------- */
2021-06-11 14:30:26 +02:00
2021-06-11 12:23:16 +02:00
//
// Local threads
//
2021-06-11 16:50:38 +02:00
struct Center_t {
int x;
int y;
int z;
struct Center_t *next;
struct Center_t *prev;
2021-06-11 12:23:16 +02:00
} typedef Center_t;
struct Worker_t {
pthread_t id;
2021-06-11 16:50:38 +02:00
Center_t *localWorkAreaCenter;
2021-06-19 16:32:39 +02:00
Space_t *globalDrawingSpace;
IntArray_t *conditionTree; // XXX
2021-06-23 09:13:46 +02:00
ArrowArray_t *arrowArray;
2021-06-15 23:26:27 +02:00
bool pleaseStop;
bool terminated;
int returnValue;
} typedef Worker_t;
2021-06-16 18:10:04 +02:00
/* -------------------------------------------------------------------------- */
//
// Server
//
struct Server_t {
pthread_t id;
2021-06-16 18:10:04 +02:00
bool pleaseStop;
2021-07-09 20:42:44 +02:00
int returnValue;
int sockfd; // Socket file descriptor
2021-06-16 18:10:04 +02:00
} typedef Server_t;
2021-06-21 14:26:09 +02:00
struct ServerCommunication_t {
2021-07-08 18:35:14 +02:00
pthread_t id;
2021-07-08 18:14:46 +02:00
bool pleaseStop;
Server_t *associatedServer;
int sockfd; // Socket file descriptor
2021-07-09 20:34:32 +02:00
struct sockaddr_in clientAddr;
socklen_t sockLen;
2021-07-08 18:14:46 +02:00
} typedef ServerCommunication_t;
2021-06-21 14:26:09 +02:00
/* -------------------------------------------------------------------------- */
2021-06-23 14:16:45 +02:00
//
2021-06-23 17:07:43 +02:00
// Supervisor
2021-06-23 14:16:45 +02:00
//
struct Supervisor_t {
pthread_t id;
2021-06-23 14:16:45 +02:00
bool pleaseStop;
int *workerCreationOccurency; // XXX ???
2021-06-23 14:16:45 +02:00
} typedef Supervisor_t;
/* -------------------------------------------------------------------------- */
2021-06-21 14:26:09 +02:00
//
// Model
//
struct Model_t {
// Identity
2021-06-21 14:26:09 +02:00
int id;
bool validated; // true if model has been correctly parsed
2021-06-30 15:46:18 +02:00
char *name;
char *owner;
char *owner_id;
2021-08-24 12:09:54 +02:00
time_t date;
char *version;
2021-08-20 16:10:18 +02:00
char *filename;
// Parameters
2021-09-19 19:13:10 +02:00
int space_xMax; // TODO more than 3 dimension ?
2021-06-23 14:16:45 +02:00
int space_yMax;
int space_zMax;
int nmaxThread;
int nmaxCycles;
2021-06-21 14:26:09 +02:00
int siteNumber;
// Model instance
2021-07-12 17:54:57 +02:00
bool isRunning;
2021-06-23 14:16:45 +02:00
Scheduler_t *scheduler;
Supervisor_t *supervisor;
2021-06-21 14:26:09 +02:00
} typedef Model_t;
2021-08-24 00:41:49 +02:00
struct ModelField_t {
bool mandatory; // true if field must exist in file
char tag[25]; // XML tag attached to that field
char *destination; // data destination of that field
size_t size; // max size of data allowed
struct ModelField_t *son; // son in XML tree
struct ModelField_t *next; // brother in XML tree
2021-08-24 00:41:49 +02:00
} typedef ModelField_t;
/* -------------------------------------------------------------------------- */
//
// Parameters
//
struct Parameters_t {
char *configDir;
char *modelDir;
char *userDir;
} typedef Parameters_t;