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

📄 manifest.pm

📁 UNIX下perl实现代码
💻 PM
字号:
package ExtUtils::Manifest;require Exporter;use Config;use File::Find;use File::Copy 'copy';use Carp;use strict;use vars qw($VERSION @ISA @EXPORT_OK	    $Is_MacOS $Is_VMS $Debug $Verbose $Quiet $MANIFEST $found);$VERSION = substr(q$Revision: 1.33 $, 10);@ISA=('Exporter');@EXPORT_OK = ('mkmanifest', 'manicheck', 'fullcheck', 'filecheck', 	      'skipcheck', 'maniread', 'manicopy');$Is_MacOS = $^O eq 'MacOS';$Is_VMS = $^O eq 'VMS';if ($Is_VMS) { require File::Basename }$Debug = 0;$Verbose = 1;$Quiet = 0;$MANIFEST = 'MANIFEST';# Really cool fix from Ilya :)unless (defined $Config{d_link}) {    no warnings;    *ln = \&cp;}sub mkmanifest {    my $manimiss = 0;    my $read = maniread() or $manimiss++;    $read = {} if $manimiss;    local *M;    rename $MANIFEST, "$MANIFEST.bak" unless $manimiss;    open M, ">$MANIFEST" or die "Could not open $MANIFEST: $!";    my $matches = _maniskip();    my $found = manifind();    my($key,$val,$file,%all);    %all = (%$found, %$read);    $all{$MANIFEST} = ($Is_VMS ? "$MANIFEST\t\t" : '') . 'This list of files'        if $manimiss; # add new MANIFEST to known file list    foreach $file (sort keys %all) {	next if &$matches($file);	if ($Verbose){	    warn "Added to $MANIFEST: $file\n" unless exists $read->{$file};	}	my $text = $all{$file};	($file,$text) = split(/\s+/,$text,2) if $Is_VMS && $text;	$file = _unmacify($file);	my $tabs = (5 - (length($file)+1)/8);	$tabs = 1 if $tabs < 1;	$tabs = 0 unless $text;	print M $file, "\t" x $tabs, $text, "\n";    }    close M;}sub manifind {    local $found = {};    find(sub {return if -d $_;	      (my $name = $File::Find::name) =~ s|^\./||;	      $name =~ s/^:([^:]+)$/$1/ if $Is_MacOS;	      warn "Debug: diskfile $name\n" if $Debug;	      $name =~ s#(.*)\.$#\L$1# if $Is_VMS;	      $found->{$name} = "";}, $Is_MacOS ? ":" : ".");    $found;}sub fullcheck {    _manicheck(3);}sub manicheck {    return @{(_manicheck(1))[0]};}sub filecheck {    return @{(_manicheck(2))[1]};}sub skipcheck {    _manicheck(6);}sub _manicheck {    my($arg) = @_;    my $read = maniread();    my $found = manifind();    my $file;    my $dosnames=(defined(&Dos::UseLFN) && Dos::UseLFN()==0);    my(@missfile,@missentry);    if ($arg & 1){	foreach $file (sort keys %$read){	    warn "Debug: manicheck checking from $MANIFEST $file\n" if $Debug;            if ($dosnames){                $file = lc $file;                $file =~ s=(\.(\w|-)+)=substr ($1,0,4)=ge;                $file =~ s=((\w|-)+)=substr ($1,0,8)=ge;            }	    unless ( exists $found->{$file} ) {		warn "No such file: $file\n" unless $Quiet;		push @missfile, $file;	    }	}    }    if ($arg & 2){	$read ||= {};	my $matches = _maniskip();	my $skipwarn = $arg & 4;	foreach $file (sort keys %$found){	    if (&$matches($file)){		warn "Skipping $file\n" if $skipwarn;		next;	    }	    warn "Debug: manicheck checking from disk $file\n" if $Debug;	    unless ( exists $read->{$file} ) {		my $canon = "\t" . _unmacify($file) if $Is_MacOS;		warn "Not in $MANIFEST: $file$canon\n" unless $Quiet;		push @missentry, $file;	    }	}    }    (\@missfile,\@missentry);}sub maniread {    my ($mfile) = @_;    $mfile ||= $MANIFEST;    my $read = {};    local *M;    unless (open M, $mfile){	warn "$mfile: $!";	return $read;    }    while (<M>){	chomp;	next if /^#/;	if ($Is_MacOS) {	    my($item,$text) = /^(\S+)\s*(.*)/;	    $item = _macify($item);	    $item =~ s/\\([0-3][0-7][0-7])/sprintf("%c", oct($1))/ge;	    $read->{$item}=$text;	}	elsif ($Is_VMS) {	    my($file)= /^(\S+)/;	    next unless $file;	    my($base,$dir) = File::Basename::fileparse($file);	    # Resolve illegal file specifications in the same way as tar	    $dir =~ tr/./_/;	    my(@pieces) = split(/\./,$base);	    if (@pieces > 2) { $base = shift(@pieces) . '.' . join('_',@pieces); }	    my $okfile = "$dir$base";	    warn "Debug: Illegal name $file changed to $okfile\n" if $Debug;	    $read->{"\L$okfile"}=$_;	}	else { /^(\S+)\s*(.*)/ and $read->{$1}=$2; }    }    close M;    $read;}# returns an anonymous sub that decides if an argument matchessub _maniskip {    my ($mfile) = @_;    my $matches = sub {0};    my @skip ;    $mfile ||= "$MANIFEST.SKIP";    local *M;    return $matches unless -f $mfile;    open M, $mfile or return $matches;    while (<M>){	chomp;	next if /^#/;	next if /^\s*$/;	push @skip, _macify($_);    }    close M;    my $opts = $Is_VMS ? 'oi ' : 'o ';    my $sub = "\$matches = "	. "sub { my(\$arg)=\@_; return 1 if "	. join (" || ",  (map {s!/!\\/!g; "\$arg =~ m/$_/$opts"} @skip), 0)	. " }";    eval $sub;    print "Debug: $sub\n" if $Debug;    $matches;}sub manicopy {    my($read,$target,$how)=@_;    croak "manicopy() called without target argument" unless defined $target;    $how ||= 'cp';    require File::Path;    require File::Basename;    my(%dirs,$file);    $target = VMS::Filespec::unixify($target) if $Is_VMS;    File::Path::mkpath([ $target ],! $Quiet,$Is_VMS ? undef : 0755);    foreach $file (keys %$read){    	if ($Is_MacOS) {	    if ($file =~ m!:!) { 	   	my $dir = _maccat($target, $file);		$dir =~ s/[^:]+$//;	    	File::Path::mkpath($dir,1,0755);	    }	    cp_if_diff($file, _maccat($target, $file), $how);	} else {	    $file = VMS::Filespec::unixify($file) if $Is_VMS;	    if ($file =~ m!/!) { # Ilya, that hurts, I fear, or maybe not?		my $dir = File::Basename::dirname($file);		$dir = VMS::Filespec::unixify($dir) if $Is_VMS;		File::Path::mkpath(["$target/$dir"],! $Quiet,$Is_VMS ? undef : 0755);	    }	    cp_if_diff($file, "$target/$file", $how);	}    }}sub cp_if_diff {    my($from, $to, $how)=@_;    -f $from or carp "$0: $from not found";    my($diff) = 0;    local(*F,*T);    open(F,"< $from\0") or croak "Can't read $from: $!\n";    if (open(T,"< $to\0")) {	while (<F>) { $diff++,last if $_ ne <T>; }	$diff++ unless eof(T);	close T;    }    else { $diff++; }    close F;    if ($diff) {	if (-e $to) {	    unlink($to) or confess "unlink $to: $!";	}      STRICT_SWITCH: {	    best($from,$to), last STRICT_SWITCH if $how eq 'best';	    cp($from,$to), last STRICT_SWITCH if $how eq 'cp';	    ln($from,$to), last STRICT_SWITCH if $how eq 'ln';	    croak("ExtUtils::Manifest::cp_if_diff " .		  "called with illegal how argument [$how]. " .		  "Legal values are 'best', 'cp', and 'ln'.");	}    }}sub cp {    my ($srcFile, $dstFile) = @_;    my ($perm,$access,$mod) = (stat $srcFile)[2,8,9];    copy($srcFile,$dstFile);    utime $access, $mod + ($Is_VMS ? 1 : 0), $dstFile;    # chmod a+rX-w,go-w    chmod(  0444 | ( $perm & 0111 ? 0111 : 0 ),  $dstFile ) unless ($^O eq 'MacOS');}sub ln {    my ($srcFile, $dstFile) = @_;    return &cp if $Is_VMS or ($^O eq 'MSWin32' and Win32::IsWin95());    link($srcFile, $dstFile);    local($_) = $dstFile; # chmod a+r,go-w+X (except "X" only applies to u=x)    my $mode= 0444 | (stat)[2] & 0700;    if (! chmod(  $mode | ( $mode & 0100 ? 0111 : 0 ),  $_  )) {       unlink $dstFile;       return;    }    1;}sub best {    my ($srcFile, $dstFile) = @_;    if (-l $srcFile) {	cp($srcFile, $dstFile);    } else {	ln($srcFile, $dstFile) or cp($srcFile, $dstFile);    }}sub _macify {    my($file) = @_;    return $file unless $Is_MacOS;        $file =~ s|^\./||;    if ($file =~ m|/|) {	$file =~ s|/+|:|g;	$file = ":$file";    }        $file;}sub _maccat {    my($f1, $f2) = @_;        return "$f1/$f2" unless $Is_MacOS;        $f1 .= ":$f2";    $f1 =~ s/([^:]:):/$1/g;    return $f1;}sub _unmacify {    my($file) = @_;    return $file unless $Is_MacOS;        $file =~ s|^:||;    $file =~ s|([/ \n])|sprintf("\\%03o", unpack("c", $1))|ge;    $file =~ y|:|/|;        $file;}1;__END__=head1 NAMEExtUtils::Manifest - utilities to write and check a MANIFEST file=head1 SYNOPSIS    require ExtUtils::Manifest;    ExtUtils::Manifest::mkmanifest;    ExtUtils::Manifest::manicheck;    ExtUtils::Manifest::filecheck;    ExtUtils::Manifest::fullcheck;    ExtUtils::Manifest::skipcheck;    ExtUtils::Manifest::manifind();    ExtUtils::Manifest::maniread($file);    ExtUtils::Manifest::manicopy($read,$target,$how);=head1 DESCRIPTIONmkmanifest() writes all files in and below the current directory to afile named in the global variable $ExtUtils::Manifest::MANIFEST (whichdefaults to C<MANIFEST>) in the current directory. It works similar to    find . -printbut in doing so checks each line in an existing C<MANIFEST> file andincludes any comments that are found in the existing C<MANIFEST> filein the new one. Anything between white space and an end of line withina C<MANIFEST> file is considered to be a comment. Filenames andcomments are separated by one or more TAB characters in theoutput. All files that match any regular expression in a fileC<MANIFEST.SKIP> (if such a file exists) are ignored.manicheck() checks if all the files within a C<MANIFEST> in thecurrent directory really do exist. It only reports discrepancies andexits silently if MANIFEST and the tree below the current directoryare in sync.filecheck() finds files below the current directory that are notmentioned in the C<MANIFEST> file. An optional file C<MANIFEST.SKIP>will be consulted. Any file matching a regular expression in such afile will not be reported as missing in the C<MANIFEST> file.fullcheck() does both a manicheck() and a filecheck().skipcheck() lists all the files that are skipped due to yourC<MANIFEST.SKIP> file.manifind() returns a hash reference. The keys of the hash are thefiles found below the current directory.maniread($file) reads a named C<MANIFEST> file (defaults toC<MANIFEST> in the current directory) and returns a HASH referencewith files being the keys and comments being the values of the HASH.Blank lines and lines which start with C<#> in the C<MANIFEST> fileare discarded.C<manicopy($read,$target,$how)> copies the files that are the keys inthe HASH I<%$read> to the named target directory. The HASH reference$read is typically returned by the maniread() function. Thisfunction is useful for producing a directory tree identical to theintended distribution tree. The third parameter $how can be used tospecify a different methods of "copying". Valid values are C<cp>,which actually copies the files, C<ln> which creates hard links, andC<best> which mostly links the files but copies any symbolic link tomake a tree without any symbolic link. Best is the default.=head1 MANIFEST.SKIPThe file MANIFEST.SKIP may contain regular expressions of files thatshould be ignored by mkmanifest() and filecheck(). The regularexpressions should appear one on each line. Blank lines and lineswhich start with C<#> are skipped.  Use C<\#> if you need a regularexpression to start with a sharp character. A typical example:    \bRCS\b    ^MANIFEST\.    ^Makefile$    ~$    \.html$    \.old$    ^blib/    ^MakeMaker-\d=head1 EXPORT_OKC<&mkmanifest>, C<&manicheck>, C<&filecheck>, C<&fullcheck>,C<&maniread>, and C<&manicopy> are exportable.=head1 GLOBAL VARIABLESC<$ExtUtils::Manifest::MANIFEST> defaults to C<MANIFEST>. Changing itresults in both a different C<MANIFEST> and a differentC<MANIFEST.SKIP> file. This is useful if you want to maintaindifferent distributions for different audiences (say a user versionand a developer version including RCS).C<$ExtUtils::Manifest::Quiet> defaults to 0. If set to a true value,all functions act silently.=head1 DIAGNOSTICSAll diagnostic output is sent to C<STDERR>.=over=item C<Not in MANIFEST:> I<file>is reported if a file is found, that is missing in the C<MANIFEST>file which is excluded by a regular expression in the fileC<MANIFEST.SKIP>.=item C<No such file:> I<file>is reported if a file mentioned in a C<MANIFEST> file does notexist.=item C<MANIFEST:> I<$!>is reported if C<MANIFEST> could not be opened.=item C<Added to MANIFEST:> I<file>is reported by mkmanifest() if $Verbose is set and a file is addedto MANIFEST. $Verbose is set to 1 by default.=back=head1 SEE ALSOL<ExtUtils::MakeMaker> which has handy targets for most of the functionality.=head1 AUTHORAndreas Koenig <F<koenig@franz.ww.TU-Berlin.DE>>=cut

⌨️ 快捷键说明

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