add .gitignore file
[catagits/HTML-Zoom.git] / lib / HTML / Zoom / FilterBuilder.pm
CommitLineData
456a815d 1package HTML::Zoom::FilterBuilder;
2
456a815d 3use strict;
4use warnings FATAL => 'all';
5use HTML::Zoom::CodeStream;
6
7sub new { bless({}, shift) }
8
9sub _stream_from_code {
10 HTML::Zoom::CodeStream->new({ code => $_[1] })
11}
12
13sub _stream_from_array {
14 shift; # lose $self
15 HTML::Zoom::CodeStream->from_array(@_)
16}
17
3cdbc13f 18sub _stream_from_proto {
19 my ($self, $proto) = @_;
20 my $ref = ref $proto;
21 if (not $ref) {
22 return $self->_stream_from_array({ type => 'TEXT', raw => $proto });
23 } elsif ($ref eq 'ARRAY') {
24 return $self->_stream_from_array(@$proto);
25 } elsif ($ref eq 'CODE') {
26 return $proto->();
27 } elsif ($ref eq 'SCALAR') {
28 require HTML::Zoom::Parser::BuiltIn;
29 return HTML::Zoom::Parser::BuiltIn->html_to_stream($$proto);
30 }
626752d4 31 die "Don't know how to turn $proto (ref $ref) into a stream";
3cdbc13f 32}
33
456a815d 34sub _stream_concat {
3cdbc13f 35 shift->_stream_from_array(@_)->flatten;
456a815d 36}
37
38sub set_attribute {
39 my ($self, $args) = @_;
40 my ($name, $value) = @{$args}{qw(name value)};
41 sub {
8f962884 42 my $a = (my $evt = $_[0])->{attrs};
456a815d 43 my $e = exists $a->{$name};
44 +{ %$evt, raw => undef, raw_attrs => undef,
45 attrs => { %$a, $name => $value },
46 ($e # add to name list if not present
47 ? ()
48 : (attr_names => [ @{$evt->{attr_names}}, $name ]))
49 }
50 };
51}
52
53sub add_attribute {
54 my ($self, $args) = @_;
55 my ($name, $value) = @{$args}{qw(name value)};
56 sub {
8f962884 57 my $a = (my $evt = $_[0])->{attrs};
456a815d 58 my $e = exists $a->{$name};
59 +{ %$evt, raw => undef, raw_attrs => undef,
60 attrs => {
61 %$a,
62 $name => join(' ', ($e ? $a->{$name} : ()), $value)
63 },
64 ($e # add to name list if not present
65 ? ()
66 : (attr_names => [ @{$evt->{attr_names}}, $name ]))
67 }
68 };
69}
70
71sub remove_attribute {
72 my ($self, $args) = @_;
73 my $name = $args->{name};
74 sub {
8f962884 75 my $a = (my $evt = $_[0])->{attrs};
456a815d 76 return $evt unless exists $a->{$name};
77 $a = { %$a }; delete $a->{$name};
78 +{ %$evt, raw => undef, raw_attrs => undef,
79 attrs => $a,
80 attr_names => [ grep $_ ne $name, @{$evt->{attr_names}} ]
81 }
82 };
83}
84
76cecb10 85sub collect {
86 my ($self, $options) = @_;
87 my ($into, $passthrough, $inside) = @{$options}{qw(into passthrough inside)};
88 sub {
89 my ($evt, $stream) = @_;
b4d044eb 90 # We wipe the contents of @$into here so that other actions depending
91 # on this (such as a repeater) can be invoked multiple times easily.
92 # I -suspect- it's better for that state reset to be managed here; if it
93 # ever becomes painful the decision should be revisited
94 if ($into) {
95 @$into = $inside ? () : ($evt);
96 }
76cecb10 97 if ($evt->{is_in_place_close}) {
98 return $evt if $passthrough || $inside;
99 return;
100 }
101 my $name = $evt->{name};
102 my $depth = 1;
103 my $_next = $inside ? 'peek' : 'next';
104 my $collector = $self->_stream_from_code(sub {
105 return unless $stream;
106 while (my ($evt) = $stream->$_next) {
107 $depth++ if ($evt->{type} eq 'OPEN');
108 $depth-- if ($evt->{type} eq 'CLOSE');
109 unless ($depth) {
110 undef $stream;
111 return if $inside;
112 push(@$into, $evt) if $into;
113 return $evt if $passthrough;
114 return;
115 }
116 push(@$into, $evt) if $into;
117 $stream->next if $inside;
118 return $evt if $passthrough;
119 }
120 die "Never saw closing </${name}> before end of source";
121 });
122 return ($passthrough||$inside) ? [ $evt, $collector ] : $collector;
123 };
124}
125
456a815d 126sub add_before {
127 my ($self, $events) = @_;
8f962884 128 sub { return $self->_stream_from_array(@$events, $_[0]) };
456a815d 129}
130
131sub add_after {
132 my ($self, $events) = @_;
b616863d 133 my $coll_proto = $self->collect({ passthrough => 1 });
456a815d 134 sub {
8f962884 135 my ($evt) = @_;
456a815d 136 my $emit = $self->_stream_from_array(@$events);
b616863d 137 my $coll = &$coll_proto;
995bc8be 138 return ref($coll) eq 'HASH' # single event, no collect
139 ? [ $coll, $emit ]
140 : [ $coll->[0], $self->_stream_concat($coll->[1], $emit) ];
456a815d 141 };
8f962884 142}
456a815d 143
144sub prepend_inside {
145 my ($self, $events) = @_;
146 sub {
8f962884 147 my ($evt) = @_;
456a815d 148 if ($evt->{is_in_place_close}) {
149 $evt = { %$evt }; delete @{$evt}{qw(raw is_in_place_close)};
150 return [ $evt, $self->_stream_from_array(
151 @$events, { type => 'CLOSE', name => $evt->{name} }
152 ) ];
153 }
154 return $self->_stream_from_array($evt, @$events);
155 };
156}
157
8f962884 158sub append_inside {
159 my ($self, $events) = @_;
b616863d 160 my $coll_proto = $self->collect({ passthrough => 1, inside => 1 });
8f962884 161 sub {
162 my ($evt) = @_;
163 if ($evt->{is_in_place_close}) {
164 $evt = { %$evt }; delete @{$evt}{qw(raw is_in_place_close)};
165 return [ $evt, $self->_stream_from_array(
166 @$events, { type => 'CLOSE', name => $evt->{name} }
167 ) ];
168 }
b616863d 169 my $coll = &$coll_proto;
8f962884 170 my $emit = $self->_stream_from_array(@$events);
171 return [ $coll->[0], $self->_stream_concat($coll->[1], $emit) ];
172 };
173}
174
456a815d 175sub replace {
3cdbc13f 176 my ($self, $replace_with, $options) = @_;
b616863d 177 my $coll_proto = $self->collect($options);
456a815d 178 sub {
179 my ($evt, $stream) = @_;
3cdbc13f 180 my $emit = $self->_stream_from_proto($replace_with);
b616863d 181 my $coll = &$coll_proto;
451b3b30 182 # For a straightforward replace operation we can, in fact, do the emit
183 # -before- the collect, and my first cut did so. However in order to
184 # use the captured content in generating the new content, we need
185 # the collect stage to happen first - and it seems highly unlikely
186 # that in normal operation the collect phase will take long enough
187 # for the difference to be noticeable
11cc25dd 188 return
189 ($coll
190 ? (ref $coll eq 'ARRAY'
451b3b30 191 ? [ $coll->[0], $self->_stream_concat($coll->[1], $emit) ]
192 : $self->_stream_concat($coll, $emit)
11cc25dd 193 )
194 : $emit
195 );
456a815d 196 };
197}
198
3cdbc13f 199sub repeat {
200 my ($self, $repeat_for, $options) = @_;
201 $options->{into} = \my @into;
202 my $map_repeat = sub {
203 local $_ = $self->_stream_from_array(@into);
204 $_[0]->($_)
205 };
206 my $repeater = sub {
207 $self->_stream_from_proto($repeat_for)
208 ->map($map_repeat)
209 ->flatten
210 };
211 $self->replace($repeater, $options);
212}
213
456a815d 2141;