/[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 269 - (show annotations)
Tue Dec 13 18:08:48 2005 UTC (18 years, 5 months ago) by dpavlin
File size: 7950 byte(s)
 r11667@llin:  dpavlin | 2005-12-13 19:50:27 +0100
 re-order checks for performance improvement

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 use File::Slurp;
19
20 my $bpc = BackupPC::Lib->new || die "can't create BackupPC::Lib";
21 my %Conf = $bpc->Conf();
22
23 use BackupPC::SearchLib;
24 %BackupPC::SearchLib::Conf = %Conf;
25
26 my $path = abs_path($0);
27 $path =~ s#/[^/]+$#/#;
28 my $tarIncCreate = $path .= 'BackupPC_tarIncCreate';
29
30 die "can't find $tarIncCreate: $!\n" unless (-x $tarIncCreate);
31
32 my $bin;
33 foreach my $c (qw/gzip md5sum/) {
34 $bin->{$c} = which($c) || die "$0 needs $c, install it\n";
35 }
36
37 my %opt;
38 getopts("cd", \%opt );
39
40 my $debug = $opt{d};
41 my $check = $opt{c} && print STDERR "NOTICE: tar archive check forced\n";
42
43 $|=1;
44
45 my $start_t = time();
46
47 my $t_fmt = '%Y-%m-%d %H:%M:%S';
48
49 my $dsn = $Conf{SearchDSN} || die "Need SearchDSN in config.pl\n";
50 my $user = $Conf{SearchUser} || '';
51
52 my $dbh = DBI->connect($dsn, $user, "", { RaiseError => 1, AutoCommit => 0 });
53
54 my $tar_dir = $Conf{InstallDir}.'/'.$Conf{GzipTempDir};
55
56 die "problem with $tar_dir, check GzipTempDir in configuration\n" unless (-d $tar_dir && -w $tar_dir);
57
58 #---- subs ----
59
60 sub fmt_time {
61 my $t = shift || return;
62 my $out = "";
63 my ($ss,$mm,$hh) = gmtime($t);
64 $out .= "${hh}h" if ($hh);
65 $out .= sprintf("%02d:%02d", $mm,$ss);
66 return $out;
67 }
68
69 sub curr_time {
70 return strftime($t_fmt,localtime());
71 }
72
73 my $hsn_cache;
74
75 sub get_backup_id($$$) {
76 my ($host, $share, $num) = @_;
77
78 my $key = "$host $share $num";
79 return $hsn_cache->{$key} if ($hsn_cache->{$key});
80
81 my $sth = $dbh->prepare(qq{
82 SELECT
83 backups.id
84 FROM backups
85 INNER JOIN shares ON backups.shareID=shares.ID
86 INNER JOIN hosts ON backups.hostID = hosts.ID
87 where hosts.name = ? and shares.name = ? and backups.num = ?
88 });
89 $sth->execute($host, $share, $num);
90 my ($id) = $sth->fetchrow_array;
91
92 $hsn_cache->{"$host $share $num"} = $id;
93
94 print STDERR "# $host $share $num == $id\n" if ($opt{d});
95
96 return $id;
97 }
98
99
100 sub tar_check($$$$) {
101 my ($host,$share,$num,$filename) = @_;
102
103 sub check_part {
104 my ($host, $share, $num, $part_nr, $tar_size, $size, $md5, $items) = @_;
105 my $backup_id = get_backup_id($host, $share, $num);
106 my $sth_md5 = $dbh->prepare(qq{
107 select
108 id, tar_size, size, md5, items
109 from backup_parts
110 where backup_id = ? and part_nr = ?
111 });
112
113 $sth_md5->execute($backup_id, $part_nr);
114
115 if (my $row = $sth_md5->fetchrow_hashref) {
116 return if (
117 $row->{tar_size} >= $tar_size &&
118 $row->{size} == $size &&
119 $row->{md5} eq $md5 &&
120 $row->{items} == $items
121 );
122 print STDERR "# deleting invalid row $row->{id}\n" if ($opt{d});
123 $dbh->do(qq{ delete from backup_parts where id = $row->{id} });
124 }
125 print STDERR "# inserting new backup_part row\n";
126 my $sth_insert = $dbh->prepare(qq{
127 insert into backup_parts (
128 backup_id,
129 part_nr,
130 tar_size,
131 size,
132 md5,
133 items
134 ) values (?,?,?,?,?,?)
135 });
136
137 $sth_insert->execute($backup_id, $part_nr, $tar_size, $size, $md5, $items);
138 $dbh->commit;
139 }
140
141 if ($debug) {
142 print STDERR " {{ CHECK: ${host}:${share}#${num} and $filename";
143 } else {
144 print " check $filename";
145 }
146
147 my @tar_parts;
148
149 if (-d "$tar_dir/$filename") {
150 print STDERR " multi-part" if ($opt{d});
151 opendir(my $dir, "$tar_dir/$filename") || die "can't readdir $tar_dir/$filename: $!";
152 @tar_parts = map { my $p = $_; $p =~ s#^#${filename}/#; $p } grep { !/^\./ && !/md5/ && -f "$tar_dir/$filename/$_" } readdir($dir);
153 closedir($dir);
154 } else {
155 push @tar_parts, "${filename}.tar.gz";
156 }
157
158 print " [parts: ",join(", ", @tar_parts),"]" if ($opt{d});
159
160 my $same = 1;
161 my @tar_files;
162
163 my $backup_part;
164
165 print " reading" if ($opt{d});
166
167 foreach my $tarfilename (@tar_parts) {
168
169 print STDERR " $tarfilename" if ($debug);
170
171 my $size = (stat( "$tar_dir/$tarfilename" ))[7] || die "can't stat $tar_dir/$tarfilename";
172
173 if ($size > $Conf{MaxArchiveSize}) {
174 print STDERR " part bigger than media $size > $Conf{MaxArchiveSize} }}" if ($debug);
175 $same = 0;
176 last;
177 }
178
179 my $path = "$tar_dir/$tarfilename";
180
181 open(my $fh, "gzip -cd $tar_dir/$tarfilename |") or die "can't open $tar_dir/$tarfilename: $!";
182 binmode($fh);
183 my $tar = Archive::Tar::Streamed->new($fh);
184
185 my $tar_size = 0;
186 my $items = 0;
187
188 while(my $entry = $tar->next) {
189 push @tar_files, $entry->name;
190 $items++;
191 $tar_size += $entry->size;
192
193 if ($tar_size > $Conf{MaxArchiveFileSize}) {
194 print STDERR " part too big $tar_size > $Conf{MaxArchiveFileSize} }}" if ($debug);
195 $same = 0;
196 last;
197 }
198
199 }
200
201 #
202 # check if md5 exists, and if not, create one
203 #
204
205 my $md5_path = $path;
206 $md5_path =~ s/\.tar\.gz$/.md5/ || die "can't create md5 filename from $md5_path";
207 if (! -e $md5_path || -z $md5_path) {
208 print ", creating md5";
209 system( $bin->{md5sum} . " $path > $md5_path") == 0 or die "can't create md5 $path: $!";
210 }
211
212 my $md5 = read_file( $md5_path ) || die "can't read md5sum file $md5_path: $!";
213 $md5 =~ s#\s.*$##;
214
215 # extract part number from filename
216 my $part_nr = 1;
217 $part_nr = $1 if ($tarfilename =~ m#/(\d+)\.tar\.gz#);
218
219 #
220 # finally, check if backup_parts table in database is valid
221 #
222
223 check_part($host, $share, $num, $part_nr, $tar_size, $size, $md5, $items);
224 }
225
226 # short-cut and exit;
227 return $same unless($same);
228
229 @tar_files = sort @tar_files;
230 print STDERR " ",($#tar_files + 1), " files" if ($debug);
231
232 print STDERR ", database" if ($debug);
233
234 my $sth = $dbh->prepare(qq{
235 SELECT path,type
236 FROM files
237 JOIN shares on shares.id = shareid
238 JOIN hosts on hosts.id = shares.hostid
239 WHERE hosts.name = ? and shares.name = ? and backupnum = ?
240 });
241 $sth->execute($host, $share, $num);
242 my @db_files;
243 while( my $row = $sth->fetchrow_hashref ) {
244
245 my $path = $row->{'path'} || die "no path?";
246 $path =~ s#^/#./#;
247 $path .= '/' if ($row->{'type'} == BPC_FTYPE_DIR);
248 push @db_files, $path;
249 }
250
251 print STDERR " ",($#db_files + 1), " files, diff" if ($debug);
252
253 @db_files = sort @db_files;
254
255 if ($#tar_files != $#db_files) {
256 $same = 0;
257 print STDERR " NUMBER" if ($debug);
258 } else {
259 my $diff = Algorithm::Diff->new(\@tar_files, \@db_files);
260 while ( $diff->Next() ) {
261 next if $diff->Same();
262 $same = 0;
263 print "< $_\n" for $diff->Items(1);
264 print "> $_\n" for $diff->Items(2);
265 }
266 }
267
268 print " ",($same ? 'ok' : 'DIFFERENT');
269 print STDERR " }} " if ($debug);
270
271 return $same;
272 }
273
274
275 #----- main
276
277 my $sth = $dbh->prepare( qq{
278
279 select
280 backups.id as backup_id,
281 hosts.name as host,
282 shares.name as share,
283 backups.num as num,
284 inc_size,
285 parts
286 from backups
287 join shares on backups.hostid = shares.hostid
288 and shares.id = backups.shareid
289 join hosts on shares.hostid = hosts.id
290 where not inc_deleted
291 order by backups.date
292
293 } );
294
295 $sth->execute();
296 my $num_backups = $sth->rows;
297 my $curr_backup = 1;
298
299 while (my $row = $sth->fetchrow_hashref) {
300 my $tar_file = BackupPC::SearchLib::getGzipName($row->{'host'}, $row->{'share'}, $row->{'num'});
301
302 # this will return -1 if file doesn't exist
303 my $size = BackupPC::SearchLib::get_tgz_size_by_name($tar_file);
304
305 print "# size: $size backup.size: ", $row->{inc_size},"\n" if ($opt{d});
306
307 if ( $row->{'inc_size'} != -1 && $size != -1 && $row->{'inc_size'} >= $size) {
308 if ($check) {
309 tar_check($row->{'host'}, $row->{'share'}, $row->{'num'}, $tar_file) && next;
310 } else {
311 next;
312 }
313 }
314
315 print curr_time, " $curr_backup/$num_backups ", $row->{'host'}, ":", $row->{'share'}, " #", $row->{'num'}, " -> $tar_file";
316 $curr_backup++;
317
318 my $t = time();
319
320 # re-create archive?
321 my $cmd = qq{ $tarIncCreate -h "$row->{'host'}" -s "$row->{'share'}" -n $row->{'num'} -f };
322 print STDERR "## $cmd\n" if ($debug);
323
324 if (system($cmd) != 0) {
325 print STDERR " FAILED";
326 }
327
328 print ", dur: ",fmt_time(time() - $t), "\n";
329
330 $dbh->commit;
331
332 }
333
334 undef $sth;
335 $dbh->disconnect;

Properties

Name Value
svn:executable *

  ViewVC Help
Powered by ViewVC 1.1.26