/[wait]/trunk/lib/WAIT/Table.pm
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/lib/WAIT/Table.pm

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

revision 31 by laperla, Sun Nov 12 01:26:10 2000 UTC revision 42 by ulpfr, Wed Nov 15 08:54:25 2000 UTC
# Line 4  Line 4 
4  # Author          : Ulrich Pfeifer  # Author          : Ulrich Pfeifer
5  # Created On      : Thu Aug  8 13:05:10 1996  # Created On      : Thu Aug  8 13:05:10 1996
6  # Last Modified By: Ulrich Pfeifer  # Last Modified By: Ulrich Pfeifer
7  # Last Modified On: Fri May 19 14:51:14 2000  # Last Modified On: Tue Nov 14 16:19:17 2000
8  # Language        : CPerl  # Language        : CPerl
9  # Update Count    : 133  # Update Count    : 149
10  # Status          : Unknown, Use with caution!  # Status          : Unknown, Use with caution!
11  #  #
12  # Copyright (c) 1996-1997, Ulrich Pfeifer  # Copyright (c) 1996-1997, Ulrich Pfeifer
# Line 165  sub new { Line 165  sub new {
165      croak "Could not 'mkdir $self->{file}': $!\n";      croak "Could not 'mkdir $self->{file}': $!\n";
166    }    }
167    
   my $lockmgr = LockFile::Simple->make(-autoclean => 1);  
   # aquire a write lock  
   $self->{write_lock} = $lockmgr->lock($self->{file} . '/write')  
     or die "Can't lock '$self->{file}/write'";  
   
