-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathfile-size-2.c
323 lines (253 loc) · 8.57 KB
/
file-size-2.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
#include "../../lib/lib-misc.h"
#include <dirent.h>
#include <linux/limits.h>
#include <pthread.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/stat.h>
/* Implementazione di una lista doppiamente linkata
NOTA: l'utilizzo di una lista ordinata migliorerebbe il tempo di esecuzione
del nostro programma (estrazione del minimo e del massimo in testa e in
coda). Per semplicità implementiamo una lista doppiamente linkata.
*/
typedef struct __node {
unsigned long value;
struct __node *next;
struct __node *prev;
} node;
typedef struct {
node *head;
unsigned size;
} list;
void init_list(list *l) {
l->head = NULL;
l->size = 0;
}
void list_insert(list *l, const int value) {
node *n = malloc(sizeof(node));
n->value = value;
n->prev = NULL;
n->next = l->head;
l->head = n;
if (n->next != NULL)
n->next->prev = n;
l->size++;
}
unsigned long extract_min(list *l) {
// controllo ridondante (non dovrei chiamare la funzione quando non ci sono
// elementi)
if (l->head == NULL)
return 0;
unsigned long min;
node *min_ptr = l->head;
node *ptr = l->head->next;
// ricerco il minimo all'interno della lista
while (ptr != NULL) {
if (ptr->value < min_ptr->value)
min_ptr = ptr;
ptr = ptr->next;
}
min = min_ptr->value;
// cancellazione del nodo contenente il minimo
if (min_ptr->prev != NULL)
min_ptr->prev->next = min_ptr->next;
if (min_ptr->next != NULL)
min_ptr->next->prev = min_ptr->prev;
if (l->head == min_ptr)
l->head = l->head->next;
free(min_ptr);
l->size--;
return min;
}
unsigned long extract_max(list *l) {
// controllo ridondante (non dovrei chiamare la funzione quando non ci sono
// elementi)
if (l->head == NULL)
return 0;
unsigned long max;
node *max_ptr = l->head;
node *ptr = l->head->next;
// ricerco il massimo all'interno della lista
while (ptr != NULL) {
if (ptr->value > max_ptr->value)
max_ptr = ptr;
ptr = ptr->next;
}
max = max_ptr->value;
// cancellazione del nodo contenente il massimo
if (max_ptr->prev != NULL)
max_ptr->prev->next = max_ptr->next;
if (max_ptr->next != NULL)
max_ptr->next->prev = max_ptr->prev;
if (l->head == max_ptr)
l->head = l->head->next;
free(max_ptr);
l->size--;
return max;
}
void list_destroy(list *l) {
node *ptr = l->head;
node *tmp;
while (ptr != NULL) {
tmp = ptr;
ptr = ptr->next;
free(tmp);
}
free(l);
}
typedef struct {
list *l;
unsigned done;
// strumenti per la sincronizzazione e la mutua esclusione
pthread_mutex_t lock;
pthread_cond_t cond;
} number_set;
// inizializza la struttura dati condivisa
void init_number_set(number_set *ns) {
int err;
ns->done = 0;
ns->l = malloc(sizeof(list));
init_list(ns->l);
if ((err = pthread_mutex_init(&ns->lock, 0)) != 0)
exit_with_err("pthread_mutex_init", err);
if ((err = pthread_cond_init(&ns->cond, 0)) != 0)
exit_with_err("pthread_cond_init", err);
}
// dealloca la struttura dati condivisa
void destroy_number_set(number_set *ns) {
list_destroy(ns->l);
pthread_mutex_destroy(&ns->lock);
pthread_cond_destroy(&ns->cond);
free(ns);
}
typedef struct {
// dati privati
pthread_t tid;
unsigned thread_n;
unsigned ndir;
char *dirname;
// dati condivisi
number_set *sh;
} thread_data;
// start_routine per i thread DIR-i
void dir_scanner(void *arg) {
int err;
thread_data *td = (thread_data *)arg;
DIR *dp;
struct dirent *entry;
struct stat statbuf;
char pathfile[PATH_MAX];
// apro la directory destinata al thread
if ((dp = opendir(td->dirname)) == NULL)
exit_with_sys_err("opendir");
printf("[D-%u] scansione della cartella '%s'\n", td->thread_n, td->dirname);
// itero sugli oggetti del filesystem presenti nella directory
while ((entry = readdir(dp))) {
// concateno il path della directory con il nome del file
snprintf(pathfile, PATH_MAX, "%s/%s", td->dirname, entry->d_name);
// effettuo uno stat del file
if (lstat(pathfile, &statbuf) == -1)
exit_with_sys_err(entry->d_name);
// verifico se il file considerato è regolare
if (S_ISREG(statbuf.st_mode)) {
printf("[D-%u] trovato il file '%s' in %s\n", td->thread_n,
entry->d_name, td->dirname);
// acquisisco il lock sulla struttura dati condivisa
if ((err = pthread_mutex_lock(&td->sh->lock)) != 0)
exit_with_err("pthread_mutex_lock", err);
list_insert(td->sh->l, statbuf.st_size);
// risveglio un thread ADD-j
if ((err = pthread_cond_signal(&td->sh->cond)) != 0)
exit_with_err("pthread_cond_signal", err);
// rilascio il lock sulla struttura dati condivisa
if ((err = pthread_mutex_unlock(&td->sh->lock)) != 0)
exit_with_err("pthread_mutex_unlock", err);
}
}
// acquisisco il lock sulla struttura dati condivisa
if ((err = pthread_mutex_lock(&td->sh->lock)) != 0)
exit_with_err("pthread_mutex_lock", err);
td->sh->done++;
// risveglio entrambi i thread ADD-j
if ((err = pthread_cond_broadcast(&td->sh->cond)) != 0)
exit_with_err("pthread_cond_broadcast", err);
// rilascio il lock
if ((err = pthread_mutex_unlock(&td->sh->lock)) != 0)
exit_with_err("pthread_mutex_unlock", err);
// chiudo la directory
closedir(dp);
}
// start_routine per i thread ADD-j
void add(void *arg) {
int err;
thread_data *td = (thread_data *)arg;
unsigned long min, max, sum;
unsigned done = 0;
while (1) {
// acquisisco il lock sulla struttura dati condivisa
if ((err = pthread_mutex_lock(&td->sh->lock)) != 0)
exit_with_err("pthread_mutex_lock", err);
// verifico le condizioni di operabilità o di possibile terminazione
while (td->sh->l->size < 2 && td->sh->done != td->ndir)
if ((err = pthread_cond_wait(&td->sh->cond, &td->sh->lock)) != 0)
exit_with_err("pthread_cond_wait", err);
// verifico se devo terminare
if (td->sh->done == td->ndir && td->sh->l->size == 1) {
// rilascio il lock sulla struttura dati condivisa
if ((err = pthread_mutex_unlock(&td->sh->lock)) != 0)
exit_with_err("pthread_mutex_unlock", err);
break;
}
// estraggo il minimo e il massimo e ne calcolo la somma
min = extract_min(td->sh->l);
max = extract_max(td->sh->l);
sum = min + max;
// inserisco la somma all'interno della lista
list_insert(td->sh->l, sum);
printf("[ADD-%u] il minimo (%lu) ed il massimo (%lu) sono stati "
"sostituiti da %lu; l'insieme ha adesso %u elementi.\n",
td->thread_n, min, max, sum, td->sh->l->size);
// rilascio il lock sulla struttura dati condivisa
if ((err = pthread_mutex_unlock(&td->sh->lock)) != 0)
exit_with_err("pthread_mutex_unlock", err);
}
}
int main(int argc, char **argv) {
if (argc < 2) {
printf("Usage: %s <dir-1> <dir-2> ... <dir-n>\n", argv[0]);
exit(EXIT_FAILURE);
}
int err;
unsigned ndir = argc - 1;
thread_data td[ndir + 2];
number_set *sh = malloc(sizeof(number_set));
init_number_set(sh);
// creazione dei thread DIR-i
for (int i = 0; i < ndir; i++) {
td[i].thread_n = i + 1;
td[i].dirname = argv[i + 1];
td[i].sh = sh;
if ((err = pthread_create(&td[i].tid, NULL, (void *)dir_scanner,
&td[i])) != 0)
exit_with_err("pthread_create", err);
}
// creazione dei thread ADD-j
for (int i = 0; i < 2; i++) {
td[i + ndir].sh = sh;
td[i + ndir].thread_n = i + 1;
td[i + ndir].ndir = ndir;
if ((err = pthread_create(&td[i + ndir].tid, NULL, (void *)add,
&td[i + ndir])) != 0)
exit_with_err("pthread_create", err);
}
for (int i = 0; i < ndir + 2; i++)
if ((err = pthread_join(td[i].tid, NULL)) != 0)
exit_with_err("pthread_join", err);
printf("[MAIN] i thread secondari hanno terminato e il totale finale è di "
"%lu byte.\n",
sh->l->head->value);
// dealloco la struttura dati condivisa
destroy_number_set(sh);
}