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.6 by root, Fri Mar 23 15:10:55 2007 UTC vs.
Revision 1.47 by root, Sun Jul 1 14:08:03 2007 UTC

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"
8 9
10#if defined(__BORLANDC__) || defined(_MSC_VER)
11# define snprintf _snprintf // C compilers have this in stdio.h
12#endif
13
14// some old perls do not have this, try to make it work, no
15// guarentees, though. if it breaks, you get to keep the pieces.
16#ifndef UTF8_MAXBYTES
17# define UTF8_MAXBYTES 13
18#endif
19
9#define F_ASCII 0x00000001 20#define F_ASCII 0x00000001UL
21#define F_LATIN1 0x00000002UL
10#define F_UTF8 0x00000002 22#define F_UTF8 0x00000004UL
11#define F_INDENT 0x00000004 23#define F_INDENT 0x00000008UL
12#define F_CANONICAL 0x00000008 24#define F_CANONICAL 0x00000010UL
13#define F_SPACE_BEFORE 0x00000010 25#define F_SPACE_BEFORE 0x00000020UL
14#define F_SPACE_AFTER 0x00000020 26#define F_SPACE_AFTER 0x00000040UL
15#define F_JSON_RPC 0x00000040
16#define F_ALLOW_NONREF 0x00000080 27#define F_ALLOW_NONREF 0x00000100UL
17#define F_SHRINK 0x00000100 28#define F_SHRINK 0x00000200UL
29#define F_ALLOW_BLESSED 0x00000400UL
30#define F_CONV_BLESSED 0x00000800UL // NYI
31#define F_MAXDEPTH 0xf8000000UL
32#define S_MAXDEPTH 27
33#define F_MAXSIZE 0x01f00000UL
34#define S_MAXSIZE 20
35
36#define DEC_DEPTH(flags) (1UL << ((flags & F_MAXDEPTH) >> S_MAXDEPTH))
37#define DEC_SIZE(flags) (1UL << ((flags & F_MAXSIZE ) >> S_MAXSIZE ))
18 38
19#define F_PRETTY F_INDENT | F_SPACE_BEFORE | F_SPACE_AFTER 39#define F_PRETTY F_INDENT | F_SPACE_BEFORE | F_SPACE_AFTER
20#define F_DEFAULT 0 40#define F_DEFAULT (9UL << S_MAXDEPTH)
21 41
22#define INIT_SIZE 32 // initial scalar size to be allocated 42#define INIT_SIZE 32 // initial scalar size to be allocated
43#define INDENT_STEP 3 // spaces per indentation level
44
45#define SHORT_STRING_LEN 16384 // special-case strings of up to this size
23 46
24#define SB do { 47#define SB do {
25#define SE } while (0) 48#define SE } while (0)
26 49
27static HV *json_stash; 50#if __GNUC__ >= 3
51# define expect(expr,value) __builtin_expect ((expr),(value))
52# define inline inline
53#else
54# define expect(expr,value) (expr)
55# define inline static
56#endif
57
58#define expect_false(expr) expect ((expr) != 0, 0)
59#define expect_true(expr) expect ((expr) != 0, 1)
60
61static HV *json_stash, *json_boolean_stash; // JSON::XS::
62static SV *json_true, *json_false;
63
64typedef struct json {
65 U32 flags;
66} JSON__XS;
67
68/////////////////////////////////////////////////////////////////////////////
69// utility functions
70
71static UV *
72SvJSON (SV *sv)
73{
74 if (!(SvROK (sv) && SvOBJECT (SvRV (sv)) && SvSTASH (SvRV (sv)) == json_stash))
75 croak ("object is not of type JSON::XS");
76
77 return &SvUVX (SvRV (sv));
78}
79
80static void
81shrink (SV *sv)
82{
83 sv_utf8_downgrade (sv, 1);
84 if (SvLEN (sv) > SvCUR (sv) + 1)
85 {
86#ifdef SvPV_shrink_to_cur
87 SvPV_shrink_to_cur (sv);
88#elif defined (SvPV_renew)
89 SvPV_renew (sv, SvCUR (sv) + 1);
90#endif
91 }
92}
93
94// decode an utf-8 character and return it, or (UV)-1 in
95// case of an error.
96// we special-case "safe" characters from U+80 .. U+7FF,
97// but use the very good perl function to parse anything else.
98// note that we never call this function for a ascii codepoints
99inline UV
100decode_utf8 (unsigned char *s, STRLEN len, STRLEN *clen)
101{
102 if (expect_false (s[0] > 0xdf || s[0] < 0xc2))
103 return utf8n_to_uvuni (s, len, clen, UTF8_CHECK_ONLY);
104 else if (len > 1 && s[1] >= 0x80 && s[1] <= 0xbf)
105 {
106 *clen = 2;
107 return ((s[0] & 0x1f) << 6) | (s[1] & 0x3f);
108 }
109 else
110 {
111 *clen = (STRLEN)-1;
112 return (UV)-1;
113 }
114}
115
116/////////////////////////////////////////////////////////////////////////////
117// encoder
28 118
29// structure used for encoding JSON 119// structure used for encoding JSON
30typedef struct 120typedef struct
31{ 121{
32 char *cur; 122 char *cur; // SvPVX (sv) + current output position
33 STRLEN len; // SvLEN (sv)
34 char *end; // SvEND (sv) 123 char *end; // SvEND (sv)
35 SV *sv; 124 SV *sv; // result scalar
36 UV flags; 125 struct json json;
37 int max_recurse; 126 U32 indent; // indentation level
38 int indent; 127 U32 maxdepth; // max. indentation/recursion level
39} enc_t; 128} enc_t;
40 129
41// structure used for decoding JSON 130inline void
42typedef struct
43{
44 char *cur;
45 char *end;
46 const char *err;
47 UV flags;
48} dec_t;
49
50static UV *
51SvJSON (SV *sv)
52{
53 if (!(SvROK (sv) && SvOBJECT (SvRV (sv)) && SvSTASH (SvRV (sv)) == json_stash))
54 croak ("object is not of type JSON::XS");
55
56 return &SvUVX (SvRV (sv));
57}
58
59/////////////////////////////////////////////////////////////////////////////
60
61static void
62need (enc_t *enc, STRLEN len) 131need (enc_t *enc, STRLEN len)
63{ 132{
64 if (enc->cur + len >= enc->end) 133 if (expect_false (enc->cur + len >= enc->end))
65 { 134 {
66 STRLEN cur = enc->cur - SvPVX (enc->sv); 135 STRLEN cur = enc->cur - SvPVX (enc->sv);
67 SvGROW (enc->sv, cur + len + 1); 136 SvGROW (enc->sv, cur + len + 1);
68 enc->cur = SvPVX (enc->sv) + cur; 137 enc->cur = SvPVX (enc->sv) + cur;
69 enc->end = SvPVX (enc->sv) + SvLEN (enc->sv); 138 enc->end = SvPVX (enc->sv) + SvLEN (enc->sv) - 1;
70 } 139 }
71} 140}
72 141
73static void 142inline void
74encode_ch (enc_t *enc, char ch) 143encode_ch (enc_t *enc, char ch)
75{ 144{
76 need (enc, 1); 145 need (enc, 1);
77 *enc->cur++ = ch; 146 *enc->cur++ = ch;
78} 147}
86 155
87 while (str < end) 156 while (str < end)
88 { 157 {
89 unsigned char ch = *(unsigned char *)str; 158 unsigned char ch = *(unsigned char *)str;
90 159
91 if (ch >= 0x20 && ch < 0x80) // most common case 160 if (expect_true (ch >= 0x20 && ch < 0x80)) // most common case
92 { 161 {
93 if (ch == '"') // but with slow exceptions 162 if (expect_false (ch == '"')) // but with slow exceptions
94 { 163 {
95 need (enc, len += 1); 164 need (enc, len += 1);
96 *enc->cur++ = '\\'; 165 *enc->cur++ = '\\';
97 *enc->cur++ = '"'; 166 *enc->cur++ = '"';
98 } 167 }
99 else if (ch == '\\') 168 else if (expect_false (ch == '\\'))
100 { 169 {
101 need (enc, len += 1); 170 need (enc, len += 1);
102 *enc->cur++ = '\\'; 171 *enc->cur++ = '\\';
103 *enc->cur++ = '\\'; 172 *enc->cur++ = '\\';
104 } 173 }
122 STRLEN clen; 191 STRLEN clen;
123 UV uch; 192 UV uch;
124 193
125 if (is_utf8) 194 if (is_utf8)
126 { 195 {
127 uch = utf8n_to_uvuni (str, end - str, &clen, UTF8_CHECK_ONLY); 196 uch = decode_utf8 (str, end - str, &clen);
128 if (clen == (STRLEN)-1) 197 if (clen == (STRLEN)-1)
129 croak ("malformed UTF-8 character in string, cannot convert to JSON"); 198 croak ("malformed or illegal unicode character in string [%.11s], cannot convert to JSON", str);
130 } 199 }
131 else 200 else
132 { 201 {
133 uch = ch; 202 uch = ch;
134 clen = 1; 203 clen = 1;
135 } 204 }
136 205
137 if (uch < 0x80 || enc->flags & F_ASCII) 206 if (uch > 0x10FFFFUL)
207 croak ("out of range codepoint (0x%lx) encountered, unrepresentable in JSON", (unsigned long)uch);
208
209 if (uch < 0x80 || enc->json.flags & F_ASCII || (enc->json.flags & F_LATIN1 && uch > 0xFF))
138 { 210 {
139 if (uch > 0xFFFFUL) 211 if (uch > 0xFFFFUL)
140 { 212 {
141 need (enc, len += 11); 213 need (enc, len += 11);
142 sprintf (enc->cur, "\\u%04x\\u%04x", 214 sprintf (enc->cur, "\\u%04x\\u%04x",
143 (uch - 0x10000) / 0x400 + 0xD800, 215 (int)((uch - 0x10000) / 0x400 + 0xD800),
144 (uch - 0x10000) % 0x400 + 0xDC00); 216 (int)((uch - 0x10000) % 0x400 + 0xDC00));
145 enc->cur += 12; 217 enc->cur += 12;
146 } 218 }
147 else 219 else
148 { 220 {
149 static char hexdigit [16] = "0123456789abcdef"; 221 static char hexdigit [16] = "0123456789abcdef";
156 *enc->cur++ = hexdigit [(uch >> 0) & 15]; 228 *enc->cur++ = hexdigit [(uch >> 0) & 15];
157 } 229 }
158 230
159 str += clen; 231 str += clen;
160 } 232 }
233 else if (enc->json.flags & F_LATIN1)
234 {
235 *enc->cur++ = uch;
236 str += clen;
237 }
161 else if (is_utf8) 238 else if (is_utf8)
162 { 239 {
163 need (enc, len += clen); 240 need (enc, len += clen);
164 do 241 do
165 { 242 {
167 } 244 }
168 while (--clen); 245 while (--clen);
169 } 246 }
170 else 247 else
171 { 248 {
172 need (enc, 10); // never more than 11 bytes needed 249 need (enc, len += UTF8_MAXBYTES - 1); // never more than 11 bytes needed
173 enc->cur = uvuni_to_utf8_flags (enc->cur, uch, 0); 250 enc->cur = uvuni_to_utf8_flags (enc->cur, uch, 0);
174 ++str; 251 ++str;
175 } 252 }
176 } 253 }
177 } 254 }
179 256
180 --len; 257 --len;
181 } 258 }
182} 259}
183 260
184#define INDENT SB \ 261inline void
262encode_indent (enc_t *enc)
263{
185 if (enc->flags & F_INDENT) \ 264 if (enc->json.flags & F_INDENT)
186 { \ 265 {
187 int i_; \ 266 int spaces = enc->indent * INDENT_STEP;
188 need (enc, enc->indent); \ 267
189 for (i_ = enc->indent * 3; i_--; )\ 268 need (enc, spaces);
269 memset (enc->cur, ' ', spaces);
270 enc->cur += spaces;
271 }
272}
273
274inline void
275encode_space (enc_t *enc)
276{
277 need (enc, 1);
278 encode_ch (enc, ' ');
279}
280
281inline void
282encode_nl (enc_t *enc)
283{
284 if (enc->json.flags & F_INDENT)
285 {
286 need (enc, 1);
190 encode_ch (enc, ' '); \ 287 encode_ch (enc, '\n');
191 } \ 288 }
192 SE 289}
193 290
194#define SPACE SB need (enc, 1); encode_ch (enc, ' '); SE 291inline void
195#define NL SB if (enc->flags & F_INDENT) { need (enc, 1); encode_ch (enc, '\n'); } SE 292encode_comma (enc_t *enc)
196#define COMMA SB \ 293{
197 encode_ch (enc, ','); \ 294 encode_ch (enc, ',');
295
198 if (enc->flags & F_INDENT) \ 296 if (enc->json.flags & F_INDENT)
199 NL; \ 297 encode_nl (enc);
200 else if (enc->flags & F_SPACE_AFTER) \ 298 else if (enc->json.flags & F_SPACE_AFTER)
201 SPACE; \ 299 encode_space (enc);
202 SE 300}
203 301
204static void encode_sv (enc_t *enc, SV *sv); 302static void encode_sv (enc_t *enc, SV *sv);
205 303
206static void 304static void
207encode_av (enc_t *enc, AV *av) 305encode_av (enc_t *enc, AV *av)
208{ 306{
209 int i, len = av_len (av); 307 int i, len = av_len (av);
210 308
211 encode_ch (enc, '['); NL; 309 if (enc->indent >= enc->maxdepth)
310 croak ("data structure too deep (hit recursion limit)");
311
312 encode_ch (enc, '['); encode_nl (enc);
212 ++enc->indent; 313 ++enc->indent;
213 314
214 for (i = 0; i <= len; ++i) 315 for (i = 0; i <= len; ++i)
215 { 316 {
216 INDENT; 317 encode_indent (enc);
217 encode_sv (enc, *av_fetch (av, i, 0)); 318 encode_sv (enc, *av_fetch (av, i, 0));
218 319
219 if (i < len) 320 if (i < len)
220 COMMA; 321 encode_comma (enc);
221 } 322 }
222 323
223 NL; 324 encode_nl (enc);
224 325
225 --enc->indent; 326 --enc->indent;
226 INDENT; encode_ch (enc, ']'); 327 encode_indent (enc); encode_ch (enc, ']');
227} 328}
228 329
229static void 330static void
230encode_he (enc_t *enc, HE *he) 331encode_he (enc_t *enc, HE *he)
231{ 332{
245 else 346 else
246 encode_str (enc, HeKEY (he), HeKLEN (he), HeKUTF8 (he)); 347 encode_str (enc, HeKEY (he), HeKLEN (he), HeKUTF8 (he));
247 348
248 encode_ch (enc, '"'); 349 encode_ch (enc, '"');
249 350
250 if (enc->flags & F_SPACE_BEFORE) SPACE; 351 if (enc->json.flags & F_SPACE_BEFORE) encode_space (enc);
251 encode_ch (enc, ':'); 352 encode_ch (enc, ':');
252 if (enc->flags & F_SPACE_AFTER ) SPACE; 353 if (enc->json.flags & F_SPACE_AFTER ) encode_space (enc);
253 encode_sv (enc, HeVAL (he)); 354 encode_sv (enc, HeVAL (he));
254} 355}
255 356
256// compare hash entries, used when all keys are bytestrings 357// compare hash entries, used when all keys are bytestrings
257static int 358static int
263 HE *b = *(HE **)b_; 364 HE *b = *(HE **)b_;
264 365
265 STRLEN la = HeKLEN (a); 366 STRLEN la = HeKLEN (a);
266 STRLEN lb = HeKLEN (b); 367 STRLEN lb = HeKLEN (b);
267 368
268 if (!(cmp == memcmp (HeKEY (a), HeKEY (b), la < lb ? la : lb))) 369 if (!(cmp = memcmp (HeKEY (a), HeKEY (b), la < lb ? la : lb)))
269 cmp = la < lb ? -1 : la == lb ? 0 : 1; 370 cmp = la - lb;
270 371
271 return cmp; 372 return cmp;
272} 373}
273 374
274// compare hash entries, used when some keys are sv's or utf-x 375// compare hash entries, used when some keys are sv's or utf-x
281static void 382static void
282encode_hv (enc_t *enc, HV *hv) 383encode_hv (enc_t *enc, HV *hv)
283{ 384{
284 int count, i; 385 int count, i;
285 386
387 if (enc->indent >= enc->maxdepth)
388 croak ("data structure too deep (hit recursion limit)");
389
286 encode_ch (enc, '{'); NL; ++enc->indent; 390 encode_ch (enc, '{'); encode_nl (enc); ++enc->indent;
287 391
288 if ((count = hv_iterinit (hv))) 392 if ((count = hv_iterinit (hv)))
289 { 393 {
290 // for canonical output we have to sort by keys first 394 // for canonical output we have to sort by keys first
291 // actually, this is mostly due to the stupid so-called 395 // actually, this is mostly due to the stupid so-called
292 // security workaround added somewhere in 5.8.x. 396 // security workaround added somewhere in 5.8.x.
293 // that randomises hash orderings 397 // that randomises hash orderings
294 if (enc->flags & F_CANONICAL) 398 if (enc->json.flags & F_CANONICAL)
295 { 399 {
296 HE *he, *hes [count];
297 int fast = 1; 400 int fast = 1;
401 HE *he;
402#if defined(__BORLANDC__) || defined(_MSC_VER)
403 HE **hes = _alloca (count * sizeof (HE));
404#else
405 HE *hes [count]; // if your compiler dies here, you need to enable C99 mode
406#endif
298 407
299 i = 0; 408 i = 0;
300 while ((he = hv_iternext (hv))) 409 while ((he = hv_iternext (hv)))
301 { 410 {
302 hes [i++] = he; 411 hes [i++] = he;
308 417
309 if (fast) 418 if (fast)
310 qsort (hes, count, sizeof (HE *), he_cmp_fast); 419 qsort (hes, count, sizeof (HE *), he_cmp_fast);
311 else 420 else
312 { 421 {
313 // hack to disable "use bytes" 422 // hack to forcefully disable "use bytes"
314 COP *oldcop = PL_curcop, cop; 423 COP cop = *PL_curcop;
315 cop.op_private = 0; 424 cop.op_private = 0;
425
426 ENTER;
427 SAVETMPS;
428
429 SAVEVPTR (PL_curcop);
316 PL_curcop = &cop; 430 PL_curcop = &cop;
317 431
318 SAVETMPS;
319 qsort (hes, count, sizeof (HE *), he_cmp_slow); 432 qsort (hes, count, sizeof (HE *), he_cmp_slow);
433
320 FREETMPS; 434 FREETMPS;
321 435 LEAVE;
322 PL_curcop = oldcop;
323 } 436 }
324 437
325 for (i = 0; i < count; ++i) 438 for (i = 0; i < count; ++i)
326 { 439 {
327 INDENT; 440 encode_indent (enc);
328 encode_he (enc, hes [i]); 441 encode_he (enc, hes [i]);
329 442
330 if (i < count - 1) 443 if (i < count - 1)
331 COMMA; 444 encode_comma (enc);
332 }
333
334 NL; 445 }
446
447 encode_nl (enc);
335 } 448 }
336 else 449 else
337 { 450 {
338 SV *sv;
339 HE *he = hv_iternext (hv); 451 HE *he = hv_iternext (hv);
340 452
341 for (;;) 453 for (;;)
342 { 454 {
343 INDENT; 455 encode_indent (enc);
344 encode_he (enc, he); 456 encode_he (enc, he);
345 457
346 if (!(he = hv_iternext (hv))) 458 if (!(he = hv_iternext (hv)))
347 break; 459 break;
348 460
349 COMMA; 461 encode_comma (enc);
350 }
351
352 NL; 462 }
463
464 encode_nl (enc);
353 } 465 }
354 } 466 }
355 467
356 --enc->indent; INDENT; encode_ch (enc, '}'); 468 --enc->indent; encode_indent (enc); encode_ch (enc, '}');
469}
470
471// encode objects, arrays and special \0=false and \1=true values.
472static void
473encode_rv (enc_t *enc, SV *sv)
474{
475 svtype svt;
476
477 SvGETMAGIC (sv);
478 svt = SvTYPE (sv);
479
480 if (expect_false (SvOBJECT (sv)))
481 {
482 if (SvSTASH (sv) == json_boolean_stash)
483 {
484 if (SvIV (sv) == 0)
485 encode_str (enc, "false", 5, 0);
486 else
487 encode_str (enc, "true", 4, 0);
488 }
489 else
490 {
491#if 0
492 if (0 && sv_derived_from (rv, "JSON::Literal"))
493 {
494 // not yet
495 }
496#endif
497 if (enc->json.flags & F_CONV_BLESSED)
498 {
499 // we re-bless the reference to get overload and other niceties right
500 GV *to_json = gv_fetchmethod_autoload (SvSTASH (sv), "TO_JSON", 1);
501
502 if (to_json)
503 {
504 dSP;
505 ENTER;
506 SAVETMPS;
507 PUSHMARK (SP);
508 XPUSHs (sv_bless (sv_2mortal (newRV_inc (sv)), SvSTASH (sv)));
509
510 // calling with G_SCALAR ensures that we always get a 1 reutrn value
511 // check anyways.
512 PUTBACK;
513 assert (1 == call_sv ((SV *)GvCV (to_json), G_SCALAR));
514 SPAGAIN;
515
516 encode_sv (enc, POPs);
517
518 FREETMPS;
519 LEAVE;
520 }
521 else if (enc->json.flags & F_ALLOW_BLESSED)
522 encode_str (enc, "null", 4, 0);
523 else
524 croak ("encountered object '%s', but neither allow_blessed enabled nor TO_JSON method available on it",
525 SvPV_nolen (sv_2mortal (newRV_inc (sv))));
526 }
527 else if (enc->json.flags & F_ALLOW_BLESSED)
528 encode_str (enc, "null", 4, 0);
529 else
530 croak ("encountered object '%s', but neither allow_blessed nor convert_blessed settings are enabled",
531 SvPV_nolen (sv_2mortal (newRV_inc (sv))));
532 }
533 }
534 else if (svt == SVt_PVHV)
535 encode_hv (enc, (HV *)sv);
536 else if (svt == SVt_PVAV)
537 encode_av (enc, (AV *)sv);
538 else if (svt < SVt_PVAV)
539 {
540 if (SvNIOK (sv) && SvIV (sv) == 0)
541 encode_str (enc, "false", 5, 0);
542 else if (SvNIOK (sv) && SvIV (sv) == 1)
543 encode_str (enc, "true", 4, 0);
544 else
545 croak ("cannot encode reference to scalar '%s' unless the scalar is 0 or 1",
546 SvPV_nolen (sv_2mortal (newRV_inc (sv))));
547 }
548 else
549 croak ("encountered %s, but JSON can only represent references to arrays or hashes",
550 SvPV_nolen (sv_2mortal (newRV_inc (sv))));
357} 551}
358 552
359static void 553static void
360encode_sv (enc_t *enc, SV *sv) 554encode_sv (enc_t *enc, SV *sv)
361{ 555{
369 encode_str (enc, str, len, SvUTF8 (sv)); 563 encode_str (enc, str, len, SvUTF8 (sv));
370 encode_ch (enc, '"'); 564 encode_ch (enc, '"');
371 } 565 }
372 else if (SvNOKp (sv)) 566 else if (SvNOKp (sv))
373 { 567 {
568 // trust that perl will do the right thing w.r.t. JSON syntax.
374 need (enc, NV_DIG + 32); 569 need (enc, NV_DIG + 32);
375 Gconvert (SvNVX (sv), NV_DIG, 0, enc->cur); 570 Gconvert (SvNVX (sv), NV_DIG, 0, enc->cur);
376 enc->cur += strlen (enc->cur); 571 enc->cur += strlen (enc->cur);
377 } 572 }
378 else if (SvIOKp (sv)) 573 else if (SvIOKp (sv))
379 { 574 {
380 need (enc, 64); 575 // we assume we can always read an IV as a UV
576 if (SvUV (sv) & ~(UV)0x7fff)
577 {
578 // large integer, use the (rather slow) snprintf way.
579 need (enc, sizeof (UV) * 3);
381 enc->cur += 580 enc->cur +=
382 SvIsUV(sv) 581 SvIsUV(sv)
383 ? snprintf (enc->cur, 64, "%"UVuf, (UV)SvUVX (sv)) 582 ? snprintf (enc->cur, sizeof (UV) * 3, "%"UVuf, (UV)SvUVX (sv))
384 : snprintf (enc->cur, 64, "%"IVdf, (IV)SvIVX (sv)); 583 : snprintf (enc->cur, sizeof (UV) * 3, "%"IVdf, (IV)SvIVX (sv));
584 }
585 else
586 {
587 // optimise the "small number case"
588 // code will likely be branchless and use only a single multiplication
589 I32 i = SvIV (sv);
590 U32 u;
591 char digit, nz = 0;
592
593 need (enc, 6);
594
595 *enc->cur = '-'; enc->cur += i < 0 ? 1 : 0;
596 u = i < 0 ? -i : i;
597
598 // convert to 4.28 fixed-point representation
599 u = u * ((0xfffffff + 10000) / 10000); // 10**5, 5 fractional digits
600
601 // now output digit by digit, each time masking out the integer part
602 // and multiplying by 5 while moving the decimal point one to the right,
603 // resulting in a net multiplication by 10.
604 // we always write the digit to memory but conditionally increment
605 // the pointer, to ease the usage of conditional move instructions.
606 digit = u >> 28; *enc->cur = digit + '0'; enc->cur += (nz = nz || digit); u = (u & 0xfffffff) * 5;
607 digit = u >> 27; *enc->cur = digit + '0'; enc->cur += (nz = nz || digit); u = (u & 0x7ffffff) * 5;
608 digit = u >> 26; *enc->cur = digit + '0'; enc->cur += (nz = nz || digit); u = (u & 0x3ffffff) * 5;
609 digit = u >> 25; *enc->cur = digit + '0'; enc->cur += (nz = nz || digit); u = (u & 0x1ffffff) * 5;
610 digit = u >> 24; *enc->cur = digit + '0'; enc->cur += 1; // correctly generate '0'
611 }
385 } 612 }
386 else if (SvROK (sv)) 613 else if (SvROK (sv))
387 { 614 encode_rv (enc, SvRV (sv));
388 if (!--enc->max_recurse)
389 croak ("data structure too deep (hit recursion limit)");
390
391 sv = SvRV (sv);
392
393 switch (SvTYPE (sv))
394 {
395 case SVt_PVAV: encode_av (enc, (AV *)sv); break;
396 case SVt_PVHV: encode_hv (enc, (HV *)sv); break;
397
398 default:
399 croak ("JSON can only represent references to arrays or hashes");
400 }
401 }
402 else if (!SvOK (sv)) 615 else if (!SvOK (sv))
403 encode_str (enc, "null", 4, 0); 616 encode_str (enc, "null", 4, 0);
404 else 617 else
405 croak ("encountered perl type that JSON cannot handle"); 618 croak ("encountered perl type (%s,0x%x) that JSON cannot handle, you might want to report this",
619 SvPV_nolen (sv), SvFLAGS (sv));
406} 620}
407 621
408static SV * 622static SV *
409encode_json (SV *scalar, UV flags) 623encode_json (SV *scalar, struct json *json)
410{ 624{
411 if (!(flags & F_ALLOW_NONREF) && !SvROK (scalar))
412 croak ("hash- or arraref required (not a simple scalar, use allow_nonref to allow this)");
413
414 enc_t enc; 625 enc_t enc;
415 enc.flags = flags; 626
627 if (!(json->flags & F_ALLOW_NONREF) && !SvROK (scalar))
628 croak ("hash- or arrayref expected (not a simple scalar, use allow_nonref to allow this)");
629
630 enc.json = *json;
416 enc.sv = sv_2mortal (NEWSV (0, INIT_SIZE)); 631 enc.sv = sv_2mortal (NEWSV (0, INIT_SIZE));
417 enc.cur = SvPVX (enc.sv); 632 enc.cur = SvPVX (enc.sv);
418 enc.end = SvEND (enc.sv); 633 enc.end = SvEND (enc.sv);
419 enc.max_recurse = 0;
420 enc.indent = 0; 634 enc.indent = 0;
635 enc.maxdepth = DEC_DEPTH (enc.json.flags);
421 636
422 SvPOK_only (enc.sv); 637 SvPOK_only (enc.sv);
423 encode_sv (&enc, scalar); 638 encode_sv (&enc, scalar);
424 639
640 SvCUR_set (enc.sv, enc.cur - SvPVX (enc.sv));
641 *SvEND (enc.sv) = 0; // many xs functions expect a trailing 0 for text strings
642
425 if (!(flags & (F_ASCII | F_UTF8))) 643 if (!(enc.json.flags & (F_ASCII | F_LATIN1 | F_UTF8)))
426 SvUTF8_on (enc.sv); 644 SvUTF8_on (enc.sv);
427 645
428 SvCUR_set (enc.sv, enc.cur - SvPVX (enc.sv));
429
430#ifdef SvPV_shrink_to_cur
431 if (enc.flags & F_SHRINK) 646 if (enc.json.flags & F_SHRINK)
432 SvPV_shrink_to_cur (enc.sv); 647 shrink (enc.sv);
433#endif 648
434 return enc.sv; 649 return enc.sv;
435} 650}
436 651
437///////////////////////////////////////////////////////////////////////////// 652/////////////////////////////////////////////////////////////////////////////
653// decoder
438 654
439#define WS \ 655// structure used for decoding JSON
656typedef struct
657{
658 char *cur; // current parser pointer
659 char *end; // end of input string
660 const char *err; // parse error, if != 0
661 struct json json;
662 U32 depth; // recursion depth
663 U32 maxdepth; // recursion depth limit
664} dec_t;
665
666inline void
667decode_ws (dec_t *dec)
668{
440 for (;;) \ 669 for (;;)
441 { \ 670 {
442 char ch = *dec->cur; \ 671 char ch = *dec->cur;
672
443 if (ch > 0x20 \ 673 if (ch > 0x20
444 || (ch != 0x20 && ch != 0x0a && ch != 0x0d && ch != 0x09)) \ 674 || (ch != 0x20 && ch != 0x0a && ch != 0x0d && ch != 0x09))
445 break; \ 675 break;
676
446 ++dec->cur; \ 677 ++dec->cur;
447 } 678 }
679}
448 680
449#define ERR(reason) SB dec->err = reason; goto fail; SE 681#define ERR(reason) SB dec->err = reason; goto fail; SE
682
450#define EXPECT_CH(ch) SB \ 683#define EXPECT_CH(ch) SB \
451 if (*dec->cur != ch) \ 684 if (*dec->cur != ch) \
452 ERR (# ch " expected"); \ 685 ERR (# ch " expected"); \
453 ++dec->cur; \ 686 ++dec->cur; \
454 SE 687 SE
455 688
689#define DEC_INC_DEPTH if (++dec->depth > dec->maxdepth) ERR ("json datastructure exceeds maximum nesting level (set a higher max_depth)")
690#define DEC_DEC_DEPTH --dec->depth
691
456static SV *decode_sv (dec_t *dec); 692static SV *decode_sv (dec_t *dec);
457 693
458static signed char decode_hexdigit[256]; 694static signed char decode_hexdigit[256];
459 695
460static UV 696static UV
461decode_4hex (dec_t *dec) 697decode_4hex (dec_t *dec)
462{ 698{
463 signed char d1, d2, d3, d4; 699 signed char d1, d2, d3, d4;
700 unsigned char *cur = (unsigned char *)dec->cur;
464 701
465 d1 = decode_hexdigit [((unsigned char *)dec->cur) [0]]; 702 d1 = decode_hexdigit [cur [0]]; if (expect_false (d1 < 0)) ERR ("exactly four hexadecimal digits expected");
466 if (d1 < 0) ERR ("four hexadecimal digits expected"); 703 d2 = decode_hexdigit [cur [1]]; if (expect_false (d2 < 0)) ERR ("exactly four hexadecimal digits expected");
467 d2 = decode_hexdigit [((unsigned char *)dec->cur) [1]]; 704 d3 = decode_hexdigit [cur [2]]; if (expect_false (d3 < 0)) ERR ("exactly four hexadecimal digits expected");
468 if (d2 < 0) ERR ("four hexadecimal digits expected"); 705 d4 = decode_hexdigit [cur [3]]; if (expect_false (d4 < 0)) ERR ("exactly four hexadecimal digits expected");
469 d3 = decode_hexdigit [((unsigned char *)dec->cur) [2]];
470 if (d3 < 0) ERR ("four hexadecimal digits expected");
471 d4 = decode_hexdigit [((unsigned char *)dec->cur) [3]];
472 if (d4 < 0) ERR ("four hexadecimal digits expected");
473 706
474 dec->cur += 4; 707 dec->cur += 4;
475 708
476 return ((UV)d1) << 12 709 return ((UV)d1) << 12
477 | ((UV)d2) << 8 710 | ((UV)d2) << 8
480 713
481fail: 714fail:
482 return (UV)-1; 715 return (UV)-1;
483} 716}
484 717
485#define APPEND_GROW(n) SB \
486 if (cur + (n) >= end) \
487 { \
488 STRLEN ofs = cur - SvPVX (sv); \
489 SvGROW (sv, ofs + (n) + 1); \
490 cur = SvPVX (sv) + ofs; \
491 end = SvEND (sv); \
492 } \
493 SE
494
495#define APPEND_CH(ch) SB \
496 APPEND_GROW (1); \
497 *cur++ = (ch); \
498 SE
499
500static SV * 718static SV *
501decode_str (dec_t *dec) 719decode_str (dec_t *dec)
502{ 720{
503 SV *sv = NEWSV (0,2); 721 SV *sv = 0;
504 int utf8 = 0; 722 int utf8 = 0;
505 char *cur = SvPVX (sv); 723 char *dec_cur = dec->cur;
506 char *end = SvEND (sv);
507 724
508 for (;;) 725 do
509 { 726 {
510 unsigned char ch = *(unsigned char *)dec->cur; 727 char buf [SHORT_STRING_LEN + UTF8_MAXBYTES];
728 char *cur = buf;
511 729
512 if (ch == '"') 730 do
513 break;
514 else if (ch == '\\')
515 { 731 {
516 switch (*++dec->cur) 732 unsigned char ch = *(unsigned char *)dec_cur++;
733
734 if (expect_false (ch == '"'))
735 {
736 --dec_cur;
737 break;
517 { 738 }
518 case '\\': 739 else if (expect_false (ch == '\\'))
519 case '/': 740 {
520 case '"': APPEND_CH (*dec->cur++); break; 741 switch (*dec_cur)
521
522 case 'b': APPEND_CH ('\010'); ++dec->cur; break;
523 case 't': APPEND_CH ('\011'); ++dec->cur; break;
524 case 'n': APPEND_CH ('\012'); ++dec->cur; break;
525 case 'f': APPEND_CH ('\014'); ++dec->cur; break;
526 case 'r': APPEND_CH ('\015'); ++dec->cur; break;
527
528 case 'u':
529 { 742 {
530 UV lo, hi; 743 case '\\':
531 ++dec->cur; 744 case '/':
745 case '"': *cur++ = *dec_cur++; break;
532 746
533 hi = decode_4hex (dec); 747 case 'b': ++dec_cur; *cur++ = '\010'; break;
534 if (hi == (UV)-1) 748 case 't': ++dec_cur; *cur++ = '\011'; break;
535 goto fail; 749 case 'n': ++dec_cur; *cur++ = '\012'; break;
750 case 'f': ++dec_cur; *cur++ = '\014'; break;
751 case 'r': ++dec_cur; *cur++ = '\015'; break;
536 752
537 // possibly a surrogate pair 753 case 'u':
538 if (hi >= 0xd800 && hi < 0xdc00)
539 { 754 {
540 if (dec->cur [0] != '\\' || dec->cur [1] != 'u') 755 UV lo, hi;
541 ERR ("missing low surrogate character in surrogate pair"); 756 ++dec_cur;
542 757
543 dec->cur += 2; 758 dec->cur = dec_cur;
544
545 lo = decode_4hex (dec); 759 hi = decode_4hex (dec);
760 dec_cur = dec->cur;
546 if (lo == (UV)-1) 761 if (hi == (UV)-1)
547 goto fail; 762 goto fail;
548 763
764 // possibly a surrogate pair
765 if (hi >= 0xd800)
766 if (hi < 0xdc00)
767 {
768 if (dec_cur [0] != '\\' || dec_cur [1] != 'u')
769 ERR ("missing low surrogate character in surrogate pair");
770
771 dec_cur += 2;
772
773 dec->cur = dec_cur;
774 lo = decode_4hex (dec);
775 dec_cur = dec->cur;
776 if (lo == (UV)-1)
777 goto fail;
778
549 if (lo < 0xdc00 || lo >= 0xe000) 779 if (lo < 0xdc00 || lo >= 0xe000)
550 ERR ("surrogate pair expected"); 780 ERR ("surrogate pair expected");
551 781
552 hi = (hi - 0xD800) * 0x400 + (lo - 0xDC00) + 0x10000; 782 hi = (hi - 0xD800) * 0x400 + (lo - 0xDC00) + 0x10000;
783 }
784 else if (hi < 0xe000)
785 ERR ("missing high surrogate character in surrogate pair");
786
787 if (hi >= 0x80)
788 {
789 utf8 = 1;
790
791 cur = (char *)uvuni_to_utf8_flags (cur, hi, 0);
792 }
793 else
794 *cur++ = hi;
553 } 795 }
554 else if (hi >= 0xdc00 && hi < 0xe000)
555 ERR ("missing high surrogate character in surrogate pair");
556
557 if (hi >= 0x80)
558 { 796 break;
559 utf8 = 1;
560 797
561 APPEND_GROW (4); // at most 4 bytes for 21 bits
562 cur = (char *)uvuni_to_utf8_flags (cur, hi, 0);
563 }
564 else 798 default:
565 APPEND_CH (hi); 799 --dec_cur;
800 ERR ("illegal backslash escape sequence in string");
566 } 801 }
567 break; 802 }
803 else if (expect_true (ch >= 0x20 && ch <= 0x7f))
804 *cur++ = ch;
805 else if (ch >= 0x80)
806 {
807 STRLEN clen;
808 UV uch;
568 809
569 default:
570 --dec->cur; 810 --dec_cur;
571 ERR ("illegal backslash escape sequence in string"); 811
812 uch = decode_utf8 (dec_cur, dec->end - dec_cur, &clen);
813 if (clen == (STRLEN)-1)
814 ERR ("malformed UTF-8 character in JSON string");
815
816 do
817 *cur++ = *dec_cur++;
818 while (--clen);
819
820 utf8 = 1;
821 }
822 else
823 {
824 --dec_cur;
825
826 if (!ch)
827 ERR ("unexpected end of string while parsing JSON string");
828 else
829 ERR ("invalid character encountered while parsing JSON string");
572 } 830 }
573 } 831 }
574 else if (ch >= 0x20 && ch <= 0x7f) 832 while (cur < buf + SHORT_STRING_LEN);
575 APPEND_CH (*dec->cur++); 833
576 else if (ch >= 0x80)
577 { 834 {
578 STRLEN clen; 835 STRLEN len = cur - buf;
579 UV uch = utf8n_to_uvuni (dec->cur, dec->end - dec->cur, &clen, UTF8_CHECK_ONLY);
580 if (clen == (STRLEN)-1)
581 ERR ("malformed UTF-8 character in string, cannot convert to JSON");
582 836
583 APPEND_GROW (clen); 837 if (sv)
584 do
585 { 838 {
586 *cur++ = *dec->cur++; 839 SvGROW (sv, SvCUR (sv) + len + 1);
840 memcpy (SvPVX (sv) + SvCUR (sv), buf, len);
841 SvCUR_set (sv, SvCUR (sv) + len);
587 } 842 }
588 while (--clen);
589
590 utf8 = 1;
591 }
592 else if (dec->cur == dec->end)
593 ERR ("unexpected end of string while parsing json string");
594 else 843 else
595 ERR ("invalid character encountered"); 844 sv = newSVpvn (buf, len);
596 } 845 }
846 }
847 while (*dec_cur != '"');
597 848
598 ++dec->cur; 849 ++dec_cur;
599 850
600 SvCUR_set (sv, cur - SvPVX (sv)); 851 if (sv)
601 852 {
602 SvPOK_only (sv); 853 SvPOK_only (sv);
603 *SvEND (sv) = 0; 854 *SvEND (sv) = 0;
604 855
605 if (utf8) 856 if (utf8)
606 SvUTF8_on (sv); 857 SvUTF8_on (sv);
858 }
859 else
860 sv = newSVpvn ("", 0);
607 861
608#ifdef SvPV_shrink_to_cur 862 dec->cur = dec_cur;
609 if (dec->flags & F_SHRINK)
610 SvPV_shrink_to_cur (sv);
611#endif
612
613 return sv; 863 return sv;
614 864
615fail: 865fail:
616 SvREFCNT_dec (sv); 866 dec->cur = dec_cur;
617 return 0; 867 return 0;
618} 868}
619 869
620static SV * 870static SV *
621decode_num (dec_t *dec) 871decode_num (dec_t *dec)
679 is_nv = 1; 929 is_nv = 1;
680 } 930 }
681 931
682 if (!is_nv) 932 if (!is_nv)
683 { 933 {
684 UV uv; 934 // special case the rather common 1..4-digit-int case, assumes 32 bit ints or so
685 int numtype = grok_number (start, dec->cur - start, &uv); 935 if (*start == '-')
686 if (numtype & IS_NUMBER_IN_UV) 936 switch (dec->cur - start)
687 if (numtype & IS_NUMBER_NEG)
688 { 937 {
689 if (uv < (UV)IV_MIN) 938 case 2: return newSViv (-( start [1] - '0' * 1));
690 return newSViv (-(IV)uv); 939 case 3: return newSViv (-( start [1] * 10 + start [2] - '0' * 11));
940 case 4: return newSViv (-( start [1] * 100 + start [2] * 10 + start [3] - '0' * 111));
941 case 5: return newSViv (-(start [1] * 1000 + start [2] * 100 + start [3] * 10 + start [4] - '0' * 1111));
691 } 942 }
943 else
944 switch (dec->cur - start)
945 {
946 case 1: return newSViv ( start [0] - '0' * 1);
947 case 2: return newSViv ( start [0] * 10 + start [1] - '0' * 11);
948 case 3: return newSViv ( start [0] * 100 + start [1] * 10 + start [2] - '0' * 111);
949 case 4: return newSViv ( start [0] * 1000 + start [1] * 100 + start [2] * 10 + start [3] - '0' * 1111);
950 }
951
952 {
953 UV uv;
954 int numtype = grok_number (start, dec->cur - start, &uv);
955 if (numtype & IS_NUMBER_IN_UV)
956 if (numtype & IS_NUMBER_NEG)
957 {
958 if (uv < (UV)IV_MIN)
959 return newSViv (-(IV)uv);
960 }
692 else 961 else
693 return newSVuv (uv); 962 return newSVuv (uv);
963
964 // here would likely be the place for bigint support
694 } 965 }
966 }
695 967
968 // if we ever support bigint or bigfloat, this is the place for bigfloat
696 return newSVnv (Atof (start)); 969 return newSVnv (Atof (start));
697 970
698fail: 971fail:
699 return 0; 972 return 0;
700} 973}
702static SV * 975static SV *
703decode_av (dec_t *dec) 976decode_av (dec_t *dec)
704{ 977{
705 AV *av = newAV (); 978 AV *av = newAV ();
706 979
707 WS; 980 DEC_INC_DEPTH;
981 decode_ws (dec);
982
708 if (*dec->cur == ']') 983 if (*dec->cur == ']')
709 ++dec->cur; 984 ++dec->cur;
710 else 985 else
711 for (;;) 986 for (;;)
712 { 987 {
716 if (!value) 991 if (!value)
717 goto fail; 992 goto fail;
718 993
719 av_push (av, value); 994 av_push (av, value);
720 995
721 WS; 996 decode_ws (dec);
722 997
723 if (*dec->cur == ']') 998 if (*dec->cur == ']')
724 { 999 {
725 ++dec->cur; 1000 ++dec->cur;
726 break; 1001 break;
730 ERR (", or ] expected while parsing array"); 1005 ERR (", or ] expected while parsing array");
731 1006
732 ++dec->cur; 1007 ++dec->cur;
733 } 1008 }
734 1009
1010 DEC_DEC_DEPTH;
735 return newRV_noinc ((SV *)av); 1011 return newRV_noinc ((SV *)av);
736 1012
737fail: 1013fail:
738 SvREFCNT_dec (av); 1014 SvREFCNT_dec (av);
1015 DEC_DEC_DEPTH;
739 return 0; 1016 return 0;
740} 1017}
741 1018
742static SV * 1019static SV *
743decode_hv (dec_t *dec) 1020decode_hv (dec_t *dec)
744{ 1021{
745 HV *hv = newHV (); 1022 HV *hv = newHV ();
746 1023
747 WS; 1024 DEC_INC_DEPTH;
1025 decode_ws (dec);
1026
748 if (*dec->cur == '}') 1027 if (*dec->cur == '}')
749 ++dec->cur; 1028 ++dec->cur;
750 else 1029 else
751 for (;;) 1030 for (;;)
752 { 1031 {
1032 decode_ws (dec); EXPECT_CH ('"');
1033
1034 // heuristic: assume that
1035 // a) decode_str + hv_store_ent are abysmally slow.
1036 // b) most hash keys are short, simple ascii text.
1037 // => try to "fast-match" such strings to avoid
1038 // the overhead of decode_str + hv_store_ent.
1039 {
753 SV *key, *value; 1040 SV *value;
1041 char *p = dec->cur;
1042 char *e = p + 24; // only try up to 24 bytes
754 1043
755 WS; EXPECT_CH ('"'); 1044 for (;;)
756
757 key = decode_str (dec);
758 if (!key)
759 goto fail;
760
761 WS; EXPECT_CH (':');
762
763 value = decode_sv (dec);
764 if (!value)
765 { 1045 {
1046 // the >= 0x80 is true on most architectures
1047 if (p == e || *p < 0x20 || *p >= 0x80 || *p == '\\')
1048 {
1049 // slow path, back up and use decode_str
1050 SV *key = decode_str (dec);
1051 if (!key)
1052 goto fail;
1053
1054 decode_ws (dec); EXPECT_CH (':');
1055
1056 value = decode_sv (dec);
1057 if (!value)
1058 {
1059 SvREFCNT_dec (key);
1060 goto fail;
1061 }
1062
1063 hv_store_ent (hv, key, value, 0);
766 SvREFCNT_dec (key); 1064 SvREFCNT_dec (key);
1065
1066 break;
1067 }
1068 else if (*p == '"')
1069 {
1070 // fast path, got a simple key
1071 char *key = dec->cur;
1072 int len = p - key;
1073 dec->cur = p + 1;
1074
1075 decode_ws (dec); EXPECT_CH (':');
1076
1077 value = decode_sv (dec);
1078 if (!value)
767 goto fail; 1079 goto fail;
1080
1081 hv_store (hv, key, len, value, 0);
1082
1083 break;
1084 }
1085
1086 ++p;
768 } 1087 }
769
770 //TODO: optimise
771 hv_store_ent (hv, key, value, 0);
772
773 WS; 1088 }
1089
1090 decode_ws (dec);
774 1091
775 if (*dec->cur == '}') 1092 if (*dec->cur == '}')
776 { 1093 {
777 ++dec->cur; 1094 ++dec->cur;
778 break; 1095 break;
782 ERR (", or } expected while parsing object/hash"); 1099 ERR (", or } expected while parsing object/hash");
783 1100
784 ++dec->cur; 1101 ++dec->cur;
785 } 1102 }
786 1103
1104 DEC_DEC_DEPTH;
787 return newRV_noinc ((SV *)hv); 1105 return newRV_noinc ((SV *)hv);
788 1106
789fail: 1107fail:
790 SvREFCNT_dec (hv); 1108 SvREFCNT_dec (hv);
1109 DEC_DEC_DEPTH;
791 return 0; 1110 return 0;
792} 1111}
793 1112
794static SV * 1113static SV *
795decode_sv (dec_t *dec) 1114decode_sv (dec_t *dec)
796{ 1115{
797 WS; 1116 decode_ws (dec);
1117
1118 // the beauty of JSON: you need exactly one character lookahead
1119 // to parse anything.
798 switch (*dec->cur) 1120 switch (*dec->cur)
799 { 1121 {
800 case '"': ++dec->cur; return decode_str (dec); 1122 case '"': ++dec->cur; return decode_str (dec);
801 case '[': ++dec->cur; return decode_av (dec); 1123 case '[': ++dec->cur; return decode_av (dec);
802 case '{': ++dec->cur; return decode_hv (dec); 1124 case '{': ++dec->cur; return decode_hv (dec);
808 1130
809 case 't': 1131 case 't':
810 if (dec->end - dec->cur >= 4 && !memcmp (dec->cur, "true", 4)) 1132 if (dec->end - dec->cur >= 4 && !memcmp (dec->cur, "true", 4))
811 { 1133 {
812 dec->cur += 4; 1134 dec->cur += 4;
813 return newSViv (1); 1135 return SvREFCNT_inc (json_true);
814 } 1136 }
815 else 1137 else
816 ERR ("'true' expected"); 1138 ERR ("'true' expected");
817 1139
818 break; 1140 break;
819 1141
820 case 'f': 1142 case 'f':
821 if (dec->end - dec->cur >= 5 && !memcmp (dec->cur, "false", 5)) 1143 if (dec->end - dec->cur >= 5 && !memcmp (dec->cur, "false", 5))
822 { 1144 {
823 dec->cur += 5; 1145 dec->cur += 5;
824 return newSViv (0); 1146 return SvREFCNT_inc (json_false);
825 } 1147 }
826 else 1148 else
827 ERR ("'false' expected"); 1149 ERR ("'false' expected");
828 1150
829 break; 1151 break;
838 ERR ("'null' expected"); 1160 ERR ("'null' expected");
839 1161
840 break; 1162 break;
841 1163
842 default: 1164 default:
843 ERR ("malformed json string"); 1165 ERR ("malformed JSON string, neither array, object, number, string or atom");
844 break; 1166 break;
845 } 1167 }
846 1168
847fail: 1169fail:
848 return 0; 1170 return 0;
849} 1171}
850 1172
851static SV * 1173static SV *
852decode_json (SV *string, UV flags) 1174decode_json (SV *string, struct json *json, UV *offset_return)
853{ 1175{
1176 dec_t dec;
1177 UV offset;
854 SV *sv; 1178 SV *sv;
855 1179
1180 SvGETMAGIC (string);
1181 SvUPGRADE (string, SVt_PV);
1182
1183 if (json->flags & F_MAXSIZE && SvCUR (string) > DEC_SIZE (json->flags))
1184 croak ("attempted decode of JSON text of %lu bytes size, but max_size is set to %lu",
1185 (unsigned long)SvCUR (string), (unsigned long)DEC_SIZE (json->flags));
1186
856 if (flags & F_UTF8) 1187 if (json->flags & F_UTF8)
857 sv_utf8_downgrade (string, 0); 1188 sv_utf8_downgrade (string, 0);
858 else 1189 else
859 sv_utf8_upgrade (string); 1190 sv_utf8_upgrade (string);
860 1191
861 SvGROW (string, SvCUR (string) + 1); // should basically be a NOP 1192 SvGROW (string, SvCUR (string) + 1); // should basically be a NOP
862 1193
863 dec_t dec; 1194 dec.json = *json;
864 dec.flags = flags;
865 dec.cur = SvPVX (string); 1195 dec.cur = SvPVX (string);
866 dec.end = SvEND (string); 1196 dec.end = SvEND (string);
867 dec.err = 0; 1197 dec.err = 0;
1198 dec.depth = 0;
1199 dec.maxdepth = DEC_DEPTH (dec.json.flags);
868 1200
1201 *dec.end = 0; // this should basically be a nop, too, but make sure it's there
869 sv = decode_sv (&dec); 1202 sv = decode_sv (&dec);
870 1203
1204 if (!(offset_return || !sv))
1205 {
1206 // check for trailing garbage
1207 decode_ws (&dec);
1208
1209 if (*dec.cur)
1210 {
1211 dec.err = "garbage after JSON object";
1212 SvREFCNT_dec (sv);
1213 sv = 0;
1214 }
1215 }
1216
1217 if (offset_return || !sv)
1218 {
1219 offset = dec.json.flags & F_UTF8
1220 ? dec.cur - SvPVX (string)
1221 : utf8_distance (dec.cur, SvPVX (string));
1222
1223 if (offset_return)
1224 *offset_return = offset;
1225 }
1226
871 if (!sv) 1227 if (!sv)
872 { 1228 {
873 IV offset = utf8_distance (dec.cur, SvPVX (string));
874 SV *uni = sv_newmortal (); 1229 SV *uni = sv_newmortal ();
1230
875 // horrible hack to silence warning inside pv_uni_display 1231 // horrible hack to silence warning inside pv_uni_display
876 COP cop; 1232 COP cop = *PL_curcop;
877 memset (&cop, 0, sizeof (cop));
878 cop.cop_warnings = pWARN_NONE; 1233 cop.cop_warnings = pWARN_NONE;
1234 ENTER;
879 SAVEVPTR (PL_curcop); 1235 SAVEVPTR (PL_curcop);
880 PL_curcop = &cop; 1236 PL_curcop = &cop;
881
882 pv_uni_display (uni, dec.cur, dec.end - dec.cur, 20, UNI_DISPLAY_QQ); 1237 pv_uni_display (uni, dec.cur, dec.end - dec.cur, 20, UNI_DISPLAY_QQ);
1238 LEAVE;
1239
883 croak ("%s, at character offset %d (%s)", 1240 croak ("%s, at character offset %d [\"%s\"]",
884 dec.err, 1241 dec.err,
885 (int)offset, 1242 (int)offset,
886 dec.cur != dec.end ? SvPV_nolen (uni) : "(end of string)"); 1243 dec.cur != dec.end ? SvPV_nolen (uni) : "(end of string)");
887 } 1244 }
888 1245
889 sv = sv_2mortal (sv); 1246 sv = sv_2mortal (sv);
890 1247
891 if (!(dec.flags & F_ALLOW_NONREF) && !SvROK (sv)) 1248 if (!(dec.json.flags & F_ALLOW_NONREF) && !SvROK (sv))
892 croak ("JSON object or array expected (but number, string, true, false or null found, use allow_nonref to allow this)"); 1249 croak ("JSON text must be an object or array (but found number, string, true, false or null, use allow_nonref to allow this)");
893 1250
894 return sv; 1251 return sv;
895} 1252}
896 1253
1254/////////////////////////////////////////////////////////////////////////////
1255// XS interface functions
1256
897MODULE = JSON::XS PACKAGE = JSON::XS 1257MODULE = JSON::XS PACKAGE = JSON::XS
898 1258
899BOOT: 1259BOOT:
900{ 1260{
901 int i; 1261 int i;
902 1262
903 memset (decode_hexdigit, 0xff, 256);
904 for (i = 10; i--; ) 1263 for (i = 0; i < 256; ++i)
905 decode_hexdigit ['0' + i] = i; 1264 decode_hexdigit [i] =
1265 i >= '0' && i <= '9' ? i - '0'
1266 : i >= 'a' && i <= 'f' ? i - 'a' + 10
1267 : i >= 'A' && i <= 'F' ? i - 'A' + 10
1268 : -1;
906 1269
907 for (i = 7; i--; )
908 {
909 decode_hexdigit ['a' + i] = 10 + i;
910 decode_hexdigit ['A' + i] = 10 + i;
911 }
912
913 json_stash = gv_stashpv ("JSON::XS", 1); 1270 json_stash = gv_stashpv ("JSON::XS" , 1);
1271 json_boolean_stash = gv_stashpv ("JSON::XS::Boolean", 1);
1272
1273 json_true = get_sv ("JSON::XS::true" , 1); SvREADONLY_on (json_true );
1274 json_false = get_sv ("JSON::XS::false", 1); SvREADONLY_on (json_false);
914} 1275}
915 1276
916PROTOTYPES: DISABLE 1277PROTOTYPES: DISABLE
917 1278
918SV *new (char *dummy) 1279SV *new (char *dummy)
921 OUTPUT: 1282 OUTPUT:
922 RETVAL 1283 RETVAL
923 1284
924SV *ascii (SV *self, int enable = 1) 1285SV *ascii (SV *self, int enable = 1)
925 ALIAS: 1286 ALIAS:
926 ascii = F_ASCII 1287 ascii = F_ASCII
1288 latin1 = F_LATIN1
927 utf8 = F_UTF8 1289 utf8 = F_UTF8
928 indent = F_INDENT 1290 indent = F_INDENT
929 canonical = F_CANONICAL 1291 canonical = F_CANONICAL
930 space_before = F_SPACE_BEFORE 1292 space_before = F_SPACE_BEFORE
931 space_after = F_SPACE_AFTER 1293 space_after = F_SPACE_AFTER
932 json_rpc = F_JSON_RPC
933 pretty = F_PRETTY 1294 pretty = F_PRETTY
934 allow_nonref = F_ALLOW_NONREF 1295 allow_nonref = F_ALLOW_NONREF
935 shrink = F_SHRINK 1296 shrink = F_SHRINK
1297 allow_blessed = F_ALLOW_BLESSED
1298 convert_blessed = F_CONV_BLESSED
936 CODE: 1299 CODE:
937{ 1300{
938 UV *uv = SvJSON (self); 1301 UV *uv = SvJSON (self);
939 if (enable) 1302 if (enable)
940 *uv |= ix; 1303 *uv |= ix;
944 RETVAL = newSVsv (self); 1307 RETVAL = newSVsv (self);
945} 1308}
946 OUTPUT: 1309 OUTPUT:
947 RETVAL 1310 RETVAL
948 1311
1312SV *max_depth (SV *self, UV max_depth = 0x80000000UL)
1313 CODE:
1314{
1315 UV *uv = SvJSON (self);
1316 UV log2 = 0;
1317
1318 if (max_depth > 0x80000000UL) max_depth = 0x80000000UL;
1319
1320 while ((1UL << log2) < max_depth)
1321 ++log2;
1322
1323 *uv = *uv & ~F_MAXDEPTH | (log2 << S_MAXDEPTH);
1324
1325 RETVAL = newSVsv (self);
1326}
1327 OUTPUT:
1328 RETVAL
1329
1330SV *max_size (SV *self, UV max_size = 0)
1331 CODE:
1332{
1333 UV *uv = SvJSON (self);
1334 UV log2 = 0;
1335
1336 if (max_size > 0x80000000UL) max_size = 0x80000000UL;
1337 if (max_size == 1) max_size = 2;
1338
1339 while ((1UL << log2) < max_size)
1340 ++log2;
1341
1342 *uv = *uv & ~F_MAXSIZE | (log2 << S_MAXSIZE);
1343
1344 RETVAL = newSVsv (self);
1345}
1346 OUTPUT:
1347 RETVAL
1348
949void encode (SV *self, SV *scalar) 1349void encode (SV *self, SV *scalar)
950 PPCODE: 1350 PPCODE:
1351{
1352 struct json json = { *SvJSON (self) };
951 XPUSHs (encode_json (scalar, *SvJSON (self))); 1353 XPUSHs (encode_json (scalar, &json));
1354}
952 1355
953void decode (SV *self, SV *jsonstr) 1356void decode (SV *self, SV *jsonstr)
954 PPCODE: 1357 PPCODE:
1358{
1359 struct json json = { *SvJSON (self) };
955 XPUSHs (decode_json (jsonstr, *SvJSON (self))); 1360 XPUSHs (decode_json (jsonstr, &json, 0));
1361}
1362
1363void decode_prefix (SV *self, SV *jsonstr)
1364 PPCODE:
1365{
1366 UV offset;
1367 struct json json = { *SvJSON (self) };
1368 EXTEND (SP, 2);
1369 PUSHs (decode_json (jsonstr, &json, &offset));
1370 PUSHs (sv_2mortal (newSVuv (offset)));
1371}
956 1372
957PROTOTYPES: ENABLE 1373PROTOTYPES: ENABLE
958 1374
959void to_json (SV *scalar) 1375void to_json (SV *scalar)
960 PPCODE: 1376 PPCODE:
1377{
1378 struct json json = { F_DEFAULT | F_UTF8 };
961 XPUSHs (encode_json (scalar, F_UTF8)); 1379 XPUSHs (encode_json (scalar, &json));
1380}
962 1381
963void from_json (SV *jsonstr) 1382void from_json (SV *jsonstr)
964 PPCODE: 1383 PPCODE:
1384{
1385 struct json json = { F_DEFAULT | F_UTF8 };
965 XPUSHs (decode_json (jsonstr, F_UTF8)); 1386 XPUSHs (decode_json (jsonstr, &json, 0));
1387}
966 1388

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines