2016-12-30 02:16:04 +01:00
|
|
|
<?php
|
2015-08-22 05:41:38 +02:00
|
|
|
|
2016-08-23 23:47:40 +02:00
|
|
|
namespace Amp\Parallel\Worker;
|
2016-08-18 18:04:48 +02:00
|
|
|
|
2017-11-29 22:01:32 +01:00
|
|
|
use Amp\Parallel\Context\Thread;
|
2017-05-18 09:51:31 +02:00
|
|
|
use Amp\Promise;
|
2015-08-22 05:41:38 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* A worker thread that executes task objects.
|
|
|
|
*/
|
2016-08-18 18:04:48 +02:00
|
|
|
class WorkerThread extends AbstractWorker {
|
2017-07-26 08:02:34 +02:00
|
|
|
/**
|
|
|
|
* @param string $envClassName Name of class implementing \Amp\Parallel\Worker\Environment to instigate.
|
|
|
|
* Defaults to \Amp\Parallel\Worker\BasicEnvironment.
|
|
|
|
*/
|
|
|
|
public function __construct(string $envClassName = BasicEnvironment::class) {
|
|
|
|
parent::__construct(new Thread(function (string $className): Promise {
|
2017-12-01 06:58:41 +01:00
|
|
|
if (!\class_exists($className)) {
|
|
|
|
throw new \Error(\sprintf("Invalid environment class name '%s'", $className));
|
2017-07-26 08:02:34 +02:00
|
|
|
}
|
|
|
|
|
2017-12-01 06:58:41 +01:00
|
|
|
if (!\is_subclass_of($className, Environment::class)) {
|
2017-07-26 08:02:34 +02:00
|
|
|
throw new \Error(\sprintf("The class '%s' does not implement '%s'", $className, Environment::class));
|
|
|
|
}
|
|
|
|
|
2017-12-01 06:58:41 +01:00
|
|
|
$environment = new $className;
|
2017-07-26 08:02:34 +02:00
|
|
|
|
|
|
|
if (!\defined("AMP_WORKER")) {
|
|
|
|
\define("AMP_WORKER", "amp-worker");
|
|
|
|
}
|
|
|
|
|
|
|
|
$runner = new TaskRunner($this, $environment);
|
2016-08-18 18:04:48 +02:00
|
|
|
return $runner->run();
|
2017-07-26 08:02:34 +02:00
|
|
|
}, $envClassName));
|
2015-08-22 05:41:38 +02:00
|
|
|
}
|
|
|
|
}
|