forked from frkd-dev/yuvit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
getopt_pp.h
719 lines (613 loc) · 18.5 KB
/
getopt_pp.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
/*
GetOpt_pp: Yet another C++ version of getopt.
Copyright (C) 2007, 2008, 2009, 2010 Daniel Gutson, FuDePAN
This file is part of GetOpt_pp.
GetOpt_pp is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
GetOpt_pp is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef GETOPT_PP_H
#define GETOPT_PP_H
#include <string>
#include <vector> // candidate to be removed
#include <map>
#include <sstream>
#include <list>
/*
DESIGN GOALS:
- EASY to use
- EASY to learn
- mimc STL's streams
- EASY to extend
*/
#ifndef GETOPT_INLINE
# define GETOPT_INLINE
#endif
namespace GetOpt
{
struct Token
{
enum Type
{
ShortOption,
LongOption,
GlobalArgument,
GlobalArgumentUsed, // already read, skip in the next read
OptionArgument,
UnknownYet // can be a global option, or an option of the previous one
};
Type type;
std::string value;
Token* next;
Token(const std::string& value, Type type = UnknownYet)
: type(type), value(value), next(NULL)
{}
bool is_last() const
{
return next == NULL;
}
void link_to(Token* new_next)
{
next = new_next;
}
Token* get_next_option_argument() const
{
if (is_last())
return NULL;
else
{
if (next->type == UnknownYet || next->type == OptionArgument)
return next;
else
return NULL;
}
}
};
struct OptionData
{
enum _Flags
{
CmdLine_NotExtracted,
CmdLine_Extracted,
Envir
};
_Flags flags;
Token* token;
OptionData() : flags(CmdLine_NotExtracted) {}
};
typedef std::map<std::string, OptionData> LongOptions;
typedef std::map<char, OptionData> ShortOptions;
struct _Option
{
enum Result
{
OK,
ParsingError,
OptionNotFound,
BadType,
NoArgs,
TooManyArgs,
OptionNotFound_NoEx
};
virtual Result operator()(ShortOptions& short_ops, LongOptions& long_ops, Token* first, std::ios::fmtflags flags) const = 0;
virtual ~_Option() {}
static const char NO_SHORT_OPT = 0;
};
template <class T> inline _Option::Result convert(const std::string& s, T& result, std::ios::fmtflags flags)
{
std::stringstream ss;
ss.clear();
ss.flags(flags);
ss << s;
ss >> result;
if (ss.fail() || !ss.eof())
return _Option::BadType;
else
return _Option::OK;
}
template <> inline _Option::Result convert<std::string>(const std::string& s, std::string& result, std::ios::fmtflags /*flags*/)
{
result = s;
return _Option::OK;
}
template <class T> class _OptionTBase : public _Option
{
const char short_opt;
const std::string long_opt;
protected:
T& target;
virtual Result _assign(Token* token, std::ios::fmtflags flags) const = 0;
public:
_OptionTBase(const _OptionTBase<T>& other)
: _Option(), short_opt(other.short_opt), long_opt(other.long_opt), target(other.target)
{}
_OptionTBase(char short_opt, const std::string& long_opt, T& target)
: short_opt(short_opt), long_opt(long_opt), target(target)
{}
virtual Result operator()(ShortOptions& short_ops, LongOptions& long_ops, Token* /*first*/, std::ios::fmtflags flags) const
{
Result ret = OptionNotFound;
ShortOptions::iterator it;
if (short_opt == _Option::NO_SHORT_OPT)
it = short_ops.end();
else
it = short_ops.find(short_opt);
if (it != short_ops.end())
{
it->second.flags = OptionData::CmdLine_Extracted;
ret = _assign(it->second.token, flags);
}
else if (!long_opt.empty())
{
LongOptions::iterator it = long_ops.find(long_opt);
if (it != long_ops.end())
{
it->second.flags = OptionData::CmdLine_Extracted;
ret = _assign(it->second.token, flags);
}
}
return ret;
}
};
template <class T> class _OptionT : public _OptionTBase<T>
{
protected:
virtual _Option::Result _assign(Token* token, std::ios::fmtflags flags) const
{
Token* const option_token = token->get_next_option_argument();
if (option_token == NULL)
return _Option::NoArgs;
else
{
option_token->type = Token::OptionArgument;
return convert<T>(option_token->value, this->target, flags);
}
}
public:
_OptionT(const _OptionT<T>& other)
: _OptionTBase<T>(other)
{}
_OptionT(char short_opt, const std::string& long_opt, T& target)
: _OptionTBase<T>(short_opt, long_opt, target)
{}
};
template <class T> class _OptionT<std::vector<T> > : public _OptionTBase<std::vector<T> >
{
protected:
virtual _Option::Result _assign(Token* token, std::ios::fmtflags flags) const
{
Token* option_token = token->get_next_option_argument();
if (option_token != NULL)
{
_Option::Result result;
//OptionArgs::const_iterator it = args.begin();
T temp;
do
{
result = convert<T>(option_token->value, temp, flags);
if (result == _Option::OK)
this->target.push_back(temp);
option_token = option_token->get_next_option_argument();
}
while (option_token != NULL && result == _Option::OK);
return result;
}
else
return _Option::NoArgs;
}
public:
_OptionT(const _OptionT<std::vector<T> >& other)
: _OptionTBase<std::vector<T> >(other)
{}
_OptionT(char short_opt, const std::string& long_opt, std::vector<T>& target)
: _OptionTBase<std::vector<T> >(short_opt, long_opt, target)
{}
};
template <class T, class BaseOption>
class _DefValOption : public BaseOption
{
const T default_value;
public:
_DefValOption(const _DefValOption<T, BaseOption>& other)
: BaseOption(other), default_value(other.default_value)
{}
_DefValOption(char short_opt, const std::string& long_opt, T& target, const T& default_value)
: BaseOption(short_opt, long_opt, target), default_value(default_value)
{}
virtual _Option::Result operator()(ShortOptions& short_ops, LongOptions& long_ops, Token* first, std::ios::fmtflags flags) const
{
_Option::Result ret = BaseOption::operator()(short_ops, long_ops, first, flags);
if (ret == _Option::OptionNotFound)
{
this->target = default_value;
ret = _Option::OK;
}
return ret;
}
};
template <class T>
class _GlobalOption : public _Option
{
T& target;
virtual Result operator()(ShortOptions& short_ops, LongOptions& long_ops, Token* first, std::ios::fmtflags flags) const
{
// find first token GlobalArgument or UnknownYet (candidate)
Token* token(first);
bool found(false);
while (token != NULL && !found)
{
found = (token->type == Token::GlobalArgument || token->type == Token::UnknownYet);
if (!found)
token = token->next;
}
if (found)
{
token->type = Token::GlobalArgumentUsed;
return convert<T>(token->value, target, flags);
}
else
return OptionNotFound;
}
public:
_GlobalOption(const _GlobalOption<T>& other)
: target(other.target)
{}
_GlobalOption(T& target)
: target(target)
{}
};
template <class T>
class _GlobalOption<std::vector<T> > : public _Option
{
std::vector<T>& target;
virtual Result operator()(ShortOptions& /*short_ops*/, LongOptions& /*long_ops*/, Token* first, std::ios::fmtflags flags) const
{
// find first token GlobalArgument or UnknownYet (candidate)
Token* token(first);
bool found_any(false);
T tmp;
Result res(OK);
while (token != NULL && res == OK)
{
if (token->type == Token::GlobalArgument || token->type == Token::UnknownYet)
{
res = convert<T>(token->value, tmp, flags);
if (res == OK)
{
found_any = true;
target.push_back(tmp);
token->type = Token::GlobalArgumentUsed;
}
}
token = token->next;
}
if (res == OK)
{
if (found_any)
return res;
else
return OptionNotFound;
}
else
return res;
}
public:
_GlobalOption(const _GlobalOption<std::vector<T> >& other)
: target(other.target)
{}
_GlobalOption(std::vector<T>& target)
: target(target)
{}
};
template <class T>
inline _OptionT<T> Option(char short_opt, const std::string& long_opt, T& target)
{
return _OptionT<T>(short_opt, long_opt, target);
}
template <class T>
inline _OptionT<T> Option(char short_opt, T& target)
{
return _OptionT<T>(short_opt, std::string(), target);
}
// LongOpt only
template <class T>
inline _OptionT<T> Option(const std::string& long_opt, T& target)
{
return _OptionT<T>(_Option::NO_SHORT_OPT, long_opt, target);
}
// Defaulted version
template <class T>
inline _DefValOption<T, _OptionT<T> >
Option(char short_opt, const std::string& long_opt, T& target, const T& def)
{
return _DefValOption<T, _OptionT<T> >(short_opt, long_opt, target, def);
}
template <class T>
inline _DefValOption<T, _OptionT<T> > Option(char short_opt, T& target, const T& def)
{
return _DefValOption<T, _OptionT<T> >(short_opt, std::string(), target, def);
}
// no short opt.
template <class T>
inline _DefValOption<T, _OptionT<T> >
Option(const std::string& long_opt, T& target, const T& def)
{
return _DefValOption<T, _OptionT<T> >(_Option::NO_SHORT_OPT, long_opt, target, def);
}
// Defaults for strings:
inline _DefValOption<std::string, _OptionT<std::string> >
Option(char short_opt, const std::string& long_opt, std::string& target, const char* def)
{
return _DefValOption<std::string, _OptionT<std::string> >(short_opt, long_opt, target, def);
}
inline _OptionT<std::string> Option(char short_opt, std::string& target, const char* def)
{
return _DefValOption<std::string, _OptionT<std::string> >(short_opt, std::string(), target, def);
}
// no short opt.
inline _DefValOption<std::string, _OptionT<std::string> >
Option(const std::string& long_opt, std::string& target, const char* def)
{
return _DefValOption<std::string, _OptionT<std::string> >(_Option::NO_SHORT_OPT, long_opt, target, def);
}
// Global Option:
template <class T>
inline _GlobalOption<T> GlobalOption(T& target)
{
return _GlobalOption<T>(target);
}
class OptionPresent : public _Option
{
const char short_opt;
const std::string long_opt;
bool* const present;
public:
// two combinations: with/without target, and with/without long opt.
// WITH long_opt:
OptionPresent(char short_opt, const std::string& long_opt, bool& present)
: short_opt(short_opt), long_opt(long_opt), present(&present)
{}
OptionPresent(char short_opt, const std::string& long_opt)
: short_opt(short_opt), long_opt(long_opt), present(NULL)
{}
// WITHOUT long_opt:
OptionPresent(char short_opt, bool& present)
: short_opt(short_opt), present(&present)
{}
OptionPresent(char short_opt)
: short_opt(short_opt), present(NULL)
{}
// WITHOUT short_opt
OptionPresent(const std::string& long_opt, bool& present)
: short_opt(_Option::NO_SHORT_OPT), long_opt(long_opt), present(&present)
{}
OptionPresent(const std::string& long_opt)
: short_opt(_Option::NO_SHORT_OPT), long_opt(long_opt), present(NULL)
{}
protected:
virtual Result operator()(ShortOptions& short_ops, LongOptions& long_ops, Token* /*first*/, std::ios::fmtflags /*flags*/) const
{
bool found;
ShortOptions::iterator it = short_ops.find(short_opt);
found = (it != short_ops.end());
if (found)
{
it->second.flags = OptionData::CmdLine_Extracted;
}
else if (!long_opt.empty())
{
LongOptions::iterator it = long_ops.find(long_opt);
found = (it != long_ops.end());
if (found)
{
it->second.flags = OptionData::CmdLine_Extracted;
}
}
if (present != NULL)
{
*present = found;
return OK;
}
else
{
return found ? OK : OptionNotFound_NoEx;
}
}
};
class GetOptEx : public std::exception {};
struct ParsingErrorEx : GetOptEx {};
struct InvalidFormatEx : GetOptEx {};
struct ArgumentNotFoundEx : GetOptEx {};
struct TooManyArgumentsEx : GetOptEx {};
struct OptionNotFoundEx : GetOptEx {};
struct TooManyOptionsEx : GetOptEx {};
enum _EnvTag
{
Include_Environment
};
class GetOpt_pp
{
ShortOptions _shortOps;
LongOptions _longOps;
std::ios_base::iostate _exc;
_Option::Result _last;
std::ios::fmtflags _flags;
std::string _app_name;
Token* _first_token;
Token* _last_token;
GETOPT_INLINE Token* _add_token(const std::string& value, Token::Type type);
GETOPT_INLINE void _init_flags();
GETOPT_INLINE void _parse(int argc, const char* const* const argv);
GETOPT_INLINE void _parse_env();
public:
GETOPT_INLINE GetOpt_pp(int argc, const char* const* const argv);
GETOPT_INLINE GetOpt_pp(int argc, const char* const* const argv, _EnvTag);
GETOPT_INLINE ~GetOpt_pp();
std::ios_base::iostate exceptions() const
{
return _exc;
}
void exceptions(std::ios_base::iostate except)
{
_exc = except;
}
void exceptions_all()
{
_exc = std::ios_base::failbit | std::ios_base::eofbit;
}
operator bool() const
{
return _last == _Option::OK;
}
GETOPT_INLINE bool options_remain() const;
void end_of_options() const throw(GetOptEx)
{
if (options_remain() && (_exc & std::ios_base::eofbit))
throw TooManyOptionsEx();
}
std::ios::fmtflags flags() const
{
return _flags;
}
void flags(std::ios::fmtflags flags)
{
_flags = flags;
}
const std::string& app_name() const
{
return _app_name;
}
GETOPT_INLINE GetOpt_pp& operator >> (const _Option& opt) throw(GetOptEx);
GETOPT_INLINE GetOpt_pp& operator >> (std::ios_base& (*iomanip)(std::ios_base&));
// Alternative to manipulators, for those who don't like them: the 'getopt' method :)
// Combination 1: with long option:
template <class T> inline T getopt(char short_opt, const std::string& long_opt) throw(GetOptEx)
{
T result;
operator >> (Option(short_opt, long_opt, result));
return result;
}
template <class T> inline T getopt(char short_opt, const std::string& long_opt, const T& def_value)
{
T result;
operator >> (Option(short_opt, long_opt, result, def_value));
return result;
}
// Combination 2: without long option:
template <class T> inline T getopt(char short_opt) throw(GetOptEx)
{
T result;
operator >> (Option(short_opt, result));
return result;
}
template <class T> inline T getopt(char short_opt, const T& def_value)
{
T result;
operator >> (Option(short_opt, result, def_value));
return result;
}
struct ItCtorData
{
ShortOptions::const_iterator short_iter;
LongOptions::const_iterator long_iter;
GetOpt_pp* getopt_pp;
};
template <class Container, class Adapter, class OptionType>
class _iterator
{
typename Container::const_iterator _it;
GetOpt_pp* _getopt_pp;
public:
_iterator(const ItCtorData& ctor_data)
{
_it = Adapter::adapt(ctor_data);
_getopt_pp = ctor_data.getopt_pp;
}
_iterator() : _getopt_pp(NULL)
{}
_iterator<Container, Adapter, OptionType>& operator = (const _iterator<Container, Adapter, OptionType>& other)
{
_it = other._it;
_getopt_pp = other._getopt_pp;
return *this;
}
bool operator != (const _iterator<Container, Adapter, OptionType>& other) const
{
return _it != other._it;
}
OptionType option() const
{
return _it->first;
}
OptionType operator*() const
{
return option();
}
_iterator<Container, Adapter, OptionType>& operator ++()
{
++_it;
return *this;
}
template <class T>
GetOpt_pp& operator >> (T& t)
{
Adapter::extract(t, *_getopt_pp, option());
return *_getopt_pp;
}
};
ItCtorData begin()
{
ItCtorData ret;
ret.short_iter = _shortOps.begin();
ret.long_iter = _longOps.begin();
ret.getopt_pp = this;
return ret;
}
ItCtorData end()
{
ItCtorData ret;
ret.short_iter = _shortOps.end();
ret.long_iter = _longOps.end();
ret.getopt_pp = this;
return ret;
}
struct ShortAdapter
{
static ShortOptions::const_iterator adapt(const ItCtorData& data)
{
return data.short_iter;
}
template <class T>
static void extract(T& t, GetOpt_pp& getopt_pp, char option)
{
getopt_pp >> Option(option, t);
}
};
struct LongAdapter
{
static LongOptions::const_iterator adapt(const ItCtorData& data)
{
return data.long_iter;
}
template <class T>
static void extract(T& t, GetOpt_pp& getopt_pp, const std::string& option)
{
getopt_pp >> Option('\0', option, t);
}
};
typedef _iterator<ShortOptions, ShortAdapter, char> short_iterator;
typedef _iterator<LongOptions, LongAdapter, const std::string&> long_iterator;
};
class Environment
{
// Coming soon!
};
}
#endif