-
Notifications
You must be signed in to change notification settings - Fork 0
/
args.c
430 lines (357 loc) · 7.58 KB
/
args.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
#include "idb.h"
#include <Windows.h>
#include <winerror.h>
#include <stdio.h>
extern void parseCmdArgs(void) {
char *cmdArgs[] = {
"import", "i", // Command 0,1
"export", "x", // Command 2,3
"drop-image", // Command 4
"edit-image", "e", // Command 5,6
"favourite", "f", // Command 7,8
"unfavourite", // Command 9
"add-tag", // Command 10
"edit-tag", // Command 11
"drop-tag", // Command 12
"stat", // Command 13
"add-alias", // Command 14
"drop-alias", // Command 15
"add-implication", // Command 16
"list-colours", // Command 17 TODO
"drop-implication", // Command 18
"add-pool", // Command 19
"edit-pool", // Command 20
"drop-pool", // Command 21
"add-to-pool", // Command 22
"drop-from-pool", // Command 23
"add-wiki", // Command 24
"edit-wiki", // Command 25
"drop-wiki", // Command 26
"query", "q", // Command 27,28
"meta", "m", // Command 29,30
"blacklist", "b", // Command 31,32
"whitelist", "w", // Command 33,34
"wiki", // Command 35
"list-favourites", "lf", // Command 36,37 TODO
"cache", // Command 38
"list-db", // Command 39
"help", "?", // Command 40,41
"list-tags", // Command 42
"list-image-tags", // Command 43
"version", // Command 48
"test-alias", "ta", // Command 44,45
"test-implication", "ti", // Command 46,47
"test-ll", // Command, 48
};
while ((flag = argParse((*argv_)[curArg], cmdArgs, arrayLen(cmdArgs))) != -1) {
switch (flag) {
/* Import */
case 0:
case 1:
importCmd();
break;
/* Export */
case 2:
case 3:
exportCmd();
break;
/* Drop Image */
case 4:
dropImgCmd();
break;
/* Edit Image */
case 5:
case 6:
editImgCmd();
break;
/* Favourite */
case 7:
case 8:
favourite(getFlagArg());
break;
/* Unfavourite */
case 9:
unfavourite(getFlagArg());
break;
/* Add Tag */
case 10:
printf("Add Tag\n");
addTagCmd();
break;
/* Edit Tag */
case 11:
editTagCmd();
break;
/* Drop Tag */
case 12:
dropTag(getFlagArg());
break;
/* Statistics */
case 13:
/* Albums
* Aliases
* Comics
* Generic pools
* Images
* Images with commentary
* Images with translated commentary
* Implications
* Manga
* Wikis
* Tags
* Translated images
* Total tuples
*/
break;
/* Add Alias */
case 14:
addAliasCmd();
break;
/* Drop Alias */
case 15:
dropAlias(getFlagArg());
break;
/* Add Implication */
case 16:
addImplicationCmd();
break;
// TODO: Make up a feature for this.
case 17:
break;
/* Drop Implication */
case 18:
dropImplicationCmd();
break;
/* Add Pool */
case 19:
addPoolCmd();
break;
/* Edit Pool */
case 20:
editPoolCmd();
break;
/* Drop Pool */
case 21:
dropPool(getFlagArg());
break;
/* Add to Pool */
case 22:
addToPoolCmd(false);
break;
/* Drop From Pool */
case 23:
addToPoolCmd(true);
break;
/* Add Wiki */
case 24:
dropWikiCmd();
break;
/* Edit Wiki */
case 25:
editWikiCmd();
break;
/* Drop Wiki */
case 26:
dropWiki(getFlagArg());
break;
/* Query */
case 27:
case 28:
queryImgCmd();
break;
/* Meta */
case 29:
case 30:
printf("meta\n");
break;
/* Blacklist */
case 31:
case 32:
blacklist(getFlagArg());
break;
/* Whitelist */
case 33:
case 34:
whitelist(getFlagArg());
break;
/* Wiki */
case 35:
wikiCmd();
break;
/* Count Images */
case 36:
countImages();
break;
/* Count Tags */
case 37:
countTags();
break;
/* Cache */
case 38:
cache = true;
// TODO: Make it take an argument
break;
/* List Cached Databases */
case 39:
printf("list-db\n");
break;
/* Usage */
case 40:
case 41:
usage();
term(ERROR_SUCCESS);
/* List Tags */
case 42:
listTags(getFlagArg());
break;
/* List Image Tags */
case 43:
listImageTags(getFlagArg());
break;
/* Version */
case 44:
printf("Image Database "VERSION"\n");
term(ERROR_SUCCESS);
/* Test Alias DEBUG */
case 45:
case 46: {
char *tag;
int ret;
getAliasTarget(&tag, getFlagArg());
printf("%s\n", tag);
term(ERROR_SUCCESS);
} // End of Case
/* Test Implication DEBUG */
case 47:
case 48: {
struct tagNode *head;
struct tagNode *currNode;
head = (struct tagNode *) malloc(sizeof(struct tagNode));
if (!head) {
printf("test-implication: Error: Out of memory.\n");
term(ERROR_OUTOFMEMORY);
} // End of If
head->name = getFlagArg();
head->next = NULL;
currNode = head;
getTagImplications(head);
while (currNode->next) {
printf("%s\n", currNode->name);
currNode = currNode->next;
} // End of While
term(ERROR_SUCCESS);
} // End of Case
/* Test Linked List */
case 49: {
struct tagNode *rootTag;
struct tagNode *curTag;
rootTag = (struct tagNode *) malloc(sizeof(struct tagNode));
if (!rootTag) {
printf("Error: Out of memory.\n");
term(ERROR_OUTOFMEMORY);
} // End of If
/* Get Arguments */
curTag = rootTag;
curTag->name = getFlagArg();
curTag = curTag->next;
curTag = NULL;
curArg++;
while (curArg < argc_) {
curTag = (struct tagNode *) malloc(sizeof(struct tagNode));
if (!curTag) {
printf("Error: Out of memory.\n");
term(ERROR_OUTOFMEMORY);
} // End of If
curTag->name = getFlagArg();
curTag = curTag->next;
curTag = NULL;
curArg++;
} // End of While
getTagImplications(rootTag);
curTag = rootTag;
while (curTag) {
printf("%s\n", curTag->name);
curTag = curTag->next;
} // End of While
term(ERROR_SUCCESS);
} // End of Case
default:
break;
} // End of Switch
curArg++;
} // End of While
} // End of Function
extern void parseConnArgs(char **dbName, char **dbUsername, char **dbPassword, unsigned long **dbPort, char **dbAddr) {
char *cfgArgs[] = {
"db-name", "d", // CFG 0,1
"username", "u", // CFG 2,3
"password", "p", // CFG 4,5
"port", // CFG 6
"address", "a", // CFG 7,8
"colour", "c", // CFG 9, 10
"id", // CFG 11
"tabulate", "t", // CFG 12,13
"verbose", "v" // CFG 14,15
};
while ((flag = argParse((*argv_)[curArg], cfgArgs, arrayLen(cfgArgs))) != -1) {
switch (flag) {
/* Database Name */
case 0:
case 1: {
*dbName = getFlagArg();
printf("dbName: '%s'\n", *dbName);
break;
} // End of Case
/* Username */
case 2:
case 3: {
*dbUsername = getFlagArg();
printf("dbUsername: '%s'\n", *dbUsername);
break;
} // End of Case
/* Password */
case 4:
case 5: {
*dbPassword = getFlagArg();
printf("dbPassword: '%s'\n", *dbPassword);
break;
} // End of Case
/* Port */
case 6: {
*dbPort = atol(getFlagArg());
printf("dbPort: '%lu'\n", *dbPort);
break;
} // End of Case
/* DB Address */
case 7:
case 8: {
*dbAddr = getFlagArg();
printf("dbAddr: '%s'\n", *dbAddr);
break;
} // End of Case
/* Colour */
case 9:
case 10:
colour = true;
break;
/* Print IDs */
case 11:
printf("id\n");
printID = true;
break;
/* Tabulate */
case 12:
case 13:
tabulate = true;
break;
/* Verbose */
case 14:
case 15:
verbose = true;
break;
default:
break;
} // End of Switch
curArg++;
} // End of While
} // End of Function