/[BackupPC]/trunk/bin/BackupPC_burnArchiveCLI
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /trunk/bin/BackupPC_burnArchiveCLI

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 175 by dpavlin, Tue Oct 11 17:55:48 2005 UTC revision 200 by dpavlin, Thu Oct 13 21:19:08 2005 UTC
# Line 1  Line 1 
1  #!/usr/local/bin/perl  #!/usr/bin/perl
2    
3  use strict;  use strict;
4  #use lib "__INSTALLDIR__/lib";  use lib "__INSTALLDIR__/lib";
 # FIXME  
 use lib "/data/backuppc/lib";  
5    
6  use DBI;  use DBI;
7  use BackupPC::Lib;  use BackupPC::Lib;
# Line 11  use BackupPC::SearchLib; Line 9  use BackupPC::SearchLib;
9  use Time::HiRes qw/time/;  use Time::HiRes qw/time/;
10  use POSIX qw/strftime/;  use POSIX qw/strftime/;
11  use Term::Menus;  use Term::Menus;
12    use File::Which;
13    
14  use Data::Dumper;  use Data::Dumper;
15    
16  my $debug = 0;  my $debug = 0;
17  $|=1;  $|=1;
18    
19    my $cdr_opts = 'dev=/dev/hdc blank=fast -v -eject';
20    
21    my $bin;
22    foreach my $c (qw/mkisofs cdrecord eject/) {
23            $bin->{$c} = which($c) || die "$0 needs $c, install it\n";
24    }
25    
26  my $start_t = time();  my $start_t = time();
27    
28  my $t_fmt = '%Y-%m-%d %H:%M:%S';  my $t_fmt = '%Y-%m-%d %H:%M:%S';
# Line 34  my $dbh = DBI->connect($dsn, $user, "", Line 40  my $dbh = DBI->connect($dsn, $user, "",
40  my $tar_dir = $Conf{InstallDir}.'/';  my $tar_dir = $Conf{InstallDir}.'/';
41  $tar_dir .= $Conf{GzipTempDir} || die "GzipTempDir isn't defined in configuration";  $tar_dir .= $Conf{GzipTempDir} || die "GzipTempDir isn't defined in configuration";
42    
43  die "problem with $tar_dir, check GzipTempDir in configuration\n" unless (-d $tar_dir && -w $tar_dir);  die "problem with $tar_dir, check GzipTempDir in configuration\n" unless (-d $tar_dir);
44    
45  my $iso_dir = $Conf{InstallDir}.'/';  my $iso_dir = $Conf{InstallDir}.'/';
46  $iso_dir .= $Conf{ISOTempDir} || die "ISOTempDir isn't defined in configuration";  $iso_dir .= $Conf{ISOTempDir} || die "ISOTempDir isn't defined in configuration";
# Line 55  sub curr_time { Line 61  sub curr_time {
61          return strftime($t_fmt,localtime());          return strftime($t_fmt,localtime());
62  }  }
63    
64    sub dumpArchive2XML($$$)
65    {
66            my ($dbh, $dvd_nr, $filename) = @_;
67            my %archive;    
68            my $output = new IO::File(">$filename");
69            my $writer = new XML::Writer(OUTPUT=>$output, NEWLINES => 1);
70    
71            $writer->pi('xml-stylesheet', 'href="archive.css" type="text/css"');
72    
73            my $files_sql = q{
74                    SELECT
75                            files.path AS path,
76                            files.date AS date,
77                            files.type AS type,
78                            files.size AS size
79                    FROM files, backups, shares
80                    WHERE files.backupnum=backups.num AND
81                            files.shareid=shares.id AND
82                            shares.hostid=backups.hostid AND
83                            backups.id=?
84            };
85    
86            my $backups_sql = q{
87                    SELECT
88                            backups.id   AS backup_id,
89                            hosts.name   AS host,
90                            backups.num  AS num,
91                            backups.date AS date,
92                            shares.name  AS share,
93                            backups.size AS backup_size,
94                            backups.inc_size AS compress_size
95                    FROM backups, archive_backup, hosts, shares
96                    WHERE archive_backup.backup_id = backups.id
97                            AND hosts.id=backups.hostid
98                            AND shares.id=backups.shareid
99                            AND archive_backup.archive_id = ?
100            };
101    
102            my $sth = $dbh->prepare("SELECT dvd_nr, total_size, note, username, date,id FROM archive WHERE dvd_nr=?");
103            $sth->execute($dvd_nr);
104            my $row = $sth->fetchrow_hashref();
105    
106            my $row_h;
107            foreach my $hide (qw/id note/) {
108                    $row_h->{$hide} = $row->{$hide} || '';
109                    delete $row->{$hide};
110            }
111    
112            $writer->startTag("archive", %{$row});
113    
114            $writer->startTag("note");
115            $writer->characters( $row_h->{'note'} );
116            $writer->endTag("note");
117    
118            my $sth_backups = $dbh->prepare( $backups_sql );
119            $sth_backups->execute( $row_h->{'id'} );
120    
121            while (my $row = $sth_backups->fetchrow_hashref()) {
122    
123                    my $sth_files = $dbh->prepare( $files_sql);
124                    $sth_files->execute($row->{'backup_id'});
125    
126                    delete($row->{'backup_id'});
127                    $row->{'date'} = strftime($t_fmt,gmtime($row->{'date'}));
128    
129                    $writer->startTag( "backup", %{$row} );
130    
131                    while (my $row = $sth_files->fetchrow_hashref()) {
132                            # convert filetype to string
133                            $row->{'type'} = BackupPC::Attrib::fileType2Text(undef, $row->{'type'});
134                            $row->{'date'} = strftime($t_fmt,gmtime($row->{'date'}));
135                            my $path = $row->{'path'}; delete $row->{'path'};
136    
137                            $writer->startTag("file", %{$row});
138                            $writer->characters( $path );
139                            $writer->endTag("file");
140                    }
141                    $writer->endTag("backup");
142            }      
143                            
144            $writer->endTag("archive");
145            $writer->end();
146            
147    }
148    
149    
150    
151  #----- main  #----- main
152    
153  my $sth = $dbh->prepare( qq{  my $sth = $dbh->prepare( qq{
# Line 132  sub skip($) { Line 225  sub skip($) {
225  my $sth_archive_backup = $dbh->prepare( qq{  my $sth_archive_backup = $dbh->prepare( qq{
226          select          select
227                  backup_id,                  backup_id,
228                    archive_id,
229                  hosts.name as host,                  hosts.name as host,
230                  shares.name as share,                  shares.name as share,
231                  backups.num as num                  backups.num as num,
232                    backups.parts as parts
233          from archive_backup          from archive_backup
234          join archive on archive_id = archive.id          join archive on archive_id = archive.id
235          join backups on backup_id = backups.id          join backups on backup_id = backups.id
# Line 143  my $sth_archive_backup = $dbh->prepare( Line 238  my $sth_archive_backup = $dbh->prepare(
238          where archive.dvd_nr = ?          where archive.dvd_nr = ?
239  });  });
240    
241    my $sth_archive_burned = $dbh->prepare( qq{
242            insert into archive_burned
243                    (archive_id, iso_size, part)
244            values ( (select id from archive where dvd_nr =?), ?, ?)
245    });
246    
247  foreach my $arc (@archives_to_burn) {  foreach my $arc (@archives_to_burn) {
248          exit if ($arc eq ']quit[');          exit if ($arc eq ']quit[');
249    
# Line 155  foreach my $arc (@archives_to_burn) { Line 256  foreach my $arc (@archives_to_burn) {
256    
257          print "Working on DVD #$dvd_nr in $tmp_dir\n";          print "Working on DVD #$dvd_nr in $tmp_dir\n";
258    
259          my $iso_file = "${iso_dir}/${dvd_nr}.iso";          my $part_path = '';
260            my $part_nr = 1;
261            my $parts = 0;
262                    
263            $sth_archive_backup->execute($dvd_nr);
264    
265          skip "ISO $iso_file allready exists" if (-e $iso_file);          my $disk_name = 'unknown disk';
266            my $iso_size = 0;
267    
268          $sth_archive_backup->execute($dvd_nr);          do {
269    
270          print "Running mkisofs now...\n";                  # do we need to re-execute query for multi-part increments?
271                    $sth_archive_backup->execute($dvd_nr) if ($parts > 1);
272    
273          my $cmd = qq{ mkisofs -A BackupPC -gui -J -r -T --input-charset ISO-8859-2 -V $dvd_nr -o $iso_file -path-list - };                  my $row = $sth_archive_backup->fetchrow_hashref || die "can't fetch row";
274    
         open(my $mkisofs, "| $cmd 2>&1") || skip "can't run $cmd: $!";  
275    
276          while (my $row = $sth_archive_backup->fetchrow_hashref) {                  $parts =  $row->{'parts'} || die "no parts?";
277                  my $tar_file = BackupPC::SearchLib::getGzipName($row->{'host'}, $row->{'share'}, $row->{'num'});                  $disk_name = $dvd_nr;
                 skip "can't find increment $tar_file: $!" unless (-r "$tar_dir/$tar_file");  
                 print $mkisofs "$tar_dir/$tar_file\n";  
         }  
278    
279          while(! -e $iso_file) {                  if ($parts > 1) {
280                  sleep 1;                          # parts start with 0, so we have -1 here
281          }                          $part_path = '.' . ($part_nr - 1);
282                            $disk_name .= '.' . $part_nr;
283                    }
284    
285                    print "Processing part $part_nr/$parts\n";
286    
287                    my $list_file = my $iso_file = my $xml_file = "${iso_dir}/${dvd_nr}";
288                    $list_file .= $part_path . '.list';
289                    $iso_file .= $part_path . '.iso';
290                    $xml_file .= '.xml';
291    
292                    #
293                    # check if ISO file exists
294                    #
295    
296                    if (! -e $iso_file) {
297    
298                            open(my $list, "> $list_file") || skip "can't open $list_file: $!";
299    
300          print "Created $iso_file in ", fmt_time(time() - $t), "\n";                          my $inc = 0;
301    
302                            do {
303                                    my $tar_file = BackupPC::SearchLib::getGzipName($row->{'host'}, $row->{'share'}, $row->{'num'});
304                                    if (-f "$tar_dir/$tar_file") {
305                                            skip "can't find increment $tar_file: $!" unless (-r "$tar_dir/$tar_file");
306                                            print $list "$tar_dir/$tar_file\n";
307                                    } else {
308                                            my $len = length("$parts");
309                                            my $nr = sprintf("%0${len}d", ($part_nr - 1));
310                                            print $list "$tar_dir/$tar_file/part$nr\n";
311                                    }
312                                    $inc++;
313                            } while ($row = $sth_archive_backup->fetchrow_hashref);
314    
315                            # add file list and note in xml
316                            dumpArchive2XML($dbh, $dvd_nr, $xml_file) unless (-f $xml_file);
317                            print $list "$xml_file\n";
318    
319                            # add css file for archive
320                            my $css_file = $Conf{CgiImageDir} . '/archive.css';
321                            if (-r $css_file) {
322                                    print $list "$css_file\n";
323                            } else {
324                                    print "WARNING: missing $css_file, not added to iso image!\n";
325                            }
326    
327                            close($list);
328    
329                            print "Running mkisofs now for $inc increments, disk $disk_name\n";
330    
331                            my $cmd = $bin->{'mkisofs'} . qq{ -A BackupPC -gui -J -r -T --input-charset ISO-8859-2 -V $disk_name -o $iso_file -path-list $list_file };
332    
333                            system($cmd) == 0 or skip "can't run $cmd: $?";
334    
335                            $iso_size = (stat($iso_file))[7];
336    
337                            print "Created $iso_file [$iso_size bytes] in ", fmt_time(time() - $t), "\n";
338    
339                    } else {
340                            print "ISO $iso_file allready exists\n";
341                    }
342    
343                    print "\nREADY TO BURN MEDIA $disk_name please insert blank media and press ENTER\n\n";
344    
345                    system($bin->{'eject'}) == 0 or skip "can't run eject: $?";
346    
347                    my $wait = <STDIN>;
348    
349                    my $cmd = $bin->{'cdrecord'} . ' ' . $cdr_opts . ' ' . $iso_file;
350    
351    #               system($cmd) == 0 or skip "can't run $cmd: $?";
352                    print "## $cmd\n";
353    
354                    print "\n\nPLEASE REMOVE DVD MEDIA AND LABEL IT WITH $disk_name\n\n";
355    
356                    $sth_archive_burned->execute($dvd_nr, $iso_size, $part_nr);
357    
358                    print "Media burn for $disk_name recorded\n";
359    
360                    $part_nr++;
361            } until ($part_nr > $parts);
362    
363  SKIP:  SKIP:
364    
# Line 186  SKIP: Line 367  SKIP:
367  #my $tar_file = BackupPC::SearchLib::getGzipName($row->{'host'}, $row->{'share'}, $row->{'num'});  #my $tar_file = BackupPC::SearchLib::getGzipName($row->{'host'}, $row->{'share'}, $row->{'num'});
368  #print curr_time, sprintf(" %s:%s %-3d ", $row->{'host'}, $row->{'share'}, $row->{'num'}), " -> $tar_file ";  #print curr_time, sprintf(" %s:%s %-3d ", $row->{'host'}, $row->{'share'}, $row->{'num'}), " -> $tar_file ";
369    
370    print "Recoding finished, exiting...\n";
371    
372  $sth->finish;  $sth->finish;
373    $sth_archive_backup->finish;
374    $sth_archive_burned->finish;
375    
376  $dbh->disconnect;  $dbh->disconnect;
377    

Legend:
Removed from v.175  
changed lines
  Added in v.200

  ViewVC Help
Powered by ViewVC 1.1.26