1
0
mirror of https://github.com/danog/amp.git synced 2024-12-02 17:37:50 +01:00
amp/lib/Internal/Producer.php

140 lines
3.6 KiB
PHP
Raw 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\Coroutine;
use Amp\Deferred;
use Amp\Loop;
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
* before emitting values.
2016-06-01 18:37:12 +02:00
*
* @internal
*/
2016-05-27 01:20:05 +02:00
trait Producer {
2016-05-29 18:35:09 +02:00
use Placeholder {
resolve as complete;
}
2016-08-18 05:25:54 +02:00
/** @var callable[] */
2017-01-04 02:10:27 +01:00
private $listeners = [];
2016-05-27 01:20:05 +02:00
/**
* @param callable $onEmit
2016-05-27 01:20:05 +02:00
*/
public function onEmit(callable $onEmit) {
if ($this->resolved) {
2016-08-18 04:11:03 +02:00
return;
2016-05-29 18:35:09 +02:00
}
$this->listeners[] = $onEmit;
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
*
* @return \Amp\Promise
2016-05-29 18:35:09 +02:00
*
2017-01-04 02:10:27 +01:00
* @throws \Error If the stream has resolved.
2016-05-27 01:20:05 +02:00
*/
2016-11-14 20:59:21 +01:00
private function emit($value): Promise {
2016-05-29 18:35:09 +02:00
if ($this->resolved) {
throw new \Error("Streams cannot emit values after calling resolve");
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->resolved) {
$deferred->fail(
2017-01-04 02:10:27 +01:00
new \Error("The stream was resolved 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
}
2016-11-14 20:59:21 +01:00
$promises = [];
2016-08-16 09:28:47 +02:00
foreach ($this->listeners as $onEmit) {
2016-08-16 09:28:47 +02:00
try {
$result = $onEmit($value);
if ($result === null) {
continue;
}
if ($result instanceof \Generator) {
$result = new Coroutine($result);
} elseif ($result instanceof ReactPromise) {
$result = Promise\adapt($result);
2017-02-20 21:53:58 +01:00
}
2016-11-14 20:59:21 +01:00
if ($result instanceof Promise) {
$promises[] = $result;
2016-08-16 09:28:47 +02:00
}
} catch (\Throwable $e) {
Loop::defer(function () use ($e) {
throw $e;
});
2016-08-16 09:28:47 +02:00
}
}
2016-11-14 20:59:21 +01:00
if (!$promises) {
2016-08-16 09:28:47 +02:00
return new Success($value);
}
$deferred = new Deferred;
2016-11-14 20:59:21 +01:00
$count = \count($promises);
$f = static function ($e) use ($deferred, $value, &$count) {
2016-08-16 09:28:47 +02:00
if ($e) {
Loop::defer(function () use ($e) {
throw $e;
});
2016-08-16 09:28:47 +02:00
}
if (!--$count) {
$deferred->resolve($value);
}
};
2016-11-14 20:59:21 +01:00
foreach ($promises as $promise) {
$promise->onResolve($f);
2016-08-16 09:28:47 +02:00
}
2016-11-14 20:59:21 +01:00
return $deferred->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-01-04 02:10:27 +01:00
* @throws \Error If the stream has already been resolved.
2016-05-27 01:20:05 +02:00
*/
private function resolve($value = null) {
$this->complete($value);
2017-01-04 02:10:27 +01:00
$this->listeners = [];
2016-05-27 01:20:05 +02:00
}
}