--- JSON-XS/XS.xs 2007/05/09 16:41:12 1.32 +++ JSON-XS/XS.xs 2007/07/01 22:20:00 1.48 @@ -11,22 +11,30 @@ # define snprintf _snprintf // C compilers have this in stdio.h #endif -#define F_ASCII 0x00000001UL -#define F_LATIN1 0x00000002UL -#define F_UTF8 0x00000004UL -#define F_INDENT 0x00000008UL -#define F_CANONICAL 0x00000010UL -#define F_SPACE_BEFORE 0x00000020UL -#define F_SPACE_AFTER 0x00000040UL -#define F_ALLOW_NONREF 0x00000100UL -#define F_SHRINK 0x00000200UL -#define F_MAXDEPTH 0xf8000000UL -#define S_MAXDEPTH 27 +// some old perls do not have this, try to make it work, no +// guarentees, though. if it breaks, you get to keep the pieces. +#ifndef UTF8_MAXBYTES +# define UTF8_MAXBYTES 13 +#endif -#define DEC_DEPTH(flags) (1UL << ((flags & F_MAXDEPTH) >> S_MAXDEPTH)) +#define F_ASCII 0x00000001UL +#define F_LATIN1 0x00000002UL +#define F_UTF8 0x00000004UL +#define F_INDENT 0x00000008UL +#define F_CANONICAL 0x00000010UL +#define F_SPACE_BEFORE 0x00000020UL +#define F_SPACE_AFTER 0x00000040UL +#define F_ALLOW_NONREF 0x00000100UL +#define F_SHRINK 0x00000200UL +#define F_ALLOW_BLESSED 0x00000400UL +#define F_CONV_BLESSED 0x00000800UL // NYI +#define F_MAXDEPTH 0xf8000000UL +#define S_MAXDEPTH 27 +#define F_MAXSIZE 0x01f00000UL +#define S_MAXSIZE 20 -// F_SELFCONVERT? <=> to_json/toJson -// F_BLESSED? <=> { $__class__$ => } +#define DEC_DEPTH(flags) (1UL << ((flags & F_MAXDEPTH) >> S_MAXDEPTH)) +#define DEC_SIZE(flags) (1UL << ((flags & F_MAXSIZE ) >> S_MAXSIZE )) #define F_PRETTY F_INDENT | F_SPACE_BEFORE | F_SPACE_AFTER #define F_DEFAULT (9UL << S_MAXDEPTH) @@ -34,26 +42,33 @@ #define INIT_SIZE 32 // initial scalar size to be allocated #define INDENT_STEP 3 // spaces per indentation level -#define SHORT_STRING_LEN 512 // special-case strings of up to this size +#define SHORT_STRING_LEN 16384 // special-case strings of up to this size #define SB do { #define SE } while (0) -static HV *json_stash; // JSON::XS:: +#if __GNUC__ >= 3 +# define expect(expr,value) __builtin_expect ((expr),(value)) +# define inline inline +#else +# define expect(expr,value) (expr) +# define inline static +#endif -///////////////////////////////////////////////////////////////////////////// -// utility functions +#define expect_false(expr) expect ((expr) != 0, 0) +#define expect_true(expr) expect ((expr) != 0, 1) -static UV * -SvJSON (SV *sv) -{ - if (!(SvROK (sv) && SvOBJECT (SvRV (sv)) && SvSTASH (SvRV (sv)) == json_stash)) - croak ("object is not of type JSON::XS"); +static HV *json_stash, *json_boolean_stash; // JSON::XS:: +static SV *json_true, *json_false; - return &SvUVX (SvRV (sv)); -} +typedef struct { + U32 flags; +} JSON; -static void +///////////////////////////////////////////////////////////////////////////// +// utility functions + +inline void shrink (SV *sv) { sv_utf8_downgrade (sv, 1); @@ -72,10 +87,10 @@ // we special-case "safe" characters from U+80 .. U+7FF, // but use the very good perl function to parse anything else. // note that we never call this function for a ascii codepoints -static UV +inline UV decode_utf8 (unsigned char *s, STRLEN len, STRLEN *clen) { - if (s[0] > 0xdf || s[0] < 0xc2) + if (expect_false (s[0] > 0xdf || s[0] < 0xc2)) return utf8n_to_uvuni (s, len, clen, UTF8_CHECK_ONLY); else if (len > 1 && s[1] >= 0x80 && s[1] <= 0xbf) { @@ -98,15 +113,15 @@ char *cur; // SvPVX (sv) + current output position char *end; // SvEND (sv) SV *sv; // result scalar - U32 flags; // F_* + JSON json; U32 indent; // indentation level U32 maxdepth; // max. indentation/recursion level } enc_t; -static void +inline void need (enc_t *enc, STRLEN len) { - if (enc->cur + len >= enc->end) + if (expect_false (enc->cur + len >= enc->end)) { STRLEN cur = enc->cur - SvPVX (enc->sv); SvGROW (enc->sv, cur + len + 1); @@ -115,7 +130,7 @@ } } -static void +inline void encode_ch (enc_t *enc, char ch) { need (enc, 1); @@ -133,15 +148,15 @@ { unsigned char ch = *(unsigned char *)str; - if (ch >= 0x20 && ch < 0x80) // most common case + if (expect_true (ch >= 0x20 && ch < 0x80)) // most common case { - if (ch == '"') // but with slow exceptions + if (expect_false (ch == '"')) // but with slow exceptions { need (enc, len += 1); *enc->cur++ = '\\'; *enc->cur++ = '"'; } - else if (ch == '\\') + else if (expect_false (ch == '\\')) { need (enc, len += 1); *enc->cur++ = '\\'; @@ -169,7 +184,6 @@ if (is_utf8) { - //uch = utf8n_to_uvuni (str, end - str, &clen, UTF8_CHECK_ONLY); uch = decode_utf8 (str, end - str, &clen); if (clen == (STRLEN)-1) croak ("malformed or illegal unicode character in string [%.11s], cannot convert to JSON", str); @@ -183,7 +197,7 @@ if (uch > 0x10FFFFUL) croak ("out of range codepoint (0x%lx) encountered, unrepresentable in JSON", (unsigned long)uch); - if (uch < 0x80 || enc->flags & F_ASCII || (enc->flags & F_LATIN1 && uch > 0xFF)) + if (uch < 0x80 || enc->json.flags & F_ASCII || (enc->json.flags & F_LATIN1 && uch > 0xFF)) { if (uch > 0xFFFFUL) { @@ -207,7 +221,7 @@ str += clen; } - else if (enc->flags & F_LATIN1) + else if (enc->json.flags & F_LATIN1) { *enc->cur++ = uch; str += clen; @@ -235,10 +249,10 @@ } } -static void +inline void encode_indent (enc_t *enc) { - if (enc->flags & F_INDENT) + if (enc->json.flags & F_INDENT) { int spaces = enc->indent * INDENT_STEP; @@ -248,31 +262,31 @@ } } -static void +inline void encode_space (enc_t *enc) { need (enc, 1); encode_ch (enc, ' '); } -static void +inline void encode_nl (enc_t *enc) { - if (enc->flags & F_INDENT) + if (enc->json.flags & F_INDENT) { need (enc, 1); encode_ch (enc, '\n'); } } -static void +inline void encode_comma (enc_t *enc) { encode_ch (enc, ','); - if (enc->flags & F_INDENT) + if (enc->json.flags & F_INDENT) encode_nl (enc); - else if (enc->flags & F_SPACE_AFTER) + else if (enc->json.flags & F_SPACE_AFTER) encode_space (enc); } @@ -325,9 +339,9 @@ encode_ch (enc, '"'); - if (enc->flags & F_SPACE_BEFORE) encode_space (enc); + if (enc->json.flags & F_SPACE_BEFORE) encode_space (enc); encode_ch (enc, ':'); - if (enc->flags & F_SPACE_AFTER ) encode_space (enc); + if (enc->json.flags & F_SPACE_AFTER ) encode_space (enc); encode_sv (enc, HeVAL (he)); } @@ -372,10 +386,15 @@ // actually, this is mostly due to the stupid so-called // security workaround added somewhere in 5.8.x. // that randomises hash orderings - if (enc->flags & F_CANONICAL) + if (enc->json.flags & F_CANONICAL) { - HE *he, *hes [count]; // if your compiler dies here, you need to enable C99 mode int fast = 1; + HE *he; +#if defined(__BORLANDC__) || defined(_MSC_VER) + HE **hes = _alloca (count * sizeof (HE)); +#else + HE *hes [count]; // if your compiler dies here, you need to enable C99 mode +#endif i = 0; while ((he = hv_iternext (hv))) @@ -449,7 +468,61 @@ SvGETMAGIC (sv); svt = SvTYPE (sv); - if (svt == SVt_PVHV) + if (expect_false (SvOBJECT (sv))) + { + if (SvSTASH (sv) == json_boolean_stash) + { + if (SvIV (sv) == 0) + encode_str (enc, "false", 5, 0); + else + encode_str (enc, "true", 4, 0); + } + else + { +#if 0 + if (0 && sv_derived_from (rv, "JSON::Literal")) + { + // not yet + } +#endif + if (enc->json.flags & F_CONV_BLESSED) + { + // we re-bless the reference to get overload and other niceties right + GV *to_json = gv_fetchmethod_autoload (SvSTASH (sv), "TO_JSON", 1); + + if (to_json) + { + dSP; + ENTER; + SAVETMPS; + PUSHMARK (SP); + XPUSHs (sv_bless (sv_2mortal (newRV_inc (sv)), SvSTASH (sv))); + + // calling with G_SCALAR ensures that we always get a 1 reutrn value + // check anyways. + PUTBACK; + assert (1 == call_sv ((SV *)GvCV (to_json), G_SCALAR)); + SPAGAIN; + + encode_sv (enc, POPs); + + FREETMPS; + LEAVE; + } + else if (enc->json.flags & F_ALLOW_BLESSED) + encode_str (enc, "null", 4, 0); + else + croak ("encountered object '%s', but neither allow_blessed enabled nor TO_JSON method available on it", + SvPV_nolen (sv_2mortal (newRV_inc (sv)))); + } + else if (enc->json.flags & F_ALLOW_BLESSED) + encode_str (enc, "null", 4, 0); + else + croak ("encountered object '%s', but neither allow_blessed nor convert_blessed settings are enabled", + SvPV_nolen (sv_2mortal (newRV_inc (sv)))); + } + } + else if (svt == SVt_PVHV) encode_hv (enc, (HV *)sv); else if (svt == SVt_PVAV) encode_av (enc, (AV *)sv); @@ -483,17 +556,50 @@ } else if (SvNOKp (sv)) { + // trust that perl will do the right thing w.r.t. JSON syntax. need (enc, NV_DIG + 32); Gconvert (SvNVX (sv), NV_DIG, 0, enc->cur); enc->cur += strlen (enc->cur); } else if (SvIOKp (sv)) { - need (enc, 64); - enc->cur += - SvIsUV(sv) - ? snprintf (enc->cur, 64, "%"UVuf, (UV)SvUVX (sv)) - : snprintf (enc->cur, 64, "%"IVdf, (IV)SvIVX (sv)); + // we assume we can always read an IV as a UV + if (SvUV (sv) & ~(UV)0x7fff) + { + // large integer, use the (rather slow) snprintf way. + need (enc, sizeof (UV) * 3); + enc->cur += + SvIsUV(sv) + ? snprintf (enc->cur, sizeof (UV) * 3, "%"UVuf, (UV)SvUVX (sv)) + : snprintf (enc->cur, sizeof (UV) * 3, "%"IVdf, (IV)SvIVX (sv)); + } + else + { + // optimise the "small number case" + // code will likely be branchless and use only a single multiplication + I32 i = SvIV (sv); + U32 u; + char digit, nz = 0; + + need (enc, 6); + + *enc->cur = '-'; enc->cur += i < 0 ? 1 : 0; + u = i < 0 ? -i : i; + + // convert to 4.28 fixed-point representation + u = u * ((0xfffffff + 10000) / 10000); // 10**5, 5 fractional digits + + // now output digit by digit, each time masking out the integer part + // and multiplying by 5 while moving the decimal point one to the right, + // resulting in a net multiplication by 10. + // we always write the digit to memory but conditionally increment + // the pointer, to ease the usage of conditional move instructions. + digit = u >> 28; *enc->cur = digit + '0'; enc->cur += (nz = nz || digit); u = (u & 0xfffffff) * 5; + digit = u >> 27; *enc->cur = digit + '0'; enc->cur += (nz = nz || digit); u = (u & 0x7ffffff) * 5; + digit = u >> 26; *enc->cur = digit + '0'; enc->cur += (nz = nz || digit); u = (u & 0x3ffffff) * 5; + digit = u >> 25; *enc->cur = digit + '0'; enc->cur += (nz = nz || digit); u = (u & 0x1ffffff) * 5; + digit = u >> 24; *enc->cur = digit + '0'; enc->cur += 1; // correctly generate '0' + } } else if (SvROK (sv)) encode_rv (enc, SvRV (sv)); @@ -505,19 +611,19 @@ } static SV * -encode_json (SV *scalar, U32 flags) +encode_json (SV *scalar, JSON *json) { enc_t enc; - if (!(flags & F_ALLOW_NONREF) && !SvROK (scalar)) + if (!(json->flags & F_ALLOW_NONREF) && !SvROK (scalar)) croak ("hash- or arrayref expected (not a simple scalar, use allow_nonref to allow this)"); - enc.flags = flags; + enc.json = *json; enc.sv = sv_2mortal (NEWSV (0, INIT_SIZE)); enc.cur = SvPVX (enc.sv); enc.end = SvEND (enc.sv); enc.indent = 0; - enc.maxdepth = DEC_DEPTH (flags); + enc.maxdepth = DEC_DEPTH (enc.json.flags); SvPOK_only (enc.sv); encode_sv (&enc, scalar); @@ -525,10 +631,10 @@ SvCUR_set (enc.sv, enc.cur - SvPVX (enc.sv)); *SvEND (enc.sv) = 0; // many xs functions expect a trailing 0 for text strings - if (!(flags & (F_ASCII | F_LATIN1 | F_UTF8))) + if (!(enc.json.flags & (F_ASCII | F_LATIN1 | F_UTF8))) SvUTF8_on (enc.sv); - if (enc.flags & F_SHRINK) + if (enc.json.flags & F_SHRINK) shrink (enc.sv); return enc.sv; @@ -543,12 +649,12 @@ char *cur; // current parser pointer char *end; // end of input string const char *err; // parse error, if != 0 - U32 flags; // F_* + JSON json; U32 depth; // recursion depth U32 maxdepth; // recursion depth limit } dec_t; -static void +inline void decode_ws (dec_t *dec) { for (;;) @@ -584,10 +690,10 @@ signed char d1, d2, d3, d4; unsigned char *cur = (unsigned char *)dec->cur; - d1 = decode_hexdigit [cur [0]]; if (d1 < 0) ERR ("four hexadecimal digits expected"); - d2 = decode_hexdigit [cur [1]]; if (d2 < 0) ERR ("four hexadecimal digits expected"); - d3 = decode_hexdigit [cur [2]]; if (d3 < 0) ERR ("four hexadecimal digits expected"); - d4 = decode_hexdigit [cur [3]]; if (d4 < 0) ERR ("four hexadecimal digits expected"); + d1 = decode_hexdigit [cur [0]]; if (expect_false (d1 < 0)) ERR ("exactly four hexadecimal digits expected"); + d2 = decode_hexdigit [cur [1]]; if (expect_false (d2 < 0)) ERR ("exactly four hexadecimal digits expected"); + d3 = decode_hexdigit [cur [2]]; if (expect_false (d3 < 0)) ERR ("exactly four hexadecimal digits expected"); + d4 = decode_hexdigit [cur [3]]; if (expect_false (d4 < 0)) ERR ("exactly four hexadecimal digits expected"); dec->cur += 4; @@ -605,6 +711,7 @@ { SV *sv = 0; int utf8 = 0; + char *dec_cur = dec->cur; do { @@ -613,33 +720,35 @@ do { - unsigned char ch = *(unsigned char *)dec->cur++; + unsigned char ch = *(unsigned char *)dec_cur++; - if (ch == '"') + if (expect_false (ch == '"')) { - --dec->cur; + --dec_cur; break; } - else if (ch == '\\') + else if (expect_false (ch == '\\')) { - switch (*dec->cur) + switch (*dec_cur) { case '\\': case '/': - case '"': *cur++ = *dec->cur++; break; + case '"': *cur++ = *dec_cur++; break; - case 'b': ++dec->cur; *cur++ = '\010'; break; - case 't': ++dec->cur; *cur++ = '\011'; break; - case 'n': ++dec->cur; *cur++ = '\012'; break; - case 'f': ++dec->cur; *cur++ = '\014'; break; - case 'r': ++dec->cur; *cur++ = '\015'; break; + case 'b': ++dec_cur; *cur++ = '\010'; break; + case 't': ++dec_cur; *cur++ = '\011'; break; + case 'n': ++dec_cur; *cur++ = '\012'; break; + case 'f': ++dec_cur; *cur++ = '\014'; break; + case 'r': ++dec_cur; *cur++ = '\015'; break; case 'u': { UV lo, hi; - ++dec->cur; + ++dec_cur; + dec->cur = dec_cur; hi = decode_4hex (dec); + dec_cur = dec->cur; if (hi == (UV)-1) goto fail; @@ -647,12 +756,14 @@ if (hi >= 0xd800) if (hi < 0xdc00) { - if (dec->cur [0] != '\\' || dec->cur [1] != 'u') + if (dec_cur [0] != '\\' || dec_cur [1] != 'u') ERR ("missing low surrogate character in surrogate pair"); - dec->cur += 2; + dec_cur += 2; + dec->cur = dec_cur; lo = decode_4hex (dec); + dec_cur = dec->cur; if (lo == (UV)-1) goto fail; @@ -676,32 +787,32 @@ break; default: - --dec->cur; + --dec_cur; ERR ("illegal backslash escape sequence in string"); } } - else if (ch >= 0x20 && ch <= 0x7f) + else if (expect_true (ch >= 0x20 && ch <= 0x7f)) *cur++ = ch; else if (ch >= 0x80) { STRLEN clen; UV uch; - --dec->cur; + --dec_cur; - uch = decode_utf8 (dec->cur, dec->end - dec->cur, &clen); + uch = decode_utf8 (dec_cur, dec->end - dec_cur, &clen); if (clen == (STRLEN)-1) ERR ("malformed UTF-8 character in JSON string"); do - *cur++ = *dec->cur++; + *cur++ = *dec_cur++; while (--clen); utf8 = 1; } else { - --dec->cur; + --dec_cur; if (!ch) ERR ("unexpected end of string while parsing JSON string"); @@ -724,9 +835,9 @@ sv = newSVpvn (buf, len); } } - while (*dec->cur != '"'); + while (*dec_cur != '"'); - ++dec->cur; + ++dec_cur; if (sv) { @@ -739,9 +850,11 @@ else sv = newSVpvn ("", 0); + dec->cur = dec_cur; return sv; fail: + dec->cur = dec_cur; return 0; } @@ -809,18 +922,41 @@ if (!is_nv) { - UV uv; - int numtype = grok_number (start, dec->cur - start, &uv); - if (numtype & IS_NUMBER_IN_UV) - if (numtype & IS_NUMBER_NEG) + // special case the rather common 1..4-digit-int case, assumes 32 bit ints or so + if (*start == '-') + switch (dec->cur - start) { - if (uv < (UV)IV_MIN) - return newSViv (-(IV)uv); + case 2: return newSViv (-( start [1] - '0' * 1)); + case 3: return newSViv (-( start [1] * 10 + start [2] - '0' * 11)); + case 4: return newSViv (-( start [1] * 100 + start [2] * 10 + start [3] - '0' * 111)); + case 5: return newSViv (-(start [1] * 1000 + start [2] * 100 + start [3] * 10 + start [4] - '0' * 1111)); } - else - return newSVuv (uv); + else + switch (dec->cur - start) + { + case 1: return newSViv ( start [0] - '0' * 1); + case 2: return newSViv ( start [0] * 10 + start [1] - '0' * 11); + case 3: return newSViv ( start [0] * 100 + start [1] * 10 + start [2] - '0' * 111); + case 4: return newSViv ( start [0] * 1000 + start [1] * 100 + start [2] * 10 + start [3] - '0' * 1111); + } + + { + UV uv; + int numtype = grok_number (start, dec->cur - start, &uv); + if (numtype & IS_NUMBER_IN_UV) + if (numtype & IS_NUMBER_NEG) + { + if (uv < (UV)IV_MIN) + return newSViv (-(IV)uv); + } + else + return newSVuv (uv); + + // here would likely be the place for bigint support + } } + // if we ever support bigint or bigfloat, this is the place for bigfloat return newSVnv (Atof (start)); fail: @@ -884,25 +1020,63 @@ else for (;;) { - SV *key, *value; - decode_ws (dec); EXPECT_CH ('"'); - key = decode_str (dec); - if (!key) - goto fail; + // heuristic: assume that + // a) decode_str + hv_store_ent are abysmally slow. + // b) most hash keys are short, simple ascii text. + // => try to "fast-match" such strings to avoid + // the overhead of decode_str + hv_store_ent. + { + SV *value; + char *p = dec->cur; + char *e = p + 24; // only try up to 24 bytes - decode_ws (dec); EXPECT_CH (':'); + for (;;) + { + // the >= 0x80 is true on most architectures + if (p == e || *p < 0x20 || *p >= 0x80 || *p == '\\') + { + // slow path, back up and use decode_str + SV *key = decode_str (dec); + if (!key) + goto fail; - value = decode_sv (dec); - if (!value) - { - SvREFCNT_dec (key); - goto fail; - } + decode_ws (dec); EXPECT_CH (':'); - hv_store_ent (hv, key, value, 0); - SvREFCNT_dec (key); + value = decode_sv (dec); + if (!value) + { + SvREFCNT_dec (key); + goto fail; + } + + hv_store_ent (hv, key, value, 0); + SvREFCNT_dec (key); + + break; + } + else if (*p == '"') + { + // fast path, got a simple key + char *key = dec->cur; + int len = p - key; + dec->cur = p + 1; + + decode_ws (dec); EXPECT_CH (':'); + + value = decode_sv (dec); + if (!value) + goto fail; + + hv_store (hv, key, len, value, 0); + + break; + } + + ++p; + } + } decode_ws (dec); @@ -931,6 +1105,9 @@ decode_sv (dec_t *dec) { decode_ws (dec); + + // the beauty of JSON: you need exactly one character lookahead + // to parse anything. switch (*dec->cur) { case '"': ++dec->cur; return decode_str (dec); @@ -946,7 +1123,7 @@ if (dec->end - dec->cur >= 4 && !memcmp (dec->cur, "true", 4)) { dec->cur += 4; - return newSViv (1); + return SvREFCNT_inc (json_true); } else ERR ("'true' expected"); @@ -957,7 +1134,7 @@ if (dec->end - dec->cur >= 5 && !memcmp (dec->cur, "false", 5)) { dec->cur += 5; - return newSViv (0); + return SvREFCNT_inc (json_false); } else ERR ("'false' expected"); @@ -985,7 +1162,7 @@ } static SV * -decode_json (SV *string, U32 flags, UV *offset_return) +decode_json (SV *string, JSON *json, UV *offset_return) { dec_t dec; UV offset; @@ -994,19 +1171,23 @@ SvGETMAGIC (string); SvUPGRADE (string, SVt_PV); - if (flags & F_UTF8) + if (json->flags & F_MAXSIZE && SvCUR (string) > DEC_SIZE (json->flags)) + croak ("attempted decode of JSON text of %lu bytes size, but max_size is set to %lu", + (unsigned long)SvCUR (string), (unsigned long)DEC_SIZE (json->flags)); + + if (json->flags & F_UTF8) sv_utf8_downgrade (string, 0); else sv_utf8_upgrade (string); SvGROW (string, SvCUR (string) + 1); // should basically be a NOP - dec.flags = flags; + dec.json = *json; dec.cur = SvPVX (string); dec.end = SvEND (string); dec.err = 0; dec.depth = 0; - dec.maxdepth = DEC_DEPTH (dec.flags); + dec.maxdepth = DEC_DEPTH (dec.json.flags); *dec.end = 0; // this should basically be a nop, too, but make sure it's there sv = decode_sv (&dec); @@ -1026,7 +1207,7 @@ if (offset_return || !sv) { - offset = dec.flags & F_UTF8 + offset = dec.json.flags & F_UTF8 ? dec.cur - SvPVX (string) : utf8_distance (dec.cur, SvPVX (string)); @@ -1055,7 +1236,7 @@ sv = sv_2mortal (sv); - if (!(dec.flags & F_ALLOW_NONREF) && !SvROK (sv)) + if (!(dec.json.flags & F_ALLOW_NONREF) && !SvROK (sv)) croak ("JSON text must be an object or array (but found number, string, true, false or null, use allow_nonref to allow this)"); return sv; @@ -1070,8 +1251,6 @@ { int i; - memset (decode_hexdigit, 0xff, 256); - for (i = 0; i < 256; ++i) decode_hexdigit [i] = i >= '0' && i <= '9' ? i - '0' @@ -1079,46 +1258,52 @@ : i >= 'A' && i <= 'F' ? i - 'A' + 10 : -1; - json_stash = gv_stashpv ("JSON::XS", 1); + json_stash = gv_stashpv ("JSON::XS" , 1); + json_boolean_stash = gv_stashpv ("JSON::XS::Boolean", 1); + + json_true = get_sv ("JSON::XS::true" , 1); SvREADONLY_on (json_true ); + json_false = get_sv ("JSON::XS::false", 1); SvREADONLY_on (json_false); } PROTOTYPES: DISABLE -SV *new (char *dummy) - CODE: - RETVAL = sv_bless (newRV_noinc (newSVuv (F_DEFAULT)), json_stash); - OUTPUT: - RETVAL +void new (char *klass) + PPCODE: +{ + SV *pv = NEWSV (0, sizeof (JSON)); + SvPOK_only (pv); + Zero (SvPVX (pv), 1, sizeof (JSON)); + ((JSON *)SvPVX (pv))->flags = F_DEFAULT; + XPUSHs (sv_2mortal (sv_bless (newRV_noinc (pv), json_stash))); +} -SV *ascii (SV *self, int enable = 1) +void ascii (JSON *self, int enable = 1) ALIAS: - ascii = F_ASCII - latin1 = F_LATIN1 - utf8 = F_UTF8 - indent = F_INDENT - canonical = F_CANONICAL - space_before = F_SPACE_BEFORE - space_after = F_SPACE_AFTER - pretty = F_PRETTY - allow_nonref = F_ALLOW_NONREF - shrink = F_SHRINK - CODE: + ascii = F_ASCII + latin1 = F_LATIN1 + utf8 = F_UTF8 + indent = F_INDENT + canonical = F_CANONICAL + space_before = F_SPACE_BEFORE + space_after = F_SPACE_AFTER + pretty = F_PRETTY + allow_nonref = F_ALLOW_NONREF + shrink = F_SHRINK + allow_blessed = F_ALLOW_BLESSED + convert_blessed = F_CONV_BLESSED + PPCODE: { - UV *uv = SvJSON (self); if (enable) - *uv |= ix; + self->flags |= ix; else - *uv &= ~ix; + self->flags &= ~ix; - RETVAL = newSVsv (self); + XPUSHs (ST (0)); } - OUTPUT: - RETVAL -SV *max_depth (SV *self, UV max_depth = 0x80000000UL) - CODE: +void max_depth (JSON *self, UV max_depth = 0x80000000UL) + PPCODE: { - UV *uv = SvJSON (self); UV log2 = 0; if (max_depth > 0x80000000UL) max_depth = 0x80000000UL; @@ -1126,41 +1311,57 @@ while ((1UL << log2) < max_depth) ++log2; - *uv = *uv & ~F_MAXDEPTH | (log2 << S_MAXDEPTH); + self->flags = self->flags & ~F_MAXDEPTH | (log2 << S_MAXDEPTH); + + XPUSHs (ST (0)); +} + +void max_size (JSON *self, UV max_size = 0) + PPCODE: +{ + UV log2 = 0; + + if (max_size > 0x80000000UL) max_size = 0x80000000UL; + if (max_size == 1) max_size = 2; + + while ((1UL << log2) < max_size) + ++log2; + + self->flags = self->flags & ~F_MAXSIZE | (log2 << S_MAXSIZE); - RETVAL = newSVsv (self); + XPUSHs (ST (0)); } - OUTPUT: - RETVAL -void encode (SV *self, SV *scalar) +void encode (JSON *self, SV *scalar) PPCODE: - XPUSHs (encode_json (scalar, *SvJSON (self))); + XPUSHs (encode_json (scalar, self)); -void decode (SV *self, SV *jsonstr) +void decode (JSON *self, SV *jsonstr) PPCODE: - XPUSHs (decode_json (jsonstr, *SvJSON (self), 0)); + XPUSHs (decode_json (jsonstr, self, 0)); -void decode_prefix (SV *self, SV *jsonstr) +void decode_prefix (JSON *self, SV *jsonstr) PPCODE: { UV offset; EXTEND (SP, 2); - PUSHs (decode_json (jsonstr, *SvJSON (self), &offset)); + PUSHs (decode_json (jsonstr, self, &offset)); PUSHs (sv_2mortal (newSVuv (offset))); } PROTOTYPES: ENABLE void to_json (SV *scalar) - ALIAS: - objToJson = 0 PPCODE: - XPUSHs (encode_json (scalar, F_DEFAULT | F_UTF8)); +{ + JSON json = { F_DEFAULT | F_UTF8 }; + XPUSHs (encode_json (scalar, &json)); +} void from_json (SV *jsonstr) - ALIAS: - jsonToObj = 0 PPCODE: - XPUSHs (decode_json (jsonstr, F_DEFAULT | F_UTF8, 0)); +{ + JSON json = { F_DEFAULT | F_UTF8 }; + XPUSHs (decode_json (jsonstr, &json, 0)); +}