1
0
mirror of https://github.com/danog/amp.git synced 2024-11-27 12:35:02 +01:00
amp/lib/LibeventReactor.php
2014-06-11 10:16:22 -04:00

284 lines
8.2 KiB
PHP
Executable File

<?php
namespace Alert;
class LibeventReactor implements SignalReactor {
private $base;
private $watchers = [];
private $lastWatcherId;
private $resolution = 1000;
private $isRunning = FALSE;
private $isGCScheduled = FALSE;
private $gcEvent;
private $stopException;
public function __construct() {
$this->lastWatcherId = PHP_INT_MAX * -1;
$this->base = event_base_new();
$this->gcEvent = event_new();
event_timer_set($this->gcEvent, [$this, 'collectGarbage']);
event_base_set($this->gcEvent, $this->base);
}
public function run(callable $onStart = NULL) {
if ($this->isRunning) {
return;
}
if ($onStart) {
$this->immediately($onStart);
}
$this->doRun();
}
public function tick() {
if (!$this->isRunning) {
$this->doRun(EVLOOP_ONCE | EVLOOP_NONBLOCK);
}
}
private function doRun($flags = 0) {
$this->isRunning = TRUE;
event_base_loop($this->base, $flags);
$this->isRunning = FALSE;
if ($this->stopException) {
$e = $this->stopException;
$this->stopException = NULL;
throw $e;
}
}
public function stop() {
event_base_loopexit($this->base);
}
public function at(callable $callback, $timeString) {
$now = time();
$executeAt = @strtotime($timeString);
if ($executeAt === FALSE || $executeAt <= $now) {
throw new \InvalidArgumentException(
'Valid future time string (parsable by strtotime()) required'
);
}
$msDelay = ($executeAt - $now) * $this->resolution;
return $this->once($callback, $msDelay);
}
public function immediately(callable $callback) {
return $this->once($callback, $delay = 0);
}
public function once(callable $callback, $delay) {
$watcherId = ++$this->lastWatcherId;
$eventResource = event_new();
$delay = ($delay > 0) ? ($delay * $this->resolution) : 0;
$watcher = new LibeventWatcher;
$watcher->id = $watcherId;
$watcher->eventResource = $eventResource;
$watcher->interval = $delay;
$watcher->callback = $callback;
$watcher->wrapper = $this->wrapOnceCallback($watcher);
$this->watchers[$watcherId] = $watcher;
event_timer_set($eventResource, $watcher->wrapper);
event_base_set($eventResource, $this->base);
event_add($eventResource, $delay);
return $watcherId;
}
private function wrapOnceCallback(LibeventWatcher $watcher) {
$callback = $watcher->callback;
$watcherId = $watcher->id;
return function() use ($callback, $watcherId) {
try {
$callback($watcherId, $this);
$this->cancel($watcherId);
} catch (\Exception $e) {
$this->stopException = $e;
$this->stop();
}
};
}
public function repeat(callable $callback, $interval) {
$watcherId = ++$this->lastWatcherId;
$interval = ($interval > 0) ? ($interval * $this->resolution) : 0;
$eventResource = event_new();
$watcher = new LibeventWatcher;
$watcher->id = $watcherId;
$watcher->eventResource = $eventResource;
$watcher->interval = $interval;
$watcher->callback = $callback;
$watcher->wrapper = $this->wrapRepeatingCallback($watcher);
$this->watchers[$watcherId] = $watcher;
event_timer_set($eventResource, $watcher->wrapper);
event_base_set($eventResource, $this->base);
event_add($eventResource, $interval);
return $watcherId;
}
private function wrapRepeatingCallback(LibeventWatcher $watcher) {
$callback = $watcher->callback;
$watcherId = $watcher->id;
$eventResource = $watcher->eventResource;
$interval = $watcher->interval;
return function() use ($callback, $eventResource, $interval, $watcherId) {
try {
$callback($watcherId, $this);
event_add($eventResource, $interval);
} catch (\Exception $e) {
$this->stopException = $e;
$this->stop();
}
};
}
public function onReadable($stream, callable $callback, $enableNow = TRUE) {
return $this->watchIoStream($stream, EV_READ | EV_PERSIST, $callback, $enableNow);
}
public function onWritable($stream, callable $callback, $enableNow = TRUE) {
return $this->watchIoStream($stream, EV_WRITE | EV_PERSIST, $callback, $enableNow);
}
private function watchIoStream($stream, $flags, callable $callback, $enableNow) {
$watcherId = ++$this->lastWatcherId;
$eventResource = event_new();
$watcher = new LibeventWatcher;
$watcher->id = $watcherId;
$watcher->stream = $stream;
$watcher->callback = $callback;
$watcher->wrapper = $this->wrapStreamCallback($watcher);
$watcher->isEnabled = (bool) $enableNow;
$watcher->eventResource = $eventResource;
$this->watchers[$watcherId] = $watcher;
event_set($eventResource, $stream, $flags, $watcher->wrapper);
event_base_set($eventResource, $this->base);
if ($enableNow) {
event_add($eventResource);
}
return $watcherId;
}
private function wrapStreamCallback(LibeventWatcher $watcher) {
$callback = $watcher->callback;
$watcherId = $watcher->id;
return function($stream) use ($callback, $watcherId) {
try {
$callback($watcherId, $stream, $this);
} catch (\Exception $e) {
$this->stopException = $e;
$this->stop();
}
};
}
public function onSignal($signal, callable $callback) {
$signal = (int) $signal;
$watcherId = ++$this->lastWatcherId;
$eventResource = event_new();
$watcher = new LibeventWatcher;
$watcher->id = $watcherId;
$watcher->eventResource = $eventResource;
$watcher->callback = $callback;
$watcher->wrapper = $this->wrapSignalCallback($watcher);
$this->watchers[$watcherId] = $watcher;
event_set($eventResource, $signal, EV_SIGNAL | EV_PERSIST, $watcher->wrapper);
event_base_set($eventResource, $this->base);
event_add($eventResource);
return $watcherId;
}
private function wrapSignalCallback(LibeventWatcher $watcher) {
$callback = $watcher->callback;
$watcherId = $watcher->id;
return function() use ($callback, $watcherId) {
try {
$callback($watcherId, $this);
} catch (\Exception $e) {
$this->stopException = $e;
$this->stop();
}
};
}
public function cancel($watcherId) {
if (!isset($this->watchers[$watcherId])) {
return;
}
$watcher = $this->watchers[$watcherId];
event_del($watcher->eventResource);
$this->garbage[] = $watcher;
$this->scheduleGarbageCollection();
unset($this->watchers[$watcherId]);
}
public function disable($watcherId) {
if (!isset($this->watchers[$watcherId])) {
return;
}
$watcher = $this->watchers[$watcherId];
if ($watcher->isEnabled) {
event_del($watcher->eventResource);
$watcher->isEnabled = FALSE;
}
}
public function enable($watcherId) {
if (!isset($this->watchers[$watcherId])) {
return;
}
$watcher = $this->watchers[$watcherId];
if (!$watcher->isEnabled) {
event_add($watcher->eventResource, $watcher->interval);
$watcher->isEnabled = TRUE;
}
}
private function scheduleGarbageCollection() {
if (!$this->isGCScheduled) {
event_add($this->gcEvent, 0);
$this->isGCScheduled = TRUE;
}
}
private function collectGarbage() {
$this->garbage = [];
$this->isGCScheduled = FALSE;
event_del($this->gcEvent);
}
}