2016-12-29 21:09:49 +01:00
|
|
|
<?php
|
2016-08-16 06:46:26 +02:00
|
|
|
|
2016-05-24 05:48:28 +02:00
|
|
|
namespace Amp;
|
2016-05-21 16:44:52 +02:00
|
|
|
|
2017-03-28 01:37:55 +02:00
|
|
|
use React\Promise\PromiseInterface as ReactPromise;
|
|
|
|
|
2016-06-01 19:18:11 +02:00
|
|
|
/**
|
2017-04-26 19:20:30 +02:00
|
|
|
* Creates a failed promise using the given exception.
|
2016-06-01 19:18:11 +02:00
|
|
|
*/
|
2018-06-18 20:00:01 +02:00
|
|
|
final class Failure implements Promise
|
|
|
|
{
|
2016-08-18 05:25:54 +02:00
|
|
|
/** @var \Throwable $exception */
|
2016-05-21 16:44:52 +02:00
|
|
|
private $exception;
|
|
|
|
|
|
|
|
/**
|
2016-08-11 21:35:58 +02:00
|
|
|
* @param \Throwable $exception Rejection reason.
|
2016-05-21 16:44:52 +02:00
|
|
|
*/
|
2018-06-18 20:00:01 +02:00
|
|
|
public function __construct(\Throwable $exception)
|
|
|
|
{
|
2016-05-21 16:44:52 +02:00
|
|
|
$this->exception = $exception;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* {@inheritdoc}
|
|
|
|
*/
|
2018-06-18 20:00:01 +02:00
|
|
|
public function onResolve(callable $onResolved)
|
|
|
|
{
|
2016-05-21 16:44:52 +02:00
|
|
|
try {
|
2017-03-28 01:37:55 +02:00
|
|
|
$result = $onResolved($this->exception, null);
|
|
|
|
|
|
|
|
if ($result === null) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($result instanceof \Generator) {
|
|
|
|
$result = new Coroutine($result);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($result instanceof Promise || $result instanceof ReactPromise) {
|
|
|
|
Promise\rethrow($result);
|
|
|
|
}
|
2016-05-21 16:44:52 +02:00
|
|
|
} catch (\Throwable $exception) {
|
2017-06-05 07:21:45 +02:00
|
|
|
Loop::defer(static function () use ($exception) {
|
2017-03-10 22:32:58 +01:00
|
|
|
throw $exception;
|
|
|
|
});
|
2016-05-21 16:44:52 +02:00
|
|
|
}
|
|
|
|
}
|
2016-05-22 20:43:37 +02:00
|
|
|
}
|