Imported Upstream version 3.3.3
[debian/amanda] / server-src / taper.pl
1 #! @PERL@
2 # Copyright (c) 2009-2012 Zmanda Inc.  All Rights Reserved.
3 #
4 # This program is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU General Public License
6 # as published by the Free Software Foundation; either version 2
7 # of the License, or (at your option) any later version.
8 #
9 # This program is distributed in the hope that it will be useful, but
10 # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
11 # or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12 # for more details.
13 #
14 # You should have received a copy of the GNU General Public License along
15 # with this program; if not, write to the Free Software Foundation, Inc.,
16 # 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 #
18 # Contact information: Zmanda Inc., 465 S. Mathilda Ave., Suite 300
19 # Sunnyvale, CA 94086, USA, or: http://www.zmanda.com
20
21 use lib '@amperldir@';
22 use strict;
23 use warnings;
24
25 package main;
26
27 use Amanda::Util qw( :constants );
28 use Amanda::Config qw( :init :getconf );
29 use Amanda::Logfile qw( :logtype_t log_add $amanda_log_trace_log );
30 use Amanda::Debug qw( debug );
31 use Amanda::Taper::Controller;
32 use Getopt::Long;
33
34 Amanda::Util::setup_application("taper", "server", $CONTEXT_DAEMON);
35
36 my $config_overrides = new_config_overrides($#ARGV+1);
37
38 debug("Arguments: " . join(' ', @ARGV));
39 Getopt::Long::Configure(qw{bundling});
40 GetOptions(
41     'version' => \&Amanda::Util::version_opt,
42     'o=s' => sub { add_config_override_opt($config_overrides, $_[1]); },
43 ) or usage();
44
45 if (@ARGV != 1) {
46     die "USAGE: taper <config> <config-overwrites>";
47 }
48
49 set_config_overrides($config_overrides);
50 config_init($CONFIG_INIT_EXPLICIT_NAME, $ARGV[0]);
51 my ($cfgerr_level, @cfgerr_errors) = config_errors();
52 if ($cfgerr_level >= $CFGERR_WARNINGS) {
53     config_print_errors();
54     if ($cfgerr_level >= $CFGERR_ERRORS) {
55         die "Errors processing config file";
56     }
57 }
58
59 # our STDERR is connected to the amdump log file, so be sure to do unbuffered
60 # writes to that file
61 my $old_fh = select(STDERR);
62 $| = 1;
63 select($old_fh);
64
65 log_add($L_INFO, "taper pid $$");
66 Amanda::Debug::add_amanda_log_handler($amanda_log_trace_log);
67
68 Amanda::Util::finish_setup($RUNNING_AS_DUMPUSER);
69
70 my $tlf = Amanda::Config::config_dir_relative(getconf($CNF_TAPELIST));
71 my $tl = Amanda::Tapelist->new($tlf);
72 # transfer control to the Amanda::Taper::Controller class implemented above
73 my $controller = Amanda::Taper::Controller->new(tapelist => $tl);
74 $controller->start();
75 Amanda::MainLoop::run();
76
77 log_add($L_INFO, "pid-done $$");
78 Amanda::Util::finish_application();