mirror of
https://github.com/danog/parallel.git
synced 2024-11-27 04:44:56 +01:00
80 lines
2.2 KiB
PHP
80 lines
2.2 KiB
PHP
<?php
|
|
|
|
namespace Amp\Parallel\Sync;
|
|
|
|
use Amp\Coroutine;
|
|
use Amp\Delayed;
|
|
use Amp\Parallel\MutexException;
|
|
use Amp\Promise;
|
|
|
|
/**
|
|
* A cross-platform mutex that uses exclusive files as the lock mechanism.
|
|
*
|
|
* This mutex implementation is not always atomic and depends on the operating
|
|
* system's implementation of file creation operations. Use this implementation
|
|
* only if no other mutex types are available.
|
|
*
|
|
* This implementation avoids using [flock()](http://php.net/flock)
|
|
* because flock() is known to have some atomicity issues on some systems. In
|
|
* addition, flock() does not work as expected when trying to lock a file
|
|
* multiple times in the same process on Linux. Instead, exclusive file creation
|
|
* is used to create a lock file, which is atomic on most systems.
|
|
*
|
|
* @see http://php.net/fopen
|
|
*/
|
|
class FileMutex implements Mutex {
|
|
const LATENCY_TIMEOUT = 10;
|
|
|
|
/** @var string The full path to the lock file. */
|
|
private $fileName;
|
|
|
|
/**
|
|
* Creates a new mutex.
|
|
*/
|
|
public function __construct() {
|
|
$this->fileName = \tempnam(\sys_get_temp_dir(), 'mutex-') . '.lock';
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function acquire(): Promise {
|
|
return new Coroutine($this->doAcquire());
|
|
}
|
|
|
|
/**
|
|
* @coroutine
|
|
*
|
|
* @return \Generator
|
|
*/
|
|
private function doAcquire(): \Generator {
|
|
// Try to create the lock file. If the file already exists, someone else
|
|
// has the lock, so set an asynchronous timer and try again.
|
|
while (($handle = @\fopen($this->fileName, 'x')) === false) {
|
|
yield new Delayed(self::LATENCY_TIMEOUT);
|
|
}
|
|
|
|
// Return a lock object that can be used to release the lock on the mutex.
|
|
$lock = new Lock(function () {
|
|
$this->release();
|
|
});
|
|
|
|
\fclose($handle);
|
|
|
|
return $lock;
|
|
}
|
|
|
|
/**
|
|
* Releases the lock on the mutex.
|
|
*
|
|
* @throws MutexException If the unlock operation failed.
|
|
*/
|
|
protected function release() {
|
|
$success = @\unlink($this->fileName);
|
|
|
|
if (!$success) {
|
|
throw new MutexException('Failed to unlock the mutex file.');
|
|
}
|
|
}
|
|
}
|