NAME
App::GitFind::FileProcessor - Test a file against a set of criteria
SYNOPSIS
my $hrArgs = App::GitFind::cmdline::Parse(\@ARGV);
my $runner = App::GitFind::FileProcessor->new(-expr => $hrArgs->{expr});
$runner->process($some_entry_or_other);
process
Process a single file, represented as an App::GitFind::Entry instance. Returns the Boolean result of the expression. Note that the specific exit codes from -exec
and similar actions are lost. Usage:
$runner->process([-entry=>]$entry);
callback
Returns a callback that will process an entry. Usage:
my $callback = $processor->callback([$log]); # Create the callback
$callback->($entry); # Invoke the callback
The optional $log
parameter, if truthy, provides extra debug output.
dot_relative_path
Given a path, adds ./
or .\
unless it is an absolute path. This is a hacked workaround for the issue noted in https://bitbucket.org/shlomif/perl-file-find-object/issues/3/not-consistently-present-in-returned-paths.
process_NOT
Process a negation of a single expression. Usage:
$runner->process_NOT($entry, $expr);
Even though the name of the parameter is exprs
for consistency with AND, OR, and SEQ, only a single expression is allowed.
process_AND
Process a conjunction of expressions. Usage:
$runner->process_AND($entry, [$expr1, ...]);
process_OR
Process a disjunction of expressions. Usage:
$runner->process_OR($entry, [$expr1, ...]);
process_SEQ
Process a sequence of expressions. Usage:
$runner->process_SEQ($entry, [$expr1, ...]);
AUTHOR
Christopher White, <cxw at cpan.org>
LICENSE AND COPYRIGHT
Copyright 2019 Christopher White. Portions copyright 2019 D3 Engineering, LLC.
This program is distributed under the MIT (X11) License: http://www.opensource.org/licenses/mit-license.php
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.