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

Contents of /trunk/bin/BackupPC_incPartsUpdate

Parent Directory Parent Directory | Revision Log Revision Log


Revision 253 - (show annotations)
Mon Dec 12 13:41:08 2005 UTC (18 years, 5 months ago) by dpavlin
File size: 4649 byte(s)
 r11637@llin:  dpavlin | 2005-12-12 15:40:59 +0100
 create increments using new BackupPC_tarIncCreate

1 #!/usr/local/bin/perl -w
2
3 use strict;
4 use lib "__INSTALLDIR__/lib";
5
6 use DBI;
7 use BackupPC::Lib;
8 use BackupPC::View;
9 use BackupPC::Attrib qw/:all/;
10 use Data::Dumper;
11 use Time::HiRes qw/time/;
12 use POSIX qw/strftime/;
13 use Cwd qw/abs_path/;
14 use File::Which;
15 use Archive::Tar::Streamed;
16 use Algorithm::Diff;
17 use Getopt::Std;
18
19 my $bpc = BackupPC::Lib->new || die "can't create BackupPC::Lib";
20 my %Conf = $bpc->Conf();
21
22 use BackupPC::SearchLib;
23 %BackupPC::SearchLib::Conf = %Conf;
24
25 # cludge: minimum .tar.gz size
26 my $MIN_TAR_SIZE = 80;
27
28 my $path = abs_path($0);
29 $path =~ s#/[^/]+$#/#;
30 my $tarIncCreate = $path .= 'BackupPC_tarIncCreate';
31
32 die "can't find $tarIncCreate: $!\n" unless (-x $tarIncCreate);
33
34 my $bin;
35 foreach my $c (qw/gzip/) {
36 $bin->{$c} = which($c) || die "$0 needs $c, install it\n";
37 }
38
39 my %opt;
40 getopts("cd", \%opt );
41
42 my $debug = $opt{d};
43 my $check = $opt{c} && print STDERR "NOTICE: tar archive check forced\n";
44
45 $|=1;
46
47 my $start_t = time();
48
49 my $t_fmt = '%Y-%m-%d %H:%M:%S';
50
51 my $dsn = $Conf{SearchDSN} || die "Need SearchDSN in config.pl\n";
52 my $user = $Conf{SearchUser} || '';
53
54 my $dbh = DBI->connect($dsn, $user, "", { RaiseError => 1, AutoCommit => 0 });
55
56 my $tar_dir = $Conf{InstallDir}.'/'.$Conf{GzipTempDir};
57
58 die "problem with $tar_dir, check GzipTempDir in configuration\n" unless (-d $tar_dir && -w $tar_dir);
59
60 #---- subs ----
61
62 sub fmt_time {
63 my $t = shift || return;
64 my $out = "";
65 my ($ss,$mm,$hh) = gmtime($t);
66 $out .= "${hh}h" if ($hh);
67 $out .= sprintf("%02d:%02d", $mm,$ss);
68 return $out;
69 }
70
71 sub curr_time {
72 return strftime($t_fmt,localtime());
73 }
74
75 sub tar_check($$$$) {
76 my ($host,$share,$num,$filename) = @_;
77
78 return 1; # FIXME
79
80 if ($debug) {
81 print STDERR " {{ CHECK: ${host}:${share}#${num} and $filename";
82 } else {
83 print " check";
84 }
85
86 if (-d $filename) {
87 print STDERR ", joining";
88 tar_join($filename);
89 }
90
91 print STDERR ", opening" if ($debug);
92 open(my $fh, "gzip -cd $filename |") or die "can't open $filename: $!";
93 binmode($fh);
94 my $tar = Archive::Tar::Streamed->new($fh);
95
96 print STDERR ", tar" if ($debug);
97 my @tar_files;
98 while(my $entry = $tar->next) {
99 push @tar_files, $entry->name;
100 }
101 @tar_files = sort @tar_files;
102 print STDERR " ",($#tar_files + 1), " files" if ($debug);
103
104 print STDERR ", database" if ($debug);
105
106 my $sth = $dbh->prepare(qq{
107 SELECT path,type
108 FROM files
109 JOIN shares on shares.id = shareid
110 JOIN hosts on hosts.id = shares.hostid
111 WHERE hosts.name = ? and shares.name = ? and backupnum = ?
112 });
113 $sth->execute($host, $share, $num);
114 my @db_files;
115 while( my $row = $sth->fetchrow_hashref ) {
116
117 my $path = $row->{'path'} || die "no path?";
118 $path =~ s#^/#./#;
119 $path .= '/' if ($row->{'type'} == BPC_FTYPE_DIR);
120 push @db_files, $path;
121 }
122
123 print STDERR " ",($#db_files + 1), " files, diff" if ($debug);
124
125 @db_files = sort @db_files;
126
127 my $same = 1;
128 if ($#tar_files != $#db_files) {
129 $same = 0;
130 print STDERR " NUMBER" if ($debug);
131 } else {
132 my $diff = Algorithm::Diff->new(\@tar_files, \@db_files);
133 while ( $diff->Next() ) {
134 next if $diff->Same();
135 $same = 0;
136 print "< $_\n" for $diff->Items(1);
137 print "> $_\n" for $diff->Items(2);
138 }
139 }
140
141 print " ",($same ? 'ok' : 'DIFFERENT');
142 print STDERR " }} " if ($debug);
143
144 return $same;
145 }
146
147
148 #----- main
149
150 my $sth = $dbh->prepare( qq{
151
152 select
153 backups.id as backup_id,
154 hosts.name as host,
155 shares.name as share,
156 backups.num as num,
157 inc_size,
158 parts
159 from backups
160 join shares on backups.hostid = shares.hostid
161 and shares.id = backups.shareid
162 join hosts on shares.hostid = hosts.id
163 where not inc_deleted
164 order by backups.date
165
166 } );
167
168 $sth->execute();
169 my $num_backups = $sth->rows;
170 my $curr_backup = 1;
171
172 while (my $row = $sth->fetchrow_hashref) {
173 my $tar_file = BackupPC::SearchLib::getGzipName($row->{'host'}, $row->{'share'}, $row->{'num'});
174
175 # this will return -1 if file doesn't exist
176 my $size = BackupPC::SearchLib::get_tgz_size_by_name($tar_file);
177
178 print "# size: $size backup.size: ", $row->{inc_size},"\n" if ($opt{d});
179
180 if ( $row->{'inc_size'} != -1 && $size != -1 && $row->{'inc_size'} == $size && ( $check && tar_check($row->{'host'}, $row->{'share'}, $row->{'num'}, "$tar_dir/$tar_file") || 1) ) {
181 next;
182 }
183
184 print curr_time, " $curr_backup/$num_backups ", $row->{'host'}, ":", $row->{'share'}, " #", $row->{'num'}, " -> $tar_file";
185 $curr_backup++;
186
187 my $t = time();
188
189 # re-create archive?
190 my $cmd = qq{ $tarIncCreate -h "$row->{'host'}" -s "$row->{'share'}" -n $row->{'num'} };
191 print STDERR "## $cmd\n" if ($debug);
192
193 if (system($cmd) != 0) {
194 print STDERR " FAILED";
195 }
196
197 print ", dur: ",fmt_time(time() - $t), "\n";
198
199 $dbh->commit;
200
201 }
202
203 undef $sth;
204 $dbh->disconnect;

Properties

Name Value
svn:executable *

  ViewVC Help
Powered by ViewVC 1.1.26