Debian::DpkgLists - scan /var/lib/dpkg/info/*.list for files/patterns


DhMakePerl documentation Contained in the DhMakePerl distribution.

Index


Code Index:

NAME

Top

Debian::DpkgLists - scan /var/lib/dpkg/info/*.list for files/patterns

SYNOPSIS

Top

    my @packages = Debian::DpkgLists->scan_full_path('/full/file/path');
    my @packages = Debian::DpkgLists->scan_partial_path('file/path');
    my @packages = Debian::DpkgLists->scan_pattern(qr{freedom$});
    my @packages = Debian::DpkgLists->scan_perl_mod('Some::Module');

DESCRIPTION

Top

Debian::DpkgLists is a module for easy searching of dpkg(1)'s package file lists. These are located in /var/lib/dpkg/info/*.list and contain a simple list of full file names (including the leading slash).

There are a couple of different class methods for searching by full or partial path, a regular expression or a Perl module name.

Note that dpkg's file lists represent only dpkg's idea of what is installed on the system. If you want to also search in packages, available from the Debian archive but not installed locally, see Debian::AptContents.

CLASS-METHODS

Top

scan_full_path ( path )

Scans dpkg file lists for files, whose full path is equal to path. Use when you have the full path of the file you want, like /usr/bin/perl.

Returns a (possibly empty) list of packages containing path.

scan_partial_path ( path )

Scans dpkg file lists for files, whose full path ends with path. Use when you only care about the file name or other trailing portion of the full path like bin/perl (matches /usr/bin/perl and /sbin/perl).

Returns a (possibly empty) list of packages containing files whose full path ends with path.

scan_pattern ( pattern )

Scans dpkg file lists for files, whose full path matched pattern.

Returns a (possibly empty) list of packages containing files whose full path matches pattern.

scan_perl_mod ( Module::Name )

Scans dpkg file lists for files, corresponding to given Module::Name. This is a shorthand method for scan_pattern with a pattern that matches /Module/Name.pm$ in all directories in @INC.

Returns a (possibly empty) list of packages containing possible Module::Name files.

AUTHOR

Top

Damyan Ivanov <dmn@debian.org>

COPYRIGHT & LICENSE

Top


DhMakePerl documentation Contained in the DhMakePerl distribution.
package Debian::DpkgLists;

use strict;
use warnings;
use Cwd;

sub _cat_lists
{
    my ( $class, $callback ) = @_;
    while ( defined( my $f = </var/lib/dpkg/info/*.list> ) ) {
        my $pkg = $f;
        $pkg =~ s{^/var/lib/dpkg/info/}{};
        $pkg =~ s/\.list$//;
        open my $fh, '<', $f or die "open($f): $!\n";
        while ( defined( my $l = <$fh> ) ) {
            chomp $l;
            &$callback( $pkg, $l );
        }
    }
}

sub scan_full_path
{
    my ( $class, $path ) = @_;

    my %found;
    $class->_cat_lists(
        sub {
            $found{ $_[0] } = 1 if $_[1] eq $path;
        }
    );

    return sort keys %found;
}

sub scan_partial_path {
    my ( $class, $path ) = @_;

    my $start = -length($path);
    my %result;
    $class->_cat_lists(
        sub {
            $result{ $_[0] } = 1 if substr( $_[1], $start ) eq $path;
        }
    );

    return sort keys %result;
}

sub scan_pattern {
    my ( $class, $pat ) = @_;

    my %result;
    $class->_cat_lists(
        sub {
            $result{ $_[0] } = 1 if $_[1] =~ $pat;
        }
    );

    return sort keys %result;
}

sub scan_perl_mod {
    my ( $class, $mod ) = @_;

    $mod =~ s{::}{/}g;
    $mod .= ".pm" unless $mod =~ /\.pm$/;

    my @dirs = grep { defined and m{^/} and not m{/usr/local/} }
        map { Cwd::realpath($_) } @INC;
    my $re
        = "^(?:"
            . join( '|', map( quotemeta($_), @dirs ) ) . ")/"
            . quotemeta($mod) . "\$";
    $re = qr($re);

    return $class->scan_pattern($re);
}

1;