1
0
mirror of https://github.com/danog/amp.git synced 2024-12-04 10:28:01 +01:00
amp/lib/AsyncGenerator.php

114 lines
2.7 KiB
PHP
Raw Normal View History

2020-05-13 17:15:21 +02:00
<?php
namespace Amp;
/**
* @template TValue
* @template TSend
* @template TReturn
*/
final class AsyncGenerator implements Stream
{
/** @var Internal\GeneratorStream */
private $generator;
/** @var Promise<TReturn> */
private $coroutine;
/**
* @param callable(callable(TValue):Promise<TSend>):\Generator $callable
*
* @throws \Error Thrown if the callable does not return a Generator.
*/
public function __construct(callable $callable)
{
$source = new class implements Internal\GeneratorStream {
use Internal\Yielder {
2020-05-13 23:48:38 +02:00
createGenerator as public;
2020-05-13 17:15:21 +02:00
}
};
if (\PHP_VERSION_ID < 70100) {
$yield = static function ($value) use ($source): Promise {
return $source->yield($value);
};
} else {
$yield = \Closure::fromCallable([$source, "yield"]);
}
$result = $callable($yield);
if (!$result instanceof \Generator) {
throw new \TypeError("The callable did not return a Generator");
}
$this->coroutine = new Coroutine($result);
$this->coroutine->onResolve(static function ($exception) use ($source) {
if ($exception) {
$source->fail($exception);
return;
}
$source->complete();
});
2020-05-13 23:48:38 +02:00
$this->generator = $source->createGenerator();
}
2020-05-13 17:15:21 +02:00
/**
* @inheritDoc
2020-05-13 17:15:21 +02:00
*/
public function continue(): Promise
{
return $this->generator->continue();
}
/**
* Sends a value to the async generator, resolving the back-pressure promise with the given value.
*
* @param mixed $value Value to send to the async generator.
*
* @psalm-param TSend $value
*
* @return Promise<array>
2020-05-18 20:49:56 +02:00
*
* @psalm-return Promise<list<TValue>>
2020-05-13 17:15:21 +02:00
*/
public function send($value): Promise
{
return $this->generator->send($value);
}
/**
* Throws an exception into the async generator, failing the back-pressure promise with the given exception.
*
* @param \Throwable $exception Exception to throw into the async generator.
*
* @return Promise<array>
2020-05-18 20:49:56 +02:00
*
* @psalm-return Promise<list<TValue>>
2020-05-13 17:15:21 +02:00
*/
public function throw(\Throwable $exception): Promise
{
return $this->generator->throw($exception);
}
/**
* Notifies the generator that the consumer is no longer interested in the generator output.
*
* @return void
*/
public function dispose()
{
$this->generator->dispose();
}
2020-05-13 17:15:21 +02:00
/**
* @return Promise<TReturn>
*/
public function getReturn(): Promise
{
return $this->coroutine;
}
}