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.40 by root, Tue Jun 12 01:27:02 2007 UTC vs.
Revision 1.49 by root, Sun Jul 1 23:40:07 2007 UTC

9 9
10#if defined(__BORLANDC__) || defined(_MSC_VER) 10#if defined(__BORLANDC__) || defined(_MSC_VER)
11# define snprintf _snprintf // C compilers have this in stdio.h 11# define snprintf _snprintf // C compilers have this in stdio.h
12#endif 12#endif
13 13
14// some old perls do not have this, try to make it work, no
15// guarentees, though. if it breaks, you get to keep the pieces.
16#ifndef UTF8_MAXBYTES
17# define UTF8_MAXBYTES 13
18#endif
19
14#define F_ASCII 0x00000001UL 20#define F_ASCII 0x00000001UL
15#define F_LATIN1 0x00000002UL 21#define F_LATIN1 0x00000002UL
16#define F_UTF8 0x00000004UL 22#define F_UTF8 0x00000004UL
17#define F_INDENT 0x00000008UL 23#define F_INDENT 0x00000008UL
18#define F_CANONICAL 0x00000010UL 24#define F_CANONICAL 0x00000010UL
19#define F_SPACE_BEFORE 0x00000020UL 25#define F_SPACE_BEFORE 0x00000020UL
20#define F_SPACE_AFTER 0x00000040UL 26#define F_SPACE_AFTER 0x00000040UL
21#define F_ALLOW_NONREF 0x00000100UL 27#define F_ALLOW_NONREF 0x00000100UL
22#define F_SHRINK 0x00000200UL 28#define F_SHRINK 0x00000200UL
29#define F_ALLOW_BLESSED 0x00000400UL
30#define F_CONV_BLESSED 0x00000800UL
23#define F_MAXDEPTH 0xf8000000UL 31#define F_MAXDEPTH 0xf8000000UL
24#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
25 36
26#define DEC_DEPTH(flags) (1UL << ((flags & F_MAXDEPTH) >> S_MAXDEPTH)) 37#define DEC_DEPTH(flags) (1UL << ((flags & F_MAXDEPTH) >> S_MAXDEPTH))
27 38#define DEC_SIZE(flags) (1UL << ((flags & F_MAXSIZE ) >> S_MAXSIZE ))
28// F_SELFCONVERT? <=> to_json/toJson
29// F_BLESSED? <=> { $__class__$ => }
30 39
31#define F_PRETTY F_INDENT | F_SPACE_BEFORE | F_SPACE_AFTER 40#define F_PRETTY F_INDENT | F_SPACE_BEFORE | F_SPACE_AFTER
32#define F_DEFAULT (9UL << S_MAXDEPTH) 41#define F_DEFAULT (9UL << S_MAXDEPTH)
33 42
34#define INIT_SIZE 32 // initial scalar size to be allocated 43#define INIT_SIZE 32 // initial scalar size to be allocated
48#endif 57#endif
49 58
50#define expect_false(expr) expect ((expr) != 0, 0) 59#define expect_false(expr) expect ((expr) != 0, 0)
51#define expect_true(expr) expect ((expr) != 0, 1) 60#define expect_true(expr) expect ((expr) != 0, 1)
52 61
53static 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;
54 69
55///////////////////////////////////////////////////////////////////////////// 70/////////////////////////////////////////////////////////////////////////////
56// utility functions 71// utility functions
57 72
58static UV * 73inline void
59SvJSON (SV *sv)
60{
61 if (!(SvROK (sv) && SvOBJECT (SvRV (sv)) && SvSTASH (SvRV (sv)) == json_stash))
62 croak ("object is not of type JSON::XS");
63
64 return &SvUVX (SvRV (sv));
65}
66
67static void
68shrink (SV *sv) 74shrink (SV *sv)
69{ 75{
70 sv_utf8_downgrade (sv, 1); 76 sv_utf8_downgrade (sv, 1);
71 if (SvLEN (sv) > SvCUR (sv) + 1) 77 if (SvLEN (sv) > SvCUR (sv) + 1)
72 { 78 {
107typedef struct 113typedef struct
108{ 114{
109 char *cur; // SvPVX (sv) + current output position 115 char *cur; // SvPVX (sv) + current output position
110 char *end; // SvEND (sv) 116 char *end; // SvEND (sv)
111 SV *sv; // result scalar 117 SV *sv; // result scalar
112 U32 flags; // F_* 118 JSON json;
113 U32 indent; // indentation level 119 U32 indent; // indentation level
114 U32 maxdepth; // max. indentation/recursion level 120 U32 maxdepth; // max. indentation/recursion level
115} enc_t; 121} enc_t;
116 122
117inline void 123inline void
191 } 197 }
192 198
193 if (uch > 0x10FFFFUL) 199 if (uch > 0x10FFFFUL)
194 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);
195 201
196 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))
197 { 203 {
198 if (uch > 0xFFFFUL) 204 if (uch > 0xFFFFUL)
199 { 205 {
200 need (enc, len += 11); 206 need (enc, len += 11);
201 sprintf (enc->cur, "\\u%04x\\u%04x", 207 sprintf (enc->cur, "\\u%04x\\u%04x",
215 *enc->cur++ = hexdigit [(uch >> 0) & 15]; 221 *enc->cur++ = hexdigit [(uch >> 0) & 15];
216 } 222 }
217 223
218 str += clen; 224 str += clen;
219 } 225 }
220 else if (enc->flags & F_LATIN1) 226 else if (enc->json.flags & F_LATIN1)
221 { 227 {
222 *enc->cur++ = uch; 228 *enc->cur++ = uch;
223 str += clen; 229 str += clen;
224 } 230 }
225 else if (is_utf8) 231 else if (is_utf8)
246} 252}
247 253
248inline void 254inline void
249encode_indent (enc_t *enc) 255encode_indent (enc_t *enc)
250{ 256{
251 if (enc->flags & F_INDENT) 257 if (enc->json.flags & F_INDENT)
252 { 258 {
253 int spaces = enc->indent * INDENT_STEP; 259 int spaces = enc->indent * INDENT_STEP;
254 260
255 need (enc, spaces); 261 need (enc, spaces);
256 memset (enc->cur, ' ', spaces); 262 memset (enc->cur, ' ', spaces);
266} 272}
267 273
268inline void 274inline void
269encode_nl (enc_t *enc) 275encode_nl (enc_t *enc)
270{ 276{
271 if (enc->flags & F_INDENT) 277 if (enc->json.flags & F_INDENT)
272 { 278 {
273 need (enc, 1); 279 need (enc, 1);
274 encode_ch (enc, '\n'); 280 encode_ch (enc, '\n');
275 } 281 }
276} 282}
278inline void 284inline void
279encode_comma (enc_t *enc) 285encode_comma (enc_t *enc)
280{ 286{
281 encode_ch (enc, ','); 287 encode_ch (enc, ',');
282 288
283 if (enc->flags & F_INDENT) 289 if (enc->json.flags & F_INDENT)
284 encode_nl (enc); 290 encode_nl (enc);
285 else if (enc->flags & F_SPACE_AFTER) 291 else if (enc->json.flags & F_SPACE_AFTER)
286 encode_space (enc); 292 encode_space (enc);
287} 293}
288 294
289static void encode_sv (enc_t *enc, SV *sv); 295static void encode_sv (enc_t *enc, SV *sv);
290 296
333 else 339 else
334 encode_str (enc, HeKEY (he), HeKLEN (he), HeKUTF8 (he)); 340 encode_str (enc, HeKEY (he), HeKLEN (he), HeKUTF8 (he));
335 341
336 encode_ch (enc, '"'); 342 encode_ch (enc, '"');
337 343
338 if (enc->flags & F_SPACE_BEFORE) encode_space (enc); 344 if (enc->json.flags & F_SPACE_BEFORE) encode_space (enc);
339 encode_ch (enc, ':'); 345 encode_ch (enc, ':');
340 if (enc->flags & F_SPACE_AFTER ) encode_space (enc); 346 if (enc->json.flags & F_SPACE_AFTER ) encode_space (enc);
341 encode_sv (enc, HeVAL (he)); 347 encode_sv (enc, HeVAL (he));
342} 348}
343 349
344// compare hash entries, used when all keys are bytestrings 350// compare hash entries, used when all keys are bytestrings
345static int 351static int
380 { 386 {
381 // for canonical output we have to sort by keys first 387 // for canonical output we have to sort by keys first
382 // actually, this is mostly due to the stupid so-called 388 // actually, this is mostly due to the stupid so-called
383 // security workaround added somewhere in 5.8.x. 389 // security workaround added somewhere in 5.8.x.
384 // that randomises hash orderings 390 // that randomises hash orderings
385 if (enc->flags & F_CANONICAL) 391 if (enc->json.flags & F_CANONICAL)
386 { 392 {
387 int fast = 1; 393 int fast = 1;
388 HE *he; 394 HE *he;
389#if defined(__BORLANDC__) || defined(_MSC_VER) 395#if defined(__BORLANDC__) || defined(_MSC_VER)
390 HE **hes = _alloca (count * sizeof (HE)); 396 HE **hes = _alloca (count * sizeof (HE));
462 svtype svt; 468 svtype svt;
463 469
464 SvGETMAGIC (sv); 470 SvGETMAGIC (sv);
465 svt = SvTYPE (sv); 471 svt = SvTYPE (sv);
466 472
473 if (expect_false (SvOBJECT (sv)))
474 {
475 if (SvSTASH (sv) == json_boolean_stash)
476 {
477 if (SvIV (sv) == 0)
478 encode_str (enc, "false", 5, 0);
479 else
480 encode_str (enc, "true", 4, 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 }
467 if (svt == SVt_PVHV) 523 else if (svt == SVt_PVHV)
468 encode_hv (enc, (HV *)sv); 524 encode_hv (enc, (HV *)sv);
469 else if (svt == SVt_PVAV) 525 else if (svt == SVt_PVAV)
470 encode_av (enc, (AV *)sv); 526 encode_av (enc, (AV *)sv);
471 else if (svt < SVt_PVAV) 527 else if (svt < SVt_PVAV)
472 { 528 {
551 croak ("encountered perl type (%s,0x%x) that JSON cannot handle, you might want to report this", 607 croak ("encountered perl type (%s,0x%x) that JSON cannot handle, you might want to report this",
552 SvPV_nolen (sv), SvFLAGS (sv)); 608 SvPV_nolen (sv), SvFLAGS (sv));
553} 609}
554 610
555static SV * 611static SV *
556encode_json (SV *scalar, U32 flags) 612encode_json (SV *scalar, JSON *json)
557{ 613{
558 enc_t enc; 614 enc_t enc;
559 615
560 if (!(flags & F_ALLOW_NONREF) && !SvROK (scalar)) 616 if (!(json->flags & F_ALLOW_NONREF) && !SvROK (scalar))
561 croak ("hash- or arrayref expected (not a simple scalar, use allow_nonref to allow this)"); 617 croak ("hash- or arrayref expected (not a simple scalar, use allow_nonref to allow this)");
562 618
563 enc.flags = flags; 619 enc.json = *json;
564 enc.sv = sv_2mortal (NEWSV (0, INIT_SIZE)); 620 enc.sv = sv_2mortal (NEWSV (0, INIT_SIZE));
565 enc.cur = SvPVX (enc.sv); 621 enc.cur = SvPVX (enc.sv);
566 enc.end = SvEND (enc.sv); 622 enc.end = SvEND (enc.sv);
567 enc.indent = 0; 623 enc.indent = 0;
568 enc.maxdepth = DEC_DEPTH (flags); 624 enc.maxdepth = DEC_DEPTH (enc.json.flags);
569 625
570 SvPOK_only (enc.sv); 626 SvPOK_only (enc.sv);
571 encode_sv (&enc, scalar); 627 encode_sv (&enc, scalar);
572 628
573 SvCUR_set (enc.sv, enc.cur - SvPVX (enc.sv)); 629 SvCUR_set (enc.sv, enc.cur - SvPVX (enc.sv));
574 *SvEND (enc.sv) = 0; // many xs functions expect a trailing 0 for text strings 630 *SvEND (enc.sv) = 0; // many xs functions expect a trailing 0 for text strings
575 631
576 if (!(flags & (F_ASCII | F_LATIN1 | F_UTF8))) 632 if (!(enc.json.flags & (F_ASCII | F_LATIN1 | F_UTF8)))
577 SvUTF8_on (enc.sv); 633 SvUTF8_on (enc.sv);
578 634
579 if (enc.flags & F_SHRINK) 635 if (enc.json.flags & F_SHRINK)
580 shrink (enc.sv); 636 shrink (enc.sv);
581 637
582 return enc.sv; 638 return enc.sv;
583} 639}
584 640
589typedef struct 645typedef struct
590{ 646{
591 char *cur; // current parser pointer 647 char *cur; // current parser pointer
592 char *end; // end of input string 648 char *end; // end of input string
593 const char *err; // parse error, if != 0 649 const char *err; // parse error, if != 0
594 U32 flags; // F_* 650 JSON json;
595 U32 depth; // recursion depth 651 U32 depth; // recursion depth
596 U32 maxdepth; // recursion depth limit 652 U32 maxdepth; // recursion depth limit
597} dec_t; 653} dec_t;
598 654
599inline void 655inline void
950} 1006}
951 1007
952static SV * 1008static SV *
953decode_hv (dec_t *dec) 1009decode_hv (dec_t *dec)
954{ 1010{
1011 SV *sv;
955 HV *hv = newHV (); 1012 HV *hv = newHV ();
956 1013
957 DEC_INC_DEPTH; 1014 DEC_INC_DEPTH;
958 decode_ws (dec); 1015 decode_ws (dec);
959 1016
960 if (*dec->cur == '}') 1017 if (*dec->cur == '}')
961 ++dec->cur; 1018 ++dec->cur;
962 else 1019 else
963 for (;;) 1020 for (;;)
964 { 1021 {
965 SV *key, *value;
966
967 decode_ws (dec); EXPECT_CH ('"'); 1022 decode_ws (dec); EXPECT_CH ('"');
968 1023
969 key = decode_str (dec); 1024 // heuristic: assume that
970 if (!key) 1025 // a) decode_str + hv_store_ent are abysmally slow.
971 goto fail; 1026 // b) most hash keys are short, simple ascii text.
1027 // => try to "fast-match" such strings to avoid
1028 // the overhead of decode_str + hv_store_ent.
1029 {
1030 SV *value;
1031 char *p = dec->cur;
1032 char *e = p + 24; // only try up to 24 bytes
972 1033
973 decode_ws (dec); EXPECT_CH (':'); 1034 for (;;)
974
975 value = decode_sv (dec);
976 if (!value)
977 { 1035 {
1036 // the >= 0x80 is true on most architectures
1037 if (p == e || *p < 0x20 || *p >= 0x80 || *p == '\\')
1038 {
1039 // slow path, back up and use decode_str
1040 SV *key = decode_str (dec);
1041 if (!key)
1042 goto fail;
1043
1044 decode_ws (dec); EXPECT_CH (':');
1045
1046 value = decode_sv (dec);
1047 if (!value)
1048 {
1049 SvREFCNT_dec (key);
1050 goto fail;
1051 }
1052
1053 hv_store_ent (hv, key, value, 0);
978 SvREFCNT_dec (key); 1054 SvREFCNT_dec (key);
1055
1056 break;
1057 }
1058 else if (*p == '"')
1059 {
1060 // fast path, got a simple key
1061 char *key = dec->cur;
1062 int len = p - key;
1063 dec->cur = p + 1;
1064
1065 decode_ws (dec); EXPECT_CH (':');
1066
1067 value = decode_sv (dec);
1068 if (!value)
979 goto fail; 1069 goto fail;
1070
1071 hv_store (hv, key, len, value, 0);
1072
1073 break;
1074 }
1075
1076 ++p;
980 } 1077 }
981 1078 }
982 hv_store_ent (hv, key, value, 0);
983 SvREFCNT_dec (key);
984 1079
985 decode_ws (dec); 1080 decode_ws (dec);
986 1081
987 if (*dec->cur == '}') 1082 if (*dec->cur == '}')
988 { 1083 {
995 1090
996 ++dec->cur; 1091 ++dec->cur;
997 } 1092 }
998 1093
999 DEC_DEC_DEPTH; 1094 DEC_DEC_DEPTH;
1095 sv = newRV_noinc ((SV *)hv);
1096
1097 // check filter callbacks
1098 if (dec->json.flags & F_HOOK)
1099 {
1100 ENTER; SAVETMPS;
1101
1102 if (HvKEYS (hv) == 1 && dec->json.cb_sk_object)
1103 {
1104 int count;
1105
1106 dSP; PUSHMARK (SP);
1107 XPUSHs (sv_2mortal (sv));
1108
1109 PUTBACK; count = call_sv (dec->json.cb_sk_object, G_ARRAY); SPAGAIN;
1110
1111 if (count == 1)
1112 sv = newSVsv (POPs);
1113 else
1114 SvREFCNT_inc (sv);
1115 }
1116
1117 if (dec->json.cb_object)
1118 {
1119 int count;
1120
1121 dSP; ENTER; SAVETMPS; PUSHMARK (SP);
1122 XPUSHs (sv_2mortal (sv));
1123
1124 PUTBACK; count = call_sv (dec->json.cb_object, G_ARRAY); SPAGAIN;
1125
1126 if (count == 1)
1127 sv = newSVsv (POPs);
1128 else
1129 SvREFCNT_inc (sv);
1130 }
1131
1132 FREETMPS; LEAVE;
1133 }
1134
1000 return newRV_noinc ((SV *)hv); 1135 return newRV_noinc ((SV *)hv);
1001 1136
1002fail: 1137fail:
1003 SvREFCNT_dec (hv); 1138 SvREFCNT_dec (hv);
1004 DEC_DEC_DEPTH; 1139 DEC_DEC_DEPTH;
1025 1160
1026 case 't': 1161 case 't':
1027 if (dec->end - dec->cur >= 4 && !memcmp (dec->cur, "true", 4)) 1162 if (dec->end - dec->cur >= 4 && !memcmp (dec->cur, "true", 4))
1028 { 1163 {
1029 dec->cur += 4; 1164 dec->cur += 4;
1030 return newSViv (1); 1165 return SvREFCNT_inc (json_true);
1031 } 1166 }
1032 else 1167 else
1033 ERR ("'true' expected"); 1168 ERR ("'true' expected");
1034 1169
1035 break; 1170 break;
1036 1171
1037 case 'f': 1172 case 'f':
1038 if (dec->end - dec->cur >= 5 && !memcmp (dec->cur, "false", 5)) 1173 if (dec->end - dec->cur >= 5 && !memcmp (dec->cur, "false", 5))
1039 { 1174 {
1040 dec->cur += 5; 1175 dec->cur += 5;
1041 return newSViv (0); 1176 return SvREFCNT_inc (json_false);
1042 } 1177 }
1043 else 1178 else
1044 ERR ("'false' expected"); 1179 ERR ("'false' expected");
1045 1180
1046 break; 1181 break;
1064fail: 1199fail:
1065 return 0; 1200 return 0;
1066} 1201}
1067 1202
1068static SV * 1203static SV *
1069decode_json (SV *string, U32 flags, UV *offset_return) 1204decode_json (SV *string, JSON *json, UV *offset_return)
1070{ 1205{
1071 dec_t dec; 1206 dec_t dec;
1072 UV offset; 1207 UV offset;
1073 SV *sv; 1208 SV *sv;
1074 1209
1075 SvGETMAGIC (string); 1210 SvGETMAGIC (string);
1076 SvUPGRADE (string, SVt_PV); 1211 SvUPGRADE (string, SVt_PV);
1077 1212
1213 if (json->flags & F_MAXSIZE && SvCUR (string) > DEC_SIZE (json->flags))
1214 croak ("attempted decode of JSON text of %lu bytes size, but max_size is set to %lu",
1215 (unsigned long)SvCUR (string), (unsigned long)DEC_SIZE (json->flags));
1216
1078 if (flags & F_UTF8) 1217 if (json->flags & F_UTF8)
1079 sv_utf8_downgrade (string, 0); 1218 sv_utf8_downgrade (string, 0);
1080 else 1219 else
1081 sv_utf8_upgrade (string); 1220 sv_utf8_upgrade (string);
1082 1221
1083 SvGROW (string, SvCUR (string) + 1); // should basically be a NOP 1222 SvGROW (string, SvCUR (string) + 1); // should basically be a NOP
1084 1223
1085 dec.flags = flags; 1224 dec.json = *json;
1086 dec.cur = SvPVX (string); 1225 dec.cur = SvPVX (string);
1087 dec.end = SvEND (string); 1226 dec.end = SvEND (string);
1088 dec.err = 0; 1227 dec.err = 0;
1089 dec.depth = 0; 1228 dec.depth = 0;
1090 dec.maxdepth = DEC_DEPTH (dec.flags); 1229 dec.maxdepth = DEC_DEPTH (dec.json.flags);
1230
1231 if (dec.json.cb_object || dec.json.cb_sk_object)
1232 dec.json.flags |= F_HOOK;
1091 1233
1092 *dec.end = 0; // this should basically be a nop, too, but make sure it's there 1234 *dec.end = 0; // this should basically be a nop, too, but make sure it's there
1093 sv = decode_sv (&dec); 1235 sv = decode_sv (&dec);
1094 1236
1095 if (!(offset_return || !sv)) 1237 if (!(offset_return || !sv))
1105 } 1247 }
1106 } 1248 }
1107 1249
1108 if (offset_return || !sv) 1250 if (offset_return || !sv)
1109 { 1251 {
1110 offset = dec.flags & F_UTF8 1252 offset = dec.json.flags & F_UTF8
1111 ? dec.cur - SvPVX (string) 1253 ? dec.cur - SvPVX (string)
1112 : utf8_distance (dec.cur, SvPVX (string)); 1254 : utf8_distance (dec.cur, SvPVX (string));
1113 1255
1114 if (offset_return) 1256 if (offset_return)
1115 *offset_return = offset; 1257 *offset_return = offset;
1134 dec.cur != dec.end ? SvPV_nolen (uni) : "(end of string)"); 1276 dec.cur != dec.end ? SvPV_nolen (uni) : "(end of string)");
1135 } 1277 }
1136 1278
1137 sv = sv_2mortal (sv); 1279 sv = sv_2mortal (sv);
1138 1280
1139 if (!(dec.flags & F_ALLOW_NONREF) && !SvROK (sv)) 1281 if (!(dec.json.flags & F_ALLOW_NONREF) && !SvROK (sv))
1140 croak ("JSON text must be an object or array (but found number, string, true, false or null, use allow_nonref to allow this)"); 1282 croak ("JSON text must be an object or array (but found number, string, true, false or null, use allow_nonref to allow this)");
1141 1283
1142 return sv; 1284 return sv;
1143} 1285}
1144 1286
1156 i >= '0' && i <= '9' ? i - '0' 1298 i >= '0' && i <= '9' ? i - '0'
1157 : i >= 'a' && i <= 'f' ? i - 'a' + 10 1299 : i >= 'a' && i <= 'f' ? i - 'a' + 10
1158 : i >= 'A' && i <= 'F' ? i - 'A' + 10 1300 : i >= 'A' && i <= 'F' ? i - 'A' + 10
1159 : -1; 1301 : -1;
1160 1302
1161 json_stash = gv_stashpv ("JSON::XS", 1); 1303 json_stash = gv_stashpv ("JSON::XS" , 1);
1304 json_boolean_stash = gv_stashpv ("JSON::XS::Boolean", 1);
1305
1306 json_true = get_sv ("JSON::XS::true" , 1); SvREADONLY_on (json_true );
1307 json_false = get_sv ("JSON::XS::false", 1); SvREADONLY_on (json_false);
1162} 1308}
1163 1309
1164PROTOTYPES: DISABLE 1310PROTOTYPES: DISABLE
1165 1311
1166SV *new (char *dummy) 1312void new (char *klass)
1167 CODE: 1313 PPCODE:
1168 RETVAL = sv_bless (newRV_noinc (newSVuv (F_DEFAULT)), json_stash); 1314{
1169 OUTPUT: 1315 SV *pv = NEWSV (0, sizeof (JSON));
1170 RETVAL 1316 SvPOK_only (pv);
1317 Zero (SvPVX (pv), 1, JSON);
1318 ((JSON *)SvPVX (pv))->flags = F_DEFAULT;
1319 XPUSHs (sv_2mortal (sv_bless (newRV_noinc (pv), json_stash)));
1320}
1171 1321
1172SV *ascii (SV *self, int enable = 1) 1322void ascii (JSON *self, int enable = 1)
1173 ALIAS: 1323 ALIAS:
1174 ascii = F_ASCII 1324 ascii = F_ASCII
1175 latin1 = F_LATIN1 1325 latin1 = F_LATIN1
1176 utf8 = F_UTF8 1326 utf8 = F_UTF8
1177 indent = F_INDENT 1327 indent = F_INDENT
1178 canonical = F_CANONICAL 1328 canonical = F_CANONICAL
1179 space_before = F_SPACE_BEFORE 1329 space_before = F_SPACE_BEFORE
1180 space_after = F_SPACE_AFTER 1330 space_after = F_SPACE_AFTER
1181 pretty = F_PRETTY 1331 pretty = F_PRETTY
1182 allow_nonref = F_ALLOW_NONREF 1332 allow_nonref = F_ALLOW_NONREF
1183 shrink = F_SHRINK 1333 shrink = F_SHRINK
1334 allow_blessed = F_ALLOW_BLESSED
1335 convert_blessed = F_CONV_BLESSED
1184 CODE: 1336 PPCODE:
1185{ 1337{
1186 UV *uv = SvJSON (self);
1187 if (enable) 1338 if (enable)
1188 *uv |= ix; 1339 self->flags |= ix;
1189 else 1340 else
1190 *uv &= ~ix; 1341 self->flags &= ~ix;
1191 1342
1192 RETVAL = newSVsv (self); 1343 XPUSHs (ST (0));
1193} 1344}
1194 OUTPUT:
1195 RETVAL
1196 1345
1197SV *max_depth (SV *self, UV max_depth = 0x80000000UL) 1346void max_depth (JSON *self, UV max_depth = 0x80000000UL)
1198 CODE: 1347 PPCODE:
1199{ 1348{
1200 UV *uv = SvJSON (self);
1201 UV log2 = 0; 1349 UV log2 = 0;
1202 1350
1203 if (max_depth > 0x80000000UL) max_depth = 0x80000000UL; 1351 if (max_depth > 0x80000000UL) max_depth = 0x80000000UL;
1204 1352
1205 while ((1UL << log2) < max_depth) 1353 while ((1UL << log2) < max_depth)
1206 ++log2; 1354 ++log2;
1207 1355
1208 *uv = *uv & ~F_MAXDEPTH | (log2 << S_MAXDEPTH); 1356 self->flags = self->flags & ~F_MAXDEPTH | (log2 << S_MAXDEPTH);
1209 1357
1210 RETVAL = newSVsv (self); 1358 XPUSHs (ST (0));
1211} 1359}
1212 OUTPUT:
1213 RETVAL
1214 1360
1215void encode (SV *self, SV *scalar) 1361void max_size (JSON *self, UV max_size = 0)
1216 PPCODE: 1362 PPCODE:
1217 XPUSHs (encode_json (scalar, *SvJSON (self))); 1363{
1364 UV log2 = 0;
1218 1365
1219void decode (SV *self, SV *jsonstr) 1366 if (max_size > 0x80000000UL) max_size = 0x80000000UL;
1367 if (max_size == 1) max_size = 2;
1368
1369 while ((1UL << log2) < max_size)
1370 ++log2;
1371
1372 self->flags = self->flags & ~F_MAXSIZE | (log2 << S_MAXSIZE);
1373
1374 XPUSHs (ST (0));
1375}
1376
1377void filter_json_objects (JSON *self, SV *cb = &PL_sv_undef)
1378 ALIAS:
1379 filter_sk_json_objects = 1
1220 PPCODE: 1380 PPCODE:
1381{
1382 if (!SvOK (cb))
1383 cb = 0;
1384
1385 switch (ix)
1386 {
1387 case 0: self->cb_object = cb; break;
1388 case 1: self->cb_sk_object = cb; break;
1389 }
1390
1391 XPUSHs (ST (0));
1392}
1393
1394void encode (JSON *self, SV *scalar)
1395 PPCODE:
1396 XPUSHs (encode_json (scalar, self));
1397
1398void decode (JSON *self, SV *jsonstr)
1399 PPCODE:
1221 XPUSHs (decode_json (jsonstr, *SvJSON (self), 0)); 1400 XPUSHs (decode_json (jsonstr, self, 0));
1222 1401
1223void decode_prefix (SV *self, SV *jsonstr) 1402void decode_prefix (JSON *self, SV *jsonstr)
1224 PPCODE: 1403 PPCODE:
1225{ 1404{
1226 UV offset; 1405 UV offset;
1227 EXTEND (SP, 2); 1406 EXTEND (SP, 2);
1228 PUSHs (decode_json (jsonstr, *SvJSON (self), &offset)); 1407 PUSHs (decode_json (jsonstr, self, &offset));
1229 PUSHs (sv_2mortal (newSVuv (offset))); 1408 PUSHs (sv_2mortal (newSVuv (offset)));
1230} 1409}
1231 1410
1232PROTOTYPES: ENABLE 1411PROTOTYPES: ENABLE
1233 1412
1234void to_json (SV *scalar) 1413void to_json (SV *scalar)
1235 ALIAS:
1236 objToJson = 0
1237 PPCODE: 1414 PPCODE:
1415{
1416 JSON json = { F_DEFAULT | F_UTF8 };
1238 XPUSHs (encode_json (scalar, F_DEFAULT | F_UTF8)); 1417 XPUSHs (encode_json (scalar, &json));
1418}
1239 1419
1240void from_json (SV *jsonstr) 1420void from_json (SV *jsonstr)
1241 ALIAS:
1242 jsonToObj = 0
1243 PPCODE: 1421 PPCODE:
1422{
1423 JSON json = { F_DEFAULT | F_UTF8 };
1244 XPUSHs (decode_json (jsonstr, F_DEFAULT | F_UTF8, 0)); 1424 XPUSHs (decode_json (jsonstr, &json, 0));
1425}
1245 1426

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines