This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
More pathname portability checks.
authorJarkko Hietaniemi <jhi@iki.fi>
Tue, 19 Mar 2002 20:09:22 +0000 (20:09 +0000)
committerJarkko Hietaniemi <jhi@iki.fi>
Tue, 19 Mar 2002 20:09:22 +0000 (20:09 +0000)
p4raw-id: //depot/perl@15337

Porting/check83.pl

index 51b2b11..0522bc0 100644 (file)
@@ -1,12 +1,22 @@
 #!/usr/local/bin/perl
 
-# Check whether there are naming conflicts when names are truncated
-# to the DOSish case-ignoring 8.3 format
+# Check whether there are naming conflicts when names are truncated to
+# the DOSish case-ignoring 8.3 format, plus other portability no-nos.
 
 sub eight_dot_three {
     my ($dir, $base, $ext) = ($_[0] =~ m!^(?:(.+)/)?([^/.]+)(?:\.([^/.]+))?$!);
+    my $file = $base . defined $ext ? ".$ext" : "";
     $base = substr($base, 0, 8);
     $ext  = substr($ext,  0, 3) if defined $ext;
+    if ($dir =~ /\./)  {
+       warn "$dir: directory name contains '.'\n";
+    }
+    if ($file =~ /[^A-Za-z0-9\._-]/) {
+       warn "$file: filename contains non-portable characters\n";
+    }
+    if (length $file > 30) {
+       warn "$file: filename longer than 30 characters\n";
+    }
     if (defined $dir) {
        return ($dir, defined $ext ? "$dir/$base.$ext" : "$dir/$base");
     } else {