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

Comparing CBOR-XS/XS.pm (file contents):
Revision 1.6 by root, Sun Oct 27 20:40:25 2013 UTC vs.
Revision 1.17 by root, Wed Oct 30 10:11:04 2013 UTC

26 substr $many_cbor_strings, 0, $length, ""; # remove decoded cbor string 26 substr $many_cbor_strings, 0, $length, ""; # remove decoded cbor string
27 } 27 }
28 28
29=head1 DESCRIPTION 29=head1 DESCRIPTION
30 30
31WARNING! THIS IS A PRE-ALPHA RELEASE! IT WILL CRASH, CORRUPT YOUR DATA 31WARNING! This module is very new, and not very well tested (that's up to
32AND EAT YOUR CHILDREN! (Actually, apart from being untested and a bit 32you to do). Furthermore, details of the implementation might change freely
33feature-limited, it might already be useful). 33before version 1.0. And lastly, the object serialisation protocol depends
34on a pending IANA assignment, and until that assignment is official, this
35implementation is not interoperable with other implementations (even
36future versions of this module) until the assignment is done.
37
38You are still invited to try out CBOR, and this module.
34 39
35This module converts Perl data structures to the Concise Binary Object 40This module converts Perl data structures to the Concise Binary Object
36Representation (CBOR) and vice versa. CBOR is a fast binary serialisation 41Representation (CBOR) and vice versa. CBOR is a fast binary serialisation
37format that aims to use a superset of the JSON data model, i.e. when you 42format that aims to use a superset of the JSON data model, i.e. when you
38can represent something in JSON, you should be able to represent it in 43can represent something in JSON, you should be able to represent it in
39CBOR. 44CBOR.
40 45
41This makes it a faster and more compact binary alternative to JSON, with 46In short, CBOR is a faster and very compact binary alternative to JSON,
42the added ability of supporting serialising of perl objects. 47with the added ability of supporting serialisation of Perl objects. (JSON
48often compresses better than CBOR though, so if you plan to compress the
49data later you might want to compare both formats first).
50
51To give you a general idea about speed, with texts in the megabyte range,
52C<CBOR::XS> usually encodes roughly twice as fast as L<Storable> or
53L<JSON::XS> and decodes about 15%-30% faster than those. The shorter the
54data, the worse L<Storable> performs in comparison.
55
56As for compactness, C<CBOR::XS> encoded data structures are usually about
5720% smaller than the same data encoded as (compact) JSON or L<Storable>.
43 58
44The primary goal of this module is to be I<correct> and the secondary goal 59The primary goal of this module is to be I<correct> and the secondary goal
45is to be I<fast>. To reach the latter goal it was written in C. 60is to be I<fast>. To reach the latter goal it was written in C.
46 61
47See MAPPING, below, on how CBOR::XS maps perl values to CBOR values and 62See MAPPING, below, on how CBOR::XS maps perl values to CBOR values and
51 66
52package CBOR::XS; 67package CBOR::XS;
53 68
54use common::sense; 69use common::sense;
55 70
56our $VERSION = 0.03; 71our $VERSION = 0.08;
57our @ISA = qw(Exporter); 72our @ISA = qw(Exporter);
58 73
59our @EXPORT = qw(encode_cbor decode_cbor); 74our @EXPORT = qw(encode_cbor decode_cbor);
60 75
61use Exporter; 76use Exporter;
221C<1> and C<0> (for true and false) or to throw an exception on access (for 236C<1> and C<0> (for true and false) or to throw an exception on access (for
222error). See the L<Types::Serialiser> manpage for details. 237error). See the L<Types::Serialiser> manpage for details.
223 238
224=item CBOR tag 256 (perl object) 239=item CBOR tag 256 (perl object)
225 240
226The tag value C<256> (TODO: pending iana registration) will be used to 241The tag value C<256> (TODO: pending iana registration) will be used
227deserialise a Perl object. 242to deserialise a Perl object serialised with C<FREEZE>. See L<OBJECT
228 243SERIALISATION>, below, for details.
229TODO For this to work, the class must be loaded and must have a
230C<FROM_CBOR> method. The decoder will then call the C<FROM_CBOR> method
231with the constructor arguments provided by the C<TO_CBOR> method (see
232below).
233
234The C<FROM_CBOR> method must return a single value that will then be used
235as the deserialised value.
236 244
237=item CBOR tag 55799 (magic header) 245=item CBOR tag 55799 (magic header)
238 246
239The tag 55799 is ignored (this tag implements the magic header). 247The tag 55799 is ignored (this tag implements the magic header).
240 248
283C<1>, which get turned into false and true in CBOR. 291C<1>, which get turned into false and true in CBOR.
284 292
285=item CBOR::XS::Tagged objects 293=item CBOR::XS::Tagged objects
286 294
287Objects of this type must be arrays consisting of a single C<[tag, value]> 295Objects of this type must be arrays consisting of a single C<[tag, value]>
288pair. The (numerical) tag will be encoded as a CBOR tag, the value will be 296pair. The (numerical) tag will be encoded as a CBOR tag, the value will
289encoded as appropriate for the value. 297be encoded as appropriate for the value. You cna use C<CBOR::XS::tag> to
298create such objects.
290 299
291=item Types::Serialiser::true, Types::Serialiser::false, Types::Serialiser::error 300=item Types::Serialiser::true, Types::Serialiser::false, Types::Serialiser::error
292 301
293These special values become CBOR true, CBOR false and CBOR undefined 302These special values become CBOR true, CBOR false and CBOR undefined
294values, respectively. You can also use C<\1>, C<\0> and C<\undef> directly 303values, respectively. You can also use C<\1>, C<\0> and C<\undef> directly
295if you want. 304if you want.
296 305
297=item blessed objects 306=item other blessed objects
298 307
299Other blessed objects currently need to have a C<TO_CBOR> method. It 308Other blessed objects are serialised via C<TO_CBOR> or C<FREEZE>. See
300will be called on every object that is being serialised, and must return 309L<OBJECT SERIALISATION>, below, for details.
301something that can be encoded in CBOR.
302 310
303=item simple scalars 311=item simple scalars
304 312
305TODO 313TODO
306Simple Perl scalars (any scalar that is not a reference) are the most 314Simple Perl scalars (any scalar that is not a reference) are the most
344represent numerical values are supported, but might suffer loss of 352represent numerical values are supported, but might suffer loss of
345precision. 353precision.
346 354
347=back 355=back
348 356
357=head2 OBJECT SERIALISATION
349 358
359This module knows two way to serialise a Perl object: The CBOR-specific
360way, and the generic way.
361
362Whenever the encoder encounters a Perl object that it cnanot serialise
363directly (most of them), it will first look up the C<TO_CBOR> method on
364it.
365
366If it has a C<TO_CBOR> method, it will call it with the object as only
367argument, and expects exactly one return value, which it will then
368substitute and encode it in the place of the object.
369
370Otherwise, it will look up the C<FREEZE> method. If it exists, it will
371call it with the object as first argument, and the constant string C<CBOR>
372as the second argument, to distinguish it from other serialisers.
373
374The C<FREEZE> method can return any number of values (i.e. zero or
375more). These will be encoded as CBOR perl object, together with the
376classname.
377
378If an object supports neither C<TO_CBOR> nor C<FREEZE>, encoding will fail
379with an error.
380
381Objects encoded via C<TO_CBOR> cannot be automatically decoded, but
382objects encoded via C<FREEZE> can be decoded using the following protocol:
383
384When an encoded CBOR perl object is encountered by the decoder, it will
385look up the C<THAW> method, by using the stored classname, and will fail
386if the method cannot be found.
387
388After the lookup it will call the C<THAW> method with the stored classname
389as first argument, the constant string C<CBOR> as second argument, and all
390values returned by C<FREEZE> as remaining arguments.
391
392=head4 EXAMPLES
393
394Here is an example C<TO_CBOR> method:
395
396 sub My::Object::TO_CBOR {
397 my ($obj) = @_;
398
399 ["this is a serialised My::Object object", $obj->{id}]
400 }
401
402When a C<My::Object> is encoded to CBOR, it will instead encode a simple
403array with two members: a string, and the "object id". Decoding this CBOR
404string will yield a normal perl array reference in place of the object.
405
406A more useful and practical example would be a serialisation method for
407the URI module. CBOR has a custom tag value for URIs, namely 32:
408
409 sub URI::TO_CBOR {
410 my ($self) = @_;
411 my $uri = "$self"; # stringify uri
412 utf8::upgrade $uri; # make sure it will be encoded as UTF-8 string
413 CBOR::XS::tagged 32, "$_[0]"
414 }
415
416This will encode URIs as a UTF-8 string with tag 32, which indicates an
417URI.
418
419Decoding such an URI will not (currently) give you an URI object, but
420instead a CBOR::XS::Tagged object with tag number 32 and the string -
421exactly what was returned by C<TO_CBOR>.
422
423To serialise an object so it can automatically be deserialised, you need
424to use C<FREEZE> and C<THAW>. To take the URI module as example, this
425would be a possible implementation:
426
427 sub URI::FREEZE {
428 my ($self, $serialiser) = @_;
429 "$self" # encode url string
430 }
431
432 sub URI::THAW {
433 my ($class, $serialiser, $uri) = @_;
434
435 $class->new ($uri)
436 }
437
438Unlike C<TO_CBOR>, multiple values can be returned by C<FREEZE>. For
439example, a C<FREEZE> method that returns "type", "id" and "variant" values
440would cause an invocation of C<THAW> with 5 arguments:
441
442 sub My::Object::FREEZE {
443 my ($self, $serialiser) = @_;
444
445 ($self->{type}, $self->{id}, $self->{variant})
446 }
447
448 sub My::Object::THAW {
449 my ($class, $serialiser, $type, $id, $variant) = @_;
450
451 $class-<new (type => $type, id => $id, variant => $variant)
452 }
453
454
350=head2 MAGIC HEADER 455=head1 MAGIC HEADER
351 456
352There is no way to distinguish CBOR from other formats 457There is no way to distinguish CBOR from other formats
353programmatically. To make it easier to distinguish CBOR from other 458programmatically. To make it easier to distinguish CBOR from other
354formats, the CBOR specification has a special "magic string" that can be 459formats, the CBOR specification has a special "magic string" that can be
355prepended to any CBOR string without changing it's meaning. 460prepended to any CBOR string without changing it's meaning.
358prepend this string tot he CBOR data it generates, but it will ignroe it 463prepend this string tot he CBOR data it generates, but it will ignroe it
359if present, so users can prepend this string as a "file type" indicator as 464if present, so users can prepend this string as a "file type" indicator as
360required. 465required.
361 466
362 467
468=head1 THE CBOR::XS::Tagged CLASS
469
470CBOR has the concept of tagged values - any CBOR value can be tagged with
471a numeric 64 bit number, which are centrally administered.
472
473C<CBOR::XS> handles a few tags internally when en- or decoding. You can
474also create tags yourself by encoding C<CBOR::XS::Tagged> objects, and the
475decoder will create C<CBOR::XS::Tagged> objects itself when it hits an
476unknown tag.
477
478These objects are simply blessed array references - the first member of
479the array being the numerical tag, the second being the value.
480
481You can interact with C<CBOR::XS::Tagged> objects in the following ways:
482
483=over 4
484
485=item $tagged = CBOR::XS::tag $tag, $value
486
487This function(!) creates a new C<CBOR::XS::Tagged> object using the given
488C<$tag> (0..2**64-1) to tag the given C<$value> (which can be any Perl
489value that can be encoded in CBOR, including serialisable Perl objects and
490C<CBOR::XS::Tagged> objects).
491
492=item $tagged->[0]
493
494=item $tagged->[0] = $new_tag
495
496=item $tag = $tagged->tag
497
498=item $new_tag = $tagged->tag ($new_tag)
499
500Access/mutate the tag.
501
502=item $tagged->[1]
503
504=item $tagged->[1] = $new_value
505
506=item $value = $tagged->value
507
508=item $new_value = $tagged->value ($new_value)
509
510Access/mutate the tagged value.
511
512=back
513
514=cut
515
516sub tag($$) {
517 bless [@_], CBOR::XS::Tagged::;
518}
519
520sub CBOR::XS::Tagged::tag {
521 $_[0][0] = $_[1] if $#_;
522 $_[0][0]
523}
524
525sub CBOR::XS::Tagged::value {
526 $_[0][1] = $_[1] if $#_;
527 $_[0][1]
528}
529
530=head2 EXAMPLES
531
532Here are some examples of C<CBOR::XS::Tagged> uses to tag objects.
533
534You can look up CBOR tag value and emanings in the IANA registry at
535L<http://www.iana.org/assignments/cbor-tags/cbor-tags.xhtml>.
536
537Prepend a magic header (C<$CBOR::XS::MAGIC>):
538
539 my $cbor = encode_cbor CBOR::XS::tag 55799, $value;
540 # same as:
541 my $cbor = $CBOR::XS::MAGIC . encode_cbor $value;
542
543Serialise some URIs and a regex in an array:
544
545 my $cbor = encode_cbor [
546 (CBOR::XS::tag 32, "http://www.nethype.de/"),
547 (CBOR::XS::tag 32, "http://software.schmorp.de/"),
548 (CBOR::XS::tag 35, "^[Pp][Ee][Rr][lL]\$"),
549 ];
550
551Wrap CBOR data in CBOR:
552
553 my $cbor_cbor = encode_cbor
554 CBOR::XS::tag 24,
555 encode_cbor [1, 2, 3];
556
363=head2 CBOR and JSON 557=head1 CBOR and JSON
364 558
365CBOR is supposed to implement a superset of the JSON data model, and is, 559CBOR is supposed to implement a superset of the JSON data model, and is,
366with some coercion, able to represent all JSON texts (something that other 560with some coercion, able to represent all JSON texts (something that other
367"binary JSON" formats such as BSON generally do not support). 561"binary JSON" formats such as BSON generally do not support).
368 562

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines