1
0
mirror of https://github.com/danog/amp.git synced 2024-11-27 12:35:02 +01:00
amp/lib/Observer.php
2016-05-31 14:45:14 -05:00

174 lines
4.3 KiB
PHP

<?php
namespace Amp;
final class Observer {
/**
* @var \Amp\Disposable
*/
private $subscriber;
/**
* @var mixed[]
*/
private $values = [];
/**
* @var \Amp\Future[]
*/
private $futures = [];
/**
* @var int
*/
private $position = -1;
/**
* @var \Amp\Deferred|null
*/
private $deferred;
/**
* @var bool
*/
private $resolved = false;
/**
* @var mixed
*/
private $result;
/**
* @var \Throwable|\Exception|null
*/
private $exception;
/**
* @param \Amp\Observable $observable
*/
public function __construct(Observable $observable) {
$deferred = &$this->deferred;
$values = &$this->values;
$futures = &$this->futures;
$this->subscriber = $observable->subscribe(static function ($value) use (&$deferred, &$values, &$futures) {
$values[] = $value;
$futures[] = $future = new Future;
if ($deferred !== null) {
$temp = $deferred;
$deferred = null;
$temp->resolve($value);
}
return $future;
});
$resolved = &$this->resolved;
$result = &$this->result;
$error = &$this->exception;
$this->subscriber->when(static function ($exception, $value) use (&$deferred, &$result, &$error, &$resolved) {
$resolved = true;
if ($exception) {
$result = null;
$error = $exception;
if ($deferred !== null) {
$deferred->fail($exception);
}
return;
}
$result = $value;
if ($deferred !== null) {
$deferred->resolve(false);
}
});
}
/**
* Disposes of the subscriber.
*/
public function __destruct() {
if (!$this->resolved) {
$this->subscriber->dispose();
}
foreach ($this->futures as $future) {
$future->resolve();
}
}
/**
* Succeeds with true if an emitted value is available by calling getCurrent() or false if the observable has
* resolved. If the observable fails, the returned awaitable will fail with the same exception.
*
* @return \Interop\Async\Awaitable
*/
public function next() {
if (isset($this->futures[$this->position])) {
$future = $this->futures[$this->position];
unset($this->values[$this->position], $this->futures[$this->position]);
$future->resolve();
}
++$this->position;
if (isset($this->values[$this->position])) {
return new Success(true);
}
if ($this->resolved) {
if ($this->exception) {
return new Failure($this->exception);
}
return new Success(false);
}
$this->deferred = new Deferred;
return $this->deferred->getAwaitable();
}
/**
* Gets the last emitted value or throws an exception if the observable has completed.
*
* @return mixed Value emitted from observable.
*
* @throws \LogicException If the observable has resolved or next() was not called before calling this method.
*/
public function getCurrent() {
if (empty($this->values) && $this->resolved) {
throw new \LogicException("The observable has completed");
}
if (!isset($this->values[$this->position])) {
throw new \LogicException("Awaitable returned from next() must resolve before calling this method");
}
return $this->values[$this->position];
}
/**
* Gets the result of the observable or throws the failure reason. Also throws an exception if the observable has
* not completed.
*
* @return mixed Final return value of the observable.
*
* @throws \LogicException If the observable has not completed.
* @throws \Throwable|\Exception The exception used to fail the observable.
*/
public function getResult() {
if (!$this->resolved) {
throw new \LogicException("The observable has not resolved");
}
if ($this->exception) {
throw $this->exception;
}
return $this->result;
}
}