gem-graph-server/include/base.h

154 lines
3.9 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-06-09 14:40:23 +02:00
#define BASE_H
2021-06-08 20:15:47 +02:00
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 15:11:06 +02:00
#define LOGMSG "[%s]"
#define printLog(FORMAT, ...) printf(LOGMSG " " FORMAT, __func__, ##__VA_ARGS__)
2021-06-17 21:34:50 +02:00
#define LEN(x) (sizeof(x) / sizeof((x)[0]))
/* -------------------------------------------------------------------------- */
2021-06-11 12:23:16 +02:00
//
// Scheduler
//
struct {
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-11 12:52:36 +02:00
pthread_t *id;
2021-06-15 23:26:27 +02:00
bool pleaseStop;
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 {
2021-06-11 16:50:38 +02:00
pthread_t *id;
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;
bool pleaseStop;
} typedef Server_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;
bool pleaseStop;
int *workerCreationOccurency;
} typedef Supervisor_t;
/* -------------------------------------------------------------------------- */
2021-06-21 14:26:09 +02:00
//
// Model
//
struct {
int id;
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-06-23 14:16:45 +02:00
Scheduler_t *scheduler;
Supervisor_t *supervisor;
2021-06-21 14:26:09 +02:00
} typedef Model_t;