mirror of
https://github.com/danog/parallel.git
synced 2024-12-02 17:52:14 +01:00
d783e13fa4
Return this promise from subsequent calls to shutdown().
154 lines
3.7 KiB
PHP
154 lines
3.7 KiB
PHP
<?php
|
|
|
|
namespace Amp\Parallel\Worker;
|
|
|
|
use Amp\Failure;
|
|
use Amp\Parallel\Context\Context;
|
|
use Amp\Parallel\Context\StatusError;
|
|
use Amp\Parallel\Sync\ChannelException;
|
|
use Amp\Promise;
|
|
use Amp\Success;
|
|
use function Amp\call;
|
|
|
|
/**
|
|
* Base class for most common types of task workers.
|
|
*/
|
|
abstract class TaskWorker implements Worker
|
|
{
|
|
/** @var \Amp\Parallel\Context\Context */
|
|
private $context;
|
|
|
|
/** @var \Amp\Promise|null */
|
|
private $pending;
|
|
|
|
/** @var \Amp\Promise|null */
|
|
private $exitStatus;
|
|
|
|
/**
|
|
* @param \Amp\Parallel\Context\Context $context A context running an instance of TaskRunner.
|
|
*/
|
|
public function __construct(Context $context)
|
|
{
|
|
if ($context->isRunning()) {
|
|
throw new \Error("The context was already running");
|
|
}
|
|
|
|
$this->context = $context;
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function isRunning(): bool
|
|
{
|
|
return !$this->exitStatus;
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function isIdle(): bool
|
|
{
|
|
return $this->pending === null;
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function enqueue(Task $task): Promise
|
|
{
|
|
if ($this->exitStatus) {
|
|
throw new StatusError("The worker has been shut down");
|
|
}
|
|
|
|
$promise = $this->pending = call(function () use ($task) {
|
|
if ($this->pending) {
|
|
try {
|
|
yield $this->pending;
|
|
} catch (\Throwable $exception) {
|
|
// Ignore error from prior job.
|
|
}
|
|
}
|
|
|
|
if ($this->exitStatus) {
|
|
throw new WorkerException("The worker was shutdown");
|
|
}
|
|
|
|
if (!$this->context->isRunning()) {
|
|
yield $this->context->start();
|
|
}
|
|
|
|
$job = new Internal\Job($task);
|
|
|
|
try {
|
|
yield $this->context->send($job);
|
|
$result = yield $this->context->receive();
|
|
} catch (ChannelException $exception) {
|
|
throw new WorkerException("Communicating with the worker failed", 0, $exception);
|
|
}
|
|
|
|
if (!$result instanceof Internal\TaskResult) {
|
|
$this->kill();
|
|
throw new WorkerException("Context did not return a task result");
|
|
}
|
|
|
|
if ($result->getId() !== $job->getId()) {
|
|
$this->kill();
|
|
throw new WorkerException("Task results returned out of order");
|
|
}
|
|
|
|
return $result->promise();
|
|
});
|
|
|
|
$promise->onResolve(function () use ($promise) {
|
|
if ($this->pending === $promise) {
|
|
$this->pending = null;
|
|
}
|
|
});
|
|
|
|
return $promise;
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function shutdown(): Promise
|
|
{
|
|
if ($this->exitStatus) {
|
|
return $this->exitStatus;
|
|
}
|
|
|
|
if (!$this->context->isRunning()) {
|
|
return $this->exitStatus = new Success(0);
|
|
}
|
|
|
|
return $this->exitStatus = call(function () {
|
|
if ($this->pending) {
|
|
// If a task is currently running, wait for it to finish.
|
|
yield Promise\any([$this->pending]);
|
|
}
|
|
|
|
yield $this->context->send(0);
|
|
return yield $this->context->join();
|
|
});
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function kill()
|
|
{
|
|
if ($this->exitStatus) {
|
|
return;
|
|
}
|
|
|
|
if ($this->context->isRunning()) {
|
|
$this->context->kill();
|
|
$this->exitStatus = new Failure(new WorkerException("The worker was killed"));
|
|
return;
|
|
}
|
|
|
|
$this->exitStatus = new Success(0);
|
|
}
|
|
}
|