1
0
mirror of https://github.com/danog/psalm.git synced 2024-12-15 19:07:00 +01:00
psalm/src/Psalm/Internal/Analyzer/Statements/Expression/CloneAnalyzer.php

129 lines
4.7 KiB
PHP
Raw Normal View History

2020-05-18 21:13:27 +02:00
<?php
namespace Psalm\Internal\Analyzer\Statements\Expression;
use PhpParser;
use Psalm\Internal\Analyzer\MethodAnalyzer;
2020-05-18 21:13:27 +02:00
use Psalm\Internal\Analyzer\Statements\ExpressionAnalyzer;
use Psalm\Internal\Analyzer\StatementsAnalyzer;
use Psalm\CodeLocation;
use Psalm\Context;
use Psalm\Issue\InvalidClone;
use Psalm\Issue\PossiblyInvalidClone;
2020-05-18 21:13:27 +02:00
use Psalm\IssueBuffer;
use Psalm\Type;
use Psalm\Type\Atomic\TTemplateParam;
use Psalm\Type\Atomic\TMixed;
use Psalm\Type\Atomic\TNamedObject;
use Psalm\Type\Atomic\TObject;
class CloneAnalyzer
{
public static function analyze(
StatementsAnalyzer $statements_analyzer,
PhpParser\Node\Expr\Clone_ $stmt,
Context $context
) : bool {
$codebase_methods = $statements_analyzer->getCodebase()->methods;
2020-05-18 21:13:27 +02:00
if (ExpressionAnalyzer::analyze($statements_analyzer, $stmt->expr, $context) === false) {
return false;
}
$stmt_expr_type = $statements_analyzer->node_data->getType($stmt->expr);
if ($stmt_expr_type) {
$clone_type = $stmt_expr_type;
$immutable_cloned = false;
$invalid_clones = [];
$possibly_valid = false;
$atomic_types = $clone_type->getAtomicTypes();
while ($atomic_types) {
$clone_type_part = \array_pop($atomic_types);
if ($clone_type_part instanceof TMixed ||
$clone_type_part instanceof TObject
2020-05-18 21:13:27 +02:00
) {
$invalid_clones[] = $clone_type_part->getId();
$possibly_valid = true;
} elseif ($clone_type_part instanceof TNamedObject) {
$clone_method_id = new \Psalm\Internal\MethodIdentifier(
$clone_type_part->value,
'__clone'
);
$does_method_exist = $codebase_methods->methodExists(
$clone_method_id,
$context->calling_method_id,
new CodeLocation($statements_analyzer->getSource(), $stmt)
);
$is_method_visible = MethodAnalyzer::isMethodVisible(
$clone_method_id,
$context,
$statements_analyzer->getSource()
);
if ($does_method_exist && !$is_method_visible) {
$invalid_clones[] = $clone_type_part->getId();
} else {
$possibly_valid = true;
$immutable_cloned = true;
}
} elseif ($clone_type_part instanceof TTemplateParam) {
$atomic_types = array_merge($atomic_types, $clone_type_part->as->getAtomicTypes());
} else {
2020-05-18 21:13:27 +02:00
if ($clone_type_part instanceof Type\Atomic\TFalse
&& $clone_type->ignore_falsable_issues
) {
continue;
}
if ($clone_type_part instanceof Type\Atomic\TNull
&& $clone_type->ignore_nullable_issues
) {
continue;
}
$invalid_clones[] = $clone_type_part->getId();
}
}
if ($invalid_clones) {
if ($possibly_valid) {
if (IssueBuffer::accepts(
new PossiblyInvalidClone(
'Cannot clone ' . $invalid_clones[0],
new CodeLocation($statements_analyzer->getSource(), $stmt)
),
$statements_analyzer->getSuppressedIssues()
)) {
// fall through
}
} else {
2020-05-18 21:13:27 +02:00
if (IssueBuffer::accepts(
new InvalidClone(
'Cannot clone ' . $invalid_clones[0],
2020-05-18 21:13:27 +02:00
new CodeLocation($statements_analyzer->getSource(), $stmt)
),
$statements_analyzer->getSuppressedIssues()
)) {
// fall through
2020-05-18 21:13:27 +02:00
}
}
return true;
2020-05-18 21:13:27 +02:00
}
$statements_analyzer->node_data->setType($stmt, $stmt_expr_type);
if ($immutable_cloned) {
$stmt_expr_type = clone $stmt_expr_type;
$statements_analyzer->node_data->setType($stmt, $stmt_expr_type);
$stmt_expr_type->reference_free = true;
$stmt_expr_type->allow_mutations = true;
}
}
return true;
}
}