1
0
mirror of https://github.com/danog/amp.git synced 2025-01-22 13:21:16 +01:00
amp/lib/Internal/Producer.php

124 lines
3.2 KiB
PHP
Raw Normal View History

2016-08-17 22:25:54 -05:00
<?php declare(strict_types = 1);
2016-08-15 23:46:26 -05:00
2016-05-26 18:20:05 -05:00
namespace Amp\Internal;
2016-09-07 12:24:49 -05:00
use Amp\{ Deferred, Success };
2016-11-14 13:59:21 -06:00
use Interop\Async\{ Loop, Promise };
2016-05-26 18:20:05 -05:00
2016-06-01 11:37:12 -05:00
/**
* Trait used by Observable implementations. Do not use this trait in your code, instead compose your class from one of
* the available classes implementing \Amp\Observable.
* Note that it is the responsibility of the user of this trait to ensure that subscribers have a chance to subscribe first
* before emitting values.
2016-06-01 11:37:12 -05:00
*
* @internal
*/
2016-05-26 18:20:05 -05:00
trait Producer {
2016-05-29 11:35:09 -05:00
use Placeholder {
resolve as complete;
}
2016-08-17 22:25:54 -05:00
/** @var callable[] */
2016-05-29 11:35:09 -05:00
private $subscribers = [];
2016-08-16 13:30:32 -05:00
2016-05-26 18:20:05 -05:00
/**
2016-05-29 11:35:09 -05:00
* @param callable $onNext
2016-05-26 18:20:05 -05:00
*/
2016-08-17 21:11:03 -05:00
public function subscribe(callable $onNext) {
if ($this->resolved) {
2016-08-17 21:11:03 -05:00
return;
2016-05-29 11:35:09 -05:00
}
2016-08-17 21:11:03 -05:00
$this->subscribers[] = $onNext;
2016-05-26 18:20:05 -05:00
}
2016-05-29 11:35:09 -05:00
/**
2016-11-14 13:59:21 -06:00
* Emits a value from the observable. The returned promise is resolved with the emitted value once all subscribers
2016-05-29 11:35:09 -05:00
* have been invoked.
2016-05-27 15:44:01 -05:00
*
* @param mixed $value
*
2016-11-14 13:59:21 -06:00
* @return \Interop\Async\Promise
2016-05-29 11:35:09 -05:00
*
2016-08-11 14:35:58 -05:00
* @throws \Error If the observable has resolved.
2016-05-26 18:20:05 -05:00
*/
2016-11-14 13:59:21 -06:00
private function emit($value): Promise {
2016-05-29 11:35:09 -05:00
if ($this->resolved) {
2016-08-11 14:35:58 -05:00
throw new \Error("The observable has been resolved; cannot emit more values");
2016-05-26 18:20:05 -05:00
}
2016-11-14 13:59:21 -06:00
if ($value instanceof Promise) {
$deferred = new Deferred;
$value->when(function ($e, $v) use ($deferred) {
if ($this->resolved) {
$deferred->fail(
2016-11-14 13:59:21 -06:00
new \Error("The observable 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 02:28:47 -05:00
});
2016-11-14 13:59:21 -06:00
return $deferred->promise();
2016-08-16 02:28:47 -05:00
}
2016-11-14 13:59:21 -06:00
$promises = [];
2016-08-16 02:28:47 -05:00
foreach ($this->subscribers as $onNext) {
try {
$result = $onNext($value);
2016-11-14 13:59:21 -06:00
if ($result instanceof Promise) {
$promises[] = $result;
2016-08-16 02:28:47 -05:00
}
} catch (\Throwable $e) {
Loop::defer(static function () use ($e) {
throw $e;
});
}
}
2016-11-14 13:59:21 -06:00
if (!$promises) {
2016-08-16 02:28:47 -05:00
return new Success($value);
}
$deferred = new Deferred;
2016-11-14 13:59:21 -06:00
$count = \count($promises);
$f = static function ($e) use ($deferred, $value, &$count) {
2016-08-16 02:28:47 -05:00
if ($e) {
Loop::defer(static function () use ($e) {
throw $e;
});
}
if (!--$count) {
$deferred->resolve($value);
}
};
2016-11-14 13:59:21 -06:00
foreach ($promises as $promise) {
$promise->when($f);
2016-08-16 02:28:47 -05:00
}
2016-11-14 13:59:21 -06:00
return $deferred->promise();
2016-05-26 18:20:05 -05:00
}
/**
2016-05-29 11:35:09 -05:00
* Resolves the observable with the given value.
2016-05-27 15:44:01 -05:00
*
2016-05-29 11:35:09 -05:00
* @param mixed $value
2016-05-27 15:44:01 -05:00
*
2016-08-11 14:35:58 -05:00
* @throws \Error If the observable has already been resolved.
2016-05-26 18:20:05 -05:00
*/
private function resolve($value = null) {
$this->complete($value);
$this->subscribers = [];
2016-05-26 18:20:05 -05:00
}
}