forked from naturalog/tauchain
-
Notifications
You must be signed in to change notification settings - Fork 0
/
json_spirit.h
1601 lines (1252 loc) · 44.7 KB
/
json_spirit.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
#ifndef JSON_SPIRIT_VALUE
#define JSON_SPIRIT_VALUE
// Copyright John W. Wilkinson 2007 - 2014
// Distributed under the MIT License, see accompanying file LICENSE.txt
// json spirit version 4.08
#if defined(_MSC_VER) && (_MSC_VER >= 1020)
# pragma once
#endif
#include <vector>
#include <map>
#include <string>
#include <cassert>
#include <sstream>
#include <stdexcept>
#include <boost/config.hpp>
#include <boost/cstdint.hpp>
#include <boost/shared_ptr.hpp>
#include <boost/variant.hpp>
#include <boost/bind.hpp>
#include <boost/function.hpp>
#include <boost/version.hpp>
#if BOOST_VERSION >= 103800
#include <boost/spirit/include/classic_core.hpp>
#include <boost/spirit/include/classic_confix.hpp>
#include <boost/spirit/include/classic_escape_char.hpp>
#include <boost/spirit/include/classic_multi_pass.hpp>
#include <boost/spirit/include/classic_position_iterator.hpp>
#define spirit_namespace boost::spirit::classic
#else
#include <boost/spirit/core.hpp>
#include <boost/spirit/utility/confix.hpp>
#include <boost/spirit/utility/escape_char.hpp>
#include <boost/spirit/iterator/multi_pass.hpp>
#include <boost/spirit/iterator/position_iterator.hpp>
#define spirit_namespace boost::spirit
#endif
#include <cassert>
#include <sstream>
#include <iomanip>
#include <boost/io/ios_state.hpp>
// comment out the value types you don't need to reduce build times and intermediate file sizes
//#define JSON_SPIRIT_VALUE_ENABLED
//#define JSON_SPIRIT_WVALUE_ENABLED
//#define JSON_SPIRIT_MVALUE_ENABLED
#define JSON_SPIRIT_WMVALUE_ENABLED
namespace json_spirit {
enum Value_type { obj_type, array_type, str_type, bool_type, int_type, real_type, null_type };
static std::string value_type_to_string ( Value_type vtype );
struct Null {};
template<class Config> // Config determines whether the value uses std::string or std::wstring and
// whether JSON Objects are represented as vectors or maps
class Value_impl {
public:
typedef Config Config_type;
typedef typename Config::String_type String_type;
typedef typename Config::Object_type Object;
typedef typename Config::Array_type Array;
typedef typename String_type::const_pointer Const_str_ptr; // eg const char*
Value_impl(); // creates null value
Value_impl ( Const_str_ptr value );
Value_impl ( const String_type& value );
Value_impl ( const Object& value );
Value_impl ( const Array& value );
Value_impl ( bool value );
Value_impl ( int value );
Value_impl ( boost::int64_t value );
Value_impl ( boost::uint64_t value );
Value_impl ( double value );
template<class Iter>
Value_impl ( Iter first, Iter last ); // constructor from containers, e.g. std::vector or std::list
template<BOOST_VARIANT_ENUM_PARAMS ( typename T )>
Value_impl ( const boost::variant<BOOST_VARIANT_ENUM_PARAMS ( T )>& variant ); // constructor for compatible variant types
Value_impl ( const Value_impl& other );
bool operator== ( const Value_impl& lhs ) const;
Value_impl& operator= ( const Value_impl& lhs );
Value_type type() const;
bool is_uint64() const;
bool is_null() const;
const String_type& get_str() const;
const Object& get_obj() const;
const Array& get_array() const;
bool get_bool() const;
int get_int() const;
boost::int64_t get_int64() const;
boost::uint64_t get_uint64() const;
double get_real() const;
bool isMap() const {
return type() == obj_type;
}
bool isList() const {
return type() == array_type;
}
bool isString() const {
return type() == str_type;
}
bool isBoolean() const {
return type() == bool_type;
}
bool isInt() const {
return type() == int_type;
}
bool isDouble() const {
return type() == real_type;
}
bool isNumber() const {
return type() == int_type || type() == real_type || is_uint64();
}
Object& get_obj();
Array& get_array();
template<typename T> T get_value() const; // example usage: int i = value.get_value< int >();
// or double d = value.get_value< double >();
static const Value_impl null;
private:
void check_type ( const Value_type vtype ) const;
typedef boost::variant<boost::recursive_wrapper<Object>, boost::recursive_wrapper<Array>,
String_type, bool, boost::int64_t, double, Null, boost::uint64_t> Variant;
Variant v_;
class Variant_converter_visitor : public boost::static_visitor<Variant> {
public:
template<typename T, typename A, template<typename, typename> class Cont>
Variant operator() ( const Cont<T, A>& cont ) const {
return Array ( cont.begin(), cont.end() );
}
Variant operator() ( int i ) const {
return static_cast<boost::int64_t> ( i );
}
template<class T>
Variant operator() ( const T& t ) const {
return t;
}
};
};
// vector objects
template<class Config>
struct Pair_impl {
typedef typename Config::String_type String_type;
typedef typename Config::Value_type Value_type;
Pair_impl() {
}
Pair_impl ( const String_type& name, const Value_type& value );
bool operator== ( const Pair_impl& lhs ) const;
String_type name_;
Value_type value_;
};
#if defined( JSON_SPIRIT_VALUE_ENABLED ) || defined( JSON_SPIRIT_WVALUE_ENABLED )
template<class String>
struct Config_vector {
typedef String String_type;
typedef Value_impl<Config_vector> Value_type;
typedef Pair_impl <Config_vector> Pair_type;
typedef std::vector<Value_type> Array_type;
typedef std::vector<Pair_type> Object_type;
static Value_type& add ( Object_type& obj, const String_type& name, const Value_type& value ) {
obj.push_back ( Pair_type ( name , value ) );
return obj.back().value_;
}
static const String_type& get_name ( const Pair_type& pair ) {
return pair.name_;
}
static const Value_type& get_value ( const Pair_type& pair ) {
return pair.value_;
}
};
#endif
// typedefs for ASCII
#ifdef JSON_SPIRIT_VALUE_ENABLED
typedef Config_vector<std::string> Config;
typedef Config::Value_type Value;
typedef Config::Pair_type Pair;
typedef Config::Object_type Object;
typedef Config::Array_type Array;
#endif
// typedefs for Unicode
#if defined( JSON_SPIRIT_WVALUE_ENABLED ) && !defined( BOOST_NO_STD_WSTRING )
typedef Config_vector<std::wstring> wConfig;
typedef wConfig::Value_type wValue;
typedef wConfig::Pair_type wPair;
typedef wConfig::Object_type wObject;
typedef wConfig::Array_type wArray;
#endif
// map objects
#if defined( JSON_SPIRIT_MVALUE_ENABLED ) || defined( JSON_SPIRIT_WMVALUE_ENABLED )
template<class String>
struct Config_map {
typedef String String_type;
typedef Value_impl<Config_map> Value_type;
typedef std::vector<Value_type> Array_type;
typedef std::map<String_type, Value_type> Object_type;
typedef std::pair<const String_type, Value_type> Pair_type;
static Value_type& add ( Object_type& obj, const String_type& name, const Value_type& value ) {
return obj[ name ] = value;
}
static const String_type& get_name ( const Pair_type& pair ) {
return pair.first;
}
static const Value_type& get_value ( const Pair_type& pair ) {
return pair.second;
}
};
#endif
// typedefs for ASCII
#ifdef JSON_SPIRIT_MVALUE_ENABLED
typedef Config_map<std::string> mConfig;
typedef mConfig::Value_type mValue;
typedef mConfig::Object_type mObject;
typedef mConfig::Array_type mArray;
#endif
// typedefs for Unicode
#if defined( JSON_SPIRIT_WMVALUE_ENABLED ) && !defined( BOOST_NO_STD_WSTRING )
typedef Config_map<std::wstring> wmConfig;
typedef wmConfig::Value_type wmValue;
typedef wmConfig::Object_type wmObject;
typedef wmConfig::Array_type wmArray;
#endif
///////////////////////////////////////////////////////////////////////////////////////////////
//
// implementation
inline bool operator== ( const Null&, const Null& ) {
return true;
}
template<class Config>
const Value_impl<Config> Value_impl<Config>::null;
template<class Config>
Value_impl<Config>::Value_impl()
: v_ ( Null() ) {
}
template<class Config>
Value_impl<Config>::Value_impl ( const Const_str_ptr value )
: v_ ( String_type ( value ) ) {
}
template<class Config>
Value_impl<Config>::Value_impl ( const String_type& value )
: v_ ( value ) {
}
template<class Config>
Value_impl<Config>::Value_impl ( const Object& value )
: v_ ( value ) {
}
template<class Config>
Value_impl<Config>::Value_impl ( const Array& value )
: v_ ( value ) {
}
template<class Config>
Value_impl<Config>::Value_impl ( bool value )
: v_ ( value ) {
}
template<class Config>
Value_impl<Config>::Value_impl ( int value )
: v_ ( static_cast<boost::int64_t> ( value ) ) {
}
template<class Config>
Value_impl<Config>::Value_impl ( boost::int64_t value )
: v_ ( value ) {
}
template<class Config>
Value_impl<Config>::Value_impl ( boost::uint64_t value )
: v_ ( value ) {
}
template<class Config>
Value_impl<Config>::Value_impl ( double value )
: v_ ( value ) {
}
template<class Config>
Value_impl<Config>::Value_impl ( const Value_impl<Config>& other )
: v_ ( other.v_ ) {
}
template<class Config>
template<class Iter>
Value_impl<Config>::Value_impl ( Iter first, Iter last )
: v_ ( Array ( first, last ) ) {
}
template<class Config>
template<BOOST_VARIANT_ENUM_PARAMS ( typename T )>
Value_impl<Config>::Value_impl ( const boost::variant<BOOST_VARIANT_ENUM_PARAMS ( T )>& variant )
: v_ ( boost::apply_visitor ( Variant_converter_visitor(), variant ) ) {
}
template<class Config>
Value_impl<Config>& Value_impl<Config>::operator= ( const Value_impl& lhs ) {
Value_impl tmp ( lhs );
std::swap ( v_, tmp.v_ );
return *this;
}
template<class Config>
bool Value_impl<Config>::operator== ( const Value_impl& lhs ) const {
if ( this == &lhs ) return true;
if ( type() != lhs.type() ) return false;
return v_ == lhs.v_;
}
template<class Config>
Value_type Value_impl<Config>::type() const {
if ( is_uint64() )
return int_type;
return static_cast<Value_type> ( v_.which() );
}
template<class Config>
bool Value_impl<Config>::is_uint64() const {
return v_.which() == null_type + 1;
}
template<class Config>
bool Value_impl<Config>::is_null() const {
return type() == null_type;
}
template<class Config>
void Value_impl<Config>::check_type ( const Value_type vtype ) const {
if ( type() != vtype ) {
std::ostringstream os;
os << "get_value< " << value_type_to_string ( vtype ) << " > called on " << value_type_to_string ( type() ) << " Value";
throw std::runtime_error ( os.str() );
}
}
template<class Config>
const typename Config::String_type& Value_impl<Config>::get_str() const {
check_type ( str_type );
return *boost::get<String_type> ( &v_ );
}
template<class Config>
const typename Value_impl<Config>::Object& Value_impl<Config>::get_obj() const {
check_type ( obj_type );
return *boost::get<Object> ( &v_ );
}
template<class Config>
const typename Value_impl<Config>::Array& Value_impl<Config>::get_array() const {
check_type ( array_type );
return *boost::get<Array> ( &v_ );
}
template<class Config>
bool Value_impl<Config>::get_bool() const {
check_type ( bool_type );
return boost::get<bool> ( v_ );
}
template<class Config>
int Value_impl<Config>::get_int() const {
check_type ( int_type );
return static_cast<int> ( get_int64() );
}
template<class Config>
boost::int64_t Value_impl<Config>::get_int64() const {
check_type ( int_type );
if ( is_uint64() )
return static_cast<boost::int64_t> ( get_uint64() );
return boost::get<boost::int64_t> ( v_ );
}
template<class Config>
boost::uint64_t Value_impl<Config>::get_uint64() const {
check_type ( int_type );
if ( !is_uint64() )
return static_cast<boost::uint64_t> ( get_int64() );
return boost::get<boost::uint64_t> ( v_ );
}
template<class Config>
double Value_impl<Config>::get_real() const {
if ( type() == int_type ) {
return is_uint64() ? static_cast<double> ( get_uint64() )
: static_cast<double> ( get_int64() );
}
check_type ( real_type );
return boost::get<double> ( v_ );
}
template<class Config>
typename Value_impl<Config>::Object& Value_impl<Config>::get_obj() {
check_type ( obj_type );
return *boost::get<Object> ( &v_ );
}
template<class Config>
typename Value_impl<Config>::Array& Value_impl<Config>::get_array() {
check_type ( array_type );
return *boost::get<Array> ( &v_ );
}
template<class Config>
Pair_impl<Config>::Pair_impl ( const String_type& name, const Value_type& value )
: name_ ( name )
, value_ ( value ) {
}
template<class Config>
bool Pair_impl<Config>::operator== ( const Pair_impl<Config>& lhs ) const {
if ( this == &lhs ) return true;
return ( name_ == lhs.name_ ) && ( value_ == lhs.value_ );
}
// converts a C string, ie. 8 bit char array, to a string object
//
template <class String_type>
String_type to_str ( const char* c_str ) {
String_type result;
for ( const char* p = c_str; *p != 0; ++p )
result += *p;
return result;
}
//
namespace internal_ {
template<typename T>
struct Type_to_type {
};
template<class Value>
int get_value ( const Value& value, Type_to_type<int> ) {
return value.get_int();
}
template<class Value>
boost::int64_t get_value ( const Value& value, Type_to_type<boost::int64_t> ) {
return value.get_int64();
}
template<class Value>
boost::uint64_t get_value ( const Value& value, Type_to_type<boost::uint64_t> ) {
return value.get_uint64();
}
template<class Value>
double get_value ( const Value& value, Type_to_type<double> ) {
return value.get_real();
}
template<class Value>
typename Value::String_type get_value ( const Value& value, Type_to_type<typename Value::String_type> ) {
return value.get_str();
}
template<class Value>
typename Value::Array get_value ( const Value& value, Type_to_type<typename Value::Array> ) {
return value.get_array();
}
template<class Value>
typename Value::Object get_value ( const Value& value, Type_to_type<typename Value::Object> ) {
return value.get_obj();
}
template<class Value>
bool get_value ( const Value& value, Type_to_type<bool> ) {
return value.get_bool();
}
}
template<class Config>
template<typename T>
T Value_impl<Config>::get_value() const {
return internal_::get_value ( *this, internal_::Type_to_type<T>() );
}
static inline std::string value_type_to_string ( const Value_type vtype ) {
switch ( vtype ) {
case obj_type:
return "Object";
case array_type:
return "Array";
case str_type:
return "string";
case bool_type:
return "boolean";
case int_type:
return "integer";
case real_type:
return "real";
case null_type:
return "null";
}
assert ( false );
return "unknown type";
}
// An Error_position exception is thrown by the "read_or_throw" functions below on finding an error.
// Note the "read_or_throw" functions are around 3 times slower than the standard functions "read"
// functions that return a bool.
//
struct Error_position {
Error_position();
Error_position ( unsigned int line, unsigned int column, const std::string& reason );
bool operator== ( const Error_position& lhs ) const;
unsigned int line_;
unsigned int column_;
std::string reason_;
};
inline Error_position::Error_position()
: line_ ( 0 )
, column_ ( 0 ) {
}
inline Error_position::Error_position ( unsigned int line, unsigned int column, const std::string& reason )
: line_ ( line )
, column_ ( column )
, reason_ ( reason ) {
}
inline bool Error_position::operator== ( const Error_position& lhs ) const {
if ( this == &lhs ) return true;
return ( reason_ == lhs.reason_ ) &&
( line_ == lhs.line_ ) &&
( column_ == lhs.column_ );
}
template<class Obj_t, class Map_t>
void obj_to_map ( const Obj_t& obj, Map_t& mp_obj ) {
mp_obj.clear();
for ( typename Obj_t::const_iterator i = obj.begin(); i != obj.end(); ++i )
mp_obj[ i->name_ ] = i->value_;
}
template<class Obj_t, class Map_t>
void map_to_obj ( const Map_t& mp_obj, Obj_t& obj ) {
obj.clear();
for ( typename Map_t::const_iterator i = mp_obj.begin(); i != mp_obj.end(); ++i )
obj.push_back ( typename Obj_t::value_type ( i->first, i->second ) );
}
#ifdef JSON_SPIRIT_VALUE_ENABLED
typedef std::map<std::string, Value> Mapped_obj;
#endif
#if defined( JSON_SPIRIT_WVALUE_ENABLED ) && !defined( BOOST_NO_STD_WSTRING )
typedef std::map<std::wstring, wValue> wMapped_obj;
#endif
template<class Object_type, class String_type>
const typename Object_type::value_type::Value_type& find_value ( const Object_type& obj, const String_type& name ) {
for ( typename Object_type::const_iterator i = obj.begin(); i != obj.end(); ++i ) {
if ( i->name_ == name )
return i->value_;
}
return Object_type::value_type::Value_type::null;
}
const spirit_namespace::int_parser <boost::int64_t> int64_p = spirit_namespace::int_parser <boost::int64_t>();
const spirit_namespace::uint_parser<boost::uint64_t> uint64_p = spirit_namespace::uint_parser<boost::uint64_t>();
template<class Iter_type>
bool is_eq ( Iter_type first, Iter_type last, const char* c_str ) {
for ( Iter_type i = first; i != last; ++i, ++c_str ) {
if ( *c_str == 0 ) return false;
if ( *i != *c_str ) return false;
}
return true;
}
template<class Char_type>
Char_type hex_to_num ( const Char_type c ) {
if ( ( c >= '0' ) && ( c <= '9' ) ) return c - '0';
if ( ( c >= 'a' ) && ( c <= 'f' ) ) return c - 'a' + 10;
if ( ( c >= 'A' ) && ( c <= 'F' ) ) return c - 'A' + 10;
return 0;
}
template<class Char_type, class Iter_type>
Char_type hex_str_to_char ( Iter_type& begin ) {
const Char_type c1 ( * ( ++begin ) );
const Char_type c2 ( * ( ++begin ) );
return ( hex_to_num ( c1 ) << 4 ) + hex_to_num ( c2 );
}
template<class Char_type, class Iter_type>
Char_type unicode_str_to_char ( Iter_type& begin ) {
const Char_type c1 ( * ( ++begin ) );
const Char_type c2 ( * ( ++begin ) );
const Char_type c3 ( * ( ++begin ) );
const Char_type c4 ( * ( ++begin ) );
return ( hex_to_num ( c1 ) << 12 ) +
( hex_to_num ( c2 ) << 8 ) +
( hex_to_num ( c3 ) << 4 ) +
hex_to_num ( c4 );
}
template<class String_type>
void append_esc_char_and_incr_iter ( String_type& s,
typename String_type::const_iterator& begin,
typename String_type::const_iterator end ) {
typedef typename String_type::value_type Char_type;
const Char_type c2 ( *begin );
switch ( c2 ) {
case 't':
s += '\t';
break;
case 'b':
s += '\b';
break;
case 'f':
s += '\f';
break;
case 'n':
s += '\n';
break;
case 'r':
s += '\r';
break;
case '\\':
s += '\\';
break;
case '/':
s += '/';
break;
case '"':
s += '"';
break;
case 'x': {
if ( end - begin >= 3 ) // expecting "xHH..."
s += hex_str_to_char<Char_type> ( begin );
break;
}
case 'u': {
if ( end - begin >= 5 ) // expecting "uHHHH..."
s += unicode_str_to_char<Char_type> ( begin );
break;
}
}
}
template<class String_type>
String_type substitute_esc_chars ( typename String_type::const_iterator begin,
typename String_type::const_iterator end ) {
typedef typename String_type::const_iterator Iter_type;
if ( end - begin < 2 ) return String_type ( begin, end );
String_type result;
result.reserve ( end - begin );
const Iter_type end_minus_1 ( end - 1 );
Iter_type substr_start = begin;
Iter_type i = begin;
for ( ; i < end_minus_1; ++i ) {
if ( *i == '\\' ) {
result.append ( substr_start, i );
++i; // skip the '\'
append_esc_char_and_incr_iter ( result, i, end );
substr_start = i + 1;
}
}
result.append ( substr_start, end );
return result;
}
template<class String_type>
String_type get_str_ ( typename String_type::const_iterator begin,
typename String_type::const_iterator end ) {
assert ( end - begin >= 2 );
typedef typename String_type::const_iterator Iter_type;
Iter_type str_without_quotes ( ++begin );
Iter_type end_without_quotes ( --end );
return substitute_esc_chars<String_type> ( str_without_quotes, end_without_quotes );
}
inline std::string get_str ( std::string::const_iterator begin, std::string::const_iterator end ) {
return get_str_<std::string> ( begin, end );
}
inline std::wstring get_str ( std::wstring::const_iterator begin, std::wstring::const_iterator end ) {
return get_str_<std::wstring> ( begin, end );
}
template<class String_type, class Iter_type>
String_type get_str ( Iter_type begin, Iter_type end ) {
const String_type tmp ( begin, end ); // convert multipass iterators to string iterators
return get_str ( tmp.begin(), tmp.end() );
}
// this class's methods get called by the spirit parse resulting
// in the creation of a JSON object or array
//
// NB Iter_type could be a std::string iterator, wstring iterator, a position iterator or a multipass iterator
//
template<class Value_type, class Iter_type>
class Semantic_actions {
public:
typedef typename Value_type::Config_type Config_type;
typedef typename Config_type::String_type String_type;
typedef typename Config_type::Object_type Object_type;
typedef typename Config_type::Array_type Array_type;
typedef typename String_type::value_type Char_type;
Semantic_actions ( Value_type& value )
: value_ ( value )
, current_p_ ( 0 ) {
}
void begin_obj ( Char_type c ) {
assert ( c == '{' );
begin_compound<Object_type>();
}
void end_obj ( Char_type c ) {
assert ( c == '}' );
end_compound();
}
void begin_array ( Char_type c ) {
assert ( c == '[' );
begin_compound<Array_type>();
}
void end_array ( Char_type c ) {
assert ( c == ']' );
end_compound();
}
void new_name ( Iter_type begin, Iter_type end ) {
assert ( current_p_->type() == obj_type );
name_ = get_str<String_type> ( begin, end );
}
void new_str ( Iter_type begin, Iter_type end ) {
add_to_current ( get_str<String_type> ( begin, end ) );
}
void new_true ( Iter_type begin, Iter_type end ) {
assert ( is_eq ( begin, end, "true" ) );
add_to_current ( true );
}
void new_false ( Iter_type begin, Iter_type end ) {
assert ( is_eq ( begin, end, "false" ) );
add_to_current ( false );
}
void new_null ( Iter_type begin, Iter_type end ) {
assert ( is_eq ( begin, end, "null" ) );
add_to_current ( Value_type() );
}
void new_int ( boost::int64_t i ) {
add_to_current ( i );
}
void new_uint64 ( boost::uint64_t ui ) {
add_to_current ( ui );
}
void new_real ( double d ) {
add_to_current ( d );
}
private:
Semantic_actions& operator= ( const Semantic_actions& );
// to prevent "assignment operator could not be generated" warning
Value_type* add_first ( const Value_type& value ) {
assert ( current_p_ == 0 );
value_ = value;
current_p_ = &value_;
return current_p_;
}
template<class Array_or_obj>
void begin_compound() {
if ( current_p_ == 0 )
add_first ( Array_or_obj() );
else {
stack_.push_back ( current_p_ );
Array_or_obj new_array_or_obj; // avoid copy by building new array or object in place
current_p_ = add_to_current ( new_array_or_obj );
}
}
void end_compound() {
if ( current_p_ != &value_ ) {
current_p_ = stack_.back();
stack_.pop_back();
}
}
Value_type* add_to_current ( const Value_type& value ) {
if ( current_p_ == 0 )
return add_first ( value );
else if ( current_p_->type() == array_type ) {
current_p_->get_array().push_back ( value );
return ¤t_p_->get_array().back();
}
assert ( current_p_->type() == obj_type );
return &Config_type::add ( current_p_->get_obj(), name_, value );
}
Value_type& value_; // this is the object or array that is being created
Value_type* current_p_; // the child object or array that is currently being constructed
std::vector<Value_type*> stack_; // previous child objects and arrays
String_type name_; // of current name/value pair
};
template<typename Iter_type>
void throw_error ( spirit_namespace::position_iterator<Iter_type> i, const std::string& reason ) {
throw Error_position ( i.get_position().line, i.get_position().column, reason );
}
template<typename Iter_type>
void throw_error ( Iter_type, const std::string& reason ) {
throw reason;
}
// the spirit grammer
//
template<class Value_type, class Iter_type>
class Json_grammer : public spirit_namespace::grammar<Json_grammer<Value_type, Iter_type>> {
public:
typedef Semantic_actions<Value_type, Iter_type> Semantic_actions_t;
Json_grammer ( Semantic_actions_t& semantic_actions )
: actions_ ( semantic_actions ) {
}
static void throw_not_value ( Iter_type begin, Iter_type ) {
throw_error ( begin, "not a value" );
}
static void throw_not_array ( Iter_type begin, Iter_type ) {
throw_error ( begin, "not an array" );
}
static void throw_not_object ( Iter_type begin, Iter_type ) {
throw_error ( begin, "not an object" );
}
static void throw_not_pair ( Iter_type begin, Iter_type ) {
throw_error ( begin, "not a pair" );
}
static void throw_not_colon ( Iter_type begin, Iter_type ) {
throw_error ( begin, "no colon in pair" );
}
static void throw_not_string ( Iter_type begin, Iter_type ) {
throw_error ( begin, "not a string" );
}
template<typename ScannerT>
class definition {
public:
definition ( const Json_grammer& self ) {
using namespace spirit_namespace;
typedef typename Value_type::String_type::value_type Char_type;
// first we convert the semantic action class methods to functors with the
// parameter signature expected by spirit
typedef boost::function<void ( Char_type )> Char_action;
typedef boost::function<void ( Iter_type, Iter_type )> Str_action;