/[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 136 by dpavlin, Fri Sep 23 15:04:37 2005 UTC revision 160 by dpavlin, Mon Oct 10 13:39:11 2005 UTC
# Line 270  if (($opt{i} || $opt{j} || ($index_path Line 270  if (($opt{i} || $opt{j} || ($index_path
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    
# Line 291  if ($opt{c}) { Line 292  if ($opt{c}) {
292                          ID      SERIAL          PRIMARY KEY,                          ID      SERIAL          PRIMARY KEY,
293                          hostID  INTEGER         NOT NULL references hosts(id),                          hostID  INTEGER         NOT NULL references hosts(id),
294                          name    VARCHAR(30)     NOT NULL,                          name    VARCHAR(30)     NOT NULL,
295                          share   VARCHAR(200)    NOT NULL,                          share   VARCHAR(200)    NOT NULL
                         localpath VARCHAR(200)        
296                  );                              );            
297          });          });
298    
# Line 307  if ($opt{c}) { Line 307  if ($opt{c}) {
307                    
308          $dbh->do(qq{          $dbh->do(qq{
309                  create table backups (                  create table backups (
310                            id      serial,
311                          hostID  INTEGER         NOT NULL references hosts(id),                          hostID  INTEGER         NOT NULL references hosts(id),
312                          num     INTEGER         NOT NULL,                          num     INTEGER         NOT NULL,
313                          date    integer         NOT NULL,                          date    integer         NOT NULL,
314                          type    CHAR(4)         not null,                          type    CHAR(4)         not null,
315                          shareID integer         not null references shares(id),                          shareID integer         not null references shares(id),
316                          size    bigint          not null,                          size    bigint          not null,
317                          PRIMARY KEY(hostID, num, shareID)                          inc_size bigint         not null default -1,
318                            inc_deleted boolean     default false,
319                            PRIMARY KEY(id)
320                  );                              );            
321          });          });
322    
         #do_index('backups_hostid,num_unique');  
   
   
