mirror of
https://github.com/danog/parallel.git
synced 2024-12-04 18:47:50 +01:00
50 lines
1019 B
PHP
50 lines
1019 B
PHP
<?php
|
|
|
|
namespace Amp\Parallel\Threading\Internal;
|
|
|
|
use Amp\{ Coroutine, Pause, Promise };
|
|
use Amp\Parallel\Sync\Lock;
|
|
|
|
/**
|
|
* @internal
|
|
*/
|
|
class Mutex extends \Threaded {
|
|
const LATENCY_TIMEOUT = 10;
|
|
|
|
/** @var bool */
|
|
private $lock = true;
|
|
|
|
/**
|
|
* @return \Amp\Promise
|
|
*/
|
|
public function acquire(): Promise {
|
|
return new Coroutine($this->doAcquire());
|
|
}
|
|
|
|
/**
|
|
* Attempts to acquire the lock and sleeps for a time if the lock could not be acquired.
|
|
*
|
|
* @return \Generator
|
|
*/
|
|
public function doAcquire(): \Generator {
|
|
$tsl = function () {
|
|
return ($this->lock ? $this->lock = false : true);
|
|
};
|
|
|
|
while (!$this->lock || $this->synchronized($tsl)) {
|
|
yield new Pause(self::LATENCY_TIMEOUT);
|
|
}
|
|
|
|
return new Lock(function () {
|
|
$this->release();
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Releases the lock.
|
|
*/
|
|
protected function release() {
|
|
$this->lock = true;
|
|
}
|
|
}
|