move collect method to a more sensible place in FilterBuilder
[catagits/HTML-Zoom.git] / lib / HTML / Zoom / FilterBuilder.pm
index e06d570..dc03958 100644 (file)
@@ -80,6 +80,41 @@ sub remove_attribute {
   };
 }
 
+sub collect {
+  my ($self, $options) = @_;
+  my ($into, $passthrough, $inside) = @{$options}{qw(into passthrough inside)};
+  sub {
+    my ($evt, $stream) = @_;
+    push(@$into, $evt) if $into && !$inside;
+    if ($evt->{is_in_place_close}) {
+      return $evt if $passthrough || $inside;
+      return;
+    }
+    my $name = $evt->{name};
+    my $depth = 1;
+    my $_next = $inside ? 'peek' : 'next';
+    my $collector = $self->_stream_from_code(sub {
+      return unless $stream;
+      while (my ($evt) = $stream->$_next) {
+        $depth++ if ($evt->{type} eq 'OPEN');
+        $depth-- if ($evt->{type} eq 'CLOSE');
+        unless ($depth) {
+          undef $stream;
+          return if $inside;
+          push(@$into, $evt) if $into;
+          return $evt if $passthrough;
+          return;
+        }
+        push(@$into, $evt) if $into;
+        $stream->next if $inside;
+        return $evt if $passthrough;
+      }
+      die "Never saw closing </${name}> before end of source";
+    });
+    return ($passthrough||$inside) ? [ $evt, $collector ] : $collector;
+  };
+}
+
 sub add_before {
   my ($self, $events) = @_;
   sub { return $self->_stream_from_array(@$events, $_[0]) };
@@ -128,47 +163,19 @@ sub append_inside {
 }
 
 sub replace {
-  my ($self, $events) = @_;
+  my ($self, $events, $options) = @_;
   sub {
     my ($evt, $stream) = @_;
     my $emit = $self->_stream_from_array(@$events);
-    my $coll = $self->collect->(@_);
-    return $coll ? $self->_stream_concat($emit, $coll) : $emit;
-  };
-}
-
-sub collect {
-  my ($self, $attrs) = @_;
-  my ($into, $passthrough, $inside) = @{$attrs}{qw(into passthrough inside)};
-  sub {
-    my ($evt, $stream) = @_;
-    push(@$into, $evt) if $into && !$inside;
-    if ($evt->{is_in_place_close}) {
-      return $evt if $passthrough || $inside;
-      return;
-    }
-    my $name = $evt->{name};
-    my $depth = 1;
-    my $_next = $inside ? 'peek' : 'next';
-    my $collector = $self->_stream_from_code(sub {
-      return unless $stream;
-      while (my ($evt) = $stream->$_next) {
-        $depth++ if ($evt->{type} eq 'OPEN');
-        $depth-- if ($evt->{type} eq 'CLOSE');
-        unless ($depth) {
-          undef $stream;
-          return if $inside;
-          push(@$into, $evt) if $into;
-          return $evt if $passthrough;
-          return;
-        }
-        push(@$into, $evt) if $into;
-        $stream->next if $inside;
-        return $evt if $passthrough;
-      }
-      die "Never saw closing </${name}> before end of source";
-    });
-    return ($passthrough||$inside) ? [ $evt, $collector ] : $collector;
+    my $coll = $self->collect($options)->(@_);
+    return
+      ($coll
+        ? (ref $coll eq 'ARRAY'
+            ? [ $coll->[0], $self->_stream_concat($emit, $coll->[1]) ]
+            : $self->_stream_concat($emit, $coll)
+          )
+        : $emit
+      );
   };
 }