1
0
mirror of https://github.com/danog/psalm.git synced 2024-12-15 19:07:00 +01:00
psalm/src/Psalm/Checker/Statements/Block/WhileChecker.php

134 lines
4.6 KiB
PHP
Raw Normal View History

2016-10-22 23:35:59 +02:00
<?php
namespace Psalm\Checker\Statements\Block;
use PhpParser;
use Psalm\Checker\AlgebraChecker;
use Psalm\Checker\ScopeChecker;
2016-10-22 23:35:59 +02:00
use Psalm\Checker\Statements\ExpressionChecker;
2016-11-02 07:29:00 +01:00
use Psalm\Checker\StatementsChecker;
2016-10-22 23:35:59 +02:00
use Psalm\Checker\TypeChecker;
use Psalm\CodeLocation;
use Psalm\Context;
2016-10-22 23:35:59 +02:00
use Psalm\Type;
class WhileChecker
{
/**
2016-11-02 07:29:00 +01:00
* @param StatementsChecker $statements_checker
* @param PhpParser\Node\Stmt\While_ $stmt
* @param Context $context
2017-05-27 02:16:18 +02:00
*
2016-11-02 07:29:00 +01:00
* @return false|null
2016-10-22 23:35:59 +02:00
*/
public static function analyze(
2016-11-02 07:29:00 +01:00
StatementsChecker $statements_checker,
PhpParser\Node\Stmt\While_ $stmt,
Context $context
) {
2016-10-22 23:35:59 +02:00
$while_context = clone $context;
2017-02-13 00:47:02 +01:00
$while_context->inside_conditional = true;
if (ExpressionChecker::analyze($statements_checker, $stmt->cond, $while_context) === false) {
2016-10-22 23:35:59 +02:00
return false;
}
2017-02-13 00:47:02 +01:00
$while_context->inside_conditional = false;
2016-10-22 23:35:59 +02:00
$while_clauses = AlgebraChecker::getFormula(
2016-11-02 07:29:00 +01:00
$stmt->cond,
$context->self,
2017-01-07 20:35:07 +01:00
$statements_checker
2016-11-02 07:29:00 +01:00
);
2016-10-22 23:35:59 +02:00
2017-04-02 21:26:10 +02:00
$while_context->parent_context = $context;
$while_context->clauses = AlgebraChecker::simplifyCNF(array_merge($context->clauses, $while_clauses));
$reconcilable_while_types = AlgebraChecker::getTruthsFromFormula($while_context->clauses);
2016-10-22 23:35:59 +02:00
// if the while has an or as the main component, we cannot safely reason about it
2016-11-02 07:29:00 +01:00
if ($stmt->cond instanceof PhpParser\Node\Expr\BinaryOp &&
2017-02-17 03:00:45 +01:00
($stmt->cond instanceof PhpParser\Node\Expr\BinaryOp\BooleanOr ||
$stmt->cond instanceof PhpParser\Node\Expr\BinaryOp\LogicalOr)
2016-11-02 07:29:00 +01:00
) {
2016-10-22 23:35:59 +02:00
// do nothing
2016-11-02 07:29:00 +01:00
} else {
$changed_vars = [];
2016-10-22 23:35:59 +02:00
$while_vars_in_scope_reconciled = TypeChecker::reconcileKeyedTypes(
$reconcilable_while_types,
2016-10-22 23:35:59 +02:00
$while_context->vars_in_scope,
$changed_vars,
$statements_checker,
new CodeLocation($statements_checker->getSource(), $stmt->cond),
2016-10-22 23:35:59 +02:00
$statements_checker->getSuppressedIssues()
);
if ($while_vars_in_scope_reconciled === false) {
return false;
}
$while_context->vars_in_scope = $while_vars_in_scope_reconciled;
}
2017-03-18 21:34:29 +01:00
$asserted_while_vars = array_keys(AlgebraChecker::getTruthsFromFormula($while_clauses));
$statements_checker->analyzeLoop($stmt->stmts, $asserted_while_vars, $while_context, $context);
2016-10-22 23:35:59 +02:00
foreach ($context->vars_in_scope as $var => $type) {
if ($type->isMixed()) {
continue;
}
if ($while_context->hasVariable($var)) {
2016-10-22 23:35:59 +02:00
if ($while_context->vars_in_scope[$var]->isMixed()) {
$context->vars_in_scope[$var] = $while_context->vars_in_scope[$var];
}
if ((string) $while_context->vars_in_scope[$var] !== (string) $type) {
$context->vars_in_scope[$var] = Type::combineUnionTypes($while_context->vars_in_scope[$var], $type);
}
}
}
if (!ScopeChecker::doesEverBreak($stmt->stmts)) {
// if the while contains an assertion and there are no break statements, we can negate that assertion
// and apply it to the current context
$negated_while_types = AlgebraChecker::getTruthsFromFormula(AlgebraChecker::negateFormula($while_clauses));
if ($negated_while_types) {
2017-02-22 06:42:50 +01:00
$changed_vars = [];
$vars_in_scope_reconciled = TypeChecker::reconcileKeyedTypes(
$negated_while_types,
$context->vars_in_scope,
$changed_vars,
$statements_checker,
new CodeLocation($statements_checker->getSource(), $stmt->cond),
$statements_checker->getSuppressedIssues()
);
if ($vars_in_scope_reconciled === false) {
return false;
}
$context->vars_in_scope = $vars_in_scope_reconciled;
foreach ($changed_vars as $changed_var) {
2017-04-02 21:26:10 +02:00
$context->removeVarFromConflictingClauses($changed_var);
}
}
}
2016-11-02 07:29:00 +01:00
$context->vars_possibly_in_scope = array_merge(
$context->vars_possibly_in_scope,
$while_context->vars_possibly_in_scope
);
$context->referenced_var_ids = array_merge(
$context->referenced_var_ids,
$while_context->referenced_var_ids
);
2016-11-02 07:29:00 +01:00
return null;
2016-10-22 23:35:59 +02:00
}
}