/[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 174 by dpavlin, Tue Oct 11 16:59:16 2005 UTC revision 321 by dpavlin, Mon Jan 30 15:16:45 2006 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    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    
 my $start_t = time();  
   
 my $t_fmt = '%Y-%m-%d %H:%M:%S';  
   
22  # don't check for user  # don't check for user
23  my $bpc = BackupPC::Lib->new(undef, undef, 1) || die;  my $bpc = BackupPC::Lib->new(undef, undef, 1) || die;
24  my %Conf = $bpc->Conf();  my %Conf = $bpc->Conf();
25  %BackupPC::SearchLib::Conf = %Conf;  %BackupPC::SearchLib::Conf = %Conf;
26    
27    my $conf_bin;
28    
29    $conf_bin->{'cdrecord'} = $Conf{CDRecordBin} || die "Need CDRecordBin in config.pl\n";
30    my $cdr_opts = $Conf{CDRecordOpts} || die "Need CDRecordOpts in config.pl\n";
31    $conf_bin->{'eject'} = $Conf{ejectBin} || die "Need ejectBin in config.pl\n";
32    my $eject_opts = $Conf{ejectOpts} || die "Need ejectOpts in config.pl\n";
33    $conf_bin->{'mkisofs'} = $Conf{mkisofsBin} || die "Need mkisofsBin in config.pl\n";
34    
35    
36    my $bin;
37    foreach my $c (qw/cdrecord eject mkisofs/) {
38            $bin->{$c} = which($conf_bin->{$c}) || die "$0 needs $c ($conf_bin->{$c}), install it\n";
39    }
40    
41    my $start_t = time();
42    
43    my $t_fmt = '%Y-%m-%d %H:%M:%S';
44    
45    
46  my $dsn = $Conf{SearchDSN} || die "Need SearchDSN in config.pl\n";  my $dsn = $Conf{SearchDSN} || die "Need SearchDSN in config.pl\n";
47  my $user = $Conf{SearchUser} || '';  my $user = $Conf{SearchUser} || '';
48    
# Line 34  my $dbh = DBI->connect($dsn, $user, "", Line 51  my $dbh = DBI->connect($dsn, $user, "",
51  my $tar_dir = $Conf{InstallDir}.'/';  my $tar_dir = $Conf{InstallDir}.'/';
52  $tar_dir .= $Conf{GzipTempDir} || die "GzipTempDir isn't defined in configuration";  $tar_dir .= $Conf{GzipTempDir} || die "GzipTempDir isn't defined in configuration";
53    
54  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);
55    
56  my $iso_dir = $Conf{InstallDir}.'/';  my $iso_dir = $Conf{InstallDir}.'/';
57  $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 72  sub curr_time {
72          return strftime($t_fmt,localtime());          return strftime($t_fmt,localtime());
73  }  }
74    
75    sub dumpArchive2XML($$$)
76    {
77            my ($dbh, $dvd_nr, $filename) = @_;
78            my %archive;
79    
80            my $output = new IO::File('> '.$filename.'.tmp');
81            my $writer = new XML::Writer(OUTPUT=>$output, NEWLINES => 1);
82    
83            print "Dumping file list for DVD $dvd_nr, countdown:";
84    
85            $writer->pi('xml-stylesheet', 'href="archive.css" type="text/css"');
86    
87            my $files_sql = q{
88                    SELECT
89                            files.path AS path,
90                            files.date AS date,
91                            files.type AS type,
92                            files.size AS size
93                    FROM files, backups, shares
94                    WHERE files.backupnum=backups.num AND
95                            files.shareid=shares.id AND
96                            shares.hostid=backups.hostid AND
97                            backups.id=?
98            };
99    
100            my $backups_sql = q{
101                    SELECT
102                            backups.id   AS backup_id,
103                            hosts.name   AS host,
104                            backups.num  AS num,
105                            backups.date AS date,
106                            shares.name  AS share,
107                            backups.size AS backup_size,
108                            backups.inc_size AS compress_size
109                    FROM backups, archive_backup, hosts, shares
110                    WHERE archive_backup.backup_id = backups.id
111                            AND hosts.id=backups.hostid
112                            AND shares.id=backups.shareid
113                            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=?");
119            $sth->execute($dvd_nr);
120            my $row = $sth->fetchrow_hashref();
121    
122            my $row_h;
123            foreach my $hide (qw/id note/) {
124                    $row_h->{$hide} = $row->{$hide} || '';
125                    delete $row->{$hide};
126            }
127    
128            $writer->startTag("archive", %{$row});
129    
130            $writer->startTag("note");
131            $writer->characters( $row_h->{'note'} );
132            $writer->endTag("note");
133    
134            my $sth_backups = $dbh->prepare( $backups_sql );
135            $sth_backups->execute( $row_h->{'id'} );
136    
137            my $total_backups = $sth_backups->rows;
138            my $curr_backup = 0;
139            my $last_pcnt = 0;
140    
141            while (my $row = $sth_backups->fetchrow_hashref()) {
142    
143                    $curr_backup++;
144                    my $pcnt = int(($curr_backup * 10) / $total_backups);
145                    if ($pcnt > $last_pcnt) {
146                            print " ",(10 - $pcnt);
147                            $last_pcnt = $pcnt;
148                    }
149    
150                    my $sth_files = $dbh->prepare( $files_sql);
151                    $sth_files->execute($row->{'backup_id'});
152    
153                    delete($row->{'backup_id'});
154                    $row->{'date'} = strftime($t_fmt,gmtime($row->{'date'}));
155    
156                    $writer->startTag( "backup", %{$row} );
157    
158                    while (my $row = $sth_files->fetchrow_hashref()) {
159                            # convert filetype to string
160                            $row->{'type'} = BackupPC::Attrib::fileType2Text(undef, $row->{'type'});
161                            $row->{'date'} = strftime($t_fmt,gmtime($row->{'date'}));
162                            my $path = $row->{'path'}; delete $row->{'path'};
163    
164                            $writer->startTag("file", %{$row});
165                            $writer->characters( $path );
166                            $writer->endTag("file");
167                    }
168                    $writer->endTag("backup");
169            }
170                            
171            $writer->endTag("archive");
172            $writer->end();
173    
174            rename $filename.'.tmp', $filename || die "can't rename $filename: $!";
175    
176            print "\n";
177    }
178    
179    
180    
181  #----- main  #----- main
182    
183  my $sth = $dbh->prepare( qq{  my $sth = $dbh->prepare( qq{
# Line 123  my @archives_to_burn = Menu(\%Menu_archi Line 246  my @archives_to_burn = Menu(\%Menu_archi
246    
247  print "\n";  print "\n";
248    
249    sub skip($) {
250            my $msg = shift;
251            print "WARNING: $msg, skipping...\n";
252            goto SKIP;
253    }
254    
255    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
300                    archive_backup.backup_id,
301                    archive_id,
302                    hosts.name as host,
303                    shares.name as share,
304                    backups.num as num,
305                    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
311            join archive on archive_id = archive.id
312            join backups on archive_backup.backup_id = backups.id
313            join hosts on hostid = hosts.id
314            join shares on shareid = shares.id
315            join backup_parts on archive_backup.backup_id = backup_parts.backup_id
316            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                            count(backups.id)
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{
330            insert into archive_burned
331                    (archive_id, iso_size, part, copy)
332            values ( (select id from archive where dvd_nr =?), ?, ?, ?)
333    });
334    
335  foreach my $arc (@archives_to_burn) {  foreach my $arc (@archives_to_burn) {
336          exit if ($arc eq ']quit[');          exit if ($arc eq ']quit[');
337    
338          my $dvd_nr = $1 if ($arc =~ m/DVD #(\d+)/);          my $dvd_nr = $1 if ($arc =~ m/DVD #(\d+)/);
339          die "BUG: can't find dvd_nr in $arc\n" unless ($dvd_nr);          die "BUG: can't find dvd_nr in $arc\n" unless ($dvd_nr);
340    
341          print "Working on DVD #$dvd_nr\n";          my $tmp_dir = "/$iso_dir/$dvd_nr";
342    
343            my $t = time();
344    
345            print "Working on DVD #$dvd_nr in $tmp_dir\n";
346    
347            $sth_archive_backup_parts->execute($dvd_nr);
348    
349            $sth_archive_backup_check->execute($dvd_nr);
350    
351            my ($parts_nr, $check_nr) = ($sth_archive_backup_parts->rows, $sth_archive_backup_check->fetchrow_array);
352    
353            if ($parts_nr != $check_nr) {
354                    warn "ERROR: DVD #$dvd_nr is still not inconsistent state. Some backup parts are ",
355                            ($parts_nr < $check_nr) ? "missing ($parts_nr < $check_nr)" : "extra ($parts_nr > $check_nr)",
356                            " you should re-create this DVD after BackupPC_incPartsUpdate finish\n";
357                    delete_dvd( $dvd_nr );
358                    next;
359            }
360    
361            if ($sth_archive_backup_parts->rows == 0) {
362                    warn "ERROR: no backup parts found for $dvd_nr. You should re-create that DVD.\n";
363                    next if delete_dvd( $dvd_nr );
364            }
365    
366            if ($prompt_for_delete) {
367                    next if delete_dvd( $dvd_nr );
368            }
369    
370            my @volumes;
371            my $v;  # emtpy volume
372            my $v_size = 0;
373    
374            my $max_archive_size = $Conf{MaxArchiveSize} || die "no MaxArchiveSize";
375            while (my $row = $sth_archive_backup_parts->fetchrow_hashref) {
376                    if (($v->{size} || 0) + $row->{part_size} > $max_archive_size) {
377                            push @volumes, $v;
378                            $v = {};
379                    }
380                    $v->{size} += $row->{part_size};
381                    # this part
382                    my $p = {
383                            filename => BackupPC::SearchLib::getGzipName($row->{'host'}, $row->{'share'}, $row->{'num'}),
384                    };
385                    foreach my $fld (qw/part_nr md5/) {
386                            $p->{$fld} = $row->{$fld} || die "missing $fld in row!";
387                    }
388                    push @{ $v->{parts} }, $p;
389            }
390            push @volumes, $v if ($v);
391    
392            #warn "# volumes: ",Dumper(\@volumes),"\n";
393    
394            my $volumes = $#volumes + 1;
395            my $volume_nr = 1;
396    
397            foreach my $v (@volumes) {
398    
399                    #print Dumper($v);
400    
401                    my $iso_size = 0;
402                    my $disk_name = $dvd_nr;
403                    # suffix added to multi-volume archives
404                    my $volume_suffix = '';
405    
406                    if ($volumes > 1) {
407                            $volume_suffix = '_' . $volume_nr;
408                            $disk_name .= ' ' . $volume_nr . '/' . $volumes;
409                    }
410    
411                    print "Processing DVD #$dvd_nr, volume $volume_nr/$volumes\n";
412    
413                    my $iso_file = my $xml_file = my $stage =
414                            "${iso_dir}/${dvd_nr}";
415    
416                    $iso_file .= $volume_suffix . '.iso';
417                    $xml_file .= '.xml';
418    
419                    $stage .= $volume_suffix . '.stage';
420    
421                    my $md5_file = "${stage}/${dvd_nr}${volume_suffix}.md5";
422    
423                    #
424                    # check if ISO file exists
425                    #
426    
427                    if (! -e $iso_file) {
428    
429                            # create stage directory
430                            if (-e $stage) {
431                                    rmtree($stage) || die "can't remove $stage: $!";
432                            }
433                            mkpath($stage);
434    
435                            # open file for md5sums
436                            open(my $md5, "> $md5_file") || skip "can't open $md5_file: $!";
437    
438                            my $parts_on_this_volume = 0;
439    
440                            foreach my $p (@{ $v->{parts} }) {
441                                    my $tar_file = $p->{filename} || die "no filename in part", Dumper($p);
442                                    my $rel_path = $tar_file;
443    
444                                    if (-d "$tar_dir/$rel_path") {
445                                            mkpath("$stage/$rel_path") unless (-d "$stage/$rel_path");
446                                            $rel_path .= '/' . $p->{part_nr};
447                                    }
448                                    $rel_path .= '.tar.gz';
449    
450                                    skip "can't find increment $rel_path: $!" unless (-r "$tar_dir/$rel_path");
451    
452                                    add_symlink("$tar_dir/$rel_path", "$stage/$rel_path");
453    
454                                    my $md5sum = $p->{md5} || die "no md5 in part ", Dumper($p);
455                                    chomp($md5sum);
456                                    print $md5 "$md5sum  $rel_path\n" || die "can't write md5sum: $!";
457    
458                                    $parts_on_this_volume++;
459                            }
460    
461                            # add file list and note in xml
462                            dumpArchive2XML($dbh, $dvd_nr, $xml_file) unless (-f $xml_file);
463    
464                            add_symlink($xml_file, "$stage/${dvd_nr}.xml");
465    
466                            # add css file for archive
467                            my $css_file = $Conf{CgiImageDir} . '/archive.css';
468                            if (-r $css_file) {
469                                    add_symlink($css_file, "$stage/archive.css");
470                            } else {
471                                    print "WARNING: missing $css_file, not added to iso image!\n";
472                            }
473    
474                            print "Running mkisofs now for $parts_on_this_volume increments, disk $disk_name\n";
475    
476                            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 };
477    
478                            system($cmd) == 0 or skip "can't run $cmd: $?";
479    
480                            rename $iso_file.'.tmp', $iso_file || skip "can't rename $iso_file: $!";
481    
482                            $iso_size = (stat($iso_file))[7];
483    
484                            print "Created $iso_file [$iso_size bytes] in ", fmt_time(time() - $t), "\n";
485    
486                            rmtree($stage) || warn "can't remove stage directory $stage: $!";
487    
488                    } else {
489                            print "ISO $iso_file allready exists\n";
490                    }
491    
492                    my $copies = $Conf{BurnMultipleCopies} || 1;
493    
494                    foreach my $copy_nr ( 1 .. $copies ) {
495    
496                            print "\nREADY TO BURN MEDIA $disk_name copy $copy_nr\n\nPlease insert blank media and press ENTER\n\n";
497    
498                            system($bin->{'eject'}.' '.$eject_opts) == 0 or skip "can't run eject: $?";
499    
500                            my $wait = <STDIN>;
501    
502                            my $cmd = $bin->{'cdrecord'} . ' ' . $cdr_opts . ' ' . $iso_file;
503    
504                            # FIXME
505                            print "## $cmd\n";
506                            system($cmd) == 0 or skip "can't run $cmd: $?";
507    
508                            print "\n\nPLEASE REMOVE DVD MEDIA AND LABEL IT WITH $disk_name\n\n";
509    
510                            $sth_archive_burned->execute($dvd_nr, $iso_size, $volume_nr, $copy_nr);
511    
512                            print "Media burn for $disk_name copy $copy_nr recorded\n";
513                    }
514    
515                    $volume_nr++;
516            }
517    
518    SKIP:
519    
520  }  }
521    
522  #my $tar_file = BackupPC::SearchLib::getGzipName($row->{'host'}, $row->{'share'}, $row->{'num'});  #my $tar_file = BackupPC::SearchLib::getGzipName($row->{'host'}, $row->{'share'}, $row->{'num'});
523  #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 ";
524    
525    print "Recoding finished, exiting...\n";
526    
527  $sth->finish;  $sth->finish;
528    $sth_archive_backup_parts->finish;
529    $sth_archive_burned->finish;
530    $sth_archive_backup_check->finish;
531    $sth_archive_burned->finish;
532    
533  $dbh->disconnect;  $dbh->disconnect;
534    

Legend:
Removed from v.174  
changed lines
  Added in v.321

  ViewVC Help
Powered by ViewVC 1.1.26