⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 installed.pm

📁 视频监控网络部分的协议ddns,的模块的实现代码,请大家大胆指正.
💻 PM
字号:
package ExtUtils::Installed;use 5.00503;use strict;use Carp qw();use ExtUtils::Packlist;use ExtUtils::MakeMaker;use Config;use File::Find;use File::Basename;use File::Spec;my $Is_VMS = $^O eq 'VMS';my $DOSISH = ($^O =~ /^(MSWin\d\d|os2|dos|mint)$/);require VMS::Filespec if $Is_VMS;use vars qw($VERSION);$VERSION = '1.43';$VERSION = eval $VERSION;sub _is_prefix {    my ($self, $path, $prefix) = @_;    return unless defined $prefix && defined $path;    if( $Is_VMS ) {        $prefix = VMS::Filespec::unixify($prefix);        $path   = VMS::Filespec::unixify($path);    }    # Sloppy Unix path normalization.    $prefix =~ s{/+}{/}g;    $path   =~ s{/+}{/}g;    return 1 if substr($path, 0, length($prefix)) eq $prefix;    if ($DOSISH) {        $path =~ s|\\|/|g;        $prefix =~ s|\\|/|g;        return 1 if $path =~ m{^\Q$prefix\E}i;    }    return(0);}sub _is_doc {    my ($self, $path) = @_;    my $man1dir = $self->{':private:'}{Config}{man1direxp};    my $man3dir = $self->{':private:'}{Config}{man3direxp};    return(($man1dir && $self->_is_prefix($path, $man1dir))           ||           ($man3dir && $self->_is_prefix($path, $man3dir))           ? 1 : 0)}sub _is_type {    my ($self, $path, $type) = @_;    return 1 if $type eq "all";    return($self->_is_doc($path)) if $type eq "doc";    if ($type eq "prog") {        return($self->_is_prefix($path, $self->{':private:'}{Config}{prefix} || $self->{':private:'}{Config}{prefixexp})               &&               !($self->_is_doc($path))               ? 1 : 0);    }    return(0);}sub _is_under {    my ($self, $path, @under) = @_;    $under[0] = "" if (! @under);    foreach my $dir (@under) {        return(1) if ($self->_is_prefix($path, $dir));    }    return(0);}sub new {    my ($class) = shift(@_);    $class = ref($class) || $class;    my %args = @_;    my $self = {};    if ($args{config_override}) {        eval {            $self->{':private:'}{Config} = { %{$args{config_override}} };        } or Carp::croak(            "The 'config_override' parameter must be a hash reference."        );    }    else {        $self->{':private:'}{Config} = \%Config;    }        for my $tuple ([inc_override => INC => [ @INC ] ],                   [ extra_libs => EXTRA => [] ])     {        my ($arg,$key,$val)=@$tuple;        if ( $args{$arg} ) {            eval {                $self->{':private:'}{$key} = [ @{$args{$arg}} ];            } or Carp::croak(                "The '$arg' parameter must be an array reference."            );        }        elsif ($val) {            $self->{':private:'}{$key} = $val;        }    }    {        my %dupe;        @{$self->{':private:'}{INC}} = grep { -e $_ && !$dupe{$_}++ }            @{$self->{':private:'}{INC}}, @{$self->{':private:'}{EXTRA}};            }                    my $perl5lib = defined $ENV{PERL5LIB} ? $ENV{PERL5LIB} : "";    my @dirs = ( $self->{':private:'}{Config}{archlibexp},                 $self->{':private:'}{Config}{sitearchexp},                 split(/\Q$Config{path_sep}\E/, $perl5lib),                 @{$self->{':private:'}{EXTRA}},               );           # File::Find does not know how to deal with VMS filepaths.    if( $Is_VMS ) {        $_ = VMS::Filespec::unixify($_)             for @dirs;    }    if ($DOSISH) {        s|\\|/|g for @dirs;    }    my $archlib = $dirs[0];        # Read the core packlist    $self->{Perl}{packlist} =      ExtUtils::Packlist->new( File::Spec->catfile($archlib, '.packlist') );    $self->{Perl}{version} = $self->{':private:'}{Config}{version};    # Read the module packlists    my $sub = sub {        # Only process module .packlists        return if $_ ne ".packlist" || $File::Find::dir eq $archlib;        # Hack of the leading bits of the paths & convert to a module name        my $module = $File::Find::name;        my $found;        for (@dirs) {            $found = $module =~ s!\Q$_\E/?auto/(.*)/.packlist!$1!s                and last;        }                    unless ($found) {            # warn "Woah! \$_=$_\n\$module=$module\n\$File::Find::dir=$File::Find::dir\n",            #    join ("\n",@dirs);            return;        }                    my $modfile = "$module.pm";        $module =~ s!/!::!g;        # Find the top-level module file in @INC        $self->{$module}{version} = '';        foreach my $dir (@{$self->{':private:'}{INC}}) {            my $p = File::Spec->catfile($dir, $modfile);            if (-r $p) {                $module = _module_name($p, $module) if $Is_VMS;                $self->{$module}{version} = MM->parse_version($p);                last;            }        }        # Read the .packlist        $self->{$module}{packlist} =          ExtUtils::Packlist->new($File::Find::name);    };    my %dupe;    @dirs= grep { -e $_ && !$dupe{$_}++ } @dirs;    $self->{':private:'}{LIBDIRS} = \@dirs;        find($sub, @dirs) if @dirs;    return(bless($self, $class));}# VMS's non-case preserving file-system means the package name can't# be reconstructed from the filename.sub _module_name {    my($file, $orig_module) = @_;    my $module = '';    if (open PACKFH, $file) {        while (<PACKFH>) {            if (/package\s+(\S+)\s*;/) {                my $pack = $1;                # Make a sanity check, that lower case $module                # is identical to lowercase $pack before                # accepting it                if (lc($pack) eq lc($orig_module)) {                    $module = $pack;                    last;                }            }        }        close PACKFH;    }    print STDERR "Couldn't figure out the package name for $file\n"      unless $module;    return $module;}sub modules {    my ($self) = @_;    # Bug/feature of sort in scalar context requires this.    return wantarray        ? sort grep { not /^:private:$/ } keys %$self        : grep { not /^:private:$/ } keys %$self;}sub files {    my ($self, $module, $type, @under) = @_;    # Validate arguments    Carp::croak("$module is not installed") if (! exists($self->{$module}));    $type = "all" if (! defined($type));    Carp::croak('type must be "all", "prog" or "doc"')        if ($type ne "all" && $type ne "prog" && $type ne "doc");    my (@files);    foreach my $file (keys(%{$self->{$module}{packlist}})) {        push(@files, $file)          if ($self->_is_type($file, $type) &&              $self->_is_under($file, @under));    }    return(@files);}sub directories {    my ($self, $module, $type, @under) = @_;    my (%dirs);    foreach my $file ($self->files($module, $type, @under)) {        $dirs{dirname($file)}++;    }    return sort keys %dirs;}sub directory_tree {    my ($self, $module, $type, @under) = @_;    my (%dirs);    foreach my $dir ($self->directories($module, $type, @under)) {        $dirs{$dir}++;        my ($last) = ("");        while ($last ne $dir) {            $last = $dir;            $dir = dirname($dir);            last if !$self->_is_under($dir, @under);            $dirs{$dir}++;        }    }    return(sort(keys(%dirs)));}sub validate {    my ($self, $module, $remove) = @_;    Carp::croak("$module is not installed") if (! exists($self->{$module}));    return($self->{$module}{packlist}->validate($remove));}sub packlist {    my ($self, $module) = @_;    Carp::croak("$module is not installed") if (! exists($self->{$module}));    return($self->{$module}{packlist});}sub version {    my ($self, $module) = @_;    Carp::croak("$module is not installed") if (! exists($self->{$module}));    return($self->{$module}{version});}1;__END__=head1 NAMEExtUtils::Installed - Inventory management of installed modules=head1 SYNOPSIS   use ExtUtils::Installed;   my ($inst) = ExtUtils::Installed->new();   my (@modules) = $inst->modules();   my (@missing) = $inst->validate("DBI");   my $all_files = $inst->files("DBI");   my $files_below_usr_local = $inst->files("DBI", "all", "/usr/local");   my $all_dirs = $inst->directories("DBI");   my $dirs_below_usr_local = $inst->directory_tree("DBI", "prog");   my $packlist = $inst->packlist("DBI");=head1 DESCRIPTIONExtUtils::Installed  provides a standard way to find out what core and modulefiles have been installed.  It uses the information stored in .packlist filescreated during installation to provide this information.  In addition itprovides facilities to classify the installed files and to extract directoryinformation from the .packlist files.=head1 USAGEThe new() function searches for all the installed .packlists on the system, andstores their contents. The .packlists can be queried with the functionsdescribed below. Where it searches by default is determined by the settings foundin C<%Config::Config>, and what the value is of the PERL5LIB environment variable.=head1 FUNCTIONS=over 4=item new()This takes optional named parameters. Without parameters, thissearches for all the installed .packlists on the system usinginformation from C<%Config::Config> and the default module searchpaths C<@INC>. The packlists are read using theL<ExtUtils::Packlist> module.If the named parameter C<config_override> is specified,it should be a reference to a hash which contains all informationusually found in C<%Config::Config>. For example, you can obtainthe configuration information for a separate perl installation andpass that in.    my $yoda_cfg  = get_fake_config('yoda');    my $yoda_inst = ExtUtils::Installed->new(config_override=>$yoda_cfg);Similarly, the parameter C<inc_override> may be a reference to anarray which is used in place of the default module search pathsfrom C<@INC>.     use Config;    my @dirs = split(/\Q$Config{path_sep}\E/, $ENV{PERL5LIB});    my $p5libs = ExtUtils::Installed->new(inc_override=>\@dirs);The parameter c<extra_libs> can be used to specify B<additional> paths to search for installed modules. For instance     my $installed = ExtUtils::Installed->new(extra_libs=>["/my/lib/path"]);This should only be necessary if C</my/lib/path> is not in PERL5LIB.=item modules()This returns a list of the names of all the installed modules.  The perl 'core'is given the special name 'Perl'.=item files()This takes one mandatory parameter, the name of a module.  It returns a list ofall the filenames from the package.  To obtain a list of core perl files, usethe module name 'Perl'.  Additional parameters are allowed.  The first is oneof the strings "prog", "doc" or "all", to select either just program files,just manual files or all files.  The remaining parameters are a list ofdirectories. The filenames returned will be restricted to those under thespecified directories.=item directories()This takes one mandatory parameter, the name of a module.  It returns a list ofall the directories from the package.  Additional parameters are allowed.  Thefirst is one of the strings "prog", "doc" or "all", to select either justprogram directories, just manual directories or all directories.  The remainingparameters are a list of directories. The directories returned will berestricted to those under the specified directories.  This method returns onlythe leaf directories that contain files from the specified module.=item directory_tree()This is identical in operation to directories(), except that it includes all theintermediate directories back up to the specified directories.=item validate()This takes one mandatory parameter, the name of a module.  It checks that allthe files listed in the modules .packlist actually exist, and returns a list ofany missing files.  If an optional second argument which evaluates to true isgiven any missing files will be removed from the .packlist=item packlist()This returns the ExtUtils::Packlist object for the specified module.=item version()This returns the version number for the specified module.=back=head1 EXAMPLESee the example in L<ExtUtils::Packlist>.=head1 AUTHORAlan Burlison <Alan.Burlison@uk.sun.com>=cut

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -