ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/JSON-XS/XS.xs
(Generate patch)

Comparing JSON-XS/XS.xs (file contents):
Revision 1.42 by root, Sat Jun 23 22:56:08 2007 UTC vs.
Revision 1.51 by root, Mon Jul 2 00:48:18 2007 UTC

15// guarentees, though. if it breaks, you get to keep the pieces. 15// guarentees, though. if it breaks, you get to keep the pieces.
16#ifndef UTF8_MAXBYTES 16#ifndef UTF8_MAXBYTES
17# define UTF8_MAXBYTES 13 17# define UTF8_MAXBYTES 13
18#endif 18#endif
19 19
20#define F_ASCII 0x00000001UL 20#define F_ASCII 0x00000001UL
21#define F_LATIN1 0x00000002UL 21#define F_LATIN1 0x00000002UL
22#define F_UTF8 0x00000004UL 22#define F_UTF8 0x00000004UL
23#define F_INDENT 0x00000008UL 23#define F_INDENT 0x00000008UL
24#define F_CANONICAL 0x00000010UL 24#define F_CANONICAL 0x00000010UL
25#define F_SPACE_BEFORE 0x00000020UL 25#define F_SPACE_BEFORE 0x00000020UL
26#define F_SPACE_AFTER 0x00000040UL 26#define F_SPACE_AFTER 0x00000040UL
27#define F_ALLOW_NONREF 0x00000100UL 27#define F_ALLOW_NONREF 0x00000100UL
28#define F_SHRINK 0x00000200UL 28#define F_SHRINK 0x00000200UL
29#define F_ALLOW_BLESSED 0x00000400UL
30#define F_CONV_BLESSED 0x00000800UL
29#define F_MAXDEPTH 0xf8000000UL 31#define F_MAXDEPTH 0xf8000000UL
30#define S_MAXDEPTH 27 32#define S_MAXDEPTH 27
33#define F_MAXSIZE 0x01f00000UL
34#define S_MAXSIZE 20
35#define F_HOOK 0x00080000UL // some hooks exist, so slow-path processing
31 36
32#define DEC_DEPTH(flags) (1UL << ((flags & F_MAXDEPTH) >> S_MAXDEPTH)) 37#define DEC_DEPTH(flags) (1UL << ((flags & F_MAXDEPTH) >> S_MAXDEPTH))
33 38#define DEC_SIZE(flags) (1UL << ((flags & F_MAXSIZE ) >> S_MAXSIZE ))
34// F_SELFCONVERT? <=> to_json/toJson
35// F_BLESSED? <=> { $__class__$ => }
36 39
37#define F_PRETTY F_INDENT | F_SPACE_BEFORE | F_SPACE_AFTER 40#define F_PRETTY F_INDENT | F_SPACE_BEFORE | F_SPACE_AFTER
38#define F_DEFAULT (9UL << S_MAXDEPTH) 41#define F_DEFAULT (9UL << S_MAXDEPTH)
39 42
40#define INIT_SIZE 32 // initial scalar size to be allocated 43#define INIT_SIZE 32 // initial scalar size to be allocated
54#endif 57#endif
55 58
56#define expect_false(expr) expect ((expr) != 0, 0) 59#define expect_false(expr) expect ((expr) != 0, 0)
57#define expect_true(expr) expect ((expr) != 0, 1) 60#define expect_true(expr) expect ((expr) != 0, 1)
58 61
59static HV *json_stash; // JSON::XS:: 62static HV *json_stash, *json_boolean_stash; // JSON::XS::
63static SV *json_true, *json_false;
64
65typedef struct {
66 U32 flags;
67 SV *cb_object, *cb_sk_object;
68} JSON;
60 69
61///////////////////////////////////////////////////////////////////////////// 70/////////////////////////////////////////////////////////////////////////////
62// utility functions 71// utility functions
63 72
64static UV * 73inline void
65SvJSON (SV *sv)
66{
67 if (!(SvROK (sv) && SvOBJECT (SvRV (sv)) && SvSTASH (SvRV (sv)) == json_stash))
68 croak ("object is not of type JSON::XS");
69
70 return &SvUVX (SvRV (sv));
71}
72
73static void
74shrink (SV *sv) 74shrink (SV *sv)
75{ 75{
76 sv_utf8_downgrade (sv, 1); 76 sv_utf8_downgrade (sv, 1);
77 if (SvLEN (sv) > SvCUR (sv) + 1) 77 if (SvLEN (sv) > SvCUR (sv) + 1)
78 { 78 {
113typedef struct 113typedef struct
114{ 114{
115 char *cur; // SvPVX (sv) + current output position 115 char *cur; // SvPVX (sv) + current output position
116 char *end; // SvEND (sv) 116 char *end; // SvEND (sv)
117 SV *sv; // result scalar 117 SV *sv; // result scalar
118 U32 flags; // F_* 118 JSON json;
119 U32 indent; // indentation level 119 U32 indent; // indentation level
120 U32 maxdepth; // max. indentation/recursion level 120 U32 maxdepth; // max. indentation/recursion level
121} enc_t; 121} enc_t;
122 122
123inline void 123inline void
197 } 197 }
198 198
199 if (uch > 0x10FFFFUL) 199 if (uch > 0x10FFFFUL)
200 croak ("out of range codepoint (0x%lx) encountered, unrepresentable in JSON", (unsigned long)uch); 200 croak ("out of range codepoint (0x%lx) encountered, unrepresentable in JSON", (unsigned long)uch);
201 201
202 if (uch < 0x80 || enc->flags & F_ASCII || (enc->flags & F_LATIN1 && uch > 0xFF)) 202 if (uch < 0x80 || enc->json.flags & F_ASCII || (enc->json.flags & F_LATIN1 && uch > 0xFF))
203 { 203 {
204 if (uch > 0xFFFFUL) 204 if (uch > 0xFFFFUL)
205 { 205 {
206 need (enc, len += 11); 206 need (enc, len += 11);
207 sprintf (enc->cur, "\\u%04x\\u%04x", 207 sprintf (enc->cur, "\\u%04x\\u%04x",
221 *enc->cur++ = hexdigit [(uch >> 0) & 15]; 221 *enc->cur++ = hexdigit [(uch >> 0) & 15];
222 } 222 }
223 223
224 str += clen; 224 str += clen;
225 } 225 }
226 else if (enc->flags & F_LATIN1) 226 else if (enc->json.flags & F_LATIN1)
227 { 227 {
228 *enc->cur++ = uch; 228 *enc->cur++ = uch;
229 str += clen; 229 str += clen;
230 } 230 }
231 else if (is_utf8) 231 else if (is_utf8)
252} 252}
253 253
254inline void 254inline void
255encode_indent (enc_t *enc) 255encode_indent (enc_t *enc)
256{ 256{
257 if (enc->flags & F_INDENT) 257 if (enc->json.flags & F_INDENT)
258 { 258 {
259 int spaces = enc->indent * INDENT_STEP; 259 int spaces = enc->indent * INDENT_STEP;
260 260
261 need (enc, spaces); 261 need (enc, spaces);
262 memset (enc->cur, ' ', spaces); 262 memset (enc->cur, ' ', spaces);
272} 272}
273 273
274inline void 274inline void
275encode_nl (enc_t *enc) 275encode_nl (enc_t *enc)
276{ 276{
277 if (enc->flags & F_INDENT) 277 if (enc->json.flags & F_INDENT)
278 { 278 {
279 need (enc, 1); 279 need (enc, 1);
280 encode_ch (enc, '\n'); 280 encode_ch (enc, '\n');
281 } 281 }
282} 282}
284inline void 284inline void
285encode_comma (enc_t *enc) 285encode_comma (enc_t *enc)
286{ 286{
287 encode_ch (enc, ','); 287 encode_ch (enc, ',');
288 288
289 if (enc->flags & F_INDENT) 289 if (enc->json.flags & F_INDENT)
290 encode_nl (enc); 290 encode_nl (enc);
291 else if (enc->flags & F_SPACE_AFTER) 291 else if (enc->json.flags & F_SPACE_AFTER)
292 encode_space (enc); 292 encode_space (enc);
293} 293}
294 294
295static void encode_sv (enc_t *enc, SV *sv); 295static void encode_sv (enc_t *enc, SV *sv);
296 296
339 else 339 else
340 encode_str (enc, HeKEY (he), HeKLEN (he), HeKUTF8 (he)); 340 encode_str (enc, HeKEY (he), HeKLEN (he), HeKUTF8 (he));
341 341
342 encode_ch (enc, '"'); 342 encode_ch (enc, '"');
343 343
344 if (enc->flags & F_SPACE_BEFORE) encode_space (enc); 344 if (enc->json.flags & F_SPACE_BEFORE) encode_space (enc);
345 encode_ch (enc, ':'); 345 encode_ch (enc, ':');
346 if (enc->flags & F_SPACE_AFTER ) encode_space (enc); 346 if (enc->json.flags & F_SPACE_AFTER ) encode_space (enc);
347 encode_sv (enc, HeVAL (he)); 347 encode_sv (enc, HeVAL (he));
348} 348}
349 349
350// compare hash entries, used when all keys are bytestrings 350// compare hash entries, used when all keys are bytestrings
351static int 351static int
386 { 386 {
387 // for canonical output we have to sort by keys first 387 // for canonical output we have to sort by keys first
388 // actually, this is mostly due to the stupid so-called 388 // actually, this is mostly due to the stupid so-called
389 // security workaround added somewhere in 5.8.x. 389 // security workaround added somewhere in 5.8.x.
390 // that randomises hash orderings 390 // that randomises hash orderings
391 if (enc->flags & F_CANONICAL) 391 if (enc->json.flags & F_CANONICAL)
392 { 392 {
393 int fast = 1; 393 int fast = 1;
394 HE *he; 394 HE *he;
395#if defined(__BORLANDC__) || defined(_MSC_VER) 395#if defined(__BORLANDC__) || defined(_MSC_VER)
396 HE **hes = _alloca (count * sizeof (HE)); 396 HE **hes = _alloca (count * sizeof (HE));
468 svtype svt; 468 svtype svt;
469 469
470 SvGETMAGIC (sv); 470 SvGETMAGIC (sv);
471 svt = SvTYPE (sv); 471 svt = SvTYPE (sv);
472 472
473 if (expect_false (SvOBJECT (sv)))
474 {
475 if (SvSTASH (sv) == json_boolean_stash)
476 {
477 if (SvIV (sv))
478 encode_str (enc, "true", 4, 0);
479 else
480 encode_str (enc, "false", 5, 0);
481 }
482 else
483 {
484#if 0
485 if (0 && sv_derived_from (rv, "JSON::Literal"))
486 {
487 // not yet
488 }
489#endif
490 if (enc->json.flags & F_CONV_BLESSED)
491 {
492 // we re-bless the reference to get overload and other niceties right
493 GV *to_json = gv_fetchmethod_autoload (SvSTASH (sv), "TO_JSON", 1);
494
495 if (to_json)
496 {
497 dSP; ENTER; SAVETMPS; PUSHMARK (SP);
498 XPUSHs (sv_bless (sv_2mortal (newRV_inc (sv)), SvSTASH (sv)));
499
500 // calling with G_SCALAR ensures that we always get a 1 reutrn value
501 // check anyways.
502 PUTBACK;
503 assert (1 == call_sv ((SV *)GvCV (to_json), G_SCALAR));
504 SPAGAIN;
505
506 encode_sv (enc, POPs);
507
508 FREETMPS; LEAVE;
509 }
510 else if (enc->json.flags & F_ALLOW_BLESSED)
511 encode_str (enc, "null", 4, 0);
512 else
513 croak ("encountered object '%s', but neither allow_blessed enabled nor TO_JSON method available on it",
514 SvPV_nolen (sv_2mortal (newRV_inc (sv))));
515 }
516 else if (enc->json.flags & F_ALLOW_BLESSED)
517 encode_str (enc, "null", 4, 0);
518 else
519 croak ("encountered object '%s', but neither allow_blessed nor convert_blessed settings are enabled",
520 SvPV_nolen (sv_2mortal (newRV_inc (sv))));
521 }
522 }
473 if (svt == SVt_PVHV) 523 else if (svt == SVt_PVHV)
474 encode_hv (enc, (HV *)sv); 524 encode_hv (enc, (HV *)sv);
475 else if (svt == SVt_PVAV) 525 else if (svt == SVt_PVAV)
476 encode_av (enc, (AV *)sv); 526 encode_av (enc, (AV *)sv);
477 else if (svt < SVt_PVAV) 527 else if (svt < SVt_PVAV)
478 { 528 {
479 if (SvNIOK (sv) && SvIV (sv) == 0) 529 STRLEN len = 0;
530 char *pv = svt ? SvPV (sv, len) : 0;
531
532 if (len == 1 && *pv == '1')
533 encode_str (enc, "true", 4, 0);
534 else if (len == 1 && *pv == '0')
480 encode_str (enc, "false", 5, 0); 535 encode_str (enc, "false", 5, 0);
481 else if (SvNIOK (sv) && SvIV (sv) == 1)
482 encode_str (enc, "true", 4, 0);
483 else 536 else
484 croak ("cannot encode reference to scalar '%s' unless the scalar is 0 or 1", 537 croak ("cannot encode reference to scalar '%s' unless the scalar is 0 or 1",
485 SvPV_nolen (sv_2mortal (newRV_inc (sv)))); 538 SvPV_nolen (sv_2mortal (newRV_inc (sv))));
486 } 539 }
487 else 540 else
557 croak ("encountered perl type (%s,0x%x) that JSON cannot handle, you might want to report this", 610 croak ("encountered perl type (%s,0x%x) that JSON cannot handle, you might want to report this",
558 SvPV_nolen (sv), SvFLAGS (sv)); 611 SvPV_nolen (sv), SvFLAGS (sv));
559} 612}
560 613
561static SV * 614static SV *
562encode_json (SV *scalar, U32 flags) 615encode_json (SV *scalar, JSON *json)
563{ 616{
564 enc_t enc; 617 enc_t enc;
565 618
566 if (!(flags & F_ALLOW_NONREF) && !SvROK (scalar)) 619 if (!(json->flags & F_ALLOW_NONREF) && !SvROK (scalar))
567 croak ("hash- or arrayref expected (not a simple scalar, use allow_nonref to allow this)"); 620 croak ("hash- or arrayref expected (not a simple scalar, use allow_nonref to allow this)");
568 621
569 enc.flags = flags; 622 enc.json = *json;
570 enc.sv = sv_2mortal (NEWSV (0, INIT_SIZE)); 623 enc.sv = sv_2mortal (NEWSV (0, INIT_SIZE));
571 enc.cur = SvPVX (enc.sv); 624 enc.cur = SvPVX (enc.sv);
572 enc.end = SvEND (enc.sv); 625 enc.end = SvEND (enc.sv);
573 enc.indent = 0; 626 enc.indent = 0;
574 enc.maxdepth = DEC_DEPTH (flags); 627 enc.maxdepth = DEC_DEPTH (enc.json.flags);
575 628
576 SvPOK_only (enc.sv); 629 SvPOK_only (enc.sv);
577 encode_sv (&enc, scalar); 630 encode_sv (&enc, scalar);
578 631
579 SvCUR_set (enc.sv, enc.cur - SvPVX (enc.sv)); 632 SvCUR_set (enc.sv, enc.cur - SvPVX (enc.sv));
580 *SvEND (enc.sv) = 0; // many xs functions expect a trailing 0 for text strings 633 *SvEND (enc.sv) = 0; // many xs functions expect a trailing 0 for text strings
581 634
582 if (!(flags & (F_ASCII | F_LATIN1 | F_UTF8))) 635 if (!(enc.json.flags & (F_ASCII | F_LATIN1 | F_UTF8)))
583 SvUTF8_on (enc.sv); 636 SvUTF8_on (enc.sv);
584 637
585 if (enc.flags & F_SHRINK) 638 if (enc.json.flags & F_SHRINK)
586 shrink (enc.sv); 639 shrink (enc.sv);
587 640
588 return enc.sv; 641 return enc.sv;
589} 642}
590 643
595typedef struct 648typedef struct
596{ 649{
597 char *cur; // current parser pointer 650 char *cur; // current parser pointer
598 char *end; // end of input string 651 char *end; // end of input string
599 const char *err; // parse error, if != 0 652 const char *err; // parse error, if != 0
600 U32 flags; // F_* 653 JSON json;
601 U32 depth; // recursion depth 654 U32 depth; // recursion depth
602 U32 maxdepth; // recursion depth limit 655 U32 maxdepth; // recursion depth limit
603} dec_t; 656} dec_t;
604 657
605inline void 658inline void
956} 1009}
957 1010
958static SV * 1011static SV *
959decode_hv (dec_t *dec) 1012decode_hv (dec_t *dec)
960{ 1013{
1014 SV *sv;
961 HV *hv = newHV (); 1015 HV *hv = newHV ();
962 1016
963 DEC_INC_DEPTH; 1017 DEC_INC_DEPTH;
964 decode_ws (dec); 1018 decode_ws (dec);
965 1019
966 if (*dec->cur == '}') 1020 if (*dec->cur == '}')
967 ++dec->cur; 1021 ++dec->cur;
968 else 1022 else
969 for (;;) 1023 for (;;)
970 { 1024 {
971 SV *key, *value;
972
973 decode_ws (dec); EXPECT_CH ('"'); 1025 decode_ws (dec); EXPECT_CH ('"');
974 1026
975 key = decode_str (dec); 1027 // heuristic: assume that
976 if (!key) 1028 // a) decode_str + hv_store_ent are abysmally slow.
977 goto fail; 1029 // b) most hash keys are short, simple ascii text.
1030 // => try to "fast-match" such strings to avoid
1031 // the overhead of decode_str + hv_store_ent.
1032 {
1033 SV *value;
1034 char *p = dec->cur;
1035 char *e = p + 24; // only try up to 24 bytes
978 1036
979 decode_ws (dec); EXPECT_CH (':'); 1037 for (;;)
980
981 value = decode_sv (dec);
982 if (!value)
983 { 1038 {
1039 // the >= 0x80 is true on most architectures
1040 if (p == e || *p < 0x20 || *p >= 0x80 || *p == '\\')
1041 {
1042 // slow path, back up and use decode_str
1043 SV *key = decode_str (dec);
1044 if (!key)
1045 goto fail;
1046
1047 decode_ws (dec); EXPECT_CH (':');
1048
1049 value = decode_sv (dec);
1050 if (!value)
1051 {
1052 SvREFCNT_dec (key);
1053 goto fail;
1054 }
1055
1056 hv_store_ent (hv, key, value, 0);
984 SvREFCNT_dec (key); 1057 SvREFCNT_dec (key);
1058
1059 break;
1060 }
1061 else if (*p == '"')
1062 {
1063 // fast path, got a simple key
1064 char *key = dec->cur;
1065 int len = p - key;
1066 dec->cur = p + 1;
1067
1068 decode_ws (dec); EXPECT_CH (':');
1069
1070 value = decode_sv (dec);
1071 if (!value)
985 goto fail; 1072 goto fail;
1073
1074 hv_store (hv, key, len, value, 0);
1075
1076 break;
1077 }
1078
1079 ++p;
986 } 1080 }
987 1081 }
988 hv_store_ent (hv, key, value, 0);
989 SvREFCNT_dec (key);
990 1082
991 decode_ws (dec); 1083 decode_ws (dec);
992 1084
993 if (*dec->cur == '}') 1085 if (*dec->cur == '}')
994 { 1086 {
1001 1093
1002 ++dec->cur; 1094 ++dec->cur;
1003 } 1095 }
1004 1096
1005 DEC_DEC_DEPTH; 1097 DEC_DEC_DEPTH;
1006 return newRV_noinc ((SV *)hv); 1098 sv = newRV_noinc ((SV *)hv);
1099
1100 // check filter callbacks
1101 if (dec->json.flags & F_HOOK)
1102 {
1103 ENTER; SAVETMPS;
1104
1105 if (dec->json.cb_sk_object && HvKEYS (hv) == 1)
1106 {
1107 int count;
1108
1109 dSP; PUSHMARK (SP);
1110 XPUSHs (sv_2mortal (sv));
1111
1112 PUTBACK; count = call_sv (dec->json.cb_sk_object, G_ARRAY); SPAGAIN;
1113
1114 if (count == 1)
1115 {
1116 sv = newSVsv (POPs);
1117 goto filter_ok;
1118 }
1119
1120 SvREFCNT_inc (sv);
1121 }
1122
1123 if (dec->json.cb_object)
1124 {
1125 int count;
1126
1127 dSP; ENTER; SAVETMPS; PUSHMARK (SP);
1128 XPUSHs (sv_2mortal (sv));
1129
1130 PUTBACK; count = call_sv (dec->json.cb_object, G_ARRAY); SPAGAIN;
1131
1132 if (count == 1)
1133 {
1134 sv = newSVsv (POPs);
1135 goto filter_ok;
1136 }
1137
1138 SvREFCNT_inc (sv);
1139 }
1140
1141filter_ok:
1142 FREETMPS; LEAVE;
1143 }
1144
1145 return sv;
1007 1146
1008fail: 1147fail:
1009 SvREFCNT_dec (hv); 1148 SvREFCNT_dec (hv);
1010 DEC_DEC_DEPTH; 1149 DEC_DEC_DEPTH;
1011 return 0; 1150 return 0;
1031 1170
1032 case 't': 1171 case 't':
1033 if (dec->end - dec->cur >= 4 && !memcmp (dec->cur, "true", 4)) 1172 if (dec->end - dec->cur >= 4 && !memcmp (dec->cur, "true", 4))
1034 { 1173 {
1035 dec->cur += 4; 1174 dec->cur += 4;
1036 return newSViv (1); 1175 return SvREFCNT_inc (json_true);
1037 } 1176 }
1038 else 1177 else
1039 ERR ("'true' expected"); 1178 ERR ("'true' expected");
1040 1179
1041 break; 1180 break;
1042 1181
1043 case 'f': 1182 case 'f':
1044 if (dec->end - dec->cur >= 5 && !memcmp (dec->cur, "false", 5)) 1183 if (dec->end - dec->cur >= 5 && !memcmp (dec->cur, "false", 5))
1045 { 1184 {
1046 dec->cur += 5; 1185 dec->cur += 5;
1047 return newSViv (0); 1186 return SvREFCNT_inc (json_false);
1048 } 1187 }
1049 else 1188 else
1050 ERR ("'false' expected"); 1189 ERR ("'false' expected");
1051 1190
1052 break; 1191 break;
1070fail: 1209fail:
1071 return 0; 1210 return 0;
1072} 1211}
1073 1212
1074static SV * 1213static SV *
1075decode_json (SV *string, U32 flags, UV *offset_return) 1214decode_json (SV *string, JSON *json, UV *offset_return)
1076{ 1215{
1077 dec_t dec; 1216 dec_t dec;
1078 UV offset; 1217 UV offset;
1079 SV *sv; 1218 SV *sv;
1080 1219
1081 SvGETMAGIC (string); 1220 SvGETMAGIC (string);
1082 SvUPGRADE (string, SVt_PV); 1221 SvUPGRADE (string, SVt_PV);
1083 1222
1223 if (json->flags & F_MAXSIZE && SvCUR (string) > DEC_SIZE (json->flags))
1224 croak ("attempted decode of JSON text of %lu bytes size, but max_size is set to %lu",
1225 (unsigned long)SvCUR (string), (unsigned long)DEC_SIZE (json->flags));
1226
1084 if (flags & F_UTF8) 1227 if (json->flags & F_UTF8)
1085 sv_utf8_downgrade (string, 0); 1228 sv_utf8_downgrade (string, 0);
1086 else 1229 else
1087 sv_utf8_upgrade (string); 1230 sv_utf8_upgrade (string);
1088 1231
1089 SvGROW (string, SvCUR (string) + 1); // should basically be a NOP 1232 SvGROW (string, SvCUR (string) + 1); // should basically be a NOP
1090 1233
1091 dec.flags = flags; 1234 dec.json = *json;
1092 dec.cur = SvPVX (string); 1235 dec.cur = SvPVX (string);
1093 dec.end = SvEND (string); 1236 dec.end = SvEND (string);
1094 dec.err = 0; 1237 dec.err = 0;
1095 dec.depth = 0; 1238 dec.depth = 0;
1096 dec.maxdepth = DEC_DEPTH (dec.flags); 1239 dec.maxdepth = DEC_DEPTH (dec.json.flags);
1240
1241 if (dec.json.cb_object || dec.json.cb_sk_object)
1242 dec.json.flags |= F_HOOK;
1097 1243
1098 *dec.end = 0; // this should basically be a nop, too, but make sure it's there 1244 *dec.end = 0; // this should basically be a nop, too, but make sure it's there
1099 sv = decode_sv (&dec); 1245 sv = decode_sv (&dec);
1100 1246
1101 if (!(offset_return || !sv)) 1247 if (!(offset_return || !sv))
1111 } 1257 }
1112 } 1258 }
1113 1259
1114 if (offset_return || !sv) 1260 if (offset_return || !sv)
1115 { 1261 {
1116 offset = dec.flags & F_UTF8 1262 offset = dec.json.flags & F_UTF8
1117 ? dec.cur - SvPVX (string) 1263 ? dec.cur - SvPVX (string)
1118 : utf8_distance (dec.cur, SvPVX (string)); 1264 : utf8_distance (dec.cur, SvPVX (string));
1119 1265
1120 if (offset_return) 1266 if (offset_return)
1121 *offset_return = offset; 1267 *offset_return = offset;
1140 dec.cur != dec.end ? SvPV_nolen (uni) : "(end of string)"); 1286 dec.cur != dec.end ? SvPV_nolen (uni) : "(end of string)");
1141 } 1287 }
1142 1288
1143 sv = sv_2mortal (sv); 1289 sv = sv_2mortal (sv);
1144 1290
1145 if (!(dec.flags & F_ALLOW_NONREF) && !SvROK (sv)) 1291 if (!(dec.json.flags & F_ALLOW_NONREF) && !SvROK (sv))
1146 croak ("JSON text must be an object or array (but found number, string, true, false or null, use allow_nonref to allow this)"); 1292 croak ("JSON text must be an object or array (but found number, string, true, false or null, use allow_nonref to allow this)");
1147 1293
1148 return sv; 1294 return sv;
1149} 1295}
1150 1296
1162 i >= '0' && i <= '9' ? i - '0' 1308 i >= '0' && i <= '9' ? i - '0'
1163 : i >= 'a' && i <= 'f' ? i - 'a' + 10 1309 : i >= 'a' && i <= 'f' ? i - 'a' + 10
1164 : i >= 'A' && i <= 'F' ? i - 'A' + 10 1310 : i >= 'A' && i <= 'F' ? i - 'A' + 10
1165 : -1; 1311 : -1;
1166 1312
1167 json_stash = gv_stashpv ("JSON::XS", 1); 1313 json_stash = gv_stashpv ("JSON::XS" , 1);
1314 json_boolean_stash = gv_stashpv ("JSON::XS::Boolean", 1);
1315
1316 json_true = get_sv ("JSON::XS::true" , 1); SvREADONLY_on (json_true );
1317 json_false = get_sv ("JSON::XS::false", 1); SvREADONLY_on (json_false);
1168} 1318}
1169 1319
1170PROTOTYPES: DISABLE 1320PROTOTYPES: DISABLE
1171 1321
1172SV *new (char *dummy) 1322void new (char *klass)
1173 CODE: 1323 PPCODE:
1174 RETVAL = sv_bless (newRV_noinc (newSVuv (F_DEFAULT)), json_stash); 1324{
1175 OUTPUT: 1325 SV *pv = NEWSV (0, sizeof (JSON));
1176 RETVAL 1326 SvPOK_only (pv);
1327 Zero (SvPVX (pv), 1, JSON);
1328 ((JSON *)SvPVX (pv))->flags = F_DEFAULT;
1329 XPUSHs (sv_2mortal (sv_bless (newRV_noinc (pv), json_stash)));
1330}
1177 1331
1178SV *ascii (SV *self, int enable = 1) 1332void ascii (JSON *self, int enable = 1)
1179 ALIAS: 1333 ALIAS:
1180 ascii = F_ASCII 1334 ascii = F_ASCII
1181 latin1 = F_LATIN1 1335 latin1 = F_LATIN1
1182 utf8 = F_UTF8 1336 utf8 = F_UTF8
1183 indent = F_INDENT 1337 indent = F_INDENT
1184 canonical = F_CANONICAL 1338 canonical = F_CANONICAL
1185 space_before = F_SPACE_BEFORE 1339 space_before = F_SPACE_BEFORE
1186 space_after = F_SPACE_AFTER 1340 space_after = F_SPACE_AFTER
1187 pretty = F_PRETTY 1341 pretty = F_PRETTY
1188 allow_nonref = F_ALLOW_NONREF 1342 allow_nonref = F_ALLOW_NONREF
1189 shrink = F_SHRINK 1343 shrink = F_SHRINK
1344 allow_blessed = F_ALLOW_BLESSED
1345 convert_blessed = F_CONV_BLESSED
1190 CODE: 1346 PPCODE:
1191{ 1347{
1192 UV *uv = SvJSON (self);
1193 if (enable) 1348 if (enable)
1194 *uv |= ix; 1349 self->flags |= ix;
1195 else 1350 else
1196 *uv &= ~ix; 1351 self->flags &= ~ix;
1197 1352
1198 RETVAL = newSVsv (self); 1353 XPUSHs (ST (0));
1199} 1354}
1200 OUTPUT:
1201 RETVAL
1202 1355
1203SV *max_depth (SV *self, UV max_depth = 0x80000000UL) 1356void max_depth (JSON *self, UV max_depth = 0x80000000UL)
1204 CODE: 1357 PPCODE:
1205{ 1358{
1206 UV *uv = SvJSON (self);
1207 UV log2 = 0; 1359 UV log2 = 0;
1208 1360
1209 if (max_depth > 0x80000000UL) max_depth = 0x80000000UL; 1361 if (max_depth > 0x80000000UL) max_depth = 0x80000000UL;
1210 1362
1211 while ((1UL << log2) < max_depth) 1363 while ((1UL << log2) < max_depth)
1212 ++log2; 1364 ++log2;
1213 1365
1214 *uv = *uv & ~F_MAXDEPTH | (log2 << S_MAXDEPTH); 1366 self->flags = self->flags & ~F_MAXDEPTH | (log2 << S_MAXDEPTH);
1215 1367
1216 RETVAL = newSVsv (self); 1368 XPUSHs (ST (0));
1217} 1369}
1218 OUTPUT:
1219 RETVAL
1220 1370
1221void encode (SV *self, SV *scalar) 1371void max_size (JSON *self, UV max_size = 0)
1222 PPCODE: 1372 PPCODE:
1223 XPUSHs (encode_json (scalar, *SvJSON (self))); 1373{
1374 UV log2 = 0;
1224 1375
1225void decode (SV *self, SV *jsonstr) 1376 if (max_size > 0x80000000UL) max_size = 0x80000000UL;
1377 if (max_size == 1) max_size = 2;
1378
1379 while ((1UL << log2) < max_size)
1380 ++log2;
1381
1382 self->flags = self->flags & ~F_MAXSIZE | (log2 << S_MAXSIZE);
1383
1384 XPUSHs (ST (0));
1385}
1386
1387void filter_json_object (JSON *self, SV *cb = &PL_sv_undef)
1388 ALIAS:
1389 filter_json_single_key_object = 1
1226 PPCODE: 1390 PPCODE:
1391{
1392 SV **svp;
1393
1394 if (!SvOK (cb))
1395 cb = 0;
1396 else
1397 cb = newSVsv (cb);
1398
1399 switch (ix)
1400 {
1401 case 0: svp = &self->cb_object ; break;
1402 case 1: svp = &self->cb_sk_object; break;
1403 }
1404
1405 if (*svp)
1406 SvREFCNT_dec (*svp);
1407
1408 *svp = cb;
1409
1410 XPUSHs (ST (0));
1411}
1412
1413void encode (JSON *self, SV *scalar)
1414 PPCODE:
1415 XPUSHs (encode_json (scalar, self));
1416
1417void decode (JSON *self, SV *jsonstr)
1418 PPCODE:
1227 XPUSHs (decode_json (jsonstr, *SvJSON (self), 0)); 1419 XPUSHs (decode_json (jsonstr, self, 0));
1228 1420
1229void decode_prefix (SV *self, SV *jsonstr) 1421void decode_prefix (JSON *self, SV *jsonstr)
1230 PPCODE: 1422 PPCODE:
1231{ 1423{
1232 UV offset; 1424 UV offset;
1233 EXTEND (SP, 2); 1425 EXTEND (SP, 2);
1234 PUSHs (decode_json (jsonstr, *SvJSON (self), &offset)); 1426 PUSHs (decode_json (jsonstr, self, &offset));
1235 PUSHs (sv_2mortal (newSVuv (offset))); 1427 PUSHs (sv_2mortal (newSVuv (offset)));
1236} 1428}
1237 1429
1238PROTOTYPES: ENABLE 1430PROTOTYPES: ENABLE
1239 1431
1240void to_json (SV *scalar) 1432void to_json (SV *scalar)
1241 ALIAS:
1242 objToJson = 0
1243 PPCODE: 1433 PPCODE:
1434{
1435 JSON json = { F_DEFAULT | F_UTF8 };
1244 XPUSHs (encode_json (scalar, F_DEFAULT | F_UTF8)); 1436 XPUSHs (encode_json (scalar, &json));
1437}
1245 1438
1246void from_json (SV *jsonstr) 1439void from_json (SV *jsonstr)
1247 ALIAS:
1248 jsonToObj = 0
1249 PPCODE: 1440 PPCODE:
1441{
1442 JSON json = { F_DEFAULT | F_UTF8 };
1250 XPUSHs (decode_json (jsonstr, F_DEFAULT | F_UTF8, 0)); 1443 XPUSHs (decode_json (jsonstr, &json, 0));
1444}
1251 1445

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines