| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
# Copyrights 2001-2019 by [Mark Overmeer]. |
|
2
|
|
|
|
|
|
|
# For other contributors see ChangeLog. |
|
3
|
|
|
|
|
|
|
# See the manual pages for details on the licensing terms. |
|
4
|
|
|
|
|
|
|
# Pod stripped from pm file by OODoc 2.02. |
|
5
|
|
|
|
|
|
|
# This code is part of distribution Mail-Box. Meta-POD processed with |
|
6
|
|
|
|
|
|
|
# OODoc into POD and HTML manual-pages. See README.md |
|
7
|
|
|
|
|
|
|
# Copyright Mark Overmeer. Licensed under the same terms as Perl itself. |
|
8
|
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
package Mail::Box::Locker::POSIX; |
|
10
|
2
|
|
|
2
|
|
1619
|
use vars '$VERSION'; |
|
|
2
|
|
|
|
|
16
|
|
|
|
2
|
|
|
|
|
99
|
|
|
11
|
|
|
|
|
|
|
$VERSION = '3.008'; |
|
12
|
|
|
|
|
|
|
|
|
13
|
2
|
|
|
2
|
|
9
|
use base 'Mail::Box::Locker'; |
|
|
2
|
|
|
|
|
7
|
|
|
|
2
|
|
|
|
|
453
|
|
|
14
|
|
|
|
|
|
|
|
|
15
|
2
|
|
|
2
|
|
9
|
use strict; |
|
|
2
|
|
|
|
|
5
|
|
|
|
2
|
|
|
|
|
88
|
|
|
16
|
2
|
|
|
2
|
|
9
|
use warnings; |
|
|
2
|
|
|
|
|
3
|
|
|
|
2
|
|
|
|
|
38
|
|
|
17
|
|
|
|
|
|
|
|
|
18
|
2
|
|
|
2
|
|
38
|
use Fcntl; |
|
|
2
|
|
|
|
|
5
|
|
|
|
2
|
|
|
|
|
415
|
|
|
19
|
2
|
|
|
2
|
|
11
|
use IO::File; |
|
|
2
|
|
|
|
|
4
|
|
|
|
2
|
|
|
|
|
253
|
|
|
20
|
2
|
|
|
2
|
|
11
|
use Errno qw/EAGAIN/; |
|
|
2
|
|
|
|
|
4
|
|
|
|
2
|
|
|
|
|
1182
|
|
|
21
|
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
# fcntl() should not be used without XS: the below is sensitive |
|
23
|
|
|
|
|
|
|
# for changes in the structure. However, at the moment it seems |
|
24
|
|
|
|
|
|
|
# there are only two options: either SysV-style or BSD-style |
|
25
|
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
my $pack_pattern = $^O =~ /bsd|darwin/i ? '@20 s @256' : 's @256'; |
|
27
|
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
sub init($) |
|
30
|
1
|
|
|
1
|
0
|
15
|
{ my ($self, $args) = @_; |
|
31
|
1
|
50
|
|
|
|
3
|
$args->{file} = $args->{posix_file} if $args->{posix_file}; |
|
32
|
1
|
|
|
|
|
8
|
$self->SUPER::init($args); |
|
33
|
|
|
|
|
|
|
} |
|
34
|
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
sub name() {'POSIX'} |
|
36
|
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
sub _try_lock($) |
|
38
|
1
|
|
|
1
|
|
3
|
{ my ($self, $file) = @_; |
|
39
|
1
|
|
|
|
|
6
|
my $p = pack $pack_pattern, F_WRLCK; |
|
40
|
1
|
|
33
|
|
|
21
|
$? = fcntl($file, F_SETLK, $p) || ($!+0); |
|
41
|
1
|
|
|
|
|
5
|
$?==0; |
|
42
|
|
|
|
|
|
|
} |
|
43
|
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
sub _unlock($) |
|
45
|
1
|
|
|
1
|
|
3
|
{ my ($self, $file) = @_; |
|
46
|
1
|
|
|
|
|
4
|
my $p = pack $pack_pattern, F_UNLCK; |
|
47
|
1
|
|
|
|
|
11
|
fcntl $file, F_SETLK, $p; |
|
48
|
1
|
|
|
|
|
3
|
$self; |
|
49
|
|
|
|
|
|
|
} |
|
50
|
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
sub lock() |
|
54
|
2
|
|
|
2
|
1
|
1302
|
{ my $self = shift; |
|
55
|
|
|
|
|
|
|
|
|
56
|
2
|
100
|
|
|
|
9
|
if($self->hasLock) |
|
57
|
1
|
|
|
|
|
3
|
{ my $folder = $self->folder; |
|
58
|
1
|
|
|
|
|
5
|
$self->log(WARNING => "Folder $folder already lockf'd"); |
|
59
|
1
|
|
|
|
|
40
|
return 1; |
|
60
|
|
|
|
|
|
|
} |
|
61
|
|
|
|
|
|
|
|
|
62
|
1
|
|
|
|
|
7
|
my $filename = $self->filename; |
|
63
|
1
|
|
|
|
|
3
|
my $folder = $self->folder; |
|
64
|
|
|
|
|
|
|
|
|
65
|
1
|
|
|
|
|
8
|
my $file = IO::File->new($filename, 'r+'); |
|
66
|
1
|
50
|
|
|
|
119
|
unless(defined $file) |
|
67
|
0
|
|
|
|
|
0
|
{ $self->log(ERROR => |
|
68
|
|
|
|
|
|
|
"Unable to open POSIX lock file $filename for $folder: $!"); |
|
69
|
0
|
|
|
|
|
0
|
return 0; |
|
70
|
|
|
|
|
|
|
} |
|
71
|
|
|
|
|
|
|
|
|
72
|
1
|
|
|
|
|
8
|
my $timeout = $self->timeout; |
|
73
|
1
|
50
|
|
|
|
5
|
my $end = $timeout eq 'NOTIMEOUT' ? -1 : $timeout; |
|
74
|
|
|
|
|
|
|
|
|
75
|
1
|
|
|
|
|
1
|
while(1) |
|
76
|
1
|
50
|
|
|
|
4
|
{ if($self->_try_lock($file)) |
|
77
|
1
|
|
|
|
|
4
|
{ $self->{MBLF_filehandle} = $file; |
|
78
|
1
|
|
|
|
|
7
|
return $self->SUPER::lock; |
|
79
|
|
|
|
|
|
|
} |
|
80
|
|
|
|
|
|
|
|
|
81
|
0
|
0
|
|
|
|
0
|
unless($!==EAGAIN) |
|
82
|
0
|
|
|
|
|
0
|
{ $self->log(ERROR => |
|
83
|
|
|
|
|
|
|
"Will never get a POSIX lock on $filename for $folder: $!"); |
|
84
|
0
|
|
|
|
|
0
|
last; |
|
85
|
|
|
|
|
|
|
} |
|
86
|
|
|
|
|
|
|
|
|
87
|
0
|
0
|
|
|
|
0
|
last unless --$end; |
|
88
|
0
|
|
|
|
|
0
|
sleep 1; |
|
89
|
|
|
|
|
|
|
} |
|
90
|
|
|
|
|
|
|
|
|
91
|
0
|
|
|
|
|
0
|
return 0; |
|
92
|
|
|
|
|
|
|
} |
|
93
|
|
|
|
|
|
|
|
|
94
|
|
|
|
|
|
|
|
|
95
|
|
|
|
|
|
|
sub isLocked() |
|
96
|
0
|
|
|
0
|
1
|
0
|
{ my $self = shift; |
|
97
|
0
|
|
|
|
|
0
|
my $filename = $self->filename; |
|
98
|
|
|
|
|
|
|
|
|
99
|
0
|
|
|
|
|
0
|
my $file = IO::File->new($filename, "r"); |
|
100
|
0
|
0
|
|
|
|
0
|
unless($file) |
|
101
|
0
|
|
|
|
|
0
|
{ my $folder = $self->folder; |
|
102
|
0
|
|
|
|
|
0
|
$self->log(ERROR => "Unable to check lock file $filename for $folder: $!"); |
|
103
|
0
|
|
|
|
|
0
|
return 0; |
|
104
|
|
|
|
|
|
|
} |
|
105
|
|
|
|
|
|
|
|
|
106
|
0
|
0
|
|
|
|
0
|
$self->_try_lock($file)==0 or return 0; |
|
107
|
0
|
|
|
|
|
0
|
$self->_unlock($file); |
|
108
|
0
|
|
|
|
|
0
|
$file->close; |
|
109
|
|
|
|
|
|
|
|
|
110
|
0
|
|
|
|
|
0
|
$self->SUPER::unlock; |
|
111
|
0
|
|
|
|
|
0
|
1; |
|
112
|
|
|
|
|
|
|
} |
|
113
|
|
|
|
|
|
|
|
|
114
|
|
|
|
|
|
|
sub unlock() |
|
115
|
1
|
|
|
1
|
1
|
345
|
{ my $self = shift; |
|
116
|
|
|
|
|
|
|
|
|
117
|
|
|
|
|
|
|
$self->_unlock(delete $self->{MBLF_filehandle}) |
|
118
|
1
|
50
|
|
|
|
3
|
if $self->hasLock; |
|
119
|
|
|
|
|
|
|
|
|
120
|
1
|
|
|
|
|
18
|
$self->SUPER::unlock; |
|
121
|
1
|
|
|
|
|
2
|
$self; |
|
122
|
|
|
|
|
|
|
} |
|
123
|
|
|
|
|
|
|
|
|
124
|
|
|
|
|
|
|
1; |