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

NAME

Finnigan::OLE2Property -- a decoder for the Property structure in Microsoft OLE2

SYNOPSIS

  use Finnigan;
  my $p = Finnigan::OLE2Property->decode(\*INPUT, [9, 'UTF-16-LE']);
  say $p->name;

DESCRIPTION

This is an auxiliary decoder used by Finnigan::OLE2File; it is of no use on its own.

The OLE2 Properties are roughly equivalent to index nodes in other filesystems.

METHODS

decode($stream, [$big_block_log_size, $charset])

The constructor method

name

Get the property name (equivalent to file name in a regular filesystem). This method overloads the double-quote operator.

type
data_size
child
left

Get the left child

Get the right child

start

Get the starting index of the stream

SEE ALSO

Finnigan::OLE2File

Windows Compound Binary File Format Specification

AUTHOR

Gene Selkov, <selkovjr@gmail.com>

COPYRIGHT AND LICENSE

Copyright (C) 2010 by Gene Selkov

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.10.0 or, at your option, any later version of Perl 5 you may have available.