rector/src/Console/Command/DetectNodeCommand.php
2024-03-06 20:55:59 +00:00

71 lines
2.4 KiB
PHP

<?php
declare (strict_types=1);
namespace Rector\Console\Command;
use Rector\PhpParser\Parser\SimplePhpParser;
use Rector\Util\NodePrinter;
use RectorPrefix202403\Symfony\Component\Console\Command\Command;
use RectorPrefix202403\Symfony\Component\Console\Input\InputInterface;
use RectorPrefix202403\Symfony\Component\Console\Input\InputOption;
use RectorPrefix202403\Symfony\Component\Console\Output\OutputInterface;
use RectorPrefix202403\Symfony\Component\Console\Question\Question;
use RectorPrefix202403\Symfony\Component\Console\Style\SymfonyStyle;
use Throwable;
final class DetectNodeCommand extends Command
{
/**
* @readonly
* @var \Rector\PhpParser\Parser\SimplePhpParser
*/
private $simplePhpParser;
/**
* @readonly
* @var \Rector\Util\NodePrinter
*/
private $nodePrinter;
/**
* @readonly
* @var \Symfony\Component\Console\Style\SymfonyStyle
*/
private $symfonyStyle;
public function __construct(SimplePhpParser $simplePhpParser, NodePrinter $nodePrinter, SymfonyStyle $symfonyStyle)
{
$this->simplePhpParser = $simplePhpParser;
$this->nodePrinter = $nodePrinter;
$this->symfonyStyle = $symfonyStyle;
parent::__construct();
}
protected function configure() : void
{
$this->setName('detect-node');
$this->setDescription('Detects node for provided PHP content');
$this->addOption('loop', null, InputOption::VALUE_NONE, 'Keep open so you can try multiple inputs');
$this->setAliases(['dump-node']);
// @todo invoke https://github.com/matthiasnoback/php-ast-inspector/
// $this->addOption('file');
}
protected function execute(InputInterface $input, OutputInterface $output) : int
{
if ((bool) $input->getOption('loop')) {
while (\true) {
$this->askQuestionAndDumpNode();
}
}
$this->askQuestionAndDumpNode();
return self::SUCCESS;
}
private function askQuestionAndDumpNode() : void
{
$question = new Question('Write short PHP code snippet');
$phpContents = $this->symfonyStyle->askQuestion($question);
try {
$nodes = $this->simplePhpParser->parseString($phpContents);
} catch (Throwable $exception) {
$this->symfonyStyle->warning('Provide valid PHP code');
return;
}
$this->nodePrinter->printNodes($nodes);
}
}