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

192 lines
5.2 KiB
PHP
Raw Permalink Normal View History

<?php
2016-08-16 06:46:26 +02:00
2016-05-27 01:20:05 +02:00
namespace Amp\Internal;
use Amp\Deferred;
use Amp\Failure;
use Amp\Promise;
use Amp\Success;
2017-02-20 21:53:58 +01:00
use React\Promise\PromiseInterface as ReactPromise;
2016-05-27 01:20:05 +02:00
2016-06-01 18:37:12 +02:00
/**
* Trait used by Iterator implementations. Do not use this trait in your code, instead compose your class from one of
* the available classes implementing \Amp\Iterator.
2017-01-04 02:10:27 +01:00
* Note that it is the responsibility of the user of this trait to ensure that listeners have a chance to listen first
* before emitting values.
2016-06-01 18:37:12 +02:00
*
* @internal
*/
2018-06-18 20:00:01 +02:00
trait Producer
{
/** @var \Amp\Promise|null */
private $complete;
/** @var mixed[] */
private $values = [];
/** @var \Amp\Deferred[] */
private $backPressure = [];
/** @var int */
private $position = -1;
/** @var \Amp\Deferred|null */
private $waiting;
2016-05-29 18:35:09 +02:00
/** @var null|array */
private $resolutionTrace;
2016-05-27 01:20:05 +02:00
/**
* {@inheritdoc}
2016-05-27 01:20:05 +02:00
*/
2018-06-18 20:00:01 +02:00
public function advance(): Promise
{
if ($this->waiting !== null) {
throw new \Error("The prior promise returned must resolve before invoking this method again");
}
if (isset($this->backPressure[$this->position])) {
$future = $this->backPressure[$this->position];
unset($this->values[$this->position], $this->backPressure[$this->position]);
$future->resolve();
}
++$this->position;
if (\array_key_exists($this->position, $this->values)) {
return new Success(true);
}
if ($this->complete) {
return $this->complete;
2016-05-29 18:35:09 +02:00
}
$this->waiting = new Deferred;
return $this->waiting->promise();
}
/**
* {@inheritdoc}
*/
2018-06-18 20:00:01 +02:00
public function getCurrent()
{
if (empty($this->values) && $this->complete) {
2017-04-28 07:51:59 +02:00
throw new \Error("The iterator has completed");
}
if (!\array_key_exists($this->position, $this->values)) {
throw new \Error("Promise returned from advance() must resolve before calling this method");
}
return $this->values[$this->position];
2016-05-27 01:20:05 +02:00
}
2016-05-29 18:35:09 +02:00
/**
2017-04-28 07:51:59 +02:00
* Emits a value from the iterator. The returned promise is resolved with the emitted value once all listeners
2016-05-29 18:35:09 +02:00
* have been invoked.
2016-05-27 22:44:01 +02:00
*
* @param mixed $value
*
* @return \Amp\Promise
2016-05-29 18:35:09 +02:00
*
2017-04-28 07:51:59 +02:00
* @throws \Error If the iterator has completed.
2016-05-27 01:20:05 +02:00
*/
2018-06-18 20:00:01 +02:00
private function emit($value): Promise
{
if ($this->complete) {
2017-04-28 07:51:59 +02:00
throw new \Error("Iterators cannot emit values after calling complete");
2016-05-27 01:20:05 +02:00
}
2017-02-20 21:53:58 +01:00
if ($value instanceof ReactPromise) {
$value = Promise\adapt($value);
2017-02-20 21:53:58 +01:00
}
2016-11-14 20:59:21 +01:00
if ($value instanceof Promise) {
$deferred = new Deferred;
$value->onResolve(function ($e, $v) use ($deferred) {
if ($this->complete) {
$deferred->fail(
2017-04-28 07:51:59 +02:00
new \Error("The iterator was completed before the promise result could be emitted")
);
return;
}
if ($e) {
$this->fail($e);
$deferred->fail($e);
return;
}
$deferred->resolve($this->emit($v));
2016-08-16 09:28:47 +02:00
});
2016-11-14 20:59:21 +01:00
return $deferred->promise();
2016-08-16 09:28:47 +02:00
}
$this->values[] = $value;
$this->backPressure[] = $pressure = new Deferred;
2016-08-16 09:28:47 +02:00
if ($this->waiting !== null) {
$waiting = $this->waiting;
$this->waiting = null;
$waiting->resolve(true);
2016-08-16 09:28:47 +02:00
}
return $pressure->promise();
2016-05-27 01:20:05 +02:00
}
/**
* Completes the iterator.
2016-05-27 22:44:01 +02:00
*
2017-04-28 07:51:59 +02:00
* @throws \Error If the iterator has already been completed.
2016-05-27 01:20:05 +02:00
*/
2018-06-18 20:00:01 +02:00
private function complete()
{
if ($this->complete) {
$message = "Iterator has already been completed";
if (isset($this->resolutionTrace)) {
$trace = formatStacktrace($this->resolutionTrace);
$message .= ". Previous completion trace:\n\n{$trace}\n\n";
} else {
2017-12-02 16:54:28 +01:00
// @codeCoverageIgnoreStart
$message .= ", define environment variable AMP_DEBUG or const AMP_DEBUG = true and enable assertions "
. "for a stacktrace of the previous resolution.";
// @codeCoverageIgnoreEnd
}
throw new \Error($message);
}
\assert((function () {
$env = \getenv("AMP_DEBUG") ?: "0";
2017-12-02 18:15:06 +01:00
if (($env !== "0" && $env !== "false") || (\defined("AMP_DEBUG") && \AMP_DEBUG)) {
2017-12-02 16:54:28 +01:00
$trace = \debug_backtrace(\DEBUG_BACKTRACE_IGNORE_ARGS);
\array_shift($trace); // remove current closure
$this->resolutionTrace = $trace;
}
return true;
})());
$this->complete = new Success(false);
if ($this->waiting !== null) {
$waiting = $this->waiting;
$this->waiting = null;
$waiting->resolve($this->complete);
}
}
2018-06-18 20:00:01 +02:00
private function fail(\Throwable $exception)
{
$this->complete = new Failure($exception);
if ($this->waiting !== null) {
$waiting = $this->waiting;
$this->waiting = null;
$waiting->resolve($this->complete);
}
2016-05-27 01:20:05 +02:00
}
}