1
0
mirror of https://github.com/danog/parallel.git synced 2024-12-02 17:52:14 +01:00
parallel/lib/Worker/TaskWorker.php

201 lines
5.5 KiB
PHP
Raw Normal View History

2016-12-30 02:16:04 +01:00
<?php
2015-12-05 06:50:32 +01:00
2016-08-23 23:47:40 +02:00
namespace Amp\Parallel\Worker;
2016-08-18 18:04:48 +02:00
use Amp\Failure;
2017-12-08 04:26:55 +01:00
use Amp\Parallel\Context\Context;
use Amp\Parallel\Context\StatusError;
use Amp\Parallel\Sync\ChannelException;
2017-05-18 09:51:31 +02:00
use Amp\Promise;
use Amp\Success;
use Amp\TimeoutException;
use function Amp\call;
2015-12-05 06:50:32 +01:00
/**
* Base class for most common types of task workers.
*/
2018-10-27 01:29:45 +02:00
abstract class TaskWorker implements Worker
2018-10-07 16:50:45 +02:00
{
const SHUTDOWN_TIMEOUT = 1000;
2017-12-08 04:26:55 +01:00
/** @var \Amp\Parallel\Context\Context */
2015-12-05 06:50:32 +01:00
private $context;
/** @var \Amp\Promise|null */
private $pending;
/** @var \Amp\Promise|null */
private $exitStatus;
2015-12-05 06:50:32 +01:00
/**
* @param \Amp\Parallel\Context\Context $context A context running an instance of TaskRunner.
2015-12-05 06:50:32 +01:00
*/
2018-10-07 16:50:45 +02:00
public function __construct(Context $context)
{
2017-11-29 21:40:07 +01:00
if ($context->isRunning()) {
throw new \Error("The context was already running");
}
$this->context = $context;
$context = &$this->context;
2018-12-30 19:48:54 +01:00
$pending = &$this->pending;
\register_shutdown_function(static function () use (&$context, &$pending) {
if ($context === null || !$context->isRunning()) {
return;
}
try {
2018-12-30 19:48:54 +01:00
Promise\wait(Promise\timeout(call(function () use ($context, $pending) {
if ($pending) {
yield $pending;
}
yield $context->send(0);
return yield $context->join();
}), self::SHUTDOWN_TIMEOUT));
} catch (\Throwable $exception) {
if ($context !== null) {
$context->kill();
}
}
});
2015-12-05 06:50:32 +01:00
}
/**
* {@inheritdoc}
*/
2018-10-07 16:50:45 +02:00
public function isRunning(): bool
{
return !$this->exitStatus;
2015-12-05 06:50:32 +01:00
}
/**
* {@inheritdoc}
*/
2018-10-07 16:50:45 +02:00
public function isIdle(): bool
{
return $this->pending === null;
2015-12-05 06:50:32 +01:00
}
/**
* {@inheritdoc}
*/
2018-10-07 16:50:45 +02:00
public function enqueue(Task $task): Promise
{
if ($this->exitStatus) {
2017-06-18 06:57:12 +02:00
throw new StatusError("The worker has been shut down");
}
2017-05-18 09:51:31 +02:00
$promise = $this->pending = call(function () use ($task) {
if ($this->pending) {
try {
yield $this->pending;
} catch (\Throwable $exception) {
// Ignore error from prior job.
2017-12-13 23:29:44 +01:00
}
}
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) {
try {
yield Promise\timeout($this->context->join(), 0);
} catch (TimeoutException $timeout) {
$this->kill();
throw new WorkerException("The worker failed unexpectedly", 0, $exception);
}
throw new WorkerException("The worker exited unexpectedly", 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();
2017-12-13 23:29:44 +01:00
});
$promise->onResolve(function () use ($promise) {
if ($this->pending === $promise) {
$this->pending = null;
}
});
return $promise;
2016-08-18 18:04:48 +02:00
}
/**
* {@inheritdoc}
*/
2018-10-07 16:50:45 +02:00
public function shutdown(): Promise
{
if ($this->exitStatus) {
return $this->exitStatus;
}
2017-05-18 09:51:31 +02:00
if ($this->context === null || !$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);
try {
return yield Promise\timeout($this->context->join(), self::SHUTDOWN_TIMEOUT);
} catch (\Throwable $exception) {
$this->context->kill();
throw new WorkerException("Failed to gracefully shutdown worker", 0, $exception);
} finally {
// Null properties to free memory because the shutdown function has references to these.
$this->context = null;
$this->pending = null;
}
});
2015-12-05 06:50:32 +01:00
}
/**
* {@inheritdoc}
*/
2018-10-07 16:50:45 +02:00
public function kill()
{
if ($this->exitStatus || $this->context === null) {
return;
}
if ($this->context->isRunning()) {
$this->context->kill();
$this->exitStatus = new Failure(new WorkerException("The worker was killed"));
return;
}
$this->exitStatus = new Success(0);
// Null properties to free memory because the shutdown function has references to these.
$this->context = null;
$this->pending = null;
2015-12-05 06:50:32 +01:00
}
}