# Copyrights 2001-2020 by [Mark Overmeer]. # For other contributors see ChangeLog. # See the manual pages for details on the licensing terms. # Pod stripped from pm file by OODoc 2.02. # This code is part of distribution Mail-Box. Meta-POD processed with # OODoc into POD and HTML manual-pages. See README.md # Copyright Mark Overmeer. Licensed under the same terms as Perl itself. package Mail::Box::Locker::POSIX; use vars '$VERSION'; $VERSION = '3.009'; use base 'Mail::Box::Locker'; use strict; use warnings; use Fcntl; use IO::File; use Errno qw/EAGAIN/; # fcntl() should not be used without XS: the below is sensitive # for changes in the structure. However, at the moment it seems # there are only two options: either SysV-style or BSD-style my $pack_pattern = $^O =~ /bsd|darwin/i ? '@20 s @256' : 's @256'; sub init($) { my ($self, $args) = @_; $args->{file} = $args->{posix_file} if $args->{posix_file}; $self->SUPER::init($args); } sub name() {'POSIX'} sub _try_lock($) { my ($self, $file) = @_; my $p = pack $pack_pattern, F_WRLCK; $? = fcntl($file, F_SETLK, $p) || ($!+0); $?==0; } sub _unlock($) { my ($self, $file) = @_; my $p = pack $pack_pattern, F_UNLCK; fcntl $file, F_SETLK, $p; $self; } sub lock() { my $self = shift; if($self->hasLock) { my $folder = $self->folder; $self->log(WARNING => "Folder $folder already lockf'd"); return 1; } my $filename = $self->filename; my $folder = $self->folder; my $file = IO::File->new($filename, 'r+'); unless(defined $file) { $self->log(ERROR => "Unable to open POSIX lock file $filename for $folder: $!"); return 0; } my $timeout = $self->timeout; my $end = $timeout eq 'NOTIMEOUT' ? -1 : $timeout; while(1) { if($self->_try_lock($file)) { $self->{MBLF_filehandle} = $file; return $self->SUPER::lock; } unless($!==EAGAIN) { $self->log(ERROR => "Will never get a POSIX lock on $filename for $folder: $!"); last; } last unless --$end; sleep 1; } return 0; } sub isLocked() { my $self = shift; my $filename = $self->filename; my $file = IO::File->new($filename, "r"); unless($file) { my $folder = $self->folder; $self->log(ERROR => "Unable to check lock file $filename for $folder: $!"); return 0; } $self->_try_lock($file)==0 or return 0; $self->_unlock($file); $file->close; $self->SUPER::unlock; 1; } sub unlock() { my $self = shift; $self->_unlock(delete $self->{MBLF_filehandle}) if $self->hasLock; $self->SUPER::unlock; $self; } 1;