gem-graph-server/include/base.h

196 lines
4.8 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__)
#define LEN(x) (sizeof(x) / sizeof((x)[0]))
/* -------------------------------------------------------------------------- */
2021-06-16 13:06:23 +02:00
struct {
size_t size;
int *space;
} typedef IntArray_t;
struct {
int x;
int y;
int z;
2021-06-21 14:26:09 +02:00
int siteId;
} typedef Arrow_t;
2021-06-16 12:42:19 +02:00
struct {
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 {
char *label;
2021-06-23 14:16:45 +02:00
int nArrow;
2021-06-16 12:42:19 +02:00
} typedef Site_t;
struct {
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;
2021-06-08 20:15:47 +02:00
struct {
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 {
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 {
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;
2021-06-23 11:37:47 +02:00
IntArray_t *conditionTree;
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 {
pthread_t id;
2021-06-16 18:10:04 +02:00
bool pleaseStop;
2021-07-09 20:42:44 +02:00
int returnValue;
2021-07-09 02:53:54 +02:00
int sockfd;
2021-06-16 18:10:04 +02:00
} typedef Server_t;
2021-06-21 14:26:09 +02:00
2021-07-08 18:14:46 +02:00
struct {
2021-07-08 18:35:14 +02:00
pthread_t id;
2021-07-08 18:14:46 +02:00
bool pleaseStop;
2021-07-09 02:53:54 +02:00
Server_t *parent;
2021-07-08 18:35:14 +02:00
int sockfd;
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 {
pthread_t id;
2021-06-23 14:16:45 +02:00
bool pleaseStop;
int *workerCreationOccurency;
} typedef Supervisor_t;
/* -------------------------------------------------------------------------- */
2021-06-21 14:26:09 +02:00
//
// Model
//
struct {
int id;
2021-06-30 15:46:18 +02:00
char *name;
2021-08-24 12:09:54 +02:00
char *author;
time_t date;
char *version;
2021-08-20 16:10:18 +02:00
char *filename;
2021-08-24 12:09:54 +02:00
bool validated;
2021-06-23 14:16:45 +02:00
int space_xMax;
int space_yMax;
int space_zMax;
int nmaxThread;
int nmaxCycles;
2021-06-21 14:26:09 +02:00
int siteNumber;
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 {
2021-08-24 12:09:54 +02:00
bool mandatory;
char tag[25];
2021-08-24 00:41:49 +02:00
char *value;
size_t valueSize;
2021-08-24 00:41:49 +02:00
struct ModelField_t *son;
struct ModelField_t *next;
} typedef ModelField_t;
/* -------------------------------------------------------------------------- */
//
// Parameters
//
struct {
char *configDir;
char *modelDir;
char *userDir;
} typedef Parameters_t;