File Coverage

lib/CPANPLUS/Internals/Utils.pm
Criterion Covered Total %
statement 198 237 83.5
branch 60 104 57.6
condition 26 52 50.0
subroutine 28 29 96.5
pod n/a
total 312 422 73.9


line stmt bran cond sub pod time code
1             package CPANPLUS::Internals::Utils;
2              
3 20     20   172 use strict;
  20         40  
  20         943  
4              
5 20     20   115 use CPANPLUS::Error;
  20         39  
  20         1835  
6 20     20   126 use CPANPLUS::Internals::Constants;
  20         56  
  20         9262  
7              
8 20     20   163 use Cwd qw[chdir cwd];
  20         60  
  20         1431  
9 20     20   11715 use File::Copy;
  20         80366  
  20         1486  
10 20     20   156 use Params::Check qw[check];
  20         81  
  20         1126  
11 20     20   121 use Module::Load::Conditional qw[can_load];
  20         37  
  20         1188  
12 20     20   122 use Locale::Maketext::Simple Class => 'CPANPLUS', Style => 'gettext';
  20         42  
  20         191  
13 20     20   5484 use version;
  20         43  
  20         141  
14              
15 20     20   3180 use vars qw[$VERSION];
  20         50  
  20         97136  
16             $VERSION = "0.9916";
17              
18             local $Params::Check::VERBOSE = 1;
19              
20             =pod
21              
22             =head1 NAME
23              
24             CPANPLUS::Internals::Utils - convenience functions for CPANPLUS
25              
26             =head1 SYNOPSIS
27              
28             my $bool = $cb->_mkdir( dir => 'blah' );
29             my $bool = $cb->_chdir( dir => 'blah' );
30             my $bool = $cb->_rmdir( dir => 'blah' );
31              
32             my $bool = $cb->_move( from => '/some/file', to => '/other/file' );
33             my $bool = $cb->_move( from => '/some/dir', to => '/other/dir' );
34              
35             my $cont = $cb->_get_file_contents( file => '/path/to/file' );
36              
37              
38             my $version = $cb->_perl_version( perl => $^X );
39              
40             =head1 DESCRIPTION
41              
42             C holds a few convenience functions for
43             CPANPLUS libraries.
44              
45             =head1 METHODS
46              
47             =head2 $cb->_mkdir( dir => '/some/dir' )
48              
49             C<_mkdir> creates a full path to a directory.
50              
51             Returns true on success, false on failure.
52              
53             =cut
54              
55             sub _mkdir {
56 17     17   442268 my $self = shift;
57              
58 17         129 my %hash = @_;
59              
60 17         104 my $tmpl = {
61             dir => { required => 1 },
62             };
63              
64 17 50       112 my $args = check( $tmpl, \%hash ) or (
65             error(loc( Params::Check->last_error ) ), return
66             );
67              
68 17 50       1460 unless( can_load( modules => { 'File::Path' => 0.0 } ) ) {
69 0         0 error( loc("Could not use File::Path! This module should be core!") );
70 0         0 return;
71             }
72              
73 17         179231 eval { File::Path::mkpath($args->{dir}) };
  17         12827  
74              
75 17 50       133 if($@) {
76 0         0 chomp($@);
77 0         0 error(loc(qq[Could not create directory '%1': %2], $args->{dir}, $@ ));
78 0         0 return;
79             }
80              
81 17         277 return 1;
82             }
83              
84             =pod
85              
86             =head2 $cb->_chdir( dir => '/some/dir' )
87              
88             C<_chdir> changes directory to a dir.
89              
90             Returns true on success, false on failure.
91              
92             =cut
93              
94             sub _chdir {
95 66     66   572 my $self = shift;
96 66         811 my %hash = @_;
97              
98 66         960 my $tmpl = {
99             dir => { required => 1, allow => DIR_EXISTS },
100             };
101              
102 66 100       697 my $args = check( $tmpl, \%hash ) or return;
103              
104 65 50       11931 unless( chdir $args->{dir} ) {
105 0         0 error( loc(q[Could not chdir into '%1'], $args->{dir}) );
106 0         0 return;
107             }
108              
109 65         658 return 1;
110             }
111              
112             =pod
113              
114             =head2 $cb->_rmdir( dir => '/some/dir' );
115              
116             Removes a directory completely, even if it is non-empty.
117              
118             Returns true on success, false on failure.
119              
120             =cut
121              
122             sub _rmdir {
123 1     1   885 my $self = shift;
124 1         8 my %hash = @_;
125              
126 1         5 my $tmpl = {
127             dir => { required => 1, allow => IS_DIR },
128             };
129              
130 1 50       7 my $args = check( $tmpl, \%hash ) or return;
131              
132 1 50       31 unless( can_load( modules => { 'File::Path' => 0.0 } ) ) {
133 0         0 error( loc("Could not use File::Path! This module should be core!") );
134 0         0 return;
135             }
136              
137 1         108 eval { File::Path::rmtree($args->{dir}) };
  1         404  
138              
139 1 50       15 if($@) {
140 0         0 chomp($@);
141 0         0 error(loc(qq[Could not delete directory '%1': %2], $args->{dir}, $@ ));
142 0         0 return;
143             }
144              
145 1         17 return 1;
146             }
147              
148             =pod
149              
150             =head2 $cb->_perl_version ( perl => 'some/perl/binary' );
151              
152             C<_perl_version> returns the version of a certain perl binary.
153             It does this by actually running a command.
154              
155             Returns the perl version on success and false on failure.
156              
157             =cut
158              
159             sub _perl_version {
160 19     19   1798 my $self = shift;
161 19         137 my %hash = @_;
162              
163 19         52 my $perl;
164 19         130 my $tmpl = {
165             perl => { required => 1, store => \$perl },
166             };
167              
168 19 50       122 check( $tmpl, \%hash ) or return;
169              
170 19         1671 my $perl_version;
171             ### special perl, or the one we are running under?
172 19 50       356 if( $perl eq $^X ) {
173             ### just load the config
174 19         332 require Config;
175 19         705 $perl_version = $Config::Config{version};
176              
177             } else {
178 0         0 my $cmd = $perl .
179             ' -MConfig -eprint+Config::config_vars+version';
180 0         0 ($perl_version) = (`$cmd` =~ /version='(.*)'/);
181             }
182              
183 19 50       345 return $perl_version if defined $perl_version;
184 0         0 return;
185             }
186              
187             =pod
188              
189             =head2 $cb->_version_to_number( version => $version );
190              
191             Returns a proper module version, or '0.0' if none was available.
192              
193             =cut
194              
195             sub _version_to_number {
196 71     71   10870 my $self = shift;
197 71         331 my %hash = @_;
198              
199 71         133 my $version;
200 71         400 my $tmpl = {
201             version => { default => '0.0', store => \$version },
202             };
203              
204 71 50       341 check( $tmpl, \%hash ) or return;
205              
206 71         6315 $version =~ s!_!!g; # *sigh*
207 71 100       925 return $version if $version =~ /^\d*(?:\.\d+)?$/;
208 8 100       71 if ( my ($vers) = $version =~ /^(v?\d+(?:\.\d+(?:\.\d+)?)?)/ ) {
209 6         21 return eval { version->parse($vers)->numify };
  6         149  
210             }
211 2         11 return '0.0';
212             }
213              
214             =pod
215              
216             =head2 $cb->_whoami
217              
218             Returns the name of the subroutine you're currently in.
219              
220             =cut
221              
222 1     1   1105 sub _whoami { my $name = (caller 1)[3]; $name =~ s/.+:://; $name }
  1         9  
  1         5  
223              
224             =pod
225              
226             =head2 _get_file_contents( file => $file );
227              
228             Returns the contents of a file
229              
230             =cut
231              
232             sub _get_file_contents {
233 63     63   1143 my $self = shift;
234 63         801 my %hash = @_;
235              
236 63         322 my $file;
237 63         784 my $tmpl = {
238             file => { required => 1, store => \$file }
239             };
240              
241 63 50       3063 check( $tmpl, \%hash ) or return;
242              
243 63 50       10970 my $fh = OPEN_FILE->($file) or return;
244 63         191 my $contents = do { local $/; <$fh> };
  63         423  
  63         3860  
245              
246 63         1789 return $contents;
247             }
248              
249             =pod
250              
251             =head2 $cb->_move( from => $file|$dir, to => $target );
252              
253             Moves a file or directory to the target.
254              
255             Returns true on success, false on failure.
256              
257             =cut
258              
259             sub _move {
260 2     2   1258 my $self = shift;
261 2         20 my %hash = @_;
262              
263 2         9 my $from; my $to;
264 2         19 my $tmpl = {
265             file => { required => 1, allow => [IS_FILE,IS_DIR],
266             store => \$from },
267             to => { required => 1, store => \$to }
268             };
269              
270 2 50       22 check( $tmpl, \%hash ) or return;
271              
272 2 100       56 if( File::Copy::move( $from, $to ) ) {
273 1         207 return 1;
274             } else {
275 1         421 error(loc("Failed to move '%1' to '%2': %3", $from, $to, $!));
276 1         16 return;
277             }
278             }
279              
280             =pod
281              
282             =head2 $cb->_copy( from => $file|$dir, to => $target );
283              
284             Moves a file or directory to the target.
285              
286             Returns true on success, false on failure.
287              
288             =cut
289              
290             sub _copy {
291 0     0   0 my $self = shift;
292 0         0 my %hash = @_;
293              
294 0         0 my($from,$to);
295 0         0 my $tmpl = {
296             file =>{ required => 1, allow => [IS_FILE,IS_DIR],
297             store => \$from },
298             to => { required => 1, store => \$to }
299             };
300              
301 0 0       0 check( $tmpl, \%hash ) or return;
302              
303 0 0       0 if( File::Copy::copy( $from, $to ) ) {
304 0         0 return 1;
305             } else {
306 0         0 error(loc("Failed to copy '%1' to '%2': %3", $from, $to, $!));
307 0         0 return;
308             }
309             }
310              
311             =head2 $cb->_mode_plus_w( file => '/path/to/file' );
312              
313             Sets the +w bit for the file.
314              
315             Returns true on success, false on failure.
316              
317             =cut
318              
319             sub _mode_plus_w {
320 188     188   2615 my $self = shift;
321 188         627 my %hash = @_;
322              
323 188         7206 require File::stat;
324              
325 188         60733 my $file;
326 188         941 my $tmpl = {
327             file => { required => 1, allow => IS_FILE, store => \$file },
328             };
329              
330 188 50       826 check( $tmpl, \%hash ) or return;
331              
332             ### set the mode to +w for a file and +wx for a dir
333 188         5523 my $x = File::stat::stat( $file );
334 188 100       36637 my $mask = -d $file ? 0100 : 0200;
335              
336 188 50 33     6418 if( $x and chmod( $x->mode|$mask, $file ) ) {
337 188         8302 return 1;
338              
339             } else {
340 0         0 error(loc("Failed to '%1' '%2': '%3'", 'chmod +w', $file, $!));
341 0         0 return;
342             }
343             }
344              
345             =head2 $uri = $cb->_host_to_uri( scheme => SCHEME, host => HOST, path => PATH );
346              
347             Turns a CPANPLUS::Config style C entry into an URI string.
348              
349             Returns the uri on success, and false on failure
350              
351             =cut
352              
353             sub _host_to_uri {
354 2     2   699 my $self = shift;
355 2         24 my %hash = @_;
356              
357 2         5 my($scheme, $host, $path);
358 2         30 my $tmpl = {
359             scheme => { required => 1, store => \$scheme },
360             host => { default => 'localhost', store => \$host },
361             path => { default => '', store => \$path },
362             };
363              
364 2 50       17 check( $tmpl, \%hash ) or return;
365              
366             ### it's an URI, so unixify the path.
367             ### VMS has a special method for just that
368 2         312 $path = ON_VMS
369             ? VMS::Filespec::unixify($path)
370             : File::Spec::Unix->catdir( File::Spec->splitdir( $path ) );
371              
372 2         31 return "$scheme://" . File::Spec::Unix->catdir( $host, $path );
373             }
374              
375             =head2 $cb->_vcmp( VERSION, VERSION );
376              
377             Normalizes the versions passed and does a '<=>' on them, returning the result.
378              
379             =cut
380              
381             sub _vcmp {
382 24     24   76 my $self = shift;
383 24         163 my ($x, $y) = @_;
384              
385 24         336 $x = $self->_version_to_number(version => $x);
386 24         102 $y = $self->_version_to_number(version => $y);
387              
388 24         383 return $x <=> $y;
389             }
390              
391             =head2 $cb->_home_dir
392              
393             Returns the user's homedir, or C if it could not be found
394              
395             =cut
396              
397             sub _home_dir {
398              
399 40 50   40   324 if ( can_load( modules => { 'File::HomeDir' => 0.0 } ) ) {
400 40 0 33     361776 if ( defined $ENV{APPDATA} && length $ENV{APPDATA} && !(ON_WIN32 or ON_CYGWIN) ) {
      50        
401 0         0 msg("'APPDATA' env var is set and not on MSWin32 or cygwin, " .
402             "please use 'PERL5_CPANPLUS_HOME' instead to change .cpanplus location", 1 );
403             }
404 40 50       202 return File::HomeDir->my_home if -d File::HomeDir->my_home;
405             }
406              
407             # Note: "USERPROFILE" is a MSWin32 thing and "HOME" is *not*.
408 0         0 my @os_home_envs = qw( APPDATA HOME USERPROFILE WINDIR SYS$LOGIN );
409              
410 0         0 for my $env ( @os_home_envs ) {
411 0 0       0 next unless exists $ENV{ $env };
412 0 0 0     0 next unless defined $ENV{ $env } && length $ENV{ $env };
413 0 0       0 return $ENV{ $env } if -d $ENV{ $env };
414             }
415              
416 0         0 return cwd();
417             }
418              
419             =head2 $path = $cb->_safe_path( path => $path );
420              
421             Returns a path that's safe to us on Win32 and VMS.
422              
423             Only cleans up the path on Win32 if the path exists.
424              
425             On VMS, it encodes dots to _ using C
426              
427             =cut
428              
429             sub _safe_path {
430 46     46   194 my $self = shift;
431              
432 46         474 my %hash = @_;
433              
434 46         129 my $path;
435 46         297 my $tmpl = {
436             path => { required => 1, store => \$path },
437             };
438              
439 46 50       247 check( $tmpl, \%hash ) or return;
440              
441 46         4101 if( ON_WIN32 ) {
442             ### only need to fix it up if there's spaces in the path
443             return $path unless $path =~ /\s+/;
444              
445             ### clean up paths if we are on win32
446             return Win32::GetShortPathName( $path ) || $path;
447              
448 0         0 } elsif ( ON_VMS ) {
449             ### XXX According to John Malmberg, there's an VMS issue:
450             ### catdir on VMS can not currently deal with directory components
451             ### with dots in them.
452             ### Fixing this is a three step procedure, which will work for
453             ### VMS in its traditional ODS-2 mode, and it will also work if
454             ### VMS is in the ODS-5 mode that is being implemented.
455             ### If the path is already in VMS syntax, assume that we are done.
456              
457             ### VMS format is a path with a trailing ']' or ':'
458             return $path if $path =~ /\:|\]$/;
459              
460             ### 1. Make sure that the value to be converted, $path is
461             ### in UNIX directory syntax by appending a '/' to it.
462             $path .= '/' unless $path =~ m|/$|;
463              
464             ### 2. Use VMS::Filespec::vmsify($path . '/') to convert the dots to
465             ### underscores if needed. The trailing '/' is needed as so that
466             ### C knows that it should use directory translation instead of
467             ### filename translation, as filename translation leaves one dot.
468             $path = VMS::Filespec::vmsify( $path );
469              
470             ### 3. Use $path = File::Spec->splitdir( VMS::Filespec::vmsify(
471             ### $path . '/') to remove the directory delimiters.
472              
473             ### From John Malmberg:
474             ### File::Spec->catdir will put the path back together.
475             ### The '/' trick only works if the string is a directory name
476             ### with UNIX style directory delimiters or no directory delimiters.
477             ### It is to force vmsify to treat the input specification as UNIX.
478             ###
479             ### There is a VMS::Filespec::unixpath() to do the appending of the '/'
480             ### to the specification, which will do a VMS::Filespec::vmsify()
481             ### if needed.
482             ### However it is not a good idea to call vmsify() on a pathname
483             ### returned by unixify(), and it is not a good idea to call unixify()
484             ### on a pathname returned by vmsify(). Because of the nature of the
485             ### conversion, not all file specifications can make the round trip.
486             ###
487             ### I think that directory specifications can safely make the round
488             ### trip, but not ones containing filenames.
489             $path = File::Spec->catdir( File::Spec->splitdir( $path ) )
490             }
491              
492 46         999 return $path;
493             }
494              
495              
496             =head2 ($pkg, $version, $ext) = $cb->_split_package_string( package => PACKAGE_STRING );
497              
498             Splits the name of a CPAN package string up into its package, version
499             and extension parts.
500              
501             For example, C would return the following parts:
502              
503             Package: Foo-Bar
504             Version: 1.2
505             Extension: tar.gz
506              
507             =cut
508              
509             sub _distname_info {
510 344 50   344   1027 my $file = shift or return;
511              
512 344 50       9370 my ($dist, $version) = $file =~ /^
513             ((?:[-+.]*(?:[A-Za-z0-9]+|(?<=\D)_|_(?=\D))*
514             (?:
515             [A-Za-z](?=[^A-Za-z]|$)
516             |
517             \d(?=-)
518             )(?
519             )+)(.*)
520             $/xs or return ($file,undef,undef);
521              
522 344 50 33     1542 if ($dist =~ /-undef\z/ and ! length $version) {
523 0         0 $dist =~ s/-undef\z//;
524             }
525              
526             # Remove potential -withoutworldwriteables suffix
527 344         733 $version =~ s/-withoutworldwriteables$//;
528              
529 344 100       1007 if ($version =~ /^(-[Vv].*)-(\d.*)/) {
530              
531             # Catch names like Unicode-Collate-Standard-V3_1_1-0.1
532             # where the V3_1_1 is part of the distname
533 5         12 $dist .= $1;
534 5         11 $version = $2;
535             }
536              
537 344 50       991 if ($version =~ /(.+_.*)-(\d.*)/) {
538             # Catch names like Task-Deprecations5_14-1.00.tar.gz where the 5_14 is
539             # part of the distname. However, names like libao-perl_0.03-1.tar.gz
540             # should still have 0.03-1 as their version.
541 0         0 $dist .= $1;
542 0         0 $version = $2;
543             }
544              
545             # Normalize the Dist.pm-1.23 convention which CGI.pm and
546             # a few others use.
547 344         655 $dist =~ s{\.pm$}{};
548              
549 344 50 66     1055 $version = $1
550             if !length $version and $dist =~ s/-(\d+\w)$//;
551              
552 344 50 33     1613 $version = $1 . $version
553             if $version =~ /^\d+$/ and $dist =~ s/-(\w+)$//;
554              
555 344 100       1544 if ($version =~ /\d\.\d/) {
556 308         1152 $version =~ s/^[-_.]+//;
557             }
558             else {
559 36         92 $version =~ s/^[-_]+//;
560             }
561              
562 344         685 my $dev;
563 344 100       744 if (length $version) {
564 327 100 66     2011 if ($file =~ /^perl-?\d+\.(\d+)(?:\D(\d+))?(-(?:TRIAL|RC)\d+)?$/) {
    100          
565 24 50 66     446 $dev = 1 if (($1 > 6 and $1 & 1) or ($2 and $2 >= 50)) or $3;
      33        
      33        
      33        
566             }
567             elsif ($version =~ /\d\D\d+_\d/ or $version =~ /-TRIAL/) {
568 15         29 $dev = 1;
569             }
570             }
571             else {
572 17         30 $version = undef;
573             }
574              
575 344         1668 ($dist, $version, $dev);
576             }
577              
578             { my $del_re = qr/[-_\+]/i; # delimiter between elements
579             my $pkg_re = qr/[a-z] # any letters followed by
580             [a-z\d]* # any letters, numbers
581             (?i:\.pm)? # followed by '.pm'--authors do this :(
582             (?: # optionally repeating:
583             $del_re # followed by a delimiter
584             [a-z] # any letters followed by
585             [a-z\d]* # any letters, numbers
586             (?i:\.pm)? # followed by '.pm'--authors do this :(
587             )*
588             /xi;
589              
590             my $ver_re = qr/[a-z]*\d*?[a-z]* # contains a digit and possibly letters
591             (?: # however, some start with a . only :(
592             [-._] # followed by a delimiter
593             [a-z\d]+ # and more digits and or letters
594             )*?
595             /xi;
596              
597             my $ext_re = qr/[a-z] # a letter, followed by
598             [a-z\d]* # letters and or digits, optionally
599             (?:
600             \. # followed by a dot and letters
601             [a-z\d]+ # and or digits (like .tar.bz2)
602             )? # optionally
603             /xi;
604              
605             my $ver_ext_re = qr/
606             ($ver_re+) # version, optional
607             (?:
608             \. # a literal .
609             ($ext_re) # extension,
610             )? # optional, but requires version
611             /xi;
612              
613             ### composed regex for CPAN packages
614             my $full_re = qr/
615             ^
616             ( # the whole thing
617             ($pkg_re+) # package
618             (?:
619             $del_re # delimiter
620             $ver_ext_re # version + extension
621             )?
622             )
623             $
624             /xi;
625              
626             ### composed regex for perl packages
627             my $perl = PERL_CORE;
628             my $perl_re = qr/
629             ^
630             ( # the whole thing
631             ($perl) # package name for 'perl'
632             (?:
633             $ver_ext_re # version + extension
634             )?
635             )
636             $
637             /xi;
638              
639              
640             sub _split_package_string {
641 344     344   650 my $self = shift;
642 344         1243 my %hash = @_;
643              
644 344         634 my $str;
645 344         1671 my $tmpl = { package => { required => 1, store => \$str } };
646 344 50       1435 check( $tmpl, \%hash ) or return;
647              
648 344         33196 my ($dpkg,$dver);
649             {
650 344         603 my ($base,$ext);
  344         592  
651 344 100       6475 if ( $str =~ m,([^/]+)\.(tar\.(?:[gx]?z|bz2)|zip|tbz|tgz|txz)$,i ) {
652 311         1184 $base = $1;
653 311         870 $ext = $2;
654             }
655             else {
656 33         83 $base = $str;
657             }
658 344         1057 ($dpkg,$dver) = _distname_info($base);
659             }
660              
661             ### 2 different regexes, one for the 'perl' package,
662             ### one for ordinary CPAN packages.. try them both,
663             ### first match wins.
664 344         934 for my $re ( $full_re, $perl_re ) {
665              
666             ### try the next if the match fails
667 372 100       7493 $str =~ $re or next;
668              
669 339   50     1395 my $full = $1 || '';
670 339   50     1039 my $pkg = $2 || '';
671 339   100     1419 my $ver = $3 || '';
672 339   100     1612 my $ext = $4 || '';
673              
674             ### this regex resets the capture markers!
675             ### strip the trailing delimiter
676 339         2418 $pkg =~ s/$del_re$//;
677              
678             ### strip the .pm package suffix some authors insist on adding
679 339         855 $pkg =~ s/\.pm$//i;
680              
681 339 100 66     1561 $pkg = $dpkg if $dpkg && $pkg ne $dpkg;
682 339 100 100     1302 $ver = $dver if $dver && $ver ne $dver;
683              
684 339         3041 return ($pkg, $ver, $ext, $full );
685             }
686              
687 5         26 return;
688             }
689             }
690              
691             { my %escapes = map {
692             chr($_) => sprintf("%%%02X", $_)
693             } 0 .. 255;
694              
695             sub _uri_encode {
696 3     3   501 my $self = shift;
697 3         19 my %hash = @_;
698              
699 3         8 my $str;
700 3         14 my $tmpl = {
701             uri => { store => \$str, required => 1 }
702             };
703              
704 3 50       18 check( $tmpl, \%hash ) or return;
705              
706             ### XXX taken straight from URI::Encode
707             ### Default unsafe characters. RFC 2732 ^(uric - reserved)
708 3         555 $str =~ s|([^A-Za-z0-9\-_.!~*'()])|$escapes{$1}|g;
709              
710 3         46 return $str;
711             }
712              
713              
714             sub _uri_decode {
715 8     8   1255 my $self = shift;
716 8         46 my %hash = @_;
717              
718 8         19 my $str;
719 8         92 my $tmpl = {
720             uri => { store => \$str, required => 1 }
721             };
722              
723 8 50       50 check( $tmpl, \%hash ) or return;
724              
725             ### XXX use unencode routine in utils?
726 8         745 $str =~ s/%([0-9A-Fa-f]{2})/chr(hex($1))/eg;
  88         281  
727              
728 8         57 return $str;
729             }
730             }
731              
732             sub _update_timestamp {
733 95     95   439 my $self = shift;
734 95         833 my %hash = @_;
735              
736 95         251 my $file;
737 95         991 my $tmpl = {
738             file => { required => 1, store => \$file, allow => FILE_EXISTS }
739             };
740              
741 95 50       669 check( $tmpl, \%hash ) or return;
742              
743             ### `touch` the file, so windoze knows it's new -jmb
744             ### works on *nix too, good fix -Kane
745             ### make sure it is writable first, otherwise the `touch` will fail
746              
747 95         3009 my $now = time;
748 95 50 33     4703 unless( chmod( 0644, $file) && utime ($now, $now, $file) ) {
749 0         0 error( loc("Couldn't touch %1", $file) );
750 0         0 return;
751             }
752              
753 95         2692 return 1;
754             }
755              
756              
757             1;
758              
759             # Local variables:
760             # c-indentation-style: bsd
761             # c-basic-offset: 4
762             # indent-tabs-mode: nil
763             # End:
764             # vim: expandtab shiftwidth=4: