X-Git-Url: http://git.hungrycats.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=driver%2Fxscreensaver-getimage-file;h=619020497d39c293085bc3a762367697f76a52da;hb=6a1da724858673ac40aa13a9612340d8bed8c7b9;hp=2da17d5958522b907faeff90deed9f1583398441;hpb=a94197e76a5dea5cb60542840809d6c20d0abbf3;p=xscreensaver diff --git a/driver/xscreensaver-getimage-file b/driver/xscreensaver-getimage-file index 2da17d59..61902049 100755 --- a/driver/xscreensaver-getimage-file +++ b/driver/xscreensaver-getimage-file @@ -1,5 +1,5 @@ #!/usr/bin/perl -w -# Copyright © 2001, 2002 Jamie Zawinski . +# Copyright © 2001, 2002, 2003 Jamie Zawinski . # # Permission to use, copy, modify, distribute, and sell this software and its # documentation for any purpose is hereby granted without fee, provided that @@ -24,18 +24,45 @@ # Created: 12-Apr-01. require 5; +#require v5.6; use diagnostics; use strict; use POSIX; use Fcntl; -use Fcntl ':mode'; + +# Apparently the "old way" to get S_ISLNK and friends is to do this: +# +use POSIX ':fcntl_h'; + +# But apparently the "new way" is to do this: +# +# use Fcntl ':mode'; +# +# but of course that will generate an error on "old" (pre-5.6?) Perl versions. +# So we do it like this instead: +# +BEGIN { + if (! defined(&S_ISLNK)) { # perhaps defined by "POSIX"? + require Fcntl; + import Fcntl ':mode'; # if not, look for it in "Fcntl". + } +} + my $progname = $0; $progname =~ s@.*/@@g; -my $version = q{ $Revision: 1.8 $ }; $version =~ s/^[^0-9]+([0-9.]+).*$/$1/; +my $version = q{ $Revision: 1.13 $ }; $version =~ s/^[^0-9]+([0-9.]+).*$/$1/; my $verbose = 0; +# This matches files that we are allowed to use as images (case-insensitive.) +# Anything not matching this is ignored. This is so you can point your +# imageDirectory at directory trees that have things other than images in +# them, but it assumes that you gave your images sensible file extensions. +# +my $good_file_re = '\.(gif|p?jpe?g|png|tiff?|xbm|xpm)$'; + + # These are programs that can be used to put an image file on the root # window (including virtual root windows.) The first one of these programs # that exists on $PATH will be used (with the file name as the last arg.) @@ -44,7 +71,7 @@ my $verbose = 0; # my @programs = ( "chbg -once -xscreensaver -max_grow 4 -max_size 100", - "xv -root -quit -viewonly -maxpect -noresetroot -quick24 -rmode 5" . + "xv -root -quit -viewonly -maxpect +noresetroot -quick24 -rmode 5" . " -rfg black -rbg black", "xli -quiet -fullscreen -onroot -center -border black", "xloadimage -quiet -fullscreen -onroot -center -border black", @@ -53,6 +80,7 @@ my @programs = ( # "xsri -scale -keep-aspect -center-horizontal -center-vertical", ); + sub pick_displayer { my @names = (); @@ -76,6 +104,8 @@ sub pick_displayer { my @all_files = (); my %seen_inodes; +my $skip_count = 0; +my $dir_count = 1; sub find_all_files { my ($dir) = @_; @@ -84,7 +114,7 @@ sub find_all_files { local *DIR; if (! opendir (DIR, $dir)) { - print STDERR "$progname: couldn't open $dir: $!\n"; + print STDERR "$progname: couldn't open $dir: $!\n" if ($verbose); return; } my @files = readdir (DIR); @@ -93,10 +123,7 @@ sub find_all_files { my @dirs = (); foreach my $file (@files) { - next if ($file =~ m/^\./); # ignore dot files - next if ($file =~ m/[~%\#]$/); # ignore backup files - next if ($file =~ m/\.(BAK|bak|tmp|orig|rej|rpmsave)$/); - next if ($file eq "core"); + next if ($file =~ m/^\./); # ignore dot files/dirs $file = "$dir/$file"; my @st = stat($file); @@ -120,10 +147,18 @@ sub find_all_files { if (S_ISDIR($mode)) { push @dirs, $file; + $dir_count++; print STDERR "$progname: found dir $file\n" if ($verbose > 2); } elsif (S_ISREG($mode) || S_ISLNK($mode)) { - push @all_files, $file; - print STDERR "$progname: found file $file\n" if ($verbose > 2); + + if ($file =~ m/[~%\#]$/ || # backup file, or + ! ($file =~ m/$good_file_re/io)) { # no image extension + $skip_count++; + print STDERR "$progname: skip file $file\n" if ($verbose > 2); + } else { + push @all_files, $file; + print STDERR "$progname: found file $file\n" if ($verbose > 2); + } } elsif ($verbose > 2) { print STDERR "$progname: nonreg $file\n"; } @@ -142,7 +177,11 @@ sub find_random_file { print STDERR "$progname: recursively reading $dir...\n" if ($verbose > 1); find_all_files ($dir); - print STDERR "$progname: found " . ($#all_files+1) . " files\n" + print STDERR "$progname: found " . ($#all_files+1) . + " file" . ($#all_files == 0 ? "" : "s") . + " in $dir_count dir" . ($dir_count == 1 ? "" : "s") . + "; skipped $skip_count file" . ($skip_count == 1 ? "" : "s") . + ".\n" if ($verbose > 1); @all_files = sort(@all_files);