Skip to content

Commit 17c5db9

Browse files
committed
only remove locked file after release for lock file created with factory
1 parent a9cd22e commit 17c5db9

File tree

3 files changed

+14
-8
lines changed

3 files changed

+14
-8
lines changed

spec/TH/Lock/FileLockSpec.php

+6-2
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,6 @@ public function it_should_release_a_lock()
6464
$this->acquire(FileLock::SHARED);
6565
$this->release();
6666

67-
touch($this->lock_file);
68-
6967
if (!flock(fopen($this->lock_file, 'r'), LOCK_EX|LOCK_NB)) {
7068
throw new Exception('Lock file was not released');
7169
}
@@ -81,6 +79,8 @@ public function it_should_throw_if_it_cannot_lock()
8179

8280
public function it_remove_its_lock_file_if_not_locked()
8381
{
82+
$this->beConstructedWith($this->lock_file, null, null, true);
83+
8484
$this->acquire();
8585
$this->release();
8686

@@ -91,6 +91,8 @@ public function it_remove_its_lock_file_if_not_locked()
9191

9292
public function it_does_not_remove_its_lock_file_if_still_locked()
9393
{
94+
$this->beConstructedWith($this->lock_file, null, null, true);
95+
9496
touch($this->lock_file);
9597
flock(fopen($this->lock_file, 'r'), LOCK_SH|LOCK_NB);
9698

@@ -104,6 +106,8 @@ public function it_does_not_remove_its_lock_file_if_still_locked()
104106

105107
public function it_can_acquire_then_release_and_acquire_again()
106108
{
109+
$this->beConstructedWith($this->lock_file, null, null, true);
110+
107111
$this->acquire();
108112
$this->release();
109113
$this->acquire();

src/FileFactory.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public function create($resource, $owner = null)
3131

3232
$path = $this->lock_dir.'/'.hash($this->hash_algo, serialize($resource)).'.lock';
3333

34-
$lock = new FileLock($path, $resource, $owner);
34+
$lock = new FileLock($path, $resource, $owner, true);
3535

3636
$lock->setLogger($this->logger);
3737

src/FileLock.php

+7-5
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,14 @@ class FileLock implements Lock
1818
private $identifier;
1919
private $owner;
2020
private $fh;
21+
private $remove_on_release;
2122

22-
public function __construct($lock_file, $identifier = null, $owner = null)
23+
public function __construct($lock_file, $identifier = null, $owner = null, $remove_on_release = false)
2324
{
24-
$this->lock_file = $lock_file;
25-
$this->identifier = $identifier?:$lock_file;
26-
$this->owner = $owner === null ? '' : $owner.': ';
25+
$this->lock_file = $lock_file;
26+
$this->identifier = $identifier?:$lock_file;
27+
$this->owner = $owner === null ? '' : $owner.': ';
28+
$this->remove_on_release = $remove_on_release;
2729

2830
$this->logger = new NullLogger;
2931
}
@@ -63,7 +65,7 @@ public function release()
6365
return;
6466
}
6567

66-
if(flock($this->fh, LOCK_EX)) {
68+
if($this->remove_on_release && flock($this->fh, LOCK_EX)) {
6769
fclose($this->fh);
6870
$this->fh = null;
6971
unlink($this->lock_file);

0 commit comments

Comments
 (0)