/usr/share/perl5/App/Ack/Resource.pm is in ack-grep 2.12-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 | package App::Ack::Resource;
use App::Ack;
use warnings;
use strict;
use overload
'""' => 'name';
sub FAIL {
require Carp;
Carp::confess( 'Must be overloaded' );
}
=head1 SYNOPSIS
This is the base class for App::Ack::Resource and any resources
that derive from it.
=head1 METHODS
=head2 new( $filename )
Opens the file specified by I<$filename> and returns a filehandle and
a flag that says whether it could be binary.
If there's a failure, it throws a warning and returns an empty list.
=cut
sub new {
return FAIL();
}
=head2 $res->name()
Returns the name of the resource.
=cut
sub name {
return FAIL();
}
=head2 $res->is_binary()
Tells whether the resource is binary. If it is, and ack finds a
match in the file, then ack will not try to display a match line.
=cut
sub is_binary {
return FAIL();
}
=head2 $res->open()
Opens a filehandle for reading this resource and returns it, or returns
undef if the operation fails (the error is in C<$!>). Instead of calling
C<close $fh>, C<$res-E<gt>close> should be called.
=cut
sub open {
return FAIL();
}
=head2 $res->needs_line_scan( \%opts )
API: Tells if the resource needs a line-by-line scan. This is a big
optimization because if you can tell from the outset that the pattern
is not found in the resource at all, then there's no need to do the
line-by-line iteration. If in doubt, return true.
Base: Slurp up an entire file up to 100K, see if there are any
matches in it, and if so, let us know so we can iterate over it
directly. If it's bigger than 100K or the match is inverted, we
have to do the line-by-line, too.
=cut
sub needs_line_scan {
return FAIL();
}
=head2 $res->reset()
Resets the resource back to the beginning. This is only called if
C<needs_line_scan()> is true, but not always if C<needs_line_scan()>
is true.
=cut
sub reset {
return FAIL();
}
=head2 $res->close()
API: Close the resource.
=cut
sub close {
return FAIL();
}
=head2 $res->clone
Clones this resource.
=cut
sub clone {
return FAIL();
}
=head2 $res->firstliney
Returns the first line (or first 250 characters, whichever comes first of a
resource). Resource subclasses are encouraged to cache this value.
=cut
sub firstliney {
return FAIL();
}
1;
|