adjust verbosity on delete events
[rersyncrecent.git] / lib / File / Rsync / Mirror / Recentfile.pm
blobb0fcc61d8e6a36215c82c35b4e3fc09bed2c414d
1 package File::Rsync::Mirror::Recentfile;
3 # use warnings;
4 use strict;
6 =encoding utf-8
8 =head1 NAME
10 File::Rsync::Mirror::Recentfile - mirroring via rsync made efficient
12 =cut
14 my $HAVE = {};
15 for my $package (
16 "Data::Serializer",
17 "File::Rsync"
18 ) {
19 $HAVE->{$package} = eval qq{ require $package; };
21 use Config;
22 use File::Basename qw(basename dirname fileparse);
23 use File::Copy qw(cp);
24 use File::Path qw(mkpath);
25 use File::Rsync::Mirror::Recentfile::FakeBigFloat qw(:all);
26 use File::Temp;
27 use List::Util qw(first max min);
28 use Scalar::Util qw(reftype);
29 use Storable;
30 use Time::HiRes qw();
31 use YAML::Syck;
33 use version; our $VERSION = qv('0.0.7');
35 use constant MAX_INT => ~0>>1; # anything better?
36 use constant DEFAULT_PROTOCOL => 1;
38 # cf. interval_secs
39 my %seconds;
41 # maybe subclass if this mapping is bad?
42 my %serializers;
44 =head1 SYNOPSIS
46 Writer (of a single file):
48 use File::Rsync::Mirror::Recentfile;
49 my $fr = File::Rsync::Mirror::Recentfile->new
51 interval => q(6h),
52 filenameroot => "RECENT",
53 comment => "These 'RECENT' files are part of a test of a new CPAN mirroring concept. Please ignore them for now.",
54 localroot => "/home/ftp/pub/PAUSE/authors/",
55 aggregator => [qw(1d 1W 1M 1Q 1Y Z)],
57 $rf->update("/home/ftp/pub/PAUSE/authors/id/A/AN/ANDK/CPAN-1.92_63.tar.gz","new");
59 Reader/mirrorer:
61 my $rf = File::Rsync::Mirror::Recentfile->new
63 filenameroot => "RECENT",
64 interval => q(6h),
65 localroot => "/home/ftp/pub/PAUSE/authors",
66 remote_dir => "",
67 remote_host => "pause.perl.org",
68 remote_module => "authors",
69 rsync_options => {
70 compress => 1,
71 'rsync-path' => '/usr/bin/rsync',
72 links => 1,
73 times => 1,
74 'omit-dir-times' => 1,
75 checksum => 1,
77 verbose => 1,
79 $rf->mirror;
81 Aggregator (usually the writer):
83 my $rf = File::Rsync::Mirror::Recentfile->new_from_file ( $file );
84 $rf->aggregate;
86 =head1 DESCRIPTION
88 Lower level than F:R:M:Recent, handles one recentfile. Whereas a tree
89 is always composed of several recentfiles, controlled by the
90 F:R:M:Recent object. The Recentfile object has to do the bookkeeping
91 for a single timeslice.
93 =head1 EXPORT
95 No exports.
97 =head1 CONSTRUCTORS / DESTRUCTOR
99 =head2 my $obj = CLASS->new(%hash)
101 Constructor. On every argument pair the key is a method name and the
102 value is an argument to that method name.
104 If a recentfile for this resource already exists, metadata that are
105 not defined by the constructor will be fetched from there as soon as
106 it is being read by recent_events().
108 =cut
110 sub new {
111 my($class, @args) = @_;
112 my $self = bless {}, $class;
113 while (@args) {
114 my($method,$arg) = splice @args, 0, 2;
115 $self->$method($arg);
117 unless (defined $self->protocol) {
118 $self->protocol(DEFAULT_PROTOCOL);
120 unless (defined $self->filenameroot) {
121 $self->filenameroot("RECENT");
123 unless (defined $self->serializer_suffix) {
124 $self->serializer_suffix(".yaml");
126 return $self;
129 =head2 my $obj = CLASS->new_from_file($file)
131 Constructor. $file is a I<recentfile>.
133 =cut
135 sub new_from_file {
136 my($class, $file) = @_;
137 my $self = bless {}, $class;
138 $self->_rfile($file);
139 #?# $self->lock;
140 my $serialized = do { open my $fh, $file or die "Could not open '$file': $!";
141 local $/;
142 <$fh>;
144 # XXX: we can skip this step when the metadata are sufficient, but
145 # we cannot parse the file without some magic stuff about
146 # serialized formats
147 while (-l $file) {
148 my($name,$path) = fileparse $file;
149 my $symlink = readlink $file;
150 if ($symlink =~ m|/|) {
151 die "FIXME: filenames containing '/' not supported, got $symlink";
153 $file = File::Spec->catfile ( $path, $symlink );
155 my($name,$path,$suffix) = fileparse $file, keys %serializers;
156 $self->serializer_suffix($suffix);
157 $self->localroot($path);
158 die "Could not determine file format from suffix" unless $suffix;
159 my $deserialized;
160 if ($suffix eq ".yaml") {
161 require YAML::Syck;
162 $deserialized = YAML::Syck::LoadFile($file);
163 } elsif ($HAVE->{"Data::Serializer"}) {
164 my $serializer = Data::Serializer->new
165 ( serializer => $serializers{$suffix} );
166 $deserialized = $serializer->raw_deserialize($serialized);
167 } else {
168 die "Data::Serializer not installed, cannot proceed with suffix '$suffix'";
170 while (my($k,$v) = each %{$deserialized->{meta}}) {
171 next if $k ne lc $k; # "Producers"
172 $self->$k($v);
174 unless (defined $self->protocol) {
175 $self->protocol(DEFAULT_PROTOCOL);
177 return $self;
180 =head2 DESTROY
182 A simple unlock.
184 =cut
185 sub DESTROY {
186 my $self = shift;
187 $self->unlock;
188 unless ($self->_current_tempfile_fh) {
189 if (my $tempfile = $self->_current_tempfile) {
190 if (-e $tempfile) {
191 unlink $tempfile; # may fail in global destruction
197 =head1 ACCESSORS
199 =cut
201 my @accessors;
203 BEGIN {
204 @accessors = (
205 "_current_tempfile",
206 "_current_tempfile_fh",
207 "_delayed_operations",
208 "_done",
209 "_interval",
210 "_is_locked",
211 "_localroot",
212 "_merged",
213 "_pathdb",
214 "_remember_last_uptodate_call",
215 "_remote_dir",
216 "_remoteroot",
217 "_rfile",
218 "_rsync",
219 "__verified_tempdir",
220 "_seeded",
221 "_uptodateness_ever_reached",
222 "_use_tempfile",
225 my @pod_lines =
226 split /\n/, <<'=cut'; push @accessors, grep {s/^=item\s+//} @pod_lines; }
228 =over 4
230 =item aggregator
232 A list of interval specs that tell the aggregator which I<recentfile>s
233 are to be produced.
235 =item canonize
237 The name of a method to canonize the path before rsyncing. Only
238 supported value is C<naive_path_normalize>. Defaults to that.
240 =item comment
242 A comment about this tree and setup.
244 =item dirtymark
246 A timestamp. The dirtymark is updated whenever an out of band change
247 on the origin server is performed that violates the protocol. Say,
248 they add or remove files in the middle somewhere. Slaves must react
249 with a devaluation of their C<done> structure which then leads to a
250 full re-sync of all files. Implementation note: dirtymark may increase
251 or decrease.
253 =item filenameroot
255 The (prefix of the) filename we use for this I<recentfile>. Defaults to
256 C<RECENT>. The string must not contain a directory separator.
258 =item have_mirrored
260 Timestamp remembering when we mirrored this recentfile the last time.
261 Only relevant for slaves.
263 =item ignore_link_stat_errors
265 If set to true, rsync errors are ignored that complain about link stat
266 errors. These seem to happen only when there are files missing at the
267 origin. In race conditions this can always happen, so it defaults to
268 true.
270 =item is_slave
272 If set to true, this object will fetch a new recentfile from remote
273 when the timespan between the last mirror (see have_mirrored) and now
274 is too large (see C<ttl>).
276 =item keep_delete_objects_forever
278 The default for delete events is that they are passed through the
279 collection of recentfile objects until they reach the Z file. There
280 they get dropped so that the associated file object ceases to exist at
281 all. By setting C<keep_delete_objects_forever> the delete objects are
282 kept forever. This makes the Z file larger but has the advantage that
283 slaves that have interrupted mirroring for a long time still can clean
284 up their copy.
286 =item locktimeout
288 After how many seconds shall we die if we cannot lock a I<recentfile>?
289 Defaults to 600 seconds.
291 =item loopinterval
293 When mirror_loop is called, this accessor can specify how much time
294 every loop shall at least take. If the work of a loop is done before
295 that time has gone, sleeps for the rest of the time. Defaults to
296 arbitrary 42 seconds.
298 =item max_files_per_connection
300 Maximum number of files that are transferred on a single rsync call.
301 Setting it higher means higher performance at the price of holding
302 connections longer and potentially disturbing other users in the pool.
303 Defaults to the arbitrary value 42.
305 =item max_rsync_errors
307 When rsync operations encounter that many errors without any resetting
308 success in between, then we die. Defaults to unlimited. A value of
309 -1 means we run forever ignoring all rsync errors.
311 =item minmax
313 Hashref remembering when we read the recent_events from this file the
314 last time and what the timespan was.
316 =item protocol
318 When the RECENT file format changes, we increment the protocol. We try
319 to support older protocols in later releases.
321 =item remote_host
323 The host we are mirroring from. Leave empty for the local filesystem.
325 =item remote_module
327 Rsync servers have so called modules to separate directory trees from
328 each other. Put here the name of the module under which we are
329 mirroring. Leave empty for local filesystem.
331 =item rsync_options
333 Things like compress, links, times or checksums. Passed in to the
334 File::Rsync object used to run the mirror.
336 =item serializer_suffix
338 Mostly untested accessor. The only well tested format for
339 I<recentfile>s at the moment is YAML. It is used with YAML::Syck via
340 Data::Serializer. But in principle other formats are supported as
341 well. See section SERIALIZERS below.
343 =item sleep_per_connection
345 Sleep that many seconds (floating point OK) after every chunk of rsyncing
346 has finished. Defaults to arbitrary 0.42.
348 =item tempdir
350 Directory to write temporary files to. Must allow rename operations
351 into the tree which usually means it must live on the same partition
352 as the target directory. Defaults to C<< $self->localroot >>.
354 =item ttl
356 Time to live. Number of seconds after which this recentfile must be
357 fetched again from the origin server. Only relevant for slaves.
358 Defaults to arbitrary 24.2 seconds.
360 =item verbose
362 Boolean to turn on a bit verbosity.
364 =item verboselog
366 Path to the logfile to write verbose progress information to. This is
367 a primitive stop gap solution to get simple verbose logging working.
368 Switching to Log4perl or similar is probably the way to go.
370 =back
372 =cut
374 use accessors @accessors;
376 =head1 METHODS
378 =head2 (void) $obj->aggregate( %options )
380 Takes all intervals that are collected in the accessor called
381 aggregator. Sorts them by actual length of the interval.
382 Removes those that are shorter than our own interval. Then merges this
383 object into the next larger object. The merging continues upwards
384 as long as the next I<recentfile> is old enough to warrant a merge.
386 If a merge is warranted is decided according to the interval of the
387 previous interval so that larger files are not so often updated as
388 smaller ones. If $options{force} is true, all files get updated.
390 Here is an example to illustrate the behaviour. Given aggregators
392 1h 1d 1W 1M 1Q 1Y Z
394 then
396 1h updates 1d on every call to aggregate()
397 1d updates 1W earliest after 1h
398 1W updates 1M earliest after 1d
399 1M updates 1Q earliest after 1W
400 1Q updates 1Y earliest after 1M
401 1Y updates Z earliest after 1Q
403 Note that all but the smallest recentfile get updated at an arbitrary
404 rate and as such are quite useless on their own.
406 =cut
408 sub aggregate {
409 my($self, %option) = @_;
410 my @aggs = sort { $a->{secs} <=> $b->{secs} }
411 grep { $_->{secs} >= $self->interval_secs }
412 map { { interval => $_, secs => $self->interval_secs($_)} }
413 $self->interval, @{$self->aggregator || []};
414 $self->update;
415 $aggs[0]{object} = $self;
416 AGGREGATOR: for my $i (0..$#aggs-1) {
417 my $this = $aggs[$i]{object};
418 my $next = $this->_sparse_clone;
419 $next->interval($aggs[$i+1]{interval});
420 my $want_merge = 0;
421 if ($option{force} || $i == 0) {
422 $want_merge = 1;
423 } else {
424 my $next_rfile = $next->rfile;
425 if (-e $next_rfile) {
426 my $prev = $aggs[$i-1]{object};
427 local $^T = time;
428 my $next_age = 86400 * -M $next_rfile;
429 if ($next_age > $prev->interval_secs) {
430 $want_merge = 1;
432 } else {
433 $want_merge = 1;
436 if ($want_merge) {
437 $next->merge($this);
438 $aggs[$i+1]{object} = $next;
439 } else {
440 last AGGREGATOR;
445 # collect file size and mtime for all files of this aggregate
446 sub _debug_aggregate {
447 my($self) = @_;
448 my @aggs = sort { $a->{secs} <=> $b->{secs} }
449 map { { interval => $_, secs => $self->interval_secs($_)} }
450 $self->interval, @{$self->aggregator || []};
451 my $report = [];
452 for my $i (0..$#aggs) {
453 my $this = Storable::dclone $self;
454 $this->interval($aggs[$i]{interval});
455 my $rfile = $this->rfile;
456 my @stat = stat $rfile;
457 push @$report, {rfile => $rfile, size => $stat[7], mtime => $stat[9]};
459 $report;
462 # (void) $self->_assert_symlink()
463 sub _assert_symlink {
464 my($self) = @_;
465 my $recentrecentfile = File::Spec->catfile
467 $self->localroot,
468 sprintf
470 "%s.recent",
471 $self->filenameroot
474 if ($Config{d_symlink} eq "define") {
475 my $howto_create_symlink; # 0=no need; 1=straight symlink; 2=rename symlink
476 if (-l $recentrecentfile) {
477 my $found_symlink = readlink $recentrecentfile;
478 if ($found_symlink eq $self->rfilename) {
479 return;
480 } else {
481 $howto_create_symlink = 2;
483 } else {
484 $howto_create_symlink = 1;
486 if (1 == $howto_create_symlink) {
487 symlink $self->rfilename, $recentrecentfile or die "Could not create symlink '$recentrecentfile': $!"
488 } else {
489 unlink "$recentrecentfile.$$"; # may fail
490 symlink $self->rfilename, "$recentrecentfile.$$" or die "Could not create symlink '$recentrecentfile.$$': $!";
491 rename "$recentrecentfile.$$", $recentrecentfile or die "Could not rename '$recentrecentfile.$$' to $recentrecentfile: $!";
493 } else {
494 warn "Warning: symlinks not supported on this system, doing a copy instead\n";
495 unlink "$recentrecentfile.$$"; # may fail
496 cp $self->rfilename, "$recentrecentfile.$$" or die "Could not copy to '$recentrecentfile.$$': $!";
497 rename "$recentrecentfile.$$", $recentrecentfile or die "Could not rename '$recentrecentfile.$$' to $recentrecentfile: $!";
501 =head2 $hashref = $obj->delayed_operations
503 A hash of hashes containing unlink and rmdir operations which had to
504 wait until the recentfile got unhidden in order to not confuse
505 downstream mirrors (in case we have some).
507 =cut
509 sub delayed_operations {
510 my($self) = @_;
511 my $x = $self->_delayed_operations;
512 unless (defined $x) {
513 $x = {
514 unlink => {},
515 rmdir => {},
517 $self->_delayed_operations ($x);
519 return $x;
522 =head2 $done = $obj->done
524 C<$done> is a reference to a L<File::Rsync::Mirror::Recentfile::Done>
525 object that keeps track of rsync activities. Only needed and used when
526 we are a mirroring slave.
528 =cut
530 sub done {
531 my($self) = @_;
532 my $done = $self->_done;
533 if (!$done) {
534 require File::Rsync::Mirror::Recentfile::Done;
535 $done = File::Rsync::Mirror::Recentfile::Done->new();
536 $done->_rfinterval ($self->interval);
537 $self->_done ( $done );
539 return $done;
542 =head2 $tempfilename = $obj->get_remote_recentfile_as_tempfile ()
544 Stores the remote I<recentfile> locally as a tempfile. The caller is
545 responsible to remove the file after use.
547 Note: if you're intending to act as an rsync server for other slaves,
548 then you must prefer this method to fetch that file with
549 get_remotefile(). Otherwise downstream mirrors would expect you to
550 already have mirrored all the files that are in the I<recentfile>
551 before you have them mirrored.
553 =cut
555 sub get_remote_recentfile_as_tempfile {
556 my($self) = @_;
557 mkpath $self->localroot;
558 my $fh;
559 my $trfilename;
560 if ( $self->_use_tempfile() ) {
561 if ($self->ttl_reached) {
562 $fh = $self->_current_tempfile_fh;
563 $trfilename = $self->rfilename;
564 } else {
565 return $self->_current_tempfile;
567 } else {
568 $trfilename = $self->rfilename;
571 my $dst;
572 if ($fh) {
573 $dst = $self->_current_tempfile;
574 } else {
575 $fh = $self->_get_remote_rat_provide_tempfile_object ($trfilename);
576 $dst = $fh->filename;
577 $self->_current_tempfile ($dst);
578 my $rfile = eval { $self->rfile; }; # may fail (RECENT.recent has no rfile)
579 if (defined $rfile && -e $rfile) {
580 # saving on bandwidth. Might need to be configurable
581 # $self->bandwidth_is_cheap?
582 cp $rfile, $dst or die "Could not copy '$rfile' to '$dst': $!"
585 my $src = join ("/",
586 $self->remoteroot,
587 $trfilename,
589 if ($self->verbose) {
590 my $doing = -e $dst ? "Sync" : "Get";
591 my $display_dst = join "/", "...", basename(dirname($dst)), basename($dst);
592 my $LFH = $self->_logfilehandle;
593 printf $LFH
595 "%-4s %d (1/1/%s) temp %s ... ",
596 $doing,
597 time,
598 $self->interval,
599 $display_dst,
602 my $gaveup = 0;
603 my $retried = 0;
604 local($ENV{LANG}) = "C";
605 while (!$self->rsync->exec(
606 src => $src,
607 dst => $dst,
608 )) {
609 $self->register_rsync_error ($self->rsync->err);
610 if (++$retried >= 3) {
611 warn "XXX giving up";
612 $gaveup = 1;
613 last;
616 if ($gaveup) {
617 my $LFH = $self->_logfilehandle;
618 printf $LFH "Warning: gave up mirroring %s, will try again later", $self->interval;
619 } else {
620 $self->_refresh_internals ($dst);
621 $self->have_mirrored (Time::HiRes::time);
622 $self->un_register_rsync_error ();
624 $self->unseed;
625 if ($self->verbose) {
626 my $LFH = $self->_logfilehandle;
627 print $LFH "DONE\n";
629 my $mode = 0644;
630 chmod $mode, $dst or die "Could not chmod $mode '$dst': $!";
631 return $dst;
634 sub _verified_tempdir {
635 my($self) = @_;
636 my $tempdir = $self->__verified_tempdir();
637 return $tempdir if defined $tempdir;
638 unless ($tempdir = $self->tempdir) {
639 $tempdir = $self->localroot;
641 unless (-d $tempdir) {
642 mkpath $tempdir;
644 $self->__verified_tempdir($tempdir);
645 return $tempdir;
648 sub _get_remote_rat_provide_tempfile_object {
649 my($self, $trfilename) = @_;
650 my $_verified_tempdir = $self->_verified_tempdir;
651 my $fh = File::Temp->new
652 (TEMPLATE => sprintf(".FRMRecent-%s-XXXX",
653 $trfilename,
655 DIR => $_verified_tempdir,
656 SUFFIX => $self->serializer_suffix,
657 UNLINK => $self->_use_tempfile,
659 my $mode = 0644;
660 my $dst = $fh->filename;
661 chmod $mode, $dst or die "Could not chmod $mode '$dst': $!";
662 if ($self->_use_tempfile) {
663 $self->_current_tempfile_fh ($fh); # delay self destruction
665 return $fh;
668 sub _logfilehandle {
669 my($self) = @_;
670 my $fh;
671 if (my $vl = $self->verboselog) {
672 open $fh, ">>", $vl or die "Could not open >> '$vl': $!";
673 } else {
674 $fh = \*STDERR;
676 return $fh;
679 =head2 $localpath = $obj->get_remotefile ( $relative_path )
681 Rsyncs one single remote file to local filesystem.
683 Note: no locking is done on this file. Any number of processes may
684 mirror this object.
686 Note II: do not use for recentfiles. If you are a cascading
687 slave/server combination, it would confuse other slaves. They would
688 expect the contents of these recentfiles to be available. Use
689 get_remote_recentfile_as_tempfile() instead.
691 =cut
693 sub get_remotefile {
694 my($self, $path) = @_;
695 my $dst = File::Spec->catfile($self->localroot, $path);
696 mkpath dirname $dst;
697 if ($self->verbose) {
698 my $doing = -e $dst ? "Sync" : "Get";
699 my $LFH = $self->_logfilehandle;
700 printf $LFH
702 "%-4s %d (1/1/%s) %s ... ",
703 $doing,
704 time,
705 $self->interval,
706 $path,
709 local($ENV{LANG}) = "C";
710 my $remoteroot = $self->remoteroot or die "Alert: missing remoteroot. Cannot continue";
711 while (!$self->rsync->exec(
712 src => join("/",
713 $remoteroot,
714 $path),
715 dst => $dst,
716 )) {
717 $self->register_rsync_error ($self->rsync->err);
719 $self->un_register_rsync_error ();
720 if ($self->verbose) {
721 my $LFH = $self->_logfilehandle;
722 print $LFH "DONE\n";
724 return $dst;
727 =head2 $obj->interval ( $interval_spec )
729 Get/set accessor. $interval_spec is a string and described below in
730 the section INTERVAL SPEC.
732 =cut
734 sub interval {
735 my ($self, $interval) = @_;
736 if (@_ >= 2) {
737 $self->_interval($interval);
738 $self->_rfile(undef);
740 $interval = $self->_interval;
741 unless (defined $interval) {
742 # do not ask the $self too much, it recurses!
743 require Carp;
744 Carp::confess("Alert: interval undefined for '".$self."'. Cannot continue.");
746 return $interval;
749 =head2 $secs = $obj->interval_secs ( $interval_spec )
751 $interval_spec is described below in the section INTERVAL SPEC. If
752 empty defaults to the inherent interval for this object.
754 =cut
756 sub interval_secs {
757 my ($self, $interval) = @_;
758 $interval ||= $self->interval;
759 unless (defined $interval) {
760 die "interval_secs() called without argument on an object without a declared one";
762 my ($n,$t) = $interval =~ /^(\d*)([smhdWMQYZ]$)/ or
763 die "Could not determine seconds from interval[$interval]";
764 if ($interval eq "Z") {
765 return MAX_INT;
766 } elsif (exists $seconds{$t} and $n =~ /^\d+$/) {
767 return $seconds{$t}*$n;
768 } else {
769 die "Invalid interval specification: n[$n]t[$t]";
773 =head2 $obj->localroot ( $localroot )
775 Get/set accessor. The local root of the tree.
777 =cut
779 sub localroot {
780 my ($self, $localroot) = @_;
781 if (@_ >= 2) {
782 $self->_localroot($localroot);
783 $self->_rfile(undef);
785 $localroot = $self->_localroot;
788 =head2 $ret = $obj->local_path($path_found_in_recentfile)
790 Combines the path to our local mirror and the path of an object found
791 in this I<recentfile>. In other words: the target of a mirror operation.
793 Implementation note: We split on slashes and then use
794 File::Spec::catfile to adjust to the local operating system.
796 =cut
798 sub local_path {
799 my($self,$path) = @_;
800 unless (defined $path) {
801 # seems like a degenerated case
802 return $self->localroot;
804 my @p = split m|/|, $path;
805 File::Spec->catfile($self->localroot,@p);
808 =head2 (void) $obj->lock
810 Locking is implemented with an C<mkdir> on a locking directory
811 (C<.lock> appended to $rfile).
813 =cut
815 sub lock {
816 my ($self) = @_;
817 # not using flock because it locks on filehandles instead of
818 # old school ressources.
819 my $locked = $self->_is_locked and return;
820 my $rfile = $self->rfile;
821 # XXX need a way to allow breaking the lock
822 my $start = time;
823 my $locktimeout = $self->locktimeout || 600;
824 while (not mkdir "$rfile.lock") {
825 Time::HiRes::sleep 0.01;
826 if (time - $start > $locktimeout) {
827 die "Could not acquire lockdirectory '$rfile.lock': $!";
830 $self->_is_locked (1);
833 =head2 (void) $obj->merge ($other)
835 Bulk update of this object with another one. It's used to merge a
836 smaller and younger $other object into the current one. If this file
837 is a C<Z> file, then we normally do not merge in objects of type
838 C<delete>; this can be overridden by setting
839 keep_delete_objects_forever. But if we encounter an object of type
840 delete we delete the corresponding C<new> object if we have it.
842 If there is nothing to be merged, nothing is done.
844 =cut
846 sub merge {
847 my($self, $other) = @_;
848 $self->_merge_sanitycheck ( $other );
849 $other->lock;
850 my $other_recent = $other->recent_events || [];
851 # $DB::single++ if $other->interval_secs eq "2" and grep {$_->{epoch} eq "999.999"} @$other_recent;
852 $self->lock;
853 $self->_merge_locked ( $other, $other_recent );
854 $self->unlock;
855 $other->unlock;
858 sub _merge_locked {
859 my($self, $other, $other_recent) = @_;
860 my $my_recent = $self->recent_events || [];
862 # calculate the target time span
863 my $myepoch = $my_recent->[0] ? $my_recent->[0]{epoch} : undef;
864 my $epoch = $other_recent->[0] ? $other_recent->[0]{epoch} : $myepoch;
865 my $oldest_allowed = 0;
866 my $something_done;
867 unless ($my_recent->[0]) {
868 # obstetrics
869 $something_done = 1;
871 if ($epoch) {
872 if (($other->dirtymark||0) ne ($self->dirtymark||0)) {
873 $oldest_allowed = 0;
874 $something_done = 1;
875 } elsif (my $merged = $self->merged) {
876 my $secs = $self->interval_secs();
877 $oldest_allowed = min($epoch - $secs, $merged->{epoch}||0);
878 if (@$other_recent and
879 _bigfloatlt($other_recent->[-1]{epoch}, $oldest_allowed)
881 $oldest_allowed = $other_recent->[-1]{epoch};
884 while (@$my_recent && _bigfloatlt($my_recent->[-1]{epoch}, $oldest_allowed)) {
885 pop @$my_recent;
886 $something_done = 1;
890 my %have_path;
891 my $other_recent_filtered = [];
892 for my $oev (@$other_recent) {
893 my $oevepoch = $oev->{epoch} || 0;
894 next if _bigfloatlt($oevepoch, $oldest_allowed);
895 my $path = $oev->{path};
896 next if $have_path{$path}++;
897 if ( $self->interval eq "Z"
898 and $oev->{type} eq "delete"
899 and ! $self->keep_delete_objects_forever
901 # do nothing
902 } else {
903 if (!$myepoch || _bigfloatgt($oevepoch, $myepoch)) {
904 $something_done = 1;
906 push @$other_recent_filtered, { epoch => $oev->{epoch}, path => $path, type => $oev->{type} };
909 if ($something_done) {
910 $self->_merge_something_done ($other_recent_filtered, $my_recent, $other_recent, $other, \%have_path, $epoch);
914 sub _merge_something_done {
915 my($self, $other_recent_filtered, $my_recent, $other_recent, $other, $have_path, $epoch) = @_;
916 my $recent = [];
917 my $epoch_conflict = 0;
918 my $last_epoch;
919 ZIP: while (@$other_recent_filtered || @$my_recent) {
920 my $event;
921 if (!@$my_recent ||
922 @$other_recent_filtered && _bigfloatge($other_recent_filtered->[0]{epoch},$my_recent->[0]{epoch})) {
923 $event = shift @$other_recent_filtered;
924 } else {
925 $event = shift @$my_recent;
926 next ZIP if $have_path->{$event->{path}}++;
928 $epoch_conflict=1 if defined $last_epoch && $event->{epoch} eq $last_epoch;
929 $last_epoch = $event->{epoch};
930 push @$recent, $event;
932 if ($epoch_conflict) {
933 my %have_epoch;
934 for (my $i = $#$recent;$i>=0;$i--) {
935 my $epoch = $recent->[$i]{epoch};
936 if ($have_epoch{$epoch}++) {
937 while ($have_epoch{$epoch}) {
938 $epoch = _increase_a_bit($epoch);
940 $recent->[$i]{epoch} = $epoch;
941 $have_epoch{$epoch}++;
945 if (!$self->dirtymark || $other->dirtymark ne $self->dirtymark) {
946 $self->dirtymark ( $other->dirtymark );
948 $self->write_recent($recent);
949 $other->merged({
950 time => Time::HiRes::time, # not used anywhere
951 epoch => $recent->[0]{epoch},
952 into_interval => $self->interval, # not used anywhere
954 $other->write_recent($other_recent);
957 sub _merge_sanitycheck {
958 my($self, $other) = @_;
959 if ($self->interval_secs <= $other->interval_secs) {
960 die sprintf
962 "Alert: illegal merge operation of a bigger interval[%d] into a smaller[%d]",
963 $self->interval_secs,
964 $other->interval_secs,
969 =head2 merged
971 Hashref denoting when this recentfile has been merged into some other
972 at which epoch.
974 =cut
976 sub merged {
977 my($self, $set) = @_;
978 if (defined $set) {
979 $self->_merged ($set);
981 my $merged = $self->_merged;
982 my $into;
983 if ($merged and $into = $merged->{into_interval} and defined $self->_interval) {
984 # sanity checks
985 if ($into eq $self->interval) {
986 require Carp;
987 Carp::cluck(sprintf
989 "Warning: into_interval[%s] same as own interval[%s]. Danger ahead.",
990 $into,
991 $self->interval,
993 } elsif ($self->interval_secs($into) < $self->interval_secs) {
994 require Carp;
995 Carp::cluck(sprintf
997 "Warning: into_interval_secs[%s] smaller than own interval_secs[%s] on interval[%s]. Danger ahead.",
998 $self->interval_secs($into),
999 $self->interval_secs,
1000 $self->interval,
1004 $merged;
1007 =head2 $hashref = $obj->meta_data
1009 Returns the hashref of metadata that the server has to add to the
1010 I<recentfile>.
1012 =cut
1014 sub meta_data {
1015 my($self) = @_;
1016 my $ret = $self->{meta};
1017 for my $m (
1018 "aggregator",
1019 "canonize",
1020 "comment",
1021 "dirtymark",
1022 "filenameroot",
1023 "interval",
1024 "merged",
1025 "minmax",
1026 "protocol",
1027 "serializer_suffix",
1029 my $v = $self->$m;
1030 if (defined $v) {
1031 $ret->{$m} = $v;
1034 # XXX need to reset the Producer if I am a writer, keep it when I
1035 # am a reader
1036 $ret->{Producers} ||= {
1037 __PACKAGE__, "$VERSION", # stringified it looks better
1038 '$0', $0,
1039 'time', Time::HiRes::time,
1041 $ret->{dirtymark} ||= Time::HiRes::time;
1042 return $ret;
1045 =head2 $success = $obj->mirror ( %options )
1047 Mirrors the files in this I<recentfile> as reported by
1048 C<recent_events>. Options named C<after>, C<before>, C<max>, and
1049 C<skip-deletes> are passed through to the C<recent_events> call. The
1050 boolean option C<piecemeal>, if true, causes C<mirror> to only rsync
1051 C<max_files_per_connection> and keep track of the rsynced files so
1052 that future calls will rsync different files until all files are
1053 brought to sync.
1055 =cut
1057 sub mirror {
1058 my($self, %options) = @_;
1059 my $trecentfile = $self->get_remote_recentfile_as_tempfile();
1060 $self->_use_tempfile (1);
1061 my %passthrough = map { ($_ => $options{$_}) } qw(before after max skip-deletes);
1062 my ($recent_events) = $self->recent_events(%passthrough);
1063 my(@error, @dlcollector); # download-collector: array containing paths we need
1064 my $first_item = 0;
1065 my $last_item = $#$recent_events;
1066 my $done = $self->done;
1067 my $pathdb = $self->_pathdb;
1068 ITEM: for my $i ($first_item..$last_item) {
1069 my $status = +{};
1070 $self->_mirror_item
1073 $recent_events,
1074 $last_item,
1075 $done,
1076 $pathdb,
1077 \@dlcollector,
1078 \%options,
1079 $status,
1080 \@error,
1082 last if $i == $last_item;
1083 if ($status->{mustreturn}){
1084 if ($self->_current_tempfile && ! $self->_current_tempfile_fh) {
1085 # looks like a bug somewhere else
1086 my $t = $self->_current_tempfile;
1087 unlink $t or die "Could not unlink '$t': $!";
1088 $self->_current_tempfile(undef);
1089 $self->_use_tempfile(0);
1091 return;
1094 if (@dlcollector) {
1095 my $success = eval { $self->_mirror_dlcollector (\@dlcollector,$pathdb,$recent_events);};
1096 if (!$success || $@) {
1097 warn "Warning: Unknown error while mirroring: $@";
1098 push @error, $@;
1099 sleep 1;
1102 if ($self->verbose) {
1103 my $LFH = $self->_logfilehandle;
1104 print $LFH "DONE\n";
1106 # once we've gone to the end we consider ourselves free of obligations
1107 $self->unseed;
1108 $self->_mirror_unhide_tempfile ($trecentfile);
1109 $self->_mirror_perform_delayed_ops;
1110 return !@error;
1113 sub _mirror_item {
1114 my($self,
1116 $recent_events,
1117 $last_item,
1118 $done,
1119 $pathdb,
1120 $dlcollector,
1121 $options,
1122 $status,
1123 $error,
1124 ) = @_;
1125 my $recent_event = $recent_events->[$i];
1126 return if $done->covered ( $recent_event->{epoch} );
1127 if ($pathdb) {
1128 my $rec = $pathdb->{$recent_event->{path}};
1129 if ($rec && $rec->{recentepoch}) {
1130 if (_bigfloatgt
1131 ( $rec->{recentepoch}, $recent_event->{epoch} )){
1132 $done->register ($recent_events, [$i]);
1133 return;
1137 my $dst = $self->local_path($recent_event->{path});
1138 if ($recent_event->{type} eq "new"){
1139 $self->_mirror_item_new
1141 $dst,
1143 $last_item,
1144 $recent_events,
1145 $recent_event,
1146 $dlcollector,
1147 $pathdb,
1148 $status,
1149 $error,
1150 $options,
1152 } elsif ($recent_event->{type} eq "delete") {
1153 my $activity;
1154 if ($options->{'skip-deletes'}) {
1155 $activity = "skipped";
1156 } else {
1157 if (! -e $dst) {
1158 $activity = "not_found";
1159 } elsif (-l $dst or not -d _) {
1160 $self->delayed_operations->{unlink}{$dst}++;
1161 $activity = "deleted";
1162 } else {
1163 $self->delayed_operations->{rmdir}{$dst}++;
1164 $activity = "deleted";
1167 $done->register ($recent_events, [$i]);
1168 if ($pathdb) {
1169 $self->_mirror_register_path($pathdb,[$recent_event],$activity);
1171 } else {
1172 warn "Warning: invalid upload type '$recent_event->{type}'";
1176 sub _mirror_item_new {
1177 my($self,
1178 $dst,
1180 $last_item,
1181 $recent_events,
1182 $recent_event,
1183 $dlcollector,
1184 $pathdb,
1185 $status,
1186 $error,
1187 $options,
1188 ) = @_;
1189 if ($self->verbose) {
1190 my $doing = -e $dst ? "Sync" : "Get";
1191 my $LFH = $self->_logfilehandle;
1192 printf $LFH
1194 "%-4s %d (%d/%d/%s) %s ... ",
1195 $doing,
1196 time,
1197 1+$i,
1198 1+$last_item,
1199 $self->interval,
1200 $recent_event->{path},
1203 my $max_files_per_connection = $self->max_files_per_connection || 42;
1204 my $success;
1205 if ($self->verbose) {
1206 my $LFH = $self->_logfilehandle;
1207 print $LFH "\n";
1209 push @$dlcollector, { rev => $recent_event, i => $i };
1210 if (@$dlcollector >= $max_files_per_connection) {
1211 $success = eval {$self->_mirror_dlcollector ($dlcollector,$pathdb,$recent_events);};
1212 my $sleep = $self->sleep_per_connection;
1213 $sleep = 0.42 unless defined $sleep;
1214 Time::HiRes::sleep $sleep;
1215 if ($options->{piecemeal}) {
1216 $status->{mustreturn} = 1;
1217 return;
1219 } else {
1220 return;
1222 if (!$success || $@) {
1223 warn "Warning: Error while mirroring: $@";
1224 push @$error, $@;
1225 sleep 1;
1227 if ($self->verbose) {
1228 my $LFH = $self->_logfilehandle;
1229 print $LFH "DONE\n";
1233 sub _mirror_dlcollector {
1234 my($self,$xcoll,$pathdb,$recent_events) = @_;
1235 my $success = $self->mirror_path([map {$_->{rev}{path}} @$xcoll]);
1236 if ($pathdb) {
1237 $self->_mirror_register_path($pathdb,[map {$_->{rev}} @$xcoll],"rsync");
1239 $self->done->register($recent_events, [map {$_->{i}} @$xcoll]);
1240 @$xcoll = ();
1241 return $success;
1244 sub _mirror_register_path {
1245 my($self,$pathdb,$coll,$activity) = @_;
1246 my $time = time;
1247 for my $item (@$coll) {
1248 $pathdb->{$item->{path}} =
1250 recentepoch => $item->{epoch},
1251 ($activity."_on") => $time,
1256 sub _mirror_unhide_tempfile {
1257 my($self, $trecentfile) = @_;
1258 my $rfile = $self->rfile;
1259 if (rename $trecentfile, $rfile) {
1260 # warn "DEBUG: renamed '$trecentfile' to '$rfile'";
1261 } else {
1262 require Carp;
1263 Carp::confess("Could not rename '$trecentfile' to '$rfile': $!");
1265 $self->_use_tempfile (0);
1266 if (my $ctfh = $self->_current_tempfile_fh) {
1267 $ctfh->unlink_on_destroy (0);
1268 $self->_current_tempfile_fh (undef);
1272 sub _mirror_perform_delayed_ops {
1273 my($self) = @_;
1274 my $delayed = $self->delayed_operations;
1275 for my $dst (keys %{$delayed->{unlink}}) {
1276 unless (unlink $dst) {
1277 require Carp;
1278 Carp::cluck ( "Warning: Error while unlinking '$dst': $!" );
1280 if ($self->verbose) {
1281 my $doing = "Del";
1282 my $LFH = $self->_logfilehandle;
1283 printf $LFH
1285 "%-4s %d (%s) %s DONE\n",
1286 $doing,
1287 time,
1288 $self->interval,
1289 $dst,
1291 delete $delayed->{unlink}{$dst};
1294 for my $dst (sort {length($b) <=> length($a)} keys %{$delayed->{rmdir}}) {
1295 unless (rmdir $dst) {
1296 require Carp;
1297 Carp::cluck ( "Warning: Error on rmdir '$dst': $!" );
1299 if ($self->verbose) {
1300 my $doing = "Del";
1301 my $LFH = $self->_logfilehandle;
1302 printf $LFH
1304 "%-4s %d (%s) %s DONE\n",
1305 $doing,
1306 time,
1307 $self->interval,
1308 $dst,
1310 delete $delayed->{rmdir}{$dst};
1315 =head2 $success = $obj->mirror_path ( $arrref | $path )
1317 If the argument is a scalar it is treated as a path. The remote path
1318 is mirrored into the local copy. $path is the path found in the
1319 I<recentfile>, i.e. it is relative to the root directory of the
1320 mirror.
1322 If the argument is an array reference then all elements are treated as
1323 a path below the current tree and all are rsynced with a single
1324 command (and a single connection).
1326 =cut
1328 sub mirror_path {
1329 my($self,$path) = @_;
1330 # XXX simplify the two branches such that $path is treated as
1331 # [$path] maybe even demand the argument as an arrayref to
1332 # simplify docs and code. (rsync-over-recentfile-2.pl uses the
1333 # interface)
1334 if (ref $path and ref $path eq "ARRAY") {
1335 my $dst = $self->localroot;
1336 mkpath dirname $dst;
1337 my($fh) = File::Temp->new(TEMPLATE => sprintf(".%s-XXXX",
1338 lc $self->filenameroot,
1340 TMPDIR => 1,
1341 UNLINK => 0,
1343 for my $p (@$path) {
1344 print $fh $p, "\n";
1346 $fh->flush;
1347 $fh->unlink_on_destroy(1);
1348 my $gaveup = 0;
1349 my $retried = 0;
1350 local($ENV{LANG}) = "C";
1351 while (!$self->rsync->exec
1353 src => join("/",
1354 $self->remoteroot,
1356 dst => $dst,
1357 'files-from' => $fh->filename,
1358 )) {
1359 my(@err) = $self->rsync->err;
1360 if ($self->_my_ignore_link_stat_errors && "@err" =~ m{^ rsync: \s link_stat }x ) {
1361 if ($self->verbose) {
1362 my $LFH = $self->_logfilehandle;
1363 print $LFH "Info: ignoring link_stat error '@err'";
1365 return 1;
1367 $self->register_rsync_error (@err);
1368 if (++$retried >= 3) {
1369 my $batchsize = @$path;
1370 warn "The number of rsync retries now reached 3 within a batch of size $batchsize. Error was '@err'. Giving up now, will retry later, ";
1371 $gaveup = 1;
1372 last;
1374 sleep 1;
1376 unless ($gaveup) {
1377 $self->un_register_rsync_error ();
1379 } else {
1380 my $dst = $self->local_path($path);
1381 mkpath dirname $dst;
1382 local($ENV{LANG}) = "C";
1383 while (!$self->rsync->exec
1385 src => join("/",
1386 $self->remoteroot,
1387 $path
1389 dst => $dst,
1390 )) {
1391 my(@err) = $self->rsync->err;
1392 if ($self->_my_ignore_link_stat_errors && "@err" =~ m{^ rsync: \s link_stat }x ) {
1393 if ($self->verbose) {
1394 my $LFH = $self->_logfilehandle;
1395 print $LFH "Info: ignoring link_stat error '@err'";
1397 return 1;
1399 $self->register_rsync_error (@err);
1401 $self->un_register_rsync_error ();
1403 return 1;
1406 sub _my_ignore_link_stat_errors {
1407 my($self) = @_;
1408 my $x = $self->ignore_link_stat_errors;
1409 $x = 1 unless defined $x;
1410 return $x;
1413 sub _my_current_rfile {
1414 my($self) = @_;
1415 my $rfile;
1416 if ($self->_use_tempfile) {
1417 $rfile = $self->_current_tempfile;
1418 } else {
1419 $rfile = $self->rfile;
1421 return $rfile;
1424 =head2 $path = $obj->naive_path_normalize ($path)
1426 Takes an absolute unix style path as argument and canonicalizes it to
1427 a shorter path if possible, removing things like double slashes or
1428 C</./> and removes references to C<../> directories to get a shorter
1429 unambiguos path. This is used to make the code easier that determines
1430 if a file passed to C<upgrade()> is indeed below our C<localroot>.
1432 =cut
1434 sub naive_path_normalize {
1435 my($self,$path) = @_;
1436 $path =~ s|/+|/|g;
1437 1 while $path =~ s|/[^/]+/\.\./|/|;
1438 $path =~ s|/$||;
1439 $path;
1442 =head2 $ret = $obj->read_recent_1 ( $data )
1444 Delegate of C<recent_events()> on protocol 1
1446 =cut
1448 sub read_recent_1 {
1449 my($self, $data) = @_;
1450 return $data->{recent};
1453 =head2 $array_ref = $obj->recent_events ( %options )
1455 Note: the code relies on the resource being written atomically. We
1456 cannot lock because we may have no write access. If the caller has
1457 write access (eg. aggregate() or update()), it has to care for any
1458 necessary locking and it MUST write atomically.
1460 If C<$options{after}> is specified, only file events after this
1461 timestamp are returned.
1463 If C<$options{before}> is specified, only file events before this
1464 timestamp are returned.
1466 If C<$options{max}> is specified only a maximum of this many events is
1467 returned.
1469 If C<$options{'skip-deletes'}> is specified, no files-to-be-deleted
1470 will be returned.
1472 If C<$options{contains}> is specified the value must be a hash
1473 reference containing a query. The query may contain the keys C<epoch>,
1474 C<path>, and C<type>. Each represents a condition that must be met. If
1475 there is more than one such key, the conditions are ANDed.
1477 If C<$options{info}> is specified, it must be a hashref. This hashref
1478 will be filled with metadata about the unfiltered recent_events of
1479 this object, in key C<first> there is the first item, in key C<last>
1480 is the last.
1482 =cut
1484 sub recent_events {
1485 my ($self, %options) = @_;
1486 my $info = $options{info};
1487 if ($self->is_slave) {
1488 # XXX seems dubious, might produce tempfiles without removing them?
1489 $self->get_remote_recentfile_as_tempfile;
1491 my $rfile_or_tempfile = $self->_my_current_rfile or return [];
1492 -e $rfile_or_tempfile or return [];
1493 my $suffix = $self->serializer_suffix;
1494 my ($data) = eval {
1495 $self->_try_deserialize
1497 $suffix,
1498 $rfile_or_tempfile,
1501 my $err = $@;
1502 if ($err or !$data) {
1503 return [];
1505 my $re;
1506 if (reftype $data eq 'ARRAY') { # protocol 0
1507 $re = $data;
1508 } else {
1509 $re = $self->_recent_events_protocol_x
1511 $data,
1512 $rfile_or_tempfile,
1515 return $re unless grep {defined $options{$_}} qw(after before contains max skip-deletes);
1516 $self->_recent_events_handle_options ($re, \%options);
1519 # File::Rsync::Mirror::Recentfile::_recent_events_handle_options
1520 sub _recent_events_handle_options {
1521 my($self, $re, $options) = @_;
1522 my $last_item = $#$re;
1523 my $info = $options->{info};
1524 if ($info) {
1525 $info->{first} = $re->[0];
1526 $info->{last} = $re->[-1];
1528 if (defined $options->{after}) {
1529 if ($re->[0]{epoch} > $options->{after}) {
1530 if (
1531 my $f = first
1532 {$re->[$_]{epoch} <= $options->{after}}
1533 0..$#$re
1535 $last_item = $f-1;
1537 } else {
1538 $last_item = -1;
1541 my $first_item = 0;
1542 if (defined $options->{before}) {
1543 if ($re->[0]{epoch} > $options->{before}) {
1544 if (
1545 my $f = first
1546 {$re->[$_]{epoch} < $options->{before}}
1547 0..$last_item
1549 $first_item = $f;
1551 } else {
1552 $first_item = 0;
1555 if (0 != $first_item || -1 != $last_item) {
1556 @$re = splice @$re, $first_item, 1+$last_item-$first_item;
1558 if ($options->{'skip-deletes'}) {
1559 @$re = grep { $_->{type} ne "delete" } @$re;
1561 if (my $contopt = $options->{contains}) {
1562 my $seen_allowed = 0;
1563 for my $allow (qw(epoch path type)) {
1564 if (exists $contopt->{$allow}) {
1565 $seen_allowed++;
1566 my $v = $contopt->{$allow};
1567 @$re = grep { $_->{$allow} eq $v } @$re;
1570 if (keys %$contopt > $seen_allowed) {
1571 require Carp;
1572 Carp::confess
1573 (sprintf "unknown query: %s", join ", ", %$contopt);
1576 if ($options->{max} && @$re > $options->{max}) {
1577 @$re = splice @$re, 0, $options->{max};
1579 $re;
1582 sub _recent_events_protocol_x {
1583 my($self,
1584 $data,
1585 $rfile_or_tempfile,
1586 ) = @_;
1587 my $meth = sprintf "read_recent_%d", $data->{meta}{protocol};
1588 # we may be reading meta for the first time
1589 while (my($k,$v) = each %{$data->{meta}}) {
1590 if ($k ne lc $k){ # "Producers"
1591 $self->{ORIG}{$k} = $v;
1592 next;
1594 next if defined $self->$k;
1595 $self->$k($v);
1597 my $re = $self->$meth ($data);
1598 my $minmax;
1599 if (my @stat = stat $rfile_or_tempfile) {
1600 $minmax = { mtime => $stat[9] };
1601 } else {
1602 # defensive because ABH encountered:
1604 #### Sync 1239828608 (1/1/Z) temp .../authors/.FRMRecent-RECENT-Z.yaml-
1605 #### Ydr_.yaml ... DONE
1606 #### Cannot stat '/mirrors/CPAN/authors/.FRMRecent-RECENT-Z.yaml-
1607 #### Ydr_.yaml': No such file or directory at /usr/lib/perl5/site_perl/
1608 #### 5.8.8/File/Rsync/Mirror/Recentfile.pm line 1558.
1609 #### unlink0: /mirrors/CPAN/authors/.FRMRecent-RECENT-Z.yaml-Ydr_.yaml is
1610 #### gone already at cpan-pause.pl line 0
1612 my $LFH = $self->_logfilehandle;
1613 print $LFH "Warning (maybe harmless): Cannot stat '$rfile_or_tempfile': $!"
1615 if (@$re) {
1616 $minmax->{min} = $re->[-1]{epoch};
1617 $minmax->{max} = $re->[0]{epoch};
1619 $self->minmax ( $minmax );
1620 return $re;
1623 sub _try_deserialize {
1624 my($self,
1625 $suffix,
1626 $rfile_or_tempfile,
1627 ) = @_;
1628 if ($suffix eq ".yaml") {
1629 require YAML::Syck;
1630 YAML::Syck::LoadFile($rfile_or_tempfile);
1631 } elsif ($HAVE->{"Data::Serializer"}) {
1632 my $serializer = Data::Serializer->new
1633 ( serializer => $serializers{$suffix} );
1634 my $serialized = do
1636 open my $fh, $rfile_or_tempfile or die "Could not open: $!";
1637 local $/;
1638 <$fh>;
1640 $serializer->raw_deserialize($serialized);
1641 } else {
1642 die "Data::Serializer not installed, cannot proceed with suffix '$suffix'";
1646 sub _refresh_internals {
1647 my($self, $dst) = @_;
1648 my $class = ref $self;
1649 my $rfpeek = $class->new_from_file ($dst);
1650 for my $acc (qw(
1651 _merged
1652 minmax
1653 )) {
1654 $self->$acc ( $rfpeek->$acc );
1656 my $old_dirtymark = $self->dirtymark;
1657 my $new_dirtymark = $rfpeek->dirtymark;
1658 if ($old_dirtymark && $new_dirtymark && $new_dirtymark ne $old_dirtymark) {
1659 $self->done->reset;
1660 $self->dirtymark ( $new_dirtymark );
1661 $self->_uptodateness_ever_reached(0);
1662 $self->seed;
1666 =head2 $ret = $obj->rfilename
1668 Just the basename of our I<recentfile>, composed from C<filenameroot>,
1669 a dash, C<interval>, and C<serializer_suffix>. E.g. C<RECENT-6h.yaml>
1671 =cut
1673 sub rfilename {
1674 my($self) = @_;
1675 my $file = sprintf("%s-%s%s",
1676 $self->filenameroot,
1677 $self->interval,
1678 $self->serializer_suffix,
1680 return $file;
1683 =head2 $str = $self->remote_dir
1685 The directory we are mirroring from.
1687 =cut
1689 sub remote_dir {
1690 my($self, $set) = @_;
1691 if (defined $set) {
1692 $self->_remote_dir ($set);
1694 my $x = $self->_remote_dir;
1695 $self->is_slave (1);
1696 return $x;
1699 =head2 $str = $obj->remoteroot
1701 =head2 (void) $obj->remoteroot ( $set )
1703 Get/Set the composed prefix needed when rsyncing from a remote module.
1704 If remote_host, remote_module, and remote_dir are set, it is composed
1705 from these.
1707 =cut
1709 sub remoteroot {
1710 my($self, $set) = @_;
1711 if (defined $set) {
1712 $self->_remoteroot($set);
1714 my $remoteroot = $self->_remoteroot;
1715 unless (defined $remoteroot) {
1716 $remoteroot = sprintf
1718 "%s%s%s",
1719 defined $self->remote_host ? ($self->remote_host."::") : "",
1720 defined $self->remote_module ? ($self->remote_module."/") : "",
1721 defined $self->remote_dir ? $self->remote_dir : "",
1723 $self->_remoteroot($remoteroot);
1725 return $remoteroot;
1728 =head2 (void) $obj->split_rfilename ( $recentfilename )
1730 Inverse method to C<rfilename>. C<$recentfilename> is a plain filename
1731 of the pattern
1733 $filenameroot-$interval$serializer_suffix
1735 e.g.
1737 RECENT-1M.yaml
1739 This filename is split into its parts and the parts are fed to the
1740 object itself.
1742 =cut
1744 sub split_rfilename {
1745 my($self, $rfname) = @_;
1746 my($splitter) = qr(^(.+)-([^-\.]+)(\.[^\.]+));
1747 if (my($f,$i,$s) = $rfname =~ $splitter) {
1748 $self->filenameroot ($f);
1749 $self->interval ($i);
1750 $self->serializer_suffix ($s);
1751 } else {
1752 die "Alert: cannot split '$rfname', doesn't match '$splitter'";
1754 return;
1757 =head2 my $rfile = $obj->rfile
1759 Returns the full path of the I<recentfile>
1761 =cut
1763 sub rfile {
1764 my($self) = @_;
1765 my $rfile = $self->_rfile;
1766 return $rfile if defined $rfile;
1767 $rfile = File::Spec->catfile
1768 ($self->localroot,
1769 $self->rfilename,
1771 $self->_rfile ($rfile);
1772 return $rfile;
1775 =head2 $rsync_obj = $obj->rsync
1777 The File::Rsync object that this object uses for communicating with an
1778 upstream server.
1780 =cut
1782 sub rsync {
1783 my($self) = @_;
1784 my $rsync = $self->_rsync;
1785 unless (defined $rsync) {
1786 my $rsync_options = $self->rsync_options || {};
1787 if ($HAVE->{"File::Rsync"}) {
1788 $rsync = File::Rsync->new($rsync_options);
1789 $self->_rsync($rsync);
1790 } else {
1791 die "File::Rsync required for rsync operations. Cannot continue";
1794 return $rsync;
1797 =head2 (void) $obj->register_rsync_error(@err)
1799 =head2 (void) $obj->un_register_rsync_error()
1801 Register_rsync_error is called whenever the File::Rsync object fails
1802 on an exec (say, connection doesn't succeed). It issues a warning and
1803 sleeps for an increasing amount of time. Un_register_rsync_error
1804 resets the error count. See also accessor C<max_rsync_errors>.
1806 =cut
1809 my $no_success_count = 0;
1810 my $no_success_time = 0;
1811 sub register_rsync_error {
1812 my($self, @err) = @_;
1813 chomp @err;
1814 $no_success_time = time;
1815 $no_success_count++;
1816 my $max_rsync_errors = $self->max_rsync_errors;
1817 $max_rsync_errors = MAX_INT unless defined $max_rsync_errors;
1818 if ($max_rsync_errors>=0 && $no_success_count >= $max_rsync_errors) {
1819 require Carp;
1820 Carp::confess
1822 sprintf
1824 "Alert: Error while rsyncing (%s): '%s', error count: %d, exiting now,",
1825 $self->interval,
1826 join(" ",@err),
1827 $no_success_count,
1830 my $sleep = 12 * $no_success_count;
1831 $sleep = 300 if $sleep > 300;
1832 require Carp;
1833 Carp::cluck
1834 (sprintf
1836 "Warning: %s, Error while rsyncing (%s): '%s', sleeping %d",
1837 scalar(localtime($no_success_time)),
1838 $self->interval,
1839 join(" ",@err),
1840 $sleep,
1842 sleep $sleep
1844 sub un_register_rsync_error {
1845 my($self) = @_;
1846 $no_success_time = 0;
1847 $no_success_count = 0;
1851 =head2 $clone = $obj->_sparse_clone
1853 Clones just as much from itself that it does not hurt. Experimental
1854 method.
1856 Note: what fits better: sparse or shallow? Other suggestions?
1858 =cut
1860 sub _sparse_clone {
1861 my($self) = @_;
1862 my $new = bless {}, ref $self;
1863 for my $m (qw(
1864 _interval
1865 _localroot
1866 _remoteroot
1867 _rfile
1868 _use_tempfile
1869 aggregator
1870 filenameroot
1871 ignore_link_stat_errors
1872 is_slave
1873 max_files_per_connection
1874 protocol
1875 rsync_options
1876 serializer_suffix
1877 sleep_per_connection
1878 tempdir
1879 verbose
1880 )) {
1881 my $o = $self->$m;
1882 $o = Storable::dclone $o if ref $o;
1883 $new->$m($o);
1885 $new;
1888 =head2 $boolean = OBJ->ttl_reached ()
1890 =cut
1892 sub ttl_reached {
1893 my($self) = @_;
1894 my $have_mirrored = $self->have_mirrored || 0;
1895 my $now = Time::HiRes::time;
1896 my $ttl = $self->ttl;
1897 $ttl = 24.2 unless defined $ttl;
1898 if ($now > $have_mirrored + $ttl) {
1899 return 1;
1901 return 0;
1904 =head2 (void) $obj->unlock()
1906 Unlocking is implemented with an C<rmdir> on a locking directory
1907 (C<.lock> appended to $rfile).
1909 =cut
1911 sub unlock {
1912 my($self) = @_;
1913 return unless $self->_is_locked;
1914 my $rfile = $self->rfile;
1915 rmdir "$rfile.lock";
1916 $self->_is_locked (0);
1919 =head2 unseed
1921 Sets this recentfile in the state of not 'seeded'.
1923 =cut
1924 sub unseed {
1925 my($self) = @_;
1926 $self->seeded(0);
1929 =head2 $ret = $obj->update ($path, $type)
1931 =head2 $ret = $obj->update ($path, "new", $dirty_epoch)
1933 =head2 $ret = $obj->update ()
1935 Enter one file into the local I<recentfile>. $path is the (usually
1936 absolute) path. If the path is outside I<our> tree, then it is
1937 ignored.
1939 C<$type> is one of C<new> or C<delete>.
1941 Events of type C<new> may set $dirty_epoch. $dirty_epoch is normally
1942 not used and the epoch is calculated by the update() routine itself
1943 based on current time. But if there is the demand to insert a
1944 not-so-current file into the dataset, then the caller sets
1945 $dirty_epoch. This causes the epoch of the registered event to become
1946 $dirty_epoch or -- if the exact value given is already taken -- a tiny
1947 bit more. As compensation the dirtymark of the whole dataset is set to
1948 now or the current epoch, whichever is higher. Note: setting the
1949 dirty_epoch to the future is prohibited as it's very unlikely to be
1950 intended: it definitely might wreak havoc with the index files.
1952 The new file event is unshifted (or, if dirty_epoch is set, inserted
1953 at the place it belongs to, according to the rule to have a sequence
1954 of strictly decreasing timestamps) to the array of recent_events and
1955 the array is shortened to the length of the timespan allowed. This is
1956 usually the timespan specified by the interval of this recentfile but
1957 as long as this recentfile has not been merged to another one, the
1958 timespan may grow without bounds.
1960 The third form runs an update without inserting a new file. This may
1961 be desired to truncate a recentfile.
1963 =cut
1964 sub _epoch_monotonically_increasing {
1965 my($self,$epoch,$recent) = @_;
1966 return $epoch unless @$recent; # the first one goes unoffended
1967 if (_bigfloatgt("".$epoch,$recent->[0]{epoch})) {
1968 return $epoch;
1969 } else {
1970 return _increase_a_bit($recent->[0]{epoch});
1973 sub update {
1974 my($self,$path,$type,$dirty_epoch) = @_;
1975 if (defined $path or defined $type or defined $dirty_epoch) {
1976 die "update called without path argument" unless defined $path;
1977 die "update called without type argument" unless defined $type;
1978 die "update called with illegal type argument: $type" unless $type =~ /(new|delete)/;
1979 # since we have keep_delete_objects_forever we must let them inject delete objects too:
1980 #die "update called with \$type=$type and \$dirty_epoch=$dirty_epoch; ".
1981 # "dirty_epoch only allowed with type=new" if defined $dirty_epoch and $type ne "new";
1982 my $canonmeth = $self->canonize;
1983 unless ($canonmeth) {
1984 $canonmeth = "naive_path_normalize";
1986 $path = $self->$canonmeth($path);
1988 my $lrd = $self->localroot;
1989 $self->lock;
1990 # you must calculate the time after having locked, of course
1991 my $now = Time::HiRes::time;
1992 my $interval = $self->interval;
1993 my $secs = $self->interval_secs();
1994 my $recent = $self->recent_events;
1996 my $epoch;
1997 if (defined $dirty_epoch && _bigfloatgt($now,$dirty_epoch)) {
1998 $epoch = $dirty_epoch;
1999 } else {
2000 $epoch = $self->_epoch_monotonically_increasing($now,$recent);
2003 $recent ||= [];
2004 my $oldest_allowed = 0;
2005 my $merged = $self->merged;
2006 if ($merged->{epoch}) {
2007 my $virtualnow = _bigfloatmax($now,$epoch);
2008 # for the lower bound I think we need no big math, we calc already
2009 $oldest_allowed = min($virtualnow - $secs, $merged->{epoch}, $epoch);
2010 } else {
2011 # as long as we are not merged at all, no limits!
2013 my $something_done = 0;
2014 TRUNCATE: while (@$recent) {
2015 # $DB::single++ unless defined $oldest_allowed;
2016 if (_bigfloatlt($recent->[-1]{epoch}, $oldest_allowed)) {
2017 pop @$recent;
2018 $something_done = 1;
2019 } else {
2020 last TRUNCATE;
2023 if (defined $path && $path =~ s|^\Q$lrd\E||) {
2024 $path =~ s|^/||;
2025 my $splicepos;
2026 # remove the older duplicates of this $path, irrespective of $type:
2027 if (defined $dirty_epoch) {
2028 my $ctx = $self->_update_with_dirty_epoch($path,$recent,$epoch);
2029 $recent = $ctx->{recent};
2030 $splicepos = $ctx->{splicepos};
2031 $epoch = $ctx->{epoch};
2032 my $dirtymark = $self->dirtymark;
2033 my $new_dm = $now;
2034 if (_bigfloatgt($epoch, $now)) { # just in case we had to increase it
2035 $new_dm = $epoch;
2037 $self->dirtymark($new_dm);
2038 my $merged = $self->merged;
2039 if (not defined $merged->{epoch} or _bigfloatlt($epoch,$merged->{epoch})) {
2040 $self->merged(+{});
2042 } else {
2043 $recent = [ grep { $_->{path} ne $path } @$recent ];
2044 $splicepos = 0;
2046 if (defined $splicepos) {
2047 splice @$recent, $splicepos, 0, { epoch => $epoch, path => $path, type => $type };
2049 $something_done = 1;
2052 $self->write_recent($recent) if $something_done;
2053 $self->_assert_symlink;
2054 $self->unlock;
2057 sub _update_with_dirty_epoch {
2058 my($self,$path,$recent,$epoch) = @_;
2059 my $splicepos;
2060 my $new_recent = [];
2061 if (grep { $_->{path} ne $path } @$recent) {
2062 my $cancel = 0;
2063 KNOWN_EVENT: for my $i (0..$#$recent) {
2064 if ($recent->[$i]{path} eq $path) {
2065 if ($recent->[$i]{epoch} eq $epoch) {
2066 # nothing to do
2067 $cancel = 1;
2068 last KNOWN_EVENT;
2070 } else {
2071 push @$new_recent, $recent->[$i];
2074 @$recent = @$new_recent unless $cancel;
2076 if (!exists $recent->[0] or _bigfloatgt($epoch,$recent->[0]{epoch})) {
2077 $splicepos = 0;
2078 } elsif (_bigfloatlt($epoch,$recent->[-1]{epoch})) {
2079 $splicepos = @$recent;
2080 } else {
2081 RECENT: for my $i (0..$#$recent) {
2082 my $ev = $recent->[$i];
2083 if ($epoch eq $recent->[$i]{epoch}) {
2084 $epoch = _increase_a_bit($epoch, $i ? $recent->[$i-1]{epoch} : undef);
2086 if (_bigfloatgt($epoch,$recent->[$i]{epoch})) {
2087 $splicepos = $i;
2088 last RECENT;
2092 return {
2093 recent => $recent,
2094 splicepos => $splicepos,
2095 epoch => $epoch,
2099 =head2 seed
2101 Sets this recentfile in the state of 'seeded' which means it has to
2102 re-evaluate its uptodateness.
2104 =cut
2105 sub seed {
2106 my($self) = @_;
2107 $self->seeded(1);
2110 =head2 seeded
2112 Tells if the recentfile is in the state 'seeded'.
2114 =cut
2115 sub seeded {
2116 my($self, $set) = @_;
2117 if (defined $set) {
2118 $self->_seeded ($set);
2120 my $x = $self->_seeded;
2121 unless (defined $x) {
2122 $x = 0;
2123 $self->_seeded ($x);
2125 return $x;
2128 =head2 uptodate
2130 True if this object has mirrored the complete interval covered by the
2131 current recentfile.
2133 =cut
2134 sub uptodate {
2135 my($self) = @_;
2136 my $uptodate;
2137 my $why;
2138 if ($self->_uptodateness_ever_reached and not $self->seeded) {
2139 $why = "saturated";
2140 $uptodate = 1;
2142 # it's too easy to misconfigure ttl and related timings and then
2143 # never reach uptodateness, so disabled 2009-03-22
2144 if (0 and not defined $uptodate) {
2145 if ($self->ttl_reached){
2146 $why = "ttl_reached returned true, so we are not uptodate";
2147 $uptodate = 0 ;
2150 unless (defined $uptodate) {
2151 # look if recentfile has unchanged timestamp
2152 my $minmax = $self->minmax;
2153 if (exists $minmax->{mtime}) {
2154 my $rfile = $self->_my_current_rfile;
2155 my @stat = stat $rfile or die "Could not stat '$rfile': $!";
2156 my $mtime = $stat[9];
2157 if (defined $mtime && defined $minmax->{mtime} && $mtime > $minmax->{mtime}) {
2158 $why = "mtime[$mtime] of rfile[$rfile] > minmax/mtime[$minmax->{mtime}], so we are not uptodate";
2159 $uptodate = 0;
2160 } else {
2161 my $covered = $self->done->covered(@$minmax{qw(max min)});
2162 $why = sprintf "minmax covered[%s], so we return that", defined $covered ? $covered : "UNDEF";
2163 $uptodate = $covered;
2167 unless (defined $uptodate) {
2168 $why = "fallthrough, so not uptodate";
2169 $uptodate = 0;
2171 if ($uptodate) {
2172 $self->_uptodateness_ever_reached(1);
2174 my $remember =
2176 uptodate => $uptodate,
2177 why => $why,
2179 $self->_remember_last_uptodate_call($remember);
2180 return $uptodate;
2183 =head2 $obj->write_recent ($recent_files_arrayref)
2185 Writes a I<recentfile> based on the current reflection of the current
2186 state of the tree limited by the current interval.
2188 =cut
2189 sub _resort {
2190 my($self) = @_;
2191 @{$_[1]} = sort { _bigfloatcmp($b->{epoch},$a->{epoch}) } @{$_[1]};
2192 return;
2194 sub write_recent {
2195 my ($self,$recent) = @_;
2196 die "write_recent called without argument" unless defined $recent;
2197 my $Last_epoch;
2198 SANITYCHECK: for my $i (0..$#$recent) {
2199 if (defined($Last_epoch) and _bigfloatge($recent->[$i]{epoch},$Last_epoch)) {
2200 require Carp;
2201 Carp::confess(sprintf "Warning: disorder '%s'>='%s', re-sorting %s\n",
2202 $recent->[$i]{epoch}, $Last_epoch, $self->interval);
2203 # you may want to:
2204 # $self->_resort($recent);
2205 # last SANITYCHECK;
2207 $Last_epoch = $recent->[$i]{epoch};
2209 my $minmax = $self->minmax;
2210 if (!defined $minmax->{max} || _bigfloatlt($minmax->{max},$recent->[0]{epoch})) {
2211 $minmax->{max} = $recent->[0]{epoch};
2213 if (!defined $minmax->{min} || _bigfloatlt($minmax->{min},$recent->[-1]{epoch})) {
2214 $minmax->{min} = $recent->[-1]{epoch};
2216 $self->minmax($minmax);
2217 my $meth = sprintf "write_%d", $self->protocol;
2218 $self->$meth($recent);
2221 =head2 $obj->write_0 ($recent_files_arrayref)
2223 Delegate of C<write_recent()> on protocol 0
2225 =cut
2227 sub write_0 {
2228 my ($self,$recent) = @_;
2229 my $rfile = $self->rfile;
2230 YAML::Syck::DumpFile("$rfile.new",$recent);
2231 rename "$rfile.new", $rfile or die "Could not rename to '$rfile': $!";
2234 =head2 $obj->write_1 ($recent_files_arrayref)
2236 Delegate of C<write_recent()> on protocol 1
2238 =cut
2240 sub write_1 {
2241 my ($self,$recent) = @_;
2242 my $rfile = $self->rfile;
2243 my $suffix = $self->serializer_suffix;
2244 my $data = {
2245 meta => $self->meta_data,
2246 recent => $recent,
2248 my $serialized;
2249 if ($suffix eq ".yaml") {
2250 $serialized = YAML::Syck::Dump($data);
2251 } elsif ($HAVE->{"Data::Serializer"}) {
2252 my $serializer = Data::Serializer->new
2253 ( serializer => $serializers{$suffix} );
2254 $serialized = $serializer->raw_serialize($data);
2255 } else {
2256 die "Data::Serializer not installed, cannot proceed with suffix '$suffix'";
2258 open my $fh, ">", "$rfile.new" or die "Could not open >'$rfile.new': $!";
2259 print $fh $serialized;
2260 close $fh or die "Could not close '$rfile.new': $!";
2261 rename "$rfile.new", $rfile or die "Could not rename to '$rfile': $!";
2264 BEGIN {
2265 my $nq = qr/[^"]+/; # non-quotes
2266 my @pod_lines =
2267 split /\n/, <<'=cut'; %serializers = map { my @x = /"($nq)"\s+=>\s+"($nq)"/; @x } grep {s/^=item\s+C<<\s+(.+)\s+>>$/$1/} @pod_lines; }
2269 =head1 SERIALIZERS
2271 The following suffixes are supported and trigger the use of these
2272 serializers:
2274 =over 4
2276 =item C<< ".yaml" => "YAML::Syck" >>
2278 =item C<< ".json" => "JSON" >>
2280 =item C<< ".sto" => "Storable" >>
2282 =item C<< ".dd" => "Data::Dumper" >>
2284 =back
2286 =cut
2288 BEGIN {
2289 my @pod_lines =
2290 split /\n/, <<'=cut'; %seconds = map { eval } grep {s/^=item\s+C<<(.+)>>$/$1/} @pod_lines; }
2292 =head1 INTERVAL SPEC
2294 An interval spec is a primitive way to express time spans. Normally it
2295 is composed from an integer and a letter.
2297 As a special case, a string that consists only of the single letter
2298 C<Z>, stands for MAX_INT seconds.
2300 The following letters express the specified number of seconds:
2302 =over 4
2304 =item C<< s => 1 >>
2306 =item C<< m => 60 >>
2308 =item C<< h => 60*60 >>
2310 =item C<< d => 60*60*24 >>
2312 =item C<< W => 60*60*24*7 >>
2314 =item C<< M => 60*60*24*30 >>
2316 =item C<< Q => 60*60*24*90 >>
2318 =item C<< Y => 60*60*24*365.25 >>
2320 =back
2322 =cut
2324 =head1 SEE ALSO
2326 L<File::Rsync::Mirror::Recent>,
2327 L<File::Rsync::Mirror::Recentfile::Done>,
2328 L<File::Rsync::Mirror::Recentfile::FakeBigFloat>
2330 =head1 BUGS
2332 Please report any bugs or feature requests through the web interface
2334 L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=File-Rsync-Mirror-Recentfile>.
2335 I will be notified, and then you'll automatically be notified of
2336 progress on your bug as I make changes.
2338 =head1 KNOWN BUGS
2340 Memory hungry: it seems all memory is allocated during the initial
2341 rsync where a list of all files is maintained in memory.
2343 =head1 SUPPORT
2345 You can find documentation for this module with the perldoc command.
2347 perldoc File::Rsync::Mirror::Recentfile
2349 You can also look for information at:
2351 =over 4
2353 =item * RT: CPAN's request tracker
2355 L<http://rt.cpan.org/NoAuth/Bugs.html?Dist=File-Rsync-Mirror-Recentfile>
2357 =item * AnnoCPAN: Annotated CPAN documentation
2359 L<http://annocpan.org/dist/File-Rsync-Mirror-Recentfile>
2361 =item * CPAN Ratings
2363 L<http://cpanratings.perl.org/d/File-Rsync-Mirror-Recentfile>
2365 =item * Search CPAN
2367 L<http://search.cpan.org/dist/File-Rsync-Mirror-Recentfile>
2369 =back
2372 =head1 ACKNOWLEDGEMENTS
2374 Thanks to RJBS for module-starter.
2376 =head1 AUTHOR
2378 Andreas König
2380 =head1 COPYRIGHT & LICENSE
2382 Copyright 2008,2009 Andreas König.
2384 This program is free software; you can redistribute it and/or modify it
2385 under the same terms as Perl itself.
2388 =cut
2390 1; # End of File::Rsync::Mirror::Recentfile
2392 # Local Variables:
2393 # mode: cperl
2394 # cperl-indent-level: 4
2395 # End: