1
0
mirror of https://github.com/danog/amp.git synced 2024-11-27 04:24:42 +01:00
amp/lib/functions.php

473 lines
13 KiB
PHP
Raw Normal View History

2016-05-21 16:44:52 +02:00
<?php
namespace Amp\Awaitable;
use Interop\Async\Awaitable;
use Interop\Async\Loop;
use Interop\Async\LoopDriver;
2016-05-21 19:19:48 +02:00
/**
* Returns a new function that when invoked runs the Generator returned by $worker as a coroutine.
*
* @param callable(mixed ...$args): \Generator $worker
*
* @return callable(mixed ...$args): \Amp\Awaitable\Coroutine
*/
function coroutine(callable $worker) {
return function (/* ...$args */) use ($worker) {
$generator = \call_user_func_array($worker, \func_get_args());
if (!$generator instanceof \Generator) {
throw new \LogicException("The callable did not return a Generator");
}
2016-05-21 16:44:52 +02:00
2016-05-21 19:19:48 +02:00
return new Coroutine($generator);
};
}
2016-05-21 16:44:52 +02:00
2016-05-21 19:19:48 +02:00
/**
* Registers a callback that will forward the failure reason to the Loop error handler if the awaitable fails.
*
* @param \Interop\Async\Awaitable $awaitable
*/
function rethrow(Awaitable $awaitable) {
2016-05-22 10:57:10 +02:00
$awaitable->when(function ($exception) {
2016-05-21 16:44:52 +02:00
if ($exception) {
2016-05-21 19:19:48 +02:00
/** @var \Throwable|\Exception $exception */
2016-05-21 16:44:52 +02:00
throw $exception;
}
2016-05-21 19:19:48 +02:00
});
}
2016-05-21 16:44:52 +02:00
2016-05-21 19:19:48 +02:00
/**
* Runs the event loop until the awaitable is resolved. Should not be called within a running event loop.
*
* @param \Interop\Async\Awaitable $awaitable
* @param \Interop\Async\LoopDriver|null $driver
*
* @return mixed Awaitable success value.
*
* @throws \Throwable|\Exception Awaitable failure reason.
*/
function wait(Awaitable $awaitable, LoopDriver $driver = null) {
Loop::execute(function () use (&$value, &$exception, $awaitable) {
2016-05-22 10:57:10 +02:00
$awaitable->when(function ($e, $v) use (&$value, &$exception) {
2016-05-21 19:19:48 +02:00
Loop::stop();
$exception = $e;
$value = $v;
});
2016-05-22 10:57:31 +02:00
}, $driver ?: Loop::get());
2016-05-21 19:19:48 +02:00
if ($exception) {
throw $exception;
2016-05-21 16:44:52 +02:00
}
2016-05-21 19:19:48 +02:00
return $value;
}
2016-05-21 16:44:52 +02:00
2016-05-21 19:19:48 +02:00
/**
* Pipe the promised value through the specified functor once it resolves.
*
* @param \Interop\Async\Awaitable $awaitable
* @param callable(mixed $value): mixed $functor
*
* @return \Interop\Async\Awaitable
*/
function pipe(Awaitable $awaitable, callable $functor) {
$deferred = new Deferred;
2016-05-21 19:19:48 +02:00
$awaitable->when(function ($exception, $value) use ($deferred, $functor) {
2016-05-21 19:19:48 +02:00
if ($exception) {
$deferred->fail($exception);
return;
}
2016-05-21 16:44:52 +02:00
2016-05-21 19:19:48 +02:00
try {
$deferred->resolve($functor($value));
} catch (\Throwable $exception) {
$deferred->fail($exception);
} catch (\Exception $exception) {
$deferred->fail($exception);
}
});
2016-05-21 16:44:52 +02:00
2016-05-21 19:19:48 +02:00
return $deferred->getAwaitable();
}
2016-05-21 16:44:52 +02:00
2016-05-21 19:19:48 +02:00
/**
* @param \Interop\Async\Awaitable $awaitable
* @param callable(\Throwable|\Exception $exception): mixed $functor
*
* @return \Interop\Async\Awaitable
*/
function capture(Awaitable $awaitable, callable $functor) {
$deferred = new Deferred;
2016-05-21 19:19:48 +02:00
$awaitable->when(function ($exception, $value) use ($deferred, $functor) {
2016-05-21 19:19:48 +02:00
if (!$exception) {
$deferred->resolve($value);
return;
}
2016-05-21 16:44:52 +02:00
2016-05-21 19:19:48 +02:00
try {
$deferred->resolve($functor($exception));
} catch (\Throwable $exception) {
$deferred->fail($exception);
} catch (\Exception $exception) {
$deferred->fail($exception);
}
});
2016-05-21 16:44:52 +02:00
2016-05-21 19:19:48 +02:00
return $deferred->getAwaitable();
}
2016-05-21 16:44:52 +02:00
2016-05-21 19:19:48 +02:00
/**
* Create an artificial timeout for any Awaitable.
*
* If the timeout expires before the awaitable is resolved, the returned awaitable fails with an instance of
* \Amp\Awaitable\Exception\TimeoutException.
*
* @param \Interop\Async\Awaitable $awaitable
* @param int $timeout Timeout in milliseconds.
*
* @return \Interop\Async\Awaitable
*/
function timeout(Awaitable $awaitable, $timeout) {
$deferred = new Deferred;
2016-05-21 19:19:48 +02:00
$watcher = Loop::delay(function () use ($deferred) {
$deferred->fail(new Exception\TimeoutException);
2016-05-21 19:19:48 +02:00
}, $timeout);
$onResolved = function () use ($awaitable, $deferred, $watcher) {
Loop::cancel($watcher);
$deferred->resolve($awaitable);
};
$awaitable->when($onResolved);
return $deferred->getAwaitable();
}
2016-05-21 16:44:52 +02:00
2016-05-21 19:19:48 +02:00
/**
* Returns an awaitable that succeeds after $time elapses.
2016-05-21 19:19:48 +02:00
*
* @param int $time
2016-05-21 19:19:48 +02:00
*
* @return \Interop\Async\Awaitable
*/
function pause($time) {
$deferred = new Deferred;
2016-05-21 19:19:48 +02:00
Loop::delay(function () use ($deferred) {
$deferred->resolve();
}, $time);
2016-05-21 16:44:52 +02:00
2016-05-21 19:19:48 +02:00
return $deferred->getAwaitable();
}
/**
* Returns a awaitable that calls $promisor only when the result of the awaitable is requested (e.g., then() or
* done() is called on the returned awaitable). $promisor can return a awaitable or any value. If $promisor throws
* an exception, the returned awaitable is rejected with that exception.
*
* @param callable $promisor
* @param mixed ...$args
*
* @return \Interop\Async\Awaitable
*/
function lazy(callable $promisor /* ...$args */) {
$args = \array_slice(\func_get_args(), 1);
if (empty($args)) {
2016-05-22 06:47:50 +02:00
return new Internal\LazyAwaitable($promisor);
2016-05-21 16:44:52 +02:00
}
2016-05-22 06:47:50 +02:00
return new Internal\LazyAwaitable(function () use ($promisor, $args) {
2016-05-21 19:19:48 +02:00
return \call_user_func_array($promisor, $args);
});
}
2016-05-21 16:44:52 +02:00
2016-05-21 19:19:48 +02:00
/**
* Adapts any object with a then(callable $onFulfilled, callable $onRejected) method to a awaitable usable by
* components depending on placeholders implementing Awaitable.
*
* @param object $thenable Object with a then() method.
*
* @return \Interop\Async\Awaitable Awaitable resolved by the $thenable object.
*/
function adapt($thenable) {
if (!\is_object($thenable) || !\method_exists($thenable, "then")) {
return new Failure(new \InvalidArgumentException("Must provide an object with a then() method"));
2016-05-21 16:44:52 +02:00
}
2016-05-22 20:24:39 +02:00
$deferred = new Deferred;
$thenable->then([$deferred, 'resolve'], [$deferred, 'fail']);
return $deferred->getAwaitable();
2016-05-21 19:19:48 +02:00
}
/**
* Wraps the given callable $worker in a awaitable aware function that has the same number of arguments as $worker,
* but those arguments may be awaitables for the future argument value or just values. The returned function will
* return a awaitable for the return value of $worker and will never throw. The $worker function will not be called
* until each awaitable given as an argument is fulfilled. If any awaitable provided as an argument fails, the
* awaitable returned by the returned function will be failed for the same reason. The awaitable succeeds with
* the return value of $worker or failed if $worker throws.
*
* @param callable $worker
*
* @return callable
*/
function lift(callable $worker) {
2016-05-21 16:44:52 +02:00
/**
2016-05-21 19:19:48 +02:00
* @param mixed ...$args Awaitables or values.
2016-05-21 16:44:52 +02:00
*
* @return \Interop\Async\Awaitable
*/
2016-05-21 19:19:48 +02:00
return function (/* ...$args */) use ($worker) {
$args = \func_get_args();
2016-05-21 16:44:52 +02:00
foreach ($args as $key => $arg) {
if (!$arg instanceof Awaitable) {
$args[$key] = new Success($arg);
}
}
2016-05-21 19:19:48 +02:00
if (1 === \count($args)) {
return pipe($args[0], $worker);
2016-05-21 16:44:52 +02:00
}
2016-05-21 19:19:48 +02:00
return pipe(all($args), function (array $args) use ($worker) {
return \call_user_func_array($worker, $args);
2016-05-21 16:44:52 +02:00
});
2016-05-21 19:19:48 +02:00
};
}
2016-05-21 16:44:52 +02:00
2016-05-21 19:19:48 +02:00
/**
2016-05-22 06:47:50 +02:00
* Returns a awaitable that is resolved when all awaitables are resolved. The returned awaitable will not fail.
* Returned awaitable succeeds with an array of resolved awaitables, with keys identical and corresponding to the
* original given array.
2016-05-21 19:19:48 +02:00
*
* @param Awaitable[] $awaitables
2016-05-21 19:19:48 +02:00
*
* @return \Interop\Async\Awaitable
*/
function settle(array $awaitables) {
if (empty($awaitables)) {
return new Success([]);
2016-05-21 19:19:48 +02:00
}
2016-05-21 16:44:52 +02:00
$deferred = new Deferred;
2016-05-21 16:44:52 +02:00
2016-05-21 19:19:48 +02:00
$pending = \count($awaitables);
2016-05-21 16:44:52 +02:00
2016-05-21 19:19:48 +02:00
$onResolved = function () use (&$awaitables, &$pending, $deferred) {
if (0 === --$pending) {
$deferred->resolve($awaitables);
2016-05-21 16:44:52 +02:00
}
2016-05-21 19:19:48 +02:00
};
foreach ($awaitables as &$awaitable) {
if (!$awaitable instanceof Awaitable) {
return new Failure(new \InvalidArgumentException("Non-awaitable provided"));
}
2016-05-21 19:19:48 +02:00
$awaitable->when($onResolved);
2016-05-21 16:44:52 +02:00
}
2016-05-21 19:19:48 +02:00
return $deferred->getAwaitable();
}
2016-05-21 16:44:52 +02:00
2016-05-21 19:19:48 +02:00
/**
* Returns a awaitable that succeeds when all awaitables succeed, and fails if any awaitable fails. Returned
* awaitable succeeds with an array of values used to succeed each contained awaitable, with keys corresponding to
* the array of awaitables.
*
* @param Awaitable[] $awaitables
2016-05-21 19:19:48 +02:00
*
* @return \Interop\Async\Awaitable
*/
function all(array $awaitables) {
if (empty($awaitables)) {
return new Success([]);
2016-05-21 16:44:52 +02:00
}
$deferred = new Deferred;
2016-05-21 16:44:52 +02:00
2016-05-21 19:19:48 +02:00
$pending = \count($awaitables);
$values = [];
2016-05-21 16:44:52 +02:00
2016-05-21 19:19:48 +02:00
foreach ($awaitables as $key => $awaitable) {
if (!$awaitable instanceof Awaitable) {
return new Failure(new \InvalidArgumentException("Non-awaitable provided"));
}
$onResolved = function ($exception, $value) use ($key, &$values, &$pending, $deferred) {
2016-05-21 19:19:48 +02:00
if ($exception) {
$deferred->fail($exception);
return;
}
2016-05-21 16:44:52 +02:00
2016-05-21 19:19:48 +02:00
$values[$key] = $value;
2016-05-21 16:44:52 +02:00
if (0 === --$pending) {
2016-05-21 19:19:48 +02:00
$deferred->resolve($values);
2016-05-21 16:44:52 +02:00
}
};
$awaitable->when($onResolved);
2016-05-21 19:19:48 +02:00
}
2016-05-21 16:44:52 +02:00
2016-05-21 19:19:48 +02:00
return $deferred->getAwaitable();
}
/**
* Returns a awaitable that succeeds when the first awaitable succeeds, and fails only if all awaitables fail.
2016-05-21 19:19:48 +02:00
*
* @param Awaitable[] $awaitables
2016-05-21 19:19:48 +02:00
*
* @return \Interop\Async\Awaitable
*/
function first(array $awaitables) {
2016-05-21 19:19:48 +02:00
if (empty($awaitables)) {
return new Failure(new \InvalidArgumentException("No awaitables provided"));
2016-05-21 16:44:52 +02:00
}
$deferred = new Deferred;
2016-05-21 16:44:52 +02:00
2016-05-21 19:19:48 +02:00
$pending = \count($awaitables);
$exceptions = [];
2016-05-21 16:44:52 +02:00
2016-05-21 19:19:48 +02:00
foreach ($awaitables as $key => $awaitable) {
if (!$awaitable instanceof Awaitable) {
return new Failure(new \InvalidArgumentException("Non-awaitable provided"));
}
$onResolved = function ($exception, $value) use ($key, &$exceptions, &$pending, $deferred) {
2016-05-21 19:19:48 +02:00
if (!$exception) {
$deferred->resolve($value);
return;
}
2016-05-21 16:44:52 +02:00
2016-05-21 19:19:48 +02:00
$exceptions[$key] = $exception;
if (0 === --$pending) {
$deferred->fail(new Exception\MultiReasonException($exceptions));
}
};
2016-05-21 16:44:52 +02:00
$awaitable->when($onResolved);
2016-05-21 19:19:48 +02:00
}
2016-05-21 16:44:52 +02:00
2016-05-21 19:19:48 +02:00
return $deferred->getAwaitable();
}
/**
* Returns a awaitable that succeeds when $required number of awaitables succeed. The awaitable fails if $required
* number of awaitables can no longer succeed.
*
* @param Awaitable[] $awaitables
2016-05-21 19:19:48 +02:00
* @param int $required Number of awaitables that must succeed to succeed the returned awaitable.
*
* @return \Interop\Async\Awaitable
*/
function some(array $awaitables, $required) {
$required = (int) $required;
if (0 >= $required) {
return new Success([]);
2016-05-21 16:44:52 +02:00
}
2016-05-21 19:19:48 +02:00
$pending = \count($awaitables);
2016-05-21 16:44:52 +02:00
2016-05-21 19:19:48 +02:00
if ($required > $pending) {
return new Failure(new \InvalidArgumentException("Too few awaitables provided"));
2016-05-21 19:19:48 +02:00
}
2016-05-21 16:44:52 +02:00
$deferred = new Deferred;
2016-05-21 16:44:52 +02:00
2016-05-21 19:19:48 +02:00
$required = \min($pending, $required);
$values = [];
$exceptions = [];
foreach ($awaitables as $key => $awaitable) {
if (!$awaitable instanceof Awaitable) {
return new Failure(new \InvalidArgumentException("Non-awaitable provided"));
}
$onResolved = function ($exception, $value) use (
2016-05-21 19:19:48 +02:00
&$key, &$values, &$exceptions, &$pending, &$required, $deferred
) {
if ($exception) {
2016-05-21 16:44:52 +02:00
$exceptions[$key] = $exception;
2016-05-21 19:19:48 +02:00
if ($required > --$pending) {
2016-05-21 16:44:52 +02:00
$deferred->fail(new Exception\MultiReasonException($exceptions));
}
2016-05-21 19:19:48 +02:00
return;
}
2016-05-21 16:44:52 +02:00
2016-05-21 19:19:48 +02:00
$values[$key] = $value;
--$pending;
if (0 === --$required) {
$deferred->resolve($values);
}
};
2016-05-21 16:44:52 +02:00
$awaitable->when($onResolved);
2016-05-21 16:44:52 +02:00
}
2016-05-21 19:19:48 +02:00
return $deferred->getAwaitable();
}
2016-05-21 16:44:52 +02:00
2016-05-21 19:19:48 +02:00
/**
* Returns a awaitable that succeeds or fails when the first awaitable succeeds or fails.
*
* @param Awaitable[] $awaitables
2016-05-21 19:19:48 +02:00
*
* @return \Interop\Async\Awaitable
*/
function choose(array $awaitables) {
if (empty($awaitables)) {
return new Failure(new \InvalidArgumentException("No awaitables provided"));
2016-05-21 16:44:52 +02:00
}
$deferred = new Deferred;
2016-05-21 16:44:52 +02:00
2016-05-21 19:19:48 +02:00
foreach ($awaitables as $awaitable) {
if (!$awaitable instanceof Awaitable) {
return new Failure(new \InvalidArgumentException("Non-awaitable provided"));
}
$awaitable->when(function ($exception, $value) use ($deferred) {
2016-05-21 19:19:48 +02:00
if ($exception) {
$deferred->fail($exception);
return;
}
2016-05-21 16:44:52 +02:00
2016-05-21 19:19:48 +02:00
$deferred->resolve($value);
});
2016-05-21 16:44:52 +02:00
}
2016-05-21 19:19:48 +02:00
return $deferred->getAwaitable();
}
2016-05-21 16:44:52 +02:00
2016-05-21 19:19:48 +02:00
/**
* Maps the callback to each awaitable as it succeeds. Returns an array of awaitables resolved by the return
* callback value of the callback function. The callback may return awaitables or throw exceptions to fail
* awaitables in the array. If a awaitable in the passed array fails, the callback will not be called and the
* awaitable in the array fails for the same reason. Tip: Use all() or settle() to determine when all
* awaitables in the array have been resolved.
*
* @param callable(mixed $value): mixed $callback
* @param Awaitable[] ...$awaitables
2016-05-21 19:19:48 +02:00
*
* @return \Interop\Async\Awaitable[] Array of awaitables resolved with the result of the mapped function.
*/
function map(callable $callback /* array ...$awaitables */) {
$args = \func_get_args();
$args[0] = lift($args[0]);
return \call_user_func_array("array_map", $args);
2016-05-21 16:44:52 +02:00
}