/[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 181 by dpavlin, Wed Oct 12 10:34:26 2005 UTC revision 208 by dpavlin, Sat Oct 15 14:11:46 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    
 my $start_t = time();  
   
 my $t_fmt = '%Y-%m-%d %H:%M:%S';  
   
19  # don't check for user  # don't check for user
20  my $bpc = BackupPC::Lib->new(undef, undef, 1) || die;  my $bpc = BackupPC::Lib->new(undef, undef, 1) || die;
21  my %Conf = $bpc->Conf();  my %Conf = $bpc->Conf();
22  %BackupPC::SearchLib::Conf = %Conf;  %BackupPC::SearchLib::Conf = %Conf;
23    
24    my $conf_bin;
25    
26    $conf_bin->{'cdrecord'} = $Conf{CDRecordBin} || die "Need CDRecordBin in config.pl\n";
27    my $cdr_opts = $Conf{CDRecordOpts} || die "Need CDRecordOpts in config.pl\n";
28    $conf_bin->{'eject'} = $Conf{ejectBin} || die "Need ejectBin in config.pl\n";
29    my $eject_opts = $Conf{ejectOpts} || die "Need ejectOpts in config.pl\n";
30    $conf_bin->{'mkisofs'} = $Conf{mkisofsBin} || die "Need mkisofsBin in config.pl\n";
31    
32    
33    my $bin;
34    foreach my $c (qw/cdrecord eject mkisofs/) {
35            $bin->{$c} = which($conf_bin->{$c}) || die "$0 needs $c ($conf_bin->{$c}), install it\n";
36    }
37    
38    my $start_t = time();
39    
40    my $t_fmt = '%Y-%m-%d %H:%M:%S';
41    
42    
43  my $dsn = $Conf{SearchDSN} || die "Need SearchDSN in config.pl\n";  my $dsn = $Conf{SearchDSN} || die "Need SearchDSN in config.pl\n";
44  my $user = $Conf{SearchUser} || '';  my $user = $Conf{SearchUser} || '';
45    
# Line 55  sub curr_time { Line 69  sub curr_time {
69          return strftime($t_fmt,localtime());          return strftime($t_fmt,localtime());
70  }  }
71    
72    sub dumpArchive2XML($$$)
73    {
74            my ($dbh, $dvd_nr, $filename) = @_;
75            my %archive;
76    
77            my $output = new IO::File('> '.$filename.'.tmp');
78            my $writer = new XML::Writer(OUTPUT=>$output, NEWLINES => 1);
79    
80            print "Dumping file list for DVD $dvd_nr, countdown:";
81    
82            $writer->pi('xml-stylesheet', 'href="archive.css" type="text/css"');
83    
84            my $files_sql = q{
85                    SELECT
86                            files.path AS path,
87                            files.date AS date,
88                            files.type AS type,
89                            files.size AS size
90                    FROM files, backups, shares
91                    WHERE files.backupnum=backups.num AND
92                            files.shareid=shares.id AND
93                            shares.hostid=backups.hostid AND
94                            backups.id=?
95            };
96    
97            my $backups_sql = q{
98                    SELECT
99                            backups.id   AS backup_id,
100                            hosts.name   AS host,
101                            backups.num  AS num,
102                            backups.date AS date,
103                            shares.name  AS share,
104                            backups.size AS backup_size,
105                            backups.inc_size AS compress_size
106                    FROM backups, archive_backup, hosts, shares
107                    WHERE archive_backup.backup_id = backups.id
108                            AND hosts.id=backups.hostid
109                            AND shares.id=backups.shareid
110                            AND archive_backup.archive_id = ?
111            };
112    
113            my $sth = $dbh->prepare("SELECT dvd_nr, total_size, note, username, date,id FROM archive WHERE dvd_nr=?");
114            $sth->execute($dvd_nr);
115            my $row = $sth->fetchrow_hashref();
116    
117            my $row_h;
118            foreach my $hide (qw/id note/) {
119                    $row_h->{$hide} = $row->{$hide} || '';
120                    delete $row->{$hide};
121            }
122    
123            $writer->startTag("archive", %{$row});
124    
125            $writer->startTag("note");
126            $writer->characters( $row_h->{'note'} );
127            $writer->endTag("note");
128    
129            my $sth_backups = $dbh->prepare( $backups_sql );
130            $sth_backups->execute( $row_h->{'id'} );
131    
132            my $total_backups = $sth_backups->rows;
133            my $curr_backup = 0;
134            my $last_pcnt = 0;
135    
136            while (my $row = $sth_backups->fetchrow_hashref()) {
137    
138                    $curr_backup++;
139                    my $pcnt = int(($curr_backup * 10) / $total_backups);
140                    if ($pcnt > $last_pcnt) {
141                            print " ",(10 - $pcnt);
142                            $last_pcnt = $pcnt;
143                    }
144    
145                    my $sth_files = $dbh->prepare( $files_sql);
146                    $sth_files->execute($row->{'backup_id'});
147    
148                    delete($row->{'backup_id'});
149                    $row->{'date'} = strftime($t_fmt,gmtime($row->{'date'}));
150    
151                    $writer->startTag( "backup", %{$row} );
152    
153                    while (my $row = $sth_files->fetchrow_hashref()) {
154                            # convert filetype to string
155                            $row->{'type'} = BackupPC::Attrib::fileType2Text(undef, $row->{'type'});
156                            $row->{'date'} = strftime($t_fmt,gmtime($row->{'date'}));
157                            my $path = $row->{'path'}; delete $row->{'path'};
158    
159                            $writer->startTag("file", %{$row});
160                            $writer->characters( $path );
161                            $writer->endTag("file");
162                    }
163                    $writer->endTag("backup");
164            }      
165                            
166            $writer->endTag("archive");
167            $writer->end();
168    
169            rename $filename.'.tmp', $filename || die "can't rename $filename: $!";
170    
171            print "\n";
172    }
173    
174    
175    
176  #----- main  #----- main
177    
178  my $sth = $dbh->prepare( qq{  my $sth = $dbh->prepare( qq{
# Line 135  my $sth_archive_backup = $dbh->prepare( Line 253  my $sth_archive_backup = $dbh->prepare(
253                  archive_id,                  archive_id,
254                  hosts.name as host,                  hosts.name as host,
255                  shares.name as share,                  shares.name as share,
256                  backups.num as num                  backups.num as num,
257                    backups.parts as parts
258          from archive_backup          from archive_backup
259          join archive on archive_id = archive.id          join archive on archive_id = archive.id
260          join backups on backup_id = backups.id          join backups on backup_id = backups.id
# Line 146  my $sth_archive_backup = $dbh->prepare( Line 265  my $sth_archive_backup = $dbh->prepare(
265    
266  my $sth_archive_burned = $dbh->prepare( qq{  my $sth_archive_burned = $dbh->prepare( qq{
267          insert into archive_burned          insert into archive_burned
268                  (archive_id, iso_size)                  (archive_id, iso_size, part, copy)
269          values ( (select id from archive where dvd_nr =?), ?)          values ( (select id from archive where dvd_nr =?), ?, ?, ?)
270  });  });
271    
272  foreach my $arc (@archives_to_burn) {  foreach my $arc (@archives_to_burn) {
# Line 162  foreach my $arc (@archives_to_burn) { Line 281  foreach my $arc (@archives_to_burn) {
281    
282          print "Working on DVD #$dvd_nr in $tmp_dir\n";          print "Working on DVD #$dvd_nr in $tmp_dir\n";
283    
284          my $list_file = my $iso_file = "${iso_dir}/${dvd_nr}";          my $part_path = '';
285          $list_file .= '.list';          my $part_nr = 1;
286          $iso_file .= '.iso';          my $parts = 0;
287                    
         if (-e $iso_file) {  
                 print "ISO $iso_file allready exists\n";  
                 goto BURN;  
         }  
   
288          $sth_archive_backup->execute($dvd_nr);          $sth_archive_backup->execute($dvd_nr);
289    
290          open(my $list, "> $list_file") || skip "can't open $list_file: $!";          my $disk_name = 'unknown disk';
291            my $iso_size = 0;
292    
293          my $inc = 0;          do {
294    
295          while (my $row = $sth_archive_backup->fetchrow_hashref) {                  # do we need to re-execute query for multi-part increments?
296                  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++;  
297    
298          }                  my $row = $sth_archive_backup->fetchrow_hashref || die "can't fetch row";
299    
         # FIXME add file list in xml and txt and note file  
300    
301          close($list);                  $parts =  $row->{'parts'} || die "no parts?";
302                    $disk_name = $dvd_nr;
303    
304          print "Running mkisofs now for $inc increments...\n";                  if ($parts > 1) {
305                            # parts start with 0, so we have -1 here
306                            $part_path = '.' . ($part_nr - 1);
307                            $disk_name .= ' ' . $part_nr . '/' . $parts;
308                    }
309    
310          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 };                  print "Processing part $part_nr/$parts\n";
311    
312          system($cmd) == 0 or skip "can't run $cmd: $?";                  my $list_file = my $iso_file = my $xml_file = "${iso_dir}/${dvd_nr}";
313                    $list_file .= $part_path . '.list';
314                    $iso_file .= $part_path . '.iso';
315                    $xml_file .= '.xml';
316    
317          my $size = (stat($iso_file))[7];                  #
318                    # check if ISO file exists
319                    #
320    
321          print "Created $iso_file [$size bytes] in ", fmt_time(time() - $t), "\n";                  if (! -e $iso_file) {
322    
323  BURN:                          open(my $list, "> $list_file") || skip "can't open $list_file: $!";
324          # FIXME add call to cdrecord here!  
325          $sth_archive_burned->execute($dvd_nr, $size);                          my $inc = 0;
326          print "Media burn for $dvd_nr recorded\n";  
327                            do {
328                                    my $tar_file = BackupPC::SearchLib::getGzipName($row->{'host'}, $row->{'share'}, $row->{'num'});
329                                    if (-f "$tar_dir/$tar_file") {
330                                            skip "can't find increment $tar_file: $!" unless (-r "$tar_dir/$tar_file");
331                                            print $list "$tar_dir/$tar_file\n";
332                                    } else {
333                                            my $len = length("$parts");
334                                            my $nr = sprintf("%0${len}d", ($part_nr - 1));
335                                            print $list "$tar_dir/$tar_file/part$nr\n";
336                                    }
337                                    $inc++;
338                            } while ($row = $sth_archive_backup->fetchrow_hashref);
339    
340                            # add file list and note in xml
341                            dumpArchive2XML($dbh, $dvd_nr, $xml_file) unless (-f $xml_file);
342                            print $list "$xml_file\n";
343    
344                            # add css file for archive
345                            my $css_file = $Conf{CgiImageDir} . '/archive.css';
346                            if (-r $css_file) {
347                                    print $list "$css_file\n";
348                            } else {
349                                    print "WARNING: missing $css_file, not added to iso image!\n";
350                            }
351    
352                            close($list);
353    
354                            print "Running mkisofs now for $inc increments, disk $disk_name\n";
355    
356                            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 };
357    
358                            system($cmd) == 0 or skip "can't run $cmd: $?";
359    
360                            rename $iso_file.'.tmp', $iso_file || skip "can't rename $iso_file: $!";
361    
362                            $iso_size = (stat($iso_file))[7];
363    
364                            print "Created $iso_file [$iso_size bytes] in ", fmt_time(time() - $t), "\n";
365    
366                    } else {
367                            print "ISO $iso_file allready exists\n";
368                    }
369    
370                    my $copies = $Conf{BurnMultipleCopies} || 1;
371    
372                    foreach my $copy_nr ( 1 .. $copies ) {
373    
374                            print "\nREADY TO BURN MEDIA $disk_name copy $copy_nr\n\nPlease insert blank media and press ENTER\n\n";
375    
376                            system($bin->{'eject'}.' '.$eject_opts) == 0 or skip "can't run eject: $?";
377    
378                            my $wait = <STDIN>;
379    
380                            my $cmd = $bin->{'cdrecord'} . ' ' . $cdr_opts . ' ' . $iso_file;
381    
382                            # FIXME
383                            print "## $cmd\n";
384                            system($cmd) == 0 or skip "can't run $cmd: $?";
385    
386                            print "\n\nPLEASE REMOVE DVD MEDIA AND LABEL IT WITH $disk_name\n\n";
387    
388                            $sth_archive_burned->execute($dvd_nr, $iso_size, $part_nr, $copy_nr);
389    
390                            print "Media burn for $disk_name copy $copy_nr recorded\n";
391                    }
392    
393                    $part_nr++;
394            } until ($part_nr > $parts);
395    
396  SKIP:  SKIP:
397    
# Line 211  SKIP: Line 400  SKIP:
400  #my $tar_file = BackupPC::SearchLib::getGzipName($row->{'host'}, $row->{'share'}, $row->{'num'});  #my $tar_file = BackupPC::SearchLib::getGzipName($row->{'host'}, $row->{'share'}, $row->{'num'});
401  #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 ";
402    
403    print "Recoding finished, exiting...\n";
404    
405  $sth->finish;  $sth->finish;
406    $sth_archive_backup->finish;
407    $sth_archive_burned->finish;
408    
409  $dbh->disconnect;  $dbh->disconnect;
410    

Legend:
Removed from v.181  
changed lines
  Added in v.208

  ViewVC Help
Powered by ViewVC 1.1.26