mirror of
https://github.com/danog/parallel.git
synced 2025-01-23 06:21:12 +01:00
109 lines
1.9 KiB
PHP
109 lines
1.9 KiB
PHP
|
<?php
|
||
|
namespace Icicle\Concurrent\Worker;
|
||
|
|
||
|
use Icicle\Concurrent\Context;
|
||
|
use Icicle\Concurrent\Exception\StatusError;
|
||
|
use Icicle\Concurrent\Worker\Internal\TaskFailure;
|
||
|
|
||
|
abstract class AbstractWorker implements Worker
|
||
|
{
|
||
|
/**
|
||
|
* @var \Icicle\Concurrent\Context
|
||
|
*/
|
||
|
private $context;
|
||
|
|
||
|
/**
|
||
|
* @var bool
|
||
|
*/
|
||
|
private $idle = true;
|
||
|
|
||
|
/**
|
||
|
* @var bool
|
||
|
*/
|
||
|
private $shutdown = false;
|
||
|
|
||
|
/**
|
||
|
* @param \Icicle\Concurrent\Context $context
|
||
|
*/
|
||
|
public function __construct(Context $context)
|
||
|
{
|
||
|
$this->context = $context;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* {@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) {
|
||
|
throw new StatusError('The worker has been shutdown.');
|
||
|
}
|
||
|
|
||
|
$this->idle = false;
|
||
|
|
||
|
yield $this->context->send($task);
|
||
|
|
||
|
$result = (yield $this->context->receive());
|
||
|
|
||
|
$this->idle = true;
|
||
|
|
||
|
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;
|
||
|
|
||
|
yield $this->context->send(0);
|
||
|
|
||
|
yield $this->context->join();
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* {@inheritdoc}
|
||
|
*/
|
||
|
public function kill()
|
||
|
{
|
||
|
$this->context->kill();
|
||
|
}
|
||
|
}
|