ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/cvsroot/CBOR-XS/XS.xs
(Generate patch)

Comparing cvsroot/CBOR-XS/XS.xs (file contents):
Revision 1.27 by root, Fri Nov 22 15:28:38 2013 UTC vs.
Revision 1.35 by root, Sat Nov 30 17:19:34 2013 UTC

19# define HvNAMELEN(hv) HvNAMELEN_get (hv) 19# define HvNAMELEN(hv) HvNAMELEN_get (hv)
20#endif 20#endif
21#ifndef HvNAMEUTF8 21#ifndef HvNAMEUTF8
22# define HvNAMEUTF8(hv) 0 22# define HvNAMEUTF8(hv) 0
23#endif 23#endif
24#ifndef SvREFCNT_dec_NN
25# define SvREFCNT_dec_NN(sv) SvREFCNT_dec (sv)
26#endif
27
28// known major and minor types
29enum cbor_type
30{
31 MAJOR_SHIFT = 5,
32 MINOR_MASK = 0x1f,
33
34 MAJOR_POS_INT = 0 << MAJOR_SHIFT,
35 MAJOR_NEG_INT = 1 << MAJOR_SHIFT,
36 MAJOR_BYTES = 2 << MAJOR_SHIFT,
37 MAJOR_TEXT = 3 << MAJOR_SHIFT,
38 MAJOR_ARRAY = 4 << MAJOR_SHIFT,
39 MAJOR_MAP = 5 << MAJOR_SHIFT,
40 MAJOR_TAG = 6 << MAJOR_SHIFT,
41 MAJOR_MISC = 7 << MAJOR_SHIFT,
42
43 // INT/STRING/ARRAY/MAP subtypes
44 LENGTH_EXT1 = 24,
45 LENGTH_EXT2 = 25,
46 LENGTH_EXT4 = 26,
47 LENGTH_EXT8 = 27,
48
49 // SIMPLE types (effectively MISC subtypes)
50 SIMPLE_FALSE = 20,
51 SIMPLE_TRUE = 21,
52 SIMPLE_NULL = 22,
53 SIMPLE_UNDEF = 23,
54
55 // MISC subtype (unused)
56 MISC_EXT1 = 24,
57 MISC_FLOAT16 = 25,
58 MISC_FLOAT32 = 26,
59 MISC_FLOAT64 = 27,
60
61 // BYTES/TEXT/ARRAY/MAP
62 MINOR_INDEF = 31,
63};
24 64
25// known tags 65// known tags
26enum cbor_tag 66enum cbor_tag
27{ 67{
28 // inofficial extensions (pending iana registration) 68 // extensions
69 CBOR_TAG_STRINGREF = 25, // http://cbor.schmorp.de/stringref
29 CBOR_TAG_PERL_OBJECT = 24, // http://cbor.schmorp.de/perl-object 70 CBOR_TAG_PERL_OBJECT = 26, // http://cbor.schmorp.de/perl-object
30 CBOR_TAG_GENERIC_OBJECT = 25, // http://cbor.schmorp.de/generic-object 71 CBOR_TAG_GENERIC_OBJECT = 27, // http://cbor.schmorp.de/generic-object
31 CBOR_TAG_VALUE_SHAREABLE = 26, // http://cbor.schmorp.de/value-sharing 72 CBOR_TAG_VALUE_SHAREABLE = 28, // http://cbor.schmorp.de/value-sharing
32 CBOR_TAG_VALUE_SHAREDREF = 27, // http://cbor.schmorp.de/value-sharing 73 CBOR_TAG_VALUE_SHAREDREF = 29, // http://cbor.schmorp.de/value-sharing
33 CBOR_TAG_STRINGREF_NAMESPACE = 65537, // http://cbor.schmorp.de/stringref 74 CBOR_TAG_STRINGREF_NAMESPACE = 256, // http://cbor.schmorp.de/stringref
34 CBOR_TAG_STRINGREF = 28, // http://cbor.schmorp.de/stringref
35 CBOR_TAG_INDIRECTION = 22098, // http://cbor.schmorp.de/indirection 75 CBOR_TAG_INDIRECTION = 22098, // http://cbor.schmorp.de/indirection
36 76
37 // rfc7049 77 // rfc7049
38 CBOR_TAG_DATETIME = 0, // rfc4287, utf-8 78 CBOR_TAG_DATETIME = 0, // rfc4287, utf-8
39 CBOR_TAG_TIMESTAMP = 1, // unix timestamp, any 79 CBOR_TAG_TIMESTAMP = 1, // unix timestamp, any
40 CBOR_TAG_POS_BIGNUM = 2, // byte string 80 CBOR_TAG_POS_BIGNUM = 2, // byte string
41 CBOR_TAG_NEG_BIGNUM = 3, // byte string 81 CBOR_TAG_NEG_BIGNUM = 3, // byte string
42 CBOR_TAG_DECIMAL = 4, // decimal fraction, array 82 CBOR_TAG_DECIMAL = 4, // decimal fraction, array
43 CBOR_TAG_BIGFLOAT = 5, // array 83 CBOR_TAG_BIGFLOAT = 5, // array
44 84
45 CBOR_TAG_CONV_B64U = 21, // base64url, any 85 CBOR_TAG_CONV_B64U = 21, // base64url, any
46 CBOR_TAG_CONV_B64 = 22, // base64, any 86 CBOR_TAG_CONV_B64 = 22, // base64, any
47 CBOR_TAG_CONV_HEX = 23, // base16, any 87 CBOR_TAG_CONV_HEX = 23, // base16, any
48 CBOR_TAG_CBOR = 24, // embedded cbor, byte string 88 CBOR_TAG_CBOR = 24, // embedded cbor, byte string
49 89
50 CBOR_TAG_URI = 32, // URI rfc3986, utf-8 90 CBOR_TAG_URI = 32, // URI rfc3986, utf-8
51 CBOR_TAG_B64U = 33, // base64url rfc4648, utf-8 91 CBOR_TAG_B64U = 33, // base64url rfc4648, utf-8
52 CBOR_TAG_B64 = 34, // base6 rfc46484, utf-8 92 CBOR_TAG_B64 = 34, // base6 rfc46484, utf-8
53 CBOR_TAG_REGEX = 35, // regex pcre/ecma262, utf-8 93 CBOR_TAG_REGEX = 35, // regex pcre/ecma262, utf-8
54 CBOR_TAG_MIME = 36, // mime message rfc2045, utf-8 94 CBOR_TAG_MIME = 36, // mime message rfc2045, utf-8
55 95
56 CBOR_TAG_MAGIC = 55799 // self-describe cbor 96 CBOR_TAG_MAGIC = 55799, // self-describe cbor
57}; 97};
58 98
59#define F_SHRINK 0x00000001UL 99#define F_SHRINK 0x00000001UL
60#define F_ALLOW_UNKNOWN 0x00000002UL 100#define F_ALLOW_UNKNOWN 0x00000002UL
61#define F_ALLOW_SHARING 0x00000004UL //TODO 101#define F_ALLOW_SHARING 0x00000004UL
62#define F_ALLOW_STRINGREF 0x00000008UL //TODO 102#define F_PACK_STRINGS 0x00000008UL
63 103
64#define INIT_SIZE 32 // initial scalar size to be allocated 104#define INIT_SIZE 32 // initial scalar size to be allocated
65 105
66#define SB do { 106#define SB do {
67#define SE } while (0) 107#define SE } while (0)
138{ 178{
139 return idx > 23 179 return idx > 23
140 ? idx > 0xffU 180 ? idx > 0xffU
141 ? idx > 0xffffU 181 ? idx > 0xffffU
142 ? idx > 0xffffffffU 182 ? idx > 0xffffffffU
183 ? 11
143 ? 7 184 : 7
144 : 6
145 : 5 185 : 5
146 : 4 186 : 4
147 : 3; 187 : 3;
148} 188}
149 189
186static void 226static void
187encode_uint (enc_t *enc, int major, UV len) 227encode_uint (enc_t *enc, int major, UV len)
188{ 228{
189 need (enc, 9); 229 need (enc, 9);
190 230
191 if (len < 24) 231 if (ecb_expect_true (len < LENGTH_EXT1))
192 *enc->cur++ = major | len; 232 *enc->cur++ = major | len;
193 else if (len <= 0xff) 233 else if (ecb_expect_true (len <= 0xff))
194 { 234 {
195 *enc->cur++ = major | 24; 235 *enc->cur++ = major | LENGTH_EXT1;
196 *enc->cur++ = len; 236 *enc->cur++ = len;
197 } 237 }
198 else if (len <= 0xffff) 238 else if (len <= 0xffff)
199 { 239 {
200 *enc->cur++ = major | 25; 240 *enc->cur++ = major | LENGTH_EXT2;
201 *enc->cur++ = len >> 8; 241 *enc->cur++ = len >> 8;
202 *enc->cur++ = len; 242 *enc->cur++ = len;
203 } 243 }
204 else if (len <= 0xffffffff) 244 else if (len <= 0xffffffff)
205 { 245 {
206 *enc->cur++ = major | 26; 246 *enc->cur++ = major | LENGTH_EXT4;
207 *enc->cur++ = len >> 24; 247 *enc->cur++ = len >> 24;
208 *enc->cur++ = len >> 16; 248 *enc->cur++ = len >> 16;
209 *enc->cur++ = len >> 8; 249 *enc->cur++ = len >> 8;
210 *enc->cur++ = len; 250 *enc->cur++ = len;
211 } 251 }
212 else 252 else
213 { 253 {
214 *enc->cur++ = major | 27; 254 *enc->cur++ = major | LENGTH_EXT8;
215 *enc->cur++ = len >> 56; 255 *enc->cur++ = len >> 56;
216 *enc->cur++ = len >> 48; 256 *enc->cur++ = len >> 48;
217 *enc->cur++ = len >> 40; 257 *enc->cur++ = len >> 40;
218 *enc->cur++ = len >> 32; 258 *enc->cur++ = len >> 32;
219 *enc->cur++ = len >> 24; 259 *enc->cur++ = len >> 24;
224} 264}
225 265
226ecb_inline void 266ecb_inline void
227encode_tag (enc_t *enc, UV tag) 267encode_tag (enc_t *enc, UV tag)
228{ 268{
229 encode_uint (enc, 0xc0, tag); 269 encode_uint (enc, MAJOR_TAG, tag);
270}
271
272ecb_inline void
273encode_str (enc_t *enc, int utf8, char *str, STRLEN len)
274{
275 encode_uint (enc, utf8 ? MAJOR_TEXT : MAJOR_BYTES, len);
276 need (enc, len);
277 memcpy (enc->cur, str, len);
278 enc->cur += len;
230} 279}
231 280
232static void 281static void
233encode_str (enc_t *enc, int utf8, char *str, STRLEN len) 282encode_strref (enc_t *enc, int utf8, char *str, STRLEN len)
234{ 283{
235 if (ecb_expect_false (enc->cbor.flags & F_ALLOW_STRINGREF)) 284 if (ecb_expect_false (enc->cbor.flags & F_PACK_STRINGS))
236 { 285 {
237 SV **svp = hv_fetch (enc->stringref[!!utf8], str, len, 1); 286 SV **svp = hv_fetch (enc->stringref[!!utf8], str, len, 1);
238 287
239 if (SvOK (*svp)) 288 if (SvOK (*svp))
240 { 289 {
241 // already registered, use stringref 290 // already registered, use stringref
242 encode_tag (enc, CBOR_TAG_STRINGREF); 291 encode_tag (enc, CBOR_TAG_STRINGREF);
243 encode_uint (enc, 0x00, SvUV (*svp)); 292 encode_uint (enc, MAJOR_POS_INT, SvUV (*svp));
244 return; 293 return;
245 } 294 }
246 else if (len >= minimum_string_length (enc->stringref_idx)) 295 else if (len >= minimum_string_length (enc->stringref_idx))
247 { 296 {
248 // register only 297 // register only
249 sv_setuv (*svp, enc->stringref_idx); 298 sv_setuv (*svp, enc->stringref_idx);
250 ++enc->stringref_idx; 299 ++enc->stringref_idx;
251 } 300 }
252 } 301 }
253 302
254 encode_uint (enc, utf8 ? 0x60 : 0x40, len); 303 encode_str (enc, utf8, str, len);
255 need (enc, len);
256 memcpy (enc->cur, str, len);
257 enc->cur += len;
258} 304}
259 305
260static void encode_sv (enc_t *enc, SV *sv); 306static void encode_sv (enc_t *enc, SV *sv);
261 307
262static void 308static void
267 if (enc->depth >= enc->cbor.max_depth) 313 if (enc->depth >= enc->cbor.max_depth)
268 croak (ERR_NESTING_EXCEEDED); 314 croak (ERR_NESTING_EXCEEDED);
269 315
270 ++enc->depth; 316 ++enc->depth;
271 317
272 encode_uint (enc, 0x80, len + 1); 318 encode_uint (enc, MAJOR_ARRAY, len + 1);
273 319
274 for (i = 0; i <= len; ++i) 320 for (i = 0; i <= len; ++i)
275 { 321 {
276 SV **svp = av_fetch (av, i, 0); 322 SV **svp = av_fetch (av, i, 0);
277 encode_sv (enc, svp ? *svp : &PL_sv_undef); 323 encode_sv (enc, svp ? *svp : &PL_sv_undef);
292 338
293 int pairs = hv_iterinit (hv); 339 int pairs = hv_iterinit (hv);
294 int mg = SvMAGICAL (hv); 340 int mg = SvMAGICAL (hv);
295 341
296 if (mg) 342 if (mg)
297 encode_ch (enc, 0xa0 | 31); 343 encode_ch (enc, MAJOR_MAP | MINOR_INDEF);
298 else 344 else
299 encode_uint (enc, 0xa0, pairs); 345 encode_uint (enc, MAJOR_MAP, pairs);
300 346
301 while ((he = hv_iternext (hv))) 347 while ((he = hv_iternext (hv)))
302 { 348 {
303 if (HeKLEN (he) == HEf_SVKEY) 349 if (HeKLEN (he) == HEf_SVKEY)
304 encode_sv (enc, HeSVKEY (he)); 350 encode_sv (enc, HeSVKEY (he));
305 else 351 else
306 encode_str (enc, HeKUTF8 (he), HeKEY (he), HeKLEN (he)); 352 encode_strref (enc, HeKUTF8 (he), HeKEY (he), HeKLEN (he));
307 353
308 encode_sv (enc, ecb_expect_false (mg) ? hv_iterval (hv, he) : HeVAL (he)); 354 encode_sv (enc, ecb_expect_false (mg) ? hv_iterval (hv, he) : HeVAL (he));
309 } 355 }
310 356
311 if (mg) 357 if (mg)
312 encode_ch (enc, 0xe0 | 31); 358 encode_ch (enc, MAJOR_MISC | MINOR_INDEF);
313 359
314 --enc->depth; 360 --enc->depth;
315} 361}
316 362
317// encode objects, arrays and special \0=false and \1=true values. 363// encode objects, arrays and special \0=false and \1=true values.
318static void 364static void
319encode_rv (enc_t *enc, SV *sv) 365encode_rv (enc_t *enc, SV *sv)
320{ 366{
321 SvGETMAGIC (sv); 367 SvGETMAGIC (sv);
322
323 if (ecb_expect_false (enc->cbor.flags & F_ALLOW_SHARING)
324 && ecb_expect_false (SvREFCNT (sv) > 1))
325 {
326 if (!enc->shareable)
327 enc->shareable = (HV *)sv_2mortal ((SV *)newHV ());
328
329 SV **svp = hv_fetch (enc->shareable, (char *)&sv, sizeof (sv), 1);
330
331 if (SvOK (*svp))
332 {
333 encode_tag (enc, CBOR_TAG_VALUE_SHAREDREF);
334 encode_uint (enc, 0x00, SvUV (*svp));
335 return;
336 }
337 else
338 {
339 sv_setuv (*svp, enc->shareable_idx);
340 ++enc->shareable_idx;
341 encode_tag (enc, CBOR_TAG_VALUE_SHAREABLE);
342 }
343 }
344 368
345 svtype svt = SvTYPE (sv); 369 svtype svt = SvTYPE (sv);
346 370
347 if (ecb_expect_false (SvOBJECT (sv))) 371 if (ecb_expect_false (SvOBJECT (sv)))
348 { 372 {
355 HV *tagged_stash = !CBOR_SLOW || cbor_tagged_stash 379 HV *tagged_stash = !CBOR_SLOW || cbor_tagged_stash
356 ? cbor_tagged_stash 380 ? cbor_tagged_stash
357 : gv_stashpv ("CBOR::XS::Tagged" , 1); 381 : gv_stashpv ("CBOR::XS::Tagged" , 1);
358 382
359 HV *stash = SvSTASH (sv); 383 HV *stash = SvSTASH (sv);
360 GV *method;
361 384
362 if (stash == boolean_stash) 385 if (stash == boolean_stash)
363 encode_ch (enc, SvIV (sv) ? 0xe0 | 21 : 0xe0 | 20); 386 {
387 encode_ch (enc, SvIV (sv) ? MAJOR_MISC | SIMPLE_TRUE : MAJOR_MISC | SIMPLE_FALSE);
388 return;
389 }
364 else if (stash == error_stash) 390 else if (stash == error_stash)
365 encode_ch (enc, 0xe0 | 23); 391 {
392 encode_ch (enc, MAJOR_MISC | SIMPLE_UNDEF);
393 return;
394 }
366 else if (stash == tagged_stash) 395 else if (stash == tagged_stash)
367 { 396 {
368 if (svt != SVt_PVAV) 397 if (svt != SVt_PVAV)
369 croak ("encountered CBOR::XS::Tagged object that isn't an array"); 398 croak ("encountered CBOR::XS::Tagged object that isn't an array");
370 399
371 encode_uint (enc, 0xc0, SvUV (*av_fetch ((AV *)sv, 0, 1))); 400 encode_uint (enc, MAJOR_TAG, SvUV (*av_fetch ((AV *)sv, 0, 1)));
372 encode_sv (enc, *av_fetch ((AV *)sv, 1, 1)); 401 encode_sv (enc, *av_fetch ((AV *)sv, 1, 1));
402
403 return;
404 }
405 }
406
407 if (ecb_expect_false (SvREFCNT (sv) > 1)
408 && ecb_expect_false (enc->cbor.flags & F_ALLOW_SHARING))
409 {
410 if (!enc->shareable)
411 enc->shareable = (HV *)sv_2mortal ((SV *)newHV ());
412
413 SV **svp = hv_fetch (enc->shareable, (char *)&sv, sizeof (sv), 1);
414
415 if (SvOK (*svp))
373 } 416 {
417 encode_tag (enc, CBOR_TAG_VALUE_SHAREDREF);
418 encode_uint (enc, MAJOR_POS_INT, SvUV (*svp));
419 return;
420 }
421 else
422 {
423 sv_setuv (*svp, enc->shareable_idx);
424 ++enc->shareable_idx;
425 encode_tag (enc, CBOR_TAG_VALUE_SHAREABLE);
426 }
427 }
428
429 if (ecb_expect_false (SvOBJECT (sv)))
430 {
431 HV *stash = SvSTASH (sv);
432 GV *method;
433
374 else if ((method = gv_fetchmethod_autoload (stash, "TO_CBOR", 0))) 434 if ((method = gv_fetchmethod_autoload (stash, "TO_CBOR", 0)))
375 { 435 {
376 dSP; 436 dSP;
377 437
378 ENTER; SAVETMPS; PUSHMARK (SP); 438 ENTER; SAVETMPS; PUSHMARK (SP);
379 // we re-bless the reference to get overload and other niceties right 439 // we re-bless the reference to get overload and other niceties right
411 // catch this surprisingly common error 471 // catch this surprisingly common error
412 if (count == 1 && SvROK (TOPs) && SvRV (TOPs) == sv) 472 if (count == 1 && SvROK (TOPs) && SvRV (TOPs) == sv)
413 croak ("%s::FREEZE(CBOR) method returned same object as was passed instead of a new one", HvNAME (stash)); 473 croak ("%s::FREEZE(CBOR) method returned same object as was passed instead of a new one", HvNAME (stash));
414 474
415 encode_tag (enc, CBOR_TAG_PERL_OBJECT); 475 encode_tag (enc, CBOR_TAG_PERL_OBJECT);
416 encode_uint (enc, 0x80, count + 1); 476 encode_uint (enc, MAJOR_ARRAY, count + 1);
417 encode_str (enc, HvNAMEUTF8 (stash), HvNAME (stash), HvNAMELEN (stash)); 477 encode_strref (enc, HvNAMEUTF8 (stash), HvNAME (stash), HvNAMELEN (stash));
418 478
419 while (count) 479 while (count)
420 encode_sv (enc, SP[1 - count--]); 480 encode_sv (enc, SP[1 - count--]);
421 481
422 PUTBACK; 482 PUTBACK;
443{ 503{
444 double nv = SvNVX (sv); 504 double nv = SvNVX (sv);
445 505
446 need (enc, 9); 506 need (enc, 9);
447 507
448 if (ecb_expect_false (nv == (U32)nv)) 508 if (ecb_expect_false (nv == (NV)(U32)nv))
449 encode_uint (enc, 0x00, (U32)nv); 509 encode_uint (enc, MAJOR_POS_INT, (U32)nv);
450 //TODO: maybe I32? 510 //TODO: maybe I32?
451 else if (ecb_expect_false (nv == (float)nv)) 511 else if (ecb_expect_false (nv == (float)nv))
452 { 512 {
453 uint32_t fp = ecb_float_to_binary32 (nv); 513 uint32_t fp = ecb_float_to_binary32 (nv);
454 514
455 *enc->cur++ = 0xe0 | 26; 515 *enc->cur++ = MAJOR_MISC | MISC_FLOAT32;
456 516
457 if (!ecb_big_endian ()) 517 if (!ecb_big_endian ())
458 fp = ecb_bswap32 (fp); 518 fp = ecb_bswap32 (fp);
459 519
460 memcpy (enc->cur, &fp, 4); 520 memcpy (enc->cur, &fp, 4);
462 } 522 }
463 else 523 else
464 { 524 {
465 uint64_t fp = ecb_double_to_binary64 (nv); 525 uint64_t fp = ecb_double_to_binary64 (nv);
466 526
467 *enc->cur++ = 0xe0 | 27; 527 *enc->cur++ = MAJOR_MISC | MISC_FLOAT64;
468 528
469 if (!ecb_big_endian ()) 529 if (!ecb_big_endian ())
470 fp = ecb_bswap64 (fp); 530 fp = ecb_bswap64 (fp);
471 531
472 memcpy (enc->cur, &fp, 8); 532 memcpy (enc->cur, &fp, 8);
481 541
482 if (SvPOKp (sv)) 542 if (SvPOKp (sv))
483 { 543 {
484 STRLEN len; 544 STRLEN len;
485 char *str = SvPV (sv, len); 545 char *str = SvPV (sv, len);
486 encode_str (enc, SvUTF8 (sv), str, len); 546 encode_strref (enc, SvUTF8 (sv), str, len);
487 } 547 }
488 else if (SvNOKp (sv)) 548 else if (SvNOKp (sv))
489 encode_nv (enc, sv); 549 encode_nv (enc, sv);
490 else if (SvIOKp (sv)) 550 else if (SvIOKp (sv))
491 { 551 {
492 if (SvIsUV (sv)) 552 if (SvIsUV (sv))
493 encode_uint (enc, 0x00, SvUVX (sv)); 553 encode_uint (enc, MAJOR_POS_INT, SvUVX (sv));
494 else if (SvIVX (sv) >= 0) 554 else if (SvIVX (sv) >= 0)
495 encode_uint (enc, 0x00, SvIVX (sv)); 555 encode_uint (enc, MAJOR_POS_INT, SvIVX (sv));
496 else 556 else
497 encode_uint (enc, 0x20, -(SvIVX (sv) + 1)); 557 encode_uint (enc, MAJOR_NEG_INT, -(SvIVX (sv) + 1));
498 } 558 }
499 else if (SvROK (sv)) 559 else if (SvROK (sv))
500 encode_rv (enc, SvRV (sv)); 560 encode_rv (enc, SvRV (sv));
501 else if (!SvOK (sv)) 561 else if (!SvOK (sv))
502 encode_ch (enc, 0xe0 | 22); 562 encode_ch (enc, MAJOR_MISC | SIMPLE_NULL);
503 else if (enc->cbor.flags & F_ALLOW_UNKNOWN) 563 else if (enc->cbor.flags & F_ALLOW_UNKNOWN)
504 encode_ch (enc, 0xe0 | 23); 564 encode_ch (enc, MAJOR_MISC | SIMPLE_UNDEF);
505 else 565 else
506 croak ("encountered perl type (%s,0x%x) that CBOR cannot handle, check your input data", 566 croak ("encountered perl type (%s,0x%x) that CBOR cannot handle, check your input data",
507 SvPV_nolen (sv), (unsigned int)SvFLAGS (sv)); 567 SvPV_nolen (sv), (unsigned int)SvFLAGS (sv));
508} 568}
509 569
517 enc.cur = SvPVX (enc.sv); 577 enc.cur = SvPVX (enc.sv);
518 enc.end = SvEND (enc.sv); 578 enc.end = SvEND (enc.sv);
519 579
520 SvPOK_only (enc.sv); 580 SvPOK_only (enc.sv);
521 581
522 if (cbor->flags & F_ALLOW_STRINGREF) 582 if (cbor->flags & F_PACK_STRINGS)
523 { 583 {
524 encode_tag (&enc, CBOR_TAG_STRINGREF_NAMESPACE); 584 encode_tag (&enc, CBOR_TAG_STRINGREF_NAMESPACE);
525 enc.stringref[0]= (HV *)sv_2mortal ((SV *)newHV ()); 585 enc.stringref[0]= (HV *)sv_2mortal ((SV *)newHV ());
526 enc.stringref[1]= (HV *)sv_2mortal ((SV *)newHV ()); 586 enc.stringref[1]= (HV *)sv_2mortal ((SV *)newHV ());
527 } 587 }
562#define DEC_DEC_DEPTH --dec->depth 622#define DEC_DEC_DEPTH --dec->depth
563 623
564static UV 624static UV
565decode_uint (dec_t *dec) 625decode_uint (dec_t *dec)
566{ 626{
567 switch (*dec->cur & 31) 627 U8 m = *dec->cur & MINOR_MASK;
628 ++dec->cur;
629
630 if (ecb_expect_true (m < LENGTH_EXT1))
631 return m;
632
633 switch (m)
568 { 634 {
569 case 0: case 1: case 2: case 3: case 4: case 5: case 6: case 7: 635 case LENGTH_EXT1:
570 case 8: case 9: case 10: case 11: case 12: case 13: case 14: case 15: 636 WANT (1);
571 case 16: case 17: case 18: case 19: case 20: case 21: case 22: case 23: 637 dec->cur += 1;
572 return *dec->cur++ & 31; 638 return dec->cur[-1];
573 639
574 case 24: 640 case LENGTH_EXT2:
575 WANT (2); 641 WANT (2);
576 dec->cur += 2; 642 dec->cur += 2;
577 return dec->cur[-1];
578
579 case 25:
580 WANT (3);
581 dec->cur += 3;
582 return (((UV)dec->cur[-2]) << 8) 643 return (((UV)dec->cur[-2]) << 8)
583 | ((UV)dec->cur[-1]); 644 | ((UV)dec->cur[-1]);
584 645
585 case 26: 646 case LENGTH_EXT4:
586 WANT (5); 647 WANT (4);
587 dec->cur += 5; 648 dec->cur += 4;
588 return (((UV)dec->cur[-4]) << 24) 649 return (((UV)dec->cur[-4]) << 24)
589 | (((UV)dec->cur[-3]) << 16) 650 | (((UV)dec->cur[-3]) << 16)
590 | (((UV)dec->cur[-2]) << 8) 651 | (((UV)dec->cur[-2]) << 8)
591 | ((UV)dec->cur[-1]); 652 | ((UV)dec->cur[-1]);
592 653
593 case 27: 654 case LENGTH_EXT8:
594 WANT (9); 655 WANT (8);
595 dec->cur += 9; 656 dec->cur += 8;
657
658 return
659#if UVSIZE < 8
660 0
661#else
596 return (((UV)dec->cur[-8]) << 56) 662 (((UV)dec->cur[-8]) << 56)
597 | (((UV)dec->cur[-7]) << 48) 663 | (((UV)dec->cur[-7]) << 48)
598 | (((UV)dec->cur[-6]) << 40) 664 | (((UV)dec->cur[-6]) << 40)
599 | (((UV)dec->cur[-5]) << 32) 665 | (((UV)dec->cur[-5]) << 32)
666#endif
600 | (((UV)dec->cur[-4]) << 24) 667 | (((UV)dec->cur[-4]) << 24)
601 | (((UV)dec->cur[-3]) << 16) 668 | (((UV)dec->cur[-3]) << 16)
602 | (((UV)dec->cur[-2]) << 8) 669 | (((UV)dec->cur[-2]) << 8)
603 | ((UV)dec->cur[-1]); 670 | ((UV)dec->cur[-1]);
604 671
617{ 684{
618 AV *av = newAV (); 685 AV *av = newAV ();
619 686
620 DEC_INC_DEPTH; 687 DEC_INC_DEPTH;
621 688
622 if ((*dec->cur & 31) == 31) 689 if (*dec->cur == (MAJOR_ARRAY | MINOR_INDEF))
623 { 690 {
624 ++dec->cur; 691 ++dec->cur;
625 692
626 for (;;) 693 for (;;)
627 { 694 {
628 WANT (1); 695 WANT (1);
629 696
630 if (*dec->cur == (0xe0 | 31)) 697 if (*dec->cur == (MAJOR_MISC | MINOR_INDEF))
631 { 698 {
632 ++dec->cur; 699 ++dec->cur;
633 break; 700 break;
634 } 701 }
635 702
660{ 727{
661 // for speed reasons, we specialcase single-string 728 // for speed reasons, we specialcase single-string
662 // byte or utf-8 strings as keys, but only when !stringref 729 // byte or utf-8 strings as keys, but only when !stringref
663 730
664 if (ecb_expect_true (!dec->stringref)) 731 if (ecb_expect_true (!dec->stringref))
665 if (*dec->cur >= 0x40 && *dec->cur <= 0x40 + 27) 732 if ((*dec->cur - MAJOR_BYTES) <= 27)
666 { 733 {
667 I32 len = decode_uint (dec); 734 I32 len = decode_uint (dec);
668 char *key = (char *)dec->cur; 735 char *key = (char *)dec->cur;
669 736
670 dec->cur += len; 737 dec->cur += len;
674 741
675 hv_store (hv, key, len, decode_sv (dec), 0); 742 hv_store (hv, key, len, decode_sv (dec), 0);
676 743
677 return; 744 return;
678 } 745 }
679 else if (*dec->cur >= 0x60 && *dec->cur <= 0x60 + 27) 746 else if ((*dec->cur - MAJOR_TEXT) <= 27)
680 { 747 {
681 I32 len = decode_uint (dec); 748 I32 len = decode_uint (dec);
682 char *key = (char *)dec->cur; 749 char *key = (char *)dec->cur;
683 750
684 dec->cur += len; 751 dec->cur += len;
703{ 770{
704 HV *hv = newHV (); 771 HV *hv = newHV ();
705 772
706 DEC_INC_DEPTH; 773 DEC_INC_DEPTH;
707 774
708 if ((*dec->cur & 31) == 31) 775 if (*dec->cur == (MAJOR_MAP | MINOR_INDEF))
709 { 776 {
710 ++dec->cur; 777 ++dec->cur;
711 778
712 for (;;) 779 for (;;)
713 { 780 {
714 WANT (1); 781 WANT (1);
715 782
716 if (*dec->cur == (0xe0 | 31)) 783 if (*dec->cur == (MAJOR_MISC | MINOR_INDEF))
717 { 784 {
718 ++dec->cur; 785 ++dec->cur;
719 break; 786 break;
720 } 787 }
721 788
742static SV * 809static SV *
743decode_str (dec_t *dec, int utf8) 810decode_str (dec_t *dec, int utf8)
744{ 811{
745 SV *sv = 0; 812 SV *sv = 0;
746 813
747 if ((*dec->cur & 31) == 31) 814 if ((*dec->cur & MINOR_MASK) == MINOR_INDEF)
748 { 815 {
816 // indefinite length strings
749 ++dec->cur; 817 ++dec->cur;
750 818
819 U8 major = *dec->cur & MAJOR_MISC;
820
751 sv = newSVpvn ("", 0); 821 sv = newSVpvn ("", 0);
752 822
753 // not very fast, and certainly not robust against illegal input
754 for (;;) 823 for (;;)
755 { 824 {
756 WANT (1); 825 WANT (1);
757 826
758 if (*dec->cur == (0xe0 | 31)) 827 if ((*dec->cur - major) > LENGTH_EXT8)
828 if (*dec->cur == (MAJOR_MISC | MINOR_INDEF))
759 { 829 {
760 ++dec->cur; 830 ++dec->cur;
761 break; 831 break;
762 } 832 }
833 else
834 ERR ("corrupted CBOR data (invalid chunks in indefinite length string)");
763 835
764 sv_catsv (sv, decode_sv (dec)); 836 STRLEN len = decode_uint (dec);
837
838 WANT (len);
839 sv_catpvn (sv, dec->cur, len);
840 dec->cur += len;
765 } 841 }
766 } 842 }
767 else 843 else
768 { 844 {
769 STRLEN len = decode_uint (dec); 845 STRLEN len = decode_uint (dec);
818 } 894 }
819 break; 895 break;
820 896
821 case CBOR_TAG_STRINGREF: 897 case CBOR_TAG_STRINGREF:
822 { 898 {
823 if ((*dec->cur >> 5) != 0) 899 if ((*dec->cur >> MAJOR_SHIFT) != (MAJOR_POS_INT >> MAJOR_SHIFT))
824 ERR ("corrupted CBOR data (stringref index not an unsigned integer)"); 900 ERR ("corrupted CBOR data (stringref index not an unsigned integer)");
825 901
826 UV idx = decode_uint (dec); 902 UV idx = decode_uint (dec);
827 903
828 if (!dec->stringref || (int)idx > AvFILLp (dec->stringref)) 904 if (!dec->stringref || (int)idx > AvFILLp (dec->stringref))
846 } 922 }
847 break; 923 break;
848 924
849 case CBOR_TAG_VALUE_SHAREDREF: 925 case CBOR_TAG_VALUE_SHAREDREF:
850 { 926 {
851 if ((*dec->cur >> 5) != 0) 927 if ((*dec->cur >> MAJOR_SHIFT) != (MAJOR_POS_INT >> MAJOR_SHIFT))
852 ERR ("corrupted CBOR data (sharedref index not an unsigned integer)"); 928 ERR ("corrupted CBOR data (sharedref index not an unsigned integer)");
853 929
854 UV idx = decode_uint (dec); 930 UV idx = decode_uint (dec);
855 931
856 if (!dec->shareable || (int)idx > AvFILLp (dec->shareable)) 932 if (!dec->shareable || (int)idx > AvFILLp (dec->shareable))
965static SV * 1041static SV *
966decode_sv (dec_t *dec) 1042decode_sv (dec_t *dec)
967{ 1043{
968 WANT (1); 1044 WANT (1);
969 1045
970 switch (*dec->cur >> 5) 1046 switch (*dec->cur >> MAJOR_SHIFT)
971 { 1047 {
972 case 0: // unsigned int 1048 case MAJOR_POS_INT >> MAJOR_SHIFT: return newSVuv (decode_uint (dec));
973 return newSVuv (decode_uint (dec)); 1049 case MAJOR_NEG_INT >> MAJOR_SHIFT: return newSViv (-1 - (IV)decode_uint (dec));
974 case 1: // negative int 1050 case MAJOR_BYTES >> MAJOR_SHIFT: return decode_str (dec, 0);
975 return newSViv (-1 - (IV)decode_uint (dec)); 1051 case MAJOR_TEXT >> MAJOR_SHIFT: return decode_str (dec, 1);
976 case 2: // octet string 1052 case MAJOR_ARRAY >> MAJOR_SHIFT: return decode_av (dec);
977 return decode_str (dec, 0); 1053 case MAJOR_MAP >> MAJOR_SHIFT: return decode_hv (dec);
978 case 3: // utf-8 string 1054 case MAJOR_TAG >> MAJOR_SHIFT: return decode_tagged (dec);
979 return decode_str (dec, 1); 1055
980 case 4: // array 1056 case MAJOR_MISC >> MAJOR_SHIFT:
981 return decode_av (dec);
982 case 5: // map
983 return decode_hv (dec);
984 case 6: // tag
985 return decode_tagged (dec);
986 case 7: // misc
987 switch (*dec->cur++ & 31) 1057 switch (*dec->cur++ & MINOR_MASK)
988 { 1058 {
989 case 20: 1059 case SIMPLE_FALSE:
990#if CBOR_SLOW 1060#if CBOR_SLOW
991 types_false = get_bool ("Types::Serialiser::false"); 1061 types_false = get_bool ("Types::Serialiser::false");
992#endif 1062#endif
993 return newSVsv (types_false); 1063 return newSVsv (types_false);
994 case 21: 1064 case SIMPLE_TRUE:
995#if CBOR_SLOW 1065#if CBOR_SLOW
996 types_true = get_bool ("Types::Serialiser::true"); 1066 types_true = get_bool ("Types::Serialiser::true");
997#endif 1067#endif
998 return newSVsv (types_true); 1068 return newSVsv (types_true);
999 case 22: 1069 case SIMPLE_NULL:
1000 return newSVsv (&PL_sv_undef); 1070 return newSVsv (&PL_sv_undef);
1001 case 23: 1071 case SIMPLE_UNDEF:
1002#if CBOR_SLOW 1072#if CBOR_SLOW
1003 types_error = get_bool ("Types::Serialiser::error"); 1073 types_error = get_bool ("Types::Serialiser::error");
1004#endif 1074#endif
1005 return newSVsv (types_error); 1075 return newSVsv (types_error);
1006 1076
1007 case 25: 1077 case MISC_FLOAT16:
1008 { 1078 {
1009 WANT (2); 1079 WANT (2);
1010 1080
1011 uint16_t fp = (dec->cur[0] << 8) | dec->cur[1]; 1081 uint16_t fp = (dec->cur[0] << 8) | dec->cur[1];
1012 dec->cur += 2; 1082 dec->cur += 2;
1013 1083
1014 return newSVnv (ecb_binary16_to_float (fp)); 1084 return newSVnv (ecb_binary16_to_float (fp));
1015 } 1085 }
1016 1086
1017 case 26: 1087 case MISC_FLOAT32:
1018 { 1088 {
1019 uint32_t fp; 1089 uint32_t fp;
1020 WANT (4); 1090 WANT (4);
1021 memcpy (&fp, dec->cur, 4); 1091 memcpy (&fp, dec->cur, 4);
1022 dec->cur += 4; 1092 dec->cur += 4;
1025 fp = ecb_bswap32 (fp); 1095 fp = ecb_bswap32 (fp);
1026 1096
1027 return newSVnv (ecb_binary32_to_float (fp)); 1097 return newSVnv (ecb_binary32_to_float (fp));
1028 } 1098 }
1029 1099
1030 case 27: 1100 case MISC_FLOAT64:
1031 { 1101 {
1032 uint64_t fp; 1102 uint64_t fp;
1033 WANT (8); 1103 WANT (8);
1034 memcpy (&fp, dec->cur, 8); 1104 memcpy (&fp, dec->cur, 8);
1035 dec->cur += 8; 1105 dec->cur += 8;
1038 fp = ecb_bswap64 (fp); 1108 fp = ecb_bswap64 (fp);
1039 1109
1040 return newSVnv (ecb_binary64_to_double (fp)); 1110 return newSVnv (ecb_binary64_to_double (fp));
1041 } 1111 }
1042 1112
1043 // 0..19 unassigned 1113 // 0..19 unassigned simple
1044 // 24 reserved + unassigned (reserved values are not encodable) 1114 // 24 reserved + unassigned (reserved values are not encodable)
1045 default: 1115 default:
1046 ERR ("corrupted CBOR data (reserved/unassigned major 7 value)"); 1116 ERR ("corrupted CBOR data (reserved/unassigned major 7 value)");
1047 } 1117 }
1048 1118
1136void shrink (CBOR *self, int enable = 1) 1206void shrink (CBOR *self, int enable = 1)
1137 ALIAS: 1207 ALIAS:
1138 shrink = F_SHRINK 1208 shrink = F_SHRINK
1139 allow_unknown = F_ALLOW_UNKNOWN 1209 allow_unknown = F_ALLOW_UNKNOWN
1140 allow_sharing = F_ALLOW_SHARING 1210 allow_sharing = F_ALLOW_SHARING
1141 allow_stringref = F_ALLOW_STRINGREF 1211 pack_strings = F_PACK_STRINGS
1142 PPCODE: 1212 PPCODE:
1143{ 1213{
1144 if (enable) 1214 if (enable)
1145 self->flags |= ix; 1215 self->flags |= ix;
1146 else 1216 else
1152void get_shrink (CBOR *self) 1222void get_shrink (CBOR *self)
1153 ALIAS: 1223 ALIAS:
1154 get_shrink = F_SHRINK 1224 get_shrink = F_SHRINK
1155 get_allow_unknown = F_ALLOW_UNKNOWN 1225 get_allow_unknown = F_ALLOW_UNKNOWN
1156 get_allow_sharing = F_ALLOW_SHARING 1226 get_allow_sharing = F_ALLOW_SHARING
1157 get_allow_stringref = F_ALLOW_STRINGREF 1227 get_pack_strings = F_PACK_STRINGS
1158 PPCODE: 1228 PPCODE:
1159 XPUSHs (boolSV (self->flags & ix)); 1229 XPUSHs (boolSV (self->flags & ix));
1160 1230
1161void max_depth (CBOR *self, U32 max_depth = 0x80000000UL) 1231void max_depth (CBOR *self, U32 max_depth = 0x80000000UL)
1162 PPCODE: 1232 PPCODE:

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines