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
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442 | #include "unit_file.h"
#include "gate/strings.h"
#include "gate/results.h"
#include "gate/files.h"
#include "gate/environments.h"
#include "gate/utilities.h"
#include "gate/encode/sha256hash.h"
#include "gate/debugging.h"
/***************
* file copy *
***************/
typedef struct unit_file_copy_class
{
gate_string_t source;
gate_string_t dest;
gate_bool_t overwrite;
} unit_file_copy_t;
static unit_file_copy_t file_copy_params = GATE_INIT_EMPTY;
static gatecli_paramter_t unit_file_copy_params[] = {
{ "--source", GATE_TYPE_STRING, &file_copy_params.source, false, "Source file to be copied" },
{ "--dest", GATE_TYPE_STRING, &file_copy_params.dest, false, "Destination file path to receive copied data" },
{ "--overwrite", GATE_TYPE_BOOL, &file_copy_params.overwrite, true, "Overwrites destination file if it already exists" }
};
static gate_result_t unit_file_copy(gate_console_t* stream, char const* const* params, gate_size_t paramcount, gate_uint32_t flags)
{
gate_result_t ret;
gate_uint32_t copy_flags = 0;
if (file_copy_params.overwrite)
{
copy_flags |= GATE_FILE_COPY_OVERWRITE;
}
ret = gate_file_copy(&file_copy_params.source, &file_copy_params.dest, copy_flags);
if (GATE_FAILED(ret))
{
gate_console_println_err(stream, gate_result_text(ret));
}
return ret;
}
/****************
* file xcopy *
****************/
typedef struct unit_file_xcopy_class
{
gate_string_t source;
gate_string_t sourcelist;
gate_string_t dest;
gate_bool_t overwrite;
gate_bool_t ignore_errors;
gate_bool_t skip_existing;
gate_bool_t skip_newer;
} unit_file_xcopy_t;
static unit_file_xcopy_t file_xcopy_params = GATE_INIT_EMPTY;
static gatecli_paramter_t unit_file_xcopy_params[] = {
{ "--source", GATE_TYPE_STRING, &file_xcopy_params.source, false, "Path to source to be copied" },
{ "--sourcelist", GATE_TYPE_STRING, &file_xcopy_params.sourcelist, false, "File containing a list of sources to be copied" },
{ "--dest", GATE_TYPE_STRING, &file_xcopy_params.dest, false, "Path to destination directory" },
{ "--overwrite", GATE_TYPE_BOOL, &file_xcopy_params.overwrite, true, "Overwrites already existing destination files" },
{ "--ignore-errors", GATE_TYPE_BOOL, &file_xcopy_params.ignore_errors, true, "Continues if copying a single file failes" },
{ "--skip-existing", GATE_TYPE_BOOL, &file_xcopy_params.skip_existing, true, "Skips file if destination is already existing" },
{ "--skip-newer", GATE_TYPE_BOOL, &file_xcopy_params.skip_newer, true, "Skips file if already existing destination is newer than source modification date" }
};
struct unit_file_xcopy_find_cb
{
gate_string_t const* source_path;
gate_string_t const* dest_path;
gate_map_t* mapping;
};
static gate_bool_t unit_file_xcopy_find_sources_cb(gate_file_entry_t const* entry, void* userparam)
{
gate_bool_t ret = true;
struct unit_file_xcopy_find_cb* params = (struct unit_file_xcopy_find_cb*)userparam;
gate_string_t source_file = GATE_STRING_INIT_EMPTY;
gate_string_t dest_file = GATE_STRING_INIT_EMPTY;
gate_string_t sub_path = GATE_STRING_INIT_EMPTY;
do
{
if (NULL == gate_string_create(&source_file, entry->path, gate_str_length(entry->path)))
{
break;
}
if (NULL == gate_string_substr(&sub_path, &source_file, gate_string_length(params->source_path), GATE_STR_NPOS))
{
break;
}
if (NULL == gate_file_build_path_string(&dest_file, params->dest_path, &sub_path))
{
break;
}
gate_util_stringmap_add_string(params->mapping, &source_file, &dest_file);
} while (0);
gate_string_release(&source_file);
gate_string_release(&dest_file);
gate_string_release(&sub_path);
return ret;
}
static gate_result_t unit_file_xcopy_find_sources(gate_string_t const* source_path, gate_string_t const* dest_path, gate_map_t* mapping)
{
gate_result_t ret = GATE_RESULT_FAILED;
struct unit_file_xcopy_find_cb params = GATE_INIT_EMPTY;
gate_file_filter_t filter = GATE_INIT_EMPTY;
do
{
filter.recursive = true;
params.source_path = source_path;
params.dest_path = dest_path;
params.mapping = mapping;
ret = gate_file_find(source_path, &filter, &unit_file_xcopy_find_sources_cb, ¶ms);
} while (0);
return ret;
}
static gate_result_t unit_file_xcopy_load_sourcelist(gate_string_t const* list_file, gate_string_t const* dest_path, gate_map_t* mapping)
{
gate_result_t ret = GATE_RESULT_FAILED;
gate_controlstream_t* stream = NULL;
char buffer[GATE_MAX_FILEPATH_LENGTH];
gate_size_t buffer_used;
gate_string_t source_path = GATE_STRING_INIT_EMPTY;
gate_string_t source_file_name = GATE_STRING_INIT_EMPTY;
gate_string_t dest_file = GATE_STRING_INIT_EMPTY;
do
{
ret = gate_file_openstream(list_file, GATE_STREAM_OPEN_READ, &stream);
GATE_BREAK_IF_FAILED(ret);
while (GATE_SUCCEEDED(ret = gate_stream_read_line((gate_stream_t*)stream, buffer, sizeof(buffer), &buffer_used)))
{
if (buffer_used == 0)
{
/* end of stream reached */
break;
}
if (NULL != gate_string_create(&source_path, buffer, buffer_used))
{
gate_string_trim(&source_path, &source_path);
if (!gate_string_is_empty(&source_path))
{
if (GATE_SUCCEEDED(gate_file_split_path(&source_path, NULL, &source_file_name)))
{
if (NULL != gate_file_build_path_string(&dest_file, dest_path, &source_file_name))
{
gate_util_stringmap_add_string(mapping, &source_path, &dest_file);
gate_string_release(&dest_file);
}
gate_string_release(&source_file_name);
}
}
gate_string_release(&source_path);
}
}
} while (0);
if (stream != NULL)
{
gate_object_release(stream);
}
return ret;
}
static gate_bool_t unti_file_xcopy_callback(char const* source_path, char const* dest_path, gate_result_t result, void* user_param)
{
gate_console_t* con = (gate_console_t*)user_param;
gate_stream_t* stream = (gate_stream_t*)con;
if (GATE_SUCCEEDED(result))
{
gate_stream_print_cstr(stream, source_path);
gate_stream_print_cstr(stream, " ==> ");
gate_stream_println_cstr(stream, dest_path);
}
else
{
gate_console_print_err(con, "Error '");
gate_console_print_err(con, gate_result_text(result));
gate_console_print_err(con, " copying \"");
gate_console_print_err(con, source_path);
gate_console_print_err(con, "\" ==> \"");
gate_console_print_err(con, dest_path);
gate_console_println_err(con, "\"");
}
return true;
}
static gate_result_t unit_file_xcopy(gate_console_t* stream, char const* const* params, gate_size_t paramcount, gate_uint32_t flags)
{
gate_result_t ret;
gate_uint32_t copy_flags = 0;
gate_map_t copy_mapping = GATE_INIT_EMPTY;
do
{
if (file_xcopy_params.overwrite)
{
copy_flags |= GATE_FILE_COPY_OVERWRITE;
}
if (file_xcopy_params.ignore_errors)
{
copy_flags |= GATE_FILE_COPY_IGNORE_ERROR;
}
if (file_xcopy_params.skip_existing)
{
copy_flags |= GATE_FILE_COPY_SKIP_EXISTING;
}
if (file_xcopy_params.skip_newer)
{
copy_flags |= GATE_FILE_COPY_SKIP_NEWER;
}
if (NULL == gate_util_stringmap_create(©_mapping))
{
ret = GATE_RESULT_OUTOFMEMORY;
break;
}
if (!gate_string_is_empty(&file_xcopy_params.source))
{
ret = unit_file_xcopy_find_sources(&file_xcopy_params.source, &file_xcopy_params.dest, ©_mapping);
GATE_BREAK_IF_FAILED(ret);
}
if (!gate_string_is_empty(&file_xcopy_params.sourcelist))
{
ret = unit_file_xcopy_load_sourcelist(&file_xcopy_params.sourcelist, &file_xcopy_params.dest, ©_mapping);
GATE_BREAK_IF_FAILED(ret);
}
ret = gate_file_copy_list(©_mapping, copy_flags, &unti_file_xcopy_callback, (void*)stream);<--- Variable 'ret' is reassigned a value before the old one has been used.
} while (0);
gate_map_destroy(©_mapping);
if (file_copy_params.overwrite)
{
flags |= GATE_FILE_COPY_OVERWRITE;
}
ret = gate_file_copy(&file_copy_params.source, &file_copy_params.dest, flags);<--- Variable 'ret' is reassigned a value before the old one has been used.
if (GATE_FAILED(ret))
{
gate_console_println_err(stream, gate_result_text(ret));
}
return ret;
}
/***************
* file move *
***************/
typedef struct unit_file_move_class
{
gate_string_t source;
gate_string_t dest;
} unit_file_move_t;
static unit_file_move_t file_move_params = GATE_INIT_EMPTY;
static gatecli_paramter_t unit_file_move_params[] = {
{ "--source", GATE_TYPE_STRING, &file_move_params.source, false },
{ "--dest", GATE_TYPE_STRING, &file_move_params.dest, false }
};
static gate_result_t unit_file_move(gate_console_t* stream, char const* const* params, gate_size_t paramcount, gate_uint32_t flags)
{
gate_result_t ret;
ret = gate_file_move(&file_move_params.source, &file_move_params.dest);
return ret;
}
/*****************
* file delete *
*****************/
typedef struct unit_file_delete_class
{
gate_string_t file;
} unit_file_delete_t;
static unit_file_delete_t file_delete_params = GATE_INIT_EMPTY;
static gatecli_paramter_t unit_file_delete_params[] = {
{ "--file", GATE_TYPE_STRING, &file_delete_params.file, false }
};
static gate_result_t unit_file_delete(gate_console_t* stream, char const* const* params, gate_size_t paramcount, gate_uint32_t flags)
{
gate_result_t ret;
ret = gate_file_delete(&file_delete_params.file);
return ret;
}
/***************
* file link *
***************/
typedef struct unit_file_link_class
{
gate_string_t source;
gate_string_t dest;
} unit_file_link_t;
static unit_file_link_t file_link_params = GATE_INIT_EMPTY;
static gatecli_paramter_t unit_file_link_params[] = {
{ "--source", GATE_TYPE_STRING, &file_link_params.source, false },
{ "--dest", GATE_TYPE_STRING, &file_link_params.dest, false }
};
static gate_result_t unit_file_link(gate_console_t* stream, char const* const* params, gate_size_t paramcount, gate_uint32_t flags)
{
gate_result_t ret;
ret = gate_file_create_link(&file_link_params.source, &file_link_params.dest);
return ret;
}
/********************
* file get-owner *
********************/
typedef struct unit_file_getowner_class
{
gate_string_t source;
} unit_file_getowner_t;
static unit_file_link_t file_getowner_params = GATE_INIT_EMPTY;
static gatecli_paramter_t unit_file_getowner_params[] = {
{ "--source", GATE_TYPE_STRING, &file_getowner_params.source, false },
};
static gate_result_t unit_file_getowner(gate_console_t* con, char const* const* params, gate_size_t paramcount, gate_uint32_t flags)
{
gate_result_t ret;
gate_stream_t* stream = (gate_stream_t*)con;
gate_uint32_t owner_id = 0;
gate_string_t owner_name = GATE_STRING_INIT_EMPTY;
ret = gate_file_get_owner(&file_getowner_params.source, &owner_id, &owner_name);
if (GATE_SUCCEEDED(ret))
{
gate_stream_print(stream,
GATE_PRINT_CSTR, "ID:\t",
GATE_PRINT_UI32, owner_id,
GATE_PRINT_NEWLINE,
GATE_PRINT_CSTR, "Name:\t",
GATE_PRINT_STRING, &owner_name,
GATE_PRINT_NEWLINE,
GATE_PRINT_END);
}
return ret;
}
/*******************
* file readlink *
*******************/
typedef struct unit_file_readlink_class
{
gate_string_t file;
} unit_file_readlink_t;
static unit_file_readlink_t file_readlink_params = GATE_INIT_EMPTY;
static gatecli_paramter_t unit_file_readlink_params[] = {
{ "--file", GATE_TYPE_STRING, &file_readlink_params.file, false },
};
static gate_result_t unit_file_readlink(gate_console_t* stream, char const* const* params, gate_size_t paramcount, gate_uint32_t flags)
{
gate_result_t ret;
gate_string_t realpath;
ret = gate_file_read_link(&file_readlink_params.file, &realpath);
if (GATE_FAILED(ret))
{
gate_console_println_err(stream, "Failed to read link target");
}
else
{
gate_stream_print_string((gate_stream_t*)stream, &realpath);
}
return ret;
}
/***************
* file list *
***************/
typedef struct unit_file_list_params_class
{
gate_string_t path;
gate_bool_t recursive;
gate_string_t pattern;
gate_uint64_t from_size;
gate_uint64_t to_size;
gate_string_t from_modified;
gate_string_t to_modified;
gate_bool_t show_info;
} unit_file_list_params_t;
static unit_file_list_params_t file_list_params = GATE_INIT_EMPTY;
static gatecli_paramter_t unit_file_list_params[] = {
{ "--path", GATE_TYPE_STRING, &file_list_params.path, true },
{ "--recursive", GATE_TYPE_BOOL, &file_list_params.recursive, true },
{ "--pattern", GATE_TYPE_STRING, &file_list_params.pattern, true },
{ "--from-size", GATE_TYPE_I64, &file_list_params.from_size, true },
{ "--to-size", GATE_TYPE_I64, &file_list_params.to_size, true },
{ "--from-modified",GATE_TYPE_STRING, &file_list_params.from_modified, true },
{ "--to-modified", GATE_TYPE_STRING, &file_list_params.to_modified, true },
{ "--info", GATE_TYPE_BOOL, &file_list_params.show_info, true }
};
static gate_bool_t unit_file_list_cb(gate_file_entry_t const* entry, void* userparam)
{
gate_console_t* console = (gate_console_t*)userparam;
gate_stream_t* stream = (gate_stream_t*)console;
gate_stream_print(stream,
GATE_PRINT_CSTR, entry->path, GATE_PRINT_NEWLINE,
GATE_PRINT_END);
return true;
}
static gate_uint64_t dir_counter = 0;
static gate_uint64_t file_counter = 0;
static gate_uint64_t file_size_sum = 0;
static gate_bool_t unit_file_list_info_cb(gate_file_entry_t const* entry, void* userparam)
{
gate_console_t* console = (gate_console_t*)userparam;
gate_stream_t* stream = (gate_stream_t*)console;
gate_time_t modified = { 0, 0 };
char modified_buffer[64] = GATE_INIT_EMPTY;
gate_size_t modified_size = sizeof(modified_buffer);
char size_buffer[64] = GATE_INIT_EMPTY;
gate_size_t size_size = sizeof(size_buffer);
gate_time_from_timestamp(entry->props.time_modified, &modified);
gate_time_to_string(&modified, NULL, modified_buffer, &modified_size);
gate_stream_print(stream,
GATE_PRINT_CSTR, entry->path, GATE_PRINT_NEWLINE,
GATE_PRINT_CSTR, "\tName: ", GATE_PRINT_CSTR, entry->name, GATE_PRINT_NEWLINE,
GATE_PRINT_END);
if (GATE_FLAG_ENABLED(entry->props.attribs, GATE_FILEENTRY_ATTRIB_LINK))
{
gate_stream_print(stream,
GATE_PRINT_CSTR, "\tType: Link", GATE_PRINT_NEWLINE,
GATE_PRINT_END);
}
if (GATE_FLAG_ENABLED(entry->props.attribs, GATE_FILEENTRY_ATTRIB_DIRECTORY))
{
++dir_counter;
gate_stream_print(stream,
GATE_PRINT_CSTR, "\tType: Directory", GATE_PRINT_NEWLINE,
GATE_PRINT_END);
}
else
{
++file_counter;
file_size_sum += entry->props.size;
gate_util_print_byte_size(entry->props.size, size_buffer, size_size);
gate_stream_print(stream,
GATE_PRINT_CSTR, "\tSize: ", GATE_PRINT_CSTR, size_buffer,
GATE_PRINT_CSTR, " (",
GATE_PRINT_UI64, entry->props.size,
GATE_PRINT_CSTR, ")", GATE_PRINT_NEWLINE,
GATE_PRINT_END);
}
gate_stream_print(stream,
GATE_PRINT_CSTR, "\tModified: ", GATE_PRINT_CSTR, modified_buffer, GATE_PRINT_NEWLINE,
GATE_PRINT_END);
return true;
}
static gate_result_t unit_file_list(gate_console_t* stream, char const* const* params, gate_size_t paramcount, gate_uint32_t flags)
{
gate_result_t ret;
gate_file_filter_t filter;
gate_timestamp_t from_modified = 0;
gate_timestamp_t to_modified = 0;
gate_time_t tm_from, tm_to;
gate_char8_t total_size_buffer[64] = GATE_INIT_EMPTY;
gate_size_t total_size_length = sizeof(total_size_buffer);
if (gate_string_is_empty(&file_list_params.path))
{
gate_env_get_workpath(&file_list_params.path);
}
if (!gate_string_is_empty(&file_list_params.from_modified))
{
ret = gate_time_parse_string(file_list_params.from_modified.str, file_list_params.from_modified.length, &tm_from);
if (GATE_SUCCEEDED(ret))
{
from_modified = tm_from.timestamp;
}
}
if (!gate_string_is_empty(&file_list_params.to_modified))
{
ret = gate_time_parse_string(file_list_params.to_modified.str, file_list_params.to_modified.length, &tm_to);
if (GATE_SUCCEEDED(ret))
{
to_modified = tm_to.timestamp;
}
}
gate_mem_clear(&filter, sizeof(filter));
filter.pattern = file_list_params.pattern;
filter.from_size = file_list_params.from_size;
filter.to_size = file_list_params.to_size;
filter.recursive = file_list_params.recursive;
filter.from_modified = from_modified;
filter.to_modified = to_modified;
if (file_list_params.show_info)
{
dir_counter = 0;
file_counter = 0;
file_size_sum = 0;
ret = gate_file_find(&file_list_params.path, &filter, &unit_file_list_info_cb, stream);
gate_util_print_byte_size(file_size_sum, total_size_buffer, total_size_length);
gate_stream_print((gate_stream_t*)stream, GATE_PRINT_NEWLINE,
GATE_PRINT_UI64, dir_counter, GATE_PRINT_CSTR, " directory entries found", GATE_PRINT_NEWLINE,
GATE_PRINT_UI64, file_counter, GATE_PRINT_CSTR, " file entries found", GATE_PRINT_NEWLINE,
GATE_PRINT_CSTR, total_size_buffer, GATE_PRINT_CSTR, " (", GATE_PRINT_UI64, file_size_sum,
GATE_PRINT_CSTR, ") in all found file entries", GATE_PRINT_NEWLINE,
GATE_PRINT_END);
}
else
{
ret = gate_file_find(&file_list_params.path, &filter, &unit_file_list_cb, stream);
}
return ret;
}
/****************
* file qlist *
****************/
typedef struct unit_file_qlist_params_class
{
gate_string_t path;
} unit_file_qlist_params_t;
static unit_file_qlist_params_t file_qlist_params = GATE_INIT_EMPTY;
static gatecli_paramter_t unit_file_qlist_params[] = {
{ "--path", GATE_TYPE_STRING, &file_qlist_params.path, true, "Path of directory to be listed" }
};
static gate_result_t unit_file_qlist(gate_console_t* con, char const* const* params, gate_size_t paramcount, gate_uint32_t flags)
{
gate_result_t ret;
gate_file_dirreader_t reader;
char path[GATE_MAX_FILEPATH_LENGTH];<--- The scope of the variable 'path' can be reduced. [+]The scope of the variable 'path' can be reduced. Warning: Be careful when fixing this message, especially when there are inner loops. Here is an example where cppcheck will write that the scope for 'i' can be reduced:
void f(int x)
{
int i = 0;
if (x) {
// it's safe to move 'int i = 0;' here
for (int n = 0; n < 10; ++n) {
// it is possible but not safe to move 'int i = 0;' here
do_something(&i);
}
}
}
When you see this message it is always safe to reduce the variable scope 1 level.
gate_size_t path_len;
gate_stream_t* stream = (gate_stream_t*)con;
ret = gate_file_dir_open(&file_qlist_params.path, &reader);
if (GATE_SUCCEEDED(ret))
{
while (0 < (path_len = gate_file_dir_read(&reader, path, sizeof(path), false)))
{
path[path_len] = 0;
gate_stream_println_cstr(stream, path);
}
gate_file_dir_close(&reader);
}
else
{
gate_console_print_err(con, "Failed to open directory, #");
gate_console_print_err_num(con, ret);
gate_console_println_err(con, NULL);
gate_console_println_err(con, gate_result_text(ret));
}
return ret;
}
/***********************
* file list-volumes *
***********************/
static gate_bool_t unit_file_listvolumes_callback(gate_file_entry_t const* entry, void* userparam)
{
gate_stream_t* stream = (gate_stream_t*)userparam;
gate_stream_print(stream,
GATE_PRINT_CSTR, entry->path,
GATE_PRINT_NEWLINE,
GATE_PRINT_END);
return true;
}
static gate_result_t unit_file_listvolumes(gate_console_t* con, char const* const* params, gate_size_t paramcount, gate_uint32_t flags)
{
gate_result_t ret;
gate_stream_t* stream = (gate_stream_t*)con;
ret = gate_file_root_list(&unit_file_listvolumes_callback, stream);
return ret;
}
/******************
* file set-date *
*******************/
typedef struct unit_file_setdate_class
{
gate_string_t file;
gate_string_t date;
gate_bool_t modification;
gate_bool_t creation;
gate_bool_t access;
} unit_file_setdate_t;
static unit_file_setdate_t file_setdate_params = GATE_INIT_EMPTY;
static gatecli_paramter_t unit_file_setdate_params[] = {
{ "--file", GATE_TYPE_STRING, &file_setdate_params.file, false, "Path to the file to be changed" },
{ "--date", GATE_TYPE_STRING, &file_setdate_params.date, false, "Defines a date in format yyyy-mm-ddThh:mm:ss" },
{ "--modification", GATE_TYPE_BOOL, &file_setdate_params.modification, false, "Changes the modification time of a file" },
{ "--creation", GATE_TYPE_BOOL, &file_setdate_params.creation, false, "Changes the creation time of a file" },
{ "--access", GATE_TYPE_BOOL, &file_setdate_params.access, false, "Changes the access time of a file" }
};
static gate_result_t unit_file_setdate(gate_console_t* stream, char const* const* params, gate_size_t paramcount, gate_uint32_t flags)
{
gate_result_t ret;
gate_time_t time = GATE_INIT_EMPTY;
gate_timestamp_t* ptr_modification = NULL;
gate_timestamp_t* ptr_creation = NULL;
gate_timestamp_t* ptr_access = NULL;
do
{
ret = gate_time_parse_string(file_setdate_params.date.str, file_setdate_params.date.length, &time);
GATE_BREAK_IF_FAILED(ret);
if (file_setdate_params.modification) ptr_modification = &time.timestamp;
if (file_setdate_params.creation) ptr_creation = &time.timestamp;
if (file_setdate_params.access) ptr_access = &time.timestamp;
ret = gate_file_set_times(&file_setdate_params.file, ptr_modification, ptr_access, ptr_creation);
if (GATE_FAILED(ret))
{
gate_console_print_err(stream, "Failed to update file date, Error code: ");
gate_console_print_err_num(stream, ret);
gate_console_print_err(stream, GATE_STR_NEWLINE);
}
} while (0);
return ret;
}
/***************
* file find *
***************/
typedef struct unit_file_find_class
{
gate_string_t path;
gate_string_t pattern;
gate_string_t patternfile;
gate_string_t resultfile;
} unit_file_find_t;
static unit_file_find_t file_find_params = GATE_INIT_EMPTY;
static gatecli_paramter_t unit_file_find_params[] = {
{ "--path", GATE_TYPE_STRING, &file_find_params.path, true, "" },
{ "--pattern", GATE_TYPE_STRING, &file_find_params.pattern, true, "" },
{ "--patternfile", GATE_TYPE_STRING, &file_find_params.patternfile, true, "" },
{ "--resultfile", GATE_TYPE_STRING, &file_find_params.resultfile, true, "" }
};
struct unit_file_find_param
{
gate_size_t pattern_count;
gate_arraylist_t patterns;
gate_set_t used_patterns;
gate_map_t results;
};
static gate_bool_t unit_file_find_cb(gate_file_entry_t const* entry, void* userparam)
{
struct unit_file_find_param* params = (struct unit_file_find_param*)userparam;
gate_size_t ndx;
gate_string_t const* ptr_pattern;<--- The scope of the variable 'ptr_pattern' can be reduced. [+]The scope of the variable 'ptr_pattern' can be reduced. Warning: Be careful when fixing this message, especially when there are inner loops. Here is an example where cppcheck will write that the scope for 'i' can be reduced:
void f(int x)
{
int i = 0;
if (x) {
// it's safe to move 'int i = 0;' here
for (int n = 0; n < 10; ++n) {
// it is possible but not safe to move 'int i = 0;' here
do_something(&i);
}
}
}
When you see this message it is always safe to reduce the variable scope 1 level.
gate_string_t test_file_name;
for (ndx = 0; ndx != params->pattern_count; ++ndx)
{
ptr_pattern = (gate_string_t const*)gate_arraylist_get(params->patterns, ndx);
if (ptr_pattern)
{
gate_string_create_static(&test_file_name, entry->name);
if (gate_string_like(&test_file_name, ptr_pattern))
{
gate_util_stringmap_add(¶ms->results, entry->path, entry->name);
gate_util_stringset_add_string(¶ms->used_patterns, ptr_pattern);
}
gate_string_release(&test_file_name);
}
}
return true;
}
static gate_result_t unit_file_find(gate_console_t* stream, char const* const* params, gate_size_t paramcount, gate_uint32_t flags)
{
static gate_string_t current_dir = GATE_STRING_INIT_STATIC(".");
gate_result_t ret = GATE_RESULT_FAILED;
gate_stream_t* ptr_stream = (gate_stream_t*)stream;
struct unit_file_find_param search_params = GATE_INIT_EMPTY;
gate_file_filter_t filter;
gate_map_iterator_t map_iter;
gate_string_t const* ptr_path;
gate_string_t const* ptr_name;<--- The scope of the variable 'ptr_name' can be reduced. [+]The scope of the variable 'ptr_name' can be reduced. Warning: Be careful when fixing this message, especially when there are inner loops. Here is an example where cppcheck will write that the scope for 'i' can be reduced:
void f(int x)
{
int i = 0;
if (x) {
// it's safe to move 'int i = 0;' here
for (int n = 0; n < 10; ++n) {
// it is possible but not safe to move 'int i = 0;' here
do_something(&i);
}
}
}
When you see this message it is always safe to reduce the variable scope 1 level.
gate_set_t pattern_set = GATE_INIT_EMPTY;
gate_set_iterator_t pattern_iter;
gate_string_t const* ptr_str;
gate_size_t ndx;
do
{
gate_mem_clear(&search_params, sizeof(search_params));
gate_mem_clear(&filter, sizeof(filter));
filter.recursive = true;
search_params.patterns = gate_util_stringarray_create();
if (search_params.patterns == NULL)
{
ret = GATE_RESULT_OUTOFMEMORY;
break;
}
if (NULL == gate_util_stringmap_create(&search_params.results))
{
ret = GATE_RESULT_OUTOFMEMORY;
break;
}
if (NULL == gate_util_stringset_create(&search_params.used_patterns))
{
ret = GATE_RESULT_OUTOFMEMORY;
break;
}
if (!gate_string_is_empty(&file_find_params.patternfile))
{
ret = gate_file_get_content_lines(&file_find_params.patternfile, search_params.patterns);
GATE_BREAK_IF_FAILED(ret);
}
if (!gate_string_is_empty(&file_find_params.pattern))
{
gate_util_stringarray_add(search_params.patterns, &file_find_params.pattern);
}
search_params.pattern_count = gate_arraylist_length(search_params.patterns);
if (search_params.pattern_count == 0)
{
gate_console_println_err(stream, "Missing pattern argument");
ret = GATE_RESULT_INVALIDARG;
break;
}
ret = gate_file_find(gate_string_is_empty(&file_find_params.path) ? ¤t_dir : &file_find_params.path,
&filter, &unit_file_find_cb, &search_params);
GATE_BREAK_IF_FAILED(ret);
map_iter = gate_map_first(&search_params.results);
while (gate_map_iterator_valid(map_iter))
{
ptr_path = (gate_string_t const*)gate_map_iterator_key(map_iter);
ptr_name = (gate_string_t const*)gate_map_iterator_value(map_iter);
gate_stream_print_string(ptr_stream, ptr_path);
gate_stream_println_cstr(ptr_stream, NULL);
map_iter = gate_map_iterator_next(map_iter);
}
if (NULL != gate_set_create(&pattern_set, &gate_compare_string, sizeof(gate_string_t), &gate_string_copy_constructor, &gate_string_destructor))
{
for (ndx = 0; ndx != gate_arraylist_length(search_params.patterns); ++ndx)
{
gate_set_add(&pattern_set, gate_arraylist_get(search_params.patterns, ndx));
}
gate_set_remove_keys(&pattern_set, &search_params.used_patterns);
if (gate_set_count(&pattern_set) != 0)
{
gate_console_println_err(stream, "*** Unmatched patterns ***");
pattern_iter = gate_set_first(&pattern_set);
while (gate_set_iterator_valid(pattern_iter))
{
ptr_str = (gate_string_t const*)gate_map_iterator_key(pattern_iter);
gate_console_write_err(stream, ptr_str->str, ptr_str->length);
gate_console_println_err(stream, NULL);
pattern_iter = gate_set_iterator_next(pattern_iter);
}
}
}
} while (0);
gate_arraylist_release(search_params.patterns);
gate_set_destroy(&search_params.used_patterns);
gate_map_destroy(&search_params.results);
gate_set_destroy(&pattern_set);
return ret;
}
/**************************
* file hashlist-create *
**************************/
typedef struct unit_file_hashlistcreate_class
{
gate_string_t path;
gate_string_t output;
gate_bool_t dir_hash;
} unit_file_hashlistcreate_t;
static unit_file_hashlistcreate_t file_hashlistcreate_params = GATE_INIT_EMPTY;
static gatecli_paramter_t unit_file_hashlistcreate_params[] = {
{ "--path", GATE_TYPE_STRING, &file_hashlistcreate_params.path, true, "Directory path where hashing starts" },
{ "--output", GATE_TYPE_STRING, &file_hashlistcreate_params.output, true, "Output file that stores all hashes" },
{ "--dir-hash", GATE_TYPE_BOOL, &file_hashlistcreate_params.dir_hash, true, "Generates for hashes for directories" }
};
typedef struct
{
gate_result_t internal_error; /* stores internal error codes */
gate_map_t* file_mapping; /* map<string, string>: path -> hash */
gate_stream_t* out_stream; /* output streams that receives hash lines */
} unit_file_hashlistcreate_param_t;
static gate_result_t unit_file_hashlistcreate_print_hash(gate_stream_t* stream, gate_uint32_t attribs, gate_string_t const* file_path, gate_string_t const* file_hash)
{
char type[2] = "?";
if (GATE_FLAG_ENABLED(attribs, GATE_FILEENTRY_ATTRIB_DIRECTORY))
{
type[0] = 'D'; /* directory */
}
else if (GATE_FLAG_ENABLED(attribs, GATE_FILEENTRY_ATTRIB_DEVICE))
{
type[0] = 'S'; /* special */
}
else if (GATE_FLAG_ENABLED(attribs, GATE_FILEENTRY_ATTRIB_LINK))
{
type[0] = 'L'; /* link */
}
else
{
type[0] = 'F'; /* file */
}
return gate_stream_print(stream,
GATE_PRINT_CSTR, type,
GATE_PRINT_CSTR, ";",
GATE_PRINT_STRING, file_hash,
GATE_PRINT_CSTR, ";",
GATE_PRINT_STRING, file_path,
GATE_PRINT_NEWLINE,
GATE_PRINT_END
);
}
static gate_bool_t unit_file_hashlistcreate_cb(gate_file_entry_t const* entry, void* userparam)
{
gate_bool_t ret = true;
unit_file_hashlistcreate_param_t* param = (unit_file_hashlistcreate_param_t*)userparam;
gate_result_t result;
gate_file_t file_handle;
gate_sha256_t hash;
gate_string_t file_path = GATE_STRING_INIT_EMPTY;
gate_string_t file_hash = GATE_STRING_INIT_EMPTY;
gate_strbuilder_t builder;
char textbuffer[GATE_MAX_FILEPATH_LENGTH];
char readbuffer[GATE_MAX_COPYBUFFER_LENGTH];
char szbuffer[20];
gate_size_t bytes_received;
gate_uint64_t file_size = 0;
gate_bool_t continue_read = true;
gate_sha256_result_t hash_result;
do
{
if (GATE_FLAG_ENABLED(entry->props.attribs, GATE_FILEENTRY_ATTRIB_DIRECTORY))
{
break;
}
if (NULL == gate_string_create(&file_path, entry->path, gate_str_length(entry->path)))
{
param->internal_error = GATE_RESULT_OUTOFMEMORY;
ret = false;
break;
}
gate_strbuilder_create_static(&builder, textbuffer, sizeof(textbuffer) - 1, 0);
result = gate_file_open(&file_path, GATE_STREAM_OPEN_READ, &file_handle);
if (GATE_SUCCEEDED(result))
{
gate_sha256_init(&hash);
while (continue_read)
{
result = gate_file_read(file_handle, readbuffer, sizeof(readbuffer), &bytes_received);
if (GATE_FAILED(result))
{
break;
}
if (bytes_received == 0)
{
break;
}
file_size += bytes_received;
gate_sha256_update(&hash, readbuffer, bytes_received);
}
gate_file_close(file_handle);
}
if (GATE_SUCCEEDED(result))
{
/* we have a file hash */
gate_sha256_finish(&hash, &hash_result);
gate_strbuilder_append_hex(&builder, hash_result.hash, sizeof(hash_result.hash), false);
}
else
{
/* file access has failed -> fill hashspace with '?' */
file_size = entry->props.size;
gate_strbuilder_append_chars(&builder, GATE_SHA256_RESULT_LENGTH * 2, '?');
}
gate_strbuilder_append_chars(&builder, 1, '-');
bytes_received = gate_str_print_hex_uint64(szbuffer, sizeof(szbuffer), file_size, false);
gate_strbuilder_append_text(&builder, szbuffer, bytes_received);
if (NULL == gate_strbuilder_copy_to_string(&builder, &file_hash))
{
param->internal_error = GATE_RESULT_OUTOFMEMORY;
ret = false;
break;
}
if (param->file_mapping)
{
if (NULL == gate_util_stringmap_add_string(param->file_mapping, &file_path, &file_hash))
{
param->internal_error = GATE_RESULT_OUTOFMEMORY;
ret = false;
break;
}
}
if (param->out_stream)
{
unit_file_hashlistcreate_print_hash(param->out_stream, false, &file_path, &file_hash);
}
} while (0);
gate_string_release(&file_path);
gate_string_release(&file_hash);
return ret;
}
static gate_result_t unit_file_hashlistcreate(gate_console_t* stream, char const* const* params, gate_size_t paramcount, gate_uint32_t flags)
{
gate_result_t ret;
gate_file_filter_t filter;
gate_string_t start_path = GATE_STRING_INIT_EMPTY;
unit_file_hashlistcreate_param_t fs_param;
gate_map_t file_mapping = GATE_INIT_EMPTY;
gate_controlstream_t* output = NULL;
do
{
gate_mem_clear(&fs_param, sizeof(fs_param));
fs_param.internal_error = GATE_RESULT_OK;
if (file_hashlistcreate_params.dir_hash)
{
if (NULL == gate_util_stringmap_create(&file_mapping))
{
gate_console_print_err(stream, "Failed to allocate file hash mapping table");
ret = GATE_RESULT_OUTOFMEMORY;
break;
}
fs_param.file_mapping = &file_mapping;
}
if (gate_string_is_empty(&file_hashlistcreate_params.output))
{
fs_param.out_stream = (gate_stream_t*)stream;
}
else
{
ret = gate_file_openstream(&file_hashlistcreate_params.output, GATE_STREAM_OPEN_WRITE, &output);
if (GATE_FAILED(ret))
{
gate_console_print_err(stream, "Failed to open output stream");
break;
}
fs_param.out_stream = (gate_stream_t*)output;
}
gate_mem_clear(&filter, sizeof(filter));
filter.recursive = true;
if (gate_string_is_empty(&file_hashlistcreate_params.path))
{
ret = gate_env_get_workpath(&start_path);
if (GATE_FAILED(ret))
{
gate_console_print_err(stream, "Failed to retrieve current working directory");
break;
}
}
else
{
if (NULL == gate_string_duplicate(&start_path, &file_hashlistcreate_params.path))
{
gate_console_print_err(stream, "Failed to allocate start directory");
ret = GATE_RESULT_OUTOFMEMORY;
break;
}
}
ret = gate_file_find(&start_path, &filter, &unit_file_hashlistcreate_cb, &fs_param);
if (GATE_FAILED(ret))
{
gate_console_print_err(stream, "Failed to search for files");
break;
}
if (GATE_FAILED(fs_param.internal_error))
{
gate_console_print_err(stream, "Internal error during file iteration");
ret = fs_param.internal_error;
break;
}
ret = GATE_RESULT_OK;
} while (0);
gate_map_destroy(&file_mapping);
gate_string_release(&start_path);
if (output)
{
gate_object_release(output);
}
return ret;
}
/*********************
* file find-links *
*********************/
typedef struct unit_file_findlinks_class
{
gate_string_t path;
gate_bool_t recursive;
gate_string_t resultfile;
} unit_file_findlinks_t;
static unit_file_findlinks_t file_findlinks_params = GATE_INIT_EMPTY;
static gatecli_paramter_t unit_file_findlinks_params[] = {
{ "--path", GATE_TYPE_STRING, &file_findlinks_params.path, true, "" },
{ "--recursive", GATE_TYPE_BOOL, &file_findlinks_params.recursive, true, "" },
{ "--resultfile", GATE_TYPE_STRING, &file_findlinks_params.resultfile, true, "" }
};
static gate_bool_t unit_file_findlinks_cb(gate_file_entry_t const* entry, void* userparam)
{
gate_map_t* mapping = (gate_map_t*)userparam;
gate_string_t path = GATE_STRING_INIT_EMPTY;
gate_string_t link_path = GATE_STRING_INIT_EMPTY;
gate_result_t result;
if (GATE_FLAG_ENABLED(entry->props.attribs, GATE_FILEENTRY_ATTRIB_LINK))
{
do
{
if (NULL == gate_string_create(&path, entry->path, gate_str_length(entry->path)))
{
break;
}
result = gate_file_read_link(&path, &link_path);
if (GATE_FAILED(result))
{
gate_string_create_empty(&link_path);
}
gate_map_add(mapping, &path, &link_path);
} while (0);
}
gate_string_release(&link_path);
gate_string_release(&path);
return true;
}
static gate_result_t unit_file_findlinks(gate_console_t* stream, char const* const* params, gate_size_t paramcount, gate_uint32_t flags)
{
static gate_string_t current_dir = GATE_STRING_INIT_STATIC(".");
gate_result_t ret = GATE_RESULT_FAILED;
gate_stream_t* ptr_stream = (gate_stream_t*)stream;
gate_map_t search_results = GATE_INIT_EMPTY;
gate_file_filter_t filter;
gate_map_iterator_t map_iter;
gate_string_t const* ptr_path;
gate_string_t const* ptr_link;
do
{
gate_mem_clear(&filter, sizeof(filter));
filter.recursive = file_findlinks_params.recursive;
if (NULL == gate_util_stringmap_create(&search_results))
{
ret = GATE_RESULT_OUTOFMEMORY;
break;
}
ret = gate_file_find(gate_string_is_empty(&file_findlinks_params.path) ? ¤t_dir : &file_findlinks_params.path,
&filter, &unit_file_findlinks_cb, &search_results);
GATE_BREAK_IF_FAILED(ret);
map_iter = gate_map_first(&search_results);
while (gate_map_iterator_valid(map_iter))
{
ptr_path = (gate_string_t const*)gate_map_iterator_key(map_iter);
ptr_link = (gate_string_t const*)gate_map_iterator_value(map_iter);
gate_stream_print_string(ptr_stream, ptr_path);
gate_stream_print_cstr(ptr_stream, "\t");
gate_stream_print_string(ptr_stream, ptr_link);
gate_stream_println_cstr(ptr_stream, NULL);
map_iter = gate_map_iterator_next(map_iter);
}
} while (0);
gate_map_destroy(&search_results);
return ret;
}
/*********************
* file remove-links *
*********************/
typedef struct unit_file_removelinks_class
{
gate_string_t path;
gate_bool_t dry_run;
} unit_file_removelinks_t;
static unit_file_removelinks_t file_removelinks_params = GATE_INIT_EMPTY;
static gatecli_paramter_t unit_file_removelinks_params[] = {
{ "--path", GATE_TYPE_STRING, &file_removelinks_params.path, true, "Path to folder where link search starts" },
{ "--dry-run", GATE_TYPE_BOOL, &file_removelinks_params.dry_run, true, "Apply no deletion, just show files" },
};
static gate_result_t get_links_in_directory(gate_string_t const* path, gate_arraylist_t linklist, gate_arraylist_t subdirs)
{
gate_result_t result;
gate_file_dirreader_t reader;
char link_path[GATE_MAX_FILEPATH_LENGTH];
gate_size_t used;
gate_string_t link = GATE_STRING_INIT_EMPTY;
gate_enumint_t attribs = 0;
gate_enumint_t accessbits = 0;
gate_string_t entry_name = GATE_STRING_INIT_EMPTY;
static gate_string_t const dot_dir = GATE_STRING_INIT_STATIC(".");
static gate_string_t const dotdot_dir = GATE_STRING_INIT_STATIC("..");
do
{
result = gate_file_dir_open(path, &reader);
if (GATE_FAILED(result))
{
#if defined(GATE_DEBUG_MODE)
gate_string_to_buffer(path, link_path, sizeof(link_path));
GATE_DEBUG_TRACE("get_links_in_directory(): Failed to open directory");
GATE_DEBUG_TRACE(link_path);
#endif
break;
}
GATE_BREAK_IF_FAILED(result);
while (0 != (used = gate_file_dir_read(&reader, link_path, sizeof(link_path), false)))
{
if (NULL != gate_string_create(&link, link_path, used))
{
result = gate_file_split_path(&link, NULL, &entry_name);
if (GATE_SUCCEEDED(result))
{
if (!gate_string_equals(&entry_name, &dot_dir) && !gate_string_equals(&entry_name, &dotdot_dir))
{
attribs = 0;
accessbits = 0;
result = gate_file_get_attributes(&link, &attribs, &accessbits);
if (GATE_SUCCEEDED(result))
{
if (GATE_FLAG_ENABLED(attribs, GATE_FILEENTRY_ATTRIB_LINK))
{
gate_arraylist_add(linklist, &link);
}
else if (GATE_FLAG_ENABLED(attribs, GATE_FILEENTRY_ATTRIB_DIRECTORY))
{
gate_arraylist_add(subdirs, &link);
}
}
}
gate_string_release(&entry_name);
}
gate_string_release(&link);
}
}
gate_file_dir_close(&reader);
result = GATE_RESULT_OK;
} while (0);
return result;
}
static gate_result_t unit_file_removelinks(gate_console_t* stream, char const* const* params, gate_size_t paramcount, gate_uint32_t flags)
{
static gate_string_t current_dir = GATE_STRING_INIT_STATIC(".");
gate_result_t ret = GATE_RESULT_FAILED;
gate_stream_t* ptr_stream = (gate_stream_t*)stream;
gate_arraylist_t paths_to_check = NULL;
gate_arraylist_t paths_to_links = NULL;
gate_string_t const* ptr_path;
gate_string_t const* ptr_link;
gate_enumint_t attribs;
gate_enumint_t accessbits;
gate_result_t result;
do
{
paths_to_check = gate_util_stringarray_create();
if (NULL == paths_to_check)
{
ret = GATE_RESULT_OUTOFMEMORY;
break;
}
paths_to_links = gate_util_stringarray_create();
if (NULL == paths_to_links)
{
ret = GATE_RESULT_OUTOFMEMORY;
break;
}
gate_arraylist_add(paths_to_check, &file_removelinks_params.path);
while (gate_arraylist_length(paths_to_check) > 0)
{
ptr_path = (gate_string_t const*)gate_arraylist_get(paths_to_check, 0);
if (ptr_path)
{
get_links_in_directory(ptr_path, paths_to_links, paths_to_check);
}
gate_arraylist_remove(paths_to_check, 0, 1);
while (gate_arraylist_length(paths_to_links) > 0)
{
ptr_link = (gate_string_t const*)gate_arraylist_get(paths_to_links, 0);
if (ptr_link)
{
attribs = 0;
result = gate_file_get_attributes(ptr_link, &attribs, &accessbits);
if (GATE_SUCCEEDED(result))
{
if (GATE_FLAG_ENABLED(attribs, GATE_FILEENTRY_ATTRIB_DIRECTORY))
{
gate_stream_print_string(ptr_stream, ptr_link);
gate_stream_println_cstr(ptr_stream, NULL);
if (!file_removelinks_params.dry_run)
{
result = gate_file_dir_delete(ptr_link);
if (GATE_FAILED(result))
{
gate_stream_println_cstr(ptr_stream, "Failed to remove link to directory");
}
}
}
else
{
gate_stream_print_string(ptr_stream, ptr_link);
gate_stream_println_cstr(ptr_stream, NULL);
if (!file_removelinks_params.dry_run)
{
result = gate_file_delete(ptr_link);
if (GATE_FAILED(result))
{
gate_stream_println_cstr(ptr_stream, "Failed to remove link to file");
}
}
}
}
}
gate_arraylist_remove(paths_to_links, 0, 1);
}
}
ret = GATE_RESULT_OK;
} while (0);
gate_arraylist_release(paths_to_links);
gate_arraylist_release(paths_to_check);
return ret;
}
gatecli_function_t file_functions[] =
{
GATECLI_FUNCTION_PARAMS("copy", &unit_file_copy, unit_file_copy_params, "Copies a source file into a destination file"),
GATECLI_FUNCTION_PARAMS("xcopy", &unit_file_xcopy, unit_file_xcopy_params, "Copies contents of a list or directory"),
GATECLI_FUNCTION_PARAMS("move", &unit_file_move, unit_file_move_params, "Moves a source file to a destination path"),
GATECLI_FUNCTION_PARAMS("delete", &unit_file_delete, unit_file_delete_params, "Deletes a file"),
GATECLI_FUNCTION_PARAMS("link", &unit_file_link, unit_file_link_params, "Create a link to the source file in the destination path"),
GATECLI_FUNCTION_PARAMS("readlink", &unit_file_readlink, unit_file_readlink_params, "Reads the target path of a link"),
GATECLI_FUNCTION_PARAMS("get-owner", &unit_file_getowner, unit_file_getowner_params, "Returns the owner account of the given path"),
GATECLI_FUNCTION_PARAMS("list", &unit_file_list, unit_file_list_params, "Lists the contents of a directory"),
GATECLI_FUNCTION_PARAMS("qlist", &unit_file_qlist, unit_file_qlist_params, "Lists the paths of the contents of a directory"),
GATECLI_FUNCTION("list-volumes", &unit_file_listvolumes, "Lists the paths of root volumes"),
GATECLI_FUNCTION_PARAMS("setdate", &unit_file_setdate, unit_file_setdate_params, "Changes file dates"),
GATECLI_FUNCTION_PARAMS("find", &unit_file_find, unit_file_find_params, "Searches for files with a specific name pattern"),
GATECLI_FUNCTION_PARAMS("hashlist-create", &unit_file_hashlistcreate, unit_file_hashlistcreate_params, "Generates a hashlist about contents of a path"),
GATECLI_FUNCTION_PARAMS("find-links", &unit_file_findlinks, unit_file_findlinks_params, "Finds all links in a directory"),
GATECLI_FUNCTION_PARAMS("remove-links", &unit_file_removelinks, unit_file_removelinks_params, "Removes all links in a directory structure")
};
gatecli_unit_t global_unit_file =
{
"file",
"File and directory management functions",
&file_functions[0],
sizeof(file_functions) / sizeof(file_functions[0])
};
gatecli_unit_t* unit_file()
{
return &global_unit_file;
}
|