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 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721
|
# Copyright (c) 2010-2013 Zmanda, Inc. All Rights Reserved.
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
#* License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library 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 the GNU Lesser General Public
# License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this library; if not, write to the Free Software Foundation,
# Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
#
# Contact information: Zmanda Inc., 465 S. Mathilda Ave., Suite 300
# Sunnyvale, CA 94086, USA, or: http://www.zmanda.com
package Amanda::Recovery::Clerk;
use strict;
use warnings;
use Carp;
use Amanda::Xfer qw( :constants );
use Amanda::Device qw( :constants );
use Amanda::Header;
use Amanda::Holding;
use Amanda::Debug qw( :logging );
use Amanda::MainLoop;
=head1 NAME
Amanda::Recovery::Clerk - handle assembling dumpfiles from multiple parts
=head1 SYNOPSIS
my $clerk = Amanda::Recovery::Clerk->new(
scan => $scan)
step setup => sub {
$clerk->get_xfer_src(
dump => $dump, # from Amanda::Recovery::Planner or Amanda::DB::Catalog
xfer_src_cb => $steps->{'xfer_src_cb'});
};
step xfer_src_cb => sub {
my ($errors, $header, $xfer_src, $directtcp_supported) = @_;
die join("\n", @$errors) if ($errors);
print "restoring from " . $header->summary() . "\n";
my $xfer = Amanda::Xfer->new([$xfer_src, $xfer_dest]);
$xfer->start(sub { $clerk->handle_xmsg(@_); });
$clerk->start_recovery(
xfer => $xfer,
recovery_cb => $steps->{'recovery_cb'});
};
step recovery_cb => sub {
my %params = @_;
die join("\n", @{$params{'errors'}}) if ($params{'errors'});
print "result: $params{result}\n";
};
# ...
$clerk->quit(finished_cb => sub {
$next_op_cb->();
};
=head1 OVERVIEW
This package is the counterpart to L<Amanda::Taper::Scribe>, and handles
re-assembling dumpfiles from multiple parts, possibly distributed over several
volumes.
A Clerk manages a source element in a transfer. The destination is up to the
caller - it could be a file, or even an element obtained from a Scribe. A
particular Clerk instance only handles one transfer at a time, but maintains
its state between transfers, so multiple transfers from the same device will
proceed without rewinding or reloading the volume.
At a high level, the Clerk is operated as follows: the caller provides a dump,
which includes information on the volumes, and file numbers on those volumes,
from which to read the data. The dump object is from L<Amanda::DB::Catalog>,
usually by awy of L<Amanda::Recovery::Planner>. The Clerk responds with a
transfer source element, which the caller then uses to construct an start a
transfer. The clerk then uses a changer to find the required volumes, seeks to
the appropriate files, and reads the data into the transfer. Note that the
clerk can also recover holding-disk files.
Because the clerk operates transfers (see L<Amanda::Xfer>) and the Changer API
(L<Amanda::Changer>), its operations assume that L<Amanda::MainLoop> is in use.
=head1 OPERATING A CLERK
To use a Clerk, first create a new object, giving the changer object that the
Clerk should use to load devices:
my $clerk = Amanda::Recovery::Clerk->new(
scan => $scan);
If the optional parameter C<debug> is given with a true value, then the Clerk
will log additional debug information to the Amanda debug logs. This value is
also set to true if the C<DEBUG_RECOVERY> configuration parameter is set.
The optional C<feedback> parameter gives an object which will handle feedback
form the clerk. See FEEDBACK, below.
The C<scan> parameter must be an L<Amanda::Recover::Scan> instance, which
will be used to find the volumes required for the recovery.
=head2 TRANSFERRING A DUMPFILE
Next, get a dump object and supply it to the Clerk to get a transfer source
element. The Clerk will verify that the supplied dump matches the on-medium
header during the recovery operation, taking into account the C<single_part>
flag added by the Planner for single-part recoveries.
$clerk->get_xfer_src(
dump => $dump,
xfer_src_cb => $xfer_src_cb);
During this operation, the Clerk looks up the first part in the dump and
fetches its header. Callers often need this header to construct a transfer
appropriate to the data on the volume. The C<$xfer_src_cb> is called with a
transfer element and with the first header, or with a list of errors if
something goes wrong. The final argument is true if the device from which
the restore is done supports directtcp.
$xfer_src_cb->(undef, $header, $xfer_src, $dtcp_supp); # OK
$xfer_src_cb->([ $err, $err2 ], undef, undef, undef); # errors
Once C<$xfer_src_cb> has been called, build the transfer element into a
transfer, and start the transfer. Send all transfer messages to the clerk:
my $xfer->start(sub {
my ($src, $msg, $xfer) = @_;
$clerk->handle_xmsg($src, $msg, $xfer);
});
Once the transfer is started, inform the Clerk:
$clerk->recovery_started(
xfer => $xfer,
recovery_cb => $recovery_cb);
The C<$recovery_cb> will be called when the recovery is complete - either
successfully or unsuccessfully. It is called as:
$recovery_cb->(
result => "DONE", # or "FAILED"
errors => [], # or a list of error messages
);
Once the recovery callback has been invoked, it is safe to start a new transfer
with the same Clerk.
Note that, because the Clerk only handles one transfer at a time, if dumpfiles
are interleaved on a volume then the recovery process will need to seek to and
read all parts from one dumpfile before reading any parts from the next
dumpfile. Amanda does not generate interleaved dumps, so in practice this
limitation is not significant.
=head2 QUITTING
When all necessary dumpfiles have been transferred, the Clerk must be cleanly
shut down. This is done with the C<quit> method:
$clerk->quit(
finished_cb => $finished_cb);
The process should not exit until the C<finished_cb> has been invoked.
=head2 FEEDBACK
A feedback object implements a number of methods that are called at various
times in the recovery process, allowing the user to customize that behavior. A
user-defined feedback object should inherit from
C<Amanda::Recovery::Clerk::Feedback>, which implements no-op versions of all of
the methods.
The C<clerk_notif_part> method is called just before each part is restored, and is
given the label, filenum, and header. Its return value, if any, is ignored.
Similarly, C<clerk_notif_holding> is called for a holding-disk recovery and is given
the holding filename and its header. Note that C<clerk_notif_holding> is called
before the C<xfer_src_cb>, since data will begin flowing from a holding disk
immediately when the transfer is started.
A typical Clerk feedback class might look like:
use base 'Amanda::Recovery::Clerk::Feedback';
sub clerk_notif_part {
my $self = shift;
my ($label, $filenum, $hdr) = @_;
print "restoring part ", $hdr->{'partnum'},
" from '$label' file $filenum\n";
}
=cut
sub new {
my $class = shift;
my %params = @_;
my $debug = $Amanda::Config::debug_recovery;
$debug = $params{'debug'}
if defined $params{'debug'} and $params{'debug'} > $debug;
my $self = {
scan => $params{'scan'},
debug => $debug,
feedback => $params{'feedback'}
|| Amanda::Recovery::Clerk::Feedback->new(),
on_vol_hdr => undef,
current_label => undef,
current_dev => undef,
current_res => undef,
xfer_state => undef,
};
return bless ($self, $class);
}
sub get_xfer_src {
my $self = shift;
my %params = @_;
for my $rq_param (qw(dump xfer_src_cb)) {
croak "required parameter '$rq_param' missing"
unless exists $params{$rq_param};
}
confess "Clerk is already busy" if $self->{'xfer_state'};
# set up a new xfer_state
my $xfer_state = $self->{'xfer_state'} = {
dump => $params{'dump'},
is_holding => exists $params{'dump'}->{'parts'}[1]{'holding_file'},
next_part_idx => 1,
next_part => undef,
xfer_src => undef,
xfer => undef,
xfer_src_ready => 0,
recovery_cb => undef,
xfer_src_cb => $params{'xfer_src_cb'},
writing_part => 0,
errors => [],
};
$self->_maybe_start_part();
}
sub start_recovery {
my $self = shift;
my %params = @_;
$self->dbg("starting recovery");
for my $rq_param (qw(xfer recovery_cb)) {
croak "required parameter '$rq_param' missing"
unless exists $params{$rq_param};
}
confess "no xfer is in progress" unless $self->{'xfer_state'};
confess "get_xfer_src has not finished"
if defined $self->{'xfer_state'}->{'xfer_src_cb'};
my $xfer_state = $self->{'xfer_state'};
$xfer_state->{'recovery_cb'} = $params{'recovery_cb'};
$xfer_state->{'xfer'} = $params{'xfer'};
$self->_maybe_start_part();
}
sub handle_xmsg {
my $self = shift;
my ($src, $msg, $xfer) = @_;
if ($msg->{'elt'} == $self->{'xfer_state'}->{'xfer_src'}) {
if ($msg->{'type'} == $XMSG_PART_DONE) {
$self->_xmsg_part_done($src, $msg, $xfer);
} elsif ($msg->{'type'} == $XMSG_ERROR) {
$self->_xmsg_error($src, $msg, $xfer);
} elsif ($msg->{'type'} == $XMSG_READY) {
$self->_xmsg_ready($src, $msg, $xfer);
}
}
if ($msg->{'type'} == $XMSG_DONE) {
$self->_xmsg_done($src, $msg, $xfer);
}
}
sub quit {
my $self = shift;
my %params = @_;
my $finished_cb = $params{'finished_cb'};
confess "Cannot quit a Clerk while a transfer is in progress"
if $self->{'xfer_state'} and $self->{'xfer_state'}->{'xfer'};
my $steps = define_steps
cb_ref => \$finished_cb,
finalize => sub { $self->{'scan'}->quit() if defined $self->{'scan'} };
step release => sub {
# if we have a reservation, we need to release it; otherwise, we can
# just call finished_cb
if ($self->{'current_res'}) {
$self->{'current_dev'}->finish();
$self->{'current_res'}->release(finished_cb => $finished_cb);
} else {
$finished_cb->();
}
};
}
sub _xmsg_ready {
my $self = shift;
my ($src, $msg, $xfer) = @_;
my $xfer_state = $self->{'xfer_state'};
if (!$xfer_state->{'is_holding'}) {
$xfer_state->{'xfer_src_ready'} = 1;
$self->_maybe_start_part();
}
}
sub _xmsg_part_done {
my $self = shift;
my ($src, $msg, $xfer) = @_;
my $xfer_state = $self->{'xfer_state'};
my $next_label = $xfer_state->{'next_part'}->{'label'};
my $next_filenum = $xfer_state->{'next_part'}->{'filenum'};
confess "read incorrect filenum"
unless $next_filenum == $msg->{'fileno'};
$self->dbg("done reading file $next_filenum on '$next_label'");
# fix up the accounting, and then see if we can do something else
shift @{$xfer_state->{'remaining_plan'}};
$xfer_state->{'next_part_idx'}++;
$xfer_state->{'next_part'} = undef;
$self->{'on_vol_hdr'} = undef;
$self->_maybe_start_part();
}
sub _xmsg_error {
my $self = shift;
my ($src, $msg, $xfer) = @_;
my $xfer_state = $self->{'xfer_state'};
push @{$xfer_state->{'errors'}}, $msg->{'message'};
}
sub _xmsg_done {
my $self = shift;
my ($src, $msg, $xfer) = @_;
my $xfer_state = $self->{'xfer_state'};
# eliminate the transfer's state, since it's done
$self->{'xfer_state'} = undef;
# note that this does not release the reservation, in case the next
# transfer is from the same volume
my $result = (@{$xfer_state->{'errors'}})? "FAILED" : "DONE";
return $xfer_state->{'recovery_cb'}->(
result => $result,
errors => $xfer_state->{'errors'},
bytes_read => $xfer_state->{'xfer_src'}->get_bytes_read()
);
}
sub _maybe_start_part {
my $self = shift;
my ($finished_cb) = @_;
my $xfer_state = $self->{'xfer_state'};
# NOTE: this method is invoked *both* from get_xfer_src and start_recovery;
# in the former case it merely loads the file and returns the header.
# The finished_cb is called when the method is done thinking about starting
# a new part, which usually isn't a very interesting event. It can safely
# be omitted.
$finished_cb ||= sub { };
my $steps = define_steps
cb_ref => \$finished_cb;
step check_ready => sub {
# if we're still working on a part, do nothing
return $finished_cb->()
if $xfer_state->{'writing_part'};
# if we have an xfer source already, and it's not ready, then don't start
# the part. This happens when start_recovery is called before XMSG_READY.
return $finished_cb->()
if $xfer_state->{'xfer_src'} and not $xfer_state->{'xfer_src_ready'};
# if we have an xfer source already, but the recovery hasn't started, then
# don't start the part. This happens when XMSG_READY comes before
# start_recovery.
return $finished_cb->()
if $xfer_state->{'xfer_src'} and not $xfer_state->{'recovery_cb'};
$steps->{'check_next'}->();
};
step check_next => sub {
# first, see if anything remains to be done
if (!exists $xfer_state->{'dump'}{'parts'}[$xfer_state->{'next_part_idx'}]) {
# this should not happen until the xfer is started..
confess "xfer should be running already"
unless $xfer_state->{'xfer'};
# tell the source to generate EOF
$xfer_state->{'xfer_src'}->start_part(undef);
return $finished_cb->();
}
if (!defined $xfer_state->{'next_part'} or
$xfer_state->{'next_part'} != $xfer_state->{'dump'}{'parts'}[$xfer_state->{'next_part_idx'}]) {
$self->{'on_vol_hdr'} = undef;
$xfer_state->{'next_part'} =
$xfer_state->{'dump'}{'parts'}[$xfer_state->{'next_part_idx'}];
}
# short-circuit for a holding disk
if ($xfer_state->{'is_holding'}) {
return $steps->{'holding_recovery'}->();
}
my $next_label = $xfer_state->{'next_part'}->{'label'};
# load the next label, if necessary
if ($self->{'current_label'} and
$self->{'current_label'} eq $next_label) {
# jump to the seek_file call
return $steps->{'seek_and_check'}->();
}
# need to get a new tape
return $steps->{'release'}->();
};
step release => sub {
if (!$self->{'current_res'}) {
return $steps->{'released'}->();
}
$self->{'current_dev'}->finish();
$self->{'current_res'}->release(
finished_cb => $steps->{'released'});
};
step released => sub {
my ($err) = @_;
if ($err) {
push @{$xfer_state->{'errors'}}, "$err";
return $steps->{'handle_error'}->();
}
$self->{'on_vol_hdr'} = undef;
$self->{'current_dev'} = undef;
$self->{'current_res'} = undef;
$self->{'current_label'} = undef;
# now load the next volume
my $next_label = $xfer_state->{'next_part'}->{'label'};
$self->dbg("loading volume '$next_label'");
$self->{'scan'}->find_volume(label => $next_label,
res_cb => $steps->{'loaded_label'});
};
step loaded_label => sub {
my ($err, $res) = @_;
my $next_label = $xfer_state->{'next_part'}->{'label'};
if ($err) {
push @{$xfer_state->{'errors'}}, "$err";
return $steps->{'handle_error'}->();
}
$self->{'current_res'} = $res;
# tell the XSR to use this device, before we start it. If we don't actually
# end up using this device, it's no big deal.
my $dev = $res->{'device'};
if ($xfer_state->{'xfer_src'}
and $xfer_state->{'xfer_src'}->isa("Amanda::Xfer::Source::Recovery")) {
$xfer_state->{'xfer_src'}->use_device($dev);
}
# open the device and check the label, then go to seek_and_check
if (!$dev->start($Amanda::Device::ACCESS_READ, undef, undef)) {
$err = $dev->error_or_status();
} else {
if ($dev->volume_label ne $next_label) {
$err = "expected volume label '$next_label', but found volume " .
"label '" . $dev->volume_label . "'";
} else {
$self->{'on_vol_hdr'} = undef;
$self->{'current_dev'} = $dev;
$self->{'current_label'} = $dev->volume_label;
# success!
return $steps->{'seek_and_check'}->();
}
}
# the volume didn't work out, so release the reservation and fail
$res->release(finished_cb => sub {
my ($release_err) = @_;
if ($release_err) { # geez, someone is having a bad day!
push @{$xfer_state->{'errors'}}, "$release_err";
return $steps->{'handle_error'}->();
}
push @{$xfer_state->{'errors'}}, "$err";
return $steps->{'handle_error'}->();
});
};
step seek_and_check => sub {
my $next_label = $xfer_state->{'next_part'}->{'label'};
my $next_filenum = $xfer_state->{'next_part'}->{'filenum'};
my $dev = $self->{'current_dev'};
if (!$self->{'on_vol_hdr'}) {
$self->{'on_vol_hdr'} = $dev->seek_file($next_filenum);
if (!$self->{'on_vol_hdr'}) {
push @{$xfer_state->{'errors'}}, $dev->error_or_status();
return $steps->{'handle_error'}->();
}
if (!$self->_header_expected($self->{'on_vol_hdr'})) {
# _header_expected already pushed an error message or two
return $steps->{'handle_error'}->();
}
}
# now, either start the part, or invoke the xfer_src_cb.
if ($xfer_state->{'xfer_src_cb'}) {
my $cb = $xfer_state->{'xfer_src_cb'};
$xfer_state->{'xfer_src_cb'} = undef;
# make a new xfer_source
$xfer_state->{'xfer_src'} = Amanda::Xfer::Source::Recovery->new($dev),
$xfer_state->{'xfer_src_ready'} = 0;
# invoke the xfer_src_cb
$self->dbg("successfully located first part for recovery");
$cb->(undef, $self->{'on_vol_hdr'}, $xfer_state->{'xfer_src'},
$dev->directtcp_supported());
} else {
# notify caller of the part
$self->{'feedback'}->clerk_notif_part($next_label, $next_filenum, $self->{'on_vol_hdr'});
# start the part
$self->dbg("reading file $next_filenum on '$next_label'");
$xfer_state->{'xfer_src'}->start_part($dev);
}
# inform the caller that we're done
$finished_cb->();
};
# ---
# handle a holding restore
step holding_recovery => sub {
my $next_filename = $xfer_state->{'next_part'}->{'holding_file'};
my $on_disk_hdr = Amanda::Holding::get_header($next_filename);
if (!$on_disk_hdr) {
push @{$xfer_state->{'errors'}}, "error loading header from '$next_filename'";
return $steps->{'handle_error'}->();
}
# remove CONT_FILENAME from the header, since it's not needed anymore
$on_disk_hdr->{'cont_filename'} = '';
if (!$self->_header_expected($on_disk_hdr)) {
# _header_expected already pushed an error message or two
return $steps->{'handle_error'}->();
}
# now invoke the xfer_src_cb if it hasn't already been called.
if ($xfer_state->{'xfer_src_cb'}) {
my $cb = $xfer_state->{'xfer_src_cb'};
$xfer_state->{'xfer_src_cb'} = undef;
$xfer_state->{'xfer_src'} = Amanda::Xfer::Source::Holding->new(
$xfer_state->{'dump'}->{'parts'}[1]{'holding_file'}),
# Amanda::Xfer::Source::Holding was *born* ready.
$xfer_state->{'xfer_src_ready'} = 1;
# notify caller of the part, *before* xfer_src_cb is called!
$self->{'feedback'}->clerk_notif_holding($next_filename, $on_disk_hdr);
$self->dbg("successfully located holding file for recovery");
$cb->(undef, $on_disk_hdr, $xfer_state->{'xfer_src'}, 0);
}
# (nothing else to do until the xfer is done)
$finished_cb->();
};
# ----
# this utility sub handles errors differently depending on which phase is active.
step handle_error => sub {
if ($xfer_state->{'xfer_src_cb'}) {
# xfer_src_cb hasn't been called yet, so invoke it now,
# after deleting the xfer state
$self->{'xfer_state'} = undef;
$xfer_state->{'xfer_src_cb'}->($xfer_state->{'errors'},
undef, undef, undef);
} else {
# cancelling the xfer will eventually invoke recovery_cb
# via the XMSG_DONE
$xfer_state->{'xfer'}->cancel();
}
$finished_cb->();
};
}
sub _zeropad {
my ($timestamp) = @_;
if (length($timestamp) == 8) {
return $timestamp."000000";
}
return $timestamp;
}
sub _header_expected {
my $self = shift;
my ($on_vol_hdr) = @_;
my $xfer_state = $self->{'xfer_state'};
my $next_part = $xfer_state->{'next_part'};
my @errs;
if ($on_vol_hdr->{'name'} ne $next_part->{'dump'}->{'hostname'}) {
push @errs, "got hostname '$on_vol_hdr->{name}'; " .
"expected '$next_part->{dump}->{hostname}'";
}
if ($on_vol_hdr->{'disk'} ne $next_part->{'dump'}->{'diskname'}) {
push @errs, "got disk '$on_vol_hdr->{disk}'; " .
"expected '$next_part->{dump}->{diskname}'";
}
# zeropad the datestamps before comparing them, to avoid any compliations
# from usetimestamps=0
if (_zeropad($on_vol_hdr->{'datestamp'})
ne _zeropad($next_part->{'dump'}->{'dump_timestamp'})) {
push @errs, "got datestamp '$on_vol_hdr->{datestamp}'; " .
"expected '$next_part->{dump}->{dump_timestamp}'";
}
if ($on_vol_hdr->{'dumplevel'} != $next_part->{'dump'}->{'level'}) {
push @errs, "got dumplevel '$on_vol_hdr->{dumplevel}'; " .
"expected '$next_part->{dump}->{level}'";
}
unless ($xfer_state->{'is_holding'}) {
if ($on_vol_hdr->{'partnum'} != $next_part->{'partnum'}) {
push @errs, "got partnum '$on_vol_hdr->{partnum}'; " .
"expected '$next_part->{partnum}'";
}
}
if (@errs) {
my $errmsg;
if ($xfer_state->{'is_holding'}) {
$errmsg = "header on '$next_part->{holding_file}' does not match expectations: ";
} else {
my $label = $next_part->{'label'};
my $filenum = $next_part->{'filenum'};
$errmsg = "header on '$label' file $filenum does not match expectations: ";
}
$errmsg .= join("; ", @errs);
push @{$xfer_state->{'errors'}}, $errmsg;
return 0;
}
return 1;
}
sub dbg {
my ($self, $msg) = @_;
if ($self->{'debug'}) {
debug("Amanda::Recovery::Clerk: $msg");
}
}
package Amanda::Recovery::Clerk::Feedback;
sub new {
return bless {}, shift;
}
sub clerk_notif_part { }
sub clerk_notif_holding { }
1;
|