2021-06-11 14:02:40 +02:00
|
|
|
//=-------------------------------------------------------------------------=//
|
|
|
|
// Local worker module //
|
|
|
|
// //
|
|
|
|
// 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-11 14:07:13 +02:00
|
|
|
|
|
|
|
#include "../include/base.h"
|
|
|
|
|
2021-06-16 11:33:36 +02:00
|
|
|
static void *workerMain(void *worker);
|
2021-06-11 14:07:13 +02:00
|
|
|
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
// -------------------------------------------------------------------------- //
|
|
|
|
// Scheduler init function //
|
|
|
|
// -------------------------------------------------------------------------- //
|
2021-06-21 10:34:11 +02:00
|
|
|
void WorkerInit(Worker_t *worker)
|
2021-06-11 14:07:13 +02:00
|
|
|
{
|
2021-06-16 18:10:04 +02:00
|
|
|
worker->id = (pthread_t*) calloc(1, sizeof(pthread_t));
|
2021-06-16 11:33:36 +02:00
|
|
|
if (pthread_create(worker->id, NULL, workerMain, worker)) {
|
2021-06-15 23:26:27 +02:00
|
|
|
printLog("Worker #%lu can't be initialized!\n", *(worker->id));
|
2021-06-23 15:06:33 +02:00
|
|
|
return;
|
2021-06-15 23:26:27 +02:00
|
|
|
}
|
2021-06-11 14:07:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// -------------------------------------------------------------------------- //
|
|
|
|
// Scheduler thread main function //
|
|
|
|
// -------------------------------------------------------------------------- //
|
2021-06-16 11:33:36 +02:00
|
|
|
static void *workerMain(void *worker)
|
2021-06-11 14:07:13 +02:00
|
|
|
{
|
2021-06-15 23:26:27 +02:00
|
|
|
Worker_t *args;
|
2021-06-15 23:46:18 +02:00
|
|
|
int a = rand()%__INT_MAX__;
|
2021-06-15 23:26:27 +02:00
|
|
|
|
|
|
|
args = (Worker_t*) worker;
|
|
|
|
printLog("Worker #%lu online\n", *args->id);
|
2021-06-11 14:07:13 +02:00
|
|
|
|
2021-06-23 15:06:33 +02:00
|
|
|
int size = args->globalDrawingSpace->size;
|
|
|
|
/* In each cell: the West (left) site is 0, the East (right) site is 1 */
|
|
|
|
for (int orig=0; orig < size; orig++){
|
|
|
|
int nxt1 = (orig + 1) % size,
|
|
|
|
nxt2 = (orig + 2) % size,
|
|
|
|
prv1 = (orig - 1 + size) % size;
|
|
|
|
|
|
|
|
if(
|
|
|
|
args->globalDrawingSpace->space[orig].sites[1].nArrow == 1
|
|
|
|
&& args->globalDrawingSpace->space[nxt2].sites[0].nArrow == 0
|
|
|
|
|
|
|
|
) {
|
|
|
|
args->globalDrawingSpace->space[orig].sites[1].nArrow = 0;
|
|
|
|
args->globalDrawingSpace->space[nxt1].sites[0].nArrow = 0;
|
|
|
|
args->globalDrawingSpace->space[nxt1].sites[1].nArrow = 1;
|
|
|
|
args->globalDrawingSpace->space[nxt2].sites[0].nArrow = 1;
|
|
|
|
|
|
|
|
/* TODO args->arrowArray->array[1].siteId = 0;*/
|
|
|
|
}
|
|
|
|
|
|
|
|
else if(
|
|
|
|
args->globalDrawingSpace->space[orig].sites[1].nArrow == 1
|
|
|
|
&& args->globalDrawingSpace->space[prv1].sites[0].nArrow == 0
|
|
|
|
|
|
|
|
) {
|
|
|
|
args->globalDrawingSpace->space[orig].sites[1].nArrow = 0;
|
|
|
|
args->globalDrawingSpace->space[nxt1].sites[0].nArrow = 0;
|
|
|
|
args->globalDrawingSpace->space[orig].sites[0].nArrow = 1;
|
|
|
|
args->globalDrawingSpace->space[prv1].sites[1].nArrow = 1;
|
|
|
|
|
|
|
|
/* TODO args->arrowArray->array[1].siteId = 0;*/
|
2021-06-11 14:07:13 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-16 00:09:35 +02:00
|
|
|
args->returnValue = a;
|
2021-06-15 23:26:27 +02:00
|
|
|
args->terminated = true;
|
|
|
|
|
|
|
|
printLog("Worker #%lu offline\n", *args->id);
|
|
|
|
|
2021-06-11 14:07:13 +02:00
|
|
|
return NULL;
|
|
|
|
}
|