1
0
mirror of https://github.com/danog/amp.git synced 2025-01-22 13:21:16 +01:00
amp/lib/Coroutine.php

130 lines
4.1 KiB
PHP
Raw Normal View History

2016-05-21 09:44:52 -05:00
<?php
2016-05-23 22:48:28 -05:00
namespace Amp;
2016-05-21 09:44:52 -05:00
use Interop\Async\Awaitable;
use Interop\Async\Loop;
2016-06-01 12:18:11 -05:00
/**
* Creates an awaitable from a generator function yielding awaitables. When an awaitable is yielded, execution of the
* generator is interrupted until the awaitable is resolved. The success value is sent to the generator, while the
* failure reason is thrown into the generator. Using a coroutine, asynchronous code can be written without callbacks
* and be structured like synchronous code.
*/
2016-05-21 09:44:52 -05:00
final class Coroutine implements Awaitable {
use Internal\Placeholder;
// Maximum number of immediate coroutine continuations before deferring next continuation to the loop.
2016-06-01 12:06:43 -05:00
const MAX_CONTINUATION_DEPTH = 3;
2016-05-21 09:44:52 -05:00
/**
* @var \Generator
*/
private $generator;
/**
2016-08-11 14:35:58 -05:00
* @var callable(\Throwable|null $exception, mixed $value): void
2016-05-21 09:44:52 -05:00
*/
private $when;
/**
* @var int
*/
private $depth = 0;
/**
* @param \Generator $generator
*/
2016-05-21 12:07:08 -05:00
public function __construct(\Generator $generator) {
2016-05-21 09:44:52 -05:00
$this->generator = $generator;
/**
2016-08-11 14:35:58 -05:00
* @param \Throwable|null $exception Exception to be thrown into the generator.
2016-05-21 09:44:52 -05:00
* @param mixed $value The value to send to the generator.
*/
2016-05-24 10:39:19 -05:00
$this->when = function ($exception, $value) {
2016-06-01 12:06:43 -05:00
if (self::MAX_CONTINUATION_DEPTH < $this->depth) { // Defer continuation to avoid blowing up call stack.
2016-05-21 09:44:52 -05:00
Loop::defer(function () use ($exception, $value) {
2016-08-11 14:35:58 -05:00
($this->when)($exception, $value);
2016-05-21 09:44:52 -05:00
});
return;
}
try {
if ($exception) {
// Throw exception at current execution point.
$yielded = $this->generator->throw($exception);
} else {
// Send the new value and execute to next yield statement.
$yielded = $this->generator->send($value);
}
if ($yielded instanceof Awaitable) {
++$this->depth;
$yielded->when($this->when);
--$this->depth;
return;
}
2016-08-11 14:35:58 -05:00
if ($this->generator->valid()) {
2016-08-11 14:35:58 -05:00
throw new InvalidYieldError(
$this->generator,
\sprintf("Unexpected yield (%s expected)", Awaitable::class)
);
}
2016-08-11 14:35:58 -05:00
$this->resolve($this->generator->getReturn());
2016-05-21 09:44:52 -05:00
} catch (\Throwable $exception) {
$this->dispose($exception);
2016-05-21 09:44:52 -05:00
}
};
try {
$yielded = $this->generator->current();
2016-05-21 09:44:52 -05:00
if ($yielded instanceof Awaitable) {
++$this->depth;
$yielded->when($this->when);
--$this->depth;
return;
}
if ($this->generator->valid()) {
2016-08-11 14:35:58 -05:00
throw new InvalidYieldError(
$this->generator,
\sprintf("Unexpected yield (%s expected)", Awaitable::class)
);
2016-06-02 10:46:22 -05:00
}
2016-05-21 09:44:52 -05:00
2016-08-11 14:35:58 -05:00
$this->resolve($this->generator->getReturn());
} catch (\Throwable $exception) {
$this->dispose($exception);
}
}
2016-06-02 10:46:22 -05:00
/**
* Runs the generator to completion then fails the coroutine with the given exception.
*
2016-08-11 14:35:58 -05:00
* @param \Throwable $exception
*/
2016-08-11 14:35:58 -05:00
private function dispose(\Throwable $exception) {
if ($this->generator->valid()) {
try {
try {
// Ensure generator has run to completion to avoid throws from finally blocks on destruction.
do {
$this->generator->throw($exception);
} while ($this->generator->valid());
} finally {
// Throw from finally to attach any exception thrown from generator as previous exception.
throw $exception;
}
} catch (\Throwable $exception) {
// $exception will be used to fail the coroutine.
}
}
$this->fail($exception);
}
2016-06-01 12:06:43 -05:00
}