You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
100 lines
2.6 KiB
100 lines
2.6 KiB
12 years ago
|
<?php
|
||
12 years ago
|
/**
|
||
|
* @link http://www.yiiframework.com/
|
||
|
* @copyright Copyright (c) 2008 Yii Software LLC
|
||
|
* @license http://www.yiiframework.com/license/
|
||
|
*/
|
||
12 years ago
|
|
||
|
namespace yii\mutex\unix;
|
||
|
|
||
|
use Yii;
|
||
|
use yii\base\InvalidConfigException;
|
||
|
|
||
12 years ago
|
/**
|
||
|
* @author resurtm <resurtm@gmail.com>
|
||
|
* @since 2.0
|
||
|
*/
|
||
12 years ago
|
class Mutex extends \yii\mutex\Mutex
|
||
|
{
|
||
12 years ago
|
/**
|
||
|
* @var resource[] stores all opened lock files. Keys are lock names and values are file handles.
|
||
|
*/
|
||
12 years ago
|
private $_files = array();
|
||
|
|
||
|
|
||
12 years ago
|
/**
|
||
|
* Initializes mutex component implementation dedicated for UNIX, GNU/Linux, Mac OS X, and other UNIX-like
|
||
|
* operating systems.
|
||
|
* @throws InvalidConfigException
|
||
|
*/
|
||
12 years ago
|
public function init()
|
||
|
{
|
||
12 years ago
|
if (stripos(php_uname('s'), 'win') === 0) {
|
||
|
throw new InvalidConfigException('');
|
||
|
}
|
||
12 years ago
|
}
|
||
|
|
||
12 years ago
|
/**
|
||
|
* This method should be extended by concrete mutex implementations. Acquires lock by given name.
|
||
|
* @param string $name of the lock to be acquired.
|
||
|
* @param integer $timeout to wait for lock to become released.
|
||
|
* @return boolean acquiring result.
|
||
|
*/
|
||
12 years ago
|
protected function acquire($name, $timeout = 0)
|
||
|
{
|
||
|
$file = fopen(Yii::$app->getRuntimePath() . '/mutex.' . md5($name) . '.lock', 'w+');
|
||
|
if ($file === false) {
|
||
|
return false;
|
||
|
}
|
||
|
$waitTime = 0;
|
||
|
while (!flock($file, LOCK_EX | LOCK_NB)) {
|
||
|
$waitTime++;
|
||
|
if ($waitTime > $timeout) {
|
||
|
fclose($file);
|
||
|
return false;
|
||
|
}
|
||
|
sleep(1);
|
||
|
}
|
||
|
$this->_files[$name] = $file;
|
||
|
return true;
|
||
|
}
|
||
|
|
||
12 years ago
|
/**
|
||
|
* This method should be extended by concrete mutex implementations. Releases lock by given name.
|
||
|
* @param string $name of the lock to be released.
|
||
|
* @return boolean release result.
|
||
|
*/
|
||
12 years ago
|
protected function release($name)
|
||
|
{
|
||
|
if (!isset($this->_files[$name]) || !flock($this->_files[$name], LOCK_UN)) {
|
||
|
return false;
|
||
|
} else {
|
||
|
fclose($this->_files[$name]);
|
||
|
unset($this->_files[$name]);
|
||
|
return true;
|
||
|
}
|
||
|
}
|
||
|
|
||
12 years ago
|
/**
|
||
|
* This method may optionally be extended by concrete mutex implementations. Checks whether lock has been
|
||
|
* already acquired by given name.
|
||
|
* @param string $name of the lock to be released.
|
||
|
* @return null|boolean whether lock has been already acquired. Returns `null` in case this feature
|
||
|
* is not supported by concrete mutex implementation.
|
||
|
*/
|
||
12 years ago
|
protected function getIsAcquired($name)
|
||
|
{
|
||
|
return false;
|
||
|
}
|
||
|
|
||
12 years ago
|
/**
|
||
|
* This method should be extended by concrete mutex implementations. Returns whether current mutex
|
||
|
* implementation can be used in a distributed environment.
|
||
|
* @return boolean whether current mutex implementation can be used in a distributed environment.
|
||
|
*/
|
||
12 years ago
|
public function getIsDistributed()
|
||
|
{
|
||
|
return false;
|
||
|
}
|
||
|
}
|