rector/packages/Skipper/Skipper/Skipper.php
Tomas Votruba 671f50c702 Updated Rector to commit ee715396945596fffb158ff8278749feb01ea01a
ee71539694 [NodeTypeResolver] Use isScalar()->yes() usage on StaticTypeAnalyzer and ScalarTypeComparator services (#5099)
2023-10-01 01:36:35 +00:00

79 lines
2.2 KiB
PHP

<?php
declare (strict_types=1);
namespace Rector\Skipper\Skipper;
use PhpParser\Node;
use Rector\Core\Contract\Rector\RectorInterface;
use Rector\Core\ProcessAnalyzer\RectifiedAnalyzer;
use Rector\Skipper\Contract\SkipVoterInterface;
use RectorPrefix202310\Webmozart\Assert\Assert;
/**
* @api
* @see \Rector\Tests\Skipper\Skipper\SkipperTest
*/
final class Skipper
{
/**
* @readonly
* @var \Rector\Core\ProcessAnalyzer\RectifiedAnalyzer
*/
private $rectifiedAnalyzer;
/**
* @var array<SkipVoterInterface>
* @readonly
*/
private $skipVoters;
/**
* @var string
*/
private const FILE_ELEMENT = 'file_elements';
/**
* @param array<SkipVoterInterface> $skipVoters
*/
public function __construct(RectifiedAnalyzer $rectifiedAnalyzer, array $skipVoters)
{
$this->rectifiedAnalyzer = $rectifiedAnalyzer;
$this->skipVoters = $skipVoters;
Assert::allIsInstanceOf($this->skipVoters, SkipVoterInterface::class);
}
/**
* @param string|object $element
*/
public function shouldSkipElement($element) : bool
{
return $this->shouldSkipElementAndFilePath($element, __FILE__);
}
public function shouldSkipFilePath(string $filePath) : bool
{
return $this->shouldSkipElementAndFilePath(self::FILE_ELEMENT, $filePath);
}
/**
* @param string|object $element
*/
public function shouldSkipElementAndFilePath($element, string $filePath) : bool
{
foreach ($this->skipVoters as $skipVoter) {
if (!$skipVoter->match($element)) {
continue;
}
if (!$skipVoter->shouldSkip($element, $filePath)) {
continue;
}
return \true;
}
return \false;
}
/**
* @param class-string<RectorInterface> $rectorClass
* @param string|object $element
*/
public function shouldSkipCurrentNode($element, string $filePath, string $rectorClass, Node $node) : bool
{
if ($this->shouldSkipElementAndFilePath($element, $filePath)) {
return \true;
}
return $this->rectifiedAnalyzer->hasRectified($rectorClass, $node);
}
}