rector/rules/CodeQuality/Rector/If_/ExplicitBoolCompareRector.php
Tomas Votruba aa2cb1b997 Updated Rector to commit 0eba231b07
0eba231b07 [PHP 8.1] Move ConstantListClassToEnumRector to PHP 8.1 (#2444)
2022-06-06 17:12:56 +00:00

263 lines
10 KiB
PHP

<?php
declare (strict_types=1);
namespace Rector\CodeQuality\Rector\If_;
use PhpParser\Node;
use PhpParser\Node\Expr;
use PhpParser\Node\Expr\Array_;
use PhpParser\Node\Expr\BinaryOp;
use PhpParser\Node\Expr\BinaryOp\BooleanAnd;
use PhpParser\Node\Expr\BinaryOp\BooleanOr;
use PhpParser\Node\Expr\BinaryOp\Greater;
use PhpParser\Node\Expr\BinaryOp\Identical;
use PhpParser\Node\Expr\BinaryOp\NotIdentical;
use PhpParser\Node\Expr\BooleanNot;
use PhpParser\Node\Expr\Cast\Bool_;
use PhpParser\Node\Expr\FuncCall;
use PhpParser\Node\Expr\Ternary;
use PhpParser\Node\Expr\Variable;
use PhpParser\Node\Scalar\DNumber;
use PhpParser\Node\Scalar\LNumber;
use PhpParser\Node\Scalar\String_;
use PhpParser\Node\Stmt\ElseIf_;
use PhpParser\Node\Stmt\If_;
use PHPStan\Type\ArrayType;
use PHPStan\Type\BooleanType;
use PHPStan\Type\FloatType;
use PHPStan\Type\IntegerType;
use PHPStan\Type\ObjectType;
use PHPStan\Type\StringType;
use PHPStan\Type\Type;
use Rector\Core\Rector\AbstractRector;
use Rector\NodeTypeResolver\Node\AttributeKey;
use Rector\NodeTypeResolver\TypeAnalyzer\ArrayTypeAnalyzer;
use Rector\NodeTypeResolver\TypeAnalyzer\StringTypeAnalyzer;
use Symplify\RuleDocGenerator\ValueObject\CodeSample\CodeSample;
use Symplify\RuleDocGenerator\ValueObject\RuleDefinition;
/**
* @changelog https://www.reddit.com/r/PHP/comments/aqk01p/is_there_a_situation_in_which_if_countarray_0/
* @changelog https://3v4l.org/UCd1b
*
* @see \Rector\Tests\CodeQuality\Rector\If_\ExplicitBoolCompareRector\ExplicitBoolCompareRectorTest
*/
final class ExplicitBoolCompareRector extends \Rector\Core\Rector\AbstractRector
{
/**
* @readonly
* @var \Rector\NodeTypeResolver\TypeAnalyzer\StringTypeAnalyzer
*/
private $stringTypeAnalyzer;
/**
* @readonly
* @var \Rector\NodeTypeResolver\TypeAnalyzer\ArrayTypeAnalyzer
*/
private $arrayTypeAnalyzer;
public function __construct(\Rector\NodeTypeResolver\TypeAnalyzer\StringTypeAnalyzer $stringTypeAnalyzer, \Rector\NodeTypeResolver\TypeAnalyzer\ArrayTypeAnalyzer $arrayTypeAnalyzer)
{
$this->stringTypeAnalyzer = $stringTypeAnalyzer;
$this->arrayTypeAnalyzer = $arrayTypeAnalyzer;
}
public function getRuleDefinition() : \Symplify\RuleDocGenerator\ValueObject\RuleDefinition
{
return new \Symplify\RuleDocGenerator\ValueObject\RuleDefinition('Make if conditions more explicit', [new \Symplify\RuleDocGenerator\ValueObject\CodeSample\CodeSample(<<<'CODE_SAMPLE'
final class SomeController
{
public function run($items)
{
if (!count($items)) {
return 'no items';
}
}
}
CODE_SAMPLE
, <<<'CODE_SAMPLE'
final class SomeController
{
public function run($items)
{
if (count($items) === 0) {
return 'no items';
}
}
}
CODE_SAMPLE
)]);
}
/**
* @return array<class-string<Node>>
*/
public function getNodeTypes() : array
{
return [\PhpParser\Node\Stmt\If_::class, \PhpParser\Node\Stmt\ElseIf_::class, \PhpParser\Node\Expr\Ternary::class];
}
/**
* @param If_|ElseIf_|Ternary $node
*/
public function refactor(\PhpParser\Node $node) : ?\PhpParser\Node
{
// skip short ternary
if ($node instanceof \PhpParser\Node\Expr\Ternary && $node->if === null) {
return null;
}
if ($node->cond instanceof \PhpParser\Node\Expr\BooleanNot) {
$conditionNode = $node->cond->expr;
$isNegated = \true;
} else {
$conditionNode = $node->cond;
$isNegated = \false;
}
if ($conditionNode instanceof \PhpParser\Node\Expr\Cast\Bool_) {
return null;
}
$conditionStaticType = $this->getType($conditionNode);
if ($conditionStaticType instanceof \PHPStan\Type\BooleanType) {
return null;
}
$newConditionNode = $this->resolveNewConditionNode($conditionNode, $isNegated);
if (!$newConditionNode instanceof \PhpParser\Node\Expr\BinaryOp) {
return null;
}
$nextNode = $node->getAttribute(\Rector\NodeTypeResolver\Node\AttributeKey::NEXT_NODE);
// avoid duplicated ifs when combined with ChangeOrIfReturnToEarlyReturnRector
if ($this->shouldSkip($conditionStaticType, $newConditionNode, $nextNode)) {
return null;
}
$node->cond = $newConditionNode;
return $node;
}
private function shouldSkip(\PHPStan\Type\Type $conditionStaticType, \PhpParser\Node\Expr\BinaryOp $binaryOp, ?\PhpParser\Node $nextNode) : bool
{
return $conditionStaticType instanceof \PHPStan\Type\StringType && $binaryOp instanceof \PhpParser\Node\Expr\BinaryOp\BooleanOr && !$nextNode instanceof \PhpParser\Node;
}
private function resolveNewConditionNode(\PhpParser\Node\Expr $expr, bool $isNegated) : ?\PhpParser\Node\Expr\BinaryOp
{
if ($expr instanceof \PhpParser\Node\Expr\FuncCall && $this->nodeNameResolver->isName($expr, 'count')) {
return $this->resolveCount($isNegated, $expr);
}
if ($this->arrayTypeAnalyzer->isArrayType($expr)) {
return $this->resolveArray($isNegated, $expr);
}
if ($this->stringTypeAnalyzer->isStringOrUnionStringOnlyType($expr)) {
return $this->resolveString($isNegated, $expr);
}
$exprType = $this->getType($expr);
if ($exprType instanceof \PHPStan\Type\IntegerType) {
return $this->resolveInteger($isNegated, $expr);
}
if ($exprType instanceof \PHPStan\Type\FloatType) {
return $this->resolveFloat($isNegated, $expr);
}
if ($this->nodeTypeResolver->isNullableTypeOfSpecificType($expr, \PHPStan\Type\ObjectType::class)) {
return $this->resolveNullable($isNegated, $expr);
}
return null;
}
/**
* @return \PhpParser\Node\Expr\BinaryOp\Identical|\PhpParser\Node\Expr\BinaryOp\Greater|null
*/
private function resolveCount(bool $isNegated, \PhpParser\Node\Expr\FuncCall $funcCall)
{
$countedType = $this->getType($funcCall->args[0]->value);
if ($countedType instanceof \PHPStan\Type\ArrayType) {
return null;
}
$lNumber = new \PhpParser\Node\Scalar\LNumber(0);
// compare === 0, assumption
if ($isNegated) {
return new \PhpParser\Node\Expr\BinaryOp\Identical($funcCall, $lNumber);
}
return new \PhpParser\Node\Expr\BinaryOp\Greater($funcCall, $lNumber);
}
/**
* @return Identical|NotIdentical|null
*/
private function resolveArray(bool $isNegated, \PhpParser\Node\Expr $expr) : ?\PhpParser\Node\Expr\BinaryOp
{
if (!$expr instanceof \PhpParser\Node\Expr\Variable) {
return null;
}
$array = new \PhpParser\Node\Expr\Array_([]);
// compare === []
if ($isNegated) {
return new \PhpParser\Node\Expr\BinaryOp\Identical($expr, $array);
}
return new \PhpParser\Node\Expr\BinaryOp\NotIdentical($expr, $array);
}
/**
* @return \PhpParser\Node\Expr\BinaryOp\Identical|\PhpParser\Node\Expr\BinaryOp\NotIdentical|\PhpParser\Node\Expr\BinaryOp\BooleanAnd|\PhpParser\Node\Expr\BinaryOp\BooleanOr
*/
private function resolveString(bool $isNegated, \PhpParser\Node\Expr $expr)
{
$string = new \PhpParser\Node\Scalar\String_('');
$identical = $this->resolveIdentical($expr, $isNegated, $string);
$value = $this->valueResolver->getValue($expr);
// unknown value. may be from parameter
if ($value === null) {
return $this->resolveZeroIdenticalstring($identical, $isNegated, $expr);
}
$length = \strlen((string) $value);
if ($length === 1) {
$string = new \PhpParser\Node\Scalar\String_('0');
return $this->resolveIdentical($expr, $isNegated, $string);
}
return $identical;
}
/**
* @return \PhpParser\Node\Expr\BinaryOp\Identical|\PhpParser\Node\Expr\BinaryOp\NotIdentical
*/
private function resolveIdentical(\PhpParser\Node\Expr $expr, bool $isNegated, \PhpParser\Node\Scalar\String_ $string)
{
/**
* // compare === ''
*
* @var Identical|NotIdentical $identical
*/
$identical = $isNegated ? new \PhpParser\Node\Expr\BinaryOp\Identical($expr, $string) : new \PhpParser\Node\Expr\BinaryOp\NotIdentical($expr, $string);
return $identical;
}
/**
* @param \PhpParser\Node\Expr\BinaryOp\Identical|\PhpParser\Node\Expr\BinaryOp\NotIdentical $identical
* @return \PhpParser\Node\Expr\BinaryOp\BooleanAnd|\PhpParser\Node\Expr\BinaryOp\BooleanOr
*/
private function resolveZeroIdenticalstring($identical, bool $isNegated, \PhpParser\Node\Expr $expr)
{
$string = new \PhpParser\Node\Scalar\String_('0');
$zeroIdentical = $isNegated ? new \PhpParser\Node\Expr\BinaryOp\Identical($expr, $string) : new \PhpParser\Node\Expr\BinaryOp\NotIdentical($expr, $string);
return $isNegated ? new \PhpParser\Node\Expr\BinaryOp\BooleanOr($identical, $zeroIdentical) : new \PhpParser\Node\Expr\BinaryOp\BooleanAnd($identical, $zeroIdentical);
}
/**
* @return \PhpParser\Node\Expr\BinaryOp\Identical|\PhpParser\Node\Expr\BinaryOp\NotIdentical
*/
private function resolveInteger(bool $isNegated, \PhpParser\Node\Expr $expr)
{
$lNumber = new \PhpParser\Node\Scalar\LNumber(0);
if ($isNegated) {
return new \PhpParser\Node\Expr\BinaryOp\Identical($expr, $lNumber);
}
return new \PhpParser\Node\Expr\BinaryOp\NotIdentical($expr, $lNumber);
}
/**
* @return \PhpParser\Node\Expr\BinaryOp\Identical|\PhpParser\Node\Expr\BinaryOp\NotIdentical
*/
private function resolveFloat(bool $isNegated, \PhpParser\Node\Expr $expr)
{
$dNumber = new \PhpParser\Node\Scalar\DNumber(0.0);
if ($isNegated) {
return new \PhpParser\Node\Expr\BinaryOp\Identical($expr, $dNumber);
}
return new \PhpParser\Node\Expr\BinaryOp\NotIdentical($expr, $dNumber);
}
/**
* @return \PhpParser\Node\Expr\BinaryOp\Identical|\PhpParser\Node\Expr\BinaryOp\NotIdentical
*/
private function resolveNullable(bool $isNegated, \PhpParser\Node\Expr $expr)
{
$constFetch = $this->nodeFactory->createNull();
if ($isNegated) {
return new \PhpParser\Node\Expr\BinaryOp\Identical($expr, $constFetch);
}
return new \PhpParser\Node\Expr\BinaryOp\NotIdentical($expr, $constFetch);
}
}