Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

perl-File-Finder-0.53-bp154.1.19 RPM for noarch

From OpenSuSE Leap 15.4 for noarch

Name: perl-File-Finder Distribution: SUSE Linux Enterprise 15 SP4
Version: 0.53 Vendor: openSUSE
Release: bp154.1.19 Build date: Mon May 9 11:14:49 2022
Group: Development/Libraries/Perl Build host: sheep86
Size: 41357 Source RPM: perl-File-Finder-0.53-bp154.1.19.src.rpm
Packager: https://bugs.opensuse.org
Url: http://search.cpan.org/dist/File-Finder/
Summary: nice wrapper for File::Find ala find(1)
'File::Find' is great, but constructing the 'wanted' routine can sometimes
be a pain. This module provides a 'wanted'-writer, using syntax that is
directly mappable to the _find_ command's syntax.

Also, I find myself (heh) frequently just wanting the list of names that
match. With 'File::Find', I have to write a little accumulator, and then
access that from a closure. But with 'File::Finder', I can turn the problem
inside out.

A 'File::Finder' object contains a hash of 'File::Find' options, and a
series of steps that mimic _find_'s predicates. Initially, a 'File::Finder'
object has no steps. Each step method clones the previous object's options
and steps, and then adds the new step, returning the new object. In this
manner, an object can be grown, step by step, by chaining method calls.
Furthermore, a partial sequence can be created and held, and used as the
head of many different sequences.

For example, a step sequence that finds only files looks like:

  my $files = File::Finder->type('f');

Here, 'type' is acting as a class method and thus a constructor. An
instance of 'File::Finder' is returned, containing the one step to verify
that only files are selected. We could use this immediately as a
'File::Find::find' wanted routine, although it'd be uninteresting:

  use File::Find;
  find($files, "/tmp");

Calling a step method on an existing object adds the step, returning the
new object:

  my $files_print = $files->print;

And now if we use this with 'find', we get a nice display:

  find($files_print, "/tmp");

Of course, we didn't really need that second object: we could have
generated it on the fly:

  find($files->print, "/tmp");

'File::Find' supports options to modify behavior, such as depth-first
searching. The 'depth' step flags this in the options as well:

  my $files_depth_print = $files->depth->print;

However, the 'File::Finder' object needs to be told explictly to generate
an options hash for 'File::Find::find' to pass this information along:

  find($files_depth_print->as_options, "/tmp");

A 'File::Finder' object, like the _find_ command, supports AND, OR, NOT,
and parenthesized sub-expressions. AND binds tighter than OR, and is also
implied everywhere that it makes sense. Like _find_, the predicates are
computed in a "short-circuit" fashion, so that a false to the left of the
(implied) AND keeps the right side from being evaluated, including entire
parenthesized subexpressions. Similarly, if the left side of an OR is
false, the right side is evaluated, and if the left side of the OR is true,
the right side is skipped. Nested parens are handled properly. Parens are
indicated with the rather ugly 'left' and 'right' methods:

  my $big_or_old_files = $files->left->size("+50")->or->atime("+30")->right;

The parens here correspond directly to the parens in:

  find somewhere -type f '(' -size +50 -o -atime +30 ')'

and are needed so that the OR and the implied ANDs have the right nesting.

Besides passing the constructed 'File::Finder' object to
'File::Finder::find' directly as a 'wanted' routine or an options hash, you
can also call 'find' implictly, with 'in'. 'in' provides a list of starting
points, and returns all filenames that match the criteria.

For example, a list of all names in /tmp can be generated simply with:

 my @names = File::Finder->in("/tmp");

For more flexibility, use 'collect' to execute an arbitrary block in a list
context, concatenating all the results (similar to 'map'):

  my %sizes = File::Finder
    ->collect(sub { $File::Find::name => -s _ }, "/tmp");

That's all I can think of for now. The rest is in the detailed reference
below.

Provides

Requires

License

GPL-1.0+ or Artistic-1.0

Changelog

* Wed Feb 08 2017 mimi.vx@gmail.com
  - spec-cleaned
* Thu Apr 14 2011 coolo@opensuse.org
  - initial package 0.53
    * created by cpanspec 1.78.04

Files

/usr/lib/perl5/vendor_perl/5.26.1/File
/usr/lib/perl5/vendor_perl/5.26.1/File/Finder
/usr/lib/perl5/vendor_perl/5.26.1/File/Finder.pm
/usr/lib/perl5/vendor_perl/5.26.1/File/Finder/Steps.pm
/usr/lib/perl5/vendor_perl/5.26.1/x86_64-linux-thread-multi
/usr/share/doc/packages/perl-File-Finder
/usr/share/doc/packages/perl-File-Finder/Changes
/usr/share/doc/packages/perl-File-Finder/README
/usr/share/doc/packages/perl-File-Finder/TODO
/usr/share/man/man3/File::Finder.3pm.gz
/usr/share/man/man3/File::Finder::Steps.3pm.gz


Generated by rpm2html 1.8.1

Fabrice Bellet, Tue Apr 9 17:06:41 2024