1
0
mirror of https://github.com/danog/amp.git synced 2024-12-04 18:38:17 +01:00
amp/lib/AsyncGenerator.php
Aaron Piotrowski 8df006b011
Remove unnecessary internal interface
Switched Yielder trait to a concrete class YieldSource.
2020-09-24 12:53:29 -05:00

126 lines
3.4 KiB
PHP

<?php
namespace Amp;
/**
* @template TValue
* @template TSend
* @template TReturn
*/
final class AsyncGenerator implements Stream
{
/** @var Internal\YieldSource<TValue, TSend> */
private $source;
/** @var Promise<TReturn> */
private $coroutine;
/**
* @param callable(callable(TValue):Promise<TSend>):\Generator $callable
*
* @throws \Error Thrown if the callable throws any exception.
* @throws \TypeError Thrown if the callable does not return a Generator.
*/
public function __construct(callable $callable)
{
$this->source = $source = new Internal\YieldSource;
if (\PHP_VERSION_ID < 70100) {
$yield = static function ($value) use ($source): Promise {
return $source->yield($value);
};
} else {
$yield = \Closure::fromCallable([$source, "yield"]);
}
try {
$generator = $callable($yield);
} catch (\Throwable $exception) {
throw new \Error("The callable threw an exception", 0, $exception);
}
if (!$generator instanceof \Generator) {
throw new \TypeError("The callable did not return a Generator");
}
$this->coroutine = new Coroutine($generator);
$this->coroutine->onResolve(static function ($exception) use ($source) {
if ($exception) {
$source->fail($exception);
return;
}
$source->complete();
});
}
public function __destruct()
{
$this->source->dispose();
}
/**
* @inheritDoc
*/
public function continue(): Promise
{
return $this->source->continue();
}
/**
* Sends a value to the async generator, resolving the back-pressure promise with the given value.
* The first yielded value must be retrieved using {@see continue()}.
*
* @param mixed $value Value to send to the async generator.
*
* @psalm-param TSend $value
*
* @return Promise<YieldedValue|null> Resolves with null if the stream has completed.
*
* @psalm-return Promise<YieldedValue<TValue>|null>
*
* @throws \Error If the first yielded value has not been retrieved using {@see continue()}.
*/
public function send($value): Promise
{
return $this->source->send($value);
}
/**
* Throws an exception into the async generator, failing the back-pressure promise with the given exception.
* The first yielded value must be retrieved using {@see continue()}.
*
* @param \Throwable $exception Exception to throw into the async generator.
*
* @return Promise<YieldedValue|null> Resolves with null if the stream has completed.
*
* @psalm-return Promise<YieldedValue<TValue>|null>
*
* @throws \Error If the first yielded value has not been retrieved using {@see continue()}.
*/
public function throw(\Throwable $exception): Promise
{
return $this->source->throw($exception);
}
/**
* Notifies the generator that the consumer is no longer interested in the generator output.
*
* @return void
*/
public function dispose()
{
$this->source->dispose();
}
/**
* @return Promise<mixed>
*
* @psalm-return Promise<TReturn>
*/
public function getReturn(): Promise
{
return $this->coroutine;
}
}