-
Notifications
You must be signed in to change notification settings - Fork 0
/
CmdLineParser.h
662 lines (511 loc) · 12.7 KB
/
CmdLineParser.h
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
// Code written by https://github.com/Misha135n2
#pragma once
#include <tchar.h>
#include <exception>
struct StringIsEmptyException final : public std::exception{};
struct ExcpectedFlagAtBeginingException final : public std::exception {};
//struct AnyFlagNotFoundException final : public std::exception {};
struct ExpectedSpaceBeforeFlagException : public std::exception {};
struct OutOfRangeException : public std::exception {};
struct ItemNotFoundException : public std::exception {};
struct InvalidQuotesException : public std::exception{};
#define QUOTE_CHAR '"'
#define DASH_SYMBOL '-'
#define SPACE_SYMBOL ' '
#define END_OF_STRING_SYMBOL '\0'
struct Argument
{
// -%FLAG%
TCHAR* Prefix;
// array pointer
TCHAR** Parameters;
// count of elements
size_t ParameterCount;
TCHAR* Src;
~Argument()
{
delete[] Src;
delete[] Prefix;
for(size_t index = 0; index < ParameterCount; index++)
{
delete[] Parameters[index];
}
delete[] Parameters;
ParameterCount = 0;
}
};
class ArgumentMap final
{
struct IndexesTable
{
size_t bIndex;
size_t eIndex;
};
size_t _count;
Argument* _freeParameters = nullptr;
Argument** _arguments = nullptr;
bool _hasFreeParameters;
public:
static Argument* ArgFromString(TCHAR* const str)
{
// normalize string
size_t const len = _tcslen(str);
TCHAR* first = str;
size_t bIndex = 0;
size_t eIndex = len - 1;
TCHAR* last = first + eIndex;
for(TCHAR* chr = first; chr <= last; chr++)
{
TCHAR const ch = *chr;
if (ch != SPACE_SYMBOL)
break;
first++;
bIndex++;
}
if (first == last)
throw StringIsEmptyException();
for(TCHAR* chr = last; chr > first; chr++)
{
TCHAR const ch = *chr;
if (ch != SPACE_SYMBOL)
break;
last--;
eIndex--;
}
size_t const distance = eIndex - bIndex + 1;
size_t const dCount = distance * sizeof(TCHAR);
// normalization end
// count elements and fill up indexes table.
// count
size_t elements = 0;
{
bool isElement = false;
bool quote = false;
for (TCHAR* chr = first; chr <= last; chr++)
{
TCHAR const ch = *chr;
if (ch == QUOTE_CHAR)
quote = !quote;
if(quote || ch != SPACE_SYMBOL)
{
if (!isElement)
{
isElement = true;
elements++;
continue;
}
}
if(ch == SPACE_SYMBOL && isElement)
isElement = false;
}
}
// count end
// fill up table
IndexesTable** indexes = new IndexesTable*[elements];
{
size_t idx = 0;
for (size_t index = 0; index < elements; index++)
{
IndexesTable* table = new IndexesTable();
bool quote = false;
bool quotePrev = false;
bool expectedTill = false;
for (TCHAR* chr = first + idx; chr <= last; chr++)
{
TCHAR const ch = *chr;
if (ch == QUOTE_CHAR)
quote = !quote;
if ((!quote && ch == SPACE_SYMBOL) || chr == last)
{
if (expectedTill)
{
table->eIndex = idx;
if (chr == last)
table->eIndex++;
//expectedTill = false;
idx++;
break;
}
}
if(ch != SPACE_SYMBOL && !expectedTill)
{
table->bIndex = idx;
expectedTill = true;
}
idx++;
}
#ifdef _DEBUG
size_t const d = table->eIndex - table->bIndex;
size_t const dc = d * sizeof(TCHAR);
TCHAR* const s = new TCHAR[d + 1];
s[d] = END_OF_STRING_SYMBOL;
memcpy(s, first + table->bIndex, dc);
delete[] s;
#endif
indexes[index] = table;
}
}
// table process end
// setup argument
Argument* const argument = new Argument();
// prefix
{
IndexesTable* const pTable = indexes[0];
size_t const pDistance = pTable->eIndex - pTable->bIndex;
size_t const pdCount = pDistance * sizeof(TCHAR);
TCHAR* const pFirst = first + pTable->bIndex;
TCHAR* const prefix = new TCHAR[pDistance + 1];
prefix[pDistance] = END_OF_STRING_SYMBOL;
memcpy(prefix, pFirst, pdCount);
if (*prefix != DASH_SYMBOL)
throw ExcpectedFlagAtBeginingException();
argument->Prefix = prefix;
}
// prefix end
// parameters
argument->ParameterCount = elements - 1;
if (argument->ParameterCount > 0)
{
argument->Parameters = new TCHAR*[argument->ParameterCount];
for(size_t index = 0; index < argument->ParameterCount; index++)
{
IndexesTable* const pTable = indexes[index + 1];
TCHAR* const pFirst = first + pTable->bIndex;
size_t const pDistance = pTable->eIndex - pTable->bIndex;
size_t const pdCount = pDistance * sizeof(TCHAR);
TCHAR* parBuf = new TCHAR[pDistance + 1];
parBuf[pDistance] = END_OF_STRING_SYMBOL;
memcpy(parBuf, pFirst, pdCount);
if(parBuf[0] == QUOTE_CHAR && parBuf[pDistance - 1] == QUOTE_CHAR)
{
TCHAR* pBuf = new TCHAR[pDistance - 2 + 1];
pBuf[pDistance - 2] = END_OF_STRING_SYMBOL;
memcpy(pBuf, parBuf + 1, (pDistance - 2) * sizeof(TCHAR));
delete[] parBuf;
parBuf = pBuf;
}
argument->Parameters[index] = parBuf;
}
}
else
argument->Parameters = nullptr;
// parameters end
// src
argument->Src = new TCHAR[distance + 1];
argument->Src[distance] = END_OF_STRING_SYMBOL;
memcpy(argument->Src, first, dCount);
// src end
// clear up
for(size_t i = 0; i < elements; i++)
{
delete indexes[i];
indexes[i] = nullptr;
}
delete[] indexes;
// clear end
return argument;
}
ArgumentMap(size_t flags, bool hasFreeParameters)
{
_hasFreeParameters = hasFreeParameters;
_count = flags;
if (_hasFreeParameters)
_count--;
if(_count > 0)
{
_arguments = new Argument*[_count];
for (size_t i = 0; i < _count; i++)
{
_arguments[i] = nullptr;
}
}
}
~ArgumentMap()
{
if(HasFreeParameters())
{
delete _freeParameters;
}
if(_count > 0)
{
for (size_t i = 0; i < _count; i++)
{
delete _arguments[i];
}
delete[] _arguments;
}
}
void Initialize(TCHAR** flagBuffer)
{
if (_count == 0)
throw;
size_t bufLen = _count;
if (_hasFreeParameters)
bufLen++;
for(size_t i = 0; i < bufLen; i++)
{
TCHAR* const str = flagBuffer[i];
Argument* argument = ArgFromString(str);
if (_hasFreeParameters && i == 0)
{
_freeParameters = argument;
continue;
}
size_t index = i;
if (_hasFreeParameters)
index--;
_arguments[index] = argument;
}
}
bool HasFreeParameters() const { return _hasFreeParameters; }
Argument* FreeParameters() const { return _freeParameters; }
Argument* operator[](TCHAR* prefix) const
{
for(size_t index = 0; index < _count; index++)
{
Argument* argument = _arguments[index];
if (_tccmp(prefix, argument->Prefix) == 0)
return argument;
}
throw ItemNotFoundException();
}
// free parameter does not count
size_t Count() const { return _count; }
Argument* At(size_t index) const
{
if (!(index < _count))
throw OutOfRangeException();
return _arguments[index];
}
};
inline ArgumentMap* ParseArguments(TCHAR* args)
{
size_t len = _tcslen(args);
TCHAR* argStr = args;
if (len == 0)
throw StringIsEmptyException();
{
bool hasSymbols = false;
for (TCHAR* chr = argStr; chr < argStr + len; chr++)
{
const TCHAR ch = *chr;
if(ch != SPACE_SYMBOL)
{
hasSymbols = true;
break;
}
}
if(!hasSymbols)
throw StringIsEmptyException();
}
// cut off spaces
size_t bIndex = 0;
size_t count = len;
for (TCHAR* chr = argStr; chr < argStr + len; chr++)
{
const TCHAR ch = *chr;
if (ch != SPACE_SYMBOL)
break;
bIndex++;
}
for (TCHAR* chr = argStr + len - 1; chr >= argStr; chr--)
{
const TCHAR ch = *chr;
if (ch == SPACE_SYMBOL)
count--;
else
break;
}
TCHAR* first = argStr + bIndex;
size_t eIndex = bIndex + count;
TCHAR* last = argStr + eIndex;
// determine free parameters
bool const freeParametersHere = *first != DASH_SYMBOL;
if(freeParametersHere)
{
len = count + 4;
argStr = new TCHAR[count + 4 + 1];
argStr[0] = DASH_SYMBOL;
argStr[1] = 'F';
argStr[2] = 'P';
argStr[3] = SPACE_SYMBOL;
argStr[len] = END_OF_STRING_SYMBOL;
memcpy(argStr + 4, first, count);
count = len;
first = argStr;
bIndex = 0;
eIndex = count - 1;
last = first + eIndex;
}
// determination end
// cut off end
// count quotes
{
size_t quoteCount = 0;
for (TCHAR* chr = first; chr <= last; chr++)
{
TCHAR const ch = *chr;
if (ch == QUOTE_CHAR)
quoteCount++;
}
if (quoteCount % 2 != 0)
throw InvalidQuotesException();
}
// count end
// count the flags
size_t flags = 0;
// first + 1 - there are not any reason to check first symbol.
{
bool quote = false;
for (TCHAR* chr = first; chr <= last; chr++)
{
const TCHAR ch = *chr;
if (ch == QUOTE_CHAR)
quote = !quote;
if (quote)
continue;
if (ch == DASH_SYMBOL)
{
flags++;
TCHAR const prevCh = *(chr - 1);
if ((prevCh != SPACE_SYMBOL) && (chr != first))
throw ExpectedSpaceBeforeFlagException();
}
}
}
// count end
ArgumentMap* map = new ArgumentMap(flags, freeParametersHere);
// Part command line to format -%FLAG% [Parameters]
if (flags > 0)
{
// create buffer to store flags.
TCHAR** flagBuffer = new TCHAR*[flags];
{
TCHAR* actual = first + 1;
size_t actualIndex = bIndex + 1;
size_t bDash = 0;
size_t eDash = 0;
for (size_t i = 0; i < flags; i++)
{
size_t distance;
size_t dCount;
TCHAR* buf;
if (i == flags - 1)
{
distance = eIndex - bDash + 1; // plus end of string
dCount = distance * sizeof(TCHAR);
buf = new TCHAR[distance];
buf[distance] = END_OF_STRING_SYMBOL;
memcpy(buf, first + bDash, dCount);
}
else
{
bool quote = false;
for (TCHAR* chr = actual; chr <= last; chr++)
{
const TCHAR ch = *chr;
if (ch == QUOTE_CHAR)
quote = !quote;
if (!quote && ch == DASH_SYMBOL)
{
eDash = actualIndex;
actual = chr;
break;
}
actualIndex++;
}
distance = (eDash - bDash) - 1 + 1; // without last symbol, that is dash and next beginning symbol. and plust end of string.
dCount = distance * sizeof(TCHAR);
buf = new TCHAR[distance];
buf[distance] = END_OF_STRING_SYMBOL;
memcpy(buf, first + bDash, dCount);
bDash = eDash;
eDash = 0;
actualIndex++;
actual++;
}
flagBuffer[i] = buf;
}
}
map->Initialize(flagBuffer);
//for (size_t i = 0; i < flags; i++)
//{
// TCHAR* flagBufEl = flagBuffer[i];
// delete[] flagBufEl;
// flagBuffer[i] = nullptr;
//}
delete[] flagBuffer;
}
// Part end
return map;
}
#ifdef _UNICODE
#define WIN32_LEAN_AND_MEAN
#include <Windows.h>
#undef WIN32_LEAN_AND_MEAN
wchar_t* ToMultiByte(char* str)
{
size_t const nChars = MultiByteToWideChar(CP_ACP, 0, str, -1, nullptr, 0);
wchar_t* wstr = new wchar_t[nChars];
MultiByteToWideChar(CP_ACP, 0, str, -1, wstr, nChars);
return wstr;
}
#endif
inline TCHAR* Combine(int const argc, char** argv)
{
if (argc > 1)
{
size_t len = 0;
for (int i = 1; i < argc; i++)
{
size_t const l = strlen(argv[i]);
len += l;
if (argv[i][0] == DASH_SYMBOL)
len += 3; // 4
}
len += ((argc - 1) - 1) + 1;
char* str = new char[len];
size_t lastIndex = 0;
for (int i = 1; i < argc; i++)
{
const char* arg = argv[i];
if(arg[0] == DASH_SYMBOL)
{
size_t const l = strlen(arg);
char* buf = new char[l + 1];
memcpy(buf, arg, l);
buf[l] = SPACE_SYMBOL;
memcpy(str + lastIndex, buf, l + 1);
lastIndex += l + 1;
delete[] buf;
}
else
{
size_t const l = strlen(arg) + 3;//+ 4;
char* buf = new char[l + 1 + 1];
buf[0] = SPACE_SYMBOL;
buf[1] = QUOTE_CHAR;
memcpy(buf + 2, arg, l);
buf[l - 1] = QUOTE_CHAR;
buf[l] = SPACE_SYMBOL;
buf[l + 1] = END_OF_STRING_SYMBOL;
memcpy(str + lastIndex, buf, l + 1);
lastIndex += l + 1;
delete[] buf;
}
}
str[len - 1] = END_OF_STRING_SYMBOL;
#ifdef _UNICODE
wchar_t wstr = ToMultiByte(str);
delete[] str;
return wstr;
#else
return str;
#endif
}
return nullptr;
}
#undef QUOTE_CHAR
#undef DASH_SYMBOL
#undef SPACE_SYMBOL
#undef END_OF_STRING_SYMBOL