Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added lock implementor that uses mkdir #27

Merged
merged 1 commit into from
May 31, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
90 changes: 90 additions & 0 deletions src/NinjaMutex/Lock/DirectoryLock.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,90 @@
<?php
/**
* This file is part of ninja-mutex.
*
* (C) Kamil Dziedzic <arvenil@klecza.pl>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace NinjaMutex\Lock;

/**
* Lock implementor using mkdir
*
* @author Jan Voracek <jan@voracek.net>
*/
class DirectoryLock extends LockAbstract
{
protected $dirname;

/**
* @param string $dirname
*/
public function __construct($dirname)
{
parent::__construct();

$this->dirname = $dirname;
}

/**
* @param string $name
* @param bool $blocking
* @return bool
*/
protected function getLock($name, $blocking)
{
while (!@mkdir($this->getDirectoryPath($name))) {
if (!$blocking) {
return false;
}

usleep(rand(5000, 20000));
}

return true;
}

/**
* Release lock
*
* @param string $name name of lock
* @return bool
*/
public function releaseLock($name)
{
if (isset($this->locks[$name])) {
rmdir($this->getDirectoryPath($name));
unset($this->locks[$name]);

return true;
}

return false;
}

/**
* @param string $name
* @return string
*/
protected function getDirectoryPath($name)
{
return $this->dirname . DIRECTORY_SEPARATOR . $name . '.lock';
}

/**
* Check if lock is locked
*
* @param string $name name of lock
* @return bool
*/
public function isLocked($name)
{
if ($this->acquireLock($name, false)) {
return !$this->releaseLock($name);
}

return true;
}
}
19 changes: 19 additions & 0 deletions tests/NinjaMutex/AbstractTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
*/
namespace NinjaMutex;

use NinjaMutex\Lock\DirectoryLock;
use NinjaMutex\Lock\FlockLock;
use NinjaMutex\Lock\MemcacheLock;
use NinjaMutex\Lock\MemcachedLock;
Expand Down Expand Up @@ -59,12 +60,14 @@ public function lockImplementorProvider()
$data = array(
// Just mocks
$this->provideFlockMockLock(),
$this->provideDirectoryMockLock(),
$this->provideMemcacheMockLock(),
$this->provideMemcachedMockLock(),
$this->provideMysqlMockLock(),
$this->providePredisRedisMockLock(),
// Real locks
$this->provideFlockLock(),
$this->provideDirectoryLock(),
array($memcacheLockFabric->create()),
array($memcachedLockFabric->create()),
$this->provideMysqlLock(),
Expand Down Expand Up @@ -133,6 +136,14 @@ protected function provideFlockMockLock()
return array(new FlockLock(vfs\vfsStream::url('nfs/')));
}

/**
* @return array
*/
protected function provideDirectoryMockLock()
{
return array(new DirectoryLock(vfs\vfsStream::url('nfs/')));
}

/**
* @return array
*/
Expand All @@ -159,6 +170,14 @@ protected function provideFlockLock()
return array(new FlockLock('/tmp/mutex/'));
}

/**
* @return array
*/
protected function provideDirectoryLock()
{
return array(new DirectoryLock('/tmp/mutex/'));
}

/**
* @return array
*/
Expand Down