/[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 41 by laperla, Mon Nov 13 20:25:49 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: Sun Nov 12 17:51:56 2000
8  # Language        : CPerl  # Language        : CPerl
9  # Update Count    : 133  # Update Count    : 148
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 382  sub open { Line 391  sub open {
391                           $self->{mode}, 0664, $DB_BTREE);                           $self->{mode}, 0664, $DB_BTREE);
392      }      }
393    }    }
394      
395    # Locking    $self->getlock($self->{mode});
396    #    
   # 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};  
   }  
   
397    $self;    $self;
398  }  }
399    
# Line 693  sub close { Line 652  sub close {
652    1;    1;
653  }  }
654    
655    # Locking
656    #
657    # We allow multiple readers to coexists.  But write access excludes
658    # all read access and vice versa.  In practice read access on tables
659    # open for writing will mostly work ;-)
660    
661    # If a "write" lock is requested, an existing "read" lock will be
662    # released.  If a "read" lock ist requested, an existing "write" lock
663    # will be released.  Requiring a lock already hold has no effect.
664    
665    sub getlock {
666      my ($self, $mode) = @_;
667    
668      # autoclean cleans on DESTROY, stale sends SIGZERO to the owner
669      #
670      my $lockmgr = LockFile::Simple->make(-autoclean => 1, -stale => 1);
671      my $file    = $self->{file} . '/records';
672      my $lockdir = $self->{file} . '/read';
673    
674      unless (-d $lockdir) {
675        mkdir $lockdir, 0755 or die "Could not mkdir $lockdir: $!";
676      }
677      
678      if ($mode & O_RDWR) {         # Get a write lock.  Release it again
679                                    # and die if there is any valid
680                                    # readers.
681        
682        # Have a write lock already
683        return $self if $self->{write_lock};
684    
685        if ($self->{read_lock}) {   # We are a becoming a writer now. So
686                                    # we release the read lock to avoid
687                                    # blocking ourselves.
688          $self->{read_lock}->release;
689          delete $self->{read_lock};
690        }
691    
692        # Get the preliminary write lock
693        $self->{write_lock} = $lockmgr->lock($self->{file} . '/write')
694          or die "Can't lock '$self->{file}/write'";
695        
696        # If we actually want to write we must check if there are any
697        # readers.  The write lock is confirmed if wen cannot find any
698        # valid readers.
699        
700        local *DIR;
701        opendir DIR, $lockdir or
702          die "Could not opendir '$lockdir': $!";
703        for my $lockfile (grep { -f "$lockdir/$_" } readdir DIR) {
704          # Check if the locks are still valid.  Since we are protected by
705          # a write lock, we could use a plain file.  But we want to use
706          # the stale testing from LockFile::Simple.
707          if (my $lck = $lockmgr->trylock("$lockdir/$lockfile")) {
708            warn "Removing stale lockfile '$lockdir/$lockfile'";
709            $lck->release;
710          } else {                  # Found an active reader, rats!
711            $self->{write_lock}->release;
712            die "Cannot write table '$file' while it's in use";
713          }
714        }
715        closedir DIR;
716      } else {
717        # Have a read lock already
718        return $self if $self->{read_lock};
719    
720        # Get the preliminary write lock to protect the directory
721        # operations.  If we already have a write lock, it will go.
722    
723        $self->{write_lock} ||= $lockmgr->lock($self->{file} . '/write')
724          or die "Can't lock '$self->{file}/write'";
725    
726        # Find a new read slot.  Maybe the plain file would be better?
727        my $id = time;
728        while (-f "$lockdir/$id.lock") { # here assume ".lock" format!
729          $id++;
730        }
731    
732        $self->{read_lock} = $lockmgr->lock("$lockdir/$id")
733          or die "Can't lock '$lockdir/$id'";
734    
735        # We are a reader now. So we release the write lock
736        $self->{write_lock}->release;
737        delete $self->{write_lock};
738      }
739      return $self;
740    }
741    
742  sub unlock {  sub unlock {
743    my $self = shift;    my $self = shift;
744    
# Line 714  sub unlock { Line 760  sub unlock {
760  sub DESTROY {  sub DESTROY {
761    my $self = shift;    my $self = shift;
762    
763    warn "Table handle destroyed without closing it first"    if ($self->{write_lock} || $self->{read_lock}) {
764      if $self->{write_lock} || $self->{read_lock};      warn "Table handle destroyed without closing it first";
765        $self->unlock;
766      }
767  }  }
768    
769  sub open_scan {  sub open_scan {

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

  ViewVC Help
Powered by ViewVC 1.1.26