-
Notifications
You must be signed in to change notification settings - Fork 0
/
functions.c
485 lines (398 loc) · 15.1 KB
/
functions.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
/**
* @file functions.c
* @author Richard Kocián (xkocia19)
* @brief Knihovna funkcí pro proj2.c
*/
#include <stdbool.h>
#include <stdio.h>
#include <semaphore.h>
#include <stdlib.h>
#include <sys/mman.h>
#include <ctype.h>
#include <string.h>
#include <unistd.h>
#include <sys/wait.h>
#include <fcntl.h>
/**
* @brief Funkce pro prvotní inicializaci semaforů, sdílenné paměti a pro otevření výstupního souboru
*/
void init();
/**
* @brief Funkce pro zjištění, zda je zadaný string číslem
*
* @param text Vstupní sring
* @return true Vstupní string je číslo
* @return false Vstupní string není číslo
*/
bool isInputNumber(char *text);
/**
* @brief Funkce pro validaci a zapsání argumentů do proměnných
*
* @param argc Počet argumentů
* @param argv Pole stringů argumentů
* @return -1 Při validaci argumentů došlo k chybě
* @return 0 Validace argumentů proběhla v pořádku
*/
int validateArguments(int argc, char *argv[]);
/**
* @brief Funkce pro proces kyslíku
*/
void oxygen();
/**
* @brief Funkce pro proces vodíku
*/
void hydrogen();
/**
* @brief Funkce pro zajištění čekání procesů před barrierů a jejich vypuštění při správném
* počtu vodíků a kyslíků
*
* @param element Znak prvku (O = kyslík, H = vodík)
* @param ID ID prvku
* @param moleculeID ID molekuly
*/
void barrierQueue(char element, int ID, int moleculeID);
/**
* @brief Funkce pro výpis vytváření molekuly
*
* @param element Znak prvku (O = kyslík, H = vodík)
* @param ID ID prvku
* @param moleculeID ID molekuly
*/
void creatingMolecule(char element, int ID, int moleculeID);
/**
* @brief Funkce pro výpis, že je molekula vytvořena
*
* @param element Znak prvku (O = kyslík, H = vodík)
* @param ID ID prvku
* @param moleculeID ID molekuly
*/
void createdMolecule(char element, int ID, int moleculeID);
/**
* @brief Funkce pro uvolnění vodíků a kyslíků z fronty, pokud již nemají dostatek atomů pro vytvoření molekuly
*/
void postRemainingProcesses(int moleculeID);
/**
* @brief Funkce pro unlikování semaforů, zavření otevřeného souboru a unmapování sdílené struktury
*/
void clean();
/**
* @brief Funkce rpo zavření všech semaforů
*/
void closeSemaphores();
/**
* @brief Struktura sdílených porměnných
*/
typedef struct {
int oxygenID;
int hydrogenID;
int moleculeID; // ID molekuly, počet vytvořených molekul
int printCounter; // Počet vypsaných řádků
int oxygenQueueCount; // Počet kyslíků ve frontě
int hydrogenQueueCount; // Počet vodíků ve frontě
int barrierQueueOxygens; // Počet kyslíků ve frontě před čekáním v semaforu barrier
int barrierQueueHydrogens; // Počet vodíků ve frontě před čekáním v semaforu barrier
bool isLastMoleculeCreated; // Indikace, že již byla vytvořena poslední molekula, kterou je možno vytvořit
int creatingMoleculesAtomsCount; // Počet prvků, které aktuálně vytvářejí molekulu
} sharedMemory;
sharedMemory *sharedValues;
sem_t *writingSemaphore = NULL; // semafor pro zápis do proj2.out
sem_t *mutex = NULL; // semafor pro zajištění správného uvolňování prvků z fronty
sem_t *hydrogenQueueSemaphore = NULL; // fronta vodíků
sem_t *oxygenQueueSemaphore = NULL; // fronta kyslíků
sem_t *barrier = NULL; // bariéra zajišťující vypuštění prvků dané molekuly najednou, post na mutex
sem_t *queueBeforeBarrier = NULL; // fronta před bariérou
sem_t *moleculeCreated = NULL; // signalizace vodíkům od kyslíku, že je molekula vytvořena
sem_t *atomsCreatedMolecule = NULL; // semafor zajišťující výpis created molecule až všechny procesy vypíší, molecule creating
sem_t *atomsCreatingCount = NULL; // semafor pro správní počítání creatingMoleculesAtomsCount
sem_t *postingBarrier = NULL; // semafor pro zajištění vytváření další molekuly až po uvolnění všech prvků z bariéry
FILE *outputFile = NULL;
int ti = 0;
int tb = 0;
int oxygenCount = 0;
int hydrogenCount = 0;
int moleculesToCreated = 0;
int oxygensToUse = 0;
int hydrogensToUse = 0;
void init() {
outputFile = fopen("proj2.out", "w");
if (outputFile == NULL) {
fprintf(stderr, "Nepodařilo se vytvořit/otevřít soubor proj2.out pro výpis logu!\n");
clean();
exit(1);
}
if ((writingSemaphore = sem_open("/xkocia19.ios.semaphore", O_CREAT | O_EXCL, 0666, 1)) == SEM_FAILED) {
fprintf(stderr, "Nepodařilo se vytvořit semafor!\n");
clean();
exit(1);
}
if ((mutex = sem_open("/xkocia19.ios.semaphore.mutex", O_CREAT | O_EXCL, 0666, 1)) == SEM_FAILED) {
fprintf(stderr, "Nepodařilo se vytvořit semafor!\n");
clean();
exit(1);
}
if ((hydrogenQueueSemaphore = sem_open("/xkocia19.ios.semaphore.hydrogen", O_CREAT | O_EXCL, 0666, 0)) ==
SEM_FAILED) {
fprintf(stderr, "Nepodařilo se vytvořit semafor!\n");
clean();
exit(1);
}
if ((oxygenQueueSemaphore = sem_open("/xkocia19.ios.semaphore.oxygen", O_CREAT | O_EXCL, 0666, 0)) == SEM_FAILED) {
fprintf(stderr, "Nepodařilo se vytvořit semafor!\n");
clean();
exit(1);
}
if ((barrier = sem_open("/xkocia19.ios.semaphore.barrier", O_CREAT | O_EXCL, 0666, 0)) == SEM_FAILED) {
fprintf(stderr, "Nepodařilo se vytvořit semafor!\n");
clean();
exit(1);
}
if ((queueBeforeBarrier = sem_open("/xkocia19.ios.semaphore.barrierQueue", O_CREAT | O_EXCL, 0666, 1)) ==
SEM_FAILED) {
fprintf(stderr, "Nepodařilo se vytvořit semafor!\n");
clean();
exit(1);
}
if ((moleculeCreated = sem_open("/xkocia19.ios.semaphore.molecule", O_CREAT | O_EXCL, 0666, 0)) ==
SEM_FAILED) {
fprintf(stderr, "Nepodařilo se vytvořit semafor!\n");
clean();
exit(1);
}
if ((atomsCreatedMolecule = sem_open("/xkocia19.ios.semaphore.allatoms", O_CREAT | O_EXCL, 0666, 0)) ==
SEM_FAILED) {
fprintf(stderr, "Nepodařilo se vytvořit semafor!\n");
clean();
exit(1);
}
if ((atomsCreatingCount = sem_open("/xkocia19.ios.semaphore.allatomscount", O_CREAT | O_EXCL, 0666, 1)) ==
SEM_FAILED) {
fprintf(stderr, "Nepodařilo se vytvořit semafor!\n");
clean();
exit(1);
}
if ((postingBarrier = sem_open("/xkocia19.ios.semaphore.postingbarrier", O_CREAT | O_EXCL, 0666, 0)) ==
SEM_FAILED) {
fprintf(stderr, "Nepodařilo se vytvořit semafor!\n");
clean();
exit(1);
}
sharedValues = mmap(NULL, sizeof(sharedMemory), PROT_READ | PROT_WRITE, MAP_SHARED | MAP_ANONYMOUS, -1, 0);
if (sharedValues == MAP_FAILED) {
fprintf(stderr, "Nepodařilo se vytvořit sdílenou proměnnou!\n");
clean();
exit(1);
}
sharedValues->oxygenID = 0;
sharedValues->hydrogenID = 0;
sharedValues->moleculeID = 0;
sharedValues->printCounter = 0;
sharedValues->oxygenQueueCount = 0;
sharedValues->hydrogenQueueCount = 0;
sharedValues->barrierQueueOxygens = 0;
sharedValues->barrierQueueHydrogens = 0;
sharedValues->isLastMoleculeCreated = false;
sharedValues->creatingMoleculesAtomsCount = 0;
}
int validateArguments(int argc, char *argv[]) {
if (argc != 5) {
fprintf(stderr, "Chybný počet argumentů. Použití: ./proj2 NO NH TI TB\n");
return -1;
}
oxygenCount = (int) strtol(argv[1], NULL, 0);
if (oxygenCount < 0 || !isInputNumber(argv[1])) {
fprintf(stderr,
"Počet kyslíků (NO) musí být celé číslo větší nebo rovno než 0!\n Použití: ./proj2 NO NH TI TB\n");
return -1;
}
hydrogenCount = (int) strtol(argv[2], NULL, 0);
if (hydrogenCount < 0 || !isInputNumber(argv[2])) {
fprintf(stderr,
"Počet vodíků (NH) musí být celé číslo větší nebo rovno než 0!\n Použití: ./proj2 NO NH TI TB\n");
return -1;
}
ti = (int) strtol(argv[3], NULL, 0);
if ((ti < 0) || (ti > 1000) || (!isInputNumber(argv[3]))) {
fprintf(stderr, "Argument TI musí být celé číslo v rozmezí než 0-1000!\n Použití: ./proj2 NO NH TI TB\n");
return -1;
}
tb = (int) strtol(argv[4], NULL, 0);
if ((tb < 0) || (tb > 1000) || (!isInputNumber(argv[4]))) {
fprintf(stderr, "Argument TB musí být celé číslo v rozmezí než 0-1000!\n Použití: ./proj2 NO NH TI TB\n");
return -1;
}
return 0;
}
bool isInputNumber(char *text) {
for (unsigned long i = 0; i < strlen(text); i++) {
if (!(isdigit(text[i]))) {
return false;
}
}
return true;
}
void oxygen() {
int oxygenID = sharedValues->oxygenID;
fprintf(outputFile, "%d: O %d: started\n", sharedValues->printCounter, oxygenID);
fflush(outputFile);
sem_post(writingSemaphore);
if (ti != 0) {
usleep(100 * (random() % ti));
}
sem_wait(writingSemaphore);
sharedValues->printCounter++;
fprintf(outputFile, "%d: O %d: going to queue\n", sharedValues->printCounter, oxygenID);
fflush(outputFile);
sem_post(writingSemaphore);
sem_wait(mutex);
sharedValues->oxygenQueueCount++;
if (sharedValues->hydrogenQueueCount >= 2) {
sharedValues->moleculeID++;
sem_post(hydrogenQueueSemaphore);
sem_post(hydrogenQueueSemaphore);
sharedValues->hydrogenQueueCount -= 2;
sem_post(oxygenQueueSemaphore);
sharedValues->oxygenQueueCount--;
} else {
sem_post(mutex);
}
sem_wait(oxygenQueueSemaphore);
barrierQueue('O', oxygenID, sharedValues->moleculeID);
sem_wait(barrier);
sem_wait(postingBarrier); // čekání na dokončení uvolňování semaforu barrier
sem_post(mutex);
}
void hydrogen() {
int hydrogenID = sharedValues->hydrogenID;
fprintf(outputFile, "%d: H %d: started\n", sharedValues->printCounter, hydrogenID);
fflush(outputFile);
sem_post(writingSemaphore);
if (ti != 0) {
usleep(1000 * (random() % ti));
}
sem_wait(writingSemaphore);
sharedValues->printCounter++;
fprintf(outputFile, "%d: H %d: going to queue\n", sharedValues->printCounter, hydrogenID);
fflush(outputFile);
sem_post(writingSemaphore);
sem_wait(mutex);
sharedValues->hydrogenQueueCount++;
if (sharedValues->hydrogenQueueCount >= 2 && sharedValues->oxygenQueueCount >= 1) {
sharedValues->moleculeID++;
sem_post(hydrogenQueueSemaphore);
sem_post(hydrogenQueueSemaphore);
sharedValues->hydrogenQueueCount -= 2;
sem_post(oxygenQueueSemaphore);
sharedValues->oxygenQueueCount--;
} else {
sem_post(mutex);
}
sem_wait(hydrogenQueueSemaphore);
barrierQueue('H', hydrogenID, sharedValues->moleculeID);
sem_wait(barrier);
}
void barrierQueue(char element, int ID, int moleculeID) {
if (sharedValues->isLastMoleculeCreated) {
sem_wait(writingSemaphore);
sharedValues->printCounter++;
if (element == 'O') {
fprintf(outputFile, "%d: O %d: not enough H\n", sharedValues->printCounter, ID);
} else {
fprintf(outputFile, "%d: H %d: not enough O or H\n", sharedValues->printCounter, ID);
}
fflush(outputFile);
sem_post(writingSemaphore);
sem_post(barrier);
sem_post(postingBarrier);
return;
}
creatingMolecule(element, ID, moleculeID);
sem_wait(atomsCreatingCount);
sharedValues->creatingMoleculesAtomsCount++;
if (sharedValues->creatingMoleculesAtomsCount == 3) {
sem_post(atomsCreatedMolecule);
sharedValues->creatingMoleculesAtomsCount -= 3;
}
sem_post(atomsCreatingCount);
if (element == 'O') {
sem_wait(atomsCreatedMolecule);
if (tb != 0) {
usleep(1000 * (random() % tb));
}
sem_post(moleculeCreated);
sem_post(moleculeCreated);
sem_post(moleculeCreated);
}
sem_wait(moleculeCreated);
createdMolecule(element, ID, moleculeID);
sem_wait(queueBeforeBarrier);
if (element == 'O') {
sharedValues->barrierQueueOxygens++;
} else {
sharedValues->barrierQueueHydrogens++;
}
if (sharedValues->barrierQueueOxygens >= 1 && sharedValues->barrierQueueHydrogens >= 2) {
sharedValues->barrierQueueOxygens--;
sharedValues->barrierQueueHydrogens -= 2;
postRemainingProcesses(moleculeID); // uvolnění front prvků, kterým již nezbývají další prvky pro vytvoření další molekuly
sem_post(barrier);
sem_post(barrier);
sem_post(barrier);
sem_post(postingBarrier); // indikace, že bylo dokončeno uvolňování semaforu barrier
}
sem_post(queueBeforeBarrier);
}
void creatingMolecule(char element, int ID, int moleculeID) {
sem_wait(writingSemaphore);
sharedValues->printCounter++;
fprintf(outputFile, "%d: %c %d: creating molecule %d\n", sharedValues->printCounter, element, ID, moleculeID);
fflush(outputFile);
sem_post(writingSemaphore);
}
void createdMolecule(char element, int ID, int moleculeID) {
sem_wait(writingSemaphore);
sharedValues->printCounter++;
fprintf(outputFile, "%d: %c %d: molecule %d created\n", sharedValues->printCounter, element, ID, moleculeID);
fflush(outputFile);
sem_post(writingSemaphore);
}
void postRemainingProcesses(int moleculeID) {
if (moleculeID == moleculesToCreated && !sharedValues->isLastMoleculeCreated) {
sharedValues->isLastMoleculeCreated = true;
for (int i = 0; i < oxygenCount - oxygensToUse; i++) {
sem_post(oxygenQueueSemaphore);
}
for (int i = 0; i < hydrogenCount - hydrogensToUse; i++) {
sem_post(hydrogenQueueSemaphore);
}
}
}
void clean() {
if (outputFile != NULL) {
fclose(outputFile);
}
sem_unlink("/xkocia19.ios.semaphore");
sem_unlink("/xkocia19.ios.semaphore.mutex");
sem_unlink("/xkocia19.ios.semaphore.hydrogen");
sem_unlink("/xkocia19.ios.semaphore.oxygen");
sem_unlink("/xkocia19.ios.semaphore.barrier");
sem_unlink("/xkocia19.ios.semaphore.barrierQueue");
sem_unlink("/xkocia19.ios.semaphore.molecule");
sem_unlink("/xkocia19.ios.semaphore.allatoms");
sem_unlink("/xkocia19.ios.semaphore.allatomscount");
sem_unlink("/xkocia19.ios.semaphore.postingbarrier");
closeSemaphores();
munmap(sharedValues, sizeof(sharedMemory));
}
void closeSemaphores() {
sem_close(writingSemaphore);
sem_close(mutex);
sem_close(hydrogenQueueSemaphore);
sem_close(oxygenQueueSemaphore);
sem_close(barrier);
sem_close(queueBeforeBarrier);
sem_close(moleculeCreated);
sem_close(atomsCreatedMolecule);
sem_close(atomsCreatingCount);
sem_close(postingBarrier);
}
// FUNCTIONS_C