forked from beyondgrep/ack2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
FirstLineMatch.pm
54 lines (37 loc) · 968 Bytes
/
FirstLineMatch.pm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
package App::Ack::Filter::FirstLineMatch;
use strict;
use warnings;
use base 'App::Ack::Filter';
sub new {
my ( $class, $re ) = @_;
$re =~ s{^/|/$}{}g; # XXX validate?
$re = qr{$re}i;
return bless {
regex => $re,
}, $class;
}
# XXX This test checks the first "line" of the file, but we need
# it to be less piggy. If it's something like a .min.js file, then
# the "line" could be the entire file. Instead, it should read the
# first, say, 100 characters of the first line.
sub filter {
my ( $self, $resource ) = @_;
my $re = $self->{'regex'};
local $_;
return unless $resource->next_text;
return /$re/;
}
sub inspect {
my ( $self ) = @_;
my $re = $self->{'regex'};
return ref($self) . " - $re";
}
sub to_string {
my ( $self ) = @_;
my $re = $self->{'regex'};
return "first line matches $re";
}
BEGIN {
App::Ack::Filter->register_filter(firstlinematch => __PACKAGE__);
}
1;