1
0
mirror of https://github.com/danog/parallel.git synced 2024-12-02 17:52:14 +01:00
parallel/lib/Process/ChannelledProcess.php
2016-12-29 19:16:04 -06:00

113 lines
2.7 KiB
PHP

<?php
namespace Amp\Parallel\Process;
use Amp\Parallel\{ Process as ProcessContext, StatusError, Strand, SynchronizationError };
use Amp\Parallel\Sync\{ ChannelledSocket, Internal\ExitStatus };
use Interop\Async\Promise;
class ChannelledProcess implements ProcessContext, Strand {
/** @var \Amp\Parallel\Process\Process */
private $process;
/** @var \Amp\Parallel\Sync\Channel */
private $channel;
/**
* @param string $path Path to PHP script.
* @param string $cwd Working directory.
* @param mixed[] $env Array of environment variables.
*/
public function __construct(string $path, string $cwd = "", array $env = []) {
$command = \PHP_BINARY . " " . $path;
$this->process = new Process($command, $cwd, $env);
}
/**
* Resets process values.
*/
public function __clone() {
$this->process = clone $this->process;
$this->channel = null;
}
/**
* {@inheritdoc}
*/
public function start() {
$this->process->start();
$this->channel = new ChannelledSocket($this->process->getStdOut(), $this->process->getStdIn(), false);
}
/**
* {@inheritdoc}
*/
public function isRunning(): bool {
return $this->process->isRunning();
}
/**
* {@inheritdoc}
*/
public function receive(): Promise {
if ($this->channel === null) {
throw new StatusError("The process has not been started");
}
return \Amp\pipe($this->channel->receive(), static function ($data) {
if ($data instanceof ExitStatus) {
$data = $data->getResult();
throw new SynchronizationError(\sprintf(
"Thread unexpectedly exited with result of type: %s",
\is_object($data) ? \get_class($data) : \gettype($data)
));
}
return $data;
});
}
/**
* {@inheritdoc}
*/
public function send($data): Promise {
if ($this->channel === null) {
throw new StatusError("The process has not been started");
}
if ($data instanceof ExitStatus) {
throw new \Error("Cannot send exit status objects");
}
return $this->channel->send($data);
}
/**
* {@inheritdoc}
*/
public function join(): Promise {
return $this->process->join();
}
/**
* {@inheritdoc}
*/
public function kill() {
$this->process->kill();
}
/**
* {@inheritdoc}
*/
public function getPid(): int {
return $this->process->getPid();
}
/**
* {@inheritdoc}
*/
public function signal(int $signo) {
$this->process->signal($signo);
}
}