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

150 lines
3.9 KiB
PHP
Raw Normal View History

<?php
2016-08-15 23:46:26 -05:00
2016-05-23 22:48:28 -05:00
namespace Amp\Internal;
2016-05-21 09:44:52 -05:00
use Amp\Coroutine;
2016-05-23 22:48:28 -05:00
use Amp\Failure;
use Amp\Loop;
use Amp\Promise;
2017-02-20 14:53:58 -06:00
use React\Promise\PromiseInterface as ReactPromise;
2016-05-21 09:44:52 -05:00
2016-06-01 12:18:11 -05:00
/**
2016-11-14 13:59:21 -06:00
* Trait used by Promise implementations. Do not use this trait in your code, instead compose your class from one of
* the available classes implementing \Amp\Promise.
2016-06-01 12:18:11 -05:00
*
* @internal
*/
2016-05-21 09:44:52 -05:00
trait Placeholder {
2016-08-17 22:25:54 -05:00
/** @var bool */
2016-05-21 09:44:52 -05:00
private $resolved = false;
2016-08-17 22:25:54 -05:00
/** @var mixed */
2016-05-21 09:44:52 -05:00
private $result;
2016-12-23 23:48:24 +01:00
/** @var callable|\Amp\Internal\ResolutionQueue|null */
2016-05-21 09:44:52 -05:00
private $onResolved;
2016-12-23 23:48:24 +01:00
/** @var null|array */
private $resolutionTrace;
2016-05-21 09:44:52 -05:00
/**
2016-12-23 23:48:24 +01:00
* @inheritdoc
2016-05-21 09:44:52 -05:00
*/
public function onResolve(callable $onResolved) {
2016-05-21 09:44:52 -05:00
if ($this->resolved) {
2016-11-14 13:59:21 -06:00
if ($this->result instanceof Promise) {
$this->result->onResolve($onResolved);
2016-05-23 21:32:41 -05:00
return;
}
try {
$result = $onResolved(null, $this->result);
if ($result === null) {
return;
}
if ($result instanceof \Generator) {
$result = new Coroutine($result);
}
if ($result instanceof Promise || $result instanceof ReactPromise) {
Promise\rethrow($result);
}
2016-05-23 21:32:41 -05:00
} catch (\Throwable $exception) {
Loop::defer(function () use ($exception) {
throw $exception;
});
2016-05-21 09:44:52 -05:00
}
return;
}
if (null === $this->onResolved) {
$this->onResolved = $onResolved;
2016-06-16 23:27:14 -05:00
return;
}
if (!$this->onResolved instanceof ResolutionQueue) {
$this->onResolved = new ResolutionQueue($this->onResolved);
2016-05-21 09:44:52 -05:00
}
2016-06-16 23:27:14 -05:00
$this->onResolved->push($onResolved);
2016-05-21 09:44:52 -05:00
}
/**
* @param mixed $value
2016-08-11 14:35:58 -05:00
*
2016-11-14 13:59:21 -06:00
* @throws \Error Thrown if the promise has already been resolved.
2016-05-21 09:44:52 -05:00
*/
private function resolve($value = null) {
2016-05-21 09:44:52 -05:00
if ($this->resolved) {
$message = "Promise has already been resolved";
if (isset($this->resolutionTrace)) {
$trace = formatStacktrace($this->resolutionTrace);
$message .= ". Previous resolution trace:\n\n{$trace}\n\n";
} else {
$message .= ", define const AMP_DEBUG = true and enable assertions for a stacktrace of the previous resolution.";
}
throw new \Error($message);
2016-05-21 09:44:52 -05:00
}
\assert((function () {
if (\defined("AMP_DEBUG") && \AMP_DEBUG) {
$trace = \debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS);
\array_shift($trace); // remove current closure
$this->resolutionTrace = $trace;
}
return true;
})());
2017-02-20 14:53:58 -06:00
if ($value instanceof ReactPromise) {
$value = Promise\adapt($value);
2017-02-20 14:53:58 -06:00
}
2016-05-21 09:44:52 -05:00
$this->resolved = true;
2016-06-14 21:53:50 -05:00
$this->result = $value;
2016-05-21 09:44:52 -05:00
2016-06-16 23:27:14 -05:00
if ($this->onResolved === null) {
return;
}
$onResolved = $this->onResolved;
$this->onResolved = null;
2016-05-21 09:44:52 -05:00
2016-11-14 13:59:21 -06:00
if ($this->result instanceof Promise) {
$this->result->onResolve($onResolved);
2016-06-16 23:27:14 -05:00
return;
}
2016-12-23 23:48:24 +01:00
2016-06-16 23:27:14 -05:00
try {
$result = $onResolved(null, $this->result);
if ($result === null) {
return;
}
if ($result instanceof \Generator) {
$result = new Coroutine($result);
}
if ($result instanceof Promise || $result instanceof ReactPromise) {
Promise\rethrow($result);
}
2016-06-16 23:27:14 -05:00
} catch (\Throwable $exception) {
Loop::defer(function () use ($exception) {
throw $exception;
});
2016-06-14 21:53:50 -05:00
}
2016-05-21 09:44:52 -05:00
}
/**
2016-08-11 14:35:58 -05:00
* @param \Throwable $reason Failure reason.
2016-05-21 09:44:52 -05:00
*/
2016-08-11 14:35:58 -05:00
private function fail(\Throwable $reason) {
2016-05-21 09:44:52 -05:00
$this->resolve(new Failure($reason));
}
}