2001-05-13 00:25:19 +00:00
|
|
|
#
|
2012-05-21 11:12:37 +00:00
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
2001-05-13 00:25:19 +00:00
|
|
|
|
|
|
|
package mozLock;
|
|
|
|
|
|
|
|
use strict;
|
2001-05-14 08:32:58 +00:00
|
|
|
use IO::File;
|
|
|
|
use Cwd;
|
2001-05-13 00:25:19 +00:00
|
|
|
|
|
|
|
BEGIN {
|
|
|
|
use Exporter ();
|
|
|
|
use vars qw ($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
|
|
|
|
|
|
|
|
$VERSION = 1.00;
|
|
|
|
@ISA = qw(Exporter);
|
|
|
|
@EXPORT = qw(&mozLock &mozUnlock);
|
|
|
|
%EXPORT_TAGS = ( );
|
|
|
|
@EXPORT_OK = qw();
|
|
|
|
}
|
|
|
|
|
|
|
|
my $lockcounter = 0;
|
2001-09-12 06:34:06 +00:00
|
|
|
my $locklimit = 100;
|
|
|
|
my $locksleep = 0.1;
|
2001-05-14 08:32:58 +00:00
|
|
|
my %lockhash;
|
|
|
|
|
|
|
|
# File::Spec->rel2abs appears to be broken in ActiveState Perl 5.22
|
|
|
|
# so roll our own
|
|
|
|
sub priv_abspath($) {
|
|
|
|
my ($file) = @_;
|
|
|
|
my ($dir, $out);
|
|
|
|
my (@inlist, @outlist);
|
|
|
|
|
|
|
|
# Force files to have unix paths.
|
|
|
|
$file =~ s/\\/\//g;
|
|
|
|
|
|
|
|
# Check if file is already absolute
|
2002-04-01 04:43:40 +00:00
|
|
|
if ($file =~ m/^\// || substr($file, 1, 1) eq ':') {
|
2001-05-14 08:32:58 +00:00
|
|
|
return $file;
|
|
|
|
}
|
|
|
|
$out = cwd . "/$file";
|
|
|
|
|
|
|
|
# Do what File::Spec->canonpath should do
|
|
|
|
@inlist = split(/\//, $out);
|
|
|
|
foreach $dir (@inlist) {
|
|
|
|
if ($dir eq '..') {
|
|
|
|
pop @outlist;
|
|
|
|
} else {
|
|
|
|
push @outlist, $dir;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$out = join '/',@outlist;
|
|
|
|
return $out;
|
|
|
|
}
|
2001-05-13 00:25:19 +00:00
|
|
|
|
|
|
|
sub mozLock($) {
|
2001-05-14 08:32:58 +00:00
|
|
|
my ($inlockfile) = @_;
|
|
|
|
my ($lockhandle, $lockfile);
|
|
|
|
$lockfile = priv_abspath($inlockfile);
|
2001-05-14 09:56:03 +00:00
|
|
|
#print "LOCK: $lockfile\n";
|
2001-05-13 00:25:19 +00:00
|
|
|
$lockcounter = 0;
|
2001-05-14 09:56:03 +00:00
|
|
|
$lockhandle = new IO::File || die "Could not create filehandle for $lockfile: $!\n";
|
|
|
|
while ($lockcounter < $locklimit) {
|
|
|
|
if (! -e $lockfile) {
|
|
|
|
open($lockhandle, ">$lockfile") || die "$lockfile: $!\n";
|
|
|
|
$lockhash{$lockfile} = $lockhandle;
|
|
|
|
last;
|
|
|
|
}
|
2001-05-13 00:25:19 +00:00
|
|
|
$lockcounter++;
|
2001-09-12 06:34:06 +00:00
|
|
|
select(undef,undef,undef, $locksleep);
|
2001-05-14 09:56:03 +00:00
|
|
|
}
|
|
|
|
if ($lockcounter >= $locklimit) {
|
|
|
|
undef $lockhandle;
|
|
|
|
die "$0: Could not get lockfile $lockfile.\nRemove $lockfile to clear up\n";
|
2001-05-13 00:25:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
sub mozUnlock($) {
|
2001-05-14 08:32:58 +00:00
|
|
|
my ($inlockfile) = @_;
|
|
|
|
my ($lockhandle, $lockfile);
|
|
|
|
#$lockfile = File::Spec->rel2abs($inlockfile);
|
|
|
|
$lockfile = priv_abspath($inlockfile);
|
2001-05-13 00:25:19 +00:00
|
|
|
#print "UNLOCK: $lockfile\n";
|
2001-05-14 08:32:58 +00:00
|
|
|
$lockhandle = $lockhash{$lockfile};
|
|
|
|
if (defined($lockhandle)) {
|
|
|
|
close($lockhandle);
|
|
|
|
$lockhash{$lockfile} = undef;
|
|
|
|
unlink($lockfile);
|
|
|
|
} else {
|
|
|
|
print "WARNING: $0: lockhandle for $lockfile not defined. Lock may not be removed.\n";
|
|
|
|
}
|
2001-05-13 00:25:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
END {};
|
|
|
|
|
|
|
|
1;
|