This repository has been archived by the owner on Jul 19, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 174
/
jsonxx.cc
1191 lines (1046 loc) · 32.7 KB
/
jsonxx.cc
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
// -*- mode: c++; c-basic-offset: 4; -*-
// Author: Hong Jiang <hong@hjiang.net>
// Contributors:
// Sean Middleditch <sean@middleditch.us>
// rlyeh <https://github.com/r-lyeh>
#include "jsonxx.h"
#include <cctype>
#include <iostream>
#include <iomanip>
#include <sstream>
#include <vector>
#include <limits>
#include <mutex>
// Snippet that creates an assertion function that works both in DEBUG & RELEASE mode.
// JSONXX_ASSERT(...) macro will redirect to this. assert() macro is kept untouched.
#if defined(NDEBUG) || defined(_NDEBUG)
# define JSONXX_REENABLE_NDEBUG
# undef NDEBUG
# undef _NDEBUG
#endif
#include <stdio.h>
#include <cassert>
void jsonxx::assertion( const char *file, int line, const char *expression, bool result ) {
if( !result ) {
fprintf( stderr, "[JSONXX] expression '%s' failed at %s:%d -> ", expression, file, line );
assert( 0 );
}
}
#if defined(JSONXX_REENABLE_NDEBUG)
# define NDEBUG
# define _NDEBUG
#endif
#include <cassert>
namespace jsonxx {
//static_assert( sizeof(unsigned long long) < sizeof(long double), "'long double' cannot hold 64bit values in this compiler :(");
bool match(const char* pattern, std::istream& input);
bool parse_array(std::istream& input, Array& array);
bool parse_bool(std::istream& input, Boolean& value);
bool parse_comment(std::istream &input);
bool parse_null(std::istream& input);
bool parse_number(std::istream& input, Number& value);
bool parse_object(std::istream& input, Object& object);
bool parse_string(std::istream& input, String& value);
bool parse_identifier(std::istream& input, String& value);
bool parse_value(std::istream& input, Value& value);
// Try to consume characters from the input stream and match the
// pattern string.
bool match(const char* pattern, std::istream& input) {
input >> std::ws;
const char* cur(pattern);
char ch(0);
while(input && !input.eof() && *cur != 0) {
input.get(ch);
if (ch != *cur) {
input.putback(ch);
if( parse_comment(input) )
continue;
while (cur > pattern) {
cur--;
input.putback(*cur);
}
return false;
} else {
cur++;
}
}
return *cur == 0;
}
bool parse_string(std::istream& input, String& value) {
char ch = '\0', delimiter = '"';
if (!match("\"", input)) {
if (parser_is_strict()) {
return false;
}
delimiter = '\'';
if (input.peek() != delimiter) {
return false;
}
input.get(ch);
}
while(!input.eof() && input.good()) {
input.get(ch);
if (ch == delimiter) {
break;
}
if (ch == '\\') {
input.get(ch);
switch(ch) {
case '\\':
case '/':
value.push_back(ch);
break;
case 'b':
value.push_back('\b');
break;
case 'f':
value.push_back('\f');
break;
case 'n':
value.push_back('\n');
break;
case 'r':
value.push_back('\r');
break;
case 't':
value.push_back('\t');
break;
case 'u': {
int i;
std::stringstream ss;
for( i = 0; (!input.eof() && input.good()) && i < 4; ++i ) {
input.get(ch);
ss << std::hex << ch;
}
if( input.good() && (ss >> i) )
value.push_back(static_cast<char>(i));
}
break;
default:
if (ch != delimiter) {
value.push_back('\\');
value.push_back(ch);
} else value.push_back(ch);
break;
}
} else {
value.push_back(ch);
}
}
if (input && ch == delimiter) {
return true;
} else {
return false;
}
}
bool parse_identifier(std::istream& input, String& value) {
input >> std::ws;
char ch = '\0', delimiter = ':';
bool first = true;
while(!input.eof() && input.good()) {
input.get(ch);
if (ch == delimiter) {
input.unget();
break;
}
if(first) {
if ((ch != '_' && ch != '$') &&
(ch < 'a' || ch > 'z') &&
(ch < 'A' || ch > 'Z')) {
return false;
}
first = false;
}
if(ch == '_' || ch == '$' ||
(ch >= 'a' && ch <= 'z') ||
(ch >= 'A' && ch <= 'Z') ||
(ch >= '0' && ch <= '9')) {
value.push_back(ch);
}
else if(ch == '\t' || ch == ' ') {
input >> std::ws;
}
}
if (input && ch == delimiter) {
return true;
} else {
return false;
}
}
class IOStateMasker {
public:
explicit IOStateMasker(std::istream& input): stream(input) {
mask = input.exceptions();
input.exceptions(std::istream::goodbit);
}
~IOStateMasker() {
stream.exceptions(mask);
}
private:
std::istream& stream;
std::istream::iostate mask;
};
bool parse_number(std::istream& input, Number& value) {
input >> std::ws;
std::streampos rollback = input.tellg();
IOStateMasker masker(input);
input >> value;
if (input.fail()) {
input.clear();
input.seekg(rollback);
return false;
}
return true;
}
bool parse_bool(std::istream& input, Boolean& value) {
if (match("true", input)) {
value = true;
return true;
}
if (match("false", input)) {
value = false;
return true;
}
return false;
}
bool parse_null(std::istream& input) {
if (match("null", input)) {
return true;
}
if (parser_is_strict()) {
return false;
}
return (input.peek()==',');
}
bool parse_array(std::istream& input, Array& array) {
return array.parse(input);
}
bool parse_object(std::istream& input, Object& object) {
return object.parse(input);
}
bool parse_comment(std::istream &input) {
if( parser_is_permissive() )
if( !input.eof() && input.peek() == '/' )
{
char ch0(0);
input.get(ch0);
if( !input.eof() )
{
char ch1(0);
input.get(ch1);
if( ch0 == '/' && ch1 == '/' )
{
// trim chars till \r or \n
for( char ch(0); !input.eof() && (input.peek() != '\r' && input.peek() != '\n'); )
input.get(ch);
// consume spaces, tabs, \r or \n, in case no eof is found
if( !input.eof() )
input >> std::ws;
return true;
}
input.unget();
input.clear();
}
input.unget();
input.clear();
}
return false;
}
bool parse_value(std::istream& input, Value& value) {
return value.parse(input);
}
Object::Object() : value_map_() {}
Object::~Object() {
reset();
}
bool Object::parse(std::istream& input, Object& object) {
object.reset();
if (!match("{", input)) {
return false;
}
if (match("}", input)) {
return true;
}
do {
std::string key;
if (unquoted_keys_are_enabled()) {
if (!parse_identifier(input, key)) {
if (parser_is_permissive()) {
if (input.peek() == '}')
break;
}
return false;
}
}
else {
if (!parse_string(input, key)) {
if (parser_is_permissive()) {
if (input.peek() == '}')
break;
}
return false;
}
}
if (!match(":", input)) {
return false;
}
Value* v = new Value();
if (!parse_value(input, *v)) {
delete v;
break;
}
// TODO(hjiang): Add an option to allow duplicated keys?
if (object.value_map_.find(key) == object.value_map_.end()) {
object.value_map_[key] = v;
} else {
if (parser_is_permissive()) {
delete object.value_map_[key];
object.value_map_[key] = v;
} else {
delete v;
return false;
}
}
} while (match(",", input));
if (!match("}", input)) {
return false;
}
return true;
}
Value::Value() : type_(INVALID_) {}
void Value::reset() {
if (type_ == STRING_) {
delete string_value_;
string_value_ = 0;
}
else if (type_ == OBJECT_) {
delete object_value_;
object_value_ = 0;
}
else if (type_ == ARRAY_) {
delete array_value_;
array_value_ = 0;
}
}
bool Value::parse(std::istream& input, Value& value) {
value.reset();
std::string string_value;
if (parse_string(input, string_value)) {
value.string_value_ = new std::string();
value.string_value_->swap(string_value);
value.type_ = STRING_;
return true;
}
if (parse_number(input, value.number_value_)) {
value.type_ = NUMBER_;
return true;
}
if (parse_bool(input, value.bool_value_)) {
value.type_ = BOOL_;
return true;
}
if (parse_null(input)) {
value.type_ = NULL_;
return true;
}
if (input.peek() == '[') {
value.array_value_ = new Array();
if (parse_array(input, *value.array_value_)) {
value.type_ = ARRAY_;
return true;
}
delete value.array_value_;
value.array_value_ = 0;
}
value.object_value_ = new Object();
if (parse_object(input, *value.object_value_)) {
value.type_ = OBJECT_;
return true;
}
delete value.object_value_;
value.object_value_ = 0;
return false;
}
Array::Array() : values_() {}
Array::~Array() {
reset();
}
bool Array::parse(std::istream& input, Array& array) {
array.reset();
if (!match("[", input)) {
return false;
}
if (match("]", input)) {
return true;
}
do {
Value* v = new Value();
if (!parse_value(input, *v)) {
delete v;
break;
}
array.values_.push_back(v);
} while (match(",", input));
if (!match("]", input)) {
return false;
}
return true;
}
static std::ostream& stream_string(std::ostream& stream,
const std::string& string) {
stream << '"';
for (std::string::const_iterator i = string.begin(),
e = string.end(); i != e; ++i) {
switch (*i) {
case '"':
stream << "\\\"";
break;
case '\\':
stream << "\\\\";
break;
case '/':
stream << "\\/";
break;
case '\b':
stream << "\\b";
break;
case '\f':
stream << "\\f";
break;
case '\n':
stream << "\\n";
break;
case '\r':
stream << "\\r";
break;
case '\t':
stream << "\\t";
break;
default:
if (*i < 32) {
stream << "\\u" << std::hex << std::setw(4) <<
std::setfill('0') << static_cast<int>(*i) << std::dec <<
std::setw(0);
} else {
stream << *i;
}
}
}
stream << '"';
return stream;
}
} // namespace jsonxx
std::ostream& operator<<(std::ostream& stream, const jsonxx::Value& v) {
using namespace jsonxx;
if (v.is<Number>()) {
return stream << v.get<Number>();
} else if (v.is<String>()) {
return stream_string(stream, v.get<std::string>());
} else if (v.is<Boolean>()) {
if (v.get<Boolean>()) {
return stream << "true";
} else {
return stream << "false";
}
} else if (v.is<Null>()) {
return stream << "null";
} else if (v.is<Object>()) {
return stream << v.get<Object>();
} else if (v.is<Array>()){
return stream << v.get<Array>();
}
// Shouldn't reach here.
return stream;
}
std::ostream& operator<<(std::ostream& stream, const jsonxx::Array& v) {
stream << "[";
jsonxx::Array::container::const_iterator
it = v.values().begin(),
end = v.values().end();
while (it != end) {
stream << *(*it);
++it;
if (it != end) {
stream << ", ";
}
}
return stream << "]";
}
std::ostream& operator<<(std::ostream& stream, const jsonxx::Object& v) {
stream << "{";
jsonxx::Object::container::const_iterator
it = v.kv_map().begin(),
end = v.kv_map().end();
while (it != end) {
jsonxx::stream_string(stream, it->first);
stream << ": " << *(it->second);
++it;
if (it != end) {
stream << ", ";
}
}
return stream << "}";
}
namespace jsonxx {
namespace {
typedef unsigned char byte;
//template<bool quote>
std::string escape_string( const std::string &input, const bool quote = false ) {
static std::string map[256], *once = 0;
static std::mutex mutex;
if( !once ) {
// The problem here is that, once is initializing at the end of job, but if multithreaded application is starting this for the first time
// it will jump into this part with several threads and cause double free or corruptions.
// To prevent it, it is required to have mutex, to lock other threads while only one of them is constructing the static map.
mutex.lock();
if (!once) {
// base
for( int i = 0; i < 256; ++i ) {
map[ i ] = std::string() + char(i);
}
// non-printable
for( int i = 0; i < 32; ++i ) {
std::stringstream str;
str << "\\u" << std::hex << std::setw(4) << std::setfill('0') << i;
map[ i ] = str.str();
}
// exceptions
map[ byte('"') ] = "\\\"";
map[ byte('\\') ] = "\\\\";
map[ byte('/') ] = "\\/";
map[ byte('\b') ] = "\\b";
map[ byte('\f') ] = "\\f";
map[ byte('\n') ] = "\\n";
map[ byte('\r') ] = "\\r";
map[ byte('\t') ] = "\\t";
once = map;
}
mutex.unlock();
}
std::string output;
output.reserve( input.size() * 2 + 2 ); // worst scenario
if( quote ) output += '"';
for( std::string::const_iterator it = input.begin(), end = input.end(); it != end; ++it )
output += map[ byte(*it) ];
if( quote ) output += '"';
return output;
}
namespace json {
std::string remove_last_comma( const std::string &_input ) {
std::string input( _input );
size_t size = input.size();
if( size > 2 )
if( input[ size - 2 ] == ',' )
input[ size - 2 ] = ' ';
return input;
}
std::string tag( unsigned format, unsigned depth, const std::string &name, const jsonxx::Value &t) {
std::stringstream ss;
const std::string tab(depth, '\t');
if( !name.empty() )
ss << tab << '\"' << escape_string( name ) << '\"' << ':' << ' ';
else
ss << tab;
switch( t.type_ )
{
default:
case jsonxx::Value::NULL_:
ss << "null";
return ss.str() + ",\n";
case jsonxx::Value::BOOL_:
ss << ( t.bool_value_ ? "true" : "false" );
return ss.str() + ",\n";
case jsonxx::Value::ARRAY_:
ss << "[\n";
for(Array::container::const_iterator it = t.array_value_->values().begin(),
end = t.array_value_->values().end(); it != end; ++it )
ss << tag( format, depth+1, std::string(), **it );
return remove_last_comma( ss.str() ) + tab + "]" ",\n";
case jsonxx::Value::STRING_:
ss << '\"' << escape_string( *t.string_value_ ) << '\"';
return ss.str() + ",\n";
case jsonxx::Value::OBJECT_:
ss << "{\n";
for(Object::container::const_iterator it=t.object_value_->kv_map().begin(),
end = t.object_value_->kv_map().end(); it != end ; ++it)
ss << tag( format, depth+1, it->first, *it->second );
return remove_last_comma( ss.str() ) + tab + "}" ",\n";
case jsonxx::Value::NUMBER_:
// max precision
ss << std::setprecision(std::numeric_limits<long double>::digits10 + 1);
ss << t.number_value_;
return ss.str() + ",\n";
}
}
} // namespace jsonxx::anon::json
namespace xml {
std::string escape_attrib( const std::string &input ) {
static std::string map[256], *once = 0;
if( !once ) {
for( int i = 0; i < 256; ++i )
map[ i ] = "_";
for( int i = int('a'); i <= int('z'); ++i )
map[ i ] = std::string() + char(i);
for( int i = int('A'); i <= int('Z'); ++i )
map[ i ] = std::string() + char(i);
for( int i = int('0'); i <= int('9'); ++i )
map[ i ] = std::string() + char(i);
once = map;
}
std::string output;
output.reserve( input.size() ); // worst scenario
for( std::string::const_iterator it = input.begin(), end = input.end(); it != end; ++it )
output += map[ byte(*it) ];
return output;
}
std::string escape_tag( const std::string &input, unsigned format ) {
static std::string map[256], *once = 0;
if( !once ) {
for( int i = 0; i < 256; ++i )
map[ i ] = std::string() + char(i);
map[ byte('<') ] = "<";
map[ byte('>') ] = ">";
switch( format )
{
default:
break;
case jsonxx::JXML:
case jsonxx::JXMLex:
case jsonxx::JSONx:
case jsonxx::TaggedXML:
map[ byte('&') ] = "&";
break;
}
once = map;
}
std::string output;
output.reserve( input.size() * 5 ); // worst scenario
for( std::string::const_iterator it = input.begin(), end = input.end(); it != end; ++it )
output += map[ byte(*it) ];
return output;
}
std::string open_tag( unsigned format, char type, const std::string &name, const std::string &attr = std::string(), const std::string &text = std::string() ) {
std::string tagname;
switch( format )
{
default:
return std::string();
case jsonxx::JXML:
if( name.empty() )
tagname = std::string("j son=\"") + type + '\"';
else
tagname = std::string("j son=\"") + type + ':' + escape_string(name) + '\"';
break;
case jsonxx::JXMLex:
if( name.empty() )
tagname = std::string("j son=\"") + type + '\"';
else
tagname = std::string("j son=\"") + type + ':' + escape_string(name) + "\" " + escape_attrib(name) + "=\"" + escape_string(text) + "\"";
break;
case jsonxx::JSONx:
if( !name.empty() )
tagname = std::string(" name=\"") + escape_string(name) + "\"";
switch( type ) {
default:
case '0': tagname = "json:null" + tagname; break;
case 'b': tagname = "json:boolean" + tagname; break;
case 'a': tagname = "json:array" + tagname; break;
case 's': tagname = "json:string" + tagname; break;
case 'o': tagname = "json:object" + tagname; break;
case 'n': tagname = "json:number" + tagname; break;
}
break;
case jsonxx::TaggedXML: // @TheMadButcher
if( !name.empty() )
tagname = escape_attrib(name);
else
tagname = "JsonItem";
switch( type ) {
default:
case '0': tagname += " type=\"json:null\""; break;
case 'b': tagname += " type=\"json:boolean\""; break;
case 'a': tagname += " type=\"json:array\""; break;
case 's': tagname += " type=\"json:string\""; break;
case 'o': tagname += " type=\"json:object\""; break;
case 'n': tagname += " type=\"json:number\""; break;
}
if( !name.empty() )
tagname += std::string(" name=\"") + escape_string(name) + "\"";
break;
}
return std::string("<") + tagname + attr + ">";
}
std::string close_tag( unsigned format, char type, const std::string &name ) {
switch( format )
{
default:
return std::string();
case jsonxx::JXML:
case jsonxx::JXMLex:
return "</j>";
case jsonxx::JSONx:
switch( type ) {
default:
case '0': return "</json:null>";
case 'b': return "</json:boolean>";
case 'a': return "</json:array>";
case 'o': return "</json:object>";
case 's': return "</json:string>";
case 'n': return "</json:number>";
}
break;
case jsonxx::TaggedXML: // @TheMadButcher
if( !name.empty() )
return "</"+escape_attrib(name)+">";
else
return "</JsonItem>";
}
}
std::string tag( unsigned format, unsigned depth, const std::string &name, const jsonxx::Value &t, const std::string &attr = std::string() ) {
std::stringstream ss;
const std::string tab(depth, '\t');
switch( t.type_ )
{
default:
case jsonxx::Value::NULL_:
return tab + open_tag( format, '0', name, " /" ) + '\n';
case jsonxx::Value::BOOL_:
ss << ( t.bool_value_ ? "true" : "false" );
return tab + open_tag( format, 'b', name, std::string(), format == jsonxx::JXMLex ? ss.str() : std::string() )
+ ss.str()
+ close_tag( format, 'b', name ) + '\n';
case jsonxx::Value::ARRAY_:
for(Array::container::const_iterator it = t.array_value_->values().begin(),
end = t.array_value_->values().end(); it != end; ++it )
ss << tag( format, depth+1, std::string(), **it );
return tab + open_tag( format, 'a', name, attr ) + '\n'
+ ss.str()
+ tab + close_tag( format, 'a', name ) + '\n';
case jsonxx::Value::STRING_:
ss << escape_tag( *t.string_value_, format );
return tab + open_tag( format, 's', name, std::string(), format == jsonxx::JXMLex ? ss.str() : std::string() )
+ ss.str()
+ close_tag( format, 's', name ) + '\n';
case jsonxx::Value::OBJECT_:
for(Object::container::const_iterator it=t.object_value_->kv_map().begin(),
end = t.object_value_->kv_map().end(); it != end ; ++it)
ss << tag( format, depth+1, it->first, *it->second );
return tab + open_tag( format, 'o', name, attr ) + '\n'
+ ss.str()
+ tab + close_tag( format, 'o', name ) + '\n';
case jsonxx::Value::NUMBER_:
// max precision
ss << std::setprecision(std::numeric_limits<long double>::digits10 + 1);
ss << t.number_value_;
return tab + open_tag( format, 'n', name, std::string(), format == jsonxx::JXMLex ? ss.str() : std::string() )
+ ss.str()
+ close_tag( format, 'n', name ) + '\n';
}
}
// order here matches jsonxx::Format enum
const char *defheader[] = {
"",
"<?xml version=\"1.0\" encoding=\"UTF-8\"?>"
JSONXX_XML_TAG "\n",
"<?xml version=\"1.0\" encoding=\"UTF-8\"?>"
JSONXX_XML_TAG "\n",
"<?xml version=\"1.0\" encoding=\"UTF-8\"?>"
JSONXX_XML_TAG "\n",
"<?xml version=\"1.0\" encoding=\"UTF-8\"?>"
JSONXX_XML_TAG "\n"
};
// order here matches jsonxx::Format enum
const char *defrootattrib[] = {
"",
" xsi:schemaLocation=\"http://www.datapower.com/schemas/json jsonx.xsd\""
" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\""
" xmlns:json=\"http://www.ibm.com/xmlns/prod/2009/jsonx\"",
"",
"",
""
};
} // namespace jsonxx::anon::xml
} // namespace jsonxx::anon
std::string Object::json() const {
using namespace json;
jsonxx::Value v;
v.object_value_ = const_cast<jsonxx::Object*>(this);
v.type_ = jsonxx::Value::OBJECT_;
std::string result = tag( jsonxx::JSON, 0, std::string(), v );
v.object_value_ = 0;
return remove_last_comma( result );
}
std::string Object::xml( unsigned format, const std::string &header, const std::string &attrib ) const {
using namespace xml;
JSONXX_ASSERT( format == jsonxx::JSONx || format == jsonxx::JXML || format == jsonxx::JXMLex || format == jsonxx::TaggedXML );
jsonxx::Value v;
v.object_value_ = const_cast<jsonxx::Object*>(this);
v.type_ = jsonxx::Value::OBJECT_;
std::string result = tag( format, 0, std::string(), v, attrib.empty() ? std::string(defrootattrib[format]) : attrib );
v.object_value_ = 0;
return ( header.empty() ? std::string(defheader[format]) : header ) + result;
}
std::string Array::json() const {
using namespace json;
jsonxx::Value v;
v.array_value_ = const_cast<jsonxx::Array*>(this);
v.type_ = jsonxx::Value::ARRAY_;
std::string result = tag( jsonxx::JSON, 0, std::string(), v );
v.array_value_ = 0;
return remove_last_comma( result );
}
std::string Array::xml( unsigned format, const std::string &header, const std::string &attrib ) const {
using namespace xml;
JSONXX_ASSERT( format == jsonxx::JSONx || format == jsonxx::JXML || format == jsonxx::JXMLex || format == jsonxx::TaggedXML );
jsonxx::Value v;
v.array_value_ = const_cast<jsonxx::Array*>(this);
v.type_ = jsonxx::Value::ARRAY_;
std::string result = tag( format, 0, std::string(), v, attrib.empty() ? std::string(defrootattrib[format]) : attrib );
v.array_value_ = 0;
return ( header.empty() ? std::string(defheader[format]) : header ) + result;
}
bool validate( std::istream &input ) {
// trim non-printable chars
for( char ch(0); !input.eof() && input.peek() <= 32; )
input.get(ch);
// validate json
if( input.peek() == '{' )
{
jsonxx::Object o;
if( parse_object( input, o ) )
return true;
}
else
if( input.peek() == '[' )
{
jsonxx::Array a;
if( parse_array( input, a ) )
return true;
}
// bad json input
return false;
}
bool validate( const std::string &input ) {
std::istringstream is( input );
return jsonxx::validate( is );
}
std::string reformat( std::istream &input ) {
// trim non-printable chars
for( char ch(0); !input.eof() && input.peek() <= 32; )
input.get(ch);
// validate json
if( input.peek() == '{' )
{
jsonxx::Object o;
if( parse_object( input, o ) )
return o.json();
}
else
if( input.peek() == '[' )
{
jsonxx::Array a;
if( parse_array( input, a ) )
return a.json();
}
// bad json input
return std::string();
}
std::string reformat( const std::string &input ) {
std::istringstream is( input );
return jsonxx::reformat( is );
}
std::string xml( std::istream &input, unsigned format ) {
using namespace xml;
JSONXX_ASSERT( format == jsonxx::JSONx || format == jsonxx::JXML || format == jsonxx::JXMLex || format == jsonxx::TaggedXML );
// trim non-printable chars
for( char ch(0); !input.eof() && input.peek() <= 32; )
input.get(ch);
// validate json, then transform
if( input.peek() == '{' )
{
jsonxx::Object o;
if( parse_object( input, o ) )
return o.xml(format);