2016-06-08 16:12:42 +02:00
|
|
|
<?php
|
|
|
|
|
2017-03-10 19:19:32 +01:00
|
|
|
namespace Amp;
|
|
|
|
|
|
|
|
use Amp\Loop\Driver;
|
2017-03-12 11:25:21 +01:00
|
|
|
use Amp\Loop\DriverFactory;
|
2017-03-14 18:24:14 +01:00
|
|
|
use Amp\Loop\InvalidWatcherError;
|
2017-03-10 19:19:32 +01:00
|
|
|
use Amp\Loop\UnsupportedFeatureException;
|
2017-10-08 12:52:30 +02:00
|
|
|
use Amp\Loop\Watcher;
|
2017-03-10 19:19:32 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Accessor to allow global access to the event loop.
|
|
|
|
*
|
2017-03-10 21:31:57 +01:00
|
|
|
* @see \Amp\Loop\Driver
|
2017-03-10 19:19:32 +01:00
|
|
|
*/
|
2018-06-18 20:00:01 +02:00
|
|
|
final class Loop
|
|
|
|
{
|
2016-06-08 16:12:42 +02:00
|
|
|
/**
|
2017-03-10 19:19:32 +01:00
|
|
|
* @var Driver
|
2016-06-08 16:12:42 +02:00
|
|
|
*/
|
2017-03-10 22:34:52 +01:00
|
|
|
private static $driver;
|
2016-06-08 16:12:42 +02:00
|
|
|
|
2017-03-10 21:58:46 +01:00
|
|
|
/**
|
|
|
|
* Disable construction as this is a static class.
|
|
|
|
*/
|
2018-06-18 20:00:01 +02:00
|
|
|
private function __construct()
|
|
|
|
{
|
2017-03-10 21:58:46 +01:00
|
|
|
// intentionally left blank
|
|
|
|
}
|
|
|
|
|
2017-03-10 21:31:57 +01:00
|
|
|
/**
|
|
|
|
* Sets the driver to be used for `Loop::run()`.
|
|
|
|
*
|
2017-03-10 22:34:52 +01:00
|
|
|
* @param Driver $driver
|
2017-03-10 21:31:57 +01:00
|
|
|
*/
|
2018-06-18 20:00:01 +02:00
|
|
|
public static function set(Driver $driver)
|
|
|
|
{
|
2017-10-08 12:52:30 +02:00
|
|
|
try {
|
|
|
|
self::$driver = new class extends Driver {
|
2018-06-18 20:00:01 +02:00
|
|
|
protected function activate(array $watchers)
|
|
|
|
{
|
2017-10-08 12:52:30 +02:00
|
|
|
throw new \Error("Can't activate watcher during garbage collection.");
|
|
|
|
}
|
|
|
|
|
2018-06-18 20:00:01 +02:00
|
|
|
protected function dispatch(bool $blocking)
|
|
|
|
{
|
2017-10-08 12:52:30 +02:00
|
|
|
throw new \Error("Can't dispatch during garbage collection.");
|
|
|
|
}
|
|
|
|
|
2018-06-18 20:00:01 +02:00
|
|
|
protected function deactivate(Watcher $watcher)
|
|
|
|
{
|
2017-10-08 12:52:30 +02:00
|
|
|
// do nothing
|
|
|
|
}
|
|
|
|
|
2018-06-18 20:00:01 +02:00
|
|
|
public function getHandle()
|
|
|
|
{
|
2017-10-08 12:52:30 +02:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
\gc_collect_cycles();
|
|
|
|
} finally {
|
|
|
|
self::$driver = $driver;
|
|
|
|
}
|
2017-03-10 21:31:57 +01:00
|
|
|
}
|
|
|
|
|
2016-06-08 16:12:42 +02:00
|
|
|
/**
|
2017-03-10 19:19:32 +01:00
|
|
|
* Run the event loop and optionally execute a callback within the scope of it.
|
|
|
|
*
|
|
|
|
* The loop MUST continue to run until it is either stopped explicitly, no referenced watchers exist anymore, or an
|
|
|
|
* exception is thrown that cannot be handled. Exceptions that cannot be handled are exceptions thrown from an
|
|
|
|
* error handler or exceptions that would be passed to an error handler but none exists to handle them.
|
|
|
|
*
|
|
|
|
* @param callable|null $callback The callback to execute.
|
|
|
|
*
|
|
|
|
* @return void
|
2016-06-08 16:12:42 +02:00
|
|
|
*/
|
2018-06-18 20:00:01 +02:00
|
|
|
public static function run(callable $callback = null)
|
|
|
|
{
|
2017-03-10 19:19:32 +01:00
|
|
|
if ($callback) {
|
2017-03-10 23:23:29 +01:00
|
|
|
self::$driver->defer($callback);
|
2016-06-08 16:12:42 +02:00
|
|
|
}
|
|
|
|
|
2017-03-10 19:19:32 +01:00
|
|
|
self::$driver->run();
|
2016-06-08 16:12:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-03-10 19:19:32 +01:00
|
|
|
* Stop the event loop.
|
|
|
|
*
|
|
|
|
* When an event loop is stopped, it continues with its current tick and exits the loop afterwards. Multiple calls
|
|
|
|
* to stop MUST be ignored and MUST NOT raise an exception.
|
2016-06-08 16:12:42 +02:00
|
|
|
*
|
2017-03-10 19:19:32 +01:00
|
|
|
* @return void
|
2016-06-08 16:12:42 +02:00
|
|
|
*/
|
2018-06-18 20:00:01 +02:00
|
|
|
public static function stop()
|
|
|
|
{
|
2017-03-10 19:19:32 +01:00
|
|
|
self::$driver->stop();
|
|
|
|
}
|
2016-06-08 16:12:42 +02:00
|
|
|
|
|
|
|
/**
|
2017-03-10 19:19:32 +01:00
|
|
|
* Defer the execution of a callback.
|
|
|
|
*
|
|
|
|
* The deferred callable MUST be executed before any other type of watcher in a tick. Order of enabling MUST be
|
|
|
|
* preserved when executing the callbacks.
|
|
|
|
*
|
|
|
|
* The created watcher MUST immediately be marked as enabled, but only be activated (i.e. callback can be called)
|
|
|
|
* right before the next tick. Callbacks of watchers MUST NOT be called in the tick they were enabled.
|
|
|
|
*
|
2017-03-11 06:08:40 +01:00
|
|
|
* @param callable(string $watcherId, mixed $data) $callback The callback to defer. The `$watcherId` will be
|
2017-03-10 19:19:32 +01:00
|
|
|
* invalidated before the callback call.
|
|
|
|
* @param mixed $data Arbitrary data given to the callback function as the `$data` parameter.
|
2016-06-08 16:12:42 +02:00
|
|
|
*
|
2017-03-10 19:19:32 +01:00
|
|
|
* @return string An unique identifier that can be used to cancel, enable or disable the watcher.
|
2016-06-08 16:12:42 +02:00
|
|
|
*/
|
2018-06-18 20:00:01 +02:00
|
|
|
public static function defer(callable $callback, $data = null): string
|
|
|
|
{
|
2017-03-10 23:03:41 +01:00
|
|
|
return self::$driver->defer($callback, $data);
|
2017-03-10 19:19:32 +01:00
|
|
|
}
|
2016-06-08 16:12:42 +02:00
|
|
|
|
|
|
|
/**
|
2017-03-10 19:19:32 +01:00
|
|
|
* Delay the execution of a callback.
|
|
|
|
*
|
|
|
|
* The delay is a minimum and approximate, accuracy is not guaranteed. Order of calls MUST be determined by which
|
|
|
|
* timers expire first, but timers with the same expiration time MAY be executed in any order.
|
|
|
|
*
|
|
|
|
* The created watcher MUST immediately be marked as enabled, but only be activated (i.e. callback can be called)
|
|
|
|
* right before the next tick. Callbacks of watchers MUST NOT be called in the tick they were enabled.
|
2016-06-08 16:12:42 +02:00
|
|
|
*
|
2018-06-18 20:00:01 +02:00
|
|
|
* @param int $delay The amount of time, in milliseconds, to delay the execution for.
|
2017-03-11 06:08:40 +01:00
|
|
|
* @param callable(string $watcherId, mixed $data) $callback The callback to delay. The `$watcherId` will be
|
2017-03-10 19:19:32 +01:00
|
|
|
* invalidated before the callback call.
|
|
|
|
* @param mixed $data Arbitrary data given to the callback function as the `$data` parameter.
|
|
|
|
*
|
|
|
|
* @return string An unique identifier that can be used to cancel, enable or disable the watcher.
|
2016-06-08 16:12:42 +02:00
|
|
|
*/
|
2018-06-18 20:00:01 +02:00
|
|
|
public static function delay(int $delay, callable $callback, $data = null): string
|
|
|
|
{
|
2017-03-10 23:03:41 +01:00
|
|
|
return self::$driver->delay($delay, $callback, $data);
|
2017-03-10 19:19:32 +01:00
|
|
|
}
|
2016-06-08 16:12:42 +02:00
|
|
|
|
|
|
|
/**
|
2017-03-10 19:19:32 +01:00
|
|
|
* Repeatedly execute a callback.
|
|
|
|
*
|
|
|
|
* The interval between executions is a minimum and approximate, accuracy is not guaranteed. Order of calls MUST be
|
|
|
|
* determined by which timers expire first, but timers with the same expiration time MAY be executed in any order.
|
|
|
|
* The first execution is scheduled after the first interval period.
|
|
|
|
*
|
|
|
|
* The created watcher MUST immediately be marked as enabled, but only be activated (i.e. callback can be called)
|
|
|
|
* right before the next tick. Callbacks of watchers MUST NOT be called in the tick they were enabled.
|
|
|
|
*
|
2018-06-18 20:00:01 +02:00
|
|
|
* @param int $interval The time interval, in milliseconds, to wait between executions.
|
2017-03-11 06:08:40 +01:00
|
|
|
* @param callable(string $watcherId, mixed $data) $callback The callback to repeat.
|
2017-03-10 19:19:32 +01:00
|
|
|
* @param mixed $data Arbitrary data given to the callback function as the `$data` parameter.
|
|
|
|
*
|
|
|
|
* @return string An unique identifier that can be used to cancel, enable or disable the watcher.
|
2016-06-08 16:12:42 +02:00
|
|
|
*/
|
2018-06-18 20:00:01 +02:00
|
|
|
public static function repeat(int $interval, callable $callback, $data = null): string
|
|
|
|
{
|
2017-03-10 23:03:41 +01:00
|
|
|
return self::$driver->repeat($interval, $callback, $data);
|
2016-06-08 16:12:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-03-10 19:19:32 +01:00
|
|
|
* Execute a callback when a stream resource becomes readable or is closed for reading.
|
|
|
|
*
|
|
|
|
* Warning: Closing resources locally, e.g. with `fclose`, might not invoke the callback. Be sure to `cancel` the
|
|
|
|
* watcher when closing the resource locally. Drivers MAY choose to notify the user if there are watchers on invalid
|
|
|
|
* resources, but are not required to, due to the high performance impact. Watchers on closed resources are
|
|
|
|
* therefore undefined behavior.
|
|
|
|
*
|
|
|
|
* Multiple watchers on the same stream MAY be executed in any order.
|
|
|
|
*
|
|
|
|
* The created watcher MUST immediately be marked as enabled, but only be activated (i.e. callback can be called)
|
|
|
|
* right before the next tick. Callbacks of watchers MUST NOT be called in the tick they were enabled.
|
|
|
|
*
|
|
|
|
* @param resource $stream The stream to monitor.
|
2017-03-11 06:08:40 +01:00
|
|
|
* @param callable(string $watcherId, resource $stream, mixed $data) $callback The callback to execute.
|
2018-06-18 20:00:01 +02:00
|
|
|
* @param mixed $data Arbitrary data given to the callback function as the `$data` parameter.
|
2017-03-10 19:19:32 +01:00
|
|
|
*
|
|
|
|
* @return string An unique identifier that can be used to cancel, enable or disable the watcher.
|
2016-06-08 16:12:42 +02:00
|
|
|
*/
|
2018-06-18 20:00:01 +02:00
|
|
|
public static function onReadable($stream, callable $callback, $data = null): string
|
|
|
|
{
|
2017-03-10 23:03:41 +01:00
|
|
|
return self::$driver->onReadable($stream, $callback, $data);
|
2016-06-08 16:12:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-03-10 19:19:32 +01:00
|
|
|
* Execute a callback when a stream resource becomes writable or is closed for writing.
|
|
|
|
*
|
|
|
|
* Warning: Closing resources locally, e.g. with `fclose`, might not invoke the callback. Be sure to `cancel` the
|
|
|
|
* watcher when closing the resource locally. Drivers MAY choose to notify the user if there are watchers on invalid
|
|
|
|
* resources, but are not required to, due to the high performance impact. Watchers on closed resources are
|
|
|
|
* therefore undefined behavior.
|
|
|
|
*
|
|
|
|
* Multiple watchers on the same stream MAY be executed in any order.
|
|
|
|
*
|
|
|
|
* The created watcher MUST immediately be marked as enabled, but only be activated (i.e. callback can be called)
|
|
|
|
* right before the next tick. Callbacks of watchers MUST NOT be called in the tick they were enabled.
|
|
|
|
*
|
|
|
|
* @param resource $stream The stream to monitor.
|
2017-03-11 06:08:40 +01:00
|
|
|
* @param callable(string $watcherId, resource $stream, mixed $data) $callback The callback to execute.
|
2018-06-18 20:00:01 +02:00
|
|
|
* @param mixed $data Arbitrary data given to the callback function as the `$data` parameter.
|
2017-03-10 19:19:32 +01:00
|
|
|
*
|
|
|
|
* @return string An unique identifier that can be used to cancel, enable or disable the watcher.
|
2016-06-08 16:12:42 +02:00
|
|
|
*/
|
2018-06-18 20:00:01 +02:00
|
|
|
public static function onWritable($stream, callable $callback, $data = null): string
|
|
|
|
{
|
2017-03-10 23:03:41 +01:00
|
|
|
return self::$driver->onWritable($stream, $callback, $data);
|
2016-06-08 16:12:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-03-10 19:19:32 +01:00
|
|
|
* Execute a callback when a signal is received.
|
|
|
|
*
|
|
|
|
* Warning: Installing the same signal on different instances of this interface is deemed undefined behavior.
|
|
|
|
* Implementations MAY try to detect this, if possible, but are not required to. This is due to technical
|
|
|
|
* limitations of the signals being registered globally per process.
|
|
|
|
*
|
|
|
|
* Multiple watchers on the same signal MAY be executed in any order.
|
|
|
|
*
|
|
|
|
* The created watcher MUST immediately be marked as enabled, but only be activated (i.e. callback can be called)
|
|
|
|
* right before the next tick. Callbacks of watchers MUST NOT be called in the tick they were enabled.
|
|
|
|
*
|
2018-06-18 20:00:01 +02:00
|
|
|
* @param int $signo The signal number to monitor.
|
2017-03-11 06:08:40 +01:00
|
|
|
* @param callable(string $watcherId, int $signo, mixed $data) $callback The callback to execute.
|
2017-03-10 19:19:32 +01:00
|
|
|
* @param mixed $data Arbitrary data given to the callback function as the $data parameter.
|
|
|
|
*
|
|
|
|
* @return string An unique identifier that can be used to cancel, enable or disable the watcher.
|
|
|
|
*
|
|
|
|
* @throws UnsupportedFeatureException If signal handling is not supported.
|
2016-06-08 16:12:42 +02:00
|
|
|
*/
|
2018-06-18 20:00:01 +02:00
|
|
|
public static function onSignal(int $signo, callable $callback, $data = null): string
|
|
|
|
{
|
2017-03-10 23:03:41 +01:00
|
|
|
return self::$driver->onSignal($signo, $callback, $data);
|
2016-06-08 16:12:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-03-10 19:19:32 +01:00
|
|
|
* Enable a watcher to be active starting in the next tick.
|
|
|
|
*
|
|
|
|
* Watchers MUST immediately be marked as enabled, but only be activated (i.e. callbacks can be called) right before
|
|
|
|
* the next tick. Callbacks of watchers MUST NOT be called in the tick they were enabled.
|
|
|
|
*
|
|
|
|
* @param string $watcherId The watcher identifier.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*
|
2017-03-14 18:24:14 +01:00
|
|
|
* @throws InvalidWatcherError If the watcher identifier is invalid.
|
2016-06-08 16:12:42 +02:00
|
|
|
*/
|
2018-06-18 20:00:01 +02:00
|
|
|
public static function enable(string $watcherId)
|
|
|
|
{
|
2017-03-10 19:19:32 +01:00
|
|
|
self::$driver->enable($watcherId);
|
2016-06-08 16:12:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-03-10 19:19:32 +01:00
|
|
|
* Disable a watcher immediately.
|
|
|
|
*
|
|
|
|
* A watcher MUST be disabled immediately, e.g. if a defer watcher disables a later defer watcher, the second defer
|
|
|
|
* watcher isn't executed in this tick.
|
|
|
|
*
|
|
|
|
* Disabling a watcher MUST NOT invalidate the watcher. Calling this function MUST NOT fail, even if passed an
|
|
|
|
* invalid watcher.
|
|
|
|
*
|
|
|
|
* @param string $watcherId The watcher identifier.
|
2016-06-08 16:12:42 +02:00
|
|
|
*
|
2017-03-10 19:19:32 +01:00
|
|
|
* @return void
|
2016-06-08 16:12:42 +02:00
|
|
|
*/
|
2018-06-18 20:00:01 +02:00
|
|
|
public static function disable(string $watcherId)
|
|
|
|
{
|
2018-04-12 09:46:52 +02:00
|
|
|
if (\PHP_VERSION_ID < 70200 && !isset(self::$driver)) {
|
|
|
|
// Prior to PHP 7.2, self::$driver may be unset during destruct.
|
|
|
|
// See https://github.com/amphp/amp/issues/212.
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-03-10 19:19:32 +01:00
|
|
|
self::$driver->disable($watcherId);
|
2016-06-08 16:12:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-03-10 19:19:32 +01:00
|
|
|
* Cancel a watcher.
|
|
|
|
*
|
|
|
|
* This will detatch the event loop from all resources that are associated to the watcher. After this operation the
|
|
|
|
* watcher is permanently invalid. Calling this function MUST NOT fail, even if passed an invalid watcher.
|
|
|
|
*
|
|
|
|
* @param string $watcherId The watcher identifier.
|
|
|
|
*
|
|
|
|
* @return void
|
2016-06-08 16:12:42 +02:00
|
|
|
*/
|
2018-06-18 20:00:01 +02:00
|
|
|
public static function cancel(string $watcherId)
|
|
|
|
{
|
2018-04-12 09:46:52 +02:00
|
|
|
if (\PHP_VERSION_ID < 70200 && !isset(self::$driver)) {
|
|
|
|
// Prior to PHP 7.2, self::$driver may be unset during destruct.
|
|
|
|
// See https://github.com/amphp/amp/issues/212.
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-03-10 19:19:32 +01:00
|
|
|
self::$driver->cancel($watcherId);
|
2016-06-08 16:12:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-03-10 19:19:32 +01:00
|
|
|
* Reference a watcher.
|
|
|
|
*
|
|
|
|
* This will keep the event loop alive whilst the watcher is still being monitored. Watchers have this state by
|
|
|
|
* default.
|
|
|
|
*
|
|
|
|
* @param string $watcherId The watcher identifier.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*
|
2017-03-14 18:24:14 +01:00
|
|
|
* @throws InvalidWatcherError If the watcher identifier is invalid.
|
2016-06-08 16:12:42 +02:00
|
|
|
*/
|
2018-06-18 20:00:01 +02:00
|
|
|
public static function reference(string $watcherId)
|
|
|
|
{
|
2017-03-10 19:19:32 +01:00
|
|
|
self::$driver->reference($watcherId);
|
2016-06-08 16:12:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-03-10 19:19:32 +01:00
|
|
|
* Unreference a watcher.
|
|
|
|
*
|
|
|
|
* The event loop should exit the run method when only unreferenced watchers are still being monitored. Watchers
|
|
|
|
* are all referenced by default.
|
|
|
|
*
|
|
|
|
* @param string $watcherId The watcher identifier.
|
|
|
|
*
|
|
|
|
* @return void
|
2016-06-08 16:12:42 +02:00
|
|
|
*/
|
2018-06-18 20:00:01 +02:00
|
|
|
public static function unreference(string $watcherId)
|
|
|
|
{
|
2018-04-12 09:46:52 +02:00
|
|
|
if (\PHP_VERSION_ID < 70200 && !isset(self::$driver)) {
|
|
|
|
// Prior to PHP 7.2, self::$driver may be unset during destruct.
|
|
|
|
// See https://github.com/amphp/amp/issues/212.
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-03-10 19:19:32 +01:00
|
|
|
self::$driver->unreference($watcherId);
|
2016-06-08 16:12:42 +02:00
|
|
|
}
|
|
|
|
|
2018-01-06 03:32:57 +01:00
|
|
|
/**
|
|
|
|
* Returns the current loop time in millisecond increments. Note this value does not necessarily correlate to
|
|
|
|
* wall-clock time, rather the value returned is meant to be used in relative comparisons to prior values returned
|
|
|
|
* by this method (intervals, expiration calculations, etc.) and is only updated once per loop tick.
|
|
|
|
*
|
|
|
|
* @return int
|
|
|
|
*/
|
|
|
|
public static function now(): int
|
|
|
|
{
|
|
|
|
return self::$driver->now();
|
|
|
|
}
|
|
|
|
|
2016-06-08 16:12:42 +02:00
|
|
|
/**
|
2017-03-10 19:19:32 +01:00
|
|
|
* Stores information in the loop bound registry.
|
|
|
|
*
|
2017-03-18 21:52:23 +01:00
|
|
|
* Stored information is package private. Packages MUST NOT retrieve the stored state of other packages. Packages
|
|
|
|
* MUST use their namespace as prefix for keys. They may do so by using `SomeClass::class` as key.
|
|
|
|
*
|
|
|
|
* If packages want to expose loop bound state to consumers other than the package, they SHOULD provide a dedicated
|
|
|
|
* interface for that purpose instead of sharing the storage key.
|
2017-03-10 19:19:32 +01:00
|
|
|
*
|
|
|
|
* @param string $key The namespaced storage key.
|
2017-03-10 21:58:46 +01:00
|
|
|
* @param mixed $value The value to be stored.
|
2017-03-10 19:19:32 +01:00
|
|
|
*
|
|
|
|
* @return void
|
2016-06-08 16:12:42 +02:00
|
|
|
*/
|
2018-06-18 20:00:01 +02:00
|
|
|
public static function setState(string $key, $value)
|
|
|
|
{
|
2017-03-10 19:19:32 +01:00
|
|
|
self::$driver->setState($key, $value);
|
2016-06-08 16:12:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-03-10 19:19:32 +01:00
|
|
|
* Gets information stored bound to the loop.
|
|
|
|
*
|
|
|
|
* Stored information is package private. Packages MUST NOT retrieve the stored state of other packages. Packages
|
2017-03-18 21:52:23 +01:00
|
|
|
* MUST use their namespace as prefix for keys. They may do so by using `SomeClass::class` as key.
|
|
|
|
*
|
|
|
|
* If packages want to expose loop bound state to consumers other than the package, they SHOULD provide a dedicated
|
|
|
|
* interface for that purpose instead of sharing the storage key.
|
2017-03-10 19:19:32 +01:00
|
|
|
*
|
|
|
|
* @param string $key The namespaced storage key.
|
|
|
|
*
|
|
|
|
* @return mixed The previously stored value or `null` if it doesn't exist.
|
2016-06-08 16:12:42 +02:00
|
|
|
*/
|
2018-06-18 20:00:01 +02:00
|
|
|
public static function getState(string $key)
|
|
|
|
{
|
2017-03-10 19:19:32 +01:00
|
|
|
return self::$driver->getState($key);
|
2016-06-08 16:12:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-03-10 19:19:32 +01:00
|
|
|
* Set a callback to be executed when an error occurs.
|
|
|
|
*
|
|
|
|
* The callback receives the error as the first and only parameter. The return value of the callback gets ignored.
|
|
|
|
* If it can't handle the error, it MUST throw the error. Errors thrown by the callback or during its invocation
|
|
|
|
* MUST be thrown into the `run` loop and stop the driver.
|
|
|
|
*
|
|
|
|
* Subsequent calls to this method will overwrite the previous handler.
|
|
|
|
*
|
2017-03-14 18:24:14 +01:00
|
|
|
* @param callable(\Throwable $error)|null $callback The callback to execute. `null` will clear the
|
2017-03-10 19:19:32 +01:00
|
|
|
* current handler.
|
|
|
|
*
|
2017-03-14 18:24:14 +01:00
|
|
|
* @return callable(\Throwable $error)|null The previous handler, `null` if there was none.
|
2016-06-08 16:12:42 +02:00
|
|
|
*/
|
2018-06-18 20:00:01 +02:00
|
|
|
public static function setErrorHandler(callable $callback = null)
|
|
|
|
{
|
2017-03-10 19:19:32 +01:00
|
|
|
return self::$driver->setErrorHandler($callback);
|
2016-06-08 16:12:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-03-10 19:19:32 +01:00
|
|
|
* Retrieve an associative array of information about the event loop driver.
|
|
|
|
*
|
|
|
|
* The returned array MUST contain the following data describing the driver's currently registered watchers:
|
|
|
|
*
|
|
|
|
* [
|
|
|
|
* "defer" => ["enabled" => int, "disabled" => int],
|
|
|
|
* "delay" => ["enabled" => int, "disabled" => int],
|
|
|
|
* "repeat" => ["enabled" => int, "disabled" => int],
|
|
|
|
* "on_readable" => ["enabled" => int, "disabled" => int],
|
|
|
|
* "on_writable" => ["enabled" => int, "disabled" => int],
|
|
|
|
* "on_signal" => ["enabled" => int, "disabled" => int],
|
|
|
|
* "enabled_watchers" => ["referenced" => int, "unreferenced" => int],
|
|
|
|
* "running" => bool
|
|
|
|
* ];
|
|
|
|
*
|
|
|
|
* Implementations MAY optionally add more information in the array but at minimum the above `key => value` format
|
|
|
|
* MUST always be provided.
|
|
|
|
*
|
|
|
|
* @return array Statistics about the loop in the described format.
|
2016-06-08 16:12:42 +02:00
|
|
|
*/
|
2018-06-18 20:00:01 +02:00
|
|
|
public static function getInfo(): array
|
|
|
|
{
|
2017-03-10 22:34:52 +01:00
|
|
|
return self::$driver->getInfo();
|
2016-06-08 16:12:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-03-10 21:58:46 +01:00
|
|
|
* Retrieve the event loop driver that is in scope.
|
|
|
|
*
|
2017-03-10 22:46:12 +01:00
|
|
|
* @return Driver
|
2016-06-08 16:12:42 +02:00
|
|
|
*/
|
2018-06-18 20:00:01 +02:00
|
|
|
public static function get(): Driver
|
|
|
|
{
|
2017-03-10 21:58:46 +01:00
|
|
|
return self::$driver;
|
2016-06-08 16:12:42 +02:00
|
|
|
}
|
2017-03-10 21:31:57 +01:00
|
|
|
}
|
|
|
|
|
2017-04-13 18:20:46 +02:00
|
|
|
// Default factory, don't move this to a file loaded by the composer "files" autoload mechanism, otherwise custom
|
2017-03-10 21:31:57 +01:00
|
|
|
// implementations might have issues setting a default loop, because it's overridden by us then.
|
|
|
|
|
2017-03-15 08:40:58 +01:00
|
|
|
// @codeCoverageIgnoreStart
|
2017-03-12 11:25:21 +01:00
|
|
|
Loop::set((new DriverFactory)->create());
|
2017-04-24 15:39:08 +02:00
|
|
|
// @codeCoverageIgnoreEnd
|