Imported Upstream version 2.4.5p1
[debian/amanda] / server-src / amoverview.pl.in
1 #!@PERL@
2
3 # Catch for sh/csh on systems without #! ability.
4 eval '(exit $?0)' && eval 'exec @PERL@ -S $0 ${1+"$@"}'
5         & eval 'exec @PERL@ -S $0 $argv:q'
6                 if 0;
7
8 require 5.001;
9
10 use FileHandle;
11 use Getopt::Long;
12 use Carp;
13 use POSIX;
14
15 sub Usage {
16     print STDERR <<END;
17 Usage: $0 [[-config] CONFIG] [-hostwidth width] [-diskwidth width] [-skipmissed] [-last] [-num0] [-togo0] [-verbose]
18
19 This script generates to standard output an overview of the filesystems
20 dumped over time and the type of dump done on a particular day, such as
21 a full dump, or an incremental, or if the dump failed.
22
23 You may override the default configuration `@DEFAULT_CONFIG@' by using
24 the -config command line option.  On larger installations, this script
25 will take a while to run.  In this case, run it with --verbose to see
26 how far along it is.
27 END
28     exit 1;
29 }
30
31 # Default paths for this installation of Amanda.
32 my $prefix='@prefix@';
33 $prefix=$prefix;                # avoid warnings about possible typo
34 my $exec_prefix="@exec_prefix@";
35 $exec_prefix=$exec_prefix;      # ditto
36 my $libexecdir="@libexecdir@";
37 my $sbindir="@sbindir@";
38  
39 # The directory where configurations can be found.
40 my $confdir="@CONFIG_DIR@";
41
42 # The default configuration.
43 my $config="@DEFAULT_CONFIG@";
44
45 # Get the version suffix.
46 my $USE_VERSION_SUFFIXES = '@USE_VERSION_SUFFIXES@';
47 my $suf = '';
48 if ( $USE_VERSION_SUFFIXES =~ /^yes$/i ) {
49         $suf='-@VERSION@';
50 }
51
52 my $amadmin     = "$sbindir/amadmin$suf";
53
54 # overrideable defaults
55 my $opt_config          = "$config";
56 my $opt_hostwidth       = 8;
57 my $opt_diskwidth       = 20;
58 my $opt_skipmissed      = 0;
59 my $opt_last            = 0;
60 my $opt_num0            = 0;
61 my $opt_togo0           = 0;
62 my $opt_verbose         = 0;
63
64 GetOptions('config=s'           => \$opt_config,
65            'hostwidth=i'        => \$opt_hostwidth,
66            'diskwidth=i'        => \$opt_diskwidth,
67            'skipmissed'         => \$opt_skipmissed,
68            'last'               => \$opt_last,
69            'num0'               => \$opt_num0,
70            'togo0'              => \$opt_togo0,
71            'verbose'            => \$opt_verbose)
72 or Usage();
73
74 if($#ARGV == 0) {
75   $opt_config = $ARGV[0];
76 }
77 elsif($#ARGV > 0) {
78   Usage();
79 }
80
81 -d "$confdir/$opt_config" or
82         die "$0: directory `$confdir/$opt_config' does not exist.\n";
83
84 # read disklist
85 my %disks = ();
86 $::host = '';
87 $::disk = '';
88 $opt_verbose and
89     print STDERR "Running $amadmin $opt_config disklist\n";
90 my $dlfh = new FileHandle "$amadmin $opt_config disklist|" or
91     die "$0: error in opening `$amadmin $opt_config disklist' pipe: $!\n";
92 $/ = "";
93 while (<$dlfh>) {
94     ($host, $disk) = m/    host (.*?):.*    disk (.*?):/s;
95     next unless $host;
96     $disks{$host}{$disk}++;
97 }
98
99 $/ = "\n";
100 $dlfh->close or
101     die "$0: error in closing `$amadmin $opt_config disklist|' pipe: $!\n";
102
103 # Get backup dates
104 %::dates = ();
105 %::level = ();
106 $::level = '';
107 my ($date, $tape, $file, $status);
108 $opt_verbose and
109     print STDERR "Running $amadmin $opt_config find\n";
110 my $fh = new FileHandle "$amadmin $opt_config find|" or
111     die "$0: error in opening `$amadmin $opt_config find' pipe: $!\n";
112 <$fh>;
113 while (<$fh>) {
114     chomp;
115     next if /found Amanda directory/;
116     next if /skipping cruft directory/;
117     next if /skip-incr/;
118     ($date, $host, $disk, $level, $tape, $file, $status) = split ' ', $_;
119     next if $date eq 'date';
120     next if $date eq 'Warning:';
121     next if $date eq 'Scanning';
122     next if $date eq "";
123     if ($date =~ /^\d\d\d\d-\d\d-\d\d$/) {
124         defined($level{$host}{$disk}{$date}) or
125             $level{$host}{$disk}{$date} = '';
126         $level{$host}{$disk}{$date} .= ($status eq 'OK') ? $level : 'E';
127         $dates{$date}++;
128     }
129     else {
130         print "bad date $date in $_\n";
131     }
132 }
133 $fh->close or
134     die "$0: error in closing `$amadmin $opt_config find|' pipe: $!\n";
135
136 # Process the status to arrive at a "last" status
137 if ($opt_last) {
138     for $host (sort keys %disks) {
139         for $disk (sort keys %{$disks{$host}}) {
140             $level{$host}{$disk}{"0000-LA-ST"} = '';
141             for $date (sort keys %dates) {
142                 if ($level{$host}{$disk}{$date} eq "E"
143                      && $level{$host}{$disk}{"0000-LA-ST"} =~ /^\d/ ) {
144                     $level{$host}{$disk}{"0000-LA-ST"} .= $level{$host}{$disk}{$date};
145                 } elsif ($level{$host}{$disk}{$date} eq "") {
146                     $level{$host}{$disk}{"0000-LA-ST"} =~ s/E//;
147                 } else {
148                     $level{$host}{$disk}{"0000-LA-ST"} = $level{$host}{$disk}{$date};
149                 }
150             }
151         }
152     }
153 }
154
155 # Number of level 0 backups
156 if ($opt_num0) {
157     for $host (sort keys %disks) {
158         for $disk (sort keys %{$disks{$host}}) {
159             $level{$host}{$disk}{'0000-NM-L0'} = 0;
160             for $date (sort keys %dates) {
161                 if ($level{$host}{$disk}{$date} =~ /0/) {
162                     $level{$host}{$disk}{'0000-NM-L0'} += 1;
163                 }
164             }
165         }
166     }
167 }
168
169 # Runs to the last level 0
170 if ($opt_togo0) {
171     for $host (sort keys %disks) {
172         for $disk (sort keys %{$disks{$host}}) {
173             $level{$host}{$disk}{'0000-TO-GO'} = 0;
174             my $togo=0;
175             for $date (sort keys %dates) {
176                 if ($level{$host}{$disk}{$date} =~ /0/) {
177                     $level{$host}{$disk}{'0000-TO-GO'} = $togo;
178                 }
179                 $togo++;
180             }
181         }
182     }
183 }
184
185 unless ($opt_skipmissed)
186 # touch all the dates just in case whole days were missed.
187 {
188     my ($start, $finish) = 
189         map {
190             my($y,$m,$d) = split /-/, $_;
191             POSIX::mktime(0,0,0,$d,$m-1,$y-1900);
192         } (sort keys %dates)[0,-1];
193
194     while ($start < $finish) {
195         my @l = localtime $start;
196         $dates{sprintf("%d-%02d-%02d", 1900+$l[5], $l[4]+1, $l[3])}++;
197         $start += 86400;
198     }
199 }
200
201 #Add the "last" entry    
202 $dates{"0000-LA-ST"}=1 if ($opt_last);
203
204 #Add the "Number of Level 0s" entry
205 $dates{"0000-NM-L0"}=1 if ($opt_num0);
206
207 #Add the "Runs to go" entry
208 $dates{"0000-TO-GO"}=1 if ($opt_togo0);
209
210 # make formats
211
212 my $top_format = "format TOP =\n\n" .
213     sprintf("%-0${opt_hostwidth}s %-0${opt_diskwidth}s ", '', 'date') .
214     join(' ', map((split(/-/, $_))[1], sort keys %dates)) . "\n" .
215     sprintf("%-0${opt_hostwidth}s %-0${opt_diskwidth}s ", 'host', 'disk') .
216     join(' ', map((split(/-/, $_))[2], sort keys %dates)) . "\n" .
217     "\n.\n";
218
219 my $out_format = "format STDOUT =\n" .
220     "@" . "<" x ($opt_hostwidth - 1) . ' ' .
221     "@" . "<" x ($opt_diskwidth - 1) . ' ' .
222     '@> ' x scalar(keys %dates) . "\n" .
223     join(', ', '$host', '$disk', 
224          map("substr(\$level{\$host}{\$disk}{'$_'},-2)", sort keys %dates)) . "\n" .
225     ".\n";
226
227 eval $top_format;
228 die $@ if $@;
229 $^ = 'TOP';
230 eval $out_format;
231 die $@ if $@;
232
233 for $host (sort keys %disks) {
234     for $disk (sort keys %{$disks{$host}}) {
235         write;
236     }
237 }