Lightweight library that eases integrating async components built for ReactPHP in a traditional, blocking environment.
ReactPHP provides you a great set of base components and a huge ecosystem of third party libraries in order to perform async operations. The event-driven paradigm and asynchronous processing of any number of streams in real time enables you to build a whole new set of application on top of it. This is great for building modern, scalable applications from scratch and will likely result in you relying on a whole new software architecture.
But let's face it: Your day-to-day business is unlikely to allow you to build everything from scratch and ditch your existing production environment. This is where this library comes into play:
Let's block ReactPHP More specifically, this library eases the pain of integrating async components into your traditional, synchronous (blocking) application stack.
Table of contents
The following example code demonstrates how this library can be used along with an async HTTP client to process two non-blocking HTTP requests and block until the first (faster) one resolves.
function blockingExample()
{
// use a unique event loop instance for all parallel operations
$loop = React\EventLoop\Factory::create();
// this example uses an HTTP client
// this could be pretty much everything that binds to an event loop
$browser = new Clue\React\Buzz\Browser($loop);
// set up two parallel requests
$request1 = $browser->get('http://www.google.com/');
$request2 = $browser->get('http://www.google.co.uk/');
// keep the loop running (i.e. block) until the first response arrives
$fasterResponse = Block\awaitAny(array($request1, $request2), $loop);
return $fasterResponse->getBody();
}
This lightweight library consists only of a few simple functions.
All functions reside under the Clue\React\Block
namespace.
The below examples assume you use an import statement similar to this:
use Clue\React\Block;
Block\await(…);
Alternatively, you can also refer to them with their fully-qualified name:
\Clue\React\Block\await(…);
Each function is responsible for orchestrating the
EventLoop
in order to make it run (block) until your conditions are fulfilled.
$loop = React\EventLoop\Factory::create();
The sleep($seconds, LoopInterface $loop): void
function can be used to
wait/sleep for $time
seconds.
Block\sleep(1.5, $loop);
This function will only return after the given $time
has elapsed. In the
meantime, the event loop will run any other events attached to the same loop
until the timer fires. If there are no other events attached to this loop,
it will behave similar to the built-in sleep()
.
Internally, the $time
argument will be used as a timer for the loop so that
it keeps running until this timer triggers. This implies that if you pass a
really small (or negative) value, it will still start a timer and will thus
trigger at the earliest possible time in the future.
The await(PromiseInterface $promise, LoopInterface $loop, ?float $timeout = null): mixed
function can be used to
Block waiting for the given $promise
to be fulfilled.
$result = Block\await($promise, $loop, $timeout);
This function will only return after the given $promise
has settled, i.e.
either fulfilled or rejected. In the meantime, the event loop will run any
events attached to the same loop until the promise settles.
Once the promise is fulfilled, this function will return whatever the promise resolved to.
Once the promise is rejected, this will throw whatever the promise rejected
with. If the promise did not reject with an Exception
, then this function
will throw an UnexpectedValueException
instead.
try {
$result = Block\await($promise, $loop);
// promise successfully fulfilled with $value
echo 'Result: ' . $result;
} catch (Exception $exception) {
// promise rejected with $exception
echo 'ERROR: ' . $exception->getMessage();
}
If no $timeout
argument is given and the promise stays pending, then this
will potentially wait/block forever until the promise is settled.
If a $timeout
argument is given and the promise is still pending once the
timeout triggers, this will cancel()
the promise and throw a TimeoutException
.
This implies that if you pass a really small (or negative) value, it will still
start a timer and will thus trigger at the earliest possible time in the future.
The awaitAny(PromiseInterface[] $promises, LoopInterface $loop, ?float $timeout = null): mixed
function can be used to
wait for ANY of the given promises to be fulfilled.
$promises = array(
$promise1,
$promise2
);
$firstResult = Block\awaitAny($promises, $loop, $timeout);
echo 'First result: ' . $firstResult;
This function will only return after ANY of the given $promises
has been
fulfilled or will throw when ALL of them have been rejected. In the meantime,
the event loop will run any events attached to the same loop.
Once ANY promise is fulfilled, this function will return whatever this
promise resolved to and will try to cancel()
all remaining promises.
Once ALL promises reject, this function will fail and throw an UnderflowException
.
Likewise, this will throw if an empty array of $promises
is passed.
If no $timeout
argument is given and ALL promises stay pending, then this
will potentially wait/block forever until the promise is fulfilled.
If a $timeout
argument is given and ANY promises are still pending once
the timeout triggers, this will cancel()
all pending promises and throw a
TimeoutException
. This implies that if you pass a really small (or negative)
value, it will still start a timer and will thus trigger at the earliest
possible time in the future.
The awaitAll(PromiseInterface[] $promises, LoopInterface $loop, ?float $timeout = null): mixed[]
function can be used to
wait for ALL of the given promises to be fulfilled.
$promises = array(
$promise1,
$promise2
);
$allResults = Block\awaitAll($promises, $loop, $timeout);
echo 'First promise resolved with: ' . $allResults[0];
This function will only return after ALL of the given $promises
have been
fulfilled or will throw when ANY of them have been rejected. In the meantime,
the event loop will run any events attached to the same loop.
Once ALL promises are fulfilled, this will return an array with whatever
each promise resolves to. Array keys will be left intact, i.e. they can
be used to correlate the return array to the promises passed.
Likewise, this will return an empty array if an empty array of $promises
is passed.
Once ANY promise rejects, this will try to cancel()
all remaining promises
and throw an Exception
. If the promise did not reject with an Exception
,
then this function will throw an UnexpectedValueException
instead.
If no $timeout
argument is given and ANY promises stay pending, then this
will potentially wait/block forever until the promise is fulfilled.
If a $timeout
argument is given and ANY promises are still pending once
the timeout triggers, this will cancel()
all pending promises and throw a
TimeoutException
. This implies that if you pass a really small (or negative)
value, it will still start a timer and will thus trigger at the earliest
possible time in the future.
The recommended way to install this library is through Composer. New to Composer?
This project follows SemVer. This will install the latest supported version:
$ composer require clue/block-react:^1.3.1
See also the CHANGELOG for details about version upgrades.
This project aims to run on any platform and thus does not require any PHP extensions and supports running on legacy PHP 5.3 through current PHP 7+ and HHVM. It's highly recommended to use PHP 7+ for this project.
To run the test suite, you first need to clone this repo and then install all dependencies through Composer:
$ composer install
To run the test suite, go to the project root and run:
$ php vendor/bin/phpunit
This project is released under the permissive MIT license.
Did you know that I offer custom development services and issuing invoices for sponsorships of releases and for contributions? Contact me (@clue) for details.