File Coverage

blib/lib/Tree/Simple/Visitor/ToNestedHash.pm
Criterion Covered Total %
statement 32 32 100.0
branch 10 10 100.0
condition 4 6 66.6
subroutine 7 7 100.0
pod 2 2 100.0
total 55 57 96.4


line stmt bran cond sub pod time code
1             package Tree::Simple::Visitor::ToNestedHash;
2              
3 1     1   61186 use strict;
  1         11  
  1         24  
4 1     1   4 use warnings;
  1         2  
  1         46  
5              
6             our $VERSION = '0.16';
7              
8 1     1   6 use Scalar::Util qw(blessed);
  1         1  
  1         60  
9              
10 1     1   6 use base qw(Tree::Simple::Visitor);
  1         2  
  1         448  
11              
12             sub new {
13 5     5 1 5816 my ($_class) = @_;
14 5   33     21 my $class = ref($_class) || $_class;
15 5         8 my $visitor = {};
16 5         10 bless($visitor, $class);
17 5         17 $visitor->_init();
18 5         38 return $visitor;
19             }
20              
21             sub visit {
22 8     8 1 9204 my ($self, $tree) = @_;
23 8 100 100     72 (blessed($tree) && $tree->isa("Tree::Simple"))
24             || die "Insufficient Arguments : You must supply a valid Tree::Simple object";
25             # grab our filter (if we have one)
26 4         14 my $filter = $self->getNodeFilter();
27 4         19 my %results;
28             # get the array
29 4         13 $self->_buildHash($tree, \%results, $filter);
30             # add the trunk if we need to
31 4 100       11 %results = (
    100          
32             ((defined($filter)) ?
33             $filter->($tree)
34             :
35             $tree->getNodeValue()) => { %results }
36             ) if $self->includeTrunk();
37             # set results
38 4         45 $self->setResults(\%results);
39             }
40              
41             sub _buildHash {
42 8     8   51 my ($self, $tree, $accumulator, $filter) = @_;
43 8         17 foreach my $child ($tree->getAllChildren()) {
44 16         55 my $node_value = {};
45 16 100       34 my $node_key = (defined($filter) ? $filter->($child) : $child->getNodeValue());
46 16 100       71 $self->_buildHash($child, $node_value, $filter) unless $child->isLeaf();
47 16         81 $accumulator->{$node_key} = $node_value;
48             }
49 8         11 return $accumulator;
50             }
51              
52              
53             1;
54              
55             __END__