-
Notifications
You must be signed in to change notification settings - Fork 30
/
client.c
120 lines (72 loc) · 2.05 KB
/
client.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
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/ipc.h>
#include <sys/msg.h>
#include <sys/wait.h>
#include "prodcons_msg.h"
#include "prodcons_client.h"
void Produttore();
void Consumatore();
int main() {
key_t chiave_coda_richieste = ftok(".", 'a');
int id_coda_richieste = msgget(chiave_coda_richieste, IPC_CREAT | 0664);
if(id_coda_richieste < 0) {
perror("Errore msgget");
exit(1);
}
key_t chiave_coda_risposte = ftok(".", 'b');
int id_coda_risposte = msgget(chiave_coda_risposte, IPC_CREAT | 0664);
if(id_coda_risposte < 0) {
perror("Errore msgget");
exit(1);
}
init_client(id_coda_richieste, id_coda_risposte);
pid_t pid_prod = fork();
if(pid_prod == 0) {
Produttore();
exit(0);
}
else if(pid_prod < 0) {
perror("Errore fork");
exit(1);
}
pid_t pid_cons = fork();
if(pid_cons == 0) {
Consumatore();
exit(0);
}
else if(pid_prod < 0) {
perror("Errore fork");
exit(1);
}
wait(NULL);
wait(NULL);
msgctl(id_coda_richieste, IPC_RMID, NULL);
msgctl(id_coda_risposte, IPC_RMID, NULL);
}
void Produttore() {
srand(getpid());
int val1 = rand() % 10;
int val2 = rand() % 10;
int val3 = rand() % 10;
printf("[Produttore] Chiamo PRODUCI CON SOMMA(%d, %d, %d)\n", val1, val2, val3);
produci_con_somma(val1, val2, val3);
int val = rand() % 10;
printf("[Produttore] Chiamo PRODUCI(%d)\n", val);
produci(val);
val = rand() % 10;
printf("[Produttore] Chiamo PRODUCI(%d)\n", val);
produci(val);
}
void Consumatore() {
printf("[Consumatore] Chiamo CONSUMA()\n");
int val = consuma();
printf("[Consumatore] Ricevuto risultato=%d\n", val);
printf("[Consumatore] Chiamo CONSUMA()\n");
val = consuma();
printf("[Consumatore] Ricevuto risultato=%d\n", val);
printf("[Consumatore] Chiamo CONSUMA()\n");
val = consuma();
printf("[Consumatore] Ricevuto risultato=%d\n", val);
}