-
Notifications
You must be signed in to change notification settings - Fork 0
/
args.h
4064 lines (3640 loc) · 126 KB
/
args.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
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
// Generated by amalgamate.py
#ifndef AMALGAMATE_GUARD__SINGLE_INCLUDE_BLET_ARGS_H_
#define AMALGAMATE_GUARD__SINGLE_INCLUDE_BLET_ARGS_H_
// -------------------------
// Start include/blet/args.h
// -------------------------
/**
* args.h
*
* Licensed under the MIT License <http://opensource.org/licenses/MIT>.
* Copyright (c) 2022-2023 BLET Mickael.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included
* in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
#ifndef BLET_ARGS_H_
#define BLET_ARGS_H_
// #include "blet/args/action.h"
// --------------------------------
// Start include/blet/args/action.h
// --------------------------------
/**
* args/action.h
*
* Licensed under the MIT License <http://opensource.org/licenses/MIT>.
* Copyright (c) 2022-2023 BLET Mickael.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included
* in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
#ifndef BLET_ARGS_ACTION_H_
#define BLET_ARGS_ACTION_H_
namespace blet {
namespace args {
struct Action {
enum eAction {
NONE = 0,
HELP,
VERSION,
STORE_TRUE,
STORE_FALSE,
APPEND,
EXTEND,
INFINITE
};
};
} // namespace args
} // namespace blet
#endif // #ifndef BLET_ARGS_ACTION_H_
// ------------------------------
// End include/blet/args/action.h
// ------------------------------
// #include "blet/args/args.h"
// ------------------------------
// Start include/blet/args/args.h
// ------------------------------
/**
* args/args.h
*
* Licensed under the MIT License <http://opensource.org/licenses/MIT>.
* Copyright (c) 2022-2023 BLET Mickael.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included
* in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
#ifndef BLET_ARGS_ARGS_H_
#define BLET_ARGS_ARGS_H_
#include <list>
#include <map>
#include <string>
#include <vector>
// #include "blet/args/action.h" (already included)
// #include "blet/args/argument.h"
// ----------------------------------
// Start include/blet/args/argument.h
// ----------------------------------
/**
* args/argument.h
*
* Licensed under the MIT License <http://opensource.org/licenses/MIT>.
* Copyright (c) 2022-2023 BLET Mickael.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included
* in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
#ifndef BLET_ARGS_ARGUMENT_H_
#define BLET_ARGS_ARGUMENT_H_
#include <cstdlib> // stdtod
#include <cstring> // memcpy
#include <string>
#include <vector>
// #include "blet/args/action.h" (already included)
// #include "blet/args/exception.h"
// -----------------------------------
// Start include/blet/args/exception.h
// -----------------------------------
/**
* args/exception.h
*
* Licensed under the MIT License <http://opensource.org/licenses/MIT>.
* Copyright (c) 2022-2023 BLET Mickael.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included
* in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
#ifndef BLET_ARGS_EXCEPTION_H_
#define BLET_ARGS_EXCEPTION_H_
#include <exception>
#include <string>
namespace blet {
namespace args {
/**
* @brief Basic exception from std::exception
*/
class Exception : public std::exception {
public:
Exception(const char* str);
virtual ~Exception() throw();
const char* what() const throw();
protected:
std::string str_;
};
/**
* @brief Usage exception from Exception
*/
struct HelpException : public Exception {
HelpException(const char* message);
virtual ~HelpException() throw();
};
/**
* @brief Version exception from Exception
*/
struct VersionException : public Exception {
VersionException(const char* message);
virtual ~VersionException() throw();
};
/**
* @brief Argument exception from Exception
*/
class ArgumentException : public Exception {
public:
ArgumentException(const char* message);
ArgumentException(const char* argument, const char* message);
virtual ~ArgumentException() throw();
const char* argument() const throw();
protected:
std::string argument_;
};
struct AccessDeniedException : public ArgumentException {
AccessDeniedException(const char* argument, const char* message);
virtual ~AccessDeniedException() throw();
};
struct ParseArgumentException : public ArgumentException {
ParseArgumentException(const char* message);
ParseArgumentException(const char* argument, const char* message);
virtual ~ParseArgumentException() throw();
};
struct ParseArgumentRequiredException : public ParseArgumentException {
ParseArgumentRequiredException(const char* argument, const char* message);
virtual ~ParseArgumentRequiredException() throw();
};
struct ParseArgumentValidException : public ParseArgumentException {
ParseArgumentValidException(const char* message);
ParseArgumentValidException(const char* argument, const char* message);
virtual ~ParseArgumentValidException() throw();
};
} // namespace args
} // namespace blet
#endif // #ifndef BLET_ARGS_EXCEPTION_H_
// ---------------------------------
// End include/blet/args/exception.h
// ---------------------------------
// #include "blet/args/valid.h"
// -------------------------------
// Start include/blet/args/valid.h
// -------------------------------
/**
* args/valid.h
*
* Licensed under the MIT License <http://opensource.org/licenses/MIT>.
* Copyright (c) 2022-2023 BLET Mickael.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included
* in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
#ifndef BLET_ARGS_VALID_H_
#define BLET_ARGS_VALID_H_
#include <string>
#include <vector>
namespace blet {
namespace args {
/**
* @brief Interface for validate argument
*/
class IValid {
public:
/**
* @brief Destroy the IValid object
*/
inline virtual ~IValid() {}
/**
* @brief check if arguments are valid
*
* @param arguments
* @return [true] arguments are valid, [false] arguments are not valid
*/
virtual bool isValid(std::vector<std::string>& arguments) = 0;
};
class ValidNumber : public IValid {
public:
/**
* @brief Construct a new Valid Number object
*/
ValidNumber();
/**
* @brief Destroy the Valid Number object
*/
~ValidNumber();
/**
* @brief check if arguments are valid
*
* @param arguments
* @return [true] arguments are valid, [false] arguments are not valid
*/
bool isValid(std::vector<std::string>& args);
};
class ValidMinMax : public IValid {
public:
/**
* @brief Construct a new Valid Min Max object
* at call self @c isValid it check if arguments are between of @p min and @p max
*
* @param min
* @param max
*/
ValidMinMax(double min, double max);
/**
* @brief Destroy the Valid Min Max object
*/
~ValidMinMax();
/**
* @brief check if arguments are valid
*
* @param arguments
* @return [true] arguments are valid, [false] arguments are not valid
*/
bool isValid(std::vector<std::string>& args);
private:
double min_;
double max_;
};
class ValidChoise : public IValid {
public:
/**
* @brief
*
* @param choises
*/
ValidChoise(const std::vector<std::string>& choises);
/**
* @brief Destroy the Valid Choise object
*/
~ValidChoise();
/**
* @brief check if arguments are valid
*
* @param arguments
* @return [true] arguments are valid, [false] arguments are not valid
*/
bool isValid(std::vector<std::string>& args);
private:
std::vector<std::string> choises_;
};
class ValidPath : public IValid {
public:
enum eMode {
ALL = 0,
IS_FILE,
IS_DIR
};
/**
* @brief Construct a new Valid Path Exist object
* at call self @c isValid it check if argument is a exist path
*/
ValidPath(enum eMode mode = ValidPath::ALL);
/**
* @brief Destroy the Valid Path Exist object
*/
~ValidPath();
/**
* @brief check if arguments are valid
*
* @param arguments
* @return [true] arguments are valid, [false] arguments are not valid
*/
bool isValid(std::vector<std::string>& args);
private:
enum eMode mode_;
};
} // namespace args
} // namespace blet
#endif // #ifndef BLET_ARGS_VALID_H_
// -----------------------------
// End include/blet/args/valid.h
// -----------------------------
// #include "blet/args/vector.h"
// --------------------------------
// Start include/blet/args/vector.h
// --------------------------------
/**
* args/vector.h
*
* Licensed under the MIT License <http://opensource.org/licenses/MIT>.
* Copyright (c) 2022-2023 BLET Mickael.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included
* in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
#ifndef BLET_ARGS_VECTOR_H_
#define BLET_ARGS_VECTOR_H_
#include <string>
#include <vector>
namespace blet {
namespace args {
class Vector : public std::vector<std::string> {
public:
inline Vector() :
std::vector<std::string>() {}
template<std::size_t S>
inline Vector(const char* (&v)[S]) :
std::vector<std::string>() {
std::vector<std::string>::reserve(S);
for (std::size_t i = 0; i < S; ++i) {
std::vector<std::string>::push_back(v[i]);
}
}
template<std::size_t S>
inline Vector(const char* const (&v)[S]) :
std::vector<std::string>() {
std::vector<std::string>::reserve(S);
for (std::size_t i = 0; i < S; ++i) {
std::vector<std::string>::push_back(v[i]);
}
}
template<std::size_t S>
inline Vector(const std::string (&v)[S]) :
std::vector<std::string>() {
std::vector<std::string>::reserve(S);
for (std::size_t i = 0; i < S; ++i) {
std::vector<std::string>::push_back(v[i]);
}
}
template<std::size_t S>
inline Vector(const char (&v)[S]) :
std::vector<std::string>() {
std::vector<std::string>::push_back(v);
}
inline Vector(const char*(&v)) :
std::vector<std::string>() {
std::vector<std::string>::push_back(v);
}
inline Vector(const std::string& v) :
std::vector<std::string>() {
std::vector<std::string>::push_back(v);
}
#if __cplusplus >= 201103L
inline Vector(const std::initializer_list<std::string>& l) :
std::vector<std::string>(l) {}
#endif
};
} // namespace args
} // namespace blet
#endif // #ifndef BLET_ARGS_VECTOR_H_
// ------------------------------
// End include/blet/args/vector.h
// ------------------------------
// ------------------------------------
// Content include/blet/args/argument.h
// ------------------------------------
namespace blet {
class Usage;
namespace args {
template<typename T>
inline void boolTo(const bool&, T&) {
throw ParseArgumentException("destination method not found for this type");
}
inline void boolTo(const bool& b, bool& ret) {
ret = b;
}
inline void boolTo(const bool& b, char& ret) {
ret = b;
}
inline void boolTo(const bool& b, unsigned char& ret) {
ret = b;
}
inline void boolTo(const bool& b, short& ret) {
ret = b;
}
inline void boolTo(const bool& b, unsigned short& ret) {
ret = b;
}
inline void boolTo(const bool& b, int& ret) {
ret = b;
}
inline void boolTo(const bool& b, unsigned int& ret) {
ret = b;
}
inline void boolTo(const bool& b, long& ret) {
ret = b;
}
inline void boolTo(const bool& b, unsigned long& ret) {
ret = b;
}
#if __cplusplus >= 201103L
#ifdef _GLIBCXX_USE_LONG_LONG
inline void boolTo(const bool& b, long long& ret) {
ret = b;
}
inline void boolTo(const bool& b, unsigned long long& ret) {
ret = b;
}
#endif
#endif
inline void boolTo(const bool& b, float& ret) {
ret = b;
}
inline void boolTo(const bool& b, double& ret) {
ret = b;
}
inline void boolTo(const bool& b, long double& ret) {
ret = b;
}
inline void boolTo(const bool& b, std::string& ret) {
if (b) {
ret = "true";
}
else {
ret = "false";
}
}
inline void boolTo(const bool& b, const char*& ret) {
if (b) {
ret = "true";
}
else {
ret = "false";
}
}
template<std::size_t Size>
inline void boolTo(const bool& b, char (&ret)[Size]) {
if (b) {
if (Size >= sizeof("true")) {
::memcpy(ret, "true", sizeof("true"));
}
else {
::memcpy(ret, "true", Size - 1);
ret[Size - 1] = '\0';
}
}
else {
if (Size >= sizeof("false")) {
::memcpy(ret, "false", sizeof("false"));
}
else {
::memcpy(ret, "false", Size - 1);
ret[Size - 1] = '\0';
}
}
}
template<typename T>
inline void strTo(const std::string&, T&) {
throw ParseArgumentException("destination method not found for this type");
}
inline void strTo(const std::string& str, bool& ret) {
ret = ::strtod(str.c_str(), NULL);
}
inline void strTo(const std::string& str, char& ret) {
ret = ::strtod(str.c_str(), NULL);
}
inline void strTo(const std::string& str, unsigned char& ret) {
ret = ::strtod(str.c_str(), NULL);
}
inline void strTo(const std::string& str, short& ret) {
ret = ::strtod(str.c_str(), NULL);
}
inline void strTo(const std::string& str, unsigned short& ret) {
ret = ::strtod(str.c_str(), NULL);
}
inline void strTo(const std::string& str, int& ret) {
ret = ::strtod(str.c_str(), NULL);
}
inline void strTo(const std::string& str, unsigned int& ret) {
ret = ::strtod(str.c_str(), NULL);
}
inline void strTo(const std::string& str, long& ret) {
ret = ::strtod(str.c_str(), NULL);
}
inline void strTo(const std::string& str, unsigned long& ret) {
ret = ::strtod(str.c_str(), NULL);
}
#if __cplusplus >= 201103L
#ifdef _GLIBCXX_USE_LONG_LONG
inline void strTo(const std::string& str, long long& ret) {
ret = ::strtod(str.c_str(), NULL);
}
inline void strTo(const std::string& str, unsigned long long& ret) {
ret = ::strtod(str.c_str(), NULL);
}
#endif
#endif
inline void strTo(const std::string& str, float& ret) {
ret = ::strtod(str.c_str(), NULL);
}
inline void strTo(const std::string& str, double& ret) {
ret = ::strtod(str.c_str(), NULL);
}
inline void strTo(const std::string& str, long double& ret) {
ret = ::strtod(str.c_str(), NULL);
}
inline void strTo(const std::string& str, std::string& ret) {
ret = str;
}
inline void strTo(const std::string& str, const char*& ret) {
ret = str.c_str();
}
template<std::size_t Size>
inline void strTo(const std::string& str, char (&ret)[Size]) {
if (Size > str.size()) {
::memcpy(ret, str.c_str(), str.size());
ret[str.size()] = '\0';
}
else {
::memcpy(ret, str.c_str(), Size - 1);
ret[Size - 1] = '\0';
}
}
class Args;
class ArgumentElement : public std::vector<ArgumentElement> {
friend class Args;
friend class Argument;
friend class Usage;
public:
ArgumentElement();
ArgumentElement(const ArgumentElement& rhs);
ArgumentElement(const char* arg__, const char* default__);
ArgumentElement(const char* arg);
~ArgumentElement();
/**
* @brief Get the string argument
*
* @return std::string
*/
inline std::string getString() const {
return argument_;
}
/**
* @brief Get the default value of argument
*
* @return const std::string&
*/
inline const std::string& getDefault() const {
return default_;
}
/**
* @brief Check if argument is number
*
* @return [true] if is number
*/
inline bool isNumber() const {
return isNumber_;
}
/**
* @brief Get the number from argument if is number
*
* @return double
*
* @throw Exception is not a number
*/
inline double getNumber() const {
if (isNumber_) {
return number_;
}
throw Exception("is not a number");
}
/**
* @brief tranform to vector of string
*
* @return std::vector<std::string>
*
* @throw Exception convertion to vector of string not authorized
*/
operator std::vector<std::string>() const;
/**
* @brief Friend function for convert Argument object to ostream
*
* @param os
* @param argument
* @return std::ostream&
*/
inline friend std::ostream& operator<<(std::ostream& os, const ArgumentElement& argument) {
os << argument.getString();
return os;
}
protected:
std::string argument_;
std::string default_;
bool isNumber_;
double number_;
};
template<typename T>
class ArgumentType;
template<typename T>
class ArgumentVectorType;
template<typename T>
class ArgumentVectorVectorType;
/**
* @brief Argument object
*/
class Argument : public ArgumentElement {
friend class Args;
friend class Usage;
public:
/**
* @brief Construct a new Argument object
*/
Argument(Args& args);
/**
* @brief Copy a Argument object
*
* @param rhs
*/
Argument(const Argument& rhs);
/**
* @brief Destroy the Argument object
*/
virtual ~Argument();
inline bool isExists() const {
return isExist_;
}
inline bool isRequired() const {
return isRequired_;
}
inline std::size_t count() const {
return count_;
}
inline std::size_t getNargs() const {
return nargs_;
}
inline const std::string& getHelp() const {
return help_;
}
inline const std::string& getMetavar() const {
return metavar_;
}
inline const std::vector<std::string>& getNameOrFlags() const {
return nameOrFlags_;
}
inline const std::vector<std::string>& getDefaults() const {
return defaults_;
}
inline Action::eAction getAction() const {
return action_;
}
std::string getString() const;
/**
* @brief Override bool operator
*
* @return true if exist or false if not exist
*/
inline operator bool() const {
if (type_ == REVERSE_BOOLEAN_OPTION) {
return !isExist_;
}
else {
return isExist_;
}
}
/**
* @brief tranform to string
*
* @return std::string
*/
inline operator std::string() const {
return getString();
}
/**
* @brief tranform to vector of string
*
* @return std::vector<std::string>
*
* @throw Exception convertion to vector of string not authorized
*/
operator std::vector<std::string>() const;
/**
* @brief tranform to vector of vector of string
*
* @return std::vector<std::vector<std::string> >
*
* @throw Exception convertion to vector of vector of string not authorized
*/
operator std::vector<std::vector<std::string> >() const;
/**
* @brief tranform to number
*
* @tparam T
* @return T
*/
template<typename T>
inline operator T() const {
return getNumber();
}
/**
* @brief overide brakcet operator
*
* @param index
* @return const Argument&
*/
inline const ArgumentElement& operator[](unsigned long index) const {
return at(index);
}
/**
* @brief Option strings, e.g. -f, --foo
*
* @param flag__
* @return this reference
*
* @throw ArgumentException
*/
Argument& flag(const char* flag__);
/**
* @brief The basic type of action to be taken when this argument is encountered at the command line
*