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

71 lines
1.9 KiB
PHP
Raw Normal View History

2016-12-30 02:16:04 +01:00
<?php
2015-08-27 16:10:08 +02:00
2016-08-23 23:47:40 +02:00
namespace Amp\Parallel\Worker\Internal;
2015-08-27 16:10:08 +02:00
use Amp\{ Coroutine, Failure, Success };
2016-08-23 23:47:40 +02:00
use Amp\Parallel\{ Sync\Channel, Worker\Environment };
use AsyncInterop\Promise;
2016-08-18 18:04:48 +02:00
class TaskRunner {
2016-08-26 17:10:03 +02:00
/** @var \Amp\Parallel\Sync\Channel */
2015-08-27 16:10:08 +02:00
private $channel;
2016-08-26 17:10:03 +02:00
/** @var \Amp\Parallel\Worker\Environment */
2015-09-10 06:29:41 +02:00
private $environment;
2016-08-18 18:04:48 +02:00
public function __construct(Channel $channel, Environment $environment) {
2015-08-27 16:10:08 +02:00
$this->channel = $channel;
2015-09-10 06:29:41 +02:00
$this->environment = $environment;
2015-08-27 16:10:08 +02:00
}
2016-08-18 18:04:48 +02:00
/**
* Runs the task runner, receiving tasks from the parent and sending the result of those tasks.
*
* @return \AsyncInterop\Promise
2016-08-18 18:04:48 +02:00
*/
2016-11-15 00:43:44 +01:00
public function run(): Promise {
2016-08-18 18:04:48 +02:00
return new Coroutine($this->execute());
}
2015-08-27 16:10:08 +02:00
/**
* @coroutine
*
* @return \Generator
*/
2016-08-18 18:04:48 +02:00
private function execute(): \Generator {
$job = yield $this->channel->receive();
2015-08-27 16:10:08 +02:00
while ($job instanceof Job) {
$task = $job->getTask();
2015-08-27 16:10:08 +02:00
try {
2016-08-18 18:04:48 +02:00
$result = $task->run($this->environment);
if ($result instanceof \Generator) {
$result = new Coroutine($result);
}
2016-11-15 00:43:44 +01:00
if (!$result instanceof Promise) {
$result = new Success($result);
2016-08-18 18:04:48 +02:00
}
2016-01-23 07:00:56 +01:00
} catch (\Throwable $exception) {
$result = new Failure($exception);
2015-08-27 16:10:08 +02:00
}
$result->when(function ($exception, $value) use ($job) {
if ($exception) {
$result = new TaskFailure($job->getId(), $exception);
} else {
$result = new TaskSuccess($job->getId(), $value);
}
$this->channel->send($result);
});
2015-08-27 16:10:08 +02:00
$job = yield $this->channel->receive();
2015-08-27 16:10:08 +02:00
}
return $job;
2015-08-27 16:10:08 +02:00
}
}