mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-25 12:14:02 +01:00
109 lines
6.1 KiB
PHP
109 lines
6.1 KiB
PHP
<?php
|
|
|
|
declare (strict_types=1);
|
|
namespace Rector\Parallel;
|
|
|
|
use RectorPrefix20220420\Clue\React\NDJson\Decoder;
|
|
use RectorPrefix20220420\Clue\React\NDJson\Encoder;
|
|
use PHPStan\Analyser\NodeScopeResolver;
|
|
use Rector\Core\Application\FileProcessor\PhpFileProcessor;
|
|
use Rector\Core\Provider\CurrentFileProvider;
|
|
use Rector\Core\StaticReflection\DynamicSourceLocatorDecorator;
|
|
use Rector\Core\ValueObject\Application\File;
|
|
use Rector\Core\ValueObject\Configuration;
|
|
use Rector\Core\ValueObject\Error\SystemError;
|
|
use Rector\Parallel\ValueObject\Bridge;
|
|
use RectorPrefix20220420\Symplify\EasyParallel\Enum\Action;
|
|
use RectorPrefix20220420\Symplify\EasyParallel\Enum\ReactCommand;
|
|
use RectorPrefix20220420\Symplify\EasyParallel\Enum\ReactEvent;
|
|
use RectorPrefix20220420\Symplify\PackageBuilder\Yaml\ParametersMerger;
|
|
use Symplify\SmartFileSystem\SmartFileInfo;
|
|
use Throwable;
|
|
final class WorkerRunner
|
|
{
|
|
/**
|
|
* @var string
|
|
*/
|
|
private const RESULT = 'result';
|
|
/**
|
|
* @readonly
|
|
* @var \Symplify\PackageBuilder\Yaml\ParametersMerger
|
|
*/
|
|
private $parametersMerger;
|
|
/**
|
|
* @readonly
|
|
* @var \Rector\Core\Provider\CurrentFileProvider
|
|
*/
|
|
private $currentFileProvider;
|
|
/**
|
|
* @readonly
|
|
* @var \Rector\Core\Application\FileProcessor\PhpFileProcessor
|
|
*/
|
|
private $phpFileProcessor;
|
|
/**
|
|
* @readonly
|
|
* @var \PHPStan\Analyser\NodeScopeResolver
|
|
*/
|
|
private $nodeScopeResolver;
|
|
/**
|
|
* @readonly
|
|
* @var \Rector\Core\StaticReflection\DynamicSourceLocatorDecorator
|
|
*/
|
|
private $dynamicSourceLocatorDecorator;
|
|
public function __construct(\RectorPrefix20220420\Symplify\PackageBuilder\Yaml\ParametersMerger $parametersMerger, \Rector\Core\Provider\CurrentFileProvider $currentFileProvider, \Rector\Core\Application\FileProcessor\PhpFileProcessor $phpFileProcessor, \PHPStan\Analyser\NodeScopeResolver $nodeScopeResolver, \Rector\Core\StaticReflection\DynamicSourceLocatorDecorator $dynamicSourceLocatorDecorator)
|
|
{
|
|
$this->parametersMerger = $parametersMerger;
|
|
$this->currentFileProvider = $currentFileProvider;
|
|
$this->phpFileProcessor = $phpFileProcessor;
|
|
$this->nodeScopeResolver = $nodeScopeResolver;
|
|
$this->dynamicSourceLocatorDecorator = $dynamicSourceLocatorDecorator;
|
|
}
|
|
public function run(\RectorPrefix20220420\Clue\React\NDJson\Encoder $encoder, \RectorPrefix20220420\Clue\React\NDJson\Decoder $decoder, \Rector\Core\ValueObject\Configuration $configuration) : void
|
|
{
|
|
$this->dynamicSourceLocatorDecorator->addPaths($configuration->getPaths());
|
|
// 1. handle system error
|
|
$handleErrorCallback = static function (\Throwable $throwable) use($encoder) : void {
|
|
$systemErrors = new \Rector\Core\ValueObject\Error\SystemError($throwable->getMessage(), $throwable->getFile(), $throwable->getLine());
|
|
$encoder->write([\RectorPrefix20220420\Symplify\EasyParallel\Enum\ReactCommand::ACTION => \RectorPrefix20220420\Symplify\EasyParallel\Enum\Action::RESULT, self::RESULT => [\Rector\Parallel\ValueObject\Bridge::SYSTEM_ERRORS => [$systemErrors], \Rector\Parallel\ValueObject\Bridge::FILES_COUNT => 0, \Rector\Parallel\ValueObject\Bridge::SYSTEM_ERRORS_COUNT => 1]]);
|
|
$encoder->end();
|
|
};
|
|
$encoder->on(\RectorPrefix20220420\Symplify\EasyParallel\Enum\ReactEvent::ERROR, $handleErrorCallback);
|
|
// 2. collect diffs + errors from file processor
|
|
$decoder->on(\RectorPrefix20220420\Symplify\EasyParallel\Enum\ReactEvent::DATA, function (array $json) use($encoder, $configuration) : void {
|
|
$action = $json[\RectorPrefix20220420\Symplify\EasyParallel\Enum\ReactCommand::ACTION];
|
|
if ($action !== \RectorPrefix20220420\Symplify\EasyParallel\Enum\Action::MAIN) {
|
|
return;
|
|
}
|
|
$systemErrorsCount = 0;
|
|
/** @var string[] $filePaths */
|
|
$filePaths = $json[\Rector\Parallel\ValueObject\Bridge::FILES] ?? [];
|
|
$errorAndFileDiffs = [];
|
|
$systemErrors = [];
|
|
// 1. allow PHPStan to work with static reflection on provided files
|
|
$this->nodeScopeResolver->setAnalysedFiles($filePaths);
|
|
foreach ($filePaths as $filePath) {
|
|
try {
|
|
$smartFileInfo = new \Symplify\SmartFileSystem\SmartFileInfo($filePath);
|
|
$file = new \Rector\Core\ValueObject\Application\File($smartFileInfo, $smartFileInfo->getContents());
|
|
$this->currentFileProvider->setFile($file);
|
|
if (!$this->phpFileProcessor->supports($file, $configuration)) {
|
|
continue;
|
|
}
|
|
$currentErrorsAndFileDiffs = $this->phpFileProcessor->process($file, $configuration);
|
|
$errorAndFileDiffs = $this->parametersMerger->merge($errorAndFileDiffs, $currentErrorsAndFileDiffs);
|
|
} catch (\Throwable $throwable) {
|
|
++$systemErrorsCount;
|
|
$errorMessage = \sprintf('System error: "%s"', $throwable->getMessage()) . \PHP_EOL;
|
|
$errorMessage .= 'Run Rector with "--debug" option and post the report here: https://github.com/rectorphp/rector/issues/new';
|
|
$systemErrors[] = new \Rector\Core\ValueObject\Error\SystemError($errorMessage, $filePath, $throwable->getLine());
|
|
}
|
|
}
|
|
/**
|
|
* this invokes all listeners listening $decoder->on(...) @see \Symplify\EasyParallel\Enum\ReactEvent::DATA
|
|
*/
|
|
$encoder->write([\RectorPrefix20220420\Symplify\EasyParallel\Enum\ReactCommand::ACTION => \RectorPrefix20220420\Symplify\EasyParallel\Enum\Action::RESULT, self::RESULT => [\Rector\Parallel\ValueObject\Bridge::FILE_DIFFS => $errorAndFileDiffs[\Rector\Parallel\ValueObject\Bridge::FILE_DIFFS] ?? [], \Rector\Parallel\ValueObject\Bridge::FILES_COUNT => \count($filePaths), \Rector\Parallel\ValueObject\Bridge::SYSTEM_ERRORS => $systemErrors, \Rector\Parallel\ValueObject\Bridge::SYSTEM_ERRORS_COUNT => $systemErrorsCount]]);
|
|
});
|
|
$decoder->on(\RectorPrefix20220420\Symplify\EasyParallel\Enum\ReactEvent::ERROR, $handleErrorCallback);
|
|
}
|
|
}
|