1
0
mirror of https://github.com/danog/amp.git synced 2024-11-27 12:35:02 +01:00
amp/lib/LazyPromise.php

47 lines
1.3 KiB
PHP
Raw Normal View History

<?php
2016-08-16 06:46:26 +02:00
namespace Amp;
2016-05-21 16:44:52 +02:00
use AsyncInterop\Promise;
2016-05-21 16:44:52 +02:00
2016-06-01 19:18:11 +02:00
/**
* Creates a promise that calls $promisor only when the result of the promise is requested (i.e. when() is called on
* the promise). $promisor can return a promise or any value. If $promisor throws an exception, the promise fails with
* that exception.
2016-06-01 19:18:11 +02:00
*/
2017-01-08 08:02:11 +01:00
class LazyPromise implements Promise {
2016-08-18 05:25:54 +02:00
/** @var callable|null */
private $promisor;
2016-05-21 16:44:52 +02:00
/** @var \AsyncInterop\Promise|null */
2016-11-14 20:59:21 +01:00
private $promise;
2016-05-21 16:44:52 +02:00
/**
* @param callable $promisor Function which starts an async operation, returning a Promise or any value.
2016-05-21 16:44:52 +02:00
*/
public function __construct(callable $promisor) {
$this->promisor = $promisor;
2016-05-21 16:44:52 +02:00
}
/**
2016-06-01 19:10:46 +02:00
* {@inheritdoc}
2016-05-21 16:44:52 +02:00
*/
2016-06-01 19:10:46 +02:00
public function when(callable $onResolved) {
if ($this->promise === null) {
$provider = $this->promisor;
$this->promisor = null;
2016-05-21 16:44:52 +02:00
try {
2016-11-14 20:59:21 +01:00
$this->promise = $provider();
2016-05-22 20:42:38 +02:00
2016-11-14 21:10:44 +01:00
if (!$this->promise instanceof Promise) {
2016-11-14 20:59:21 +01:00
$this->promise = new Success($this->promise);
2016-05-22 20:42:38 +02:00
}
2016-05-21 16:44:52 +02:00
} catch (\Throwable $exception) {
2016-11-14 20:59:21 +01:00
$this->promise = new Failure($exception);
2016-05-21 16:44:52 +02:00
}
}
2016-11-14 20:59:21 +01:00
$this->promise->when($onResolved);
2016-05-21 16:44:52 +02:00
}
}