2016-12-29 21:09:49 +01:00
|
|
|
<?php
|
2016-08-16 06:46:26 +02:00
|
|
|
|
2016-05-24 05:48:28 +02:00
|
|
|
namespace Amp;
|
2016-05-21 16:44:52 +02:00
|
|
|
|
2017-02-20 21:53:58 +01:00
|
|
|
use React\Promise\PromiseInterface as ReactPromise;
|
|
|
|
|
2016-06-01 19:18:11 +02:00
|
|
|
/**
|
2016-11-14 20:59:21 +01:00
|
|
|
* Creates a promise from a generator function yielding promises.
|
2016-08-13 18:37:59 +02:00
|
|
|
*
|
2016-11-14 20:59:21 +01:00
|
|
|
* When a promise is yielded, execution of the generator is interrupted until the promise is resolved. A success
|
2016-08-13 18:37:59 +02:00
|
|
|
* value is sent into the generator, while a failure reason is thrown into the generator. Using a coroutine,
|
|
|
|
* asynchronous code can be written without callbacks and be structured like synchronous code.
|
2016-06-01 19:18:11 +02:00
|
|
|
*/
|
2018-06-18 20:00:01 +02:00
|
|
|
final class Coroutine implements Promise
|
|
|
|
{
|
2016-05-21 16:44:52 +02:00
|
|
|
use Internal\Placeholder;
|
|
|
|
|
2019-05-14 21:37:08 +02:00
|
|
|
/**
|
|
|
|
* Attempts to transform the non-promise yielded from the generator into a promise, otherwise returns an instance
|
|
|
|
* `Amp\Failure` failed with an instance of `Amp\InvalidYieldError`.
|
|
|
|
*
|
|
|
|
* @param mixed $yielded Non-promise yielded from generator.
|
|
|
|
* @param \Generator $generator No type for performance, we already know the type.
|
|
|
|
*
|
|
|
|
* @return Promise
|
|
|
|
*/
|
|
|
|
private static function transform($yielded, $generator): Promise
|
|
|
|
{
|
|
|
|
try {
|
|
|
|
if (\is_array($yielded)) {
|
|
|
|
return Promise\all($yielded);
|
|
|
|
}
|
2016-05-21 16:44:52 +02:00
|
|
|
|
2019-05-14 21:37:08 +02:00
|
|
|
if ($yielded instanceof ReactPromise) {
|
|
|
|
return Promise\adapt($yielded);
|
|
|
|
}
|
2017-08-05 05:50:19 +02:00
|
|
|
|
2019-05-14 21:37:08 +02:00
|
|
|
// No match, continue to returning Failure below.
|
|
|
|
} catch (\Throwable $exception) {
|
|
|
|
// Conversion to promise failed, fall-through to returning Failure below.
|
|
|
|
}
|
2017-08-05 05:50:19 +02:00
|
|
|
|
2019-05-14 21:37:08 +02:00
|
|
|
return new Failure(new InvalidYieldError(
|
|
|
|
$generator,
|
|
|
|
\sprintf(
|
|
|
|
"Unexpected yield; Expected an instance of %s or %s or an array of such instances",
|
|
|
|
Promise::class,
|
|
|
|
ReactPromise::class
|
|
|
|
),
|
|
|
|
$exception ?? null
|
|
|
|
));
|
|
|
|
}
|
2017-05-20 09:46:01 +02:00
|
|
|
|
2016-05-21 16:44:52 +02:00
|
|
|
/**
|
|
|
|
* @param \Generator $generator
|
|
|
|
*/
|
2018-06-18 20:00:01 +02:00
|
|
|
public function __construct(\Generator $generator)
|
|
|
|
{
|
2017-08-05 05:50:19 +02:00
|
|
|
try {
|
2019-05-14 21:37:08 +02:00
|
|
|
$yielded = $generator->current();
|
2017-08-05 05:50:19 +02:00
|
|
|
|
|
|
|
if (!$yielded instanceof Promise) {
|
2019-05-14 21:37:08 +02:00
|
|
|
if (!$generator->valid()) {
|
|
|
|
$this->resolve($generator->getReturn());
|
2017-08-05 05:50:19 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-05-14 21:37:08 +02:00
|
|
|
$yielded = self::transform($yielded, $generator);
|
2017-08-05 05:50:19 +02:00
|
|
|
}
|
|
|
|
} catch (\Throwable $exception) {
|
|
|
|
$this->fail($exception);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-05-21 16:44:52 +02:00
|
|
|
/**
|
2019-05-14 21:37:08 +02:00
|
|
|
* @param \Throwable|null $e Exception to be thrown into the generator.
|
|
|
|
* @param mixed $v Value to be sent into the generator.
|
2016-05-21 16:44:52 +02:00
|
|
|
*/
|
2019-05-20 21:10:59 +02:00
|
|
|
$onResolve = function ($e, $v) use ($generator, &$onResolve) {
|
|
|
|
/** @var bool Used to control iterative coroutine continuation. */
|
|
|
|
static $immediate = true;
|
|
|
|
|
|
|
|
/** @var \Throwable|null Promise failure reason when executing next coroutine step, null at all other times. */
|
|
|
|
static $exception;
|
|
|
|
|
|
|
|
/** @var mixed Promise success value when executing next coroutine step, null at all other times. */
|
|
|
|
static $value;
|
|
|
|
|
2019-05-14 21:37:08 +02:00
|
|
|
$exception = $e;
|
|
|
|
$value = $v;
|
2017-05-22 07:01:10 +02:00
|
|
|
|
2019-05-14 21:37:08 +02:00
|
|
|
if (!$immediate) {
|
|
|
|
$immediate = true;
|
2017-05-20 09:40:56 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-05-21 16:44:52 +02:00
|
|
|
try {
|
2019-05-20 20:29:09 +02:00
|
|
|
try {
|
|
|
|
do {
|
|
|
|
if ($exception) {
|
|
|
|
// Throw exception at current execution point.
|
|
|
|
$yielded = $generator->throw($exception);
|
|
|
|
} else {
|
|
|
|
// Send the new value and execute to next yield statement.
|
|
|
|
$yielded = $generator->send($value);
|
2017-05-20 16:26:56 +02:00
|
|
|
}
|
|
|
|
|
2019-05-20 20:29:09 +02:00
|
|
|
if (!$yielded instanceof Promise) {
|
|
|
|
if (!$generator->valid()) {
|
|
|
|
$this->resolve($generator->getReturn());
|
|
|
|
$onResolve = null;
|
|
|
|
return;
|
|
|
|
}
|
2016-08-13 18:37:59 +02:00
|
|
|
|
2019-05-20 20:29:09 +02:00
|
|
|
$yielded = self::transform($yielded, $generator);
|
|
|
|
}
|
2017-05-22 07:01:10 +02:00
|
|
|
|
2019-05-20 20:29:09 +02:00
|
|
|
$immediate = false;
|
|
|
|
$yielded->onResolve($onResolve);
|
|
|
|
} while ($immediate);
|
|
|
|
|
|
|
|
$immediate = true;
|
|
|
|
} catch (\Throwable $exception) {
|
2019-05-14 21:37:08 +02:00
|
|
|
$this->fail($exception);
|
|
|
|
$onResolve = null;
|
2019-05-20 20:29:09 +02:00
|
|
|
} finally {
|
2019-05-14 21:37:08 +02:00
|
|
|
$exception = null;
|
|
|
|
$value = null;
|
|
|
|
}
|
2019-05-20 20:29:09 +02:00
|
|
|
} catch (\Throwable $e) {
|
|
|
|
Loop::defer(static function () use ($e) {
|
|
|
|
throw $e;
|
|
|
|
});
|
2016-05-21 16:44:52 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-05-14 21:37:08 +02:00
|
|
|
try {
|
|
|
|
$yielded->onResolve($onResolve);
|
|
|
|
|
2019-05-20 21:10:59 +02:00
|
|
|
unset($generator, $yielded, $onResolve);
|
2019-05-14 21:37:08 +02:00
|
|
|
} catch (\Throwable $e) {
|
|
|
|
Loop::defer(static function () use ($e) {
|
|
|
|
throw $e;
|
|
|
|
});
|
|
|
|
}
|
2016-06-15 05:35:28 +02:00
|
|
|
}
|
2016-06-01 19:06:43 +02:00
|
|
|
}
|