1
0
mirror of https://github.com/danog/amp.git synced 2024-12-04 18:38:17 +01:00
amp/lib/Internal/ResolutionQueue.php

76 lines
1.8 KiB
PHP
Raw Normal View History

<?php
2016-08-16 06:46:26 +02:00
2016-05-24 05:48:28 +02:00
namespace Amp\Internal;
2016-05-21 16:44:52 +02:00
use Amp\Coroutine;
use Amp\Loop;
use Amp\Promise;
use React\Promise\PromiseInterface as ReactPromise;
2016-05-21 16:44:52 +02:00
2016-06-01 19:18:11 +02:00
/**
2016-11-14 20:59:21 +01:00
* Stores a set of functions to be invoked when a promise is resolved.
2016-06-01 19:18:11 +02:00
*
* @internal
*/
2018-06-18 20:00:01 +02:00
class ResolutionQueue
{
2016-08-18 05:25:54 +02:00
/** @var callable[] */
2016-05-21 16:44:52 +02:00
private $queue = [];
/**
* @param callable|null $callback Initial callback to add to queue.
*/
2018-06-18 20:00:01 +02:00
public function __construct(callable $callback = null)
{
2016-05-21 16:44:52 +02:00
if (null !== $callback) {
$this->push($callback);
}
}
/**
* Unrolls instances of self to avoid blowing up the call stack on resolution.
*
* @param callable $callback
*/
2018-06-18 20:00:01 +02:00
public function push(callable $callback)
{
if ($callback instanceof self) {
$this->queue = \array_merge($this->queue, $callback->queue);
return;
}
$this->queue[] = $callback;
}
2016-05-21 16:44:52 +02:00
/**
* Calls each callback in the queue, passing the provided values to the function.
*
2016-08-11 21:35:58 +02:00
* @param \Throwable|null $exception
* @param mixed $value
2016-05-21 16:44:52 +02:00
*/
2018-06-18 20:00:01 +02:00
public function __invoke($exception, $value)
{
2016-05-21 16:44:52 +02:00
foreach ($this->queue as $callback) {
try {
$result = $callback($exception, $value);
if ($result === null) {
continue;
}
if ($result instanceof \Generator) {
$result = new Coroutine($result);
}
if ($result instanceof Promise || $result instanceof ReactPromise) {
Promise\rethrow($result);
}
2016-05-21 16:44:52 +02:00
} catch (\Throwable $exception) {
2017-06-05 07:21:45 +02:00
Loop::defer(static function () use ($exception) {
throw $exception;
});
2016-05-21 16:44:52 +02:00
}
}
}
}