forked from artyom-beilis/cppcms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjson.cpp
More file actions
1346 lines (1234 loc) · 28.1 KB
/
json.cpp
File metadata and controls
1346 lines (1234 loc) · 28.1 KB
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
///////////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2008-2012 Artyom Beilis (Tonkikh) <artyomtnk@yahoo.com>
//
// See accompanying file COPYING.TXT file for licensing details.
//
///////////////////////////////////////////////////////////////////////////////
#define CPPCMS_SOURCE
#include <cppcms/json.h>
#include <sstream>
#include <stdio.h>
#include <typeinfo>
#include <algorithm>
#include <iostream>
#include <locale>
#include <limits>
#include <iomanip>
#include <stdexcept>
#include <stack>
#include "utf_iterator.h"
namespace cppcms {
namespace json {
static const size_t json_max_depth = 512;
bad_value_cast::bad_value_cast() : msg_("cppcms::json::bad_cast")
{
}
bad_value_cast::bad_value_cast(std::string const &s) : msg_("cppcms::json::bad_cast: "+s )
{
}
bad_value_cast::bad_value_cast(std::string const &s,json_type actual) :
msg_("cppcms::json::bad_cast: " + s)
{
std::ostringstream msg;
msg<<" error converting from "<<actual;
msg_ +=msg.str();
}
bad_value_cast::bad_value_cast(std::string const &s,json_type expected, json_type actual) :
msg_("cppcms::json::bad_cast: " + s)
{
std::ostringstream msg;
msg<<" error converting from "<<actual<<" to "<<expected;
msg_ +=msg.str();
}
bad_value_cast::~bad_value_cast() throw()
{
}
const char* bad_value_cast::what() const throw()
{
return msg_.c_str();
}
template<typename T>
struct json_type_traits;
template<>
struct json_type_traits<undefined> { static const json_type type=is_undefined; };
template<>
struct json_type_traits<null> { static const json_type type=is_null; };
template<>
struct json_type_traits<bool> { static const json_type type=is_boolean; };
template<>
struct json_type_traits<double> { static const json_type type=is_number; };
template<>
struct json_type_traits<array> { static const json_type type=is_array; };
template<>
struct json_type_traits<object> { static const json_type type=is_object; };
template<>
struct json_type_traits<std::string> { static const json_type type=is_string; };
template<json_type t>
struct cpp_type_traits;
template<> struct cpp_type_traits<is_boolean> { typedef bool type; };
template<> struct cpp_type_traits<is_number> { typedef double type; };
template<> struct cpp_type_traits<is_string> { typedef std::string type; };
template<> struct cpp_type_traits<is_array> { typedef array type; };
template<> struct cpp_type_traits<is_object> { typedef object type; };
class variant {
public:
union memory {
void *p;
bool bv;
double dv;
char s[sizeof(std::string)];
char a[sizeof(json::array)];
char o[sizeof(json::object)];
} m;
void *ptr()
{
return static_cast<void *>(&m);
}
void const *ptr() const
{
return static_cast<void const *>(&m);
}
json_type which() const
{
return type;
}
json_type type;
bool operator==(variant const &other) const
{
if(type != other.type)
return false;
switch(type) {
case is_boolean:
return get<bool>() == other.get<bool>();
case is_number:
return get<double>() == other.get<double>();
case is_string:
return get<std::string>() == other.get<std::string>();
case is_object:
return get<object>() == other.get<object>();
case is_array:
return get<array>() == other.get<array>();
default:
return true;
}
}
variant()
{
create(is_undefined);
}
~variant()
{
destroy();
}
variant(variant const &other)
{
create(other.type,other.m);
}
variant &operator=(variant const &other)
{
if(this!=&other) {
destroy();
create(other.type,other.m);
}
return *this;
}
template<typename T>
T &get()
{
json_type expected = json_type_traits<T>::type;
if(expected != type)
throw bad_value_cast("invalid type",expected,type);
switch(type) {
case is_undefined:
case is_null:
throw bad_value_cast("non-fetchable type",type);
default:
return *static_cast<T *>(ptr());
}
}
template<typename T>
T const &get() const
{
json_type expected = json_type_traits<T>::type;
if(expected != type)
throw bad_value_cast("invalid type",expected,type);
switch(type) {
case is_undefined:
case is_null:
throw bad_value_cast("non-fetchable type",type);
default:
return *static_cast<T const *>(ptr());
}
}
template<typename T>
variant(T const &v)
{
create<T>(v);
}
template<typename T>
variant &operator=(T const &other)
{
destroy();
create<T>(other);
return *this;
}
template<typename T>
void create(T const &v)
{
void *p=ptr();
type = json_type_traits<T>::type;
switch(type) {
case is_undefined:
case is_null:
case is_boolean:
case is_number:
memcpy(&m,&v,sizeof(T));
break;
case is_string:
new(p) std::string(reinterpret_cast<std::string const &>(v));
break;
case is_object:
new(p) object(reinterpret_cast<object const &>(v));
break;
case is_array:
new(p) array(reinterpret_cast<array const &>(v));
break;
}
}
void create(json_type t)
{
type = t;
memset(ptr(),0,sizeof(m));
switch(type) {
case is_undefined:
case is_null:
case is_boolean:
case is_number:
break;
case is_string:
new(ptr()) std::string();
break;
case is_object:
new(ptr()) object();
break;
case is_array:
new(ptr()) array();
break;
}
}
void create(json_type t,memory const &other)
{
void *p=&m;
type = t;
switch(t) {
case is_undefined:
case is_null:
case is_boolean:
case is_number:
memcpy(&m,&other,sizeof(m));
break;
case is_string:
new(p) std::string(reinterpret_cast<std::string const &>(other));
break;
case is_object:
new(p) object(reinterpret_cast<object const &>(other));
break;
case is_array:
new(p) array(reinterpret_cast<array const &>(other));
break;
}
}
void destroy()
{
typedef std::string string_type;
switch(type) {
case is_undefined:
case is_null:
case is_boolean:
case is_number:
break;
case is_string:
static_cast<string_type *>(ptr())->~string_type();
break;
case is_object:
static_cast<object *>(ptr())->~object();
break;
case is_array:
static_cast<array *>(ptr())->~array();
break;
}
memset(&m,0,sizeof(m));
}
};
typedef variant variant_type;
struct value::_data {
public:
variant_type &value()
{
return value_;
}
variant_type const &value() const
{
return value_;
}
private:
variant_type value_;
};
using namespace std;
value::copyable::copyable() :
d(new value::_data())
{
}
value::copyable::~copyable()
{
}
value::copyable::copyable(copyable const &r) :
d(r.d)
{
}
value::copyable const &value::copyable::operator=(value::copyable const &r)
{
if(&r!=this)
d=r.d;
return *this;
}
double const &value::number() const
{
return d->value().get<double>();
}
bool const &value::boolean() const
{
return d->value().get<bool>();
}
std::string const &value::str() const
{
return d->value().get<std::string>();
}
json::object const &value::object() const
{
return d->value().get<json::object>();
}
json::array const &value::array() const
{
return d->value().get<json::array>();
}
double &value::number()
{
return d->value().get<double>();
}
bool &value::boolean()
{
return d->value().get<bool>();
}
std::string &value::str()
{
return d->value().get<std::string>();
}
json::object &value::object()
{
return d->value().get<json::object>();
}
json::array &value::array()
{
return d->value().get<json::array>();
}
bool value::is_undefined() const
{
return d->value().which()==json::is_undefined;
}
bool value::is_null() const
{
return d->value().which()==json::is_null;
}
void value::undefined()
{
d->value()=json::undefined();
}
void value::null()
{
d->value()=json::null();
}
void value::boolean(bool x)
{
d->value()=x;
}
void value::number(double x)
{
d->value()=x;
}
void value::str(std::string const &x)
{
d->value()=x;
}
void value::object(json::object const &x)
{
d->value()=x;
}
void value::array(json::array const &x)
{
d->value()=x;
}
json_type value::type() const
{
return d->value().which();
}
namespace details {
template<typename Appender>
void generic_append(char const *begin,char const *end,Appender &a)
{
a.append('"');
char const *i,*last;
char buf[8] = "\\u00";
for(i=begin,last = begin;i!=end;) {
char const *addon = 0;
unsigned char c=*i;
switch(c) {
case 0x22: addon = "\\\""; break;
case 0x5C: addon = "\\\\"; break;
case '\b': addon = "\\b"; break;
case '\f': addon = "\\f"; break;
case '\n': addon = "\\n"; break;
case '\r': addon = "\\r"; break;
case '\t': addon = "\\t"; break;
default:
if(c<=0x1F) {
static char const tohex[]="0123456789abcdef";
buf[4]=tohex[c >> 4];
buf[5]=tohex[c & 0xF];
buf[6]=0;
addon = buf;
}
};
if(addon) {
a.append(last,i-last);
a.append(addon);
i++;
last = i;
}
else {
i++;
}
}
a.append(last,i-last);
a.append('"');
}
struct string_append {
std::string *out;
void append(char c) { *out += c; }
void append(char const *s,size_t n) { out->append(s,n); }
void append(char const *s) { out->append(s); }
};
struct stream_append {
std::ostream *out;
void append(char c) { *out << c; }
void append(char const *s,size_t n) { out->write(s,n); }
void append(char const *s) { *out << s; }
};
}
std::string CPPCMS_API to_json(char const *begin,char const *end)
{
std::string result;
result.reserve(end-begin + 2);
details::string_append ap = { &result };
details::generic_append(begin,end,ap);
return result;
}
std::string CPPCMS_API to_json(std::string const &s)
{
return to_json(s.c_str(),s.c_str()+s.size());
}
void CPPCMS_API to_json(char const *begin,char const *end,std::ostream &out)
{
details::stream_append ap = { &out };
details::generic_append(begin,end,ap);
}
void CPPCMS_API to_json(std::string const &str,std::ostream &out)
{
to_json(str.c_str(),str.c_str()+str.size(),out);
}
namespace {
void pad(std::ostream &out,int tb)
{
for(;tb > 0;tb--) out<<'\t';
}
void indent(std::ostream &out,char c,int &tabs)
{
if(tabs < 0) {
out<<c;
return;
}
switch(c) {
case '{':
case '[':
out<<c<<'\n';
tabs++;
pad(out,tabs);
break;
case ',':
out<<c<<'\n';
pad(out,tabs);
break;
case ':':
out<<" :\t";
break;
case '}':
case ']':
out<<'\n';
tabs--;
pad(out,tabs);
out<<c<<'\n';
pad(out,tabs);
break;
}
}
} // namespace anonymous
void value::write(std::ostream &out,int tabs) const
{
std::locale original(out.getloc());
out.imbue(std::locale("C"));
try {
write_value(out,tabs);
}
catch(...) {
out.imbue(original);
throw;
}
out.imbue(original);
}
void value::write_value(std::ostream &out,int tabs) const
{
switch(type()) {
case json::is_undefined:
throw bad_value_cast("Can't write undefined value to stream");
case json::is_null:
out<<"null";
break;
case json::is_number:
out<<std::setprecision(std::numeric_limits<double>::digits10+1)<<number();
break;
case json::is_string:
to_json(str(),out);
break;
case json::is_boolean:
out<< (boolean() ? "true" : "false") ;
break;
case json::is_array:
{
json::array const &a=array();
unsigned i;
indent(out,'[',tabs);
for(i=0;i<a.size();) {
a[i].write_value(out,tabs);
i++;
if(i<a.size())
indent(out,',',tabs);
}
indent(out,']',tabs);
}
break;
case json::is_object:
{
json::object const &obj=object();
object::const_iterator p,end;
p=obj.begin();
end=obj.end();
indent(out,'{',tabs);
while(p!=end) {
to_json(p->first.begin(),p->first.end(),out);
indent(out,':',tabs);
p->second.write_value(out,tabs);
++p;
if(p!=end)
indent(out,',',tabs);
}
indent(out,'}',tabs);
}
break;
default:
throw bad_value_cast("Unknown type found: internal error");
}
}
void value::save(std::ostream &out,int how) const
{
int tabs=(how & readable) ? 0 : -1;
write(out,tabs);
}
std::string value::save(int how) const
{
std::ostringstream ss;
int tabs=(how & readable) ? 0 : -1;
write(ss,tabs);
return ss.str();
}
std::ostream &operator<<(std::ostream &out,value const &v)
{
v.save(out);
return out;
}
bool value::operator==(value const &other) const
{
return d->value()==other.d->value();
}
bool value::operator!=(value const &other) const
{
return !(*this==other);
}
// returns empty if not found
value const &value::find(char const *cpath) const
{
string_key path=string_key::unowned(cpath);
static value const empty;
value const *ptr=this;
size_t pos=0;
size_t new_pos;
do {
new_pos=path.find('.',pos);
string_key const part=path.unowned_substr(pos,new_pos - pos);
if(new_pos!=std::string::npos)
new_pos++;
if(part.empty())
return empty;
if(ptr->type()!=json::is_object)
return empty;
json::object const &obj=ptr->object();
json::object::const_iterator p;
if((p=obj.find(part))==obj.end())
return empty;
ptr=&p->second;
pos=new_pos;
} while(new_pos < path.size());
return *ptr;
}
// returns empty if not found
value const &value::find(std::string const &path) const
{
return find(path.c_str());
}
// throws if not found
value const &value::at(std::string const &path) const
{
return at(path.c_str());
}
value const &value::at(char const *path) const
{
value const &v=find(path);
if(v.is_undefined())
throw bad_value_cast(std::string("Value not found at ")+path );
return v;
}
value &value::at(std::string const &path)
{
return at(path.c_str());
}
value &value::at(char const *cpath)
{
string_key path=string_key::unowned(cpath);
value *ptr=this;
size_t pos=0;
size_t new_pos;
do {
new_pos=path.find('.',pos);
string_key part=path.unowned_substr(pos,new_pos - pos);
if(new_pos!=std::string::npos)
new_pos++;
if(part.empty())
throw bad_value_cast("Invalid path provided");
if(ptr->type()!=json::is_object)
throw bad_value_cast("",ptr->type(),json::is_object);
json::object &obj=ptr->object();
json::object::iterator p;
if((p=obj.find(part))==obj.end())
throw bad_value_cast("Member "+part.str()+" not found");
ptr=&p->second;
pos=new_pos;
} while(new_pos < path.size());
return *ptr;
}
void value::at(std::string const &path,value const &v)
{
at(path.c_str(),v);
}
void value::at(char const *cpath,value const &v)
{
string_key path=string_key::unowned(cpath);
value *ptr=this;
size_t pos=0;
size_t new_pos;
do {
new_pos=path.find('.',pos);
string_key part=path.unowned_substr(pos,new_pos - pos);
if(new_pos!=std::string::npos)
new_pos++;
if(part.empty())
throw bad_value_cast("Invalid path provided");
if(ptr->type()!=json::is_object) {
*ptr=json::object();
}
json::object &obj=ptr->object();
json::object::iterator p;
if((p=obj.find(part))==obj.end()) {
ptr=&obj.insert(std::make_pair(part.str(),json::value())).first->second;
}
else
ptr=&p->second;
pos=new_pos;
} while(new_pos < path.size());
*ptr=v;
}
value &value::operator[](std::string const &name)
{
if(type()!=json::is_object)
set_value(json::object());
json::object &self=object();
json::object::iterator p=self.find(string_key::unowned(name));
if(p==self.end())
return self.insert(std::make_pair(name,value())).first->second;
return p->second;
}
value const &value::operator[](std::string const &name) const
{
if(type()!=json::is_object)
throw bad_value_cast("",type(),json::is_object);
json::object const &self=object();
json::object::const_iterator p=self.find(string_key::unowned(name));
if(p==self.end())
throw bad_value_cast("Member "+name+" not found");
return p->second;
}
value &value::operator[](size_t n)
{
if(type()!=json::is_array)
set_value(json::array());
json::array &self=array();
if(n>=self.size())
self.resize(n+1,json::null());
return self[n];
}
value const &value::operator[](size_t n) const
{
if(type()!=json::is_array)
throw bad_value_cast("",type(),json::is_array);
if(n >= array().size())
throw bad_value_cast("Index out of range");
return array()[n];
}
//#define DEBUG_PARSER
namespace {
enum {
tock_eof = 255,
tock_err,
tock_str,
tock_number,
tock_true,
tock_false,
tock_null
};
struct tockenizer {
public:
tockenizer(std::istream &in) :
real(0),
line(1),
is_(in),
locale_(in.getloc())
{
is_.imbue(std::locale::classic());
}
~tockenizer()
{
is_.imbue(locale_);
}
std::string str;
double real;
int line;
#ifdef DEBUG_PARSER
std::string write_tocken(int c)
{
std::ostringstream ss;
if(c>=255) {
static char const *name[] = {
"eof",
"err",
"str",
"number",
"true",
"false",
"null"
};
ss<<name[c - 255];
}
else {
ss<<char(c);
}
if(c==tock_str)
ss<<" "<<str;
else if(c==tock_number)
ss<<" "<<real;
return ss.str();
}
#endif
int next()
{
std::streambuf *buf = is_.rdbuf();
for(;;) {
int c;
if((c=buf->sbumpc())==-1)
return tock_eof;
switch(c) {
case '[':
case '{':
case ':':
case ',':
case '}':
case ']':
return c;
case ' ':
case '\t':
case '\r':
break;
case '\n':
line++;
break;
case '"':
buf->sungetc();
if(parse_string())
return tock_str;
return tock_err;
case 't':
if(check("rue"))
return tock_true;
return tock_err;
case 'n':
if(check("ull"))
return tock_null;
return tock_err;
case 'f':
if(check("alse"))
return tock_false;
return tock_err;
case '-':
case '0':
case '1':
case '2':
case '3':
case '4':
case '5':
case '6':
case '7':
case '8':
case '9':
buf->sungetc();
if(parse_number())
return tock_number;
return tock_err;
case '/':
if(check("/")) {
while((c=buf->sbumpc())!=-1 && c!='\n')
;
if(c=='\n')
break;
return tock_eof;
}
return tock_err;
default:
return tock_err;
}
}
}
private:
std::istream &is_;
std::locale locale_;
bool check(char const *s)
{
std::streambuf *buf = is_.rdbuf();
while(*s && buf->sbumpc()==std::char_traits<char>::to_int_type(*s))
s++;
return *s==0;
}
bool parse_string()
{
int c;
std::streambuf *buf=is_.rdbuf();
str.clear();
if((c=buf->sbumpc())==-1 || c!='"')
return false;
bool second_surragate_expected=false;
uint16_t first_surragate = 0;
for(;;) {
if((c=buf->sbumpc())==-1)
return false;
if(second_surragate_expected && c!='\\')
return false;
if(0<= c && c <= 0x1F)
return false;
if(c=='"')
break;
if(c=='\\') {
if((c=buf->sbumpc())==-1)
return false;
if(second_surragate_expected && c!='u')
return false;
switch(c) {
case '"':
case '\\':
case '/':
str+=char(c);
break;
case 'b': str+='\b'; break;
case 'f': str+='\f'; break;
case 'n': str+='\n'; break;
case 'r': str+='\r'; break;
case 't': str+='\t'; break;
case 'u':
{
uint16_t x;
if(!read_4_digits(x))
return false;
if(second_surragate_expected) {
if(!utf16::is_second_surrogate(x))
return false;
append(utf16::combine_surrogate(first_surragate,x));
second_surragate_expected=false;
}
else if(utf16::is_first_surrogate(x)) {
second_surragate_expected=true;
first_surragate=x;
}
else {
append(x);
}
}
break;
default:
return false;
}
}
else {
str+=char(c);
}
}
if(!utf8::validate(str.begin(),str.end()))
return false;
return true;
}
bool read_4_digits(uint16_t &x)
{
char buf[5]={0};
if(!is_.get(buf,5))
return false;
for(unsigned i=0;i<4;i++) {
char c=buf[i];