1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
|
package ExtUtils::Manifest;
=head1 NAME
ExtUtils::Manifest - utilities to write and check a MANIFEST file
=head1 SYNOPSIS
C<require ExtUtils::Manifest;>
C<ExtUtils::Manifest::mkmanifest;>
C<ExtUtils::Manifest::manicheck;>
C<ExtUtils::Manifest::filecheck;>
C<ExtUtils::Manifest::fullcheck;>
C<ExtUtils::Manifest::skipcheck;>
C<ExtUtild::Manifest::manifind();>
C<ExtUtils::Manifest::maniread($file);>
C<ExtUtils::Manifest::manicopy($read,$target,$how);>
=head1 DESCRIPTION
Mkmanifest() writes all files in and below the current directory to a
file named C<MANIFEST> in the current directory. It works similar to
find . -print
but in doing so checks each line in an existing C<MANIFEST> file and
includes any comments that are found in the existing C<MANIFEST> file
in the new one. Anything between white space and an end of line within
a C<MANIFEST> file is considered to be a comment. Filenames and
comments are seperated by one or more TAB characters in the
output. All files that match any regular expression in a file
C<MANIFEST.SKIP> (if such a file exists) are ignored.
Manicheck() checks if all the files within a C<MANIFEST> in the current
directory really do exist.
Filecheck() finds files below the current directory that are not
mentioned in the C<MANIFEST> file. An optional file C<MANIFEST.SKIP>
will be consulted. Any file matching a regular expression in such a
file 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 your
C<MANIFEST.SKIP> file.
Manifind() retruns a hash reference. The keys of the hash are the
files found below the current directory.
Maniread($file) reads a named C<MANIFEST> file (defaults to
C<MANIFEST> in the current directory) and returns a HASH reference
with files being the keys and comments being the values of the HASH.
I<Manicopy($read,$target,$how)> copies the files that are the keys in
the HASH I<%$read> to the named target directory. The HASH reference
I<$read> is typically returned by the maniread() function. This
function is useful for producing a directory tree identical to the
intended distribution tree. The third parameter $how can be used to
specify a different methods of "copying". Valid values are C<cp>,
which actually copies the files, C<ln> which creates hard links, and
C<best> which mostly links the files but copies any symbolic link to
make a tree without any symbolic link. Best is the default.
=head1 MANIFEST.SKIP
The file MANIFEST.SKIP may contain regular expressions of files that
should be ignored by mkmanifest() and filecheck(). The regular
expressions should appear one on each line. A typical example:
\bRCS\b
^MANIFEST\.
^Makefile$
~$
\.html$
\.old$
^blib/
^MakeMaker-\d
=head1 EXPORT_OK
C<&mkmanifest>, C<&manicheck>, C<&filecheck>, C<&fullcheck>,
C<&maniread>, and C<&manicopy> are exportable.
=head1 DIAGNOSTICS
All 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 file
C<MANIFEST.SKIP>.
=item C<No such file:> I<file>
is reported if a file mentioned in a C<MANIFEST> file does not
exist.
=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 added
to MANIFEST. $Verbose is set to 1 by default.
=back
=head1 AUTHOR
Andreas Koenig F<E<lt>koenig@franz.ww.TU-Berlin.DEE<gt>>
=cut
require Exporter;
@ISA=('Exporter');
@EXPORT_OK = ('mkmanifest', 'manicheck', 'fullcheck', 'filecheck',
'skipcheck', 'maniread', 'manicopy');
use Config;
use File::Find;
use Carp;
$Debug = 0;
$Verbose = 1;
$Is_VMS = $Config{'osname'} eq 'VMS';
$VERSION = $VERSION = substr(q$Revision: 1.15 $,10,4);
$Quiet = 0;
sub mkmanifest {
my $manimiss = 0;
my $read = maniread() or $manimiss++;
$read = {} if $manimiss;
my $matches = _maniskip();
my $found = manifind();
my($key,$val,$file,%all);
my %all = (%$found, %$read);
local *M;
rename "MANIFEST", "MANIFEST.bak" unless $manimiss;
open M, ">MANIFEST" or die "Could not open MANIFEST: $!";
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;
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|./||;
warn "Debug: diskfile $name\n" if $Debug;
$name =~ s#(.*)\.$#\L$1# if $Is_VMS;
$found->{$name} = "";}, ".");
$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 $file;
my(@missfile,@missentry);
if ($arg & 1){
my $found = manifind();
foreach $file (sort keys %$read){
warn "Debug: manicheck checking from MANIFEST $file\n" if $Debug;
unless ( exists $found->{$file} ) {
warn "No such file: $file\n" unless $Quiet;
push @missfile, $file;
}
}
}
if ($arg & 2){
$read ||= {};
my $matches = _maniskip();
my $found = manifind();
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} ) {
warn "Not in MANIFEST: $file\n" unless $Quiet;
push @missentry, $file;
}
}
}
(\@missfile,\@missentry);
}
sub maniread {
my ($mfile) = @_;
$mfile = "MANIFEST" unless defined $mfile;
my $read = {};
local *M;
unless (open M, $mfile){
warn "$mfile: $!";
return $read;
}
while (<M>){
chomp;
if ($Is_VMS) { /^(\S+)/ and $read->{"\L$1"}=$_; }
else { /^(\S+)\s*(.*)/ and $read->{$1}=$2; }
}
close M;
$read;
}
# returns an anonymous sub that decides if an argument matches
sub _maniskip {
my ($mfile) = @_;
my $matches = sub {0};
my @skip ;
my $mfile = "MANIFEST.SKIP" unless defined $mfile;
local *M;
return $matches unless -f $mfile;
open M, $mfile or return $matches;
while (<M>){
chomp;
next if /^\s*$/;
push @skip, $_;
}
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' unless defined $how && $how;
require File::Path;
require File::Basename;
my(%dirs,$file);
$target = VMS::Filespec::unixify($target) if $Is_VMS;
umask 0;
foreach $file (keys %$read){
$file = VMS::Filespec::unixify($file) if $Is_VMS;
my $dir = File::Basename::dirname($file);
File::Path::mkpath(["$target/$dir"],1,0755);
if ($Is_VMS) { vms_cp_if_diff($file,"$target/$file"); }
else { cp_if_diff($file, "$target/$file", $how); }
}
}
sub cp_if_diff {
my($from,$to, $how)=@_;
-f $from || carp "$0: $from not found";
my($diff) = 0;
local(*F,*T);
open(F,$from) or croak "Can't read $from: $!\n";
if (open(T,$to)) {
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: $!";
}
&$how($from, $to);
}
}
# Do the comparisons here rather than spawning off another process
sub vms_cp_if_diff {
my($from,$to) = @_;
my($diff) = 0;
local(*F,*T);
open(F,$from) or croak "Can't read $from: $!\n";
if (open(T,$to)) {
while (<F>) { $diff++,last if $_ ne <T>; }
$diff++ unless eof(T);
close T;
}
else { $diff++; }
close F;
if ($diff) {
system('copy',vmsify($from),vmsify($to)) & 1
or confess "Copy failed: $!";
}
}
sub cp {
my ($srcFile, $dstFile) = @_;
my $buf;
open (IN,"<$srcFile") or die "Can't open input $srcFile: $!\n";
open (OUT,">$dstFile") or die "Can't open output $dstFile: $!\n";
my ($perm,$access,$mod) = (stat IN)[2,8,9];
syswrite(OUT, $buf, $len) while $len = sysread(IN, $buf, 8192);
close IN;
close OUT;
utime $access, $mod, $dstFile;
# chmod a+rX-w,go-w
chmod( 0444 | ( $perm & 0111 ? 0111 : 0 ), $dstFile );
}
sub ln {
my ($srcFile, $dstFile) = @_;
link($srcFile, $dstFile);
local($_) = $dstFile; # chmod a+r,go-w+X (except "X" only applies to u=x)
my $mode= 0444 | (stat)[2] & 0700;
chmod( $mode | ( $mode & 0100 ? 0111 : 0 ), $_ );
}
sub best {
my ($srcFile, $dstFile) = @_;
if (-l $srcFile) {
cp($srcFile, $dstFile);
} else {
ln($srcFile, $dstFile);
}
}
1;
|