168    $self->{djk}      = $parm{djk}      if defined $parm{djk};    $self->{djk}      = $parm{djk}      if defined $parm{djk};
169    $self->{layout}   = $parm{layout} || new WAIT::Parse::Base;    $self->{layout}   = $parm{layout} || new WAIT::Parse::Base;
170    $self->{access}   = $parm{access} if defined $parm{access};    $self->{access}   = $parm{access} if defined $parm{access};
# Line 178  sub new { Line 173  sub new {
173    $self->{indexes}  = {};    $self->{indexes}  = {};
174    
175    bless $self, $type;    bless $self, $type;
176    
177      # Checking for readers is not necessary, but let's go with the
178      # generic method.
179      $self->getlock(O_RDWR|O_CREAT); # dies when failing
180      
181    # Call create_index() and create_index() for compatibility    # Call create_index() and create_index() for compatibility
182    for (@{$self->{keyset}||[]}) {    for (@{$self->{keyset}||[]}) {
183      #carp "Specification of indexes at table create time is deprecated";      #carp "Specification of indexes at table create time is deprecated";
# Line 323  Must be called via C<WAIT::Database::dro Line 323  Must be called via C<WAIT::Database::dro
323    
324  sub drop {  sub drop {
325    my $self = shift;    my $self = shift;
326    
327      unless ($self->{write_lock}){
328        warn "Cannot drop table without write lock. Nothing done";
329        return;
330      }
331      
332    if ((caller)[0] eq 'WAIT::Database') { # database knows about this    if ((caller)[0] eq 'WAIT::Database') { # database knows about this
333      $self->close;               # just make sure      $self->close;               # just make sure
334    
335      my $file = $self->{file};      my $file = $self->{file};
336    
337      for (values %{$self->{indexes}}) {      for (values %{$self->{indexes}}) {
338        $_->drop;        $_->drop;
339      }      }
340      unlink "$file/records";      unlink "$file/records";
341        rmdir "$file/read" or warn "Could not rmdir '$file/read'";
342    
343      # $self->unlock;      # $self->unlock;
344      ! (!-e $file or rmdir $file);      ! (!-e $file or rmdir $file);
345    } else {    } else {
# Line 372  sub open { Line 381  sub open {
381      }      }
382      require WAIT::InvertedIndex;      require WAIT::InvertedIndex;
383    }    }
384    
385      $self->getlock($self->{mode});
386    
387    unless (defined $self->{dbh}) {    unless (defined $self->{dbh}) {
388      if ($USE_RECNO) {      if ($USE_RECNO) {
389        $self->{dbh} = tie(@{$self->{db}}, 'DB_File', $file,        $self->{dbh} = tie(@{$self->{db}}, 'DB_File', $file,
# Line 382  sub open { Line 394  sub open {
394                           $self->{mode}, 0664, $DB_BTREE);                           $self->{mode}, 0664, $DB_BTREE);
395      }      }
396    }    }
397      
398    # Locking    
   #  
   # We allow multiple readers to coexists.  But write access excludes  
   # all read access vice versa.  In practice read access on tables  
   # open for writing will mostly work ;-)  
   
   my $lockmgr = LockFile::Simple->make(-autoclean => 1);  
   
   # aquire a write lock. We might hold one acquired in create() already  
   $self->{write_lock} ||= $lockmgr->lock($self->{file} . '/write')  
     or die "Can't lock '$self->{file}/write'";  
   
   my $lockdir = $self->{file} . '/read';  
   unless (-d $lockdir) {  
     mkdir $lockdir, 0755 or die "Could not mkdir $lockdir: $!";  
   }  
   
   if ($self->{mode} & O_RDWR) {  
     # this is a hack.  We do not check for reopening ...  
     return $self if $self->{write_lock};  
       
     # If we actually want to write we must check if there are any readers  
     local *DIR;  
     opendir DIR, $lockdir or  
       die "Could not opendir '$lockdir': $!";  
     for my $lockfile (grep { -f "$lockdir/$_" } readdir DIR) {  
       # check if the locks are still valid.  
       # Since we are protected by a write lock, we could use a pline file.  
       # But we want to use the stale testing from LockFile::Simple.  
       if (my $lck = $lockmgr->trylock("$lockdir/$lockfile")) {  
         warn "Removing stale lockfile '$lockdir/$lockfile'";  
         $lck->release;  
       } else {  
         $self->{write_lock}->release;  
         die "Cannot write table '$file' while it's in use";  
       }  
     }  
     closedir DIR;  
   } else {  
     # this is a hack.  We do not check for reopening ...  
     return $self if $self->{read_lock};  
       
     # We are a reader. So we release the write lock  
     my $id = time;  
     while (-f "$lockdir/$id.lock") { # here assume ".lock" format!  
       $id++;  
     }  
     $self->{read_lock} = $lockmgr->lock("$lockdir/$id");  
     $self->{write_lock}->release;  
     delete $self->{write_lock};  
   }  
   
399    $self;    $self;
400  }  }
401    
# Line 693  sub close { Line 654  sub close {
654    1;    1;
655  }  }
656    
657    # Locking
658    #
659    # We allow multiple readers to coexists.  But write access excludes
660    # all read access and vice versa.  In practice read access on tables
661    # open for writing will mostly work ;-)
662    
663    # If a "write" lock is requested, an existing "read" lock will be
664    # released.  If a "read" lock ist requested, an existing "write" lock
665    # will be released.  Requiring a lock already hold has no effect.
666    
667    sub getlock {
668      my ($self, $mode) = @_;
669    
670      # autoclean cleans on DESTROY, stale sends SIGZERO to the owner
671      #
672      my $lockmgr = LockFile::Simple->make(-autoclean => 1, -stale => 1);
673      my $file    = $self->{file} . '/records';
674      my $lockdir = $self->{file} . '/read';
675    
676      unless (-d $lockdir) {
677        mkdir $lockdir, 0755 or die "Could not mkdir $lockdir: $!";
678      }
679      
680      if ($mode & O_RDWR) {         # Get a write lock.  Release it again
681                                    # and die if there is any valid
682                                    # readers.
683        
684        # Have a write lock already
685        return $self if $self->{write_lock};
686    
687        if ($self->{read_lock}) {   # We are a becoming a writer now. So
688                                    # we release the read lock to avoid
689                                    # blocking ourselves.
690          $self->{read_lock}->release;
691          delete $self->{read_lock};
692        }
693    
694        # Get the preliminary write lock
695        $self->{write_lock} = $lockmgr->lock($self->{file} . '/write')
696          or die "Can't lock '$self->{file}/write'";
697        
698        # If we actually want to write we must check if there are any
699        # readers.  The write lock is confirmed if wen cannot find any
700        # valid readers.
701        
702        local *DIR;
703        opendir DIR, $lockdir or
704          die "Could not opendir '$lockdir': $!";
705        for my $lockfile (grep { -f "$lockdir/$_" } readdir DIR) {
706          # Check if the locks are still valid.  Since we are protected by
707          # a write lock, we could use a plain file.  But we want to use
708          # the stale testing from LockFile::Simple.
709          if (my $lck = $lockmgr->trylock("$lockdir/$lockfile")) {
710            warn "Removing stale lockfile '$lockdir/$lockfile'";
711            $lck->release;
712          } else {                  # Found an active reader, rats!
713            $self->{write_lock}->release;
714            die "Cannot write table '$file' while it's in use";
715          }
716        }
717        closedir DIR;
718      } else {
719        # Have a read lock already
720        return $self if $self->{read_lock};
721    
722        # Get the preliminary write lock to protect the directory
723        # operations.  If we already have a write lock, it will go.
724    
725        $self->{write_lock} ||= $lockmgr->lock($self->{file} . '/write')
726          or die "Can't lock '$self->{file}/write'";
727    
728        # Find a new read slot.  Maybe the plain file would be better?
729        my $id = time;
730        while (-f "$lockdir/$id.lock") { # here assume ".lock" format!
731          $id++;
732        }
733    
734        $self->{read_lock} = $lockmgr->lock("$lockdir/$id")
735          or die "Can't lock '$lockdir/$id'";
736    
737        # We are a reader now. So we release the write lock
738        $self->{write_lock}->release;
739        delete $self->{write_lock};
740      }
741      return $self;
742    }
743    
744  sub unlock {  sub unlock {
745    my $self = shift;    my $self = shift;
746    
# Line 714  sub unlock { Line 762  sub unlock {
762  sub DESTROY {  sub DESTROY {
763    my $self = shift;    my $self = shift;
764    
765    warn "Table handle destroyed without closing it first"    if ($self->{write_lock} || $self->{read_lock}) {
766      if $self->{write_lock} || $self->{read_lock};      warn "Table handle destroyed without closing it first";
767        $self->unlock;
768      }
769  }  }
770    
771  sub open_scan {  sub open_scan {

Legend:
Removed from v.31  
changed lines
  Added in v.42

  ViewVC Help
Powered by ViewVC 1.1.26