1
0
mirror of https://github.com/danog/amp.git synced 2024-11-26 20:15:00 +01:00
amp/lib/Success.php

53 lines
1.3 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;
2016-05-21 16:44:52 +02:00
2017-02-20 21:53:58 +01:00
use React\Promise\PromiseInterface as ReactPromise;
2016-06-01 19:18:11 +02:00
/**
* Creates a successful promise using the given value (which can be any value except another object implementing
* `Amp\Promise`).
2016-06-01 19:18:11 +02:00
*/
final class Success implements Promise {
2016-08-18 05:25:54 +02:00
/** @var mixed */
2016-05-21 16:44:52 +02:00
private $value;
/**
2017-03-12 17:05:52 +01:00
* @param mixed $value Anything other than a Promise object.
2016-05-21 16:44:52 +02:00
*
2016-11-14 20:59:21 +01:00
* @throws \Error If a promise is given as the value.
2016-05-21 16:44:52 +02:00
*/
public function __construct($value = null) {
2017-02-20 21:53:58 +01:00
if ($value instanceof Promise || $value instanceof ReactPromise) {
2016-11-14 20:59:21 +01:00
throw new \Error("Cannot use a promise as success value");
2016-05-21 16:44:52 +02:00
}
$this->value = $value;
}
/**
* {@inheritdoc}
*/
public function onResolve(callable $onResolved) {
2016-05-21 16:44:52 +02:00
try {
$result = $onResolved(null, $this->value);
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) {
Loop::defer(function () use ($exception) {
throw $exception;
});
2016-05-21 16:44:52 +02:00
}
}
}