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.109 by root, Tue Mar 8 10:18:50 2011 UTC vs.
Revision 1.129 by root, Wed Nov 16 18:06:34 2016 UTC

15 15
16// some old perls do not have this, try to make it work, no 16// some old perls do not have this, try to make it work, no
17// guarantees, though. if it breaks, you get to keep the pieces. 17// guarantees, though. if it breaks, you get to keep the pieces.
18#ifndef UTF8_MAXBYTES 18#ifndef UTF8_MAXBYTES
19# define UTF8_MAXBYTES 13 19# define UTF8_MAXBYTES 13
20#endif
21
22// compatibility with perl <5.18
23#ifndef HvNAMELEN_get
24# define HvNAMELEN_get(hv) strlen (HvNAME (hv))
25#endif
26#ifndef HvNAMELEN
27# define HvNAMELEN(hv) HvNAMELEN_get (hv)
28#endif
29#ifndef HvNAMEUTF8
30# define HvNAMEUTF8(hv) 0
20#endif 31#endif
21 32
22// three extra for rounding, sign, and end of string 33// three extra for rounding, sign, and end of string
23#define IVUV_MAXCHARS (sizeof (UV) * CHAR_BIT * 28 / 93 + 3) 34#define IVUV_MAXCHARS (sizeof (UV) * CHAR_BIT * 28 / 93 + 3)
24 35
33#define F_SHRINK 0x00000200UL 44#define F_SHRINK 0x00000200UL
34#define F_ALLOW_BLESSED 0x00000400UL 45#define F_ALLOW_BLESSED 0x00000400UL
35#define F_CONV_BLESSED 0x00000800UL 46#define F_CONV_BLESSED 0x00000800UL
36#define F_RELAXED 0x00001000UL 47#define F_RELAXED 0x00001000UL
37#define F_ALLOW_UNKNOWN 0x00002000UL 48#define F_ALLOW_UNKNOWN 0x00002000UL
49#define F_ALLOW_TAGS 0x00004000UL
38#define F_HOOK 0x00080000UL // some hooks exist, so slow-path processing 50#define F_HOOK 0x00080000UL // some hooks exist, so slow-path processing
39 51
40#define F_PRETTY F_INDENT | F_SPACE_BEFORE | F_SPACE_AFTER 52#define F_PRETTY F_INDENT | F_SPACE_BEFORE | F_SPACE_AFTER
41 53
42#define INIT_SIZE 32 // initial scalar size to be allocated 54#define INIT_SIZE 32 // initial scalar size to be allocated
67#define ERR_NESTING_EXCEEDED "json text or perl structure exceeds maximum nesting level (max_depth set too low?)" 79#define ERR_NESTING_EXCEEDED "json text or perl structure exceeds maximum nesting level (max_depth set too low?)"
68 80
69#ifdef USE_ITHREADS 81#ifdef USE_ITHREADS
70# define JSON_SLOW 1 82# define JSON_SLOW 1
71# define JSON_STASH (json_stash ? json_stash : gv_stashpv ("JSON::XS", 1)) 83# define JSON_STASH (json_stash ? json_stash : gv_stashpv ("JSON::XS", 1))
84# define BOOL_STASH (bool_stash ? bool_stash : gv_stashpv ("Types::Serialiser::Boolean", 1))
72#else 85#else
73# define JSON_SLOW 0 86# define JSON_SLOW 0
74# define JSON_STASH json_stash 87# define JSON_STASH json_stash
88# define BOOL_STASH bool_stash
75#endif 89#endif
76 90
77static HV *json_stash, *json_boolean_stash; // JSON::XS:: 91// the amount of HEs to allocate on the stack, when sorting keys
78static SV *json_true, *json_false; 92#define STACK_HES 64
93
94static HV *json_stash, *bool_stash; // JSON::XS::, Types::Serialiser::Boolean::
95static SV *bool_true, *bool_false, *sv_json;
79 96
80enum { 97enum {
81 INCR_M_WS = 0, // initial whitespace skipping, must be 0 98 INCR_M_WS = 0, // initial whitespace skipping, must be 0
82 INCR_M_STR, // inside string 99 INCR_M_STR, // inside string
83 INCR_M_BS, // inside backslash 100 INCR_M_BS, // inside backslash
260 } 277 }
261 278
262 // this relies greatly on the quality of the pow () 279 // this relies greatly on the quality of the pow ()
263 // implementation of the platform, but a good 280 // implementation of the platform, but a good
264 // implementation is hard to beat. 281 // implementation is hard to beat.
282 // (IEEE 754 conformant ones are required to be exact)
265 if (postdp) *expo -= eaccum; 283 if (postdp) *expo -= eaccum;
266 *accum += uaccum * Perl_pow (10., *expo); 284 *accum += uaccum * Perl_pow (10., *expo);
267 *expo += eaccum; 285 *expo += eaccum;
268} 286}
269 287
283 // a recursion depth of ten gives us >>500 bits 301 // a recursion depth of ten gives us >>500 bits
284 json_atof_scan1 (s, &accum, &expo, 0, 10); 302 json_atof_scan1 (s, &accum, &expo, 0, 10);
285 303
286 return neg ? -accum : accum; 304 return neg ? -accum : accum;
287} 305}
306
307// target of scalar reference is bool? -1 == nope, 0 == false, 1 == true
308static int
309ref_bool_type (SV *sv)
310{
311 svtype svt = SvTYPE (sv);
312
313 if (svt < SVt_PVAV)
314 {
315 STRLEN len = 0;
316 char *pv = svt ? SvPV (sv, len) : 0;
317
318 if (len == 1)
319 if (*pv == '1')
320 return 1;
321 else if (*pv == '0')
322 return 0;
323 }
324
325 return -1;
326}
327
328// returns whether scalar is not a reference in the sense of allow_nonref
329static int
330json_nonref (SV *scalar)
331{
332 if (!SvROK (scalar))
333 return 1;
334
335 scalar = SvRV (scalar);
336
337 if (SvTYPE (scalar) >= SVt_PVMG)
338 {
339 if (SvSTASH (scalar) == bool_stash)
340 return 1;
341
342 if (!SvOBJECT (scalar) && ref_bool_type (scalar) >= 0)
343 return 1;
344 }
345
346 return 0;
347}
348
288///////////////////////////////////////////////////////////////////////////// 349/////////////////////////////////////////////////////////////////////////////
289// encoder 350// encoder
290 351
291// structure used for encoding JSON 352// structure used for encoding JSON
292typedef struct 353typedef struct
479 540
480 if (enc->indent >= enc->json.max_depth) 541 if (enc->indent >= enc->json.max_depth)
481 croak (ERR_NESTING_EXCEEDED); 542 croak (ERR_NESTING_EXCEEDED);
482 543
483 encode_ch (enc, '['); 544 encode_ch (enc, '[');
484 545
485 if (len >= 0) 546 if (len >= 0)
486 { 547 {
487 encode_nl (enc); ++enc->indent; 548 encode_nl (enc); ++enc->indent;
488 549
489 for (i = 0; i <= len; ++i) 550 for (i = 0; i <= len; ++i)
501 encode_comma (enc); 562 encode_comma (enc);
502 } 563 }
503 564
504 encode_nl (enc); --enc->indent; encode_indent (enc); 565 encode_nl (enc); --enc->indent; encode_indent (enc);
505 } 566 }
506 567
507 encode_ch (enc, ']'); 568 encode_ch (enc, ']');
508} 569}
509 570
510static void 571static void
511encode_hk (enc_t *enc, HE *he) 572encode_hk (enc_t *enc, HE *he)
515 if (HeKLEN (he) == HEf_SVKEY) 576 if (HeKLEN (he) == HEf_SVKEY)
516 { 577 {
517 SV *sv = HeSVKEY (he); 578 SV *sv = HeSVKEY (he);
518 STRLEN len; 579 STRLEN len;
519 char *str; 580 char *str;
520 581
521 SvGETMAGIC (sv); 582 SvGETMAGIC (sv);
522 str = SvPV (sv, len); 583 str = SvPV (sv, len);
523 584
524 encode_str (enc, str, len, SvUTF8 (sv)); 585 encode_str (enc, str, len, SvUTF8 (sv));
525 } 586 }
591 } 652 }
592 653
593 if (count) 654 if (count)
594 { 655 {
595 int i, fast = 1; 656 int i, fast = 1;
596#if defined(__BORLANDC__) || defined(_MSC_VER) 657 HE *hes_stack [STACK_HES];
597 HE **hes = _alloca (count * sizeof (HE)); 658 HE **hes = hes_stack;
598#else 659
599 HE *hes [count]; // if your compiler dies here, you need to enable C99 mode 660 // allocate larger arrays on the heap
600#endif 661 if (count > STACK_HES)
662 {
663 SV *sv = sv_2mortal (NEWSV (0, count * sizeof (*hes)));
664 hes = (HE **)SvPVX (sv);
665 }
601 666
602 i = 0; 667 i = 0;
603 while ((he = hv_iternext (hv))) 668 while ((he = hv_iternext (hv)))
604 { 669 {
605 hes [i++] = he; 670 hes [i++] = he;
674// encode objects, arrays and special \0=false and \1=true values. 739// encode objects, arrays and special \0=false and \1=true values.
675static void 740static void
676encode_rv (enc_t *enc, SV *sv) 741encode_rv (enc_t *enc, SV *sv)
677{ 742{
678 svtype svt; 743 svtype svt;
744 GV *method;
679 745
680 SvGETMAGIC (sv); 746 SvGETMAGIC (sv);
681 svt = SvTYPE (sv); 747 svt = SvTYPE (sv);
682 748
683 if (expect_false (SvOBJECT (sv))) 749 if (expect_false (SvOBJECT (sv)))
684 { 750 {
685 HV *stash = !JSON_SLOW || json_boolean_stash 751 HV *stash = SvSTASH (sv);
686 ? json_boolean_stash
687 : gv_stashpv ("JSON::XS::Boolean", 1);
688 752
689 if (SvSTASH (sv) == stash) 753 if (stash == bool_stash)
690 { 754 {
691 if (SvIV (sv)) 755 if (SvIV (sv))
692 encode_str (enc, "true", 4, 0); 756 encode_str (enc, "true", 4, 0);
693 else 757 else
694 encode_str (enc, "false", 5, 0); 758 encode_str (enc, "false", 5, 0);
695 } 759 }
760 else if ((enc->json.flags & F_ALLOW_TAGS) && (method = gv_fetchmethod_autoload (stash, "FREEZE", 0)))
761 {
762 int count;
763 dSP;
764
765 ENTER; SAVETMPS;
766 SAVESTACK_POS ();
767 PUSHMARK (SP);
768 EXTEND (SP, 2);
769 // we re-bless the reference to get overload and other niceties right
770 PUSHs (sv_bless (sv_2mortal (newRV_inc (sv)), stash));
771 PUSHs (sv_json);
772
773 PUTBACK;
774 count = call_sv ((SV *)GvCV (method), G_ARRAY);
775 SPAGAIN;
776
777 // catch this surprisingly common error
778 if (SvROK (TOPs) && SvRV (TOPs) == sv)
779 croak ("%s::FREEZE method returned same object as was passed instead of a new one", HvNAME (SvSTASH (sv)));
780
781 encode_ch (enc, '(');
782 encode_ch (enc, '"');
783 encode_str (enc, HvNAME (stash), HvNAMELEN (stash), HvNAMEUTF8 (stash));
784 encode_ch (enc, '"');
785 encode_ch (enc, ')');
786 encode_ch (enc, '[');
787
788 while (count)
789 {
790 encode_sv (enc, SP[1 - count--]);
791
792 if (count)
793 encode_ch (enc, ',');
794 }
795
796 encode_ch (enc, ']');
797
798 FREETMPS; LEAVE;
799 }
800 else if ((enc->json.flags & F_CONV_BLESSED) && (method = gv_fetchmethod_autoload (stash, "TO_JSON", 0)))
801 {
802 dSP;
803
804 ENTER; SAVETMPS;
805 PUSHMARK (SP);
806 // we re-bless the reference to get overload and other niceties right
807 XPUSHs (sv_bless (sv_2mortal (newRV_inc (sv)), stash));
808
809 // calling with G_SCALAR ensures that we always get a 1 return value
810 PUTBACK;
811 call_sv ((SV *)GvCV (method), G_SCALAR);
812 SPAGAIN;
813
814 // catch this surprisingly common error
815 if (SvROK (TOPs) && SvRV (TOPs) == sv)
816 croak ("%s::TO_JSON method returned same object as was passed instead of a new one", HvNAME (SvSTASH (sv)));
817
818 sv = POPs;
819 PUTBACK;
820
821 encode_sv (enc, sv);
822
823 FREETMPS; LEAVE;
824 }
825 else if (enc->json.flags & F_ALLOW_BLESSED)
826 encode_str (enc, "null", 4, 0);
696 else 827 else
697 {
698#if 0
699 if (0 && sv_derived_from (rv, "JSON::Literal"))
700 {
701 // not yet
702 }
703#endif
704 if (enc->json.flags & F_CONV_BLESSED)
705 {
706 // we re-bless the reference to get overload and other niceties right
707 GV *to_json = gv_fetchmethod_autoload (SvSTASH (sv), "TO_JSON", 0);
708
709 if (to_json)
710 {
711 dSP;
712
713 ENTER; SAVETMPS; PUSHMARK (SP);
714 XPUSHs (sv_bless (sv_2mortal (newRV_inc (sv)), SvSTASH (sv)));
715
716 // calling with G_SCALAR ensures that we always get a 1 return value
717 PUTBACK;
718 call_sv ((SV *)GvCV (to_json), G_SCALAR);
719 SPAGAIN;
720
721 // catch this surprisingly common error
722 if (SvROK (TOPs) && SvRV (TOPs) == sv)
723 croak ("%s::TO_JSON method returned same object as was passed instead of a new one", HvNAME (SvSTASH (sv)));
724
725 sv = POPs;
726 PUTBACK;
727
728 encode_sv (enc, sv);
729
730 FREETMPS; LEAVE;
731 }
732 else if (enc->json.flags & F_ALLOW_BLESSED)
733 encode_str (enc, "null", 4, 0);
734 else
735 croak ("encountered object '%s', but neither allow_blessed enabled nor TO_JSON method available on it",
736 SvPV_nolen (sv_2mortal (newRV_inc (sv))));
737 }
738 else if (enc->json.flags & F_ALLOW_BLESSED)
739 encode_str (enc, "null", 4, 0);
740 else
741 croak ("encountered object '%s', but neither allow_blessed nor convert_blessed settings are enabled", 828 croak ("encountered object '%s', but neither allow_blessed, convert_blessed nor allow_tags settings are enabled (or TO_JSON/FREEZE method missing)",
742 SvPV_nolen (sv_2mortal (newRV_inc (sv)))); 829 SvPV_nolen (sv_2mortal (newRV_inc (sv))));
743 }
744 } 830 }
745 else if (svt == SVt_PVHV) 831 else if (svt == SVt_PVHV)
746 encode_hv (enc, (HV *)sv); 832 encode_hv (enc, (HV *)sv);
747 else if (svt == SVt_PVAV) 833 else if (svt == SVt_PVAV)
748 encode_av (enc, (AV *)sv); 834 encode_av (enc, (AV *)sv);
749 else if (svt < SVt_PVAV) 835 else if (svt < SVt_PVAV)
750 { 836 {
751 STRLEN len = 0; 837 int bool_type = ref_bool_type (sv);
752 char *pv = svt ? SvPV (sv, len) : 0;
753 838
754 if (len == 1 && *pv == '1') 839 if (bool_type == 1)
755 encode_str (enc, "true", 4, 0); 840 encode_str (enc, "true", 4, 0);
756 else if (len == 1 && *pv == '0') 841 else if (bool_type == 0)
757 encode_str (enc, "false", 5, 0); 842 encode_str (enc, "false", 5, 0);
758 else if (enc->json.flags & F_ALLOW_UNKNOWN) 843 else if (enc->json.flags & F_ALLOW_UNKNOWN)
759 encode_str (enc, "null", 4, 0); 844 encode_str (enc, "null", 4, 0);
760 else 845 else
761 croak ("cannot encode reference to scalar '%s' unless the scalar is 0 or 1", 846 croak ("cannot encode reference to scalar '%s' unless the scalar is 0 or 1",
824 } 909 }
825 else 910 else
826 { 911 {
827 // large integer, use the (rather slow) snprintf way. 912 // large integer, use the (rather slow) snprintf way.
828 need (enc, IVUV_MAXCHARS); 913 need (enc, IVUV_MAXCHARS);
829 enc->cur += 914 enc->cur +=
830 SvIsUV(sv) 915 SvIsUV(sv)
831 ? snprintf (enc->cur, IVUV_MAXCHARS, "%"UVuf, (UV)SvUVX (sv)) 916 ? snprintf (enc->cur, IVUV_MAXCHARS, "%"UVuf, (UV)SvUVX (sv))
832 : snprintf (enc->cur, IVUV_MAXCHARS, "%"IVdf, (IV)SvIVX (sv)); 917 : snprintf (enc->cur, IVUV_MAXCHARS, "%"IVdf, (IV)SvIVX (sv));
833 } 918 }
834 } 919 }
835 else if (SvROK (sv)) 920 else if (SvROK (sv))
836 encode_rv (enc, SvRV (sv)); 921 encode_rv (enc, SvRV (sv));
837 else if (!SvOK (sv) || enc->json.flags & F_ALLOW_UNKNOWN) 922 else if (!SvOK (sv) || enc->json.flags & F_ALLOW_UNKNOWN)
838 encode_str (enc, "null", 4, 0); 923 encode_str (enc, "null", 4, 0);
839 else 924 else
840 croak ("encountered perl type (%s,0x%x) that JSON cannot handle, you might want to report this", 925 croak ("encountered perl type (%s,0x%x) that JSON cannot handle, check your input data",
841 SvPV_nolen (sv), SvFLAGS (sv)); 926 SvPV_nolen (sv), (unsigned int)SvFLAGS (sv));
842} 927}
843 928
844static SV * 929static SV *
845encode_json (SV *scalar, JSON *json) 930encode_json (SV *scalar, JSON *json)
846{ 931{
847 enc_t enc; 932 enc_t enc;
848 933
849 if (!(json->flags & F_ALLOW_NONREF) && !SvROK (scalar)) 934 if (!(json->flags & F_ALLOW_NONREF) && json_nonref (scalar))
850 croak ("hash- or arrayref expected (not a simple scalar, use allow_nonref to allow this)"); 935 croak ("hash- or arrayref expected (not a simple scalar, use allow_nonref to allow this)");
851 936
852 enc.json = *json; 937 enc.json = *json;
853 enc.sv = sv_2mortal (NEWSV (0, INIT_SIZE)); 938 enc.sv = sv_2mortal (NEWSV (0, INIT_SIZE));
854 enc.cur = SvPVX (enc.sv); 939 enc.cur = SvPVX (enc.sv);
1061 *cur++ = *dec_cur++; 1146 *cur++ = *dec_cur++;
1062 while (--clen); 1147 while (--clen);
1063 1148
1064 utf8 = 1; 1149 utf8 = 1;
1065 } 1150 }
1151 else if (ch == '\t' && dec->json.flags & F_RELAXED)
1152 *cur++ = ch;
1066 else 1153 else
1067 { 1154 {
1068 --dec_cur; 1155 --dec_cur;
1069 1156
1070 if (!ch) 1157 if (!ch)
1258 if (*dec->cur == ']') 1345 if (*dec->cur == ']')
1259 { 1346 {
1260 ++dec->cur; 1347 ++dec->cur;
1261 break; 1348 break;
1262 } 1349 }
1263 1350
1264 if (*dec->cur != ',') 1351 if (*dec->cur != ',')
1265 ERR (", or ] expected while parsing array"); 1352 ERR (", or ] expected while parsing array");
1266 1353
1267 ++dec->cur; 1354 ++dec->cur;
1268 1355
1392 1479
1393 hv_iterinit (hv); 1480 hv_iterinit (hv);
1394 he = hv_iternext (hv); 1481 he = hv_iternext (hv);
1395 hv_iterinit (hv); 1482 hv_iterinit (hv);
1396 1483
1397 // the next line creates a mortal sv each time its called. 1484 // the next line creates a mortal sv each time it's called.
1398 // might want to optimise this for common cases. 1485 // might want to optimise this for common cases.
1399 cb = hv_fetch_ent (dec->json.cb_sk_object, hv_iterkeysv (he), 0, 0); 1486 cb = hv_fetch_ent (dec->json.cb_sk_object, hv_iterkeysv (he), 0, 0);
1400 1487
1401 if (cb) 1488 if (cb)
1402 { 1489 {
1403 dSP; 1490 dSP;
1404 int count; 1491 int count;
1405 1492
1406 ENTER; SAVETMPS; PUSHMARK (SP); 1493 ENTER; SAVETMPS;
1494 SAVESTACK_POS ();
1495 PUSHMARK (SP);
1407 XPUSHs (HeVAL (he)); 1496 XPUSHs (HeVAL (he));
1408 sv_2mortal (sv); 1497 sv_2mortal (sv);
1409 1498
1410 PUTBACK; count = call_sv (HeVAL (cb), G_ARRAY); SPAGAIN; 1499 PUTBACK; count = call_sv (HeVAL (cb), G_ARRAY); SPAGAIN;
1411 1500
1424 if (dec->json.cb_object) 1513 if (dec->json.cb_object)
1425 { 1514 {
1426 dSP; 1515 dSP;
1427 int count; 1516 int count;
1428 1517
1429 ENTER; SAVETMPS; PUSHMARK (SP); 1518 ENTER; SAVETMPS;
1519 SAVESTACK_POS ();
1520 PUSHMARK (SP);
1430 XPUSHs (sv_2mortal (sv)); 1521 XPUSHs (sv_2mortal (sv));
1431 1522
1432 PUTBACK; count = call_sv (dec->json.cb_object, G_ARRAY); SPAGAIN; 1523 PUTBACK; count = call_sv (dec->json.cb_object, G_ARRAY); SPAGAIN;
1433 1524
1434 if (count == 1) 1525 if (count == 1)
1450 DEC_DEC_DEPTH; 1541 DEC_DEC_DEPTH;
1451 return 0; 1542 return 0;
1452} 1543}
1453 1544
1454static SV * 1545static SV *
1546decode_tag (dec_t *dec)
1547{
1548 SV *tag = 0;
1549 SV *val = 0;
1550
1551 if (!(dec->json.flags & F_ALLOW_TAGS))
1552 ERR ("malformed JSON string, neither array, object, number, string or atom");
1553
1554 ++dec->cur;
1555
1556 decode_ws (dec);
1557
1558 tag = decode_sv (dec);
1559 if (!tag)
1560 goto fail;
1561
1562 if (!SvPOK (tag))
1563 ERR ("malformed JSON string, (tag) must be a string");
1564
1565 decode_ws (dec);
1566
1567 if (*dec->cur != ')')
1568 ERR (") expected after tag");
1569
1570 ++dec->cur;
1571
1572 decode_ws (dec);
1573
1574 val = decode_sv (dec);
1575 if (!val)
1576 goto fail;
1577
1578 if (!SvROK (val) || SvTYPE (SvRV (val)) != SVt_PVAV)
1579 ERR ("malformed JSON string, tag value must be an array");
1580
1581 {
1582 AV *av = (AV *)SvRV (val);
1583 int i, len = av_len (av) + 1;
1584 HV *stash = gv_stashsv (tag, 0);
1585 SV *sv;
1586
1587 if (!stash)
1588 ERR ("cannot decode perl-object (package does not exist)");
1589
1590 GV *method = gv_fetchmethod_autoload (stash, "THAW", 0);
1591
1592 if (!method)
1593 ERR ("cannot decode perl-object (package does not have a THAW method)");
1594
1595 dSP;
1596
1597 ENTER; SAVETMPS;
1598 PUSHMARK (SP);
1599 EXTEND (SP, len + 2);
1600 // we re-bless the reference to get overload and other niceties right
1601 PUSHs (tag);
1602 PUSHs (sv_json);
1603
1604 for (i = 0; i < len; ++i)
1605 PUSHs (*av_fetch (av, i, 1));
1606
1607 PUTBACK;
1608 call_sv ((SV *)GvCV (method), G_SCALAR);
1609 SPAGAIN;
1610
1611 SvREFCNT_dec (tag);
1612 SvREFCNT_dec (val);
1613 sv = SvREFCNT_inc (POPs);
1614
1615 PUTBACK;
1616
1617 FREETMPS; LEAVE;
1618
1619 return sv;
1620 }
1621
1622fail:
1623 SvREFCNT_dec (tag);
1624 SvREFCNT_dec (val);
1625 return 0;
1626}
1627
1628static SV *
1455decode_sv (dec_t *dec) 1629decode_sv (dec_t *dec)
1456{ 1630{
1457 // the beauty of JSON: you need exactly one character lookahead 1631 // the beauty of JSON: you need exactly one character lookahead
1458 // to parse everything. 1632 // to parse everything.
1459 switch (*dec->cur) 1633 switch (*dec->cur)
1460 { 1634 {
1461 case '"': ++dec->cur; return decode_str (dec); 1635 case '"': ++dec->cur; return decode_str (dec);
1462 case '[': ++dec->cur; return decode_av (dec); 1636 case '[': ++dec->cur; return decode_av (dec);
1463 case '{': ++dec->cur; return decode_hv (dec); 1637 case '{': ++dec->cur; return decode_hv (dec);
1638 case '(': return decode_tag (dec);
1464 1639
1465 case '-': 1640 case '-':
1466 case '0': case '1': case '2': case '3': case '4': 1641 case '0': case '1': case '2': case '3': case '4':
1467 case '5': case '6': case '7': case '8': case '9': 1642 case '5': case '6': case '7': case '8': case '9':
1468 return decode_num (dec); 1643 return decode_num (dec);
1470 case 't': 1645 case 't':
1471 if (dec->end - dec->cur >= 4 && !memcmp (dec->cur, "true", 4)) 1646 if (dec->end - dec->cur >= 4 && !memcmp (dec->cur, "true", 4))
1472 { 1647 {
1473 dec->cur += 4; 1648 dec->cur += 4;
1474#if JSON_SLOW 1649#if JSON_SLOW
1475 json_true = get_bool ("JSON::XS::true"); 1650 bool_true = get_bool ("Types::Serialiser::true");
1476#endif 1651#endif
1477 return newSVsv (json_true); 1652 return newSVsv (bool_true);
1478 } 1653 }
1479 else 1654 else
1480 ERR ("'true' expected"); 1655 ERR ("'true' expected");
1481 1656
1482 break; 1657 break;
1484 case 'f': 1659 case 'f':
1485 if (dec->end - dec->cur >= 5 && !memcmp (dec->cur, "false", 5)) 1660 if (dec->end - dec->cur >= 5 && !memcmp (dec->cur, "false", 5))
1486 { 1661 {
1487 dec->cur += 5; 1662 dec->cur += 5;
1488#if JSON_SLOW 1663#if JSON_SLOW
1489 json_false = get_bool ("JSON::XS::false"); 1664 bool_false = get_bool ("Types::Serialiser::false");
1490#endif 1665#endif
1491 return newSVsv (json_false); 1666 return newSVsv (bool_false);
1492 } 1667 }
1493 else 1668 else
1494 ERR ("'false' expected"); 1669 ERR ("'false' expected");
1495 1670
1496 break; 1671 break;
1505 ERR ("'null' expected"); 1680 ERR ("'null' expected");
1506 1681
1507 break; 1682 break;
1508 1683
1509 default: 1684 default:
1510 ERR ("malformed JSON string, neither array, object, number, string or atom"); 1685 ERR ("malformed JSON string, neither tag, array, object, number, string or atom");
1511 break; 1686 break;
1512 } 1687 }
1513 1688
1514fail: 1689fail:
1515 return 0; 1690 return 0;
1516} 1691}
1517 1692
1518static SV * 1693static SV *
1519decode_json (SV *string, JSON *json, char **offset_return) 1694decode_json (SV *string, JSON *json, STRLEN *offset_return)
1520{ 1695{
1521 dec_t dec; 1696 dec_t dec;
1522 SV *sv; 1697 SV *sv;
1523 1698
1524 /* work around bugs in 5.10 where manipulating magic values 1699 /* work around bugs in 5.10 where manipulating magic values
1525 * will perl ignore the magic in subsequent accesses. 1700 * makes perl ignore the magic in subsequent accesses.
1526 * also make a copy of non-PV values, to get them into a clean 1701 * also make a copy of non-PV values, to get them into a clean
1527 * state (SvPV should do that, but it's buggy, see below). 1702 * state (SvPV should do that, but it's buggy, see below).
1703 *
1704 * SvIsCOW_shared_hash works around a bug in perl (possibly 5.16),
1705 * as reported by Reini Urban.
1528 */ 1706 */
1529 /*SvGETMAGIC (string);*/ 1707 /*SvGETMAGIC (string);*/
1530 if (SvMAGICAL (string) || !SvPOK (string)) 1708 if (SvMAGICAL (string) || !SvPOK (string) || SvIsCOW_shared_hash (string))
1531 string = sv_2mortal (newSVsv (string)); 1709 string = sv_2mortal (newSVsv (string));
1532 1710
1533 SvUPGRADE (string, SVt_PV); 1711 SvUPGRADE (string, SVt_PV);
1534 1712
1535 /* work around a bug in perl 5.10, which causes SvCUR to fail an 1713 /* work around a bug in perl 5.10, which causes SvCUR to fail an
1574 1752
1575 decode_ws (&dec); 1753 decode_ws (&dec);
1576 sv = decode_sv (&dec); 1754 sv = decode_sv (&dec);
1577 1755
1578 if (offset_return) 1756 if (offset_return)
1579 *offset_return = dec.cur; 1757 *offset_return = dec.cur - SvPVX (string);
1580 1758 else if (sv)
1581 if (!(offset_return || !sv))
1582 { 1759 {
1583 // check for trailing garbage 1760 // check for trailing garbage
1584 decode_ws (&dec); 1761 decode_ws (&dec);
1585 1762
1586 if (*dec.cur) 1763 if (*dec.cur)
1604 pv_uni_display (uni, dec.cur, dec.end - dec.cur, 20, UNI_DISPLAY_QQ); 1781 pv_uni_display (uni, dec.cur, dec.end - dec.cur, 20, UNI_DISPLAY_QQ);
1605 LEAVE; 1782 LEAVE;
1606 1783
1607 croak ("%s, at character offset %d (before \"%s\")", 1784 croak ("%s, at character offset %d (before \"%s\")",
1608 dec.err, 1785 dec.err,
1609 ptr_to_index (string, dec.cur), 1786 (int)ptr_to_index (string, dec.cur),
1610 dec.cur != dec.end ? SvPV_nolen (uni) : "(end of string)"); 1787 dec.cur != dec.end ? SvPV_nolen (uni) : "(end of string)");
1611 } 1788 }
1612 1789
1613 sv = sv_2mortal (sv); 1790 sv = sv_2mortal (sv);
1614 1791
1615 if (!(dec.json.flags & F_ALLOW_NONREF) && !SvROK (sv)) 1792 if (!(dec.json.flags & F_ALLOW_NONREF) && json_nonref (sv))
1616 croak ("JSON text must be an object or array (but found number, string, true, false or null, use allow_nonref to allow this)"); 1793 croak ("JSON text must be an object or array (but found number, string, true, false or null, use allow_nonref to allow this)");
1617 1794
1618 return sv; 1795 return sv;
1619} 1796}
1620 1797
1742 self->incr_mode = INCR_M_STR; 1919 self->incr_mode = INCR_M_STR;
1743 goto incr_m_str; 1920 goto incr_m_str;
1744 1921
1745 case '[': 1922 case '[':
1746 case '{': 1923 case '{':
1924 case '(':
1747 if (++self->incr_nest > self->max_depth) 1925 if (++self->incr_nest > self->max_depth)
1748 croak (ERR_NESTING_EXCEEDED); 1926 croak (ERR_NESTING_EXCEEDED);
1749 break; 1927 break;
1750 1928
1751 case ']': 1929 case ']':
1752 case '}': 1930 case '}':
1753 if (--self->incr_nest <= 0) 1931 if (--self->incr_nest <= 0)
1754 goto interrupt; 1932 goto interrupt;
1933 break;
1934
1935 case ')':
1936 --self->incr_nest;
1755 break; 1937 break;
1756 1938
1757 case '#': 1939 case '#':
1758 self->incr_mode = INCR_M_C1; 1940 self->incr_mode = INCR_M_C1;
1759 goto incr_m_c; 1941 goto incr_m_c;
1785 i >= '0' && i <= '9' ? i - '0' 1967 i >= '0' && i <= '9' ? i - '0'
1786 : i >= 'a' && i <= 'f' ? i - 'a' + 10 1968 : i >= 'a' && i <= 'f' ? i - 'a' + 10
1787 : i >= 'A' && i <= 'F' ? i - 'A' + 10 1969 : i >= 'A' && i <= 'F' ? i - 'A' + 10
1788 : -1; 1970 : -1;
1789 1971
1790 json_stash = gv_stashpv ("JSON::XS" , 1); 1972 json_stash = gv_stashpv ("JSON::XS" , 1);
1791 json_boolean_stash = gv_stashpv ("JSON::XS::Boolean", 1); 1973 bool_stash = gv_stashpv ("Types::Serialiser::Boolean", 1);
1792
1793 json_true = get_bool ("JSON::XS::true"); 1974 bool_true = get_bool ("Types::Serialiser::true");
1794 json_false = get_bool ("JSON::XS::false"); 1975 bool_false = get_bool ("Types::Serialiser::false");
1976
1977 sv_json = newSVpv ("JSON", 0);
1978 SvREADONLY_on (sv_json);
1795 1979
1796 CvNODEBUG_on (get_cv ("JSON::XS::incr_text", 0)); /* the debugger completely breaks lvalue subs */ 1980 CvNODEBUG_on (get_cv ("JSON::XS::incr_text", 0)); /* the debugger completely breaks lvalue subs */
1797} 1981}
1798 1982
1799PROTOTYPES: DISABLE 1983PROTOTYPES: DISABLE
1800 1984
1801void CLONE (...) 1985void CLONE (...)
1802 CODE: 1986 CODE:
1803 json_stash = 0; 1987 json_stash = 0;
1804 json_boolean_stash = 0; 1988 bool_stash = 0;
1805 1989
1806void new (char *klass) 1990void new (char *klass)
1807 PPCODE: 1991 PPCODE:
1808{ 1992{
1809 SV *pv = NEWSV (0, sizeof (JSON)); 1993 SV *pv = NEWSV (0, sizeof (JSON));
1810 SvPOK_only (pv); 1994 SvPOK_only (pv);
1811 json_init ((JSON *)SvPVX (pv)); 1995 json_init ((JSON *)SvPVX (pv));
1812 XPUSHs (sv_2mortal (sv_bless ( 1996 XPUSHs (sv_2mortal (sv_bless (
1813 newRV_noinc (pv), 1997 newRV_noinc (pv),
1814 strEQ (klass, "JSON::XS") ? JSON_STASH : gv_stashpv (klass, 1) 1998 strEQ (klass, "JSON::XS") ? JSON_STASH : gv_stashpv (klass, 1)
1829 shrink = F_SHRINK 2013 shrink = F_SHRINK
1830 allow_blessed = F_ALLOW_BLESSED 2014 allow_blessed = F_ALLOW_BLESSED
1831 convert_blessed = F_CONV_BLESSED 2015 convert_blessed = F_CONV_BLESSED
1832 relaxed = F_RELAXED 2016 relaxed = F_RELAXED
1833 allow_unknown = F_ALLOW_UNKNOWN 2017 allow_unknown = F_ALLOW_UNKNOWN
2018 allow_tags = F_ALLOW_TAGS
1834 PPCODE: 2019 PPCODE:
1835{ 2020{
1836 if (enable) 2021 if (enable)
1837 self->flags |= ix; 2022 self->flags |= ix;
1838 else 2023 else
1854 get_shrink = F_SHRINK 2039 get_shrink = F_SHRINK
1855 get_allow_blessed = F_ALLOW_BLESSED 2040 get_allow_blessed = F_ALLOW_BLESSED
1856 get_convert_blessed = F_CONV_BLESSED 2041 get_convert_blessed = F_CONV_BLESSED
1857 get_relaxed = F_RELAXED 2042 get_relaxed = F_RELAXED
1858 get_allow_unknown = F_ALLOW_UNKNOWN 2043 get_allow_unknown = F_ALLOW_UNKNOWN
2044 get_allow_tags = F_ALLOW_TAGS
1859 PPCODE: 2045 PPCODE:
1860 XPUSHs (boolSV (self->flags & ix)); 2046 XPUSHs (boolSV (self->flags & ix));
1861 2047
1862void max_depth (JSON *self, U32 max_depth = 0x80000000UL) 2048void max_depth (JSON *self, U32 max_depth = 0x80000000UL)
1863 PPCODE: 2049 PPCODE:
1891} 2077}
1892 2078
1893void filter_json_single_key_object (JSON *self, SV *key, SV *cb = &PL_sv_undef) 2079void filter_json_single_key_object (JSON *self, SV *key, SV *cb = &PL_sv_undef)
1894 PPCODE: 2080 PPCODE:
1895{ 2081{
1896 if (!self->cb_sk_object) 2082 if (!self->cb_sk_object)
1897 self->cb_sk_object = newHV (); 2083 self->cb_sk_object = newHV ();
1898 2084
1899 if (SvOK (cb)) 2085 if (SvOK (cb))
1900 hv_store_ent (self->cb_sk_object, key, newSVsv (cb), 0); 2086 hv_store_ent (self->cb_sk_object, key, newSVsv (cb), 0);
1901 else 2087 else
1912 XPUSHs (ST (0)); 2098 XPUSHs (ST (0));
1913} 2099}
1914 2100
1915void encode (JSON *self, SV *scalar) 2101void encode (JSON *self, SV *scalar)
1916 PPCODE: 2102 PPCODE:
1917 XPUSHs (encode_json (scalar, self)); 2103 PUTBACK; scalar = encode_json (scalar, self); SPAGAIN;
2104 XPUSHs (scalar);
1918 2105
1919void decode (JSON *self, SV *jsonstr) 2106void decode (JSON *self, SV *jsonstr)
1920 PPCODE: 2107 PPCODE:
1921 XPUSHs (decode_json (jsonstr, self, 0)); 2108 PUTBACK; jsonstr = decode_json (jsonstr, self, 0); SPAGAIN;
2109 XPUSHs (jsonstr);
1922 2110
1923void decode_prefix (JSON *self, SV *jsonstr) 2111void decode_prefix (JSON *self, SV *jsonstr)
1924 PPCODE: 2112 PPCODE:
1925{ 2113{
1926 char *offset; 2114 SV *sv;
2115 STRLEN offset;
2116 PUTBACK; sv = decode_json (jsonstr, self, &offset); SPAGAIN;
1927 EXTEND (SP, 2); 2117 EXTEND (SP, 2);
1928 PUSHs (decode_json (jsonstr, self, &offset)); 2118 PUSHs (sv);
1929 PUSHs (sv_2mortal (newSVuv (ptr_to_index (jsonstr, offset)))); 2119 PUSHs (sv_2mortal (newSVuv (ptr_to_index (jsonstr, SvPV_nolen (jsonstr) + offset))));
1930} 2120}
1931 2121
1932void incr_parse (JSON *self, SV *jsonstr = 0) 2122void incr_parse (JSON *self, SV *jsonstr = 0)
1933 PPCODE: 2123 PPCODE:
1934{ 2124{
1980 } 2170 }
1981 2171
1982 if (GIMME_V != G_VOID) 2172 if (GIMME_V != G_VOID)
1983 do 2173 do
1984 { 2174 {
2175 SV *sv;
1985 char *offset; 2176 STRLEN offset;
1986 2177
1987 if (!INCR_DONE (self)) 2178 if (!INCR_DONE (self))
1988 { 2179 {
1989 incr_parse (self); 2180 incr_parse (self);
1990 2181
1991 if (self->incr_pos > self->max_size && self->max_size) 2182 if (self->incr_pos > self->max_size && self->max_size)
1992 croak ("attempted decode of JSON text of %lu bytes size, but max_size is set to %lu", 2183 croak ("attempted decode of JSON text of %lu bytes size, but max_size is set to %lu",
1993 (unsigned long)self->incr_pos, (unsigned long)self->max_size); 2184 (unsigned long)self->incr_pos, (unsigned long)self->max_size);
1994 2185
1995 if (!INCR_DONE (self)) 2186 if (!INCR_DONE (self))
2187 {
2188 // as an optimisation, do not accumulate white space in the incr buffer
2189 if (self->incr_mode == INCR_M_WS && self->incr_pos)
2190 {
2191 self->incr_pos = 0;
2192 SvCUR_set (self->incr_text, 0);
2193 }
2194
1996 break; 2195 break;
2196 }
1997 } 2197 }
1998 2198
1999 XPUSHs (decode_json (self->incr_text, self, &offset)); 2199 PUTBACK; sv = decode_json (self->incr_text, self, &offset); SPAGAIN;
2200 XPUSHs (sv);
2000 2201
2001 self->incr_pos -= offset - SvPVX (self->incr_text); 2202 self->incr_pos -= offset;
2002 self->incr_nest = 0; 2203 self->incr_nest = 0;
2003 self->incr_mode = 0; 2204 self->incr_mode = 0;
2004 2205
2005 sv_chop (self->incr_text, offset); 2206 sv_chop (self->incr_text, SvPVX (self->incr_text) + offset);
2006 } 2207 }
2007 while (GIMME_V == G_ARRAY); 2208 while (GIMME_V == G_ARRAY);
2008} 2209}
2009 2210
2010SV *incr_text (JSON *self) 2211SV *incr_text (JSON *self)
2048 SvREFCNT_dec (self->incr_text); 2249 SvREFCNT_dec (self->incr_text);
2049 2250
2050PROTOTYPES: ENABLE 2251PROTOTYPES: ENABLE
2051 2252
2052void encode_json (SV *scalar) 2253void encode_json (SV *scalar)
2053 ALIAS:
2054 to_json_ = 0
2055 encode_json = F_UTF8
2056 PPCODE: 2254 PPCODE:
2057{ 2255{
2058 JSON json; 2256 JSON json;
2059 json_init (&json); 2257 json_init (&json);
2060 json.flags |= ix; 2258 json.flags |= F_UTF8;
2061 XPUSHs (encode_json (scalar, &json)); 2259 PUTBACK; scalar = encode_json (scalar, &json); SPAGAIN;
2260 XPUSHs (scalar);
2062} 2261}
2063 2262
2064void decode_json (SV *jsonstr) 2263void decode_json (SV *jsonstr)
2065 ALIAS:
2066 from_json_ = 0
2067 decode_json = F_UTF8
2068 PPCODE: 2264 PPCODE:
2069{ 2265{
2070 JSON json; 2266 JSON json;
2071 json_init (&json); 2267 json_init (&json);
2072 json.flags |= ix; 2268 json.flags |= F_UTF8;
2073 XPUSHs (decode_json (jsonstr, &json, 0)); 2269 PUTBACK; jsonstr = decode_json (jsonstr, &json, 0); SPAGAIN;
2270 XPUSHs (jsonstr);
2074} 2271}
2075 2272

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines