%PDF- %PDF-
| Direktori : /home/vacivi36/vacivitta.com.br/vendor/rector/rector/src/Console/Command/ |
| Current File : /home/vacivi36/vacivitta.com.br/vendor/rector/rector/src/Console/Command/WorkerCommand.php |
<?php
declare (strict_types=1);
namespace Rector\Core\Console\Command;
use RectorPrefix20211231\Clue\React\NDJson\Decoder;
use RectorPrefix20211231\Clue\React\NDJson\Encoder;
use RectorPrefix20211231\React\EventLoop\StreamSelectLoop;
use RectorPrefix20211231\React\Socket\ConnectionInterface;
use RectorPrefix20211231\React\Socket\TcpConnector;
use Rector\Parallel\WorkerRunner;
use RectorPrefix20211231\Symfony\Component\Console\Input\InputInterface;
use RectorPrefix20211231\Symfony\Component\Console\Output\OutputInterface;
use RectorPrefix20211231\Symplify\EasyParallel\Enum\Action;
use RectorPrefix20211231\Symplify\EasyParallel\Enum\ReactCommand;
/**
* Inspired at: https://github.com/phpstan/phpstan-src/commit/9124c66dcc55a222e21b1717ba5f60771f7dda92
* https://github.com/phpstan/phpstan-src/blob/c471c7b050e0929daf432288770de673b394a983/src/Command/WorkerCommand.php
*
* ↓↓↓
* https://github.com/phpstan/phpstan-src/commit/b84acd2e3eadf66189a64fdbc6dd18ff76323f67#diff-7f625777f1ce5384046df08abffd6c911cfbb1cfc8fcb2bdeaf78f337689e3e2
*/
final class WorkerCommand extends \Rector\Core\Console\Command\AbstractProcessCommand
{
/**
* @readonly
* @var \Rector\Parallel\WorkerRunner
*/
private $workerRunner;
public function __construct(\Rector\Parallel\WorkerRunner $workerRunner)
{
$this->workerRunner = $workerRunner;
parent::__construct();
}
protected function configure() : void
{
$this->setDescription('(Internal) Support for parallel process');
parent::configure();
}
protected function execute(\RectorPrefix20211231\Symfony\Component\Console\Input\InputInterface $input, \RectorPrefix20211231\Symfony\Component\Console\Output\OutputInterface $output) : int
{
$configuration = $this->configurationFactory->createFromInput($input);
$streamSelectLoop = new \RectorPrefix20211231\React\EventLoop\StreamSelectLoop();
$parallelIdentifier = $configuration->getParallelIdentifier();
$tcpConnector = new \RectorPrefix20211231\React\Socket\TcpConnector($streamSelectLoop);
$promise = $tcpConnector->connect('127.0.0.1:' . $configuration->getParallelPort());
$promise->then(function (\RectorPrefix20211231\React\Socket\ConnectionInterface $connection) use($parallelIdentifier, $configuration) : void {
$inDecoder = new \RectorPrefix20211231\Clue\React\NDJson\Decoder($connection, \true, 512, \JSON_INVALID_UTF8_IGNORE);
$outEncoder = new \RectorPrefix20211231\Clue\React\NDJson\Encoder($connection, \JSON_INVALID_UTF8_IGNORE);
// handshake?
$outEncoder->write([\RectorPrefix20211231\Symplify\EasyParallel\Enum\ReactCommand::ACTION => \RectorPrefix20211231\Symplify\EasyParallel\Enum\Action::HELLO, \RectorPrefix20211231\Symplify\EasyParallel\Enum\ReactCommand::IDENTIFIER => $parallelIdentifier]);
$this->workerRunner->run($outEncoder, $inDecoder, $configuration);
});
$streamSelectLoop->run();
return self::SUCCESS;
}
}