323          $dbh->do(qq{              $dbh->do(qq{    
324                  create table files (                  create table files (
325                          ID      SERIAL          PRIMARY KEY,                            ID              SERIAL,
326                          shareID INTEGER         NOT NULL references shares(id),                          shareID         INTEGER NOT NULL references shares(id),
327                          backupNum  INTEGER      NOT NULL,                          backupNum       INTEGER NOT NULL,
328                          name       VARCHAR(255) NOT NULL,                          name            VARCHAR(255) NOT NULL,
329                          path       VARCHAR(255) NOT NULL,                          path            VARCHAR(255) NOT NULL,
330                          date       integer      NOT NULL,                          date            integer NOT NULL,
331                          type       INTEGER      NOT NULL,                          type            INTEGER NOT NULL,
332                          size       INTEGER      NOT NULL                          size            bigint  NOT NULL,
333                            primary key(id)
334                  );                  );
335          });          });
336    
337    
338          $dbh->do( qq{          $dbh->do( qq{
339                  create table archive                  create table archive (
340                  (                          id              serial,
                         id                      int not null,  
341                          dvd_nr          int not null,                          dvd_nr          int not null,
342                            total_size      bigint default -1,
343                          note            text,                          note            text,
344                          username        varchar(20) not null,                          username        varchar(20) not null,
345                          date            timestamp,                          date            timestamp default now(),
346                          primary key(id)                          primary key(id)
347                  );                        );      
348          }          }
# Line 350  if ($opt{c}) { Line 351  if ($opt{c}) {
351          $dbh->do( qq{          $dbh->do( qq{
352                  create table archive_backup                  create table archive_backup
353                  (                  (
354                          archive_id      int not null,                          archive_id      int not null references archive(id) on delete cascade,
355                          backup_id       int not null,                          backup_id       int not null references backups(id),
                         status          text,  
356                          primary key(archive_id, backup_id)                          primary key(archive_id, backup_id)
357                  );                  );
358          });          });
359    
360          $dbh->do( qq{          print "creating indexes: ";
                 create table workflows(  
                         id                      int not null,  
                         step_id         int not null,  
                         start           timestamp,  
                         stop            timestamp,  
                         username        varchar(20),  
                         archive_id      int not null,  
                         running         boolean default true,  
                         primary key(id)  
                 );  
         });  
   
         $dbh->do( qq{  
                 create table workflow_step  
                 (  
                         step_id         int not null,  
                         code            text,  
                         next_step       int,  
                         stop            boolean default false,  
                         primary key(step_id)  
                 );  
         });  
   
         $dbh->do( qq{  
                         alter table workflow_step  
                                 add constraint fk_workflow_next_step  
                                 foreign key(next_step)  
                                 references workflow_step(step_id);  
         });  
   
         $dbh->do( qq{  
                 alter table workflows  
                         add constraint fk_workflows_step_id  
                         foreign key(step_id)  
                         references workflow_step(step_id);  
         });  
           
         $dbh->do( qq{  
                 alter table workflows  
                         add constraint fk_workflows_archive_id  
                         foreign key(archive_id)  
                         references archive(id);  
         });  
   
         $dbh->do( qq{  
                 create table workflow_log  
                 (  
                         workflow_id             int not null,  
                         step_id                 int not null,  
                         date                    timestamp not null,  
                         status                  text,  
                         primary key(workflow_id, step_id)  
                 );  
         });  
   
         $dbh->do( qq{  
                 alter table workflow_log  
                         add constraint fk_workflow_log_workflow_id  
                         foreign key (workflow_id)  
                         references workflows(id);  
                 });  
           
         $dbh->do( qq{  
                 alter table workflow_log  
                         add constraint fk_workflow_log_step_id  
                         foreign key (step_id)  
                         references      workflow_step(step_id);  
                 });  
   
         print "creating indexes:";  
361    
362          foreach my $index (qw(          foreach my $index (qw(
363                  hosts_name                  hosts:name
364                  backups_hostID                  backups:hostID
365                  backups_num                  backups:num
366                  shares_hostID                  backups:shareID
367                  shares_name                  shares:hostID
368                  files_shareID                  shares:name
369                  files_path                  files:shareID
370                  files_name                  files:path
371                  files_date                  files:name
372                  files_size                  files:date
373                    files:size
374                    archive:dvd_nr
375          )) {          )) {
                 print " $index";  
376                  do_index($index);                  do_index($index);
377          }          }
378    
379            print " creating sequence: ";
380            foreach my $seq (qw/dvd_nr/) {
381                    print "$seq ";
382                    $dbh->do( qq{ CREATE SEQUENCE $seq } );
383            }
384    
385    
386          print "...\n";          print "...\n";
387    
388          $dbh->commit;          $dbh->commit;
# Line 604  sub getShareID() { Line 543  sub getShareID() {
543    
544          $sth->{insert_share} ||= $dbh->prepare(qq{          $sth->{insert_share} ||= $dbh->prepare(qq{
545                  INSERT INTO shares                  INSERT INTO shares
546                          (hostID,name,share,localpath)                          (hostID,name,share)
547                  VALUES (?,?,?,?)                  VALUES (?,?,?)
548          });          });
549    
550          my $drop_down = $hostname . '/' . $share;          my $drop_down = $hostname . '/' . $share;
551          $drop_down =~ s#//+#/#g;          $drop_down =~ s#//+#/#g;
552    
553          $sth->{insert_share}->execute($hostID,$share, $drop_down ,undef);          $sth->{insert_share}->execute($hostID,$share, $drop_down);
554          return $dbh->last_insert_id(undef,undef,'shares',undef);          return $dbh->last_insert_id(undef,undef,'shares',undef);
555  }  }
556    

Legend:
Removed from v.136  
changed lines
  Added in v.160

  ViewVC Help
Powered by ViewVC 1.1.26