/usr/share/perl5/Dir/Purge.pm is in libdir-purge-perl 1.02-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 | # Dir::Purge.pm -- Purge directories
# RCS Info : $Id: Purge.pm,v 1.6 2006/09/19 12:24:01 jv Exp $
# Author : Johan Vromans
# Created On : Wed May 17 12:58:02 2000
# Last Modified By: Johan Vromans
# Last Modified On: Tue Sep 19 14:23:56 2006
# Update Count : 161
# Status : Unknown, Use with caution!
# Purge directories by strategy.
#
# This is also an exercise in weird programming techniques.
package Dir::Purge;
use strict;
use Carp;
use vars qw(@ISA @EXPORT @EXPORT_OK $VERSION);
$VERSION = "1.02";
@ISA = qw(Exporter);
@EXPORT = qw(&purgedir);
@EXPORT_OK = qw(&purgedir_by_age);
my $purge_by_age; # strategy
sub purgedir_by_age {
my @dirs = @_;
my $opts;
if ( UNIVERSAL::isa ($dirs[0], 'HASH') ) {
$opts = shift (@dirs);
my $strat = delete $opts->{strategy};
if ( defined $strat && $strat ne "by_age" ) {
croak ("Invalid option: 'strategy'");
}
$opts->{strategy} = "by_age";
}
else {
$opts = { keep => shift(@dirs), strategy => "by_age" };
}
purgedir ($opts, @dirs);
}
# Common processing code. It verifies the arguments, directories and
# calls $code->(...) to do the actual purging.
# Nothing is done if any of the verifications fail.
sub purgedir {
my (@dirs) = @_;
my $error = 0;
my $code = $purge_by_age; # default: by age
my $ctl = { tag => "purgedir" };
my @opts = qw(keep strategy reverse include verbose test debug);
# Get the parameters. Only the 'keep' value is mandatory.
if ( UNIVERSAL::isa ($dirs[0], 'HASH') ) {
my $opts = shift (@dirs);
@{$ctl}{@opts} = delete @{$opts}{@opts};
if ( $ctl->{strategy} ) {
if ( $ctl->{strategy} eq "by_age" ) {
$code = $purge_by_age;
}
else {
carp ("Unsupported purge strategy: '$ctl->{strategy}'");
$error++;
}
}
foreach (sort keys %$opts) {
carp ("Unhandled option \"$_\"");
$error++;
}
}
elsif ( $dirs[0] =~ /^-?\d+$/ ) {
$ctl->{keep} = shift (@dirs);
}
unless ( $ctl->{keep} ) {
croak ("Missing 'keep' value");
}
elsif ( $ctl->{keep} < 0 ) {
# Hmm. I would like to deprecate this, but on the other hand,
# a negative 'subscript' fits well in Perl.
#carp ("Negative 'keep' value is deprecated, ".
# "use 'reverse => 1' instead");
$ctl->{keep} = -$ctl->{keep};
$ctl->{reverse} = !$ctl->{reverse};
}
$ctl->{verbose} = 1 unless defined ($ctl->{verbose});
$ctl->{verbose} = 9 if $ctl->{debug};
if ( $ctl->{include} ) {
if ( !ref($ctl->{include}) ) {
croak("Invalid value for 'include': " . $ctl->{include});
}
elsif ( UNIVERSAL::isa($ctl->{include}, 'CODE') ) {
# OK
}
elsif ( UNIVERSAL::isa($ctl->{include}, 'Regexp') ) {
my $pat = $ctl->{include};
$ctl->{include} = sub { $_[0] =~ $pat };
}
else {
croak("Invalid value for 'include': " . $ctl->{include});
}
}
# Thouroughly check the directories, and refuse to do anything
# in case of problems.
warn ("$ctl->{tag}: checking directories\n") if $ctl->{verbose} > 1;
foreach my $dir ( @dirs ) {
# Must be a directory.
unless ( -d $dir ) {
carp (-e _ ? "$dir: not a directory" : "$dir: not existing");
$error++;
next;
}
# We need write access since we are going to delete files.
unless ( -w _ ) {
carp ("$dir: no write access");
$error++;
}
# We need read access since we are going to get the file list.
unless ( -r _ ) {
carp ("$dir: no read access");
$error++;
}
# Probably need this as well, don't know.
unless ( -x _ ) {
carp ("$dir: no access");
$error++;
}
}
# If errors, bail out unless testing.
if ( $error ) {
if ( $ctl->{test} ) {
carp ("$ctl->{tag}: errors detected, continuing");
}
else {
croak ("$ctl->{tag}: errors detected, nothing done");
}
}
# Process the directories.
foreach my $dir ( @dirs ) {
$code->($ctl, $dir);
}
};
# Everything else is assumed to be small building-block routines to
# implement a plethora of purge strategies.
# Actually, I cannot think of any right now.
# Gather file names and additional info.
my $gather = sub {
my ($ctl, $dir, $what) = @_;
local (*DIR);
opendir (DIR, $dir)
or croak ("dir: $!"); # shouldn't happen -- we've checked!
my @files;
foreach ( readdir (DIR) ) {
next if $ctl->{include} && !$ctl->{include}->($_, $dir);
next if /^\./;
next unless -f "$dir/$_";
push (@files, [ "$dir/$_", $what->("$dir/$_") ]);
}
closedir (DIR);
warn ("$ctl->{tag}: $dir: ", scalar(@files), " files\n")
if $ctl->{verbose} > 1;
warn ("$ctl->{tag}: $dir: @{[map { $_->[0] } @files]}\n")
if $ctl->{debug};
\@files;
};
# Sort the list on the supplied info.
my $sort = sub {
my ($ctl, $files) = @_;
my @sorted = map { $_->[0] } sort { $a->[1] <=> $b->[1] } @$files;
warn ("$ctl->{tag}: sorted: @sorted\n") if $ctl->{debug};
\@sorted;
};
# Remove the files to keep from the list.
my $reduce = sub {
my ($ctl, $files) = @_;
if ( $ctl->{reverse} ) {
# Keep the newest files (tail of the list).
splice (@$files, @$files-$ctl->{keep}, $ctl->{keep});
}
else {
# Keep the oldest files (head of the list).
splice (@$files, 0, $ctl->{keep});
}
$files;
};
# Remove the files in the list.
my $purge = sub {
my ($ctl, $files) = @_;
# Remove the selected files.
foreach ( @$files ) {
if ( $ctl->{test} ) {
warn ("$ctl->{tag}: candidate: $_\n");
}
else {
warn ("$ctl->{tag}: removing $_\n") if $ctl->{verbose};
unlink ($_) or carp ("$_: $!");
}
}
};
# Processing routine: purge by file age.
$purge_by_age = sub {
my ($ctl, $dir) = @_;
warn ("$ctl->{tag}: purging directory $dir (by age, keep $ctl->{keep})\n")
if $ctl->{verbose} > 1;
# Gather, with age info.
my $files = $gather->($ctl, $dir, sub { -M _ });
# Is there anything to do?
if ( @$files <= $ctl->{keep} ) {
warn ("$ctl->{tag}: $dir: below limit\n") if $ctl->{verbose} > 1;
return;
}
# Sort, reduce and purge.
$purge->($ctl, $reduce->($ctl, $sort->($ctl, $files)));
};
1;
__END__
=head1 NAME
Dir::Purge - Purge directories to a given number of files.
=head1 SYNOPSIS
perl -MDir::Purge -e 'purgedir (5, @ARGV)' /spare/backups
use Dir::Purge;
purgedir ({keep => 5, strategy => "by_age", verbose => 1}, "/spare/backups");
use Dir::Purge qw(purgedir_by_age);
purgedir_by_age (5, "/spare/backups");
=head1 DESCRIPTION
Dir::Purge implements functions to reduce the number of files in a
directory according to a strategy. It currently provides one strategy:
removal of files by age.
By default, the module exports one user subroutine: C<purgedir>.
The first argument of C<purgedir> should either be an integer,
indicating the number of files to keep in each of the directories, or
a reference to a hash with options. In either case, a value for the
number of files to keep is mandatory.
The other arguments are the names of the directories that must be
purged. Note that this process is not recursive. Also, hidden files
(name starts with a C<.>) and non-plain files (e.g., directories,
symbolic links) are not taken into account.
All directory arguments and options are checked before anything else
is done. In particular, all arguments should point to existing
directories and the program must have read, write, and search
(execute) access to the directories.
One additional function, C<purgedir_by_age>, can be exported on
demand, or called by its fully qualified name. C<purgedir_by_age>
calls C<purgedir> with the "by age" purge strategy preselected. Since
this happens to be the default strategy for C<purgedir>, calling
C<purgedir_by_age> is roughly equivalent to calling C<purgedir>.
=head1 WARNING
Removing files is a quite destructive operation. Supply the C<test>
option, described below, to dry-run before production.
=head1 OPTIONS
Options are suppled by providing a hash reference as the first
argument. The following calls are equivalent:
purgedir ({keep => 3, test => 1}, "/spare/backups");
purgedir_by_age ({keep => 3, test => 1}, "/spare/backups");
purgedir ({strategy => "by_age", keep => 3, test => 1}, "/spare/backups");
All subroutines take the same arguments.
=over 4
=item keep
The number of files to keep.
A negative number will reverse the strategy. See option C<reverse> below.
=item strategy
Specifies the purge strategy.
Default (and only allowed) value is "by_age".
This option is for C<purgedir> only. The other subroutines should not
be provided with a C<strategy> option.
=item include
If this is a reference to a subroutine, this subroutine is called with
arguments ($file,$dir) and must return true for the file to be
included in the list of candidates,
If this is a regular expression, the file file will be included only
if the expression matches the file name.
=item reverse
If true, the strategy will be reversed. For example, if the strategy
is "by_age", the oldest files will be kept instead of the newest
files.
Another way to reverse the strategy is using a negative C<keep> value.
This is not unlike Perl's array subscripts, which count from the end if
negative.
A negative C<keep> value can be combined with C<reverse> to reverse
the reversed strategy again.
=item verbose
Verbosity of messages. Default value is 1, which will report the names
of the files being removed. A value greater than 1 will produce more
messages about what's going on. A value of 0 (zero) will suppress
messages.
=item debug
For internal debugging only.
=item test
If true, no files will be removed. For testing.
=back
=head1 EXPORT
Subroutine C<purgedir> is exported by default.
Subroutine C<purgedir_by_age> may be exported on demand.
Calling purgedir_by_age() is roughly equivalent to calling purgedir()
with an options hash that includes C<strategy => "by_age">.
The variable $Dir::Purge::VERSION may be used to inspect the version
of the module.
=head1 AUTHOR
Johan Vromans (jvromans@squirrel.nl) wrote this module.
=head1 COPYRIGHT AND DISCLAIMER
This program is Copyright 2000 by Squirrel Consultancy. All rights
reserved.
This program is free software; you can redistribute it and/or modify
it under the terms of either: a) the GNU General Public License as
published by the Free Software Foundation; either version 1, or (at
your option) any later version, or b) the "Artistic License" which
comes with Perl.
This program is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See either the
GNU General Public License or the Artistic License for more details.
=cut
|