1
0
mirror of https://github.com/danog/parallel.git synced 2024-12-02 17:52:14 +01:00
parallel/lib/Worker/WorkerThread.php
Aaron Piotrowski 7c8f936618
Autoloading → Bootstrap
Calling the file a boostrap makes more sense as more than defining an autoloader can be done in the file.
2019-02-22 16:10:30 -06:00

52 lines
1.8 KiB
PHP

<?php
namespace Amp\Parallel\Worker;
use Amp\Parallel\Context\Thread;
use Amp\Parallel\Sync\Channel;
use Amp\Promise;
/**
* A worker thread that executes task objects.
*/
final class WorkerThread extends TaskWorker
{
/**
* @param string $envClassName Name of class implementing \Amp\Parallel\Worker\Environment to instigate.
* Defaults to \Amp\Parallel\Worker\BasicEnvironment.
* @param string|null $bootstrapPath Path to custom autoloader.
*/
public function __construct(string $envClassName = BasicEnvironment::class, string $bootstrapPath = null)
{
parent::__construct(new Thread(static function (Channel $channel, string $className, string $bootstrapPath = null): Promise {
if ($bootstrapPath !== null) {
if (!\is_file($bootstrapPath)) {
throw new \Error(\sprintf("No file found at bootstrap file path given '%s'", $bootstrapPath));
}
// Include file within unbound closure to protect scope.
(static function () use ($bootstrapPath): void {
require $bootstrapPath;
})->bindTo(null, null)();
}
if (!\class_exists($className)) {
throw new \Error(\sprintf("Invalid environment class name '%s'", $className));
}
if (!\is_subclass_of($className, Environment::class)) {
throw new \Error(\sprintf("The class '%s' does not implement '%s'", $className, Environment::class));
}
$environment = new $className;
if (!\defined("AMP_WORKER")) {
\define("AMP_WORKER", \AMP_CONTEXT);
}
$runner = new TaskRunner($channel, $environment);
return $runner->run();
}, $envClassName, $bootstrapPath));
}
}