-
Notifications
You must be signed in to change notification settings - Fork 0
/
socket_util.c
432 lines (364 loc) · 11.4 KB
/
socket_util.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
#include "socket_util.h"
//check if error from socket
int sock_error(int sock_bytes) {
if (sock_bytes <= 0) return 1;
return 0;
}
//send the showcase in server
int send_showcase(int socket_desc) {
char buf[4096];
int msg_len;
int ret, recv_bytes, err = 0;
if (!empty_showcase()) {
semaphore_wait();
showcase* punt = bacheca;
while (punt != NULL) {
//write post into buffer
sprintf(buf, "Time: %sAuthor: %s\nObject: %s\nText: %s\nID: %d\n",
ctime(&(punt->element.date)), punt->element.author, punt->element.object, punt->element.text, punt->element.id);
//send post
msg_len = strlen(buf);
while ( (ret = send(socket_desc, buf, msg_len, 0)) < 0 ) {
if (errno == EINTR) continue;
if (errno == EAGAIN) break;
}
if (sock_error(ret)) {
err = 1;
break;
}
// wait for client's ACK
while ( (recv_bytes = recv(socket_desc, buf, 3, 0)) < 0 ) {
if (errno == EINTR) continue;
if (errno == EAGAIN) break;
}
if (sock_error(recv_bytes)) {
err = 1;
break;
}
punt = punt->next;
}
semaphore_post();
if (err) return 0;
}else{
//the showcase is empty....
sprintf(buf, "Unfortunately there are no posts on the showcase.\n");
msg_len = strlen(buf);
while ( (ret = send(socket_desc, buf, msg_len, 0)) < 0 ) {
if (errno == EINTR) continue;
if (errno == EAGAIN) break;
}
if (sock_error(ret)) return 0;
// wait for client's ACK
while ( (recv_bytes = recv(socket_desc, buf, 3, 0)) < 0 ) {
if (errno == EINTR) continue;
if (errno == EAGAIN) break;
}
if (sock_error(recv_bytes)) return 0;
}
//send finished command
sprintf(buf,"finished");
msg_len = strlen(buf);
while ( (ret = send(socket_desc, buf, msg_len, 0)) < 0 ) {
if (errno == EINTR) continue;
if (errno == EAGAIN) break;
}
if (sock_error(ret)) return 0;
return 1;
}
//receive the showcase in client
int recv_showcase(int socket_desc) {
char buf[4096];
int msg_len;
int buf_len = sizeof(buf);
int ret;
printf("**************************************************************************************\n");
printf("--------------------------------------------------------------------------------------\n");
while (1) {
// read message from server
while ( (msg_len = recv(socket_desc, buf, buf_len, 0)) < 0 ) {
if (errno == EINTR) continue;
}
if (sock_error(msg_len)) return 0;
//check if the showcase is finished
if (msg_len == 8 && !memcmp(buf, "finished", 8)) {
break;
}
//send ACK to server to confirm
while ( (ret = send(socket_desc, "ACK", 3, 0)) < 0) {
if (errno == EINTR) continue;
}
if (sock_error(ret)) return 0;
buf[msg_len] = '\0';
printf("%s", buf);
printf("--------------------------------------------------------------------------------------\n");
}
printf("**************************************************************************************\n");
return 1;
}
//send new post in client
int send_post(int socket_desc) {
char buf[4096];
int msg_len = 0;
int ret;
while (1) {
//get object for new post
printf("Insert object of the post (max 50 characters): ");
if (fgets(buf, sizeof(buf), stdin) != (char*)buf) {
fprintf(stderr, "Error while reading from stdin, exiting...\n");
return 0;
}
//send object for new post
msg_len = strlen(buf);
buf[--msg_len] = '\0'; // remove '\n' from the end of the message
if (msg_len == 0) {
printf("ERROR: you must insert an object!\n");
continue;
}else if (msg_len > 50 ) {
printf("ERROR: too many characters!\n");
continue;
}
break;
}
while ( (ret = send(socket_desc, buf, msg_len, 0)) < 0) {
if (errno == EINTR) continue;
}
if (sock_error(ret)) return 0;
// wait for server's ACK
while ( (msg_len = recv(socket_desc, buf, 3, 0)) < 0 ) {
if (errno == EINTR) continue;
}
if (sock_error(msg_len)) return 0;
while (1) {
//get text for new post
printf("Insert text of the post (max 1900 characters): ");
if (fgets(buf, sizeof(buf), stdin) != (char*)buf) {
fprintf(stderr, "Error while reading from stdin, exiting...\n");
exit(EXIT_FAILURE);
}
//send text for new post
msg_len = strlen(buf);
buf[--msg_len] = '\0'; // remove '\n' from the end of the message
if (msg_len == 0) {
printf("ERROR: you must insert some text!\n");
continue;
}else if (msg_len > 1900 ) {
printf("ERROR: too many characters!\n");
continue;
}
break;
}
while ( (ret = send(socket_desc, buf, msg_len, 0)) < 0) {
if (errno == EINTR) continue;
}
if (sock_error(ret)) return 0;
// wait for server's ACK
while ( (msg_len = recv(socket_desc, buf, 3, 0)) < 0 ) {
if (errno == EINTR) continue;
}
if (sock_error(msg_len)) return 0;
while (1) {
//get password for new post
printf("Insert password for post (max 15 characters): ");
if (fgets(buf, sizeof(buf), stdin) != (char*)buf) {
fprintf(stderr, "Error while reading from stdin, exiting...\n");
return 0;
}
//send text for new post
msg_len = strlen(buf);
buf[--msg_len] = '\0'; // remove '\n' from the end of the message
if (msg_len == 0) {
printf("ERROR: you must insert a password!\n");
continue;
}else if (msg_len > 15 ) {
printf("ERROR: too many characters!\n");
continue;
}
break;
}
while ( (ret = send(socket_desc, buf, msg_len, 0)) < 0) {
if (errno == EINTR) continue;
}
if (sock_error(ret)) return 0;
// wait for server's ACK
while ( (msg_len = recv(socket_desc, buf, 3, 0)) < 0 ) {
if (errno == EINTR) continue;
}
if (sock_error(ret)) return 0;
return 1;
}
// receive new post in server
int recv_post(int socket_desc, char* username) {
char buf[4096];
int buf_len = sizeof(buf);
int ret, recv_bytes;
char object[100];
char text[3800];
char password[30];
// wait for object of the new post
while ( (recv_bytes = recv(socket_desc, object, sizeof(object), 0)) < 0 ) {
if (errno == EINTR) continue;
if (errno == EAGAIN) break;
}
if (sock_error(recv_bytes)) return 0;
object[recv_bytes] = '\0';
//send ACK to client to confirm
while ( (ret = send(socket_desc, "ACK", 3, 0)) < 0) {
if (errno == EINTR) continue;
if (errno == EAGAIN) break;
}
if (sock_error(ret)) return 0;
// wait for text of the new post
while ( (recv_bytes = recv(socket_desc, text, sizeof(text), 0)) < 0 ) {
if (errno == EINTR) continue;
if (errno == EAGAIN) break;
}
if (sock_error(recv_bytes)) return 0;
text[recv_bytes] = '\0';
//send ACK to client to confirm
while ( (ret = send(socket_desc, "ACK", 3, 0)) < 0) {
if (errno == EINTR) continue;
if (errno == EAGAIN) break;
}
if (sock_error(ret)) return 0;
// wait for password for the new post
while ( (recv_bytes = recv(socket_desc, password, sizeof(password), 0)) < 0 ) {
if (errno == EINTR) continue;
if (errno == EAGAIN) break;
}
if (sock_error(recv_bytes)) return 0;
password[recv_bytes] = '\0';
//send ACK to client to confirm
while ( (ret = send(socket_desc, "ACK", 3, 0)) < 0) {
if (errno == EINTR) continue;
if (errno == EAGAIN) break;
}
if (sock_error(ret)) return 0;
//create the new post
if (insert_post(username, object, text, password)) {
//send succesfully message to client
strcpy(buf, "NEW POST SUCCESFULLY ADDED TO THE SHOWCASE.\0");
}else{
//send unsuccesfully message to client
strcpy(buf, "NEW POST HAS NOT BEEN ADDED TO THE SHOWCASE\0");
}
buf_len = strlen(buf);
while ( (ret = send(socket_desc, buf, buf_len+1, 0)) < 0 ) {
if (errno == EINTR) continue;
if (errno == EAGAIN) break;
}
if (sock_error(ret)) return 0;
return 1;
}
//send the delete message command in client
int send_delete(int socket_desc) {
char buf[1024];
int msg_len = 0;
int ret;
//get id for the post to delete
int check_id = 1;
while(check_id) {
check_id = 0;
printf("Insert the ID of the post you want to delete: ");
if (fgets(buf, sizeof(buf), stdin) != (char*)buf) {
fprintf(stderr, "Error while reading from stdin, exiting...\n");
return 0;
}
msg_len = strlen(buf);
buf[--msg_len] = '\0'; // remove '\n' from the end of the message
for (int i=0; i<msg_len; i++) {
if (!isdigit(buf[i])) {
printf("ERROR: you didn't inserted a number!\n");
check_id = 1;
break;
}
}
if (strlen(buf) == 0) {
printf("ERROR: you must insert an ID!\n");
check_id = 1;
}
}
//send id for post to delete
while ( (ret = send(socket_desc, buf, msg_len, 0)) < 0) {
if (errno == EINTR) continue;
}
if (sock_error(ret)) return 0;
// wait for server's ACK
while ( (msg_len = recv(socket_desc, buf, 3, 0)) < 0 ) {
if (errno == EINTR) continue;
}
if (sock_error(msg_len)) return 0;
while (1) {
//get password for post to delete
printf("Insert the password of the post: ");
if (fgets(buf, sizeof(buf), stdin) != (char*)buf) {
fprintf(stderr, "Error while reading from stdin, exiting...\n");
return 0;
}
//send text for new post
msg_len = strlen(buf);
buf[--msg_len] = '\0'; // remove '\n' from the end of the message
if (msg_len == 0) {
printf("ERROR: you must insert a password!\n");
continue;
}else if (msg_len > 15 ) {
printf("ERROR: too many characters!\n");
continue;
}
break;
}
//send the password
while ( (ret = send(socket_desc, buf, msg_len, 0)) < 0) {
if (errno == EINTR) continue;
}
if (sock_error(ret)) return 0;
// wait for server's ACK
while ( (msg_len = recv(socket_desc, buf, 3, 0)) < 0 ) {
if (errno == EINTR) continue;
}
if (sock_error(msg_len)) return 0;
return 1;
}
//receive the delete message in server
int recv_delete(int socket_desc, char username[]) {
char buf[1024];
char password[30];
int buf_len = sizeof(buf);
int ret, recv_bytes;
int id;
// wait for id of the post to delete
while ( (recv_bytes = recv(socket_desc, buf, buf_len, 0)) < 0 ) {
if (errno == EINTR) continue;
if (errno == EAGAIN) break;
}
if (sock_error(recv_bytes)) return 0;
buf[recv_bytes] = '\0';
id = atoi(buf);
//send ACK to client to confirm
while ( (ret = send(socket_desc, "ACK", 3, 0)) < 0) {
if (errno == EINTR) continue;
if (errno == EAGAIN) break;
}
if (sock_error(ret)) return 0;
// wait for password for the post to delete
while ( (recv_bytes = recv(socket_desc, password, buf_len, 0)) < 0 ) {
if (errno == EINTR) continue;
if (errno == EAGAIN) break;
}
if (sock_error(recv_bytes)) return 0;
password[recv_bytes] = '\0';
//send ACK to client to confirm
while ( (ret = send(socket_desc, "ACK", 3, 0)) < 0) {
if (errno == EINTR) continue;
if (errno == EAGAIN) break;
}
if (sock_error(ret)) return 0;
//send deleted message
strcpy(buf, delete_post(id, password, username));
buf_len = strlen(buf);
while ( (ret = send(socket_desc, buf, buf_len+1, 0)) < 0 ) {
if (errno == EINTR) continue;
if (errno == EAGAIN) break;
}
if (sock_error(ret)) return 0;
return 1;
}