1
0
mirror of https://github.com/danog/amp.git synced 2024-12-04 18:38:17 +01:00
amp/lib/Internal/Placeholder.php

104 lines
2.5 KiB
PHP
Raw Normal View History

<?php
2016-08-16 06:46:26 +02:00
2016-05-24 05:48:28 +02:00
namespace Amp\Internal;
2016-05-21 16:44:52 +02:00
2016-05-24 05:48:28 +02:00
use Amp\Failure;
use Amp\Loop;
use Amp\Promise;
2017-02-20 21:53:58 +01:00
use React\Promise\PromiseInterface as ReactPromise;
use function Amp\Promise\adapt;
2016-05-21 16:44:52 +02:00
2016-06-01 19:18:11 +02:00
/**
2016-11-14 20:59:21 +01: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 19:18:11 +02:00
*
* @internal
*/
2016-05-21 16:44:52 +02:00
trait Placeholder {
2016-08-18 05:25:54 +02:00
/** @var bool */
2016-05-21 16:44:52 +02:00
private $resolved = false;
2016-08-18 05:25:54 +02:00
/** @var mixed */
2016-05-21 16:44:52 +02:00
private $result;
2016-12-23 23:48:24 +01:00
/** @var callable|\Amp\Internal\ResolutionQueue|null */
2016-05-21 16:44:52 +02:00
private $onResolved;
2016-12-23 23:48:24 +01:00
2016-05-21 16:44:52 +02:00
/**
2016-12-23 23:48:24 +01:00
* @inheritdoc
2016-05-21 16:44:52 +02:00
*/
public function onResolve(callable $onResolved) {
2016-05-21 16:44:52 +02:00
if ($this->resolved) {
2016-11-14 20:59:21 +01:00
if ($this->result instanceof Promise) {
$this->result->onResolve($onResolved);
2016-05-24 04:32:41 +02:00
return;
}
try {
$onResolved(null, $this->result);
} catch (\Throwable $exception) {
Loop::defer(function () use ($exception) {
throw $exception;
});
2016-05-21 16:44:52 +02:00
}
return;
}
if (null === $this->onResolved) {
$this->onResolved = $onResolved;
2016-06-17 06:27:14 +02:00
return;
}
if (!$this->onResolved instanceof ResolutionQueue) {
$this->onResolved = new ResolutionQueue($this->onResolved);
2016-05-21 16:44:52 +02:00
}
2016-06-17 06:27:14 +02:00
$this->onResolved->push($onResolved);
2016-05-21 16:44:52 +02:00
}
/**
* @param mixed $value
2016-08-11 21:35:58 +02:00
*
2016-11-14 20:59:21 +01:00
* @throws \Error Thrown if the promise has already been resolved.
2016-05-21 16:44:52 +02:00
*/
private function resolve($value = null) {
2016-05-21 16:44:52 +02:00
if ($this->resolved) {
2016-11-14 20:59:21 +01:00
throw new \Error("Promise has already been resolved");
2016-05-21 16:44:52 +02:00
}
2017-02-20 21:53:58 +01:00
if ($value instanceof ReactPromise) {
$value = adapt($value);
}
2016-05-21 16:44:52 +02:00
$this->resolved = true;
2016-06-15 04:53:50 +02:00
$this->result = $value;
2016-05-21 16:44:52 +02:00
2016-06-17 06:27:14 +02:00
if ($this->onResolved === null) {
return;
}
$onResolved = $this->onResolved;
$this->onResolved = null;
2016-05-21 16:44:52 +02:00
2016-11-14 20:59:21 +01:00
if ($this->result instanceof Promise) {
$this->result->onResolve($onResolved);
2016-06-17 06:27:14 +02:00
return;
}
2016-12-23 23:48:24 +01:00
2016-06-17 06:27:14 +02:00
try {
$onResolved(null, $this->result);
} catch (\Throwable $exception) {
Loop::defer(function () use ($exception) {
throw $exception;
});
2016-06-15 04:53:50 +02:00
}
2016-05-21 16:44:52 +02:00
}
/**
2016-08-11 21:35:58 +02:00
* @param \Throwable $reason Failure reason.
2016-05-21 16:44:52 +02:00
*/
2016-08-11 21:35:58 +02:00
private function fail(\Throwable $reason) {
2016-05-21 16:44:52 +02:00
$this->resolve(new Failure($reason));
}
}