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

Comparing CBOR-XS/XS.xs (file contents):
Revision 1.45 by root, Sun Dec 14 05:48:39 2014 UTC vs.
Revision 1.53 by root, Sun Apr 24 19:51:41 2016 UTC

100#define F_SHRINK 0x00000001UL 100#define F_SHRINK 0x00000001UL
101#define F_ALLOW_UNKNOWN 0x00000002UL 101#define F_ALLOW_UNKNOWN 0x00000002UL
102#define F_ALLOW_SHARING 0x00000004UL 102#define F_ALLOW_SHARING 0x00000004UL
103#define F_ALLOW_CYCLES 0x00000008UL 103#define F_ALLOW_CYCLES 0x00000008UL
104#define F_PACK_STRINGS 0x00000010UL 104#define F_PACK_STRINGS 0x00000010UL
105#define F_UTF8_STRINGS 0x00000020UL
106#define F_UTF8_KEYS 0x00000040UL
105#define F_VALIDATE_UTF8 0x00000020UL 107#define F_VALIDATE_UTF8 0x00000080UL
106 108
107#define INIT_SIZE 32 // initial scalar size to be allocated 109#define INIT_SIZE 32 // initial scalar size to be allocated
108 110
109#define SB do { 111#define SB do {
110#define SE } while (0) 112#define SE } while (0)
276encode_tag (enc_t *enc, UV tag) 278encode_tag (enc_t *enc, UV tag)
277{ 279{
278 encode_uint (enc, MAJOR_TAG, tag); 280 encode_uint (enc, MAJOR_TAG, tag);
279} 281}
280 282
283// exceptional (hopefully) slow path for byte strings that need to be utf8-encoded
284ecb_noinline static void
285encode_str_utf8 (enc_t *enc, int utf8, char *str, STRLEN len)
286{
287 STRLEN ulen = len;
288 U8 *p, *pend = (U8 *)str + len;
289
290 for (p = (U8 *)str; p < pend; ++p)
291 ulen += *p >> 7; // count set high bits
292
293 encode_uint (enc, MAJOR_TEXT, ulen);
294
295 need (enc, ulen);
296 for (p = (U8 *)str; p < pend; ++p)
297 if (*p < 0x80)
298 *enc->cur++ = *p;
299 else
300 {
301 *enc->cur++ = 0xc0 + (*p >> 6);
302 *enc->cur++ = 0x80 + (*p & 63);
303 }
304}
305
281ecb_inline void 306ecb_inline void
282encode_str (enc_t *enc, int utf8, char *str, STRLEN len) 307encode_str (enc_t *enc, int upgrade_utf8, int utf8, char *str, STRLEN len)
283{ 308{
309 if (ecb_expect_false (upgrade_utf8))
310 if (!utf8)
311 {
312 encode_str_utf8 (enc, utf8, str, len);
313 return;
314 }
315
284 encode_uint (enc, utf8 ? MAJOR_TEXT : MAJOR_BYTES, len); 316 encode_uint (enc, utf8 ? MAJOR_TEXT : MAJOR_BYTES, len);
285 need (enc, len); 317 need (enc, len);
286 memcpy (enc->cur, str, len); 318 memcpy (enc->cur, str, len);
287 enc->cur += len; 319 enc->cur += len;
288} 320}
289 321
290static void 322ecb_inline
291encode_strref (enc_t *enc, int utf8, char *str, STRLEN len) 323encode_strref (enc_t *enc, int upgrade_utf8, int utf8, char *str, STRLEN len)
292{ 324{
293 if (ecb_expect_false (enc->cbor.flags & F_PACK_STRINGS)) 325 if (ecb_expect_false (enc->cbor.flags & F_PACK_STRINGS))
294 { 326 {
295 SV **svp = hv_fetch (enc->stringref[!!utf8], str, len, 1); 327 SV **svp = hv_fetch (enc->stringref[!!utf8], str, len, 1);
296 328
307 sv_setuv (*svp, enc->stringref_idx); 339 sv_setuv (*svp, enc->stringref_idx);
308 ++enc->stringref_idx; 340 ++enc->stringref_idx;
309 } 341 }
310 } 342 }
311 343
312 encode_str (enc, utf8, str, len); 344 encode_str (enc, upgrade_utf8, utf8, str, len);
313} 345}
314 346
315static void encode_sv (enc_t *enc, SV *sv); 347static void encode_sv (enc_t *enc, SV *sv);
316 348
317static void 349static void
332 SV **svp = av_fetch (av, i, 0); 364 SV **svp = av_fetch (av, i, 0);
333 encode_sv (enc, svp ? *svp : &PL_sv_undef); 365 encode_sv (enc, svp ? *svp : &PL_sv_undef);
334 } 366 }
335 else 367 else
336 for (i = 0; i <= len; ++i) 368 for (i = 0; i <= len; ++i)
337 encode_sv (enc, AvARRAY (av)[i]); 369 {
370 SV *sv = AvARRAY (av)[i];
371 encode_sv (enc, sv ? sv : &PL_sv_undef);
372 }
338 373
339 --enc->depth; 374 --enc->depth;
340} 375}
341 376
342static void 377static void
360 while ((he = hv_iternext (hv))) 395 while ((he = hv_iternext (hv)))
361 { 396 {
362 if (HeKLEN (he) == HEf_SVKEY) 397 if (HeKLEN (he) == HEf_SVKEY)
363 encode_sv (enc, HeSVKEY (he)); 398 encode_sv (enc, HeSVKEY (he));
364 else 399 else
365 encode_strref (enc, HeKUTF8 (he), HeKEY (he), HeKLEN (he)); 400 encode_strref (enc, enc->cbor.flags & (F_UTF8_KEYS | F_UTF8_STRINGS), HeKUTF8 (he), HeKEY (he), HeKLEN (he));
366 401
367 encode_sv (enc, ecb_expect_false (mg) ? hv_iterval (hv, he) : HeVAL (he)); 402 encode_sv (enc, ecb_expect_false (mg) ? hv_iterval (hv, he) : HeVAL (he));
368 } 403 }
369 404
370 if (mg) 405 if (mg)
446 481
447 if ((method = gv_fetchmethod_autoload (stash, "TO_CBOR", 0))) 482 if ((method = gv_fetchmethod_autoload (stash, "TO_CBOR", 0)))
448 { 483 {
449 dSP; 484 dSP;
450 485
451 ENTER; SAVETMPS; PUSHMARK (SP); 486 ENTER; SAVETMPS;
487 PUSHMARK (SP);
452 // we re-bless the reference to get overload and other niceties right 488 // we re-bless the reference to get overload and other niceties right
453 XPUSHs (sv_bless (sv_2mortal (newRV_inc (sv)), stash)); 489 XPUSHs (sv_bless (sv_2mortal (newRV_inc (sv)), stash));
454 490
455 PUTBACK; 491 PUTBACK;
456 // G_SCALAR ensures that return value is 1 492 // G_SCALAR ensures that return value is 1
469 } 505 }
470 else if ((method = gv_fetchmethod_autoload (stash, "FREEZE", 0)) != 0) 506 else if ((method = gv_fetchmethod_autoload (stash, "FREEZE", 0)) != 0)
471 { 507 {
472 dSP; 508 dSP;
473 509
474 ENTER; SAVETMPS; PUSHMARK (SP); 510 ENTER; SAVETMPS;
511 SAVESTACK_POS ();
512 PUSHMARK (SP);
475 EXTEND (SP, 2); 513 EXTEND (SP, 2);
476 // we re-bless the reference to get overload and other niceties right 514 // we re-bless the reference to get overload and other niceties right
477 PUSHs (sv_bless (sv_2mortal (newRV_inc (sv)), stash)); 515 PUSHs (sv_bless (sv_2mortal (newRV_inc (sv)), stash));
478 PUSHs (sv_cbor); 516 PUSHs (sv_cbor);
479 517
485 if (count == 1 && SvROK (TOPs) && SvRV (TOPs) == sv) 523 if (count == 1 && SvROK (TOPs) && SvRV (TOPs) == sv)
486 croak ("%s::FREEZE(CBOR) method returned same object as was passed instead of a new one", HvNAME (stash)); 524 croak ("%s::FREEZE(CBOR) method returned same object as was passed instead of a new one", HvNAME (stash));
487 525
488 encode_tag (enc, CBOR_TAG_PERL_OBJECT); 526 encode_tag (enc, CBOR_TAG_PERL_OBJECT);
489 encode_uint (enc, MAJOR_ARRAY, count + 1); 527 encode_uint (enc, MAJOR_ARRAY, count + 1);
490 encode_strref (enc, HvNAMEUTF8 (stash), HvNAME (stash), HvNAMELEN (stash)); 528 encode_strref (enc, 0, HvNAMEUTF8 (stash), HvNAME (stash), HvNAMELEN (stash));
491 529
492 while (count) 530 while (count)
493 encode_sv (enc, SP[1 - count--]); 531 encode_sv (enc, SP[1 - count--]);
494 532
495 PUTBACK; 533 PUTBACK;
554 592
555 if (SvPOKp (sv)) 593 if (SvPOKp (sv))
556 { 594 {
557 STRLEN len; 595 STRLEN len;
558 char *str = SvPV (sv, len); 596 char *str = SvPV (sv, len);
559 encode_strref (enc, SvUTF8 (sv), str, len); 597 encode_strref (enc, enc->cbor.flags & F_UTF8_STRINGS, SvUTF8 (sv), str, len);
560 } 598 }
561 else if (SvNOKp (sv)) 599 else if (SvNOKp (sv))
562 encode_nv (enc, sv); 600 encode_nv (enc, sv);
563 else if (SvIOKp (sv)) 601 else if (SvIOKp (sv))
564 { 602 {
581} 619}
582 620
583static SV * 621static SV *
584encode_cbor (SV *scalar, CBOR *cbor) 622encode_cbor (SV *scalar, CBOR *cbor)
585{ 623{
586 enc_t enc = { }; 624 enc_t enc = { 0 };
587 625
588 enc.cbor = *cbor; 626 enc.cbor = *cbor;
589 enc.sv = sv_2mortal (NEWSV (0, INIT_SIZE)); 627 enc.sv = sv_2mortal (NEWSV (0, INIT_SIZE));
590 enc.cur = SvPVX (enc.sv); 628 enc.cur = SvPVX (enc.sv);
591 enc.end = SvEND (enc.sv); 629 enc.end = SvEND (enc.sv);
746 if (ecb_expect_true ((U8)(*dec->cur - MAJOR_BYTES) <= LENGTH_EXT8)) 784 if (ecb_expect_true ((U8)(*dec->cur - MAJOR_BYTES) <= LENGTH_EXT8))
747 { 785 {
748 I32 len = decode_uint (dec); 786 I32 len = decode_uint (dec);
749 char *key = (char *)dec->cur; 787 char *key = (char *)dec->cur;
750 788
789 WANT (len);
751 dec->cur += len; 790 dec->cur += len;
752 791
753 hv_store (hv, key, len, decode_sv (dec), 0); 792 hv_store (hv, key, len, decode_sv (dec), 0);
754 793
755 return; 794 return;
756 } 795 }
757 else if (ecb_expect_true ((U8)(*dec->cur - MAJOR_TEXT) <= LENGTH_EXT8)) 796 else if (ecb_expect_true ((U8)(*dec->cur - MAJOR_TEXT) <= LENGTH_EXT8))
758 { 797 {
759 I32 len = decode_uint (dec); 798 I32 len = decode_uint (dec);
760 char *key = (char *)dec->cur; 799 char *key = (char *)dec->cur;
761 800
801 WANT (len);
762 dec->cur += len; 802 dec->cur += len;
763 803
764 if (ecb_expect_false (dec->cbor.flags & F_VALIDATE_UTF8)) 804 if (ecb_expect_false (dec->cbor.flags & F_VALIDATE_UTF8))
765 if (!is_utf8_string (key, len)) 805 if (!is_utf8_string (key, len))
766 ERR ("corrupted CBOR data (invalid UTF-8 in map key)"); 806 ERR ("corrupted CBOR data (invalid UTF-8 in map key)");
989 if (!method) 1029 if (!method)
990 ERR ("cannot decode perl-object (package does not have a THAW method)"); 1030 ERR ("cannot decode perl-object (package does not have a THAW method)");
991 1031
992 dSP; 1032 dSP;
993 1033
994 ENTER; SAVETMPS; PUSHMARK (SP); 1034 ENTER; SAVETMPS;
1035 PUSHMARK (SP);
995 EXTEND (SP, len + 1); 1036 EXTEND (SP, len + 1);
996 // we re-bless the reference to get overload and other niceties right 1037 // we re-bless the reference to get overload and other niceties right
997 PUSHs (*av_fetch (av, 0, 1)); 1038 PUSHs (*av_fetch (av, 0, 1));
998 PUSHs (sv_cbor); 1039 PUSHs (sv_cbor);
999 1040
1024 default: 1065 default:
1025 { 1066 {
1026 sv = decode_sv (dec); 1067 sv = decode_sv (dec);
1027 1068
1028 dSP; 1069 dSP;
1029 ENTER; SAVETMPS; PUSHMARK (SP); 1070 ENTER; SAVETMPS;
1071 SAVESTACK_POS ();
1072 PUSHMARK (SP);
1030 EXTEND (SP, 2); 1073 EXTEND (SP, 2);
1031 PUSHs (newSVuv (tag)); 1074 PUSHs (newSVuv (tag));
1032 PUSHs (sv); 1075 PUSHs (sv);
1033 1076
1034 PUTBACK; 1077 PUTBACK;
1160} 1203}
1161 1204
1162static SV * 1205static SV *
1163decode_cbor (SV *string, CBOR *cbor, char **offset_return) 1206decode_cbor (SV *string, CBOR *cbor, char **offset_return)
1164{ 1207{
1165 dec_t dec = { }; 1208 dec_t dec = { 0 };
1166 SV *sv; 1209 SV *sv;
1167 STRLEN len; 1210 STRLEN len;
1168 char *data = SvPVbyte (string, len); 1211 char *data = SvPVbyte (string, len);
1169 1212
1170 if (len > cbor->max_size && cbor->max_size) 1213 if (len > cbor->max_size && cbor->max_size)
1261 1304
1262 int major = *p >> MAJOR_SHIFT; 1305 int major = *p >> MAJOR_SHIFT;
1263 1306
1264 switch (major) 1307 switch (major)
1265 { 1308 {
1309 case MAJOR_TAG >> MAJOR_SHIFT:
1310 ++count; // tags merely prefix another value
1311 break;
1312
1266 case MAJOR_BYTES >> MAJOR_SHIFT: 1313 case MAJOR_BYTES >> MAJOR_SHIFT:
1267 case MAJOR_TEXT >> MAJOR_SHIFT: 1314 case MAJOR_TEXT >> MAJOR_SHIFT:
1268 case MAJOR_ARRAY >> MAJOR_SHIFT: 1315 case MAJOR_ARRAY >> MAJOR_SHIFT:
1269 case MAJOR_MAP >> MAJOR_SHIFT: 1316 case MAJOR_MAP >> MAJOR_SHIFT:
1270 { 1317 {
1375 shrink = F_SHRINK 1422 shrink = F_SHRINK
1376 allow_unknown = F_ALLOW_UNKNOWN 1423 allow_unknown = F_ALLOW_UNKNOWN
1377 allow_sharing = F_ALLOW_SHARING 1424 allow_sharing = F_ALLOW_SHARING
1378 allow_cycles = F_ALLOW_CYCLES 1425 allow_cycles = F_ALLOW_CYCLES
1379 pack_strings = F_PACK_STRINGS 1426 pack_strings = F_PACK_STRINGS
1427 utf8_strings = F_UTF8_STRINGS
1380 validate_utf8 = F_VALIDATE_UTF8 1428 validate_utf8 = F_VALIDATE_UTF8
1381 PPCODE: 1429 PPCODE:
1382{ 1430{
1383 if (enable) 1431 if (enable)
1384 self->flags |= ix; 1432 self->flags |= ix;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines