mirror of
https://github.com/danog/amp.git
synced 2025-01-22 13:21:16 +01:00
141 lines
3.7 KiB
PHP
141 lines
3.7 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Amp\Internal;
|
|
|
|
use Amp\{ Deferred, Observable, Success };
|
|
use Interop\Async\{ Awaitable, Loop };
|
|
|
|
/**
|
|
* 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.
|
|
*
|
|
* @internal
|
|
*/
|
|
trait Producer {
|
|
use Placeholder {
|
|
resolve as complete;
|
|
}
|
|
|
|
/**
|
|
* @var callable[]
|
|
*/
|
|
private $subscribers = [];
|
|
|
|
/**
|
|
* @param callable $onNext
|
|
*/
|
|
public function subscribe(callable $onNext) {
|
|
if ($this->resolved) {
|
|
return;
|
|
}
|
|
|
|
$this->subscribers[] = $onNext;
|
|
}
|
|
|
|
/**
|
|
* Emits a value from the observable. The returned awaitable is resolved with the emitted value once all subscribers
|
|
* have been invoked.
|
|
*
|
|
* @param mixed $value
|
|
*
|
|
* @return \Interop\Async\Awaitable
|
|
*
|
|
* @throws \Error If the observable has resolved.
|
|
*/
|
|
private function emit($value): Awaitable {
|
|
if ($this->resolved) {
|
|
throw new \Error("The observable has been resolved; cannot emit more values");
|
|
}
|
|
|
|
if ($value instanceof Awaitable) {
|
|
if ($value instanceof Observable) {
|
|
$value->subscribe(function ($value) {
|
|
if ($this->resolved) {
|
|
return null;
|
|
}
|
|
|
|
return $this->emit($value);
|
|
});
|
|
|
|
$value->when(function ($e) {
|
|
if ($e && !$this->resolved) {
|
|
$this->fail($e);
|
|
}
|
|
});
|
|
|
|
return $value; // Do not emit observable result.
|
|
}
|
|
|
|
$deferred = new Deferred;
|
|
$value->when(function ($e, $v) use ($deferred) {
|
|
if ($e) {
|
|
if (!$this->resolved) {
|
|
$this->fail($e);
|
|
}
|
|
$deferred->fail($e);
|
|
return;
|
|
}
|
|
|
|
$deferred->resolve($this->emit($v));
|
|
});
|
|
|
|
return $deferred->getAwaitable();
|
|
}
|
|
|
|
$awaitables = [];
|
|
|
|
foreach ($this->subscribers as $onNext) {
|
|
try {
|
|
$result = $onNext($value);
|
|
if ($result instanceof Awaitable) {
|
|
$awaitables[] = $result;
|
|
}
|
|
} catch (\Throwable $e) {
|
|
Loop::defer(static function () use ($e) {
|
|
throw $e;
|
|
});
|
|
}
|
|
}
|
|
|
|
if (!$awaitables) {
|
|
return new Success($value);
|
|
}
|
|
|
|
$deferred = new Deferred;
|
|
$count = \count($awaitables);
|
|
$f = static function ($e) use ($deferred, $value, &$count) {
|
|
if ($e) {
|
|
Loop::defer(static function () use ($e) {
|
|
throw $e;
|
|
});
|
|
}
|
|
if (!--$count) {
|
|
$deferred->resolve($value);
|
|
}
|
|
};
|
|
|
|
foreach ($awaitables as $awaitable) {
|
|
$awaitable->when($f);
|
|
}
|
|
|
|
return $deferred->getAwaitable();
|
|
}
|
|
|
|
|
|
/**
|
|
* Resolves the observable with the given value.
|
|
*
|
|
* @param mixed $value
|
|
*
|
|
* @throws \Error If the observable has already been resolved.
|
|
*/
|
|
private function resolve($value = null) {
|
|
$this->complete($value);
|
|
$this->subscribers = [];
|
|
}
|
|
}
|