/[BackupPC]/trunk/bin/BackupPC_updatedb
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_updatedb

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 118 by dpavlin, Sun Sep 11 14:31:49 2005 UTC revision 190 by dpavlin, Thu Oct 13 11:43:58 2005 UTC
# Line 50  my $dbh = DBI->connect($dsn, $user, "", Line 50  my $dbh = DBI->connect($dsn, $user, "",
50    
51  my %opt;  my %opt;
52    
53  if ( !getopts("cdm:v:i", \%opt ) ) {  if ( !getopts("cdm:v:ij", \%opt ) ) {
54          print STDERR <<EOF;          print STDERR <<EOF;
55  usage: $0 [-c|-d] [-m num] [-v|-v level] [-i]  usage: $0 [-c|-d] [-m num] [-v|-v level] [-i]
56    
# Line 59  Options: Line 59  Options:
59          -d      delete database before import          -d      delete database before import
60          -m num  import just num increments for one host          -m num  import just num increments for one host
61          -v num  set verbosity (debug) level (default $debug)          -v num  set verbosity (debug) level (default $debug)
62          -i      update HyperEstraier full text index          -i      update Hyper Estraier full text index
63            -j      update full text, don't check existing files
64    
65    Option -j is variation on -i. It will allow faster initial creation
66    of full-text index from existing database.
67    
68  EOF  EOF
69          exit 1;          exit 1;
70  }  }
# Line 104  sub hest_update { Line 109  sub hest_update {
109    
110          my ($host_id, $share_id, $num) = @_;          my ($host_id, $share_id, $num) = @_;
111    
112            my $skip_check = $opt{j} && print STDERR "Skipping check for existing files -- this should be used only with initital import\n";
113    
114          unless ($use_hest) {          unless ($use_hest) {
115                  print STDERR "HyperEstraier support not enabled in configuration\n";                  print STDERR "HyperEstraier support not enabled in configuration\n";
116                  return;                  return;
# Line 136  sub hest_update { Line 143  sub hest_update {
143    
144                  my $where = '';                  my $where = '';
145                  my @data;                  my @data;
146                  if ($host_id && $share_id && $num) {                  if (defined($host_id) && defined($share_id) && defined($num)) {
147                          $where = qq{                          $where = qq{
148                          WHERE                          WHERE
149                                  hosts.id = ? AND                                  hosts.id = ? AND
# Line 190  sub hest_update { Line 197  sub hest_update {
197                          my $fid = $row->{'fid'} || die "no fid?";                          my $fid = $row->{'fid'} || die "no fid?";
198                          my $uri = 'file:///' . $fid;                          my $uri = 'file:///' . $fid;
199    
200                          my $id = ($hest_db || $hest_node)->uri_to_id($uri);                          unless ($skip_check) {
201                          next unless ($id == -1);                                  my $id = ($hest_db || $hest_node)->uri_to_id($uri);
202                                    next unless ($id == -1);
203                            }
204    
205                          # create a document object                          # create a document object
206                          my $doc = HyperEstraier::Document->new;                          my $doc = HyperEstraier::Document->new;
# Line 247  sub hest_update { Line 256  sub hest_update {
256    
257    
258  ## update index ##  ## update index ##
259  if (($opt{i} || ($index_path && ! -e $index_path)) && !$opt{c}) {  if (($opt{i} || $opt{j} || ($index_path && ! -e $index_path)) && !$opt{c}) {
260          # update all          # update all
261          print "force update of HyperEstraier index ";          print "force update of HyperEstraier index ";
262          print "importing existing data" unless (-e $index_path);          print "importing existing data" unless (-e $index_path);
263          print "by -i flag" if ($opt{i});          print "by -i flag" if ($opt{i});
264            print "by -j flag" if ($opt{j});
265          print "\n";          print "\n";
266          hest_update();          hest_update();
267  }  }
# Line 260  if (($opt{i} || ($index_path && ! -e $in Line 270  if (($opt{i} || ($index_path && ! -e $in
270  if ($opt{c}) {  if ($opt{c}) {
271          sub do_index {          sub do_index {
272                  my $index = shift || return;                  my $index = shift || return;
273                  my ($table,$col,$unique) = split(/_/, $index);                  my ($table,$col,$unique) = split(/:/, $index);
274                  $unique ||= '';                  $unique ||= '';
275                  $index =~ s/,/_/g;                  $index =~ s/\W+/_/g;
276                    print "$index on $table($col)" . ( $unique ? "u" : "" ) . " ";
277                  $dbh->do(qq{ create $unique index $index on $table($col) });                  $dbh->do(qq{ create $unique index $index on $table($col) });
278          }          }
279    
280          print "creating tables...\n";          print "creating tables...\n";
281          
282          $dbh->do(qq{          $dbh->do( qq{
283                  create table hosts (                  create table hosts (
284                          ID      SERIAL          PRIMARY KEY,                          ID      SERIAL          PRIMARY KEY,
285                          name    VARCHAR(30)     NOT NULL,                          name    VARCHAR(30)     NOT NULL,
286                          IP      VARCHAR(15)                          IP      VARCHAR(15)
287                  );                              );            
288          });  
                 
         $dbh->do(qq{  
289                  create table shares (                  create table shares (
290                          ID      SERIAL          PRIMARY KEY,                          ID      SERIAL          PRIMARY KEY,
291                          hostID  INTEGER         NOT NULL references hosts(id),                          hostID  INTEGER         NOT NULL references hosts(id),
292                          name    VARCHAR(30)     NOT NULL,                          name    VARCHAR(30)     NOT NULL,
293                          share   VARCHAR(200)    NOT NULL,                          share   VARCHAR(200)    NOT NULL
                         localpath VARCHAR(200)        
294                  );                              );            
295          });  
296                            create table dvds (
297          $dbh->do(qq{                          ID      SERIAL          PRIMARY KEY,
298                            num     INTEGER         NOT NULL,
299                            name    VARCHAR(255)    NOT NULL,
300                            mjesto  VARCHAR(255)
301                    );
302    
303                  create table backups (                  create table backups (
304                            id      serial,
305                          hostID  INTEGER         NOT NULL references hosts(id),                          hostID  INTEGER         NOT NULL references hosts(id),
306                          num     INTEGER         NOT NULL,                          num     INTEGER         NOT NULL,
307                          date    integer         NOT NULL,                          date    integer         NOT NULL,
308                          type    CHAR(4)         not null,                          type    CHAR(4)         not null,
309                          shareID integer         not null references shares(id),                          shareID integer         not null references shares(id),
310                          size    integer         not null,                          size    bigint          not null,
311                          PRIMARY KEY(hostID, num, shareID)                          inc_size bigint         not null default -1,
312                            inc_deleted boolean     default false,
313                            PRIMARY KEY(id)
314                  );                              );            
         });  
315    
316          #do_index('backups_hostid,num_unique');                  create table files (
317                            ID              SERIAL,
318                            shareID         INTEGER NOT NULL references shares(id),
319                            backupNum       INTEGER NOT NULL,
320                            name            VARCHAR(255) NOT NULL,
321                            path            VARCHAR(255) NOT NULL,
322                            date            integer NOT NULL,
323                            type            INTEGER NOT NULL,
324                            size            bigint  NOT NULL,
325                            primary key(id)
326                    );
327    
328          $dbh->do(qq{                  create table archive (
329                  create table dvds (                          id              serial,
330                          ID      SERIAL          PRIMARY KEY,                          dvd_nr          int not null,
331                          num     INTEGER         NOT NULL,                          total_size      bigint default -1,
332                          name    VARCHAR(255)    NOT NULL,                          note            text,
333                          mjesto  VARCHAR(255)                          username        varchar(20) not null,
334                            date            timestamp default now(),
335                            primary key(id)
336                    );      
337    
338                    create table archive_backup (
339                            archive_id      int not null references archive(id) on delete cascade,
340                            backup_id       int not null references backups(id),
341                            primary key(archive_id, backup_id)
342                  );                  );
         });  
343    
344          $dbh->do(qq{                      create table archive_burned (
345                  create table files (                          archive_id int references archive(id),
346                          ID      SERIAL          PRIMARY KEY,                            date date default now(),
347                          shareID INTEGER         NOT NULL references shares(id),                          iso_size int default -1
                         backupNum  INTEGER      NOT NULL,  
                         name       VARCHAR(255) NOT NULL,  
                         path       VARCHAR(255) NOT NULL,  
                         date       integer      NOT NULL,  
                         type       INTEGER      NOT NULL,  
                         size       INTEGER      NOT NULL,  
                         dvdid      INTEGER      references dvds(id)      
348                  );                  );
349    
350          });          });
351    
352          print "creating indexes:";          print "creating indexes: ";
353    
354          foreach my $index (qw(          foreach my $index (qw(
355                  hosts_name                  hosts:name
356                  backups_hostID                  backups:hostID
357                  backups_num                  backups:num
358                  shares_hostID                  backups:shareID
359                  shares_name                  shares:hostID
360                  files_shareID                  shares:name
361                  files_path                  files:shareID
362                  files_name                  files:path
363                  files_date                  files:name
364                  files_size                  files:date
365                    files:size
366                    archive:dvd_nr
367                    archive_burned:archive_id
368          )) {          )) {
                 print " $index";  
369                  do_index($index);                  do_index($index);
370          }          }
371    
372            print " creating sequence: ";
373            foreach my $seq (qw/dvd_nr/) {
374                    print "$seq ";
375                    $dbh->do( qq{ CREATE SEQUENCE $seq } );
376            }
377    
378    
379          print "...\n";          print "...\n";
380    
381          $dbh->commit;          $dbh->commit;
# Line 455  foreach my $host_key (keys %{$hosts}) { Line 491  foreach my $host_key (keys %{$hosts}) {
491                                  $hostID,                                  $hostID,
492                                  $backupNum,                                  $backupNum,
493                                  $backup->{'endTime'},                                  $backup->{'endTime'},
494                                  $backup->{'type'},                                  substr($backup->{'type'},0,4),
495                                  $shareID,                                  $shareID,
496                                  $size,                                  $size,
497                          );                          );
# Line 500  sub getShareID() { Line 536  sub getShareID() {
536    
537          $sth->{insert_share} ||= $dbh->prepare(qq{          $sth->{insert_share} ||= $dbh->prepare(qq{
538                  INSERT INTO shares                  INSERT INTO shares
539                          (hostID,name,share,localpath)                          (hostID,name,share)
540                  VALUES (?,?,?,?)                  VALUES (?,?,?)
541          });          });
542    
543          my $drop_down = $hostname . '/' . $share;          my $drop_down = $hostname . '/' . $share;
544          $drop_down =~ s#//+#/#g;          $drop_down =~ s#//+#/#g;
545    
546          $sth->{insert_share}->execute($hostID,$share, $drop_down ,undef);          $sth->{insert_share}->execute($hostID,$share, $drop_down);
547          return $dbh->last_insert_id(undef,undef,'shares',undef);          return $dbh->last_insert_id(undef,undef,'shares',undef);
548  }  }
549    

Legend:
Removed from v.118  
changed lines
  Added in v.190

  ViewVC Help
Powered by ViewVC 1.1.26