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