generated from nlsosa/SOR-Sem-foros-1S-2021
-
Notifications
You must be signed in to change notification settings - Fork 0
/
subwayArgento.c
433 lines (394 loc) · 13.8 KB
/
subwayArgento.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
#include <stdio.h> // libreria estandar
#include <stdlib.h> // para usar exit y funciones de la libreria standard
#include <string.h>
#include <pthread.h> // para usar threads
#include <semaphore.h> // para usar semaforos
#include <unistd.h>
#define LIMITE 50
//creo semaforos "compartidos"
sem_t sem_usarSalero;
sem_t sem_usarSarten;
sem_t sem_usarHorno;
sem_t sem_escribir;
//creo estructura de semaforos
struct semaforos {
sem_t sem_mezclar;
sem_t sem_ponerSal;
sem_t sem_agregarCarne;
sem_t sem_empanar;
sem_t sem_usarSarten;
sem_t sem_listo1;
sem_t sem_listo2;
sem_t sem_listo3;
sem_t sem_listo4;
sem_t sem_entregar;
//poner demas semaforos aqui
};
//creo los pasos con los ingredientes
struct paso {
char accion [LIMITE];
char ingredientes[4][LIMITE];
};
//creo los parametros de los hilos
struct parametro {
int equipo_param;
struct semaforos semaforos_param;
struct paso pasos_param[12];
};
//funcion para imprimir las acciones y los ingredientes de la accion
void* imprimirAccion(void *data, char *accionIn) {
FILE *archivo;
archivo=fopen("salidaReceta","a");
struct parametro *mydata = data;
//calculo la longitud del array de pasos
int sizeArray = (int)( sizeof(mydata->pasos_param) / sizeof(mydata->pasos_param[0]));
//indice para recorrer array de pasos
int i;
for(i = 0; i < sizeArray; i ++){
//pregunto si la accion del array es igual a la pasada por parametro (si es igual la funcion strcmp devuelve cero)
if(strcmp(mydata->pasos_param[i].accion, accionIn) == 0){
printf("\tEquipo %d - accion %s \n " , mydata->equipo_param, mydata->pasos_param[i].accion);
fprintf(archivo,"\tEquipo %d - accion %s\n ",mydata->equipo_param, mydata->pasos_param[i].accion);
//calculo la longitud del array de ingredientes
int sizeArrayIngredientes = (int)( sizeof(mydata->pasos_param[i].ingredientes) / sizeof(mydata->pasos_param[i].ingredientes[0]) );
//indice para recorrer array de ingredientes
int h;
//agregar archivo
printf("\tEquipo %d ----------ingredientes : -------\n",mydata->equipo_param);
fprintf(archivo,"\tEquipo %d -----------ingredientes : ----------\n",mydata->equipo_param);
for(h = 0; h < sizeArrayIngredientes; h++) {
//consulto si la posicion tiene valor porque no se cuantos ingredientes tengo por accion
if(strlen(mydata->pasos_param[i].ingredientes[h]) != 0) {
//agregar archivo
printf("tEquipo %d ingrediente %d: %s \n",mydata->equipo_param,h,mydata->pasos_param[i].ingredientes[h]);
fprintf(archivo,"\tEquipo %d ingrediente %d : %s \n",mydata->equipo_param,h,mydata->pasos_param[i].ingredientes[h]);
}
}
}
fflush(archivo);//forzar para que grabe ahora el contenido del buffer.
}
fclose(archivo);
}
//funcion para tomar de ejemplo
void* cortar1(void *data) {
//creo el nombre de la accion de la funcion
char *accion = "cortar1";
//creo el puntero para pasarle la referencia de memoria (data) del struct pasado por parametro (la cual es un puntero).
struct parametro *mydata = data;
//llamo a la funcion imprimir le paso el struct y la accion de la funcion
sem_wait(&sem_escribir);
imprimirAccion(mydata,accion);
sem_post(&sem_escribir);
//uso sleep para simular que que pasa tiempo
usleep( 30000 );
//doy la señal a la siguiente accion (cortar me habilita mezclar)
sem_post(&mydata->semaforos_param.sem_mezclar);
pthread_exit(NULL);
}
void* mezclar(void *data){
char *accion="mezclar";
struct parametro *mydata = data;
sem_wait(&mydata->semaforos_param.sem_mezclar);
sem_wait(&sem_escribir);
imprimirAccion(mydata,accion);
sem_post(&sem_escribir);
usleep(3000);
sem_post(&mydata->semaforos_param.sem_ponerSal);
}
void* ponerSal(void *data){
char *accion="ponerSal";
struct parametro *mydata = data;
sem_wait(&mydata->semaforos_param.sem_ponerSal);
sem_wait(&sem_usarSalero);
sem_wait(&sem_escribir);
imprimirAccion(mydata,accion);
sem_post(&sem_escribir);
usleep(20000);
sem_post(&sem_usarSalero);
sem_post(&mydata->semaforos_param.sem_agregarCarne);
}
void* agregarCarne(void *data){
char *accion="agregarCarne";
struct parametro *mydata=data;
sem_wait(&mydata->semaforos_param.sem_agregarCarne);
sem_wait(&sem_escribir);
imprimirAccion(mydata,accion);
sem_post(&sem_escribir);
usleep(20000);
sem_post(&mydata->semaforos_param.sem_empanar);
}
void* empanar(void *data){
char *accion="empanar";
struct parametro *mydata=data;
sem_wait(&mydata->semaforos_param.sem_empanar);
sem_wait(&sem_escribir);
imprimirAccion(mydata,accion);
sem_post(&sem_escribir);
usleep(40000);
sem_post(&mydata->semaforos_param.sem_usarSarten);
}
void* usarSarten(void *data){
char *accion="usarSarten";
struct parametro *mydata=data;
sem_wait(&mydata->semaforos_param.sem_usarSarten);
sem_wait(&sem_usarSarten);
sem_wait(&sem_escribir);
imprimirAccion(mydata ,accion);
sem_post(&sem_escribir);
usleep(5);
sem_post(&sem_usarSarten);
sem_post(&mydata->semaforos_param.sem_listo1);
}
void* usarHorno(void *data){
sem_wait(&sem_usarHorno);
char *accion="usarHorno";
struct parametro *mydata=data;
sem_wait(&sem_escribir);
imprimirAccion(mydata,accion);
sem_post(&sem_escribir);
usleep(50000);
sem_post(&sem_usarHorno);
sem_post(&mydata->semaforos_param.sem_listo2);
}
void* cortar2(void *data){
char *accion ="cortar2";
struct parametro *mydata=data;
sem_wait(&sem_escribir);
imprimirAccion(mydata,accion);
sem_post(&sem_escribir);
usleep(3);
sem_post(&mydata->semaforos_param.sem_listo3);
}
void* cortar3(void *data){
char *accion="cortar3";
struct parametro *mydata=data;
sem_wait(&sem_escribir);
imprimirAccion(mydata,accion);
sem_post(&sem_escribir);
usleep(3);
sem_post(&mydata->semaforos_param.sem_listo4);
}
void* armar(void *data){
char *accion="armar";
struct parametro *mydata=data;
sem_wait(&mydata->semaforos_param.sem_listo1);
sem_wait(&mydata->semaforos_param.sem_listo2);
sem_wait(&mydata->semaforos_param.sem_listo3);
sem_wait(&mydata->semaforos_param.sem_listo4);
sem_wait(&sem_escribir);
imprimirAccion(mydata,accion);
sem_post(&sem_escribir);
usleep(3);
sem_post(&mydata->semaforos_param.sem_entregar);
}
void* entregar(void *data){
char *accion="entregar";
struct parametro *mydata=data;
sem_wait(&mydata->semaforos_param.sem_entregar);
sem_wait(&sem_escribir);
imprimirAccion(mydata,accion);
sem_post(&sem_escribir);
usleep(3);
}
void* ejecutarReceta(void *i) {
FILE *archivo;
archivo=fopen("receta.txt","r");
//variables semaforos
sem_t sem_mezclar;
sem_t sem_ponerSal;
sem_t sem_agregarCarne;
sem_t sem_empanar;
sem_t sem_usarSarten;
sem_t sem_listo1;
sem_t sem_listo2;
sem_t sem_listo3;
sem_t sem_listo4;
sem_t sem_entregar;
//variables hilos
pthread_t p1;
pthread_t p2;
pthread_t p3;
pthread_t p4;
pthread_t p5;
pthread_t p6;
pthread_t p7;
pthread_t p8;
pthread_t p9;
pthread_t p10;
pthread_t p11;
//numero del equipo (casteo el puntero a un int)
int p = *((int *) i);
printf("Ejecutando equipo %d \n", p);
//reservo memoria para el struct
struct parametro *pthread_data = malloc(sizeof(struct parametro));
//seteo los valores al struct
//seteo numero de grupo
pthread_data->equipo_param = p;
//seteo semaforos
//setear demas semaforos al struct aqui
pthread_data->semaforos_param.sem_mezclar = sem_mezclar;
pthread_data->semaforos_param.sem_ponerSal = sem_ponerSal;
pthread_data->semaforos_param.sem_agregarCarne = sem_agregarCarne;
pthread_data->semaforos_param.sem_empanar = sem_empanar;
pthread_data->semaforos_param.sem_usarSarten = sem_usarSarten;
pthread_data->semaforos_param.sem_listo1 = sem_listo1;
pthread_data->semaforos_param.sem_listo2 = sem_listo2;
pthread_data->semaforos_param.sem_listo3 = sem_listo3;
pthread_data->semaforos_param.sem_listo4 = sem_listo4;
pthread_data->semaforos_param.sem_entregar = sem_entregar;
//seteo las acciones y los ingredientes (Faltan acciones e ingredientes) ¿Se ve hardcodeado no? ¿Les parece bien?
/*
strcpy(pthread_data->pasos_param[0].accion, "cortar1");
strcpy(pthread_data->pasos_param[0].ingredientes[0], "ajo");
strcpy(pthread_data->pasos_param[0].ingredientes[1], "perejil");
strcpy(pthread_data->pasos_param[1].accion, "mezclar");
strcpy(pthread_data->pasos_param[1].ingredientes[0], "ajo");
strcpy(pthread_data->pasos_param[1].ingredientes[1], "perejil");
strcpy(pthread_data->pasos_param[1].ingredientes[2], "huevo");
strcpy(pthread_data->pasos_param[1].ingredientes[3], "carne");
strcpy(pthread_data->pasos_param[2].accion,"ponerSal");
strcpy(pthread_data->pasos_param[2].ingredientes[0],"mezcla");
strcpy(pthread_data->pasos_param[3].accion,"agregarCarne");
strcpy(pthread_data->pasos_param[3].ingredientes[0], "mezcla");
strcpy(pthread_data->pasos_param[4].accion,"empanar");
strcpy(pthread_data->pasos_param[5].accion,"usarSarten");
strcpy(pthread_data->pasos_param[6].accion,"usarHorno");
strcpy(pthread_data->pasos_param[7].accion,"cortar2");
strcpy(pthread_data->pasos_param[8].accion,"cortar3");
strcpy(pthread_data->pasos_param[9].accion,"armar");
strcpy(pthread_data->pasos_param[10].accion,"entregar");
*/
char cad[70];
int k=0;
int j=0;
while(fgets(cad,50,archivo)!=NULL){//lee por lineas,hasta ultim linea
char *token=strtok(cad,";");
strcpy(pthread_data->pasos_param[k].accion,token);
j=0;
token=strtok(NULL,";");
while(token!=NULL){
strcpy(pthread_data->pasos_param[k].ingredientes[j],token);
token=strtok(NULL,";");
j++;
}
k++;
}
//inicializo los semaforos
//inicializar demas semaforos aqui
sem_init(&(pthread_data->semaforos_param.sem_mezclar),0,0);
sem_init(&(pthread_data->semaforos_param.sem_ponerSal),0,0);
sem_init(&(pthread_data->semaforos_param.sem_agregarCarne),0,0);
sem_init(&(pthread_data->semaforos_param.sem_empanar),0,0);
sem_init(&(pthread_data->semaforos_param.sem_usarSarten),0,0);
sem_init(&(pthread_data->semaforos_param.sem_listo1),0,0);
sem_init(&(pthread_data->semaforos_param.sem_listo2),0,0);
sem_init(&(pthread_data->semaforos_param.sem_listo3),0,0);
sem_init(&(pthread_data->semaforos_param.sem_listo4),0,0);
sem_init(&(pthread_data->semaforos_param.sem_entregar),0,0);
//creo los hilos a todos les paso el struct creado (el mismo a todos los hilos) ya que todos comparten los semaforos
int rc;
rc = pthread_create(&p1, //identificador unico
NULL, //atributos del thread
cortar1, //funcion a ejecutar
pthread_data); //parametros de la funcion a ejecutar, pasado por referencia
//crear demas hilos aqui
rc=pthread_create(&p2,NULL,mezclar,pthread_data);
rc=pthread_create(&p3,NULL,ponerSal,pthread_data);
rc=pthread_create(&p4,NULL,agregarCarne,pthread_data);
rc=pthread_create(&p5,NULL,empanar,pthread_data);
rc=pthread_create(&p6,NULL,usarSarten,pthread_data);
rc=pthread_create(&p7,NULL,usarHorno,pthread_data);
rc=pthread_create(&p8,NULL,cortar2,pthread_data);
rc=pthread_create(&p9,NULL,cortar3,pthread_data);
rc=pthread_create(&p10,NULL,armar,pthread_data);
rc=pthread_create(&p11,NULL,entregar,pthread_data);
//join de todos los hilos
pthread_join (p1,NULL);
//crear join de demas hilos
pthread_join (p2,NULL);
pthread_join (p3,NULL);
pthread_join (p4,NULL);
pthread_join (p5,NULL);
pthread_join (p6,NULL);
pthread_join (p7,NULL);
pthread_join (p7,NULL);
pthread_join (p8,NULL);
pthread_join (p9,NULL);
pthread_join (p10,NULL);
pthread_join (p11,NULL);
//valido que el hilo se alla creado bien
if (rc){
printf("Error:unable to create thread, %d \n", rc);
exit(-1);
}
//destruccion de los semaforos
sem_destroy(&sem_mezclar);
//destruir demas semaforos
sem_destroy(&sem_ponerSal);
sem_destroy(&sem_agregarCarne);
sem_destroy(&sem_empanar);
sem_destroy(&sem_usarSarten);
sem_destroy(&sem_listo1);
sem_destroy(&sem_listo2);
sem_destroy(&sem_listo3);
sem_destroy(&sem_listo4);
sem_destroy(&sem_entregar);
//cierro archivo de texto
fclose(archivo);
//salida del hilo
pthread_exit(NULL);
}
int main ()
{
//inicializo semaforos
sem_init(&sem_usarSalero,0,1);
sem_init(&sem_usarSarten,0,1);
sem_init(&sem_usarHorno,0,2);
sem_init(&sem_escribir,0,1);
//creo los nombres de los equipos
int rc;
int *equipoNombre1 =malloc(sizeof(*equipoNombre1));
int *equipoNombre2 =malloc(sizeof(*equipoNombre2));
int *equipoNombre3 =malloc(sizeof(*equipoNombre3));
//faltan equipos
int *equipoNombre4 =malloc(sizeof(*equipoNombre4));
*equipoNombre1 = 1;
*equipoNombre2 = 2;
*equipoNombre3 = 3;
*equipoNombre4 = 4;
//creo las variables los hilos de los equipos
pthread_t equipo1;
pthread_t equipo2;
pthread_t equipo3;
pthread_t equipo4;
//inicializo los hilos de los equipos
rc = pthread_create(&equipo1, //identificador unico
NULL, //atributos del thread
ejecutarReceta, //funcion a ejecutar
equipoNombre1);
rc = pthread_create(&equipo2, //identificador unico
NULL, //atributos del thread
ejecutarReceta, //funcion a ejecutar
equipoNombre2);
//faltn inicializaciones
rc=pthread_create(&equipo3,NULL,ejecutarReceta,equipoNombre3);
rc=pthread_create(&equipo4,NULL,ejecutarReceta,equipoNombre4);
if (rc){
printf("Error:unable to create thread, %d \n", rc);
exit(-1);
}
//join de todos los hilos
pthread_join (equipo1,NULL);
pthread_join (equipo2,NULL);
pthread_join (equipo3,NULL);
pthread_join (equipo4,NULL);
//
sem_destroy(&sem_usarSalero);
sem_destroy(&sem_usarSarten);
sem_destroy(&sem_usarHorno);
sem_destroy(&sem_escribir);
pthread_exit(NULL);
return -1;
}
//Para compilar: gcc subwayArgento.c -o ejecutable -lpthread
//Para ejecutar: ./ejecutable