-
Notifications
You must be signed in to change notification settings - Fork 30
/
server.c
160 lines (99 loc) · 3.31 KB
/
server.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
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <pthread.h>
#include <sys/ipc.h>
#include <sys/msg.h>
#include "prodcons_msg.h"
#include "prodcons_server.h"
#define TOTALE_WORKER 3
#define RICHIESTE_PER_WORKER 2
void * worker(void *);
struct param {
int id_coda_richieste;
int id_coda_risposte;
};
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_monitor();
pthread_t thread_workers[TOTALE_WORKER];
for(int i=0; i<TOTALE_WORKER; i++) {
struct param * p = malloc(sizeof(struct param));
p->id_coda_richieste = id_coda_richieste;
p->id_coda_risposte = id_coda_risposte;
pthread_create(&thread_workers[i], NULL, worker, p);
}
for(int i=0; i<TOTALE_WORKER; i++) {
pthread_join(thread_workers[i], NULL);
}
remove_monitor();
return 0;
}
void * worker(void * x) {
struct param * p = (struct param *) x;
int id_coda_richieste = p->id_coda_richieste;
int id_coda_risposte = p->id_coda_risposte;
int ret;
int risultato;
int errore;
printf("[Worker] In attesa di richieste...\n");
for(int i=0; i<RICHIESTE_PER_WORKER; i++) {
richiesta_rpc richiesta;
ret = msgrcv(id_coda_richieste, &richiesta, sizeof(richiesta_rpc) - sizeof(long), 0, 0);
if(ret < 0) {
perror("Errore msgrcv");
exit(1);
}
if(richiesta.type == TYPE_PRODUCI_CON_SOMMA) {
int val1 = richiesta.parametro1;
int val2 = richiesta.parametro2;
int val3 = richiesta.parametro3;
printf("[Worker] Ricevuta richiesta di tipo PRODUCI CON SOMMA(%d, %d, %d)\n", val1, val2, val3);
produci_con_somma(val1, val2, val3);
risultato = 0;
errore = 0;
}
else if(richiesta.type == TYPE_PRODUCI) {
int val1 = richiesta.parametro1;
printf("[Worker] Ricevuta richiesta di tipo PRODUCI(%d)\n", val1);
produci(val1);
risultato = 0;
errore = 0;
}
else if(richiesta.type == TYPE_CONSUMA) {
printf("[Worker] Ricevuta richiesta di tipo CONSUMA(nessun parametro)\n");
risultato = consuma();
errore = 0;
}
else {
printf("[Worker] Errore, tipo di richiesta sconosciuta");
risultato = -1;
errore = 1;
}
int pid_client = richiesta.pid_client;
risposta_rpc risposta;
risposta.type = pid_client;
risposta.risultato = risultato;
risposta.errore = errore;
ret = msgsnd(id_coda_risposte, &risposta, sizeof(risposta_rpc) - sizeof(long), 0);
if(ret < 0) {
perror("Errore msgsnd");
exit(1);
}
printf("[Worker] Inviato risposta: risultato=%d, errore=%d\n", risultato, errore);
}
free(p);
printf("[Worker] Terminazione\n");
return NULL;
}