X-Git-Url: http://git.shiar.nl/wormy.git/blobdiff_plain/5f543f9395f3a885ee9b751e98d069b9ed54f885..ce0df5c87882d5275a22ab3bb3f5642c577927b6:/Parse/Binary/Nested.pm diff --git a/Parse/Binary/Nested.pm b/Parse/Binary/Nested.pm index 872ccaa..371a65b 100644 --- a/Parse/Binary/Nested.pm +++ b/Parse/Binary/Nested.pm @@ -1,11 +1,12 @@ package Parse::Binary::Nested; +use 5.010; use strict; use warnings; use Carp; -our $VERSION = '1.01'; +our $VERSION = '1.02'; sub new { my ($class, $format) = @_; @@ -26,39 +27,82 @@ sub template { : $count."X[$count]$count/($value)"; } else { - $value =~ s/=\d*//g; # hardcoded values - $value =~ s/^C(a)(\d+)/$1 . ($2 + 1)/e; # length prefix + $value =~ s/=(?:\d+|.)//g; # hardcoded values + $value =~ s{^C/(a)(\d+)}{$1 . ($2 + 1)}e; # maximum length } $value; } reverse 0 .. ($#$format - 1) >> 1; } sub convert { - my ($self, $format, $data) = @_; + my ($self, $format, $data, $pos) = @_; # map flat results into a named and nested hash my %res; + $pos ||= \(my $_pos); while (my ($field, $template) = splice @$format, 0, 2) { if (ref $template eq 'ARRAY') { my ($count, @subformat) = @$template; + $$pos++ if $count eq 'C'; my $max = $count =~ s/^(\d+)// ? $1 : 0; $count = !$count ? $max : $count eq '*' ? $res{levelcount}->{total} : shift @$data; - $res{$field}->[$_] = $self->convert([@subformat], $data) for 0 .. ($max || $count)-1; + $res{$field}->[$_] = $self->convert([@subformat], $data, $pos) + for 0 .. ($max || $count)-1; splice @{ $res{$field} }, $count if $max > $count; $res{$field} = $res{$field}->[0] if $max == 1; next; } - elsif ($template =~ /^Ca/) { - $data->[0] = unpack 'C/a', $data->[0]; - } - elsif ($template =~ /^(?:[xX]\d*)*$/) { - next; # no values - } - elsif ($template =~ /=(\d+)?/) { - $res{$field} = $1; - next; + else { + for (split m{(?![0-9*/])(?[0]; + } + when ('Z*') { + $$pos += $count // 1 + length $data->[0]; + } + when (['C/a', 'C/A']) { + $$pos += 1 + ($count // length $data->[0]); + $data->[0] = unpack 'C/a', $data->[0] if defined $count; + } + when ('=') { + unshift @$data, $count; + } + when ('=.') { + unshift @$data, $$pos; + } + when ('X') { + $$pos -= $mult; + next; + } + default { + carp "Unrecognised template element '$type'"; + } + } + if (defined $res{$field}) { + $res{$field} = [ $res{$field} ] unless ref $res{$field} eq 'ARRAY'; + push @{ $res{$field} }, shift @$data; + } + else { + $res{$field} = shift @$data; + } + } } - $res{$field} = shift @$data; } return \%res; }