mirror of
https://github.com/danog/amp.git
synced 2024-12-04 02:17:54 +01:00
79 lines
1.7 KiB
PHP
79 lines
1.7 KiB
PHP
<?php
|
|
|
|
namespace Amp;
|
|
|
|
final class CombinedCancellationToken implements CancellationToken
|
|
{
|
|
private $tokens = [];
|
|
|
|
private $nextId = "a";
|
|
private $callbacks = [];
|
|
private $exception;
|
|
|
|
public function __construct(CancellationToken ...$tokens)
|
|
{
|
|
foreach ($tokens as $token) {
|
|
$id = $token->subscribe(function ($exception) {
|
|
$this->exception = $exception;
|
|
|
|
$callbacks = $this->callbacks;
|
|
$this->callbacks = [];
|
|
|
|
foreach ($callbacks as $callback) {
|
|
asyncCall($callback, $this->exception);
|
|
}
|
|
});
|
|
|
|
$this->tokens[] = [$token, $id];
|
|
}
|
|
}
|
|
|
|
public function __destruct()
|
|
{
|
|
foreach ($this->tokens as list($token, $id)) {
|
|
/** @var CancellationToken $token */
|
|
$token->unsubscribe($id);
|
|
}
|
|
}
|
|
|
|
/** @inheritdoc */
|
|
public function subscribe(callable $callback): string
|
|
{
|
|
$id = $this->nextId++;
|
|
|
|
if ($this->exception) {
|
|
asyncCall($callback, $this->exception);
|
|
} else {
|
|
$this->callbacks[$id] = $callback;
|
|
}
|
|
|
|
return $id;
|
|
}
|
|
|
|
/** @inheritdoc */
|
|
public function unsubscribe(string $id)
|
|
{
|
|
unset($this->callbacks[$id]);
|
|
}
|
|
|
|
/** @inheritdoc */
|
|
public function isRequested(): bool
|
|
{
|
|
foreach ($this->tokens as list($token)) {
|
|
if ($token->isRequested()) {
|
|
return true;
|
|
}
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
/** @inheritdoc */
|
|
public function throwIfRequested()
|
|
{
|
|
foreach ($this->tokens as list($token)) {
|
|
$token->throwIfRequested();
|
|
}
|
|
}
|
|
}
|