2015-12-05 06:50:32 +01:00
|
|
|
<?php
|
|
|
|
namespace Icicle\Concurrent\Worker;
|
|
|
|
|
2015-12-12 01:15:15 +01:00
|
|
|
use Icicle\Awaitable\Delayed;
|
2015-12-05 06:50:32 +01:00
|
|
|
use Icicle\Concurrent\Context;
|
|
|
|
use Icicle\Concurrent\Exception\StatusError;
|
2015-12-12 05:44:25 +01:00
|
|
|
use Icicle\Concurrent\Exception\WorkerException;
|
2015-12-05 06:50:32 +01:00
|
|
|
use Icicle\Concurrent\Worker\Internal\TaskFailure;
|
|
|
|
|
2015-12-12 01:15:15 +01:00
|
|
|
/**
|
|
|
|
* Base class for most common types of task workers.
|
|
|
|
*/
|
2015-12-05 06:50:32 +01:00
|
|
|
abstract class AbstractWorker implements Worker
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @var \Icicle\Concurrent\Context
|
|
|
|
*/
|
|
|
|
private $context;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var bool
|
|
|
|
*/
|
|
|
|
private $idle = true;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var bool
|
|
|
|
*/
|
|
|
|
private $shutdown = false;
|
|
|
|
|
2015-12-12 05:44:25 +01:00
|
|
|
/**
|
|
|
|
* @var \Icicle\Awaitable\Delayed
|
|
|
|
*/
|
|
|
|
private $activeDelayed;
|
|
|
|
|
2015-12-12 01:15:15 +01:00
|
|
|
/**
|
|
|
|
* @var \SplQueue
|
|
|
|
*/
|
|
|
|
private $busyQueue;
|
|
|
|
|
2015-12-12 05:44:25 +01:00
|
|
|
|
2015-12-05 06:50:32 +01:00
|
|
|
/**
|
|
|
|
* @param \Icicle\Concurrent\Context $context
|
|
|
|
*/
|
|
|
|
public function __construct(Context $context)
|
|
|
|
{
|
|
|
|
$this->context = $context;
|
2015-12-12 01:15:15 +01:00
|
|
|
$this->busyQueue = new \SplQueue();
|
2015-12-05 06:50:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* {@inheritdoc}
|
|
|
|
*/
|
|
|
|
public function isRunning()
|
|
|
|
{
|
|
|
|
return $this->context->isRunning();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* {@inheritdoc}
|
|
|
|
*/
|
|
|
|
public function isIdle()
|
|
|
|
{
|
|
|
|
return $this->idle;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* {@inheritdoc}
|
|
|
|
*/
|
|
|
|
public function start()
|
|
|
|
{
|
|
|
|
$this->context->start();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* {@inheritdoc}
|
|
|
|
*/
|
|
|
|
public function enqueue(Task $task)
|
|
|
|
{
|
|
|
|
if (!$this->context->isRunning()) {
|
|
|
|
throw new StatusError('The worker has not been started.');
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($this->shutdown) {
|
2015-12-12 01:15:15 +01:00
|
|
|
throw new StatusError('The worker has been shut down.');
|
|
|
|
}
|
|
|
|
|
|
|
|
// If the worker is currently busy, store the task in a busy queue.
|
|
|
|
if (!$this->idle) {
|
|
|
|
$delayed = new Delayed();
|
|
|
|
$this->busyQueue->enqueue($delayed);
|
|
|
|
yield $delayed;
|
2015-12-05 06:50:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
$this->idle = false;
|
2015-12-12 05:44:25 +01:00
|
|
|
$this->activeDelayed = new Delayed();
|
2015-12-05 06:50:32 +01:00
|
|
|
|
2015-12-16 18:13:06 +01:00
|
|
|
try {
|
|
|
|
yield $this->context->send($task);
|
|
|
|
|
|
|
|
$result = (yield $this->context->receive());
|
|
|
|
} finally {
|
|
|
|
$this->idle = true;
|
|
|
|
$this->activeDelayed->resolve();
|
|
|
|
|
|
|
|
// We're no longer busy at the moment, so dequeue a waiting task.
|
|
|
|
if (!$this->busyQueue->isEmpty()) {
|
|
|
|
$this->busyQueue->dequeue()->resolve();
|
|
|
|
}
|
2015-12-12 01:15:15 +01:00
|
|
|
}
|
|
|
|
|
2015-12-05 06:50:32 +01:00
|
|
|
if ($result instanceof TaskFailure) {
|
|
|
|
throw $result->getException();
|
|
|
|
}
|
|
|
|
|
|
|
|
yield $result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* {@inheritdoc}
|
|
|
|
*/
|
|
|
|
public function shutdown()
|
|
|
|
{
|
|
|
|
if (!$this->context->isRunning() || $this->shutdown) {
|
|
|
|
throw new StatusError('The worker is not running.');
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->shutdown = true;
|
|
|
|
|
2015-12-12 01:15:15 +01:00
|
|
|
// Cancel any waiting tasks.
|
2015-12-12 05:44:25 +01:00
|
|
|
$this->cancelPending();
|
|
|
|
|
|
|
|
// If a task is currently running, wait for it to finish.
|
|
|
|
if (!$this->idle) {
|
|
|
|
yield $this->activeDelayed;
|
2015-12-12 01:15:15 +01:00
|
|
|
}
|
2015-12-12 05:44:25 +01:00
|
|
|
|
|
|
|
yield $this->context->send(0);
|
|
|
|
yield $this->context->join();
|
2015-12-05 06:50:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* {@inheritdoc}
|
|
|
|
*/
|
|
|
|
public function kill()
|
|
|
|
{
|
2015-12-12 05:44:25 +01:00
|
|
|
$this->cancelPending();
|
2015-12-05 06:50:32 +01:00
|
|
|
$this->context->kill();
|
2015-12-12 05:44:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Cancels all pending tasks.
|
|
|
|
*/
|
|
|
|
private function cancelPending()
|
|
|
|
{
|
|
|
|
$exception = new WorkerException('Worker was shut down.');
|
2015-12-12 01:15:15 +01:00
|
|
|
|
|
|
|
while (!$this->busyQueue->isEmpty()) {
|
2015-12-12 05:44:25 +01:00
|
|
|
$this->busyQueue->dequeue()->cancel($exception);
|
2015-12-12 01:15:15 +01:00
|
|
|
}
|
2015-12-05 06:50:32 +01:00
|
|
|
}
|
|
|
|
}
|