File Coverage

blib/lib/HTML/Zoom/FilterStream.pm
Criterion Covered Total %
statement 38 38 100.0
branch 28 30 93.3
condition 3 3 100.0
subroutine 4 4 100.0
pod 0 1 0.0
total 73 76 96.0


line stmt bran cond sub pod time code
1             package HTML::Zoom::FilterStream;
2              
3 15     15   90 use strictures 1;
  15         64  
  15         309  
4 15     15   912 use base qw(HTML::Zoom::StreamBase);
  15         24  
  15         6548  
5              
6             sub new {
7 173     173 0 222 my ($class, $args) = @_;
8 173 100       344 if ($args->{filters}) {
9 127         290 die "Single filter please (XXX FIXME)"
10 127 50       111 unless @{$args->{filters}} == 1;
11 127         236 $args->{filter} = $args->{filters}[0];
12             }
13             bless(
14             {
15 173         1074 _stream => $args->{stream},
16             _match => $args->{match},
17             _filter => $args->{filter},
18             _zconfig => $args->{zconfig},
19             },
20             $class
21             );
22             }
23              
24             sub _next {
25 3014     3014   2525 my ($self, $am_peek) = @_;
26              
27             # if our main stream is already gone then we can short-circuit
28             # straight out - there's no way for an alternate stream to be there
29              
30 3014 100       4406 return unless $self->{_stream};
31              
32             # if we have an alternate stream (provided by a filter call resulting
33             # from a match on the main stream) then we want to read from that until
34             # it's gone - we're still effectively "in the match" but this is the
35             # point at which that fact is abstracted away from downstream consumers
36              
37 3012 100       3391 my $_next = $am_peek ? 'peek' : 'next';
38              
39 3012 100       4514 if (my $alt = $self->{_alt_stream}) {
40              
41 625 100       1133 if (my ($evt) = $alt->$_next) {
42 489 100       674 $self->{_peeked_from} = $alt if $am_peek;
43 489         1231 return $evt;
44             }
45              
46             # once the alternate stream is exhausted we can throw it away so future
47             # requests fall straight through to the main stream
48              
49 136         185 delete $self->{_alt_stream};
50             }
51              
52             # if there's no alternate stream currently, process the main stream
53              
54 2523         4661 while (my ($evt) = $self->{_stream}->$_next) {
55              
56 2362 100       3071 $self->{_peeked_from} = $self->{_stream} if $am_peek;
57              
58             # don't match this event? return it immediately
59              
60 2362 100 100     7790 return $evt unless $evt->{type} eq 'OPEN' and $self->{_match}->($evt);
61              
62             # run our filter routine against the current event
63              
64 183         586 my ($res) = $self->{_filter}->($evt, $self->{_stream});
65              
66             # if the result is just an event, we can return that now
67              
68 183 100       700 return $res if ref($res) eq 'HASH';
69              
70             # if no result at all, jump back to the top of the loop to get the
71             # next event and try again - the filter has eaten this one
72              
73 140 100       255 next unless defined $res;
74              
75             # ARRAY means a pair of [ $evt, $new_stream ]
76              
77 137 100       256 if (ref($res) eq 'ARRAY') {
78 127         201 $self->{_alt_stream} = $res->[1];
79 127         489 return $res->[0];
80             }
81              
82             # the filter returned a stream - if it contains something return the
83             # first entry and stash it as the new alternate stream
84              
85 10 100       39 if (my ($new_evt) = $res->$_next) {
86 9         16 $self->{_alt_stream} = $res;
87 9 50       17 $self->{_peeked_from} = $res if $am_peek;
88 9         28 return $new_evt;
89             }
90              
91             # we got a new alternate stream but it turned out to be empty
92             # - this will happens for e.g. with an in place close () that's
93             # being removed. In that case, we fall off to loop back round and try
94             # the next event from our main stream
95             } continue {
96              
97             # if we fell off the bottom (empty new alternate stream or filter ate
98             # the event) then we need to advance our internal stream one so that the
99             # top of the while loop gets the right thing; also, we need to clear the
100             # _peeked_from in case our source stream is exhausted (it'll be
101             # re-assigned if the while condition gets a new event)
102              
103 4 100       15 if ($am_peek) {
104 3         11 $self->{_stream}->next;
105 3         11 delete $self->{_peeked_from};
106             }
107             }
108              
109             # main stream exhausted so throw it away so we hit the short circuit
110             # at the top and return nothing to indicate to our caller we're done
111              
112 165         653 delete $self->{_stream};
113 165         406 return;
114             }
115              
116             1;