The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Mac::PropertyList::WriteBinary - pack data into a Mac "binary property list"

SYNOPSIS

    use Mac::PropertyList::WriteBinary;

    my $data = new Mac::PropertyList::dict({ ... => ... });
    my $buf = Mac::PropertyList::WriteBinary::as_string($data);

DESCRIPTION

The as_string function converts a property list structure (composed of instances of Mac::PropertyList::dict, Mac::PropertyList::integer, etc.) into a binary format compatible with the Apple CoreFoundation binary property list functions.

It takes a single argument, the top-level object to write, and returns a byte string.

The property list can contain the following perl objects:

Mac::PropertyList value objects

These are written according to their class.

Unblessed references to Perl lists and hashes

These are written as arrays and dictionaries, respectively.

Perl scalars

All Perl scalars are written as strings; this is similar to the behavior of writing an oldstyle OpenStep property list, which does not distinguish between numbers and strings, and then reading it using CoreFoundation functions.

undef

This is written as the null object. CoreFoundation will read this as kCFNull, but appears to be unable to write it.

Strings are uniqued (two equal strings will be written as references to the same object). If the same reference appears more than once in the structure, it will likewise only be represented once in the output. Although the bplist format can represent circular data structures, they cannot be written by this module (they will be detected and result in an error — they wouldn't be read correctly by CoreFoundation anyway, so you aren't missing much).

BUGS

Mac::PropertyList::date objects are not handled yet.

Objects other than strings (and null) are not uniqued by value, only by reference equality. This may change in a future version.

Perl's dictionary keys can only be strings, but a bplist's can be any scalar object.

There is no way to write the UID objects used by the keyed archiver.

Perls that do not use IEEE-754 format internally for floating point numbers will produce incorrect output.

AUTHOR

Wim Lewis, <wiml@cpan.org>

Copyright © 2012-2014 Wim Lewis. All rights reserved.

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

SEE ALSO

Mac::PropertyList::ReadBinary for the inverse operation.

Apple's partial published CoreFoundation source code: http://opensource.apple.com/source/CF/