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.5 by root, Thu Mar 22 23:24:18 2007 UTC vs.
Revision 1.77 by root, Tue Mar 25 06:37:38 2008 UTC

1#include "EXTERN.h" 1#include "EXTERN.h"
2#include "perl.h" 2#include "perl.h"
3#include "XSUB.h" 3#include "XSUB.h"
4 4
5#include "assert.h" 5#include <assert.h>
6#include "string.h" 6#include <string.h>
7#include "stdlib.h" 7#include <stdlib.h>
8#include <stdio.h>
9#include <limits.h>
10#include <float.h>
8 11
12#if defined(__BORLANDC__) || defined(_MSC_VER)
13# define snprintf _snprintf // C compilers have this in stdio.h
14#endif
15
16// some old perls do not have this, try to make it work, no
17// guarentees, though. if it breaks, you get to keep the pieces.
18#ifndef UTF8_MAXBYTES
19# define UTF8_MAXBYTES 13
20#endif
21
22#define IVUV_MAXCHARS (sizeof (UV) * CHAR_BIT * 28 / 93 + 2)
23
9#define F_ASCII 0x00000001 24#define F_ASCII 0x00000001UL
25#define F_LATIN1 0x00000002UL
10#define F_UTF8 0x00000002 26#define F_UTF8 0x00000004UL
11#define F_INDENT 0x00000004 27#define F_INDENT 0x00000008UL
12#define F_CANONICAL 0x00000008 28#define F_CANONICAL 0x00000010UL
13#define F_SPACE_BEFORE 0x00000010 29#define F_SPACE_BEFORE 0x00000020UL
14#define F_SPACE_AFTER 0x00000020 30#define F_SPACE_AFTER 0x00000040UL
15#define F_JSON_RPC 0x00000040
16#define F_ALLOW_NONREF 0x00000080 31#define F_ALLOW_NONREF 0x00000100UL
32#define F_SHRINK 0x00000200UL
33#define F_ALLOW_BLESSED 0x00000400UL
34#define F_CONV_BLESSED 0x00000800UL
35#define F_RELAXED 0x00001000UL
36
37#define F_MAXDEPTH 0xf8000000UL
38#define S_MAXDEPTH 27
39#define F_MAXSIZE 0x01f00000UL
40#define S_MAXSIZE 20
41#define F_HOOK 0x00080000UL // some hooks exist, so slow-path processing
42
43#define DEC_DEPTH(flags) (1UL << ((flags & F_MAXDEPTH) >> S_MAXDEPTH))
44#define DEC_SIZE(flags) (1UL << ((flags & F_MAXSIZE ) >> S_MAXSIZE ))
17 45
18#define F_PRETTY F_INDENT | F_SPACE_BEFORE | F_SPACE_AFTER 46#define F_PRETTY F_INDENT | F_SPACE_BEFORE | F_SPACE_AFTER
19#define F_DEFAULT 0 47#define F_DEFAULT (9UL << S_MAXDEPTH)
20 48
21#define INIT_SIZE 32 // initial scalar size to be allocated 49#define INIT_SIZE 32 // initial scalar size to be allocated
50#define INDENT_STEP 3 // spaces per indentation level
51
52#define SHORT_STRING_LEN 16384 // special-case strings of up to this size
22 53
23#define SB do { 54#define SB do {
24#define SE } while (0) 55#define SE } while (0)
25 56
26static HV *json_stash; 57#if __GNUC__ >= 3
58# define expect(expr,value) __builtin_expect ((expr), (value))
59# define INLINE static inline
60#else
61# define expect(expr,value) (expr)
62# define INLINE static
63#endif
64
65#define expect_false(expr) expect ((expr) != 0, 0)
66#define expect_true(expr) expect ((expr) != 0, 1)
67
68#define IN_RANGE_INC(type,val,beg,end) \
69 ((unsigned type)((unsigned type)(val) - (unsigned type)(beg)) \
70 <= (unsigned type)((unsigned type)(end) - (unsigned type)(beg)))
71
72#ifdef USE_ITHREADS
73# define JSON_SLOW 1
74# define JSON_STASH (json_stash ? json_stash : gv_stashpv ("JSON::XS", 1))
75#else
76# define JSON_SLOW 0
77# define JSON_STASH json_stash
78#endif
79
80static HV *json_stash, *json_boolean_stash; // JSON::XS::
81static SV *json_true, *json_false;
82
83enum {
84 INCR_M_WS = 0, // initial whitespace skipping, must be 0
85 INCR_M_STR, // inside string
86 INCR_M_BS, // inside backslash
87 INCR_M_JSON // outside anything, count nesting
88};
89
90#define INCR_DONE(json) (!(json)->incr_nest && (json)->incr_mode == INCR_M_JSON)
91
92typedef struct {
93 U32 flags;
94 SV *cb_object;
95 HV *cb_sk_object;
96
97 // for the incremental parser
98 SV *incr_text; // the source text so far
99 STRLEN incr_pos; // the current offset into the text
100 int incr_nest; // {[]}-nesting level
101 int incr_mode;
102} JSON;
103
104/////////////////////////////////////////////////////////////////////////////
105// utility functions
106
107INLINE void
108shrink (SV *sv)
109{
110 sv_utf8_downgrade (sv, 1);
111 if (SvLEN (sv) > SvCUR (sv) + 1)
112 {
113#ifdef SvPV_shrink_to_cur
114 SvPV_shrink_to_cur (sv);
115#elif defined (SvPV_renew)
116 SvPV_renew (sv, SvCUR (sv) + 1);
117#endif
118 }
119}
120
121// decode an utf-8 character and return it, or (UV)-1 in
122// case of an error.
123// we special-case "safe" characters from U+80 .. U+7FF,
124// but use the very good perl function to parse anything else.
125// note that we never call this function for a ascii codepoints
126INLINE UV
127decode_utf8 (unsigned char *s, STRLEN len, STRLEN *clen)
128{
129 if (expect_true (len >= 2
130 && IN_RANGE_INC (char, s[0], 0xc2, 0xdf)
131 && IN_RANGE_INC (char, s[1], 0x80, 0xbf)))
132 {
133 *clen = 2;
134 return ((s[0] & 0x1f) << 6) | (s[1] & 0x3f);
135 }
136 else
137 return utf8n_to_uvuni (s, len, clen, UTF8_CHECK_ONLY);
138}
139
140// likewise for encoding, also never called for ascii codepoints
141// this function takes advantage of this fact, although current gccs
142// seem to optimise the check for >= 0x80 away anyways
143INLINE unsigned char *
144encode_utf8 (unsigned char *s, UV ch)
145{
146 if (expect_false (ch < 0x000080))
147 *s++ = ch;
148 else if (expect_true (ch < 0x000800))
149 *s++ = 0xc0 | ( ch >> 6),
150 *s++ = 0x80 | ( ch & 0x3f);
151 else if ( ch < 0x010000)
152 *s++ = 0xe0 | ( ch >> 12),
153 *s++ = 0x80 | ((ch >> 6) & 0x3f),
154 *s++ = 0x80 | ( ch & 0x3f);
155 else if ( ch < 0x110000)
156 *s++ = 0xf0 | ( ch >> 18),
157 *s++ = 0x80 | ((ch >> 12) & 0x3f),
158 *s++ = 0x80 | ((ch >> 6) & 0x3f),
159 *s++ = 0x80 | ( ch & 0x3f);
160
161 return s;
162}
163
164/////////////////////////////////////////////////////////////////////////////
165// encoder
27 166
28// structure used for encoding JSON 167// structure used for encoding JSON
29typedef struct 168typedef struct
30{ 169{
31 char *cur; 170 char *cur; // SvPVX (sv) + current output position
32 STRLEN len; // SvLEN (sv)
33 char *end; // SvEND (sv) 171 char *end; // SvEND (sv)
34 SV *sv; 172 SV *sv; // result scalar
35 UV flags; 173 JSON json;
36 int max_recurse; 174 U32 indent; // indentation level
37 int indent; 175 U32 maxdepth; // max. indentation/recursion level
176 UV limit; // escape character values >= this value when encoding
38} enc_t; 177} enc_t;
39 178
40// structure used for decoding JSON 179INLINE void
41typedef struct
42{
43 char *cur;
44 char *end;
45 const char *err;
46 UV flags;
47} dec_t;
48
49static UV *
50SvJSON (SV *sv)
51{
52 if (!(SvROK (sv) && SvOBJECT (SvRV (sv)) && SvSTASH (SvRV (sv)) == json_stash))
53 croak ("object is not of type JSON::XS");
54
55 return &SvUVX (SvRV (sv));
56}
57
58/////////////////////////////////////////////////////////////////////////////
59
60static void
61need (enc_t *enc, STRLEN len) 180need (enc_t *enc, STRLEN len)
62{ 181{
63 if (enc->cur + len >= enc->end) 182 if (expect_false (enc->cur + len >= enc->end))
64 { 183 {
65 STRLEN cur = enc->cur - SvPVX (enc->sv); 184 STRLEN cur = enc->cur - SvPVX (enc->sv);
66 SvGROW (enc->sv, cur + len + 1); 185 SvGROW (enc->sv, cur + len + 1);
67 enc->cur = SvPVX (enc->sv) + cur; 186 enc->cur = SvPVX (enc->sv) + cur;
68 enc->end = SvPVX (enc->sv) + SvLEN (enc->sv); 187 enc->end = SvPVX (enc->sv) + SvLEN (enc->sv) - 1;
69 } 188 }
70} 189}
71 190
72static void 191INLINE void
73encode_ch (enc_t *enc, char ch) 192encode_ch (enc_t *enc, char ch)
74{ 193{
75 need (enc, 1); 194 need (enc, 1);
76 *enc->cur++ = ch; 195 *enc->cur++ = ch;
77} 196}
85 204
86 while (str < end) 205 while (str < end)
87 { 206 {
88 unsigned char ch = *(unsigned char *)str; 207 unsigned char ch = *(unsigned char *)str;
89 208
90 if (ch == '"') 209 if (expect_true (ch >= 0x20 && ch < 0x80)) // most common case
91 { 210 {
211 if (expect_false (ch == '"')) // but with slow exceptions
212 {
92 need (enc, len += 1); 213 need (enc, len += 1);
93 *enc->cur++ = '\\'; 214 *enc->cur++ = '\\';
94 *enc->cur++ = '"'; 215 *enc->cur++ = '"';
95 ++str;
96 } 216 }
97 else if (ch == '\\') 217 else if (expect_false (ch == '\\'))
98 { 218 {
99 need (enc, len += 1); 219 need (enc, len += 1);
100 *enc->cur++ = '\\'; 220 *enc->cur++ = '\\';
101 *enc->cur++ = '\\'; 221 *enc->cur++ = '\\';
102 ++str;
103 } 222 }
104 else if (ch >= 0x20 && ch < 0x80) // most common case 223 else
105 {
106 *enc->cur++ = ch; 224 *enc->cur++ = ch;
107 ++str; 225
108 }
109 else if (ch == '\015')
110 {
111 need (enc, len += 1);
112 *enc->cur++ = '\\';
113 *enc->cur++ = 'r';
114 ++str;
115 }
116 else if (ch == '\012')
117 {
118 need (enc, len += 1);
119 *enc->cur++ = '\\';
120 *enc->cur++ = 'n';
121 ++str; 226 ++str;
122 } 227 }
123 else 228 else
124 { 229 {
125 STRLEN clen; 230 switch (ch)
126 UV uch;
127
128 if (is_utf8)
129 { 231 {
130 uch = utf8n_to_uvuni (str, end - str, &clen, UTF8_CHECK_ONLY); 232 case '\010': need (enc, len += 1); *enc->cur++ = '\\'; *enc->cur++ = 'b'; ++str; break;
131 if (clen == (STRLEN)-1) 233 case '\011': need (enc, len += 1); *enc->cur++ = '\\'; *enc->cur++ = 't'; ++str; break;
132 croak ("malformed UTF-8 character in string, cannot convert to JSON"); 234 case '\012': need (enc, len += 1); *enc->cur++ = '\\'; *enc->cur++ = 'n'; ++str; break;
133 } 235 case '\014': need (enc, len += 1); *enc->cur++ = '\\'; *enc->cur++ = 'f'; ++str; break;
134 else 236 case '\015': need (enc, len += 1); *enc->cur++ = '\\'; *enc->cur++ = 'r'; ++str; break;
135 {
136 uch = ch;
137 clen = 1;
138 }
139 237
140 if (uch < 0x80 || enc->flags & F_ASCII) 238 default:
141 {
142 if (uch > 0xFFFFUL)
143 { 239 {
240 STRLEN clen;
241 UV uch;
242
243 if (is_utf8)
244 {
245 uch = decode_utf8 (str, end - str, &clen);
246 if (clen == (STRLEN)-1)
247 croak ("malformed or illegal unicode character in string [%.11s], cannot convert to JSON", str);
248 }
249 else
250 {
251 uch = ch;
252 clen = 1;
253 }
254
255 if (uch < 0x80/*0x20*/ || uch >= enc->limit)
256 {
257 if (uch >= 0x10000UL)
258 {
259 if (uch >= 0x110000UL)
260 croak ("out of range codepoint (0x%lx) encountered, unrepresentable in JSON", (unsigned long)uch);
261
144 need (enc, len += 11); 262 need (enc, len += 11);
145 sprintf (enc->cur, "\\u%04x\\u%04x", 263 sprintf (enc->cur, "\\u%04x\\u%04x",
146 (uch - 0x10000) / 0x400 + 0xD800, 264 (int)((uch - 0x10000) / 0x400 + 0xD800),
147 (uch - 0x10000) % 0x400 + 0xDC00); 265 (int)((uch - 0x10000) % 0x400 + 0xDC00));
148 enc->cur += 12; 266 enc->cur += 12;
267 }
268 else
269 {
270 static char hexdigit [16] = "0123456789abcdef";
271 need (enc, len += 5);
272 *enc->cur++ = '\\';
273 *enc->cur++ = 'u';
274 *enc->cur++ = hexdigit [ uch >> 12 ];
275 *enc->cur++ = hexdigit [(uch >> 8) & 15];
276 *enc->cur++ = hexdigit [(uch >> 4) & 15];
277 *enc->cur++ = hexdigit [(uch >> 0) & 15];
278 }
279
280 str += clen;
281 }
282 else if (enc->json.flags & F_LATIN1)
283 {
284 *enc->cur++ = uch;
285 str += clen;
286 }
287 else if (is_utf8)
288 {
289 need (enc, len += clen);
290 do
291 {
292 *enc->cur++ = *str++;
293 }
294 while (--clen);
295 }
296 else
297 {
298 need (enc, len += UTF8_MAXBYTES - 1); // never more than 11 bytes needed
299 enc->cur = encode_utf8 (enc->cur, uch);
300 ++str;
301 }
149 } 302 }
150 else
151 {
152 static char hexdigit [16] = "0123456789abcdef";
153 need (enc, len += 5);
154 *enc->cur++ = '\\';
155 *enc->cur++ = 'u';
156 *enc->cur++ = hexdigit [ uch >> 12 ];
157 *enc->cur++ = hexdigit [(uch >> 8) & 15];
158 *enc->cur++ = hexdigit [(uch >> 4) & 15];
159 *enc->cur++ = hexdigit [(uch >> 0) & 15];
160 }
161
162 str += clen;
163 }
164 else if (is_utf8)
165 {
166 need (enc, len += clen);
167 do
168 {
169 *enc->cur++ = *str++;
170 }
171 while (--clen);
172 }
173 else
174 {
175 need (enc, 10); // never more than 11 bytes needed
176 enc->cur = uvuni_to_utf8_flags (enc->cur, uch, 0);
177 ++str;
178 } 303 }
179 } 304 }
180 305
181 --len; 306 --len;
182 } 307 }
183} 308}
184 309
185#define INDENT SB \ 310INLINE void
311encode_indent (enc_t *enc)
312{
186 if (enc->flags & F_INDENT) \ 313 if (enc->json.flags & F_INDENT)
187 { \ 314 {
188 int i_; \ 315 int spaces = enc->indent * INDENT_STEP;
189 need (enc, enc->indent); \ 316
190 for (i_ = enc->indent * 3; i_--; )\ 317 need (enc, spaces);
318 memset (enc->cur, ' ', spaces);
319 enc->cur += spaces;
320 }
321}
322
323INLINE void
324encode_space (enc_t *enc)
325{
326 need (enc, 1);
327 encode_ch (enc, ' ');
328}
329
330INLINE void
331encode_nl (enc_t *enc)
332{
333 if (enc->json.flags & F_INDENT)
334 {
335 need (enc, 1);
191 encode_ch (enc, ' '); \ 336 encode_ch (enc, '\n');
192 } \ 337 }
193 SE 338}
194 339
195#define SPACE SB need (enc, 1); encode_ch (enc, ' '); SE 340INLINE void
196#define NL SB if (enc->flags & F_INDENT) { need (enc, 1); encode_ch (enc, '\n'); } SE 341encode_comma (enc_t *enc)
197#define COMMA SB \ 342{
198 encode_ch (enc, ','); \ 343 encode_ch (enc, ',');
344
199 if (enc->flags & F_INDENT) \ 345 if (enc->json.flags & F_INDENT)
200 NL; \ 346 encode_nl (enc);
201 else if (enc->flags & F_SPACE_AFTER) \ 347 else if (enc->json.flags & F_SPACE_AFTER)
202 SPACE; \ 348 encode_space (enc);
203 SE 349}
204 350
205static void encode_sv (enc_t *enc, SV *sv); 351static void encode_sv (enc_t *enc, SV *sv);
206 352
207static void 353static void
208encode_av (enc_t *enc, AV *av) 354encode_av (enc_t *enc, AV *av)
209{ 355{
210 int i, len = av_len (av); 356 int i, len = av_len (av);
211 357
358 if (enc->indent >= enc->maxdepth)
359 croak ("data structure too deep (hit recursion limit)");
360
212 encode_ch (enc, '['); NL; 361 encode_ch (enc, '[');
213 ++enc->indent; 362
363 if (len >= 0)
364 {
365 encode_nl (enc); ++enc->indent;
214 366
215 for (i = 0; i <= len; ++i) 367 for (i = 0; i <= len; ++i)
216 { 368 {
217 INDENT; 369 SV **svp = av_fetch (av, i, 0);
218 encode_sv (enc, *av_fetch (av, i, 0));
219 370
371 encode_indent (enc);
372
373 if (svp)
374 encode_sv (enc, *svp);
375 else
376 encode_str (enc, "null", 4, 0);
377
220 if (i < len) 378 if (i < len)
221 COMMA; 379 encode_comma (enc);
222 } 380 }
223 381
224 NL; 382 encode_nl (enc); --enc->indent; encode_indent (enc);
225 383 }
226 --enc->indent; 384
227 INDENT; encode_ch (enc, ']'); 385 encode_ch (enc, ']');
228} 386}
229 387
230static void 388static void
231encode_he (enc_t *enc, HE *he) 389encode_hk (enc_t *enc, HE *he)
232{ 390{
233 encode_ch (enc, '"'); 391 encode_ch (enc, '"');
234 392
235 if (HeKLEN (he) == HEf_SVKEY) 393 if (HeKLEN (he) == HEf_SVKEY)
236 { 394 {
246 else 404 else
247 encode_str (enc, HeKEY (he), HeKLEN (he), HeKUTF8 (he)); 405 encode_str (enc, HeKEY (he), HeKLEN (he), HeKUTF8 (he));
248 406
249 encode_ch (enc, '"'); 407 encode_ch (enc, '"');
250 408
251 if (enc->flags & F_SPACE_BEFORE) SPACE; 409 if (enc->json.flags & F_SPACE_BEFORE) encode_space (enc);
252 encode_ch (enc, ':'); 410 encode_ch (enc, ':');
253 if (enc->flags & F_SPACE_AFTER ) SPACE; 411 if (enc->json.flags & F_SPACE_AFTER ) encode_space (enc);
254 encode_sv (enc, HeVAL (he));
255} 412}
256 413
257// compare hash entries, used when all keys are bytestrings 414// compare hash entries, used when all keys are bytestrings
258static int 415static int
259he_cmp_fast (const void *a_, const void *b_) 416he_cmp_fast (const void *a_, const void *b_)
264 HE *b = *(HE **)b_; 421 HE *b = *(HE **)b_;
265 422
266 STRLEN la = HeKLEN (a); 423 STRLEN la = HeKLEN (a);
267 STRLEN lb = HeKLEN (b); 424 STRLEN lb = HeKLEN (b);
268 425
269 if (!(cmp == memcmp (HeKEY (a), HeKEY (b), la < lb ? la : lb))) 426 if (!(cmp = memcmp (HeKEY (b), HeKEY (a), lb < la ? lb : la)))
270 cmp = la < lb ? -1 : la == lb ? 0 : 1; 427 cmp = lb - la;
271 428
272 return cmp; 429 return cmp;
273} 430}
274 431
275// compare hash entries, used when some keys are sv's or utf-x 432// compare hash entries, used when some keys are sv's or utf-x
276static int 433static int
277he_cmp_slow (const void *a, const void *b) 434he_cmp_slow (const void *a, const void *b)
278{ 435{
279 return sv_cmp (HeSVKEY_force (*(HE **)a), HeSVKEY_force (*(HE **)b)); 436 return sv_cmp (HeSVKEY_force (*(HE **)b), HeSVKEY_force (*(HE **)a));
280} 437}
281 438
282static void 439static void
283encode_hv (enc_t *enc, HV *hv) 440encode_hv (enc_t *enc, HV *hv)
284{ 441{
442 HE *he;
285 int count, i; 443 int count;
286 444
287 encode_ch (enc, '{'); NL; ++enc->indent; 445 if (enc->indent >= enc->maxdepth)
446 croak ("data structure too deep (hit recursion limit)");
288 447
289 if ((count = hv_iterinit (hv))) 448 encode_ch (enc, '{');
290 { 449
291 // for canonical output we have to sort by keys first 450 // for canonical output we have to sort by keys first
292 // actually, this is mostly due to the stupid so-called 451 // actually, this is mostly due to the stupid so-called
293 // security workaround added somewhere in 5.8.x. 452 // security workaround added somewhere in 5.8.x.
294 // that randomises hash orderings 453 // that randomises hash orderings
295 if (enc->flags & F_CANONICAL) 454 if (enc->json.flags & F_CANONICAL)
455 {
456 int count = hv_iterinit (hv);
457
458 if (SvMAGICAL (hv))
296 { 459 {
297 HE *he, *hes [count]; 460 // need to count by iterating. could improve by dynamically building the vector below
461 // but I don't care for the speed of this special case.
462 // note also that we will run into undefined behaviour when the two iterations
463 // do not result in the same count, something I might care for in some later release.
464
465 count = 0;
466 while (hv_iternext (hv))
467 ++count;
468
469 hv_iterinit (hv);
470 }
471
472 if (count)
473 {
298 int fast = 1; 474 int i, fast = 1;
475#if defined(__BORLANDC__) || defined(_MSC_VER)
476 HE **hes = _alloca (count * sizeof (HE));
477#else
478 HE *hes [count]; // if your compiler dies here, you need to enable C99 mode
479#endif
299 480
300 i = 0; 481 i = 0;
301 while ((he = hv_iternext (hv))) 482 while ((he = hv_iternext (hv)))
302 { 483 {
303 hes [i++] = he; 484 hes [i++] = he;
309 490
310 if (fast) 491 if (fast)
311 qsort (hes, count, sizeof (HE *), he_cmp_fast); 492 qsort (hes, count, sizeof (HE *), he_cmp_fast);
312 else 493 else
313 { 494 {
314 // hack to disable "use bytes" 495 // hack to forcefully disable "use bytes"
315 COP *oldcop = PL_curcop, cop; 496 COP cop = *PL_curcop;
316 cop.op_private = 0; 497 cop.op_private = 0;
498
499 ENTER;
500 SAVETMPS;
501
502 SAVEVPTR (PL_curcop);
317 PL_curcop = &cop; 503 PL_curcop = &cop;
318 504
319 SAVETMPS;
320 qsort (hes, count, sizeof (HE *), he_cmp_slow); 505 qsort (hes, count, sizeof (HE *), he_cmp_slow);
506
321 FREETMPS; 507 FREETMPS;
322 508 LEAVE;
323 PL_curcop = oldcop;
324 } 509 }
325 510
326 for (i = 0; i < count; ++i) 511 encode_nl (enc); ++enc->indent;
512
513 while (count--)
327 { 514 {
328 INDENT; 515 encode_indent (enc);
516 he = hes [count];
329 encode_he (enc, hes [i]); 517 encode_hk (enc, he);
518 encode_sv (enc, expect_false (SvMAGICAL (hv)) ? hv_iterval (hv, he) : HeVAL (he));
330 519
331 if (i < count - 1) 520 if (count)
332 COMMA; 521 encode_comma (enc);
333 } 522 }
334 523
524 encode_nl (enc); --enc->indent; encode_indent (enc);
525 }
526 }
527 else
528 {
529 if (hv_iterinit (hv) || SvMAGICAL (hv))
530 if ((he = hv_iternext (hv)))
335 NL; 531 {
532 encode_nl (enc); ++enc->indent;
533
534 for (;;)
535 {
536 encode_indent (enc);
537 encode_hk (enc, he);
538 encode_sv (enc, expect_false (SvMAGICAL (hv)) ? hv_iterval (hv, he) : HeVAL (he));
539
540 if (!(he = hv_iternext (hv)))
541 break;
542
543 encode_comma (enc);
544 }
545
546 encode_nl (enc); --enc->indent; encode_indent (enc);
547 }
548 }
549
550 encode_ch (enc, '}');
551}
552
553// encode objects, arrays and special \0=false and \1=true values.
554static void
555encode_rv (enc_t *enc, SV *sv)
556{
557 svtype svt;
558
559 SvGETMAGIC (sv);
560 svt = SvTYPE (sv);
561
562 if (expect_false (SvOBJECT (sv)))
563 {
564 HV *stash = !JSON_SLOW || json_boolean_stash
565 ? json_boolean_stash
566 : gv_stashpv ("JSON::XS::Boolean", 1);
567
568 if (SvSTASH (sv) == stash)
569 {
570 if (SvIV (sv))
571 encode_str (enc, "true", 4, 0);
572 else
573 encode_str (enc, "false", 5, 0);
336 } 574 }
337 else 575 else
338 { 576 {
339 SV *sv; 577#if 0
340 HE *he = hv_iternext (hv); 578 if (0 && sv_derived_from (rv, "JSON::Literal"))
341
342 for (;;)
343 { 579 {
344 INDENT; 580 // not yet
345 encode_he (enc, he);
346
347 if (!(he = hv_iternext (hv)))
348 break;
349
350 COMMA;
351 } 581 }
352 582#endif
583 if (enc->json.flags & F_CONV_BLESSED)
353 NL; 584 {
585 // we re-bless the reference to get overload and other niceties right
586 GV *to_json = gv_fetchmethod_autoload (SvSTASH (sv), "TO_JSON", 0);
587
588 if (to_json)
589 {
590 dSP;
591
592 ENTER; SAVETMPS; PUSHMARK (SP);
593 XPUSHs (sv_bless (sv_2mortal (newRV_inc (sv)), SvSTASH (sv)));
594
595 // calling with G_SCALAR ensures that we always get a 1 return value
596 PUTBACK;
597 call_sv ((SV *)GvCV (to_json), G_SCALAR);
598 SPAGAIN;
599
600 // catch this surprisingly common error
601 if (SvROK (TOPs) && SvRV (TOPs) == sv)
602 croak ("%s::TO_JSON method returned same object as was passed instead of a new one", HvNAME (SvSTASH (sv)));
603
604 sv = POPs;
605 PUTBACK;
606
607 encode_sv (enc, sv);
608
609 FREETMPS; LEAVE;
610 }
611 else if (enc->json.flags & F_ALLOW_BLESSED)
612 encode_str (enc, "null", 4, 0);
613 else
614 croak ("encountered object '%s', but neither allow_blessed enabled nor TO_JSON method available on it",
615 SvPV_nolen (sv_2mortal (newRV_inc (sv))));
616 }
617 else if (enc->json.flags & F_ALLOW_BLESSED)
618 encode_str (enc, "null", 4, 0);
619 else
620 croak ("encountered object '%s', but neither allow_blessed nor convert_blessed settings are enabled",
621 SvPV_nolen (sv_2mortal (newRV_inc (sv))));
354 } 622 }
355 } 623 }
624 else if (svt == SVt_PVHV)
625 encode_hv (enc, (HV *)sv);
626 else if (svt == SVt_PVAV)
627 encode_av (enc, (AV *)sv);
628 else if (svt < SVt_PVAV)
629 {
630 STRLEN len = 0;
631 char *pv = svt ? SvPV (sv, len) : 0;
356 632
357 --enc->indent; INDENT; encode_ch (enc, '}'); 633 if (len == 1 && *pv == '1')
634 encode_str (enc, "true", 4, 0);
635 else if (len == 1 && *pv == '0')
636 encode_str (enc, "false", 5, 0);
637 else
638 croak ("cannot encode reference to scalar '%s' unless the scalar is 0 or 1",
639 SvPV_nolen (sv_2mortal (newRV_inc (sv))));
640 }
641 else
642 croak ("encountered %s, but JSON can only represent references to arrays or hashes",
643 SvPV_nolen (sv_2mortal (newRV_inc (sv))));
358} 644}
359 645
360static void 646static void
361encode_sv (enc_t *enc, SV *sv) 647encode_sv (enc_t *enc, SV *sv)
362{ 648{
370 encode_str (enc, str, len, SvUTF8 (sv)); 656 encode_str (enc, str, len, SvUTF8 (sv));
371 encode_ch (enc, '"'); 657 encode_ch (enc, '"');
372 } 658 }
373 else if (SvNOKp (sv)) 659 else if (SvNOKp (sv))
374 { 660 {
661 // trust that perl will do the right thing w.r.t. JSON syntax.
375 need (enc, NV_DIG + 32); 662 need (enc, NV_DIG + 32);
376 Gconvert (SvNVX (sv), NV_DIG, 0, enc->cur); 663 Gconvert (SvNVX (sv), NV_DIG, 0, enc->cur);
377 enc->cur += strlen (enc->cur); 664 enc->cur += strlen (enc->cur);
378 } 665 }
379 else if (SvIOKp (sv)) 666 else if (SvIOKp (sv))
380 { 667 {
668 // we assume we can always read an IV as a UV and vice versa
669 // we assume two's complement
670 // we assume no aliasing issues in the union
671 if (SvIsUV (sv) ? SvUVX (sv) <= 59000
672 : SvIVX (sv) <= 59000 && SvIVX (sv) >= -59000)
673 {
674 // optimise the "small number case"
675 // code will likely be branchless and use only a single multiplication
676 // works for numbers up to 59074
677 I32 i = SvIVX (sv);
678 U32 u;
679 char digit, nz = 0;
680
381 need (enc, 64); 681 need (enc, 6);
682
683 *enc->cur = '-'; enc->cur += i < 0 ? 1 : 0;
684 u = i < 0 ? -i : i;
685
686 // convert to 4.28 fixed-point representation
687 u = u * ((0xfffffff + 10000) / 10000); // 10**5, 5 fractional digits
688
689 // now output digit by digit, each time masking out the integer part
690 // and multiplying by 5 while moving the decimal point one to the right,
691 // resulting in a net multiplication by 10.
692 // we always write the digit to memory but conditionally increment
693 // the pointer, to enable the use of conditional move instructions.
694 digit = u >> 28; *enc->cur = digit + '0'; enc->cur += (nz = nz || digit); u = (u & 0xfffffffUL) * 5;
695 digit = u >> 27; *enc->cur = digit + '0'; enc->cur += (nz = nz || digit); u = (u & 0x7ffffffUL) * 5;
696 digit = u >> 26; *enc->cur = digit + '0'; enc->cur += (nz = nz || digit); u = (u & 0x3ffffffUL) * 5;
697 digit = u >> 25; *enc->cur = digit + '0'; enc->cur += (nz = nz || digit); u = (u & 0x1ffffffUL) * 5;
698 digit = u >> 24; *enc->cur = digit + '0'; enc->cur += 1; // correctly generate '0'
699 }
700 else
701 {
702 // large integer, use the (rather slow) snprintf way.
703 need (enc, IVUV_MAXCHARS);
382 enc->cur += 704 enc->cur +=
383 SvIsUV(sv) 705 SvIsUV(sv)
384 ? snprintf (enc->cur, 64, "%"UVuf, (UV)SvUVX (sv)) 706 ? snprintf (enc->cur, IVUV_MAXCHARS, "%"UVuf, (UV)SvUVX (sv))
385 : snprintf (enc->cur, 64, "%"IVdf, (IV)SvIVX (sv)); 707 : snprintf (enc->cur, IVUV_MAXCHARS, "%"IVdf, (IV)SvIVX (sv));
708 }
386 } 709 }
387 else if (SvROK (sv)) 710 else if (SvROK (sv))
388 { 711 encode_rv (enc, SvRV (sv));
389 if (!--enc->max_recurse)
390 croak ("data structure too deep (hit recursion limit)");
391
392 sv = SvRV (sv);
393
394 switch (SvTYPE (sv))
395 {
396 case SVt_PVAV: encode_av (enc, (AV *)sv); break;
397 case SVt_PVHV: encode_hv (enc, (HV *)sv); break;
398
399 default:
400 croak ("JSON can only represent references to arrays or hashes");
401 }
402 }
403 else if (!SvOK (sv)) 712 else if (!SvOK (sv))
404 encode_str (enc, "null", 4, 0); 713 encode_str (enc, "null", 4, 0);
405 else 714 else
406 croak ("encountered perl type that JSON cannot handle"); 715 croak ("encountered perl type (%s,0x%x) that JSON cannot handle, you might want to report this",
716 SvPV_nolen (sv), SvFLAGS (sv));
407} 717}
408 718
409static SV * 719static SV *
410encode_json (SV *scalar, UV flags) 720encode_json (SV *scalar, JSON *json)
411{ 721{
412 if (!(flags & F_ALLOW_NONREF) && !SvROK (scalar))
413 croak ("hash- or arraref required (not a simple scalar, use allow_nonref to allow this)");
414
415 enc_t enc; 722 enc_t enc;
416 enc.flags = flags; 723
724 if (!(json->flags & F_ALLOW_NONREF) && !SvROK (scalar))
725 croak ("hash- or arrayref expected (not a simple scalar, use allow_nonref to allow this)");
726
727 enc.json = *json;
417 enc.sv = sv_2mortal (NEWSV (0, INIT_SIZE)); 728 enc.sv = sv_2mortal (NEWSV (0, INIT_SIZE));
418 enc.cur = SvPVX (enc.sv); 729 enc.cur = SvPVX (enc.sv);
419 enc.end = SvEND (enc.sv); 730 enc.end = SvEND (enc.sv);
420 enc.max_recurse = 0;
421 enc.indent = 0; 731 enc.indent = 0;
732 enc.maxdepth = DEC_DEPTH (enc.json.flags);
733 enc.limit = enc.json.flags & F_ASCII ? 0x000080UL
734 : enc.json.flags & F_LATIN1 ? 0x000100UL
735 : 0x110000UL;
422 736
423 SvPOK_only (enc.sv); 737 SvPOK_only (enc.sv);
424 encode_sv (&enc, scalar); 738 encode_sv (&enc, scalar);
425 739
740 SvCUR_set (enc.sv, enc.cur - SvPVX (enc.sv));
741 *SvEND (enc.sv) = 0; // many xs functions expect a trailing 0 for text strings
742
426 if (!(flags & (F_ASCII | F_UTF8))) 743 if (!(enc.json.flags & (F_ASCII | F_LATIN1 | F_UTF8)))
427 SvUTF8_on (enc.sv); 744 SvUTF8_on (enc.sv);
428 745
429 SvCUR_set (enc.sv, enc.cur - SvPVX (enc.sv)); 746 if (enc.json.flags & F_SHRINK)
747 shrink (enc.sv);
748
430 return enc.sv; 749 return enc.sv;
431} 750}
432 751
433///////////////////////////////////////////////////////////////////////////// 752/////////////////////////////////////////////////////////////////////////////
753// decoder
434 754
435#define WS \ 755// structure used for decoding JSON
756typedef struct
757{
758 char *cur; // current parser pointer
759 char *end; // end of input string
760 const char *err; // parse error, if != 0
761 JSON json;
762 U32 depth; // recursion depth
763 U32 maxdepth; // recursion depth limit
764} dec_t;
765
766INLINE void
767decode_comment (dec_t *dec)
768{
769 // only '#'-style comments allowed a.t.m.
770
771 while (*dec->cur && *dec->cur != 0x0a && *dec->cur != 0x0d)
772 ++dec->cur;
773}
774
775INLINE void
776decode_ws (dec_t *dec)
777{
436 for (;;) \ 778 for (;;)
437 { \ 779 {
438 char ch = *dec->cur; \ 780 char ch = *dec->cur;
781
439 if (ch > 0x20 \ 782 if (ch > 0x20)
783 {
784 if (expect_false (ch == '#'))
785 {
786 if (dec->json.flags & F_RELAXED)
787 decode_comment (dec);
788 else
789 break;
790 }
791 else
792 break;
793 }
440 || (ch != 0x20 && ch != 0x0a && ch != 0x0d && ch != 0x09)) \ 794 else if (ch != 0x20 && ch != 0x0a && ch != 0x0d && ch != 0x09)
441 break; \ 795 break; // parse error, but let higher level handle it, gives better error messages
796
442 ++dec->cur; \ 797 ++dec->cur;
443 } 798 }
799}
444 800
445#define ERR(reason) SB dec->err = reason; goto fail; SE 801#define ERR(reason) SB dec->err = reason; goto fail; SE
802
446#define EXPECT_CH(ch) SB \ 803#define EXPECT_CH(ch) SB \
447 if (*dec->cur != ch) \ 804 if (*dec->cur != ch) \
448 ERR (# ch " expected"); \ 805 ERR (# ch " expected"); \
449 ++dec->cur; \ 806 ++dec->cur; \
450 SE 807 SE
451 808
809#define DEC_INC_DEPTH if (++dec->depth > dec->maxdepth) ERR ("json datastructure exceeds maximum nesting level (set a higher max_depth)")
810#define DEC_DEC_DEPTH --dec->depth
811
452static SV *decode_sv (dec_t *dec); 812static SV *decode_sv (dec_t *dec);
453 813
454static signed char decode_hexdigit[256]; 814static signed char decode_hexdigit[256];
455 815
456static UV 816static UV
457decode_4hex (dec_t *dec) 817decode_4hex (dec_t *dec)
458{ 818{
459 signed char d1, d2, d3, d4; 819 signed char d1, d2, d3, d4;
820 unsigned char *cur = (unsigned char *)dec->cur;
460 821
461 d1 = decode_hexdigit [((unsigned char *)dec->cur) [0]]; 822 d1 = decode_hexdigit [cur [0]]; if (expect_false (d1 < 0)) ERR ("exactly four hexadecimal digits expected");
462 if (d1 < 0) ERR ("four hexadecimal digits expected"); 823 d2 = decode_hexdigit [cur [1]]; if (expect_false (d2 < 0)) ERR ("exactly four hexadecimal digits expected");
463 d2 = decode_hexdigit [((unsigned char *)dec->cur) [1]]; 824 d3 = decode_hexdigit [cur [2]]; if (expect_false (d3 < 0)) ERR ("exactly four hexadecimal digits expected");
464 if (d2 < 0) ERR ("four hexadecimal digits expected"); 825 d4 = decode_hexdigit [cur [3]]; if (expect_false (d4 < 0)) ERR ("exactly four hexadecimal digits expected");
465 d3 = decode_hexdigit [((unsigned char *)dec->cur) [2]];
466 if (d3 < 0) ERR ("four hexadecimal digits expected");
467 d4 = decode_hexdigit [((unsigned char *)dec->cur) [3]];
468 if (d4 < 0) ERR ("four hexadecimal digits expected");
469 826
470 dec->cur += 4; 827 dec->cur += 4;
471 828
472 return ((UV)d1) << 12 829 return ((UV)d1) << 12
473 | ((UV)d2) << 8 830 | ((UV)d2) << 8
476 833
477fail: 834fail:
478 return (UV)-1; 835 return (UV)-1;
479} 836}
480 837
481#define APPEND_GROW(n) SB \
482 if (cur + (n) >= end) \
483 { \
484 STRLEN ofs = cur - SvPVX (sv); \
485 SvGROW (sv, ofs + (n) + 1); \
486 cur = SvPVX (sv) + ofs; \
487 end = SvEND (sv); \
488 } \
489 SE
490
491#define APPEND_CH(ch) SB \
492 APPEND_GROW (1); \
493 *cur++ = (ch); \
494 SE
495
496static SV * 838static SV *
497decode_str (dec_t *dec) 839decode_str (dec_t *dec)
498{ 840{
499 SV *sv = NEWSV (0,2); 841 SV *sv = 0;
500 int utf8 = 0; 842 int utf8 = 0;
501 char *cur = SvPVX (sv); 843 char *dec_cur = dec->cur;
502 char *end = SvEND (sv);
503 844
504 for (;;) 845 do
505 { 846 {
506 unsigned char ch = *(unsigned char *)dec->cur; 847 char buf [SHORT_STRING_LEN + UTF8_MAXBYTES];
848 char *cur = buf;
507 849
508 if (ch == '"') 850 do
509 break;
510 else if (ch == '\\')
511 { 851 {
512 switch (*++dec->cur) 852 unsigned char ch = *(unsigned char *)dec_cur++;
853
854 if (expect_false (ch == '"'))
513 { 855 {
514 case '\\': 856 --dec_cur;
515 case '/': 857 break;
516 case '"': APPEND_CH (*dec->cur++); break; 858 }
517 859 else if (expect_false (ch == '\\'))
518 case 'b': APPEND_CH ('\010'); ++dec->cur; break; 860 {
519 case 't': APPEND_CH ('\011'); ++dec->cur; break; 861 switch (*dec_cur)
520 case 'n': APPEND_CH ('\012'); ++dec->cur; break;
521 case 'f': APPEND_CH ('\014'); ++dec->cur; break;
522 case 'r': APPEND_CH ('\015'); ++dec->cur; break;
523
524 case 'u':
525 { 862 {
526 UV lo, hi; 863 case '\\':
527 ++dec->cur; 864 case '/':
865 case '"': *cur++ = *dec_cur++; break;
528 866
529 hi = decode_4hex (dec); 867 case 'b': ++dec_cur; *cur++ = '\010'; break;
530 if (hi == (UV)-1) 868 case 't': ++dec_cur; *cur++ = '\011'; break;
531 goto fail; 869 case 'n': ++dec_cur; *cur++ = '\012'; break;
870 case 'f': ++dec_cur; *cur++ = '\014'; break;
871 case 'r': ++dec_cur; *cur++ = '\015'; break;
532 872
533 // possibly a surrogate pair 873 case 'u':
534 if (hi >= 0xd800 && hi < 0xdc00)
535 { 874 {
536 if (dec->cur [0] != '\\' || dec->cur [1] != 'u') 875 UV lo, hi;
537 ERR ("missing low surrogate character in surrogate pair"); 876 ++dec_cur;
538 877
539 dec->cur += 2; 878 dec->cur = dec_cur;
540
541 lo = decode_4hex (dec); 879 hi = decode_4hex (dec);
880 dec_cur = dec->cur;
542 if (lo == (UV)-1) 881 if (hi == (UV)-1)
543 goto fail; 882 goto fail;
544 883
884 // possibly a surrogate pair
885 if (hi >= 0xd800)
886 if (hi < 0xdc00)
887 {
888 if (dec_cur [0] != '\\' || dec_cur [1] != 'u')
889 ERR ("missing low surrogate character in surrogate pair");
890
891 dec_cur += 2;
892
893 dec->cur = dec_cur;
894 lo = decode_4hex (dec);
895 dec_cur = dec->cur;
896 if (lo == (UV)-1)
897 goto fail;
898
545 if (lo < 0xdc00 || lo >= 0xe000) 899 if (lo < 0xdc00 || lo >= 0xe000)
546 ERR ("surrogate pair expected"); 900 ERR ("surrogate pair expected");
547 901
548 hi = (hi - 0xD800) * 0x400 + (lo - 0xDC00) + 0x10000; 902 hi = (hi - 0xD800) * 0x400 + (lo - 0xDC00) + 0x10000;
903 }
904 else if (hi < 0xe000)
905 ERR ("missing high surrogate character in surrogate pair");
906
907 if (hi >= 0x80)
908 {
909 utf8 = 1;
910
911 cur = encode_utf8 (cur, hi);
912 }
913 else
914 *cur++ = hi;
549 } 915 }
550 else if (hi >= 0xdc00 && hi < 0xe000)
551 ERR ("missing high surrogate character in surrogate pair");
552
553 if (hi >= 0x80)
554 { 916 break;
555 utf8 = 1;
556 917
557 APPEND_GROW (4); // at most 4 bytes for 21 bits
558 cur = (char *)uvuni_to_utf8_flags (cur, hi, 0);
559 }
560 else 918 default:
561 APPEND_CH (hi); 919 --dec_cur;
920 ERR ("illegal backslash escape sequence in string");
562 } 921 }
563 break; 922 }
923 else if (expect_true (ch >= 0x20 && ch < 0x80))
924 *cur++ = ch;
925 else if (ch >= 0x80)
926 {
927 STRLEN clen;
928 UV uch;
564 929
565 default:
566 --dec->cur; 930 --dec_cur;
567 ERR ("illegal backslash escape sequence in string"); 931
932 uch = decode_utf8 (dec_cur, dec->end - dec_cur, &clen);
933 if (clen == (STRLEN)-1)
934 ERR ("malformed UTF-8 character in JSON string");
935
936 do
937 *cur++ = *dec_cur++;
938 while (--clen);
939
940 utf8 = 1;
941 }
942 else
943 {
944 --dec_cur;
945
946 if (!ch)
947 ERR ("unexpected end of string while parsing JSON string");
948 else
949 ERR ("invalid character encountered while parsing JSON string");
568 } 950 }
569 } 951 }
570 else if (ch >= 0x20 && ch <= 0x7f) 952 while (cur < buf + SHORT_STRING_LEN);
571 APPEND_CH (*dec->cur++); 953
572 else if (ch >= 0x80)
573 { 954 {
574 STRLEN clen; 955 STRLEN len = cur - buf;
575 UV uch = utf8n_to_uvuni (dec->cur, dec->end - dec->cur, &clen, UTF8_CHECK_ONLY);
576 if (clen == (STRLEN)-1)
577 ERR ("malformed UTF-8 character in string, cannot convert to JSON");
578 956
579 APPEND_GROW (clen); 957 if (sv)
580 do
581 { 958 {
582 *cur++ = *dec->cur++; 959 SvGROW (sv, SvCUR (sv) + len + 1);
960 memcpy (SvPVX (sv) + SvCUR (sv), buf, len);
961 SvCUR_set (sv, SvCUR (sv) + len);
583 } 962 }
584 while (--clen);
585
586 utf8 = 1;
587 }
588 else if (dec->cur == dec->end)
589 ERR ("unexpected end of string while parsing json string");
590 else 963 else
591 ERR ("invalid character encountered"); 964 sv = newSVpvn (buf, len);
592 } 965 }
966 }
967 while (*dec_cur != '"');
593 968
594 ++dec->cur; 969 ++dec_cur;
595 970
596 SvCUR_set (sv, cur - SvPVX (sv)); 971 if (sv)
597 972 {
598 SvPOK_only (sv); 973 SvPOK_only (sv);
599 *SvEND (sv) = 0; 974 *SvEND (sv) = 0;
600 975
601 if (utf8) 976 if (utf8)
602 SvUTF8_on (sv); 977 SvUTF8_on (sv);
978 }
979 else
980 sv = newSVpvn ("", 0);
603 981
982 dec->cur = dec_cur;
604 return sv; 983 return sv;
605 984
606fail: 985fail:
607 SvREFCNT_dec (sv); 986 dec->cur = dec_cur;
608 return 0; 987 return 0;
609} 988}
610 989
611static SV * 990static SV *
612decode_num (dec_t *dec) 991decode_num (dec_t *dec)
670 is_nv = 1; 1049 is_nv = 1;
671 } 1050 }
672 1051
673 if (!is_nv) 1052 if (!is_nv)
674 { 1053 {
675 UV uv; 1054 int len = dec->cur - start;
676 int numtype = grok_number (start, dec->cur - start, &uv); 1055
677 if (numtype & IS_NUMBER_IN_UV) 1056 // special case the rather common 1..5-digit-int case
678 if (numtype & IS_NUMBER_NEG) 1057 if (*start == '-')
1058 switch (len)
679 { 1059 {
680 if (uv < (UV)IV_MIN) 1060 case 2: return newSViv (-( start [1] - '0' * 1));
681 return newSViv (-(IV)uv); 1061 case 3: return newSViv (-( start [1] * 10 + start [2] - '0' * 11));
1062 case 4: return newSViv (-( start [1] * 100 + start [2] * 10 + start [3] - '0' * 111));
1063 case 5: return newSViv (-( start [1] * 1000 + start [2] * 100 + start [3] * 10 + start [4] - '0' * 1111));
1064 case 6: return newSViv (-(start [1] * 10000 + start [2] * 1000 + start [3] * 100 + start [4] * 10 + start [5] - '0' * 11111));
682 } 1065 }
1066 else
1067 switch (len)
1068 {
1069 case 1: return newSViv ( start [0] - '0' * 1);
1070 case 2: return newSViv ( start [0] * 10 + start [1] - '0' * 11);
1071 case 3: return newSViv ( start [0] * 100 + start [1] * 10 + start [2] - '0' * 111);
1072 case 4: return newSViv ( start [0] * 1000 + start [1] * 100 + start [2] * 10 + start [3] - '0' * 1111);
1073 case 5: return newSViv ( start [0] * 10000 + start [1] * 1000 + start [2] * 100 + start [3] * 10 + start [4] - '0' * 11111);
1074 }
1075
1076 {
1077 UV uv;
1078 int numtype = grok_number (start, len, &uv);
1079 if (numtype & IS_NUMBER_IN_UV)
1080 if (numtype & IS_NUMBER_NEG)
1081 {
1082 if (uv < (UV)IV_MIN)
1083 return newSViv (-(IV)uv);
1084 }
683 else 1085 else
684 return newSVuv (uv); 1086 return newSVuv (uv);
685 } 1087 }
686 1088
1089 len -= *start == '-' ? 1 : 0;
1090
1091 // does not fit into IV or UV, try NV
1092 if ((sizeof (NV) == sizeof (double) && DBL_DIG >= len)
1093 #if defined (LDBL_DIG)
1094 || (sizeof (NV) == sizeof (long double) && LDBL_DIG >= len)
1095 #endif
1096 )
1097 // fits into NV without loss of precision
1098 return newSVnv (Atof (start));
1099
1100 // everything else fails, convert it to a string
1101 return newSVpvn (start, dec->cur - start);
1102 }
1103
1104 // loss of precision here
687 return newSVnv (Atof (start)); 1105 return newSVnv (Atof (start));
688 1106
689fail: 1107fail:
690 return 0; 1108 return 0;
691} 1109}
693static SV * 1111static SV *
694decode_av (dec_t *dec) 1112decode_av (dec_t *dec)
695{ 1113{
696 AV *av = newAV (); 1114 AV *av = newAV ();
697 1115
698 WS; 1116 DEC_INC_DEPTH;
1117 decode_ws (dec);
1118
699 if (*dec->cur == ']') 1119 if (*dec->cur == ']')
700 ++dec->cur; 1120 ++dec->cur;
701 else 1121 else
702 for (;;) 1122 for (;;)
703 { 1123 {
707 if (!value) 1127 if (!value)
708 goto fail; 1128 goto fail;
709 1129
710 av_push (av, value); 1130 av_push (av, value);
711 1131
712 WS; 1132 decode_ws (dec);
713 1133
714 if (*dec->cur == ']') 1134 if (*dec->cur == ']')
715 { 1135 {
716 ++dec->cur; 1136 ++dec->cur;
717 break; 1137 break;
719 1139
720 if (*dec->cur != ',') 1140 if (*dec->cur != ',')
721 ERR (", or ] expected while parsing array"); 1141 ERR (", or ] expected while parsing array");
722 1142
723 ++dec->cur; 1143 ++dec->cur;
1144
1145 decode_ws (dec);
1146
1147 if (*dec->cur == ']' && dec->json.flags & F_RELAXED)
1148 {
1149 ++dec->cur;
1150 break;
1151 }
724 } 1152 }
725 1153
1154 DEC_DEC_DEPTH;
726 return newRV_noinc ((SV *)av); 1155 return newRV_noinc ((SV *)av);
727 1156
728fail: 1157fail:
729 SvREFCNT_dec (av); 1158 SvREFCNT_dec (av);
1159 DEC_DEC_DEPTH;
730 return 0; 1160 return 0;
731} 1161}
732 1162
733static SV * 1163static SV *
734decode_hv (dec_t *dec) 1164decode_hv (dec_t *dec)
735{ 1165{
1166 SV *sv;
736 HV *hv = newHV (); 1167 HV *hv = newHV ();
737 1168
738 WS; 1169 DEC_INC_DEPTH;
1170 decode_ws (dec);
1171
739 if (*dec->cur == '}') 1172 if (*dec->cur == '}')
740 ++dec->cur; 1173 ++dec->cur;
741 else 1174 else
742 for (;;) 1175 for (;;)
743 { 1176 {
744 SV *key, *value;
745
746 WS; EXPECT_CH ('"'); 1177 EXPECT_CH ('"');
747 1178
748 key = decode_str (dec); 1179 // heuristic: assume that
749 if (!key) 1180 // a) decode_str + hv_store_ent are abysmally slow.
750 goto fail; 1181 // b) most hash keys are short, simple ascii text.
1182 // => try to "fast-match" such strings to avoid
1183 // the overhead of decode_str + hv_store_ent.
1184 {
1185 SV *value;
1186 char *p = dec->cur;
1187 char *e = p + 24; // only try up to 24 bytes
751 1188
752 WS; EXPECT_CH (':'); 1189 for (;;)
753
754 value = decode_sv (dec);
755 if (!value)
756 { 1190 {
1191 // the >= 0x80 is false on most architectures
1192 if (p == e || *p < 0x20 || *p >= 0x80 || *p == '\\')
1193 {
1194 // slow path, back up and use decode_str
1195 SV *key = decode_str (dec);
1196 if (!key)
1197 goto fail;
1198
1199 decode_ws (dec); EXPECT_CH (':');
1200
1201 decode_ws (dec);
1202 value = decode_sv (dec);
1203 if (!value)
1204 {
1205 SvREFCNT_dec (key);
1206 goto fail;
1207 }
1208
1209 hv_store_ent (hv, key, value, 0);
757 SvREFCNT_dec (key); 1210 SvREFCNT_dec (key);
1211
1212 break;
1213 }
1214 else if (*p == '"')
1215 {
1216 // fast path, got a simple key
1217 char *key = dec->cur;
1218 int len = p - key;
1219 dec->cur = p + 1;
1220
1221 decode_ws (dec); EXPECT_CH (':');
1222
1223 decode_ws (dec);
1224 value = decode_sv (dec);
1225 if (!value)
758 goto fail; 1226 goto fail;
1227
1228 hv_store (hv, key, len, value, 0);
1229
1230 break;
1231 }
1232
1233 ++p;
759 } 1234 }
760
761 //TODO: optimise
762 hv_store_ent (hv, key, value, 0);
763
764 WS; 1235 }
1236
1237 decode_ws (dec);
765 1238
766 if (*dec->cur == '}') 1239 if (*dec->cur == '}')
767 { 1240 {
768 ++dec->cur; 1241 ++dec->cur;
769 break; 1242 break;
771 1244
772 if (*dec->cur != ',') 1245 if (*dec->cur != ',')
773 ERR (", or } expected while parsing object/hash"); 1246 ERR (", or } expected while parsing object/hash");
774 1247
775 ++dec->cur; 1248 ++dec->cur;
1249
1250 decode_ws (dec);
1251
1252 if (*dec->cur == '}' && dec->json.flags & F_RELAXED)
1253 {
1254 ++dec->cur;
1255 break;
1256 }
776 } 1257 }
777 1258
1259 DEC_DEC_DEPTH;
778 return newRV_noinc ((SV *)hv); 1260 sv = newRV_noinc ((SV *)hv);
1261
1262 // check filter callbacks
1263 if (dec->json.flags & F_HOOK)
1264 {
1265 if (dec->json.cb_sk_object && HvKEYS (hv) == 1)
1266 {
1267 HE *cb, *he;
1268
1269 hv_iterinit (hv);
1270 he = hv_iternext (hv);
1271 hv_iterinit (hv);
1272
1273 // the next line creates a mortal sv each time its called.
1274 // might want to optimise this for common cases.
1275 cb = hv_fetch_ent (dec->json.cb_sk_object, hv_iterkeysv (he), 0, 0);
1276
1277 if (cb)
1278 {
1279 dSP;
1280 int count;
1281
1282 ENTER; SAVETMPS; PUSHMARK (SP);
1283 XPUSHs (HeVAL (he));
1284
1285 PUTBACK; count = call_sv (HeVAL (cb), G_ARRAY); SPAGAIN;
1286
1287 if (count == 1)
1288 {
1289 sv = newSVsv (POPs);
1290 FREETMPS; LEAVE;
1291 return sv;
1292 }
1293
1294 FREETMPS; LEAVE;
1295 }
1296 }
1297
1298 if (dec->json.cb_object)
1299 {
1300 dSP;
1301 int count;
1302
1303 ENTER; SAVETMPS; PUSHMARK (SP);
1304 XPUSHs (sv_2mortal (sv));
1305
1306 PUTBACK; count = call_sv (dec->json.cb_object, G_ARRAY); SPAGAIN;
1307
1308 if (count == 1)
1309 {
1310 sv = newSVsv (POPs);
1311 FREETMPS; LEAVE;
1312 return sv;
1313 }
1314
1315 SvREFCNT_inc (sv);
1316 FREETMPS; LEAVE;
1317 }
1318 }
1319
1320 return sv;
779 1321
780fail: 1322fail:
781 SvREFCNT_dec (hv); 1323 SvREFCNT_dec (hv);
1324 DEC_DEC_DEPTH;
782 return 0; 1325 return 0;
783} 1326}
784 1327
785static SV * 1328static SV *
786decode_sv (dec_t *dec) 1329decode_sv (dec_t *dec)
787{ 1330{
788 WS; 1331 // the beauty of JSON: you need exactly one character lookahead
1332 // to parse everything.
789 switch (*dec->cur) 1333 switch (*dec->cur)
790 { 1334 {
791 case '"': ++dec->cur; return decode_str (dec); 1335 case '"': ++dec->cur; return decode_str (dec);
792 case '[': ++dec->cur; return decode_av (dec); 1336 case '[': ++dec->cur; return decode_av (dec);
793 case '{': ++dec->cur; return decode_hv (dec); 1337 case '{': ++dec->cur; return decode_hv (dec);
794 1338
795 case '-': 1339 case '-':
796 case '0': case '1': case '2': case '3': case '4': 1340 case '0': case '1': case '2': case '3': case '4':
797 case '5': case '6': case '7': case '8': case '9': 1341 case '5': case '6': case '7': case '8': case '9':
798 return decode_num (dec); 1342 return decode_num (dec);
799 1343
800 case 't': 1344 case 't':
801 if (dec->end - dec->cur >= 4 && !memcmp (dec->cur, "true", 4)) 1345 if (dec->end - dec->cur >= 4 && !memcmp (dec->cur, "true", 4))
802 { 1346 {
803 dec->cur += 4; 1347 dec->cur += 4;
804 return newSViv (1); 1348#if JSON_SLOW
1349 json_true = get_sv ("JSON::XS::true", 1); SvREADONLY_on (json_true);
1350#endif
1351 return SvREFCNT_inc (json_true);
805 } 1352 }
806 else 1353 else
807 ERR ("'true' expected"); 1354 ERR ("'true' expected");
808 1355
809 break; 1356 break;
810 1357
811 case 'f': 1358 case 'f':
812 if (dec->end - dec->cur >= 5 && !memcmp (dec->cur, "false", 5)) 1359 if (dec->end - dec->cur >= 5 && !memcmp (dec->cur, "false", 5))
813 { 1360 {
814 dec->cur += 5; 1361 dec->cur += 5;
815 return newSViv (0); 1362#if JSON_SLOW
1363 json_false = get_sv ("JSON::XS::false", 1); SvREADONLY_on (json_false);
1364#endif
1365 return SvREFCNT_inc (json_false);
816 } 1366 }
817 else 1367 else
818 ERR ("'false' expected"); 1368 ERR ("'false' expected");
819 1369
820 break; 1370 break;
829 ERR ("'null' expected"); 1379 ERR ("'null' expected");
830 1380
831 break; 1381 break;
832 1382
833 default: 1383 default:
834 ERR ("malformed json string"); 1384 ERR ("malformed JSON string, neither array, object, number, string or atom");
835 break; 1385 break;
836 } 1386 }
837 1387
838fail: 1388fail:
839 return 0; 1389 return 0;
840} 1390}
841 1391
842static SV * 1392static SV *
843decode_json (SV *string, UV flags) 1393decode_json (SV *string, JSON *json, STRLEN *offset_return)
844{ 1394{
1395 dec_t dec;
1396 STRLEN offset;
845 SV *sv; 1397 SV *sv;
846 1398
1399 SvGETMAGIC (string);
1400 SvUPGRADE (string, SVt_PV);
1401
1402 if (json->flags & F_MAXSIZE && SvCUR (string) > DEC_SIZE (json->flags))
1403 croak ("attempted decode of JSON text of %lu bytes size, but max_size is set to %lu",
1404 (unsigned long)SvCUR (string), (unsigned long)DEC_SIZE (json->flags));
1405
847 if (flags & F_UTF8) 1406 if (json->flags & F_UTF8)
848 sv_utf8_downgrade (string, 0); 1407 sv_utf8_downgrade (string, 0);
849 else 1408 else
850 sv_utf8_upgrade (string); 1409 sv_utf8_upgrade (string);
851 1410
852 SvGROW (string, SvCUR (string) + 1); // should basically be a NOP 1411 SvGROW (string, SvCUR (string) + 1); // should basically be a NOP
853 1412
854 dec_t dec; 1413 dec.json = *json;
855 dec.flags = flags;
856 dec.cur = SvPVX (string); 1414 dec.cur = SvPVX (string);
857 dec.end = SvEND (string); 1415 dec.end = SvEND (string);
858 dec.err = 0; 1416 dec.err = 0;
1417 dec.depth = 0;
1418 dec.maxdepth = DEC_DEPTH (dec.json.flags);
859 1419
1420 if (dec.json.cb_object || dec.json.cb_sk_object)
1421 dec.json.flags |= F_HOOK;
1422
1423 *dec.end = 0; // this should basically be a nop, too, but make sure it's there
1424
1425 decode_ws (&dec);
860 sv = decode_sv (&dec); 1426 sv = decode_sv (&dec);
861 1427
1428 if (!(offset_return || !sv))
1429 {
1430 // check for trailing garbage
1431 decode_ws (&dec);
1432
1433 if (*dec.cur)
1434 {
1435 dec.err = "garbage after JSON object";
1436 SvREFCNT_dec (sv);
1437 sv = 0;
1438 }
1439 }
1440
1441 if (offset_return || !sv)
1442 {
1443 offset = dec.json.flags & F_UTF8
1444 ? dec.cur - SvPVX (string)
1445 : utf8_distance (dec.cur, SvPVX (string));
1446
1447 if (offset_return)
1448 *offset_return = offset;
1449 }
1450
862 if (!sv) 1451 if (!sv)
863 { 1452 {
864 IV offset = utf8_distance (dec.cur, SvPVX (string));
865 SV *uni = sv_newmortal (); 1453 SV *uni = sv_newmortal ();
1454
866 // horrible hack to silence warning inside pv_uni_display 1455 // horrible hack to silence warning inside pv_uni_display
867 COP cop; 1456 COP cop = *PL_curcop;
868 memset (&cop, 0, sizeof (cop));
869 cop.cop_warnings = pWARN_NONE; 1457 cop.cop_warnings = pWARN_NONE;
1458 ENTER;
870 SAVEVPTR (PL_curcop); 1459 SAVEVPTR (PL_curcop);
871 PL_curcop = &cop; 1460 PL_curcop = &cop;
872
873 pv_uni_display (uni, dec.cur, dec.end - dec.cur, 20, UNI_DISPLAY_QQ); 1461 pv_uni_display (uni, dec.cur, dec.end - dec.cur, 20, UNI_DISPLAY_QQ);
1462 LEAVE;
1463
874 croak ("%s, at character offset %d (%s)", 1464 croak ("%s, at character offset %d [\"%s\"]",
875 dec.err, 1465 dec.err,
876 (int)offset, 1466 (int)offset,
877 dec.cur != dec.end ? SvPV_nolen (uni) : "(end of string)"); 1467 dec.cur != dec.end ? SvPV_nolen (uni) : "(end of string)");
878 } 1468 }
879 1469
880 sv = sv_2mortal (sv); 1470 sv = sv_2mortal (sv);
881 1471
882 if (!(dec.flags & F_ALLOW_NONREF) && !SvROK (sv)) 1472 if (!(dec.json.flags & F_ALLOW_NONREF) && !SvROK (sv))
883 croak ("JSON object or array expected (but number, string, true, false or null found, use allow_nonref to allow this)"); 1473 croak ("JSON text must be an object or array (but found number, string, true, false or null, use allow_nonref to allow this)");
884 1474
885 return sv; 1475 return sv;
886} 1476}
887 1477
1478/////////////////////////////////////////////////////////////////////////////
1479// incremental parser
1480
1481static void
1482incr_parse (JSON *self)
1483{
1484 const char *p = SvPVX (self->incr_text) + self->incr_pos;
1485
1486 for (;;)
1487 {
1488 //printf ("loop pod %d *p<%c><%s>, mode %d nest %d\n", p - SvPVX (self->incr_text), *p, p, self->incr_mode, self->incr_nest);//D
1489 switch (self->incr_mode)
1490 {
1491 // only used for intiial whitespace skipping
1492 case INCR_M_WS:
1493 for (;;)
1494 {
1495 if (*p > 0x20)
1496 {
1497 self->incr_mode = INCR_M_JSON;
1498 goto incr_m_json;
1499 }
1500 else if (!*p)
1501 goto interrupt;
1502
1503 ++p;
1504 }
1505
1506 // skip a single char inside a string (for \\-processing)
1507 case INCR_M_BS:
1508 if (!*p)
1509 goto interrupt;
1510
1511 ++p;
1512 self->incr_mode = INCR_M_STR;
1513 goto incr_m_str;
1514
1515 // inside a string
1516 case INCR_M_STR:
1517 incr_m_str:
1518 for (;;)
1519 {
1520 if (*p == '"')
1521 {
1522 ++p;
1523 self->incr_mode = INCR_M_JSON;
1524
1525 if (!self->incr_nest)
1526 goto interrupt;
1527
1528 goto incr_m_json;
1529 }
1530 else if (*p == '\\')
1531 {
1532 ++p; // "virtually" consumes character after \
1533
1534 if (!*p) // if at end of string we have to switch modes
1535 {
1536 self->incr_mode = INCR_M_BS;
1537 goto interrupt;
1538 }
1539 }
1540 else if (!*p)
1541 goto interrupt;
1542
1543 ++p;
1544 }
1545
1546 // after initial ws, outside string
1547 case INCR_M_JSON:
1548 incr_m_json:
1549 for (;;)
1550 {
1551 switch (*p++)
1552 {
1553 case 0:
1554 --p;
1555 goto interrupt;
1556
1557 case 0x09:
1558 case 0x0a:
1559 case 0x0d:
1560 case 0x20:
1561 if (!self->incr_nest)
1562 {
1563 --p; // do not eat the whitespace, let the next round do it
1564 goto interrupt;
1565 }
1566 break;
1567
1568 case '"':
1569 self->incr_mode = INCR_M_STR;
1570 goto incr_m_str;
1571
1572 case '[':
1573 case '{':
1574 ++self->incr_nest;
1575 break;
1576
1577 case ']':
1578 case '}':
1579 if (!--self->incr_nest)
1580 goto interrupt;
1581 }
1582 }
1583 }
1584
1585 modechange:
1586 ;
1587 }
1588
1589interrupt:
1590 self->incr_pos = p - SvPVX (self->incr_text);
1591 //printf ("return pos %d mode %d nest %d\n", self->incr_pos, self->incr_mode, self->incr_nest);//D
1592}
1593
1594/////////////////////////////////////////////////////////////////////////////
1595// XS interface functions
1596
888MODULE = JSON::XS PACKAGE = JSON::XS 1597MODULE = JSON::XS PACKAGE = JSON::XS
889 1598
890BOOT: 1599BOOT:
891{ 1600{
892 int i; 1601 int i;
893 1602
894 memset (decode_hexdigit, 0xff, 256);
895 for (i = 10; i--; ) 1603 for (i = 0; i < 256; ++i)
896 decode_hexdigit ['0' + i] = i; 1604 decode_hexdigit [i] =
1605 i >= '0' && i <= '9' ? i - '0'
1606 : i >= 'a' && i <= 'f' ? i - 'a' + 10
1607 : i >= 'A' && i <= 'F' ? i - 'A' + 10
1608 : -1;
897 1609
898 for (i = 7; i--; )
899 {
900 decode_hexdigit ['a' + i] = 10 + i;
901 decode_hexdigit ['A' + i] = 10 + i;
902 }
903
904 json_stash = gv_stashpv ("JSON::XS", 1); 1610 json_stash = gv_stashpv ("JSON::XS" , 1);
1611 json_boolean_stash = gv_stashpv ("JSON::XS::Boolean", 1);
1612
1613 json_true = get_sv ("JSON::XS::true" , 1); SvREADONLY_on (json_true );
1614 json_false = get_sv ("JSON::XS::false", 1); SvREADONLY_on (json_false);
905} 1615}
906 1616
907PROTOTYPES: DISABLE 1617PROTOTYPES: DISABLE
908 1618
909SV *new (char *dummy) 1619void CLONE (...)
910 CODE: 1620 CODE:
911 RETVAL = sv_bless (newRV_noinc (newSVuv (F_DEFAULT)), json_stash); 1621 json_stash = 0;
1622 json_boolean_stash = 0;
1623
1624void new (char *klass)
1625 PPCODE:
1626{
1627 SV *pv = NEWSV (0, sizeof (JSON));
1628 SvPOK_only (pv);
1629 Zero (SvPVX (pv), 1, JSON);
1630 ((JSON *)SvPVX (pv))->flags = F_DEFAULT;
1631 XPUSHs (sv_2mortal (sv_bless (
1632 newRV_noinc (pv),
1633 strEQ (klass, "JSON::XS") ? JSON_STASH : gv_stashpv (klass, 1)
1634 )));
1635}
1636
1637void ascii (JSON *self, int enable = 1)
1638 ALIAS:
1639 ascii = F_ASCII
1640 latin1 = F_LATIN1
1641 utf8 = F_UTF8
1642 indent = F_INDENT
1643 canonical = F_CANONICAL
1644 space_before = F_SPACE_BEFORE
1645 space_after = F_SPACE_AFTER
1646 pretty = F_PRETTY
1647 allow_nonref = F_ALLOW_NONREF
1648 shrink = F_SHRINK
1649 allow_blessed = F_ALLOW_BLESSED
1650 convert_blessed = F_CONV_BLESSED
1651 relaxed = F_RELAXED
1652 PPCODE:
1653{
1654 if (enable)
1655 self->flags |= ix;
1656 else
1657 self->flags &= ~ix;
1658
1659 XPUSHs (ST (0));
1660}
1661
1662void get_ascii (JSON *self)
1663 ALIAS:
1664 get_ascii = F_ASCII
1665 get_latin1 = F_LATIN1
1666 get_utf8 = F_UTF8
1667 get_indent = F_INDENT
1668 get_canonical = F_CANONICAL
1669 get_space_before = F_SPACE_BEFORE
1670 get_space_after = F_SPACE_AFTER
1671 get_allow_nonref = F_ALLOW_NONREF
1672 get_shrink = F_SHRINK
1673 get_allow_blessed = F_ALLOW_BLESSED
1674 get_convert_blessed = F_CONV_BLESSED
1675 get_relaxed = F_RELAXED
1676 PPCODE:
1677 XPUSHs (boolSV (self->flags & ix));
1678
1679void max_depth (JSON *self, UV max_depth = 0x80000000UL)
1680 PPCODE:
1681{
1682 UV log2 = 0;
1683
1684 if (max_depth > 0x80000000UL) max_depth = 0x80000000UL;
1685
1686 while ((1UL << log2) < max_depth)
1687 ++log2;
1688
1689 self->flags = self->flags & ~F_MAXDEPTH | (log2 << S_MAXDEPTH);
1690
1691 XPUSHs (ST (0));
1692}
1693
1694U32 get_max_depth (JSON *self)
1695 CODE:
1696 RETVAL = DEC_DEPTH (self->flags);
912 OUTPUT: 1697 OUTPUT:
913 RETVAL 1698 RETVAL
914 1699
915SV *ascii (SV *self, int enable) 1700void max_size (JSON *self, UV max_size = 0)
916 ALIAS: 1701 PPCODE:
917 ascii = F_ASCII 1702{
918 utf8 = F_UTF8 1703 UV log2 = 0;
919 indent = F_INDENT 1704
920 canonical = F_CANONICAL 1705 if (max_size > 0x80000000UL) max_size = 0x80000000UL;
921 space_before = F_SPACE_BEFORE 1706 if (max_size == 1) max_size = 2;
922 space_after = F_SPACE_AFTER 1707
923 json_rpc = F_JSON_RPC 1708 while ((1UL << log2) < max_size)
924 pretty = F_PRETTY 1709 ++log2;
925 allow_nonref = F_ALLOW_NONREF 1710
1711 self->flags = self->flags & ~F_MAXSIZE | (log2 << S_MAXSIZE);
1712
1713 XPUSHs (ST (0));
1714}
1715
1716int get_max_size (JSON *self)
926 CODE: 1717 CODE:
927{ 1718 RETVAL = DEC_SIZE (self->flags);
928 UV *uv = SvJSON (self);
929 if (enable)
930 *uv |= ix;
931 else
932 *uv &= ~ix;
933
934 RETVAL = newSVsv (self);
935}
936 OUTPUT: 1719 OUTPUT:
937 RETVAL 1720 RETVAL
938 1721
939void encode (SV *self, SV *scalar) 1722void filter_json_object (JSON *self, SV *cb = &PL_sv_undef)
940 PPCODE: 1723 PPCODE:
941 XPUSHs (encode_json (scalar, *SvJSON (self))); 1724{
1725 SvREFCNT_dec (self->cb_object);
1726 self->cb_object = SvOK (cb) ? newSVsv (cb) : 0;
942 1727
943void decode (SV *self, SV *jsonstr) 1728 XPUSHs (ST (0));
1729}
1730
1731void filter_json_single_key_object (JSON *self, SV *key, SV *cb = &PL_sv_undef)
944 PPCODE: 1732 PPCODE:
1733{
1734 if (!self->cb_sk_object)
1735 self->cb_sk_object = newHV ();
1736
1737 if (SvOK (cb))
1738 hv_store_ent (self->cb_sk_object, key, newSVsv (cb), 0);
1739 else
1740 {
1741 hv_delete_ent (self->cb_sk_object, key, G_DISCARD, 0);
1742
1743 if (!HvKEYS (self->cb_sk_object))
1744 {
1745 SvREFCNT_dec (self->cb_sk_object);
1746 self->cb_sk_object = 0;
1747 }
1748 }
1749
1750 XPUSHs (ST (0));
1751}
1752
1753void encode (JSON *self, SV *scalar)
1754 PPCODE:
1755 XPUSHs (encode_json (scalar, self));
1756
1757void decode (JSON *self, SV *jsonstr)
1758 PPCODE:
945 XPUSHs (decode_json (jsonstr, *SvJSON (self))); 1759 XPUSHs (decode_json (jsonstr, self, 0));
1760
1761void decode_prefix (JSON *self, SV *jsonstr)
1762 PPCODE:
1763{
1764 STRLEN offset;
1765 EXTEND (SP, 2);
1766 PUSHs (decode_json (jsonstr, self, &offset));
1767 PUSHs (sv_2mortal (newSVuv (offset)));
1768}
1769
1770void incr_parse (JSON *self, SV *jsonstr = 0)
1771 PPCODE:
1772{
1773 if (!self->incr_text)
1774 self->incr_text = newSVpvn ("", 0);
1775
1776 // append data, if any
1777 if (jsonstr)
1778 {
1779 if (SvUTF8 (jsonstr) && !SvUTF8 (self->incr_text))
1780 {
1781 /* utf-8-ness differs, need to upgrade */
1782 sv_utf8_upgrade (self->incr_text);
1783
1784 if (self->incr_pos)
1785 self->incr_pos = utf8_hop ((U8 *)SvPVX (self->incr_text), self->incr_pos)
1786 - (U8 *)SvPVX (self->incr_text);
1787 }
1788
1789 {
1790 STRLEN len;
1791 const char *str = SvPV (jsonstr, len);
1792 SvGROW (self->incr_text, SvCUR (self->incr_text) + len + 1);
1793 Move (str, SvEND (self->incr_text), len, char);
1794 SvCUR_set (self->incr_text, SvCUR (self->incr_text) + len);
1795 *SvEND (self->incr_text) = 0; // this should basically be a nop, too, but make sure it's there
1796 }
1797 }
1798
1799 if (GIMME_V != G_VOID)
1800 do
1801 {
1802 STRLEN offset;
1803
1804 incr_parse (self);
1805
1806 if (!INCR_DONE (self))
1807 break;
1808
1809 XPUSHs (decode_json (self->incr_text, self, &offset));
1810
1811 sv_chop (self->incr_text, SvPV_nolen (self->incr_text) + offset);
1812 self->incr_pos -= offset;
1813 self->incr_nest = 0;
1814 self->incr_mode = 0;
1815 }
1816 while (GIMME_V == G_ARRAY);
1817}
1818
1819SV *incr_text (JSON *self)
1820 ATTRS: lvalue
1821 CODE:
1822{
1823 if (self->incr_pos)
1824 croak ("incr_text can only be called after a successful incr_parse call in scalar context %d", self->incr_pos);//D
1825
1826 RETVAL = self->incr_text ? SvREFCNT_inc (self->incr_text) : &PL_sv_undef;
1827}
1828 OUTPUT:
1829 RETVAL
1830
1831void DESTROY (JSON *self)
1832 CODE:
1833 SvREFCNT_dec (self->cb_sk_object);
1834 SvREFCNT_dec (self->cb_object);
1835 SvREFCNT_dec (self->incr_text);
946 1836
947PROTOTYPES: ENABLE 1837PROTOTYPES: ENABLE
948 1838
949void to_json (SV *scalar) 1839void encode_json (SV *scalar)
1840 ALIAS:
1841 to_json_ = 0
1842 encode_json = F_UTF8
950 PPCODE: 1843 PPCODE:
1844{
1845 JSON json = { F_DEFAULT | ix };
951 XPUSHs (encode_json (scalar, F_UTF8)); 1846 XPUSHs (encode_json (scalar, &json));
1847}
952 1848
953void from_json (SV *jsonstr) 1849void decode_json (SV *jsonstr)
1850 ALIAS:
1851 from_json_ = 0
1852 decode_json = F_UTF8
954 PPCODE: 1853 PPCODE:
1854{
1855 JSON json = { F_DEFAULT | ix };
955 XPUSHs (decode_json (jsonstr, F_UTF8)); 1856 XPUSHs (decode_json (jsonstr, &json, 0));
1857}
956 1858
1859

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines