line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Tree::Simple::Visitor::ToNestedArray; |
2
|
|
|
|
|
|
|
|
3
|
1
|
|
|
1
|
|
75791
|
use strict; |
|
1
|
|
|
|
|
11
|
|
|
1
|
|
|
|
|
28
|
|
4
|
1
|
|
|
1
|
|
6
|
use warnings; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
39
|
|
5
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
our $VERSION = '0.16'; |
7
|
|
|
|
|
|
|
|
8
|
1
|
|
|
1
|
|
5
|
use Scalar::Util qw(blessed); |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
67
|
|
9
|
|
|
|
|
|
|
|
10
|
1
|
|
|
1
|
|
7
|
use base qw(Tree::Simple::Visitor); |
|
1
|
|
|
|
|
10
|
|
|
1
|
|
|
|
|
525
|
|
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
sub new { |
13
|
5
|
|
|
5
|
1
|
4992
|
my ($_class) = @_; |
14
|
5
|
|
33
|
|
|
26
|
my $class = ref($_class) || $_class; |
15
|
5
|
|
|
|
|
10
|
my $visitor = {}; |
16
|
5
|
|
|
|
|
9
|
bless($visitor, $class); |
17
|
5
|
|
|
|
|
22
|
$visitor->_init(); |
18
|
5
|
|
|
|
|
49
|
return $visitor; |
19
|
|
|
|
|
|
|
} |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
sub visit { |
22
|
8
|
|
|
8
|
1
|
8438
|
my ($self, $tree) = @_; |
23
|
8
|
100
|
100
|
|
|
84
|
(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
|
|
|
|
|
18
|
my $filter = $self->getNodeFilter(); |
27
|
4
|
|
|
|
|
21
|
my @results; |
28
|
|
|
|
|
|
|
# get the array |
29
|
4
|
|
|
|
|
15
|
$self->_buildArray($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()), |
36
|
|
|
|
|
|
|
[ @results ] |
37
|
|
|
|
|
|
|
) if $self->includeTrunk(); |
38
|
|
|
|
|
|
|
# set results |
39
|
4
|
|
|
|
|
49
|
$self->setResults(\@results); |
40
|
|
|
|
|
|
|
} |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
sub _buildArray { |
43
|
8
|
|
|
8
|
|
18
|
my ($self, $tree, $accumulator, $filter) = @_; |
44
|
8
|
|
|
|
|
21
|
foreach my $child ($tree->getAllChildren()) { |
45
|
16
|
100
|
|
|
|
84
|
push @{$accumulator} => (defined($filter) ? $filter->($child) : $child->getNodeValue()); |
|
16
|
|
|
|
|
63
|
|
46
|
16
|
100
|
|
|
|
88
|
push @{$accumulator} => $self->_buildArray($child, [], $filter) unless $child->isLeaf(); |
|
4
|
|
|
|
|
48
|
|
47
|
|
|
|
|
|
|
} |
48
|
8
|
|
|
|
|
57
|
return $accumulator; |
49
|
|
|
|
|
|
|
} |
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
1; |
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
__END__ |