/[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 207 by dpavlin, Sat Oct 15 13:40:04 2005 UTC revision 337 by dpavlin, Wed Mar 1 13:04:03 2006 UTC
# Line 10  use Time::HiRes qw/time/; Line 10  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;  use File::Which;
13    use File::Path;
14    
15  use Data::Dumper;  use Data::Dumper;
16    
17  my $debug = 0;  my $debug = 0;
18    # set this to 1 to prompt for DVD removal for each selected item.
19    my $prompt_for_delete = shift @ARGV;
20  $|=1;  $|=1;
21    
22  # don't check for user  # don't check for user
# Line 108  sub dumpArchive2XML($$$) Line 111  sub dumpArchive2XML($$$)
111                          AND hosts.id=backups.hostid                          AND hosts.id=backups.hostid
112                          AND shares.id=backups.shareid                          AND shares.id=backups.shareid
113                          AND archive_backup.archive_id = ?                          AND archive_backup.archive_id = ?
114                    ORDER BY
115                            hosts.name, shares.name, backups.num
116          };          };
117    
118          my $sth = $dbh->prepare("SELECT dvd_nr, total_size, note, username, date,id FROM archive WHERE dvd_nr=?");          my $sth = $dbh->prepare("SELECT dvd_nr, total_size, note, username, date,id FROM archive WHERE dvd_nr=?");
# Line 161  sub dumpArchive2XML($$$) Line 166  sub dumpArchive2XML($$$)
166                          $writer->endTag("file");                          $writer->endTag("file");
167                  }                  }
168                  $writer->endTag("backup");                  $writer->endTag("backup");
169          }                }
170                                                    
171          $writer->endTag("archive");          $writer->endTag("archive");
172          $writer->end();          $writer->end();
# Line 247  sub skip($) { Line 252  sub skip($) {
252          goto SKIP;          goto SKIP;
253  }  }
254    
255  my $sth_archive_backup = $dbh->prepare( qq{  sub add_symlink($$) {
256            my ($from, $to) = @_;
257            symlink $from, $to || skip("can't symlink $from to $to: $!");
258    }
259    
260    sub delete_dvd($) {
261            my $dvd_nr = shift || return;
262    
263            print "Do you want to delete DVD #$dvd_nr now? [NO/yes]: ";
264            my $ok = <STDIN>;
265            chomp($ok);
266            if (lc($ok) eq 'yes') {
267                    print "Deleting DVD #$dvd_nr from database...\n";
268    
269                    $dbh->begin_work;
270    
271                    my $sth_delete_dvd = $dbh->prepare( qq{
272                            delete from archive where dvd_nr = ?
273                    } );
274                    $sth_delete_dvd->execute( $dvd_nr );
275                    $dbh->do( qq{
276                            select setval('dvd_nr', (select max(dvd_nr) from archive), true)
277                    } );
278    
279                    # remove files for this DVD
280                    map {
281                            if (-d $_) {
282                                    print "\tremoving dir $_\n";
283                                    rmtree($_) || die "can't rmtree $_: $!";
284                            } else {
285                                    print "\tremoving $_\n";
286                                    unlink($_) || die "can't rm $_: $!";
287                            }
288                    } glob ( "/$iso_dir/$dvd_nr.*" );
289    
290                    $dbh->commit;
291    
292                    return 1;
293            } else {
294                    return 0;
295            }
296    }
297    
298    my $sth_archive_backup_parts = $dbh->prepare( qq{
299          select          select
300                  backup_id,                  archive_backup.backup_id,
301                  archive_id,                  archive_id,
302                  hosts.name as host,                  hosts.name as host,
303                  shares.name as share,                  shares.name as share,
304                  backups.num as num,                  backups.num as num,
305                  backups.parts as parts                  backups.parts as parts,
306                    backup_parts.part_nr as part_nr,
307                    backup_parts.size as part_size,
308                    backup_parts.md5 as md5,
309                    backup_parts.items
310          from archive_backup          from archive_backup
311          join archive on archive_id = archive.id          join archive on archive_id = archive.id
312          join backups on backup_id = backups.id          join backups on archive_backup.backup_id = backups.id
313          join hosts on hostid = hosts.id          join hosts on hostid = hosts.id
314          join shares on shareid = shares.id          join shares on shareid = shares.id
315            join backup_parts on archive_backup.backup_id = backup_parts.backup_id
316          where archive.dvd_nr = ?          where archive.dvd_nr = ?
317            order by archive_backup.backup_id, backup_parts.part_nr
318    });
319    
320    my $sth_archive_backup_check = $dbh->prepare( qq{
321                    SELECT
322                            sum(backups.parts)
323                    FROM backups
324                    JOIN archive_backup on archive_backup.backup_id = backups.id
325                    JOIN archive on archive_id = archive.id
326                    WHERE dvd_nr = ?
327  });  });
328    
329  my $sth_archive_burned = $dbh->prepare( qq{  my $sth_archive_burned = $dbh->prepare( qq{
# Line 269  my $sth_archive_burned = $dbh->prepare( Line 332  my $sth_archive_burned = $dbh->prepare(
332          values ( (select id from archive where dvd_nr =?), ?, ?, ?)          values ( (select id from archive where dvd_nr =?), ?, ?, ?)
333  });  });
334    
335  foreach my $arc (@archives_to_burn) {  my $copies = $Conf{BurnMultipleCopies} || 1;
         exit if ($arc eq ']quit[');  
336    
337          my $dvd_nr = $1 if ($arc =~ m/DVD #(\d+)/);  foreach my $copy_nr ( 1 .. $copies ) {
         die "BUG: can't find dvd_nr in $arc\n" unless ($dvd_nr);  
338    
339          my $tmp_dir = "/$iso_dir/$dvd_nr";          foreach my $arc (@archives_to_burn) {
340                    exit if ($arc eq ']quit[');
341    
342          my $t = time();                  my $dvd_nr = $1 if ($arc =~ m/DVD #(\d+)/);
343                    die "BUG: can't find dvd_nr in $arc\n" unless ($dvd_nr);
344    
345          print "Working on DVD #$dvd_nr in $tmp_dir\n";                  my $tmp_dir = "/$iso_dir/$dvd_nr";
346    
347          my $part_path = '';                  my $t = time();
         my $part_nr = 1;  
         my $parts = 0;  
                   
         $sth_archive_backup->execute($dvd_nr);  
348    
349          my $disk_name = 'unknown disk';                  print "Working on DVD #$dvd_nr in $tmp_dir\n";
         my $iso_size = 0;  
350    
351          do {                  $sth_archive_backup_parts->execute($dvd_nr);
352    
353                  # do we need to re-execute query for multi-part increments?                  $sth_archive_backup_check->execute($dvd_nr);
                 $sth_archive_backup->execute($dvd_nr) if ($parts > 1);  
354    
355                  my $row = $sth_archive_backup->fetchrow_hashref || die "can't fetch row";                  my ($parts_nr, $check_nr) = ($sth_archive_backup_parts->rows, $sth_archive_backup_check->fetchrow_array);
356    
357                    if ($parts_nr != $check_nr) {
358                            warn "ERROR: DVD #$dvd_nr is still not inconsistent state. Some backup parts are ",
359                                    ($parts_nr < $check_nr) ? "missing ($parts_nr < $check_nr)" : "extra ($parts_nr > $check_nr)",
360                                    " you should re-create this DVD after BackupPC_incPartsUpdate finish\n";
361                            delete_dvd( $dvd_nr );
362                            next;
363                    }
364    
365                  $parts =  $row->{'parts'} || die "no parts?";                  if ($sth_archive_backup_parts->rows == 0) {
366                  $disk_name = $dvd_nr;                          warn "ERROR: no backup parts found for $dvd_nr. You should re-create that DVD.\n";
367                            next if delete_dvd( $dvd_nr );
368                    }
369    
370                  if ($parts > 1) {                  if ($prompt_for_delete) {
371                          # parts start with 0, so we have -1 here                          next if delete_dvd( $dvd_nr );
                         $part_path = '.' . ($part_nr - 1);  
                         $disk_name .= '.' . $part_nr;  
372                  }                  }
373    
374                  print "Processing part $part_nr/$parts\n";                  my @volumes;
375                    my $v;  # emtpy volume
376                    my $v_size = 0;
377    
378                    my $max_archive_size = $Conf{MaxArchiveSize} || die "no MaxArchiveSize";
379                    while (my $row = $sth_archive_backup_parts->fetchrow_hashref) {
380                            if (($v->{size} || 0) + $row->{part_size} > $max_archive_size) {
381                                    push @volumes, $v;
382                                    $v = {};
383                            }
384                            $v->{size} += $row->{part_size};
385                            # this part
386                            my $p = {
387                                    filename => BackupPC::SearchLib::getGzipName($row->{'host'}, $row->{'share'}, $row->{'num'}),
388                            };
389                            foreach my $fld (qw/part_nr md5/) {
390                                    $p->{$fld} = $row->{$fld} || die "missing $fld in row!";
391                            }
392                            push @{ $v->{parts} }, $p;
393                    }
394                    push @volumes, $v if ($v);
395    
396                  my $list_file = my $iso_file = my $xml_file = "${iso_dir}/${dvd_nr}";                  #warn "# volumes: ",Dumper(\@volumes),"\n";
                 $list_file .= $part_path . '.list';  
                 $iso_file .= $part_path . '.iso';  
                 $xml_file .= '.xml';  
397    
398                  #                  my $volumes = $#volumes + 1;
399                  # check if ISO file exists                  my $volume_nr = 1;
                 #  
400    
401                  if (! -e $iso_file) {                  foreach my $v (@volumes) {
402    
403                          open(my $list, "> $list_file") || skip "can't open $list_file: $!";                          #print Dumper($v);
404    
405                          my $inc = 0;                          my $iso_size = 0;
406                            my $disk_name = $dvd_nr;
407                            # suffix added to multi-volume archives
408                            my $volume_suffix = '';
409    
410                          do {                          if ($volumes > 1) {
411                                  my $tar_file = BackupPC::SearchLib::getGzipName($row->{'host'}, $row->{'share'}, $row->{'num'});                                  $volume_suffix = '_' . $volume_nr;
412                                  if (-f "$tar_dir/$tar_file") {                                  $disk_name .= ' ' . $volume_nr . '/' . $volumes;
413                                          skip "can't find increment $tar_file: $!" unless (-r "$tar_dir/$tar_file");                          }
414                                          print $list "$tar_dir/$tar_file\n";  
415                                  } else {                          print "Processing DVD #$dvd_nr, volume $volume_nr/$volumes\n";
416                                          my $len = length("$parts");  
417                                          my $nr = sprintf("%0${len}d", ($part_nr - 1));                          my $iso_file = my $xml_file = my $stage =
418                                          print $list "$tar_dir/$tar_file/part$nr\n";                                  "${iso_dir}/${dvd_nr}";
419    
420                            $iso_file .= $volume_suffix . '.iso';
421                            $xml_file .= '.xml';
422    
423                            $stage .= $volume_suffix . '.stage';
424    
425                            my $md5_file = "${stage}/${dvd_nr}${volume_suffix}.md5";
426    
427                            #
428                            # check if ISO file exists
429                            #
430    
431                            if (! -e $iso_file) {
432    
433                                    # create stage directory
434                                    if (-e $stage) {
435                                            rmtree($stage) || die "can't remove $stage: $!";
436                                  }                                  }
437                                  $inc++;                                  mkpath($stage);
                         } while ($row = $sth_archive_backup->fetchrow_hashref);  
438    
439                          # add file list and note in xml                                  # open file for md5sums
440                          dumpArchive2XML($dbh, $dvd_nr, $xml_file) unless (-f $xml_file);                                  open(my $md5, "> $md5_file") || skip "can't open $md5_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";  
                         }  
441    
442                          close($list);                                  my $parts_on_this_volume = 0;
443    
444                          print "Running mkisofs now for $inc increments, disk $disk_name\n";                                  foreach my $p (@{ $v->{parts} }) {
445                                            my $tar_file = $p->{filename} || die "no filename in part", Dumper($p);
446                                            my $rel_path = $tar_file;
447    
448                          my $cmd = $bin->{'mkisofs'} . qq{ -A BackupPC -gui -J -r -T --input-charset ISO-8859-2 -V $disk_name -o ${iso_file}.tmp -path-list $list_file };                                          if (-d "$tar_dir/$rel_path") {
449                                                    mkpath("$stage/$rel_path") unless (-d "$stage/$rel_path");
450                                                    $rel_path .= '/' . $p->{part_nr};
451                                            }
452                                            $rel_path .= '.tar.gz';
453    
454                          system($cmd) == 0 or skip "can't run $cmd: $?";                                          skip "can't find increment $rel_path: $!" unless (-r "$tar_dir/$rel_path");
455    
456                          rename $iso_file.'.tmp', $iso_file || skip "can't rename $iso_file: $!";                                          add_symlink("$tar_dir/$rel_path", "$stage/$rel_path");
457    
458                          $iso_size = (stat($iso_file))[7];                                          my $md5sum = $p->{md5} || die "no md5 in part ", Dumper($p);
459                                            chomp($md5sum);
460                                            print $md5 "$md5sum  $rel_path\n" || die "can't write md5sum: $!";
461    
462                          print "Created $iso_file [$iso_size bytes] in ", fmt_time(time() - $t), "\n";                                          $parts_on_this_volume++;
463                                    }
464    
465                  } else {                                  # add file list and note in xml
466                          print "ISO $iso_file allready exists\n";                                  dumpArchive2XML($dbh, $dvd_nr, $xml_file) unless (-f $xml_file);
                 }  
467    
468                  my $copies = $Conf{BurnMultipleCopies} || 1;                                  add_symlink($xml_file, "$stage/${dvd_nr}.xml");
469    
470                                    # add css file for archive
471                                    my $css_file = $Conf{CgiImageDir} . '/archive.css';
472                                    if (-r $css_file) {
473                                            add_symlink($css_file, "$stage/archive.css");
474                                    } else {
475                                            print "WARNING: missing $css_file, not added to iso image!\n";
476                                    }
477    
478                  foreach my $copy_nr ( 1 .. $copies ) {                                  print "Running mkisofs now for $parts_on_this_volume increments, disk $disk_name\n";
479    
480                                    my $cmd = $bin->{'mkisofs'} . qq{ -A BackupPC -gui -J -r -T --input-charset ISO-8859-2 -V "$disk_name" -o ${iso_file}.tmp -f $stage };
481    
482                                    system($cmd) == 0 or skip "can't run $cmd: $?";
483    
484                                    rename $iso_file.'.tmp', $iso_file || skip "can't rename $iso_file: $!";
485    
486                                    $iso_size = (stat($iso_file))[7];
487    
488                                    print "Created $iso_file [$iso_size bytes] in ", fmt_time(time() - $t), "\n";
489    
490                                    rmtree($stage) || warn "can't remove stage directory $stage: $!";
491    
492                            } else {
493                                    $iso_size = (stat($iso_file))[7];
494                                    print "ISO $iso_file allready exists [$iso_size bytes]\n";
495                            }
496    
497                          print "\nREADY TO BURN MEDIA $disk_name copy $copy_nr\n\nPlease insert blank media and press ENTER\n\n";                          print "\nREADY TO BURN MEDIA $disk_name copy $copy_nr\n\nPlease insert blank media and press ENTER\n\n";
498    
# Line 385  foreach my $arc (@archives_to_burn) { Line 508  foreach my $arc (@archives_to_burn) {
508    
509                          print "\n\nPLEASE REMOVE DVD MEDIA AND LABEL IT WITH $disk_name\n\n";                          print "\n\nPLEASE REMOVE DVD MEDIA AND LABEL IT WITH $disk_name\n\n";
510    
511                          $sth_archive_burned->execute($dvd_nr, $iso_size, $part_nr, $copy_nr);                          $sth_archive_burned->execute($dvd_nr, $iso_size, $volume_nr, $copy_nr);
512    
513                          print "Media burn for $disk_name copy $copy_nr recorded\n";                          print "Media burn for $disk_name copy $copy_nr recorded\n";
514                    
515                            $volume_nr++;
516                  }                  }
517    
518                  $part_nr++;          }
         } until ($part_nr > $parts);  
519    
520  SKIP:  SKIP:
521    
# Line 403  SKIP: Line 527  SKIP:
527  print "Recoding finished, exiting...\n";  print "Recoding finished, exiting...\n";
528    
529  $sth->finish;  $sth->finish;
530  $sth_archive_backup->finish;  $sth_archive_backup_parts->finish;
531    $sth_archive_burned->finish;
532    $sth_archive_backup_check->finish;
533  $sth_archive_burned->finish;  $sth_archive_burned->finish;
534    
535  $dbh->disconnect;  $dbh->disconnect;

Legend:
Removed from v.207  
changed lines
  Added in v.337

  ViewVC Help
Powered by ViewVC 1.1.26