-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathparque.c
395 lines (330 loc) · 9.46 KB
/
parque.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
/** Version: 1.0
* Author: Grupo T1G09
*
*/
#include <unistd.h>
#include <limits.h>
#include <stdlib.h>
#include <pthread.h>
#include <stdio.h>
#include <time.h>
#include <string.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/times.h>
#include <fcntl.h>
#include <semaphore.h>
#include <signal.h>
#include "viatura.h"
#define DIRECTORY_LENGTH 4096
#define FILE_LENGTH 255
#define BILLION 1000000000
int n_total_lugares;
int lugares_ocupados = 0;
int t_abertura;
char encerrou = 0;
int fileLog = 0;
clock_t tempoInicial;
pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER;
sem_t * semN;
sem_t * semO;
sem_t * semE;
sem_t * semS;
void sigPipe(int id){
printf("SIG PIPEE!!!!\n");
}
void * arrumador_thread(void * args);
Viatura* lerViatura(int fd);
void debugLog(unsigned int tempo , unsigned int numLugares, unsigned int numeroViatura, char* obs){
char text[DIRECTORY_LENGTH + FILE_LENGTH];
sprintf(text, " %10d ; %5d ; %7d ; %s\n" , tempo, numLugares, numeroViatura, obs);
write(fileLog, text, strlen(text));
}
void * controlador_thread(void * args){
sem_t * sem;
char letra = ((char *)args)[9];
switch (letra) {
case 'N':
sem = semN;
break;
case 'S':
sem = semS;
break;
case 'O':
sem = semO;
break;
case 'E':
sem = semE;
break;
default:
printf("Error in controller semaphore: %c\n",letra);
return NULL;
}
int nr,fd, fd_dummy;
pthread_t tid;
//printf("CriarFifo\n");
if((nr = mkfifo((char *)args, 0644)) == -1){//Creating FIFO
perror((char *)args);
return NULL;
}
//printf("Abertura\n");
if((fd = open((char *)args,O_RDONLY)) == -1){//Opening FIFO with read only
perror((char *)args);
return NULL;
}
//printf("Espera\n");
if((fd_dummy = open((char *)args,O_WRONLY | O_NONBLOCK)) == -1){//Opening FIFO with write only
perror((char *)args);
close(fd);
unlink((char *)args);
return NULL;
}
//printf("Espera2\n");
Viatura* viaturaTemp;
while( (viaturaTemp = lerViatura(fd)) !=NULL){
//printf("Li\n");
if( viaturaTemp->portaEntrada == 'X'){ //Se Terminou
close(fd_dummy);
//printf("Terminar!\n");
sem_wait(sem);
//printf("Wai Sem1!\n");
continue;
}
if(pthread_create(&tid, NULL , arrumador_thread , viaturaTemp)){
printf("Error Creating Thread!\n");
close(fd);
close(fd_dummy);
unlink((char *)args);
return NULL;
}
pthread_detach(tid);
}
close(fd);
if((nr = unlink((char *)args)) == -1){//Deleting FIFO
perror((char *)args);
//printf("Wait POST1!\n");
sem_post(sem);
return NULL;
}
//printf("Libertar!\n");
//printf("Wait POST2!\n");
sem_post(sem);
return NULL;
}
Viatura* lerViatura(int fd){
Viatura* v = (Viatura *)malloc(sizeof(Viatura *));
int tamanho = sizeof(Viatura);
int tamanhoLido = 0;
while(tamanhoLido != tamanho){
int returnValue = read(fd,v + tamanhoLido,tamanho-tamanhoLido);
if( returnValue == -1 || returnValue == 0){ //Caso nao consiga ler viaturas
free(v);
return NULL;
}
tamanhoLido +=returnValue;
//printf("Valor Reorno: %d\n",tamanhoLido);
}
return v;
}
void mySleep(int ticks){//Recebe os ticks para dormir
double myS = ticks / (double)sysconf(_SC_CLK_TCK);
struct timespec * req, * rem;
req = malloc(sizeof(struct timespec));
rem = malloc(sizeof(struct timespec));
req->tv_sec = myS / 1;
req->tv_nsec = (long)((myS - req->tv_sec) * BILLION);
int nr;
while((nr = nanosleep(req,rem)) != 0){
nr = nanosleep(rem,req);
if(nr == 0)
break;
}
free(req);
free(rem);
}
void * arrumador_thread(void * args){
char resposta = 0;
Viatura * v = (Viatura *)args;
//printf("Nova Viatura %d\n" , v->numeroID);
//Criar FIFO
char fifoViatura[DIRECTORY_LENGTH + FILE_LENGTH] ;
sprintf(fifoViatura, "/tmp/viatura%d", v->numeroID);
int fdViatura = 0;
if( (fdViatura = open(fifoViatura, O_WRONLY) ) == -1){
perror(fifoViatura);
free(v);
return NULL;
}
pthread_mutex_lock(&mutex);//Secção Critica
if(encerrou){
resposta = RES_ENCERRADO;
debugLog(times(NULL) - tempoInicial , n_total_lugares - lugares_ocupados , v->numeroID, "encerrado");
} else {
if(n_total_lugares == lugares_ocupados){
resposta = RES_CHEIO;
debugLog(times(NULL) - tempoInicial , n_total_lugares - lugares_ocupados , v->numeroID, "cheio");
}else {
lugares_ocupados++;
resposta = RES_ENTRADA;
debugLog(times(NULL) - tempoInicial , n_total_lugares - lugares_ocupados , v->numeroID, "estacionamento");
}
}
pthread_mutex_unlock(&mutex);
//Enviar a resposta para o FIFO
write(fdViatura, &resposta, sizeof(char));
if(resposta != RES_ENTRADA){
//Terminar a thread;
close(fdViatura);
free(v);
return NULL;
}
//turn on local temporizador;
//clock_t tickInicial = clock();
//while(clock() - tickInicial < v->tempoEstacionamento);
mySleep(v->tempoEstacionamento);
//Saida
resposta = RES_SAIDA;
write(fdViatura, &resposta, sizeof(char) );
close(fdViatura);
pthread_mutex_lock(&mutex);//Seccção Critica
debugLog(times(NULL) - tempoInicial , n_total_lugares - lugares_ocupados , v->numeroID, "saida");
lugares_ocupados--;
pthread_mutex_unlock(&mutex);
free(v);
return NULL;
}
void exit_handlerDestroySem(){
/*Tentativa de abertura de um semaforo do menos nome para verificar se ja existe um com esse nome*/
if( (semN = sem_open("/semaforoN", 0, S_IRWXU, 1)) != SEM_FAILED){
//printf("Semaforo Existe!\n");
sem_unlink("/semaforoN");
sem_destroy(semN);
}
if( (semS = sem_open("/semaforoS", 0, S_IRWXU, 1)) != SEM_FAILED){
//printf("Semaforo Existe!\n");
sem_unlink("/semaforoS");
sem_destroy(semS);
}
if( (semO = sem_open("/semaforoO", 0, S_IRWXU, 1)) != SEM_FAILED){
//printf("Semaforo Existe!\n");
sem_unlink("/semaforoO");
sem_destroy(semO);
}
if( (semE = sem_open("/semaforoE", 0, S_IRWXU, 1)) != SEM_FAILED){
//printf("Semaforo Existe!\n");
sem_unlink("/semaforoE");
sem_destroy(semE);
}
}
int main(int argc, char *argv[]){
exit_handlerDestroySem();
signal(SIGPIPE, sigPipe);
if(argc != 3){//Verificação dos argumentos
printf("Error <Usage>: %s <N_LUGARES> <T_ABERTURA>\n",argv[0]);
exit(1);
}
/*Passagem dos argumentos para variaveis globais*/
n_total_lugares = atoi(argv[1]);
t_abertura = atoi(argv[2]);
tempoInicial = times(NULL);
if(n_total_lugares <= 0){
printf("Erro <N_LUGARES> must be greater than 0\n");
exit(1);
}
if(t_abertura <= 0){
printf("Error <T_ABERTURA> must be greater than 0\n");
exit(1);
}
atexit(exit_handlerDestroySem);
char path[DIRECTORY_LENGTH + FILE_LENGTH];
realpath(".", path);
sprintf(path, "%s/%s", path, "parque.log");
if( (fileLog = open(path, O_CREAT | O_WRONLY | O_TRUNC , S_IRWXU)) == -1){//Criaçao e abertura do ficheiro log
printf("Error Creating Thread!\n");
exit(2);
}
char string[DIRECTORY_LENGTH];
sprintf(string, "Tick inicial : %lu\n", tempoInicial);
write(fileLog, string, strlen(string));
write(fileLog, "t(ticks) ; n_lug ; id_viat ; observ\n" ,37);
/*Abertura e criacao de um semaforo para sincronizacao de ambos os programas*/
if((semN = sem_open("/semaforoN",O_CREAT, S_IRWXU,1)) == SEM_FAILED){
perror("/semaforoN");
printf("Error!\n");
exit(3);
}
if((semS = sem_open("/semaforoS",O_CREAT, S_IRWXU,1)) == SEM_FAILED){
perror("/semaforoS");
printf("Error!\n");
exit(3);
}
if((semO = sem_open("/semaforoO",O_CREAT, S_IRWXU,1)) == SEM_FAILED){
perror("/semaforoO");
printf("Error!\n");
exit(3);
}
if((semE = sem_open("/semaforoE",O_CREAT, S_IRWXU,1)) == SEM_FAILED){
perror("/semaforoE");
printf("Error!\n");
exit(3);
}
/*Criacao das 4 threads controladores relativas as portas do parque*/
//printf("Writing threads\n");
pthread_t tN, tS, tE, tO;
if (pthread_create(&tN, NULL, controlador_thread, "/tmp/fifoN")){//Norte
printf("Error Creating Thread!\n");
exit(4);
}
if (pthread_create(&tS, NULL, controlador_thread, "/tmp/fifoS")){//Sul
printf("Error Creating Thread!\n");
exit(4);
}
if (pthread_create(&tE, NULL, controlador_thread, "/tmp/fifoE")){//Este
printf("Error Creating Thread!\n");
exit(4);
}
if (pthread_create(&tO, NULL, controlador_thread, "/tmp/fifoO")){//Oeste
printf("Error Creating Thread!\n");
exit(4);
}
/*Passagem do tempo de abertura do parque seguido do encerramento do mesmo*/
unsigned int timeToSleep = t_abertura;
while( ( timeToSleep = sleep(timeToSleep) ) > 0);
pthread_mutex_lock(&mutex);//Secção Critica
encerrou = 1;
pthread_mutex_unlock(&mutex);
/*Envio de uma viatura indicativa de encerramento para cada um dos FIFOS
relativos aos controladores*/
int i;
for( i = 0; i < 4; i++){
char* msg = "/tmp/fifoO";
switch (i) {
case 0:
msg = "/tmp/fifoN";
break;
case 1:
msg = "/tmp/fifoS";
break;
case 2:
msg = "/tmp/fifoE";
break;
}
int fd;
if((fd = open(msg,O_WRONLY | O_NONBLOCK)) == -1){//Opening FIFO with write only
perror(msg);
close(fd);
continue;
}
Viatura temp;
temp.portaEntrada = 'X';//Viatura que indica fecho do parque
write(fd,&temp, sizeof(Viatura));
close(fd);
}
/*Terminio do programa (esperar que as threads terminem)*/
pthread_join(tN,NULL);
pthread_join(tS,NULL);
pthread_join(tE,NULL);
pthread_join(tO,NULL);
printf("Done!\n");
pthread_exit(NULL);
}