forked from kimushu/json5pp
-
Notifications
You must be signed in to change notification settings - Fork 1
/
json5pp.hpp
2175 lines (1992 loc) · 52.9 KB
/
json5pp.hpp
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
#ifndef _JSON5PP_HPP_
#define _JSON5PP_HPP_
#include <stdexcept>
#include <string>
#include <vector>
#include <map>
#include <sstream>
#include <initializer_list>
#include <cmath>
#include <limits>
#include <streambuf>
namespace json5pp {
/*
* json5pp uses semantic versioning
* See: https://semver.org/
*/
namespace version {
static constexpr auto major = 2;
static constexpr auto minor = 2;
static constexpr auto patch = 0;
}
/**
* @class syntax_error
* A class of objects thrown as exceptions to report a JSON syntax error.
*/
class syntax_error : public std::invalid_argument
{
public:
/**
* Construct syntax_error object with failed character.
* @param ch Character which raised error or Traits::eof()
* @param context_name Context description in human-readable string
*/
syntax_error(int ch, const char *context_name)
: std::invalid_argument(
std::string("JSON syntax error: ") +
(ch != std::char_traits<char>::eof() ?
"illegal character `" + std::string(1, static_cast<char>(ch)) + "'" :
"unexpected EOS") +
" in " + context_name) {}
};
namespace impl {
/**
* @brief Parser/stringifier flags
*/
enum flags : std::uint32_t
{
// Syntax flags
single_line_comment = (1u<<0),
multi_line_comment = (1u<<1),
comments = single_line_comment|multi_line_comment,
explicit_plus_sign = (1u<<2),
leading_decimal_point = (1u<<3),
trailing_decimal_point = (1u<<4),
decimal_points = leading_decimal_point|trailing_decimal_point,
infinity_number = (1u<<5),
not_a_number = (1u<<6),
hexadecimal = (1u<<7),
single_quote = (1u<<8),
multi_line_string = (1u<<9),
trailing_comma = (1u<<10),
unquoted_key = (1u<<11),
// Syntax flag sets
json5_rules = ((unquoted_key<<1)-1),
all_rules = json5_rules,
// Parse options
finished = (1u<<29),
parse_mask = all_rules|finished,
// Stringify options
crlf_newline = (1u<<31),
stringify_mask = infinity_number|not_a_number|crlf_newline,
};
using flags_type = std::underlying_type<flags>::type;
using indent_type = std::int8_t;
template <flags_type F> class parser;
template <flags_type F, indent_type I> class stringifier;
template <flags_type S, flags_type C>
class manipulator_flags
{
public:
/**
* @brief Invert set/clear of flags
*
* @return A new flag manipulator
*/
manipulator_flags<C,S> operator-() const { return manipulator_flags<C,S>(); }
template <flags_type S_, flags_type C_>
friend parser<S_&flags::parse_mask> operator>>(std::istream& istream, const manipulator_flags<S_,C_>& manip);
template <flags_type S_, flags_type C_>
friend stringifier<S_&flags::stringify_mask,0> operator<<(std::ostream& ostream, const manipulator_flags<S_,C_>& manip);
};
template <indent_type I>
class manipulator_indent
{
public:
template <indent_type I_>
friend parser<0> operator>>(std::istream& istream, const manipulator_indent<I_>& manip);
template <indent_type I_>
friend stringifier<0,I_> operator<<(std::ostream& ostream, const manipulator_indent<I_>& manip);
};
} /* namespace impl */
/**
* @brief A class to hold JSON value
*/
class value
{
private:
enum type_enum {
TYPE_NULL,
TYPE_BOOLEAN,
TYPE_NUMBER,
TYPE_STRING,
TYPE_ARRAY,
TYPE_OBJECT,
TYPE_INTEGER,
} type;
public:
using null_type = std::nullptr_t;
using boolean_type = bool;
using number_type = double;
using integer_type = long long;
using number_i_type = integer_type;
using string_type = std::string;
using string_p_type = const char*;
using array_type = std::vector<value>;
using pair_type = std::pair<string_type, value>;
using object_type = std::vector<pair_type>;
using json_type = std::string;
/*================================================================================
* Construction
*/
public:
/**
* @brief JSON value default constructor for "null" type.
*/
value() noexcept : value(nullptr) {}
/**
* @brief JSON value constructor for "null" type.
* @param null A dummy argument for nullptr
*/
value(null_type null) noexcept : type(TYPE_NULL) {}
/**
* @brief JSON value constructor for "boolean" type.
* @param boolean A boolean value to be set.
*/
value(boolean_type boolean) noexcept : type(TYPE_BOOLEAN), content(boolean) {}
/**
* @brief JSON value constructor for "number" type.
* @param number A number to be set.
*/
value(number_type number) noexcept : type(TYPE_NUMBER), content(number) {}
/**
* @brief JSON value constructor with integer for "number" type.
* @param number An integer value to be set.
*/
value(integer_type integer) noexcept : type(TYPE_INTEGER), content(integer) {}
/**
* @brief JSON value constructor for "string" type.
* @param string A string value to be set.
*/
value(const string_type& string) : type(TYPE_STRING)
{
new(&content.string) string_type(string);
}
/**
* @brief JSON value constructor for "string" type. (const char* version)
* @param string A string value to be set.
*/
value(string_p_type string) : type(TYPE_STRING)
{
new(&content.string) string_type(string);
}
/**
* @brief JSON value constructor for "array" type.
* @param array An initializer list of elements.
*/
explicit value(std::initializer_list<value> array) : type(TYPE_ARRAY)
{
new(&content.array) array_type(array);
}
/**
* @brief JSON value constructor with key,value pair for "object" type.
* @param elements An initializer list of key,value pair.
*/
explicit value(std::initializer_list<pair_type> elements) : type(TYPE_OBJECT)
{
new(&content.object) object_type(elements);
}
/**
* @brief JSON value copy constructor.
* @param src A value to be copied from.
*/
value(const value& src) : type(TYPE_NULL)
{
*this = src;
}
/**
* @brief JSON value move constructor.
* @param src A value to be moved from.
*/
value(value&& src) : type(src.type)
{
switch (type) {
case TYPE_BOOLEAN:
new (&content.boolean) boolean_type(std::move(src.content.boolean));
break;
case TYPE_NUMBER:
new (&content.number) number_type(std::move(src.content.number));
break;
case TYPE_INTEGER:
new (&content.integer) integer_type(std::move(src.content.integer));
break;
case TYPE_STRING:
new (&content.string) string_type(std::move(src.content.string));
break;
case TYPE_ARRAY:
new (&content.array) array_type(std::move(src.content.array));
break;
case TYPE_OBJECT:
new (&content.object) object_type(std::move(src.content.object));
break;
default:
break;
}
src.type = TYPE_NULL;
}
friend value array(std::initializer_list<value> elements);
friend value object(std::initializer_list<pair_type> elements);
/*================================================================================
* Destruction
*/
public:
/**
* @brief JSON value destructor.
*/
~value()
{
release();
}
private:
/**
* @brief Release content
*
* @param new_type A new type id
*/
void release(type_enum new_type = TYPE_NULL)
{
switch (type) {
case TYPE_BOOLEAN:
content.boolean.~boolean_type();
break;
case TYPE_NUMBER:
content.number.~number_type();
break;
case TYPE_INTEGER:
content.integer.~integer_type();
break;
case TYPE_STRING:
content.string.~string_type();
break;
case TYPE_ARRAY:
content.array.~array_type();
break;
case TYPE_OBJECT:
content.object.~object_type();
break;
default:
break;
}
type = new_type;
}
/*================================================================================
* Type checks
*/
public:
/**
* @brief Check if stored value is null.
*/
bool is_null() const noexcept { return type == TYPE_NULL; }
/**
* @brief Check if type of stored value is boolean.
*/
bool is_boolean() const noexcept { return type == TYPE_BOOLEAN; }
/**
* @brief Check if type of stored value is number (includes integer).
*/
bool is_number() const noexcept { return (type == TYPE_NUMBER) || (type == TYPE_INTEGER); }
/**
* @brief Check if type of stored value is integer.
*/
bool is_integer() const noexcept { return type == TYPE_INTEGER; }
/**
* @brief Check if type of stored value is string.
*/
bool is_string() const noexcept { return type == TYPE_STRING; }
/**
* @brief Check if type of stored value is array.
*/
bool is_array() const noexcept { return type == TYPE_ARRAY; }
/**
* @brief Check if type of stored value is object.
*/
bool is_object() const noexcept { return type == TYPE_OBJECT; }
/*================================================================================
* Type casts
*/
public:
/**
* @brief Cast to null
*
* @throws std::bad_cast if the value is not a null
*/
null_type as_null() const
{
if (type != TYPE_NULL) { throw std::bad_cast(); }
return nullptr;
}
/**
* @brief Cast to boolean
*
* @throws std::bad_cast if the value is not a boolean
*/
boolean_type as_boolean() const
{
if (type != TYPE_BOOLEAN) { throw std::bad_cast(); }
return content.boolean;
}
/**
* @brief Cast to number
*
* @throws std::bad_cast if the value is not a number nor integer
*/
number_type as_number() const
{
if (type == TYPE_INTEGER) {
return static_cast<number_type>(content.integer);
} else if (type != TYPE_NUMBER) {
throw std::bad_cast();
}
return content.number;
}
/**
* @brief Cast to integer number
*
* @throws std::bad_cast if the value is not a number nor integer
*/
integer_type as_integer() const
{
if (type == TYPE_NUMBER) {
return static_cast<integer_type>(content.number);
} else if (type != TYPE_INTEGER) {
throw std::bad_cast();
}
return content.integer;
}
/**
* @brief Cast to string
*
* @throws std::bad_cast if the value is not a string
*/
const string_type& as_string() const
{
if (type != TYPE_STRING) { throw std::bad_cast(); }
return content.string;
}
/**
* @brief Cast to string reference
*
* @throws std::bad_cast if the value is not a string
*/
string_type& as_string()
{
if (type != TYPE_STRING) { throw std::bad_cast(); }
return content.string;
}
/**
* @brief Cast to array
*
* @throws std::bad_cast if the value is not a array
*/
const array_type& as_array() const
{
if (type != TYPE_ARRAY) { throw std::bad_cast(); }
return content.array;
}
/**
* @brief Cast to array reference
*
* @throws std::bad_cast if the value is not a array
*/
array_type& as_array()
{
if (type != TYPE_ARRAY) { throw std::bad_cast(); }
return content.array;
}
/**
* @brief Cast to object
*
* @throws std::bad_cast if the value is not a object
*/
const object_type& as_object() const
{
if (type != TYPE_OBJECT) { throw std::bad_cast(); }
return content.object;
}
/**
* @brief Cast to object reference
*
* @throws std::bad_cast if the value is not a object
*/
object_type& as_object()
{
if (type != TYPE_OBJECT) { throw std::bad_cast(); }
return content.object;
}
/*================================================================================
* Truthy/falsy test
*/
operator bool() const
{
switch (type) {
case TYPE_BOOLEAN:
return content.boolean;
case TYPE_NUMBER:
return (content.number != 0) && (!std::isnan(content.number));
case TYPE_INTEGER:
return (content.integer != 0);
case TYPE_STRING:
return !content.string.empty();
case TYPE_ARRAY:
case TYPE_OBJECT:
return true;
case TYPE_NULL:
default:
return false;
}
}
/*================================================================================
* Array indexer
*/
const value& at(const int index, const value& default_value) const
{
if (type == TYPE_ARRAY) {
if ((0 <= index) && (index < (int)content.array.size())) {
return content.array[index];
}
}
return default_value;
}
const value& at(const int index) const
{
static const value null;
return at(index, null);
}
const value& operator[](const int index) const
{
return at(index);
}
/*================================================================================
* Object indexer
*/
const value& at(const string_type& key, const value& default_value) const
{
if (type == TYPE_OBJECT) {
auto end = content.object.end();
auto iter = std::find_if(content.object.begin(), end, [&key](const pair_type& elem) { return elem.first == key; });
if (iter != end) {
return iter->second;
}
}
return default_value;
}
const value& at(const string_type& key) const
{
static const value null;
return at(key, null);
}
const value& operator[](const string_type& key) const
{
return at(key);
}
const value& at(const string_p_type key, const value& default_value) const
{
return at(string_type(key), default_value);
}
const value& at(const string_p_type key) const
{
return at(string_type(key));
}
const value& operator[](const string_p_type key) const
{
return at(string_type(key));
}
/*================================================================================
* Assignment (Copying)
*/
public:
/**
* @brief Copy from another JSON value object.
* @param src A value object.
*/
value& operator=(const value& src)
{
release(src.type);
switch (type) {
case TYPE_BOOLEAN:
new (&content.boolean) boolean_type(src.content.boolean);
break;
case TYPE_NUMBER:
new (&content.number) number_type(src.content.number);
break;
case TYPE_INTEGER:
new (&content.integer) integer_type(src.content.integer);
break;
case TYPE_STRING:
new (&content.string) string_type(src.content.string);
break;
case TYPE_ARRAY:
new (&content.array) array_type(src.content.array);
break;
case TYPE_OBJECT:
new (&content.object) object_type(src.content.object);
break;
default:
break;
}
return *this;
}
/**
* @brief Assign null value.
* @param null A dummy value.
*/
value& operator=(null_type null)
{
release();
return *this;
}
/**
* @brief Assign boolean value.
* @param boolean A boolean value to be set.
*/
value& operator=(boolean_type boolean)
{
release(TYPE_BOOLEAN);
new (&content.boolean) boolean_type(boolean);
return *this;
}
/**
* @brief Assign number value.
* @param number A number to be set.
*/
value& operator=(number_type number)
{
release(TYPE_NUMBER);
new (&content.number) number_type(number);
return *this;
}
/**
* @brief Assign number value by integer type.
* @param integer A integer number to be set.
*/
value& operator=(integer_type integer)
{
release(TYPE_INTEGER);
new (&content.integer) integer_type(integer);
return *this;
}
/**
* @brief Assign string value.
* @param string A string to be set.
*/
value& operator=(const string_type& string)
{
if (type == TYPE_STRING) {
content.string = string;
} else {
release(TYPE_STRING);
new (&content.string) string_type(string);
}
return *this;
}
/**
* @brief Assign string value from const char*
* @param string A string to be set.
*/
value& operator=(string_p_type string)
{
return (*this = string_type(string));
}
/**
* @brief Assign array value by deep copy.
* @param array An array to be set.
*/
value& operator=(std::initializer_list<value> array)
{
if (type == TYPE_ARRAY) {
content.array = array;
} else {
release(TYPE_ARRAY);
new (&content.array) array_type(array);
}
return *this;
}
/**
* @brief Assign object value by deep copy.
* @param object An object to be set.
*/
value& operator=(std::initializer_list<value::pair_type> elements)
{
if (type == TYPE_OBJECT) {
content.object = elements;
} else {
release(TYPE_OBJECT);
new (&content.object) object_type(elements);
}
return *this;
}
/*================================================================================
* Parse
*/
private:
template <impl::flags_type F>
friend class impl::parser;
friend impl::parser<0> operator>>(std::istream& istream, value& v);
/*================================================================================
* Stringify
*/
template <impl::flags_type F, impl::indent_type I>
friend class impl::stringifier;
friend impl::stringifier<0,0> operator<<(std::ostream& ostream, const value& v);
public:
template <class... T>
json_type stringify(T... args) const;
template <class... T>
json_type stringify5(T... args) const;
/*================================================================================
* Internal data structure
*/
private:
union content {
boolean_type boolean;
number_type number;
integer_type integer;
string_type string;
array_type array;
object_type object;
content() {}
content(boolean_type boolean) : boolean(boolean) {}
content(number_type number) : number(number) {}
content(integer_type integer) : integer(integer) {}
~content() {}
} content;
};
/**
* @brief Make JSON array
*
* @param elements An initializer list of elements
* @return JSON value object
*/
inline value array(std::initializer_list<value> elements)
{
value v;
v.release(value::TYPE_ARRAY);
new (&v.content.array) value::array_type(elements);
return v;
}
/**
* @brief Make JSON object
*
* @param elements An initializer list of key:value pairs
* @return JSON value object
*/
inline value object(std::initializer_list<value::pair_type> elements)
{
value v;
v.release(value::TYPE_OBJECT);
new (&v.content.object) value::object_type(elements);
return v;
}
namespace impl {
/**
* @brief Parser implementation
*
* @tparam F A combination of flags
*/
template <flags_type F>
class parser
{
private:
using self_type = parser<F>;
static constexpr auto M = flags::parse_mask;
public:
/**
* @brief Construct a new parser object
*
* @param istream An input stream
*/
parser(std::istream& istream) : istream(istream) {}
/**
* @brief Apply flag manipulator
*
* @tparam S Flags to be set
* @tparam C Flags to be cleared
* @param manip A manipulator
* @return An updated parser object
*/
template <flags_type S, flags_type C>
parser<((F&~C)|S)&M> operator>>(const manipulator_flags<S,C>& manip)
{
return parser<((F&~C)|S)&M>(istream);
}
/**
* @brief Apply indent manipulator (For parser, this is ignored)
*
* @tparam NI A new indent specification
* @param manip A manipulator
* @return A reference to self
*/
template <indent_type NI>
self_type& operator>>(const manipulator_indent<NI>& manip)
{
return *this;
}
/**
* @brief Delegate manipulator to std::istream
*
* @param manip A stream manipulator
* @return An input stream
*/
std::istream& operator>>(std::istream& (*manip)(std::istream&))
{
return istream >> manip;
}
/**
* @brief Delegate operator>> to std::istream
*
* @tparam T A typename of argument
* @param v A value
* @return An input stream
*/
template <class T>
std::istream& operator>>(T& v)
{
return istream >> v;
}
/**
* @brief Parse JSON
*
* @param v A value object to store parsed value
* @return A reference to self
*/
self_type& operator>>(value& v)
{
do_parse(v);
return *this;
}
private:
/**
* @brief Check if flag(s) enabled
*
* @param flags Combination of flags to be tested
* @retval true Any flag is enabled
* @retval False No flag is enabled
*/
static constexpr bool has_flag(flags_type flags)
{
return (F & flags) != 0;
}
/**
* @brief Skip spaces (and comments) from input stream
*
* @return the first non-space character
*/
int skip_spaces()
{
for (;;) {
int ch = istream.get();
reeval_space:
switch (ch) {
case '\t':
case '\n':
case '\r':
case ' ':
continue;
case '/':
if (has_flag(flags::single_line_comment | flags::multi_line_comment)) {
ch = istream.get();
if (has_flag(flags::single_line_comment) && (ch == '/')) {
// [single_line_comment] (JSON5)
for (;;) {
ch = istream.get();
if ((ch == std::char_traits<char>::eof()) || (ch == '\r') || (ch == '\n')) {
break;
}
}
goto reeval_space;
} else if (has_flag(flags::multi_line_comment) && (ch == '*')) {
// [multi_line_comment] (JSON5)
for (;;) {
ch = istream.get();
reeval_asterisk:
if (ch == std::char_traits<char>::eof()) {
throw syntax_error(ch, "comment");
}
if (ch != '*') {
continue;
}
ch = istream.get();
if (ch == '*') {
goto reeval_asterisk;
}
if (ch == '/') {
break;
}
}
continue;
}
// no valid comments
}
/* no-break */
default:
return ch;
} /* switch(ch) */
} /* for(;;) */
}
/**
* @brief Check if a character is a digit [0-9]
*
* @param ch Character code to test
* @retval true The character is a digit
* @retval false The character is not a digit
*/
static bool is_digit(int ch)
{
return (('0' <= ch) && (ch <= '9'));
}
/**
* @brief Check if a character is a hex digit [0-9A-Fa-f]
*
* @param ch Character code to test
* @retval true The character is a hex digit
* @retval false The character is not a hex digit
*/
static bool is_hex_digit(int ch) {
return (('0' <= ch) && (ch <= '9')) ||
(('A' <= ch) && (ch <= 'F')) ||
(('a' <= ch) && (ch <= 'f'));
}
/**
* @brief Convert a digit character [0-9] to number (0-9)
*
* @param ch Character code to convert
* @return A converted number (0-9)
*/
static int to_number(int ch)
{
return ch - '0';
}
/**
* @brief Convert a hexadecimal digit character [0-9A-Fa-f] to number (0-15)
*
* @param ch Character code to convert
* @return int A converted number (0-15)
*/
static int to_number_hex(int ch)
{
if (is_digit(ch)) {
return to_number(ch);
} else if (('A' <= ch) && (ch <= 'F')) {
return ch - 'A' + 10;
} else if (('a' <= ch) && (ch <= 'f')) {
return ch - 'a' + 10;
}
return -1;
}
/**
* @brief Check if a character is an alphabet
*
* @param ch
* @return true
* @return false
*/
static bool is_alpha(int ch)
{
return (('A' <= ch) && (ch <= 'Z')) || (('a' <= ch) && (ch <= 'z'));
}
/**
* @brief Check character sequence
*
* @tparam C A list of typenames of character
* @param ch A buffer to store latest character code
* @param expected The first expected character code
* @param sequence Successive expected character codes
* @retval true All characters match
* @return false Mismatch (ch holds a mismatched character)
*/
template <class... C>
bool equals(int& ch, char expected, C... sequence)
{
return equals(ch, expected) && equals(ch, sequence...);
}
bool equals(int& ch, char expected)
{
return ((ch = istream.get()) == expected);
}