-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathPruebaPlanificacion.c
107 lines (96 loc) · 2.76 KB
/
PruebaPlanificacion.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
#include <pthread.h>
#include <semaphore.h>
#include <time.h>
#include <stdio.h>
#include <stdlib.h>
#include <lib/matelib.h>
#include <commons/log.h>
char *LOG_PATH = "./planificacion.log";
char *PROGRAM_NAME = "planificacion";
sem_t *va_el_2;
sem_t *va_el_3;
t_log *logger;
void imprimir_carpincho_n_hace_algo(int numero_de_carpincho)
{
log_info(logger, "EJECUTANDO Carpincho %d", numero_de_carpincho);
sleep(2);
}
void exec_carpincho_1(char *config)
{
mate_instance self;
mate_init(&self, config);
sem_post(va_el_2);
for (int i = 0; i < 3; i++)
{
imprimir_carpincho_n_hace_algo(1);
mate_call_io(&self, (mate_io_resource) "pelopincho", "Carpincho 1 se va a IO");
}
imprimir_carpincho_n_hace_algo(1);
mate_close(&self);
}
void exec_carpincho_2(char *config)
{
mate_instance self;
sem_wait(va_el_2);
mate_init(&self, config);
sem_post(va_el_3); //Creo que esta demas, es para que el 3 entre dsp del 2
for (int i = 0; i < 3; i++)
{
imprimir_carpincho_n_hace_algo(2);
mate_call_io(&self, (mate_io_resource) "pelopincho", "Carpincho 2 se va a IO");
}
imprimir_carpincho_n_hace_algo(2);
mate_close(&self);
}
void exec_carpincho_3(char *config)
{
mate_instance self;
sem_wait(va_el_3);
mate_init(&self, config);
for (int i = 0; i < 3; i++)
{
imprimir_carpincho_n_hace_algo(3);
imprimir_carpincho_n_hace_algo(3);
imprimir_carpincho_n_hace_algo(3);
imprimir_carpincho_n_hace_algo(3);
imprimir_carpincho_n_hace_algo(3);
mate_call_io(&self, (mate_io_resource) "pelopincho", "Carpincho 3 se va a IO");
}
imprimir_carpincho_n_hace_algo(3);
imprimir_carpincho_n_hace_algo(3);
imprimir_carpincho_n_hace_algo(3);
imprimir_carpincho_n_hace_algo(3);
imprimir_carpincho_n_hace_algo(3);
mate_close(&self);
}
void free_all()
{
sem_destroy(va_el_3);
free(va_el_3);
sem_destroy(va_el_2);
free(va_el_2);
log_destroy(logger);
}
void init_sems()
{
va_el_2 = malloc(sizeof(sem_t));
sem_init(va_el_2, 1, 0);
va_el_3 = malloc(sizeof(sem_t));
sem_init(va_el_3, 1, 0);
}
int main(int argc, char *argv[])
{
logger = log_create(LOG_PATH, PROGRAM_NAME, true, LOG_LEVEL_DEBUG);
pthread_t carpincho1_thread;
pthread_t carpincho2_thread;
pthread_t carpincho3_thread;
init_sems();
pthread_create(&carpincho1_thread, NULL, (void *)exec_carpincho_1, argv[1]);
pthread_create(&carpincho2_thread, NULL, (void *)exec_carpincho_2, argv[1]);
pthread_create(&carpincho3_thread, NULL, (void *)exec_carpincho_3, argv[1]);
pthread_join(carpincho1_thread, NULL);
pthread_join(carpincho2_thread, NULL);
pthread_join(carpincho3_thread, NULL);
free_all();
puts("Termine!");
}