-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdb.c
569 lines (492 loc) · 14.8 KB
/
db.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
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <errno.h>
#include <string.h>
#include <sqlite3.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include "db.h"
int callbackchk (void *res, int argc, char **argv, char **azColName)
{
long j;
char *endptr;
int *val = (int *) res;
(void) azColName;
if (argc!=1)
{
fprintf(stderr, "Unexpected number of columns(dbcontrol)");
return EXIT_FAILURE;
}
errno = 0;
j = strtol(argv[0], &endptr, 0);
if (errno!=0)
{
perror("error in strtol(dbcontrol)");
return EXIT_FAILURE;
}
if (j == 0) {
*val = 0;
} else {
*val = 1;
}
return EXIT_SUCCESS;
}
int dbcontrol(sqlite3 *db, char *image, int flag) //Controls whether "image" exists in table 'flag' (0=imag, 1=orig) and returns 1 if positive, 0 if negative. - Controlla se "image" esiste nella tabella flag (0=imag, 1=orig) e restituisce 1 in caso affermativo, 0 in caso negativo
{
char *zErrMsg = 0;
char dbcomm[512];
int res;
char flags[6];
errno = 0;
if (flag==0) snprintf(flags, sizeof(char)*5, "imag");
else if (flag==1) snprintf(flags, sizeof(char)*5, "orig");
else {
fprintf(stderr, "Error in dbcontrol: wrong flag value");
exit(EXIT_FAILURE);
}
ssize_t cou = snprintf(dbcomm, sizeof(char)*512, "SELECT count(*) FROM %s WHERE name='%s'", flags, image);
if (cou > sizeof(char)*512 || cou == -1) {
perror("snprintf (dbcontrol)");
return EXIT_FAILURE;
}
sqlite3_busy_timeout(db, 200);
if (sqlite3_exec(db, dbcomm, callbackchk, (void *)&res, &zErrMsg)) {
perror("error in sqlite_execcontrol(dbcontrol)");
sqlite3_free(zErrMsg);
return EXIT_FAILURE;
}
return res;
}
struct datares {
sqlite3 *db;
char orig_path[512];
};
int callbackval (void *res, int argc, char **argv, char **azColName)
{
long j;
char *endptr;
struct datares *val = (struct datares *) res;
(void) azColName;
char path[strlen(val->orig_path)+strlen(argv[0])];
if (argc!=1)
{
fprintf(stderr, "Unexpected number of columns(dbvalidate)");
return EXIT_FAILURE;
}
sprintf(path,"%s%s",val->orig_path,argv[0]);
if (open(path,O_RDWR) == -1) {
dbremove(val->db,argv[0],1);
printf("Image %s removed\n",argv[0]);
}
return EXIT_SUCCESS;
}
int dbvalidate(sqlite3 *db, char *orig_path, int flag) //Removes from table 'flag' (0=imag, 1=orig) every image that isn't present in the directory 'orig_path' - Rimuove dalla tabella 'flag' (0=imag, 1=orig) ogni immagine che non sia presente nella cartella 'orig_path'
{
char *zErrMsg = 0;
char dbcomm[512];
int res;
char flags[6];
errno = 0;
struct datares datar;
datar.db = db;
strcpy(datar.orig_path,orig_path);
if (flag==0) snprintf(flags, sizeof(char)*5, "imag");
else if (flag==1) snprintf(flags, sizeof(char)*5, "orig");
else {
fprintf(stderr, "Error in dbvalidate: wrong flag value");
exit(EXIT_FAILURE);
}
ssize_t cou = snprintf(dbcomm, sizeof(char)*512, "SELECT name FROM %s ", flags);
if (cou > sizeof(char)*512 || cou == -1) {
perror("snprintf (dbvalidate)");
return EXIT_FAILURE;
}
sqlite3_busy_timeout(db, 200);
if (sqlite3_exec(db, dbcomm, callbackval, (void *)&datar, &zErrMsg)) {
perror("error in sqlite_execcontrol(dbvalidate)");
sqlite3_free(zErrMsg);
return EXIT_FAILURE;
}
return res;
}
int dbadd(sqlite3 *db, struct Record rd, int flag) //Adds to table 'flag' (0=imag, 1=orig) the record rd. - Aggiunge allla tabella flag (0=imag, 1=orig) il record rd
{
char *zErrMsg = 0;
char dbcomm[512];
ssize_t cou;
if (flag==0) cou = snprintf(dbcomm, sizeof(char)*512, "INSERT INTO imag values('%s', datetime(), %ld)", rd.name, rd.acc);
else if (flag==1) cou = snprintf(dbcomm, sizeof(char)*512, "INSERT INTO orig values('%s', datetime(), %ld)", rd.name, rd.acc);
else {
fprintf(stderr, "Error in dbadd: wrong flag value");
return (EXIT_FAILURE);
}
if (cou > sizeof(char)*512 || cou == -1) {
perror("snprintf (dbadd)");
return EXIT_FAILURE;
}
/*
printf("%s\n",dbcomm);
fflush(stdout);
*/
errno = 0;
sqlite3_busy_timeout(db, 200);
if (sqlite3_exec(db, dbcomm, NULL, 0, &zErrMsg)){
perror("error in sqlite_execcontrol (dbadd)");
sqlite3_free(zErrMsg);
return EXIT_FAILURE;
}
return EXIT_SUCCESS;
}
int dbremove(sqlite3 *db, char *image, int flag) //Removes from table 'flag' (0=imag, 1=orig) "image". - Rimuove dallla tabella flag (0=imag, 1=orig) "image"
{
char *zErrMsg = 0;
char dbcomm[512];
ssize_t cou;
if (flag==0) cou = snprintf(dbcomm, sizeof(char)*512, "DELETE FROM imag WHERE name='%s'", image);
else if (flag==1) cou = snprintf(dbcomm, sizeof(char)*512, "DELETE FROM orig WHERE name='%s'", image);
else {
fprintf(stderr, "Error in dbremove: wrong flag value");
exit(EXIT_FAILURE);
}
if (cou > sizeof(char)*512 || cou == -1) {
perror("snprintf (dbremove)");
return EXIT_FAILURE;
}
sqlite3_busy_timeout(db, 200);
if (sqlite3_exec(db, dbcomm, NULL, 0, &zErrMsg)){
perror("error in sqlite_exec (dbremove)");
sqlite3_free(zErrMsg);
return EXIT_FAILURE;
}
return EXIT_SUCCESS;
}
int callbackremol (void * res, int argc, char **argv, char **azColName)
{
(void) azColName;
if (argc!=1)
{
fprintf(stderr, "Unexpected number of columns (dbremoveoldest)");
return EXIT_FAILURE;
}
char *val=(char *) res;
strcpy(val, argv[0]);
return EXIT_SUCCESS;
}
int dbremoveoldest(sqlite3 *db, int fdl) //Removes from table 'imag' the least recently used record(s). -Rimuove dalla tabella 'imag' il/i record a cui non si è acceduto da più tempo
{
char *zErrMsg = 0;
char nameimm[512];
char filepath[512];
sqlite3_busy_timeout(db, 200);
if (sqlite3_exec(db, "SELECT name FROM imag WHERE date = (SELECT min(date) FROM imag)", callbackremol, nameimm, &zErrMsg)){
perror("error in sqlite_exec (dbremoveoldest)");
sqlite3_free(zErrMsg);
return EXIT_FAILURE;
}
dbremove(db, nameimm, 0);
dprintf("%s image correctly removed from db",nameimm);
ssize_t cou = snprintf(filepath, sizeof(char)*512, "/bin/rm %s.*", nameimm); //Removes the files from the system - Rimuove i file dal sistema
if (cou > sizeof(char)*512 || cou == -1) {
perror("snprintf (dbremoveoldest)");
return EXIT_FAILURE;
}
if (system(filepath)==-1){
perror("error in system (rm) (dbremoveoldest)"); //NOTA: Se non dovesse funzionare, probabilmente andrà aggiunto ./ a nameimm
return EXIT_FAILURE;
}
dprintf("%s image correctly removed from the disk",nameimm);
return EXIT_SUCCESS;
}
int callbackacc (void * res, int argc, char **argv, char **azColName)
{
long *val=(long *) res;
long j;
char *endptr;
(void) azColName;
if (argc!=1)
{
fprintf(stderr, "Unexpected number of columns (dbcheck)");
return EXIT_FAILURE;
}
errno=0;
j=strtol(argv[0], &endptr, 0);
if (errno!=0)
{
perror("error in strtol (dbcheck)");
return EXIT_FAILURE;
}
*val=j+1;
return EXIT_SUCCESS;
}
int dbcheck(sqlite3 *db, char *image, char *origimag ) //Calls dbcontrol, updates the acces date/add the record on 'imag' and updates the acces numer on 'orig'. -Chiama dbcontrol, aggiorna la data d'accesso/aggiunge il record su 'imag' ed aggiorna il numero di accessi su 'orig'
{
char *zErrMsg = 0;
char dbcomm[512];
long acc;
int check;
ssize_t cou;
errno = 0;
check = dbcontrol(db, image, 0);
sqlite3_busy_timeout(db, 200);
if (check == 1)
{
cou = snprintf(dbcomm, sizeof(char)*512, "SELECT acc FROM imag WHERE name = '%s'", image);
if (cou > sizeof(char)*512 || cou == -1) {
perror("snprintf (dbcheck)");
return EXIT_FAILURE;
}
if (sqlite3_exec(db, dbcomm, callbackacc, (void *)&acc, &zErrMsg)){
perror("error in sqlite_exec (dbcheck)");
sqlite3_free(zErrMsg);
return EXIT_FAILURE;
}
cou = snprintf(dbcomm, sizeof(char)*512, "UPDATE imag SET date = datetime(), acc = %ld WHERE name= '%s'", acc, image);
if (cou > sizeof(char)*512 || cou == -1) {
perror("snprintf (dbcheck)");
return EXIT_FAILURE;
}
if (sqlite3_exec(db, dbcomm, NULL, 0, &zErrMsg)){
perror("error in sqlite_exec (dbcheck)");
sqlite3_free(zErrMsg);
return EXIT_FAILURE;
}
}
else if (check ==0)
{
struct Record rd = {.name = image ,.acc = 0};
strcpy(rd.name,image);
dbadd(db, rd, 0);
}
cou = snprintf(dbcomm, sizeof(char)*512, "SELECT acc FROM orig WHERE name = '%s'", origimag);
if (sqlite3_exec(db, dbcomm, callbackacc, (void *)&acc, &zErrMsg)){
perror("error in sqlite_exec (dbcheck)");
sqlite3_free(zErrMsg);
return EXIT_FAILURE;
}
if (cou > sizeof(char)*512 || cou == -1) {
perror("snprintf (dbcheck)");
return EXIT_FAILURE;
}
cou = snprintf(dbcomm, sizeof(char)*512, "UPDATE orig SET acc = %ld WHERE name= '%s'", acc, origimag);
if (cou > sizeof(char)*512 || cou == -1) {
perror("snprintf (dbcheck)");
return EXIT_FAILURE;
}
if (sqlite3_exec(db, dbcomm, NULL, 0, &zErrMsg)){
perror("error in sqlite_exec (dbcheck)");
sqlite3_free(zErrMsg);
return EXIT_FAILURE;
}
return check;
}
int callbackcount (void * res, int argc, char **argv, char **azColName)
{
int *val=(int *) res;
long j;
char *endptr;
(void) azColName;
if (argc!=1)
{
fprintf(stderr, "Unexpected number of columns (dbcount)");
return EXIT_FAILURE;
}
errno=0;
j=strtol(argv[0], &endptr, 0);
if (errno!=0)
{
perror("error in strtol (dbcount)");
return EXIT_FAILURE;
}
*val=j;
return EXIT_SUCCESS;
}
int dbcount(sqlite3 *db, int flag) //Returns the number of existing records in 'flag' (0=imag, 1=orig) table. - Restituisce il numero di record esistenti nella tabella flag (0=imag, 1=orig)
{
char *zErrMsg = 0;
char dbcomm[512];
int res;
char flags[6];
errno = 0;
sqlite3_busy_timeout(db, 200);
ssize_t cou;
if (flag==0) cou = snprintf(flags, sizeof(char)*5, "imag");
else if (flag==1) cou = snprintf(flags, sizeof(char)*5, "orig");
else {
fprintf(stderr, "Error in dbcount: wrong flag value");
exit(EXIT_FAILURE);
}
if (cou > sizeof(char)*512 || cou == -1) {
perror("snprintf (dbcount)");
return EXIT_FAILURE;
}
cou = snprintf(dbcomm, sizeof(char)*512, "SELECT count(*) FROM %s ", flags);
if (cou > sizeof(char)*512 || cou == -1) {
perror("snprintf (dbcount)");
return EXIT_FAILURE;
}
if (sqlite3_exec(db, dbcomm, callbackcount, (void*)&res, &zErrMsg)){
perror("error in sqlite_exec (dbcount)");
sqlite3_free(zErrMsg);
return EXIT_FAILURE;
}
return res;
}
int callbacksel (void * res, int argc, char **argv, char **azColName)
{
(void) azColName;
if (argc!=3)
{
fprintf(stderr, "Unexpected number of columns (dbselect)");
return EXIT_FAILURE;
}
char * s=(char *)res;
ssize_t cou = snprintf(s, sizeof(char)*512, "%s %s %s", argv[0], argv[1], argv[2]);
if (cou > sizeof(char)*512 || cou == -1) {
perror("snprintf (dbselect)");
return EXIT_FAILURE;
}
return EXIT_SUCCESS;
}
char *dbselect(sqlite3 *db, char *image, int flag) //Returns the record of "image" from the table 'flag' (0=imag, 1=orig) - Restituisce il record di "image" dalla tabella 'flag' (0=imag, 1=orig)
{
char *zErrMsg = 0;
char dbcomm[512];
char *res;
char flags[6];
sqlite3_busy_timeout(db, 200);
if((res= malloc(sizeof(char)*512))==NULL)
{
perror ("Error in Malloc (dbselect)");
return NULL;
}
ssize_t cou;
if (flag==0) cou = snprintf(flags, sizeof(char)*5, "imag");
else if (flag==1) cou = snprintf(flags, sizeof(char)*5, "orig");
else {
fprintf(stderr, "Error in dbselect: wrong flag value");
exit(EXIT_FAILURE);
}
if (cou > sizeof(char)*512 || cou == -1) {
perror("snprintf (dbselect)");
return NULL;
}
cou = snprintf(dbcomm, sizeof(char)*512, "SELECT (*) FROM %s WHERE name='%s'", flags, image);
if (cou > sizeof(char)*512 || cou == -1) {
perror("snprintf (dbselect)");
return NULL;
}
if (sqlite3_exec(db, dbcomm, callbacksel, (void*)res, &zErrMsg)){
perror("error in sqlite_exec (dbselect)");
sqlite3_free(zErrMsg);
return NULL;
}
return res;
}
int callbackcount2 (void * res, int argc, char **argv, char **azColName)
{
int *val=(int *) res;
long j;
char *endptr;
(void) azColName;
if (argc!=1)
{
fprintf(stderr, "Unexpected number of columns (dbcount2)");
return EXIT_FAILURE;
}
errno=0;
j=strtol(argv[0], &endptr, 0);
if (errno!=0)
{
perror("error in strtol (dbcount2)");
return EXIT_FAILURE;
}
*val=j;
return EXIT_SUCCESS;
}
int dbcount2(sqlite3 *db, char *UA) //Returns the number of existing records in user_agent matching UA. - Restituisce il numero di record esistenti in user agent che corrispondono a UA
{
char *zErrMsg = 0;
char dbcomm[512];
int res;
sqlite3_busy_timeout(db, 200);
ssize_t cou = snprintf(dbcomm, sizeof(char)*512, "SELECT count(*) FROM user_agent WHERE UA = '%s' ", UA);
if (cou > sizeof(char)*512 || cou == -1) {
perror("snprintf (dbcount2)");
return EXIT_FAILURE;
}
if (sqlite3_exec(db, dbcomm, callbackcount2, (void*)&res, &zErrMsg)){
perror("error in sqlite_exec (dbcount2)");
sqlite3_free(zErrMsg);
return EXIT_FAILURE;
}
return res;
}
int callbackfUA (void * res, int argc, char **argv, char **azColName)
{
(void) azColName;
if (argc!=1)
{
fprintf(stderr, "Unexpected number of columns (dbfindUA)");
return EXIT_FAILURE;
}
char * s=(char *)res;
ssize_t cou = snprintf(s, sizeof(char)*512, "%s", argv[0]);
if (cou > sizeof(char)*512 || cou == -1) {
perror("snprintf (dbfindUA)");
return EXIT_FAILURE;
}
return EXIT_SUCCESS;
}
char *dbfindUA (sqlite3 *db, char *UA) //Return the maximum resolution supported by the User Agent - Restituisce la massima risoluzione supportata dall' User Agent.
{
char *zErrMsg = 0;
char dbcomm[512];
char *res;
errno = 0;
if (dbcount2(db, UA) == 0) //If the User Agent isn't found in the db, return NULL - Se l'User Agent non è trovato nel db, ritorna NULL
{
return "NULL";
}
if((res= malloc(sizeof(char)*512))==NULL)
{
perror ("Error in Malloc (dbfindUA)");
return "NULL";
}
ssize_t cou = snprintf(dbcomm, sizeof(char)*512, "SELECT resolution FROM user_agent WHERE UA = '%s'", UA);
if (cou > sizeof(char)*512 || cou == -1) {
perror("snprintf (dbfindUA)");
return "NULL";
}
sqlite3_busy_timeout(db, 200);
if (sqlite3_exec(db, dbcomm, callbackfUA, (void*)res, &zErrMsg)){
perror("error in sqlite_exec (dbfindUA)");
sqlite3_free(zErrMsg);
return "NULL";
}
return res;
}
int dbaddUA (sqlite3 *db, char *UA, char *res) //Add a User Agent and its supported maximum resolution to the database - Aggiunge un User Agent e la sua risoluzione massima supportata al database.
{
char *zErrMsg = 0;
char dbcomm[512];
errno = 0;
ssize_t cou = snprintf(dbcomm, sizeof(char)*512, "INSERT INTO user_agent values('%s', '%s')", UA, res);
if (cou > sizeof(char)*512 || cou == -1) {
perror("snprintf (dbaddUA)");
return EXIT_FAILURE;
}
/*
printf("%s\n",dbcomm);
fflush(stdout);
*/
sqlite3_busy_timeout(db, 200);
errno = 0;
if (sqlite3_exec(db, dbcomm, NULL, 0, &zErrMsg)){
perror("error in sqlite_execcontrol (dbaddUA)");
sqlite3_free(zErrMsg);
return EXIT_FAILURE;
}
return EXIT_SUCCESS;
}