/[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 193 by dpavlin, Thu Oct 13 15:11:58 2005 UTC revision 201 by dpavlin, Fri Oct 14 14:02:51 2005 UTC
# Line 9  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 83  sub dumpArchive2XML($$$) Line 91  sub dumpArchive2XML($$$)
91                          backups.date AS date,                          backups.date AS date,
92                          shares.name  AS share,                          shares.name  AS share,
93                          backups.size AS backup_size,                          backups.size AS backup_size,
94                          backups.inc_size AS compress_size                          backups.inc_size AS compress_size,
95                            backups.parts AS parts
96                  FROM backups, archive_backup, hosts, shares                  FROM backups, archive_backup, hosts, shares
97                  WHERE archive_backup.backup_id = backups.id                  WHERE archive_backup.backup_id = backups.id
98                          AND hosts.id=backups.hostid                          AND hosts.id=backups.hostid
# Line 97  sub dumpArchive2XML($$$) Line 106  sub dumpArchive2XML($$$)
106    
107          my $row_h;          my $row_h;
108          foreach my $hide (qw/id note/) {          foreach my $hide (qw/id note/) {
109                  $row_h->{$hide} = $row->{$hide} || die "no $hide";                  $row_h->{$hide} = $row->{$hide} || '';
110                  delete $row->{$hide};                  delete $row->{$hide};
111          }          }
112    
# Line 162  sub fmt_archive($) { Line 171  sub fmt_archive($) {
171          $row->{'copies'} =~ s/^\s*0+\s*$/no/;          $row->{'copies'} =~ s/^\s*0+\s*$/no/;
172          $row->{'total_size'} /= (1024*1024);          $row->{'total_size'} /= (1024*1024);
173    
174          my $copies = 'copies';          my $copies = $row->{'copies'};
175          $copies = 'copy' if ($row->{'copies'} == 1);          if ($row->{'parts'} > 1) {
176                    $copies .= '/' . $row->{'parts'};
177            }
178    
179            my $copies_dest = 'copies';
180            $copies_dest = 'copy' if ($row->{'copies'} == 1);
181    
182          return          return
183                  sprintf("%d by %s on %s, %s %s [%.2f Mb]",                  sprintf("%d by %s on %s, %s %s [%.2f Mb]",
184                          $row->{'dvd_nr'},                          $row->{'dvd_nr'},
185                          $row->{'username'},                          $row->{'username'},
186                          $row->{'date'},                          $row->{'date'},
187                          $row->{'copies'}, $copies,                          $copies, $copies_dest,
188                          $row->{'total_size'},                          $row->{'total_size'},
189                  );                  );
190  }  }
# Line 220  my $sth_archive_backup = $dbh->prepare( Line 234  my $sth_archive_backup = $dbh->prepare(
234                  archive_id,                  archive_id,
235                  hosts.name as host,                  hosts.name as host,
236                  shares.name as share,                  shares.name as share,
237                  backups.num as num                  backups.num as num,
238                    backups.parts as parts
239          from archive_backup          from archive_backup
240          join archive on archive_id = archive.id          join archive on archive_id = archive.id
241          join backups on backup_id = backups.id          join backups on backup_id = backups.id
# Line 231  my $sth_archive_backup = $dbh->prepare( Line 246  my $sth_archive_backup = $dbh->prepare(
246    
247  my $sth_archive_burned = $dbh->prepare( qq{  my $sth_archive_burned = $dbh->prepare( qq{
248          insert into archive_burned          insert into archive_burned
249                  (archive_id, iso_size)                  (archive_id, iso_size, part)
250          values ( (select id from archive where dvd_nr =?), ?)          values ( (select id from archive where dvd_nr =?), ?, ?)
251  });  });
252    
253  foreach my $arc (@archives_to_burn) {  foreach my $arc (@archives_to_burn) {
# Line 247  foreach my $arc (@archives_to_burn) { Line 262  foreach my $arc (@archives_to_burn) {
262    
263          print "Working on DVD #$dvd_nr in $tmp_dir\n";          print "Working on DVD #$dvd_nr in $tmp_dir\n";
264    
265          my $list_file = my $iso_file = my $xml_file = "${iso_dir}/${dvd_nr}";          my $part_path = '';
266          $list_file .= '.list';          my $part_nr = 1;
267          $iso_file .= '.iso';          my $parts = 0;
268          $xml_file .= '.xml';                  
   
         if (-e $iso_file) {  
                 print "ISO $iso_file allready exists\n";  
                 goto BURN;  
         }  
   
269          $sth_archive_backup->execute($dvd_nr);          $sth_archive_backup->execute($dvd_nr);
270    
271          open(my $list, "> $list_file") || skip "can't open $list_file: $!";          my $disk_name = 'unknown disk';
272            my $iso_size = 0;
273    
274          my $inc = 0;          do {
275    
276          while (my $row = $sth_archive_backup->fetchrow_hashref) {                  # do we need to re-execute query for multi-part increments?
277                  my $tar_file = BackupPC::SearchLib::getGzipName($row->{'host'}, $row->{'share'}, $row->{'num'});                  $sth_archive_backup->execute($dvd_nr) if ($parts > 1);
                 skip "can't find increment $tar_file: $!" unless (-r "$tar_dir/$tar_file");  
                 print $list "$tar_dir/$tar_file\n";  
                 $inc++;  
278    
279          }                  my $row = $sth_archive_backup->fetchrow_hashref || die "can't fetch row";
280    
         # add file list and note in xml  
         dumpArchive2XML($dbh, $dvd_nr, $xml_file);  
         print $list "$xml_file\n";  
   
         # add css file for archive  
         my $css_file = $Conf{CgiImageDir} . '/archive.css';  
         if (-r $css_file) {  
                 print $list "$css_file\n";  
         } else {  
                 print "WARNING: missing $css_file, not added to iso image!\n";  
         }  
281    
282          close($list);                  $parts =  $row->{'parts'} || die "no parts?";
283                    $disk_name = $dvd_nr;
284    
285                    if ($parts > 1) {
286                            # parts start with 0, so we have -1 here
287                            $part_path = '.' . ($part_nr - 1);
288                            $disk_name .= '.' . $part_nr;
289                    }
290    
291                    print "Processing part $part_nr/$parts\n";
292    
293                    my $list_file = my $iso_file = my $xml_file = "${iso_dir}/${dvd_nr}";
294                    $list_file .= $part_path . '.list';
295                    $iso_file .= $part_path . '.iso';
296                    $xml_file .= '.xml';
297    
298                    #
299                    # check if ISO file exists
300                    #
301    
302                    if (! -e $iso_file) {
303    
304                            open(my $list, "> $list_file") || skip "can't open $list_file: $!";
305    
306          print "Running mkisofs now for $inc increments...\n";                          my $inc = 0;
307    
308          my $cmd = qq{ mkisofs -A BackupPC -gui -J -r -T --input-charset ISO-8859-2 -V $dvd_nr -o $iso_file -path-list $list_file };                          do {
309                                    my $tar_file = BackupPC::SearchLib::getGzipName($row->{'host'}, $row->{'share'}, $row->{'num'});
310                                    if (-f "$tar_dir/$tar_file") {
311                                            skip "can't find increment $tar_file: $!" unless (-r "$tar_dir/$tar_file");
312                                            print $list "$tar_dir/$tar_file\n";
313                                    } else {
314                                            my $len = length("$parts");
315                                            my $nr = sprintf("%0${len}d", ($part_nr - 1));
316                                            print $list "$tar_dir/$tar_file/part$nr\n";
317                                    }
318                                    $inc++;
319                            } while ($row = $sth_archive_backup->fetchrow_hashref);
320    
321          system($cmd) == 0 or skip "can't run $cmd: $?";                          # add file list and note in xml
322                            dumpArchive2XML($dbh, $dvd_nr, $xml_file) unless (-f $xml_file);
323                            print $list "$xml_file\n";
324    
325          my $size = (stat($iso_file))[7];                          # add css file for archive
326                            my $css_file = $Conf{CgiImageDir} . '/archive.css';
327                            if (-r $css_file) {
328                                    print $list "$css_file\n";
329                            } else {
330                                    print "WARNING: missing $css_file, not added to iso image!\n";
331                            }
332    
333          print "Created $iso_file [$size bytes] in ", fmt_time(time() - $t), "\n";                          close($list);
334    
335  BURN:                          print "Running mkisofs now for $inc increments, disk $disk_name\n";
336          # FIXME add call to cdrecord here!  
337          $sth_archive_burned->execute($dvd_nr, $size);                          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 };
338          print "Media burn for $dvd_nr recorded\n";  
339                            system($cmd) == 0 or skip "can't run $cmd: $?";
340    
341                            $iso_size = (stat($iso_file))[7];
342    
343                            print "Created $iso_file [$iso_size bytes] in ", fmt_time(time() - $t), "\n";
344    
345                    } else {
346                            print "ISO $iso_file allready exists\n";
347                    }
348    
349                    print "\nREADY TO BURN MEDIA $disk_name please insert blank media and press ENTER\n\n";
350    
351                    system($bin->{'eject'}) == 0 or skip "can't run eject: $?";
352    
353                    my $wait = <STDIN>;
354    
355                    my $cmd = $bin->{'cdrecord'} . ' ' . $cdr_opts . ' ' . $iso_file;
356    
357    #               system($cmd) == 0 or skip "can't run $cmd: $?";
358                    print "## $cmd\n";
359    
360                    print "\n\nPLEASE REMOVE DVD MEDIA AND LABEL IT WITH $disk_name\n\n";
361    
362                    $sth_archive_burned->execute($dvd_nr, $iso_size, $part_nr);
363    
364                    print "Media burn for $disk_name recorded\n";
365    
366                    $part_nr++;
367            } until ($part_nr > $parts);
368    
369  SKIP:  SKIP:
370    
# Line 307  SKIP: Line 373  SKIP:
373  #my $tar_file = BackupPC::SearchLib::getGzipName($row->{'host'}, $row->{'share'}, $row->{'num'});  #my $tar_file = BackupPC::SearchLib::getGzipName($row->{'host'}, $row->{'share'}, $row->{'num'});
374  #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 ";
375    
376    print "Recoding finished, exiting...\n";
377    
378  $sth->finish;  $sth->finish;
379    $sth_archive_backup->finish;
380    $sth_archive_burned->finish;
381    
382  $dbh->disconnect;  $dbh->disconnect;
383    

Legend:
Removed from v.193  
changed lines
  Added in v.201

  ViewVC Help
Powered by ViewVC 1.1.26