1
0
mirror of https://github.com/danog/amp.git synced 2024-11-26 20:15:00 +01:00
amp/lib/Coroutine.php

135 lines
4.1 KiB
PHP
Raw Normal View History

2016-05-21 16:44:52 +02:00
<?php
namespace Amp\Awaitable;
use Interop\Async\Awaitable;
use Interop\Async\Loop;
final class Coroutine implements Awaitable {
use Internal\Placeholder;
// Maximum number of immediate coroutine continuations before deferring next continuation to the loop.
const MAX_RECURSION_DEPTH = 3;
/**
* @var \Generator
*/
private $generator;
/**
* @var callable(\Throwable|\Exception|null $exception, mixed $value): void
*/
private $when;
/**
* @var int
*/
private $depth = 0;
/**
* @param \Generator $generator
*/
2016-05-21 19:07:08 +02:00
public function __construct(\Generator $generator) {
2016-05-21 16:44:52 +02:00
$this->generator = $generator;
/**
* @param \Throwable|\Exception|null $exception Exception to be thrown into the generator.
* @param mixed $value The value to send to the generator.
*/
$this->when = function ($exception = null, $value = null) {
if (self::MAX_RECURSION_DEPTH < $this->depth) { // Defer continuation to avoid blowing up call stack.
Loop::defer(function () use ($exception, $value) {
$when = $this->when;
$when($exception, $value);
});
return;
}
try {
if ($exception) {
// Throw exception at current execution point.
$this->next($this->generator->throw($exception));
return;
}
// Send the new value and execute to next yield statement.
2016-05-22 07:11:03 +02:00
$this->next($this->generator->send($value));
2016-05-21 16:44:52 +02:00
} catch (\Throwable $exception) {
$this->fail($exception);
} catch (\Exception $exception) {
$this->fail($exception);
}
};
try {
$this->next($this->generator->current());
} catch (\Throwable $exception) {
$this->fail($exception);
} catch (\Exception $exception) {
$this->fail($exception);
}
}
/**
* Examines the value yielded from the generator and prepares the next step in iteration.
*
* @param mixed $yielded Value yielded from generator.
*/
2016-05-22 07:11:03 +02:00
private function next($yielded) {
2016-05-21 16:44:52 +02:00
if (!$this->generator->valid()) {
2016-05-22 07:11:03 +02:00
$this->resolve(PHP_MAJOR_VERSION >= 7 ? $this->generator->getReturn() : null);
2016-05-21 16:44:52 +02:00
return;
}
++$this->depth;
if ($yielded instanceof Awaitable) {
$yielded->when($this->when);
2016-05-22 07:11:03 +02:00
} elseif ($yielded instanceof Internal\CoroutineResult) {
// @todo Necessary for returning values in PHP 5.x. Remove once PHP 7 is required.
2016-05-22 16:25:40 +02:00
$yielded = $yielded->getValue();
try {
$value = $this->generator->send($yielded);
if ($this->generator->valid()) {
2016-05-24 04:36:29 +02:00
$exception = new Exception\InvalidYieldException(
$this->generator,
$value,
"Unexpected yield after coroutine result"
);
2016-05-22 16:25:40 +02:00
do {
$this->generator->throw($exception);
} while ($this->generator->valid());
$this->fail($exception);
} else {
$this->resolve($yielded);
}
} catch (\Throwable $exception) {
$this->fail($exception);
} catch (\Exception $exception) {
$this->fail($exception);
}
2016-05-21 16:44:52 +02:00
} else {
2016-05-22 16:25:40 +02:00
throw new Exception\InvalidYieldException(
$this->generator,
$yielded,
"Unexpected yield (Awaitable expected)"
);
2016-05-21 16:44:52 +02:00
}
--$this->depth;
}
2016-05-22 07:11:03 +02:00
/**
* Return a value from a coroutine. Required for PHP 5.x only. Use the return keyword in PHP 7.
*
* @param mixed $value
*
* @return \Amp\Awaitable\Internal\CoroutineResult
*/
public static function result($value) {
return new Internal\CoroutineResult($value);
}
2016-05-21 16:44:52 +02:00
}