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.125 by root, Sun Feb 21 15:37:53 2016 UTC vs.
Revision 1.128 by root, Fri Oct 7 05:18:48 2016 UTC

79#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?)"
80 80
81#ifdef USE_ITHREADS 81#ifdef USE_ITHREADS
82# define JSON_SLOW 1 82# define JSON_SLOW 1
83# 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))
84#else 85#else
85# define JSON_SLOW 0 86# define JSON_SLOW 0
86# define JSON_STASH json_stash 87# define JSON_STASH json_stash
88# define BOOL_STASH bool_stash
87#endif 89#endif
88 90
89// the amount of HEs to allocate on the stack, when sorting keys 91// the amount of HEs to allocate on the stack, when sorting keys
90#define STACK_HES 64 92#define STACK_HES 64
91 93
92static HV *json_stash, *types_boolean_stash; // JSON::XS:: 94static HV *json_stash, *bool_stash; // JSON::XS::, Types::Serialiser::Boolean::
93static SV *types_true, *types_false, *sv_json; 95static SV *bool_true, *bool_false, *sv_json;
94 96
95enum { 97enum {
96 INCR_M_WS = 0, // initial whitespace skipping, must be 0 98 INCR_M_WS = 0, // initial whitespace skipping, must be 0
97 INCR_M_STR, // inside string 99 INCR_M_STR, // inside string
98 INCR_M_BS, // inside backslash 100 INCR_M_BS, // inside backslash
299 // a recursion depth of ten gives us >>500 bits 301 // a recursion depth of ten gives us >>500 bits
300 json_atof_scan1 (s, &accum, &expo, 0, 10); 302 json_atof_scan1 (s, &accum, &expo, 0, 10);
301 303
302 return neg ? -accum : accum; 304 return neg ? -accum : accum;
303} 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
304///////////////////////////////////////////////////////////////////////////// 349/////////////////////////////////////////////////////////////////////////////
305// encoder 350// encoder
306 351
307// structure used for encoding JSON 352// structure used for encoding JSON
308typedef struct 353typedef struct
701 SvGETMAGIC (sv); 746 SvGETMAGIC (sv);
702 svt = SvTYPE (sv); 747 svt = SvTYPE (sv);
703 748
704 if (expect_false (SvOBJECT (sv))) 749 if (expect_false (SvOBJECT (sv)))
705 { 750 {
706 HV *boolean_stash = !JSON_SLOW || types_boolean_stash
707 ? types_boolean_stash
708 : gv_stashpv ("Types::Serialiser::Boolean", 1);
709 HV *stash = SvSTASH (sv); 751 HV *stash = SvSTASH (sv);
710 752
711 if (stash == boolean_stash) 753 if (stash == bool_stash)
712 { 754 {
713 if (SvIV (sv)) 755 if (SvIV (sv))
714 encode_str (enc, "true", 4, 0); 756 encode_str (enc, "true", 4, 0);
715 else 757 else
716 encode_str (enc, "false", 5, 0); 758 encode_str (enc, "false", 5, 0);
790 encode_hv (enc, (HV *)sv); 832 encode_hv (enc, (HV *)sv);
791 else if (svt == SVt_PVAV) 833 else if (svt == SVt_PVAV)
792 encode_av (enc, (AV *)sv); 834 encode_av (enc, (AV *)sv);
793 else if (svt < SVt_PVAV) 835 else if (svt < SVt_PVAV)
794 { 836 {
795 STRLEN len = 0; 837 int bool_type = ref_bool_type (sv);
796 char *pv = svt ? SvPV (sv, len) : 0;
797 838
798 if (len == 1 && *pv == '1') 839 if (bool_type == 1)
799 encode_str (enc, "true", 4, 0); 840 encode_str (enc, "true", 4, 0);
800 else if (len == 1 && *pv == '0') 841 else if (bool_type == 0)
801 encode_str (enc, "false", 5, 0); 842 encode_str (enc, "false", 5, 0);
802 else if (enc->json.flags & F_ALLOW_UNKNOWN) 843 else if (enc->json.flags & F_ALLOW_UNKNOWN)
803 encode_str (enc, "null", 4, 0); 844 encode_str (enc, "null", 4, 0);
804 else 845 else
805 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",
883 else 924 else
884 croak ("encountered perl type (%s,0x%x) that JSON cannot handle, check your input data", 925 croak ("encountered perl type (%s,0x%x) that JSON cannot handle, check your input data",
885 SvPV_nolen (sv), (unsigned int)SvFLAGS (sv)); 926 SvPV_nolen (sv), (unsigned int)SvFLAGS (sv));
886} 927}
887 928
888static int
889json_scalar (SV *scalar)
890{
891 return 0;//D
892 if (!SvROK (scalar))
893 return 1;
894}
895
896static SV * 929static SV *
897encode_json (SV *scalar, JSON *json) 930encode_json (SV *scalar, JSON *json)
898{ 931{
899 enc_t enc; 932 enc_t enc;
900 933
901 if (!(json->flags & F_ALLOW_NONREF) && json_scalar (scalar)) 934 if (!(json->flags & F_ALLOW_NONREF) && json_nonref (scalar))
902 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)");
903 936
904 enc.json = *json; 937 enc.json = *json;
905 enc.sv = sv_2mortal (NEWSV (0, INIT_SIZE)); 938 enc.sv = sv_2mortal (NEWSV (0, INIT_SIZE));
906 enc.cur = SvPVX (enc.sv); 939 enc.cur = SvPVX (enc.sv);
1612 case 't': 1645 case 't':
1613 if (dec->end - dec->cur >= 4 && !memcmp (dec->cur, "true", 4)) 1646 if (dec->end - dec->cur >= 4 && !memcmp (dec->cur, "true", 4))
1614 { 1647 {
1615 dec->cur += 4; 1648 dec->cur += 4;
1616#if JSON_SLOW 1649#if JSON_SLOW
1617 types_true = get_bool ("Types::Serialiser::true"); 1650 bool_true = get_bool ("Types::Serialiser::true");
1618#endif 1651#endif
1619 return newSVsv (types_true); 1652 return newSVsv (bool_true);
1620 } 1653 }
1621 else 1654 else
1622 ERR ("'true' expected"); 1655 ERR ("'true' expected");
1623 1656
1624 break; 1657 break;
1626 case 'f': 1659 case 'f':
1627 if (dec->end - dec->cur >= 5 && !memcmp (dec->cur, "false", 5)) 1660 if (dec->end - dec->cur >= 5 && !memcmp (dec->cur, "false", 5))
1628 { 1661 {
1629 dec->cur += 5; 1662 dec->cur += 5;
1630#if JSON_SLOW 1663#if JSON_SLOW
1631 types_false = get_bool ("Types::Serialiser::false"); 1664 bool_false = get_bool ("Types::Serialiser::false");
1632#endif 1665#endif
1633 return newSVsv (types_false); 1666 return newSVsv (bool_false);
1634 } 1667 }
1635 else 1668 else
1636 ERR ("'false' expected"); 1669 ERR ("'false' expected");
1637 1670
1638 break; 1671 break;
1665 1698
1666 /* work around bugs in 5.10 where manipulating magic values 1699 /* work around bugs in 5.10 where manipulating magic values
1667 * makes perl ignore the magic in subsequent accesses. 1700 * makes perl ignore the magic in subsequent accesses.
1668 * 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
1669 * 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.
1670 */ 1706 */
1671 /*SvGETMAGIC (string);*/ 1707 /*SvGETMAGIC (string);*/
1672 if (SvMAGICAL (string) || !SvPOK (string)) 1708 if (SvMAGICAL (string) || !SvPOK (string) || SvIsCOW_shared_hash (string))
1673 string = sv_2mortal (newSVsv (string)); 1709 string = sv_2mortal (newSVsv (string));
1674 1710
1675 SvUPGRADE (string, SVt_PV); 1711 SvUPGRADE (string, SVt_PV);
1676 1712
1677 /* 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
1752 dec.cur != dec.end ? SvPV_nolen (uni) : "(end of string)"); 1788 dec.cur != dec.end ? SvPV_nolen (uni) : "(end of string)");
1753 } 1789 }
1754 1790
1755 sv = sv_2mortal (sv); 1791 sv = sv_2mortal (sv);
1756 1792
1757 if (!(dec.json.flags & F_ALLOW_NONREF) && !SvROK (sv)) 1793 if (!(dec.json.flags & F_ALLOW_NONREF) && json_nonref (sv))
1758 croak ("JSON text must be an object or array (but found number, string, true, false or null, use allow_nonref to allow this)"); 1794 croak ("JSON text must be an object or array (but found number, string, true, false or null, use allow_nonref to allow this)");
1759 1795
1760 return sv; 1796 return sv;
1761} 1797}
1762 1798
1932 i >= '0' && i <= '9' ? i - '0' 1968 i >= '0' && i <= '9' ? i - '0'
1933 : i >= 'a' && i <= 'f' ? i - 'a' + 10 1969 : i >= 'a' && i <= 'f' ? i - 'a' + 10
1934 : i >= 'A' && i <= 'F' ? i - 'A' + 10 1970 : i >= 'A' && i <= 'F' ? i - 'A' + 10
1935 : -1; 1971 : -1;
1936 1972
1937 json_stash = gv_stashpv ("JSON::XS" , 1); 1973 json_stash = gv_stashpv ("JSON::XS" , 1);
1938 types_boolean_stash = gv_stashpv ("Types::Serialiser::Boolean", 1); 1974 bool_stash = gv_stashpv ("Types::Serialiser::Boolean", 1);
1939
1940 types_true = get_bool ("Types::Serialiser::true"); 1975 bool_true = get_bool ("Types::Serialiser::true");
1941 types_false = get_bool ("Types::Serialiser::false"); 1976 bool_false = get_bool ("Types::Serialiser::false");
1942 1977
1943 sv_json = newSVpv ("JSON", 0); 1978 sv_json = newSVpv ("JSON", 0);
1944 SvREADONLY_on (sv_json); 1979 SvREADONLY_on (sv_json);
1945 1980
1946 CvNODEBUG_on (get_cv ("JSON::XS::incr_text", 0)); /* the debugger completely breaks lvalue subs */ 1981 CvNODEBUG_on (get_cv ("JSON::XS::incr_text", 0)); /* the debugger completely breaks lvalue subs */
1948 1983
1949PROTOTYPES: DISABLE 1984PROTOTYPES: DISABLE
1950 1985
1951void CLONE (...) 1986void CLONE (...)
1952 CODE: 1987 CODE:
1953 json_stash = 0; 1988 json_stash = 0;
1954 types_boolean_stash = 0; 1989 bool_stash = 0;
1955 1990
1956void new (char *klass) 1991void new (char *klass)
1957 PPCODE: 1992 PPCODE:
1958{ 1993{
1959 SV *pv = NEWSV (0, sizeof (JSON)); 1994 SV *pv = NEWSV (0, sizeof (JSON));

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines