2016-12-29 21:09:49 +01:00
|
|
|
<?php
|
2016-08-16 06:46:26 +02:00
|
|
|
|
2016-05-27 01:20:05 +02:00
|
|
|
namespace Amp\Internal;
|
|
|
|
|
2017-03-10 21:58:46 +01:00
|
|
|
use Amp\Deferred;
|
2017-04-26 19:20:30 +02:00
|
|
|
use Amp\Failure;
|
2017-03-10 21:58:46 +01:00
|
|
|
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
|
|
|
/**
|
2017-01-04 02:10:27 +01:00
|
|
|
* Trait used by Stream implementations. Do not use this trait in your code, instead compose your class from one of
|
|
|
|
* the available classes implementing \Amp\Stream.
|
|
|
|
* Note that it is the responsibility of the user of this trait to ensure that listeners have a chance to listen first
|
2016-08-14 16:57:17 +02:00
|
|
|
* before emitting values.
|
2016-06-01 18:37:12 +02:00
|
|
|
*
|
|
|
|
* @internal
|
|
|
|
*/
|
2016-05-27 01:20:05 +02:00
|
|
|
trait Producer {
|
2017-04-26 19:20:30 +02:00
|
|
|
/** @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
|
|
|
|
2017-04-26 19:20:30 +02:00
|
|
|
/** @var \Throwable|null */
|
|
|
|
private $exception;
|
2017-01-07 13:47:45 +01:00
|
|
|
|
2016-05-27 01:20:05 +02:00
|
|
|
/**
|
2017-04-26 19:20:30 +02:00
|
|
|
* {@inheritdoc}
|
2016-05-27 01:20:05 +02:00
|
|
|
*/
|
2017-04-26 19:20:30 +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
|
|
|
}
|
|
|
|
|
2017-04-26 19:20:30 +02:00
|
|
|
$this->waiting = new Deferred;
|
|
|
|
return $this->waiting->promise();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* {@inheritdoc}
|
|
|
|
*/
|
|
|
|
public function getCurrent() {
|
|
|
|
if (empty($this->values) && $this->complete) {
|
|
|
|
throw new \Error("The stream 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-01-04 02:10:27 +01:00
|
|
|
* Emits a value from the stream. 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
|
|
|
|
*
|
2017-03-10 21:58:46 +01:00
|
|
|
* @return \Amp\Promise
|
2016-05-29 18:35:09 +02:00
|
|
|
*
|
2017-04-26 19:20:30 +02:00
|
|
|
* @throws \Error If the stream has completed.
|
2016-05-27 01:20:05 +02:00
|
|
|
*/
|
2016-11-14 20:59:21 +01:00
|
|
|
private function emit($value): Promise {
|
2017-04-26 19:20:30 +02:00
|
|
|
if ($this->complete) {
|
|
|
|
throw new \Error("Streams 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) {
|
2017-03-28 01:37:55 +02:00
|
|
|
$value = Promise\adapt($value);
|
2017-02-20 21:53:58 +01:00
|
|
|
}
|
|
|
|
|
2016-11-14 20:59:21 +01:00
|
|
|
if ($value instanceof Promise) {
|
2016-08-16 20:07:38 +02:00
|
|
|
$deferred = new Deferred;
|
2017-03-21 17:23:37 +01:00
|
|
|
$value->onResolve(function ($e, $v) use ($deferred) {
|
2017-04-26 19:20:30 +02:00
|
|
|
if ($this->complete) {
|
2016-08-23 20:17:59 +02:00
|
|
|
$deferred->fail(
|
2017-04-26 19:20:30 +02:00
|
|
|
new \Error("The stream was completed before the promise result could be emitted")
|
2016-08-23 20:17:59 +02:00
|
|
|
);
|
|
|
|
return;
|
|
|
|
}
|
2017-01-07 13:47:45 +01:00
|
|
|
|
2016-08-16 20:07:38 +02:00
|
|
|
if ($e) {
|
2016-08-23 20:17:59 +02:00
|
|
|
$this->fail($e);
|
2016-08-16 20:07:38 +02:00
|
|
|
$deferred->fail($e);
|
|
|
|
return;
|
|
|
|
}
|
2017-01-07 13:47:45 +01:00
|
|
|
|
2016-08-16 20:07:38 +02:00
|
|
|
$deferred->resolve($this->emit($v));
|
2016-08-16 09:28:47 +02:00
|
|
|
});
|
2017-01-07 13:47:45 +01:00
|
|
|
|
2016-11-14 20:59:21 +01:00
|
|
|
return $deferred->promise();
|
2016-08-16 09:28:47 +02:00
|
|
|
}
|
|
|
|
|
2017-04-26 19:20:30 +02:00
|
|
|
$this->values[] = $value;
|
|
|
|
$this->backPressure[] = $pressure = new Deferred;
|
2016-08-16 09:28:47 +02:00
|
|
|
|
2017-04-26 19:20:30 +02:00
|
|
|
if ($this->waiting !== null) {
|
|
|
|
$waiting = $this->waiting;
|
|
|
|
$this->waiting = null;
|
|
|
|
$waiting->resolve(true);
|
2016-08-16 09:28:47 +02:00
|
|
|
}
|
|
|
|
|
2017-04-26 19:20:30 +02:00
|
|
|
return $pressure->promise();
|
2016-05-27 01:20:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-01-04 02:10:27 +01:00
|
|
|
* Resolves the stream with the given value.
|
2016-05-27 22:44:01 +02:00
|
|
|
*
|
2016-05-29 18:35:09 +02:00
|
|
|
* @param mixed $value
|
2016-05-27 22:44:01 +02:00
|
|
|
*
|
2017-04-26 19:20:30 +02:00
|
|
|
* @throws \Error If the stream has already been completed.
|
2016-05-27 01:20:05 +02:00
|
|
|
*/
|
2017-04-26 19:20:30 +02:00
|
|
|
private function complete() {
|
|
|
|
if ($this->complete) {
|
|
|
|
throw new \Error("The stream has already completed");
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->complete = new Success(false);
|
|
|
|
|
|
|
|
if ($this->waiting !== null) {
|
|
|
|
$waiting = $this->waiting;
|
|
|
|
$this->waiting = null;
|
|
|
|
$waiting->resolve($this->complete);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
}
|
|
|
|
}
|