mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-08 09:01:20 +01:00
c726969380
fc10fce13d
[Rectify] [Php81] Enable Rectify on Readonly Property only (#1384)
129 lines
5.6 KiB
PHP
129 lines
5.6 KiB
PHP
<?php
|
|
|
|
declare (strict_types=1);
|
|
namespace Rector\DeadCode;
|
|
|
|
use PhpParser\Node\Arg;
|
|
use PhpParser\Node\Expr;
|
|
use PhpParser\Node\Expr\BinaryOp\Equal;
|
|
use PhpParser\Node\Expr\BinaryOp\Identical;
|
|
use PhpParser\Node\Expr\BinaryOp\NotEqual;
|
|
use PhpParser\Node\Expr\BinaryOp\NotIdentical;
|
|
use PhpParser\Node\Expr\FuncCall;
|
|
use Rector\Core\Php\PhpVersionProvider;
|
|
use Rector\Core\PhpParser\Node\Value\ValueResolver;
|
|
use Rector\Core\Util\PhpVersionFactory;
|
|
use Rector\DeadCode\Contract\ConditionInterface;
|
|
use Rector\DeadCode\ValueObject\BinaryToVersionCompareCondition;
|
|
use Rector\DeadCode\ValueObject\VersionCompareCondition;
|
|
use Rector\NodeNameResolver\NodeNameResolver;
|
|
final class ConditionResolver
|
|
{
|
|
/**
|
|
* @readonly
|
|
* @var \Rector\NodeNameResolver\NodeNameResolver
|
|
*/
|
|
private $nodeNameResolver;
|
|
/**
|
|
* @readonly
|
|
* @var \Rector\Core\Php\PhpVersionProvider
|
|
*/
|
|
private $phpVersionProvider;
|
|
/**
|
|
* @readonly
|
|
* @var \Rector\Core\PhpParser\Node\Value\ValueResolver
|
|
*/
|
|
private $valueResolver;
|
|
/**
|
|
* @readonly
|
|
* @var \Rector\Core\Util\PhpVersionFactory
|
|
*/
|
|
private $phpVersionFactory;
|
|
public function __construct(\Rector\NodeNameResolver\NodeNameResolver $nodeNameResolver, \Rector\Core\Php\PhpVersionProvider $phpVersionProvider, \Rector\Core\PhpParser\Node\Value\ValueResolver $valueResolver, \Rector\Core\Util\PhpVersionFactory $phpVersionFactory)
|
|
{
|
|
$this->nodeNameResolver = $nodeNameResolver;
|
|
$this->phpVersionProvider = $phpVersionProvider;
|
|
$this->valueResolver = $valueResolver;
|
|
$this->phpVersionFactory = $phpVersionFactory;
|
|
}
|
|
public function resolveFromExpr(\PhpParser\Node\Expr $expr) : ?\Rector\DeadCode\Contract\ConditionInterface
|
|
{
|
|
if ($this->isVersionCompareFuncCall($expr)) {
|
|
/** @var FuncCall $expr */
|
|
return $this->resolveVersionCompareConditionForFuncCall($expr);
|
|
}
|
|
if (!$expr instanceof \PhpParser\Node\Expr\BinaryOp\Identical && !$expr instanceof \PhpParser\Node\Expr\BinaryOp\Equal && !$expr instanceof \PhpParser\Node\Expr\BinaryOp\NotIdentical && !$expr instanceof \PhpParser\Node\Expr\BinaryOp\NotEqual) {
|
|
return null;
|
|
}
|
|
$binaryClass = \get_class($expr);
|
|
if ($this->isVersionCompareFuncCall($expr->left)) {
|
|
/** @var FuncCall $funcCall */
|
|
$funcCall = $expr->left;
|
|
return $this->resolveFuncCall($funcCall, $expr->right, $binaryClass);
|
|
}
|
|
if ($this->isVersionCompareFuncCall($expr->right)) {
|
|
/** @var FuncCall $funcCall */
|
|
$funcCall = $expr->right;
|
|
$versionCompareCondition = $this->resolveVersionCompareConditionForFuncCall($funcCall);
|
|
if (!$versionCompareCondition instanceof \Rector\DeadCode\ValueObject\VersionCompareCondition) {
|
|
return null;
|
|
}
|
|
$expectedValue = $this->valueResolver->getValue($expr->left);
|
|
return new \Rector\DeadCode\ValueObject\BinaryToVersionCompareCondition($versionCompareCondition, $binaryClass, $expectedValue);
|
|
}
|
|
return null;
|
|
}
|
|
private function isVersionCompareFuncCall(\PhpParser\Node\Expr $expr) : bool
|
|
{
|
|
if (!$expr instanceof \PhpParser\Node\Expr\FuncCall) {
|
|
return \false;
|
|
}
|
|
return $this->nodeNameResolver->isName($expr, 'version_compare');
|
|
}
|
|
private function resolveVersionCompareConditionForFuncCall(\PhpParser\Node\Expr\FuncCall $funcCall) : ?\Rector\DeadCode\ValueObject\VersionCompareCondition
|
|
{
|
|
$firstVersion = $this->resolveArgumentValue($funcCall, 0);
|
|
if ($firstVersion === null) {
|
|
return null;
|
|
}
|
|
$secondVersion = $this->resolveArgumentValue($funcCall, 1);
|
|
if ($secondVersion === null) {
|
|
return null;
|
|
}
|
|
// includes compare sign as 3rd argument
|
|
$versionCompareSign = null;
|
|
if (isset($funcCall->args[2]) && $funcCall->args[2] instanceof \PhpParser\Node\Arg) {
|
|
$versionCompareSign = $this->valueResolver->getValue($funcCall->args[2]->value);
|
|
}
|
|
return new \Rector\DeadCode\ValueObject\VersionCompareCondition($firstVersion, $secondVersion, $versionCompareSign);
|
|
}
|
|
private function resolveFuncCall(\PhpParser\Node\Expr\FuncCall $funcCall, \PhpParser\Node\Expr $expr, string $binaryClass) : ?\Rector\DeadCode\ValueObject\BinaryToVersionCompareCondition
|
|
{
|
|
$versionCompareCondition = $this->resolveVersionCompareConditionForFuncCall($funcCall);
|
|
if (!$versionCompareCondition instanceof \Rector\DeadCode\ValueObject\VersionCompareCondition) {
|
|
return null;
|
|
}
|
|
$expectedValue = $this->valueResolver->getValue($expr);
|
|
return new \Rector\DeadCode\ValueObject\BinaryToVersionCompareCondition($versionCompareCondition, $binaryClass, $expectedValue);
|
|
}
|
|
private function resolveArgumentValue(\PhpParser\Node\Expr\FuncCall $funcCall, int $argumentPosition) : ?int
|
|
{
|
|
if (!isset($funcCall->args[$argumentPosition])) {
|
|
return null;
|
|
}
|
|
if (!$funcCall->args[$argumentPosition] instanceof \PhpParser\Node\Arg) {
|
|
return null;
|
|
}
|
|
$firstArgValue = $funcCall->args[$argumentPosition]->value;
|
|
/** @var mixed|null $version */
|
|
$version = $this->valueResolver->getValue($firstArgValue);
|
|
if (\in_array($version, ['PHP_VERSION', 'PHP_VERSION_ID'], \true)) {
|
|
return $this->phpVersionProvider->provide();
|
|
}
|
|
if (\is_string($version)) {
|
|
return $this->phpVersionFactory->createIntVersion($version);
|
|
}
|
|
return $version;
|
|
}
|
|
}
|