2016-10-22 19:23:18 +02:00
|
|
|
<?php
|
|
|
|
namespace Psalm\Checker\Statements\Block;
|
|
|
|
|
2016-11-02 07:29:00 +01:00
|
|
|
use PhpParser;
|
2017-03-18 18:37:00 +01:00
|
|
|
use Psalm\Checker\AlgebraChecker;
|
2016-10-22 19:23:18 +02:00
|
|
|
use Psalm\Checker\ScopeChecker;
|
2016-11-02 07:29:00 +01:00
|
|
|
use Psalm\Checker\Statements\ExpressionChecker;
|
2016-10-22 19:23:18 +02:00
|
|
|
use Psalm\Checker\StatementsChecker;
|
|
|
|
use Psalm\Checker\TypeChecker;
|
2017-11-28 06:46:41 +01:00
|
|
|
use Psalm\Clause;
|
2016-12-04 01:11:30 +01:00
|
|
|
use Psalm\CodeLocation;
|
2016-10-22 19:23:18 +02:00
|
|
|
use Psalm\Context;
|
2017-02-23 06:25:28 +01:00
|
|
|
use Psalm\Issue\ConflictingReferenceConstraint;
|
2017-05-19 06:48:26 +02:00
|
|
|
use Psalm\IssueBuffer;
|
2017-12-03 00:28:18 +01:00
|
|
|
use Psalm\Scope\IfScope;
|
|
|
|
use Psalm\Scope\LoopScope;
|
2016-10-22 19:23:18 +02:00
|
|
|
use Psalm\Type;
|
2017-12-29 16:55:41 +01:00
|
|
|
use Psalm\Type\Reconciler;
|
2016-10-22 19:23:18 +02:00
|
|
|
|
|
|
|
class IfChecker
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* System of type substitution and deletion
|
|
|
|
*
|
|
|
|
* for example
|
|
|
|
*
|
|
|
|
* x: A|null
|
|
|
|
*
|
|
|
|
* if (x)
|
|
|
|
* (x: A)
|
|
|
|
* x = B -- effects: remove A from the type of x, add B
|
|
|
|
* else
|
|
|
|
* (x: null)
|
|
|
|
* x = C -- effects: remove null from the type of x, add C
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* x: A|null
|
|
|
|
*
|
|
|
|
* if (!x)
|
|
|
|
* (x: null)
|
|
|
|
* throw new Exception -- effects: remove null from the type of x
|
|
|
|
*
|
2016-11-02 07:29:00 +01:00
|
|
|
* @param StatementsChecker $statements_checker
|
2016-10-22 19:23:18 +02:00
|
|
|
* @param PhpParser\Node\Stmt\If_ $stmt
|
|
|
|
* @param Context $context
|
2017-05-27 02:16:18 +02:00
|
|
|
*
|
2016-10-22 19:23:18 +02:00
|
|
|
* @return null|false
|
|
|
|
*/
|
2017-01-07 21:09:47 +01:00
|
|
|
public static function analyze(
|
2016-11-02 07:29:00 +01:00
|
|
|
StatementsChecker $statements_checker,
|
|
|
|
PhpParser\Node\Stmt\If_ $stmt,
|
|
|
|
Context $context,
|
2017-12-03 00:28:18 +01:00
|
|
|
LoopScope $loop_scope = null
|
2016-11-02 07:29:00 +01:00
|
|
|
) {
|
2016-10-22 19:23:18 +02:00
|
|
|
// get the first expression in the if, which should be evaluated on its own
|
|
|
|
// this allows us to update the context of $matches in
|
|
|
|
// if (!preg_match('/a/', 'aa', $matches)) {
|
|
|
|
// exit
|
|
|
|
// }
|
|
|
|
// echo $matches[0];
|
2016-12-28 23:04:03 +01:00
|
|
|
$first_if_cond_expr = self::getDefinitelyEvaluatedExpression($stmt->cond);
|
2016-10-22 19:23:18 +02:00
|
|
|
|
2017-02-13 00:06:18 +01:00
|
|
|
$context->inside_conditional = true;
|
|
|
|
|
2018-02-08 20:46:06 +01:00
|
|
|
$pre_condition_vars_in_scope = $context->vars_in_scope;
|
|
|
|
|
2017-11-28 06:46:41 +01:00
|
|
|
$referenced_var_ids = $context->referenced_var_ids;
|
|
|
|
$context->referenced_var_ids = [];
|
|
|
|
|
|
|
|
$pre_assigned_var_ids = $context->assigned_var_ids;
|
2017-11-29 04:17:03 +01:00
|
|
|
$context->assigned_var_ids = [];
|
2017-11-28 06:46:41 +01:00
|
|
|
|
2016-11-02 07:29:00 +01:00
|
|
|
if ($first_if_cond_expr &&
|
2017-01-07 21:09:47 +01:00
|
|
|
ExpressionChecker::analyze($statements_checker, $first_if_cond_expr, $context) === false
|
2016-11-02 07:29:00 +01:00
|
|
|
) {
|
2016-10-22 19:23:18 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-11-29 04:17:03 +01:00
|
|
|
$first_cond_assigned_var_ids = $context->assigned_var_ids;
|
|
|
|
$context->assigned_var_ids = array_merge(
|
|
|
|
$pre_assigned_var_ids,
|
|
|
|
$first_cond_assigned_var_ids
|
|
|
|
);
|
|
|
|
|
2017-11-28 06:46:41 +01:00
|
|
|
$first_cond_referenced_var_ids = $context->referenced_var_ids;
|
|
|
|
$context->referenced_var_ids = array_merge(
|
|
|
|
$referenced_var_ids,
|
|
|
|
$first_cond_referenced_var_ids
|
|
|
|
);
|
|
|
|
|
2017-02-13 00:06:18 +01:00
|
|
|
$context->inside_conditional = false;
|
|
|
|
|
2016-11-11 23:13:13 +01:00
|
|
|
$if_scope = new IfScope();
|
|
|
|
|
2016-10-22 19:23:18 +02:00
|
|
|
$if_context = clone $context;
|
|
|
|
|
2018-01-21 22:24:20 +01:00
|
|
|
$project_checker = $statements_checker->getFileChecker()->project_checker;
|
|
|
|
|
|
|
|
if ($project_checker->alter_code) {
|
|
|
|
$if_context->branch_point = $if_context->branch_point ?: (int) $stmt->getAttribute('startFilePos');
|
|
|
|
}
|
|
|
|
|
2017-03-18 20:24:14 +01:00
|
|
|
$if_context->parent_context = $context;
|
|
|
|
|
2016-10-22 19:23:18 +02:00
|
|
|
// we need to clone the current context so our ongoing updates to $context don't mess with elseif/else blocks
|
|
|
|
$original_context = clone $context;
|
|
|
|
|
2017-02-13 00:06:18 +01:00
|
|
|
$if_context->inside_conditional = true;
|
|
|
|
|
2017-11-29 04:17:03 +01:00
|
|
|
$assigned_var_ids = $context->assigned_var_ids;
|
|
|
|
$if_context->assigned_var_ids = [];
|
|
|
|
|
2017-11-28 06:46:41 +01:00
|
|
|
$referenced_var_ids = $context->referenced_var_ids;
|
|
|
|
$if_context->referenced_var_ids = [];
|
|
|
|
|
2016-11-02 07:29:00 +01:00
|
|
|
if ($first_if_cond_expr !== $stmt->cond &&
|
2017-01-07 21:09:47 +01:00
|
|
|
ExpressionChecker::analyze($statements_checker, $stmt->cond, $if_context) === false
|
2016-11-02 07:29:00 +01:00
|
|
|
) {
|
2016-10-22 19:23:18 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-01-17 22:07:46 +01:00
|
|
|
/** @var array<string, bool> */
|
2017-11-28 06:46:41 +01:00
|
|
|
$more_cond_referenced_var_ids = $if_context->referenced_var_ids;
|
|
|
|
$if_context->referenced_var_ids = array_merge(
|
|
|
|
$more_cond_referenced_var_ids,
|
|
|
|
$referenced_var_ids
|
|
|
|
);
|
|
|
|
|
|
|
|
$cond_referenced_var_ids = array_merge(
|
|
|
|
$first_cond_referenced_var_ids,
|
|
|
|
$more_cond_referenced_var_ids
|
|
|
|
);
|
|
|
|
|
2017-11-29 04:17:03 +01:00
|
|
|
/** @var array<string, bool> */
|
|
|
|
$more_cond_assigned_var_ids = $if_context->assigned_var_ids;
|
|
|
|
$if_context->assigned_var_ids = array_merge(
|
|
|
|
$more_cond_assigned_var_ids,
|
|
|
|
$assigned_var_ids
|
|
|
|
);
|
|
|
|
|
|
|
|
$cond_assigned_var_ids = array_merge(
|
|
|
|
$first_cond_assigned_var_ids,
|
|
|
|
$more_cond_assigned_var_ids
|
|
|
|
);
|
2017-11-28 06:46:41 +01:00
|
|
|
|
|
|
|
// get all the var ids that were referened in the conditional, but not assigned in it
|
2017-11-29 04:17:03 +01:00
|
|
|
$cond_referenced_var_ids = array_diff_key($cond_referenced_var_ids, $cond_assigned_var_ids);
|
2017-11-28 06:46:41 +01:00
|
|
|
|
2018-02-08 20:46:06 +01:00
|
|
|
// remove all newly-asserted var ids too
|
|
|
|
$cond_referenced_var_ids = array_filter(
|
|
|
|
$cond_referenced_var_ids,
|
|
|
|
/**
|
|
|
|
* @param string $var_id
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
function ($var_id) use ($pre_condition_vars_in_scope) {
|
|
|
|
return isset($pre_condition_vars_in_scope[$var_id]);
|
|
|
|
},
|
|
|
|
ARRAY_FILTER_USE_KEY
|
|
|
|
);
|
|
|
|
|
2017-02-13 00:06:18 +01:00
|
|
|
$if_context->inside_conditional = false;
|
|
|
|
|
2018-01-08 05:59:17 +01:00
|
|
|
$mixed_var_ids = [];
|
|
|
|
|
|
|
|
foreach ($if_context->vars_in_scope as $var_id => $type) {
|
|
|
|
if ($type->isMixed()) {
|
|
|
|
$mixed_var_ids[] = $var_id;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-18 18:37:00 +01:00
|
|
|
$if_clauses = AlgebraChecker::getFormula(
|
2016-12-27 19:58:58 +01:00
|
|
|
$stmt->cond,
|
2017-01-07 20:35:07 +01:00
|
|
|
$context->self,
|
|
|
|
$statements_checker
|
2016-12-27 19:58:58 +01:00
|
|
|
);
|
2016-10-22 19:23:18 +02:00
|
|
|
|
2018-01-08 07:38:25 +01:00
|
|
|
$if_clauses = array_values(
|
|
|
|
array_filter(
|
|
|
|
$if_clauses,
|
|
|
|
/** @return bool */
|
|
|
|
function (Clause $c) use ($mixed_var_ids) {
|
|
|
|
$keys = array_keys($c->possibilities);
|
|
|
|
|
|
|
|
foreach ($keys as $key) {
|
|
|
|
foreach ($mixed_var_ids as $mixed_var_id) {
|
2018-01-18 00:06:26 +01:00
|
|
|
if (preg_match('/^' . preg_quote($mixed_var_id, '/') . '(\[|-)/', $key)) {
|
2018-01-08 07:38:25 +01:00
|
|
|
return false;
|
|
|
|
}
|
2018-01-08 05:59:17 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-08 07:38:25 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
)
|
2018-01-08 05:59:17 +01:00
|
|
|
);
|
|
|
|
|
2018-01-08 07:38:25 +01:00
|
|
|
if (!$if_clauses) {
|
|
|
|
$if_clauses = [new Clause([], true)];
|
|
|
|
}
|
|
|
|
|
2017-04-02 21:26:10 +02:00
|
|
|
// this will see whether any of the clauses in set A conflict with the clauses in set B
|
2017-11-29 04:17:03 +01:00
|
|
|
AlgebraChecker::checkForParadox(
|
|
|
|
$context->clauses,
|
|
|
|
$if_clauses,
|
|
|
|
$statements_checker,
|
|
|
|
$stmt->cond,
|
|
|
|
$cond_assigned_var_ids
|
|
|
|
);
|
|
|
|
|
|
|
|
// if we have assignments in the if, we may have duplicate clauses
|
|
|
|
if ($cond_assigned_var_ids) {
|
|
|
|
$if_clauses = AlgebraChecker::simplifyCNF($if_clauses);
|
|
|
|
}
|
2017-04-02 21:26:10 +02:00
|
|
|
|
2017-03-18 18:37:00 +01:00
|
|
|
$if_context->clauses = AlgebraChecker::simplifyCNF(array_merge($context->clauses, $if_clauses));
|
2016-10-22 19:23:18 +02:00
|
|
|
|
2017-11-28 06:46:41 +01:00
|
|
|
// define this before we alter local claues after reconciliation
|
|
|
|
$if_scope->reasonable_clauses = $if_context->clauses;
|
|
|
|
|
2017-03-18 18:37:00 +01:00
|
|
|
$if_scope->negated_clauses = AlgebraChecker::negateFormula($if_clauses);
|
2016-12-27 19:58:58 +01:00
|
|
|
|
2017-03-18 18:37:00 +01:00
|
|
|
$if_scope->negated_types = AlgebraChecker::getTruthsFromFormula($if_scope->negated_clauses);
|
2016-10-22 19:23:18 +02:00
|
|
|
|
2017-03-18 18:37:00 +01:00
|
|
|
$reconcilable_if_types = AlgebraChecker::getTruthsFromFormula($if_context->clauses);
|
2016-10-22 19:23:18 +02:00
|
|
|
|
|
|
|
// if the if has an || in the conditional, we cannot easily reason about it
|
|
|
|
if ($reconcilable_if_types) {
|
2017-11-28 06:46:41 +01:00
|
|
|
$changed_var_ids = [];
|
2016-12-28 20:20:16 +01:00
|
|
|
|
2016-10-22 19:23:18 +02:00
|
|
|
$if_vars_in_scope_reconciled =
|
2017-12-29 16:55:41 +01:00
|
|
|
Reconciler::reconcileKeyedTypes(
|
2016-10-22 19:23:18 +02:00
|
|
|
$reconcilable_if_types,
|
|
|
|
$if_context->vars_in_scope,
|
2017-11-28 06:46:41 +01:00
|
|
|
$changed_var_ids,
|
|
|
|
$cond_referenced_var_ids,
|
2017-06-23 06:39:37 +02:00
|
|
|
$statements_checker,
|
2017-06-21 20:22:52 +02:00
|
|
|
new CodeLocation($statements_checker->getSource(), $stmt->cond, $context->include_location),
|
2016-10-22 19:23:18 +02:00
|
|
|
$statements_checker->getSuppressedIssues()
|
|
|
|
);
|
|
|
|
|
|
|
|
$if_context->vars_in_scope = $if_vars_in_scope_reconciled;
|
2018-01-28 23:28:34 +01:00
|
|
|
|
|
|
|
foreach ($reconcilable_if_types as $var_id => $_) {
|
2017-12-02 19:32:20 +01:00
|
|
|
$if_context->vars_possibly_in_scope[$var_id] = true;
|
|
|
|
}
|
2017-11-28 06:46:41 +01:00
|
|
|
|
|
|
|
if ($changed_var_ids) {
|
|
|
|
$if_context->removeReconciledClauses($changed_var_ids);
|
|
|
|
}
|
2018-01-20 17:48:16 +01:00
|
|
|
|
|
|
|
$if_scope->if_cond_changed_var_ids = $changed_var_ids;
|
2016-10-22 19:23:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
$old_if_context = clone $if_context;
|
2016-11-02 07:29:00 +01:00
|
|
|
$context->vars_possibly_in_scope = array_merge(
|
|
|
|
$if_context->vars_possibly_in_scope,
|
|
|
|
$context->vars_possibly_in_scope
|
|
|
|
);
|
2016-10-22 19:23:18 +02:00
|
|
|
|
2017-11-24 18:17:28 +01:00
|
|
|
$context->referenced_var_ids = array_merge(
|
|
|
|
$if_context->referenced_var_ids,
|
|
|
|
$context->referenced_var_ids
|
|
|
|
);
|
2017-02-01 05:24:33 +01:00
|
|
|
|
2016-11-11 23:13:13 +01:00
|
|
|
$temp_else_context = clone $original_context;
|
2016-10-22 19:23:18 +02:00
|
|
|
|
2017-11-28 06:46:41 +01:00
|
|
|
$changed_var_ids = [];
|
2016-12-28 20:20:16 +01:00
|
|
|
|
2017-11-28 06:46:41 +01:00
|
|
|
if ($if_scope->negated_types) {
|
2017-12-29 16:55:41 +01:00
|
|
|
$else_vars_reconciled = Reconciler::reconcileKeyedTypes(
|
2016-11-11 23:13:13 +01:00
|
|
|
$if_scope->negated_types,
|
|
|
|
$temp_else_context->vars_in_scope,
|
2017-11-28 06:46:41 +01:00
|
|
|
$changed_var_ids,
|
2018-02-07 21:20:47 +01:00
|
|
|
$stmt->else || $stmt->elseifs ? $cond_referenced_var_ids : [],
|
2017-06-23 06:39:37 +02:00
|
|
|
$statements_checker,
|
2017-06-21 20:22:52 +02:00
|
|
|
new CodeLocation($statements_checker->getSource(), $stmt->cond, $context->include_location),
|
2016-10-22 19:23:18 +02:00
|
|
|
$statements_checker->getSuppressedIssues()
|
|
|
|
);
|
|
|
|
|
2016-11-11 23:13:13 +01:00
|
|
|
$temp_else_context->vars_in_scope = $else_vars_reconciled;
|
2016-10-22 19:23:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// we calculate the vars redefined in a hypothetical else statement to determine
|
|
|
|
// which vars of the if we can safely change
|
2017-12-03 00:28:18 +01:00
|
|
|
$pre_assignment_else_redefined_vars = $temp_else_context->getRedefinedVars($context->vars_in_scope);
|
2016-11-11 23:13:13 +01:00
|
|
|
|
2018-01-28 23:28:34 +01:00
|
|
|
$old_unreferenced_vars = $context->unreferenced_vars;
|
|
|
|
$newly_unreferenced_locations = [];
|
|
|
|
|
|
|
|
// this captures statements in the if conditional
|
|
|
|
if ($context->collect_references) {
|
|
|
|
foreach ($if_context->unreferenced_vars as $var_id => $location) {
|
|
|
|
if (!isset($old_unreferenced_vars[$var_id])
|
|
|
|
|| $old_unreferenced_vars[$var_id] !== $location
|
|
|
|
) {
|
|
|
|
$newly_unreferenced_locations[$var_id][] = $location;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-11 23:13:13 +01:00
|
|
|
// check the if
|
2017-12-10 22:22:45 +01:00
|
|
|
if (self::analyzeIfBlock(
|
2016-11-11 23:13:13 +01:00
|
|
|
$statements_checker,
|
|
|
|
$stmt,
|
|
|
|
$if_scope,
|
|
|
|
$if_context,
|
|
|
|
$old_if_context,
|
|
|
|
$context,
|
2017-12-03 00:28:18 +01:00
|
|
|
$pre_assignment_else_redefined_vars,
|
|
|
|
$loop_scope
|
2017-12-10 22:22:45 +01:00
|
|
|
) === false) {
|
|
|
|
return false;
|
|
|
|
}
|
2016-10-22 19:23:18 +02:00
|
|
|
|
2018-01-28 23:28:34 +01:00
|
|
|
if ($context->collect_references && $if_scope->final_actions !== [ScopeChecker::ACTION_END]) {
|
|
|
|
foreach ($if_context->unreferenced_vars as $var_id => $location) {
|
|
|
|
if (!isset($old_unreferenced_vars[$var_id])
|
|
|
|
|| $old_unreferenced_vars[$var_id] !== $location
|
|
|
|
) {
|
|
|
|
$newly_unreferenced_locations[$var_id][] = $location;
|
2018-01-25 07:04:26 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-11 23:13:13 +01:00
|
|
|
// check the elseifs
|
|
|
|
foreach ($stmt->elseifs as $elseif) {
|
2016-12-27 19:58:58 +01:00
|
|
|
$elseif_context = clone $original_context;
|
|
|
|
|
2018-01-21 22:24:20 +01:00
|
|
|
if ($project_checker->alter_code) {
|
|
|
|
$elseif_context->branch_point =
|
2018-01-22 04:05:57 +01:00
|
|
|
$elseif_context->branch_point ?: (int) $stmt->getAttribute('startFilePos');
|
2018-01-21 22:24:20 +01:00
|
|
|
}
|
|
|
|
|
2017-12-10 22:22:45 +01:00
|
|
|
if (self::analyzeElseIfBlock(
|
2016-11-11 23:13:13 +01:00
|
|
|
$statements_checker,
|
|
|
|
$elseif,
|
|
|
|
$if_scope,
|
2016-12-27 19:58:58 +01:00
|
|
|
$elseif_context,
|
2017-12-03 00:28:18 +01:00
|
|
|
$context,
|
|
|
|
$loop_scope
|
2017-12-10 22:22:45 +01:00
|
|
|
) === false) {
|
|
|
|
return false;
|
|
|
|
}
|
2018-01-25 07:04:26 +01:00
|
|
|
|
2018-01-28 23:28:34 +01:00
|
|
|
if ($context->collect_references && $if_scope->final_actions !== [ScopeChecker::ACTION_END]) {
|
|
|
|
foreach ($elseif_context->unreferenced_vars as $var_id => $location) {
|
|
|
|
if (!isset($old_unreferenced_vars[$var_id])
|
|
|
|
|| $old_unreferenced_vars[$var_id] !== $location
|
|
|
|
) {
|
|
|
|
$newly_unreferenced_locations[$var_id][] = $location;
|
2018-01-25 07:04:26 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-10-22 19:23:18 +02:00
|
|
|
}
|
|
|
|
|
2016-11-11 23:13:13 +01:00
|
|
|
// check the else
|
|
|
|
if ($stmt->else) {
|
2016-12-27 19:58:58 +01:00
|
|
|
$else_context = clone $original_context;
|
|
|
|
|
2018-01-21 22:24:20 +01:00
|
|
|
if ($project_checker->alter_code) {
|
|
|
|
$else_context->branch_point =
|
2018-01-22 04:05:57 +01:00
|
|
|
$else_context->branch_point ?: (int) $stmt->getAttribute('startFilePos');
|
2018-01-21 22:24:20 +01:00
|
|
|
}
|
|
|
|
|
2017-12-10 22:22:45 +01:00
|
|
|
if (self::analyzeElseBlock(
|
2016-11-11 23:13:13 +01:00
|
|
|
$statements_checker,
|
|
|
|
$stmt->else,
|
|
|
|
$if_scope,
|
2016-12-27 19:58:58 +01:00
|
|
|
$else_context,
|
2017-12-03 00:28:18 +01:00
|
|
|
$context,
|
|
|
|
$loop_scope
|
2017-12-10 22:22:45 +01:00
|
|
|
) === false) {
|
|
|
|
return false;
|
|
|
|
}
|
2018-01-25 07:04:26 +01:00
|
|
|
|
2018-01-28 23:28:34 +01:00
|
|
|
if ($context->collect_references && $if_scope->final_actions !== [ScopeChecker::ACTION_END]) {
|
|
|
|
foreach ($else_context->unreferenced_vars as $var_id => $location) {
|
|
|
|
if (!isset($old_unreferenced_vars[$var_id])
|
|
|
|
|| $old_unreferenced_vars[$var_id] !== $location
|
|
|
|
) {
|
|
|
|
$newly_unreferenced_locations[$var_id][] = $location;
|
2018-01-25 07:04:26 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-12-03 00:28:18 +01:00
|
|
|
} else {
|
|
|
|
$if_scope->final_actions[] = ScopeChecker::ACTION_NONE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($loop_scope) {
|
|
|
|
$loop_scope->final_actions = array_unique(
|
|
|
|
array_merge(
|
|
|
|
$loop_scope->final_actions,
|
|
|
|
$if_scope->final_actions
|
|
|
|
)
|
2016-11-11 23:13:13 +01:00
|
|
|
);
|
|
|
|
}
|
2016-10-22 19:23:18 +02:00
|
|
|
|
2017-02-01 05:24:33 +01:00
|
|
|
$context->vars_possibly_in_scope = array_merge(
|
|
|
|
$context->vars_possibly_in_scope,
|
|
|
|
$if_scope->new_vars_possibly_in_scope
|
|
|
|
);
|
2016-10-22 19:23:18 +02:00
|
|
|
|
2016-11-11 23:13:13 +01:00
|
|
|
// vars can only be defined/redefined if there was an else (defined in every block)
|
|
|
|
if ($stmt->else) {
|
2018-01-28 23:28:34 +01:00
|
|
|
$context->assigned_var_ids = array_merge(
|
|
|
|
$context->assigned_var_ids,
|
|
|
|
$if_scope->assigned_var_ids ?: []
|
|
|
|
);
|
|
|
|
|
2016-11-11 23:13:13 +01:00
|
|
|
if ($if_scope->new_vars) {
|
|
|
|
$context->vars_in_scope = array_merge($context->vars_in_scope, $if_scope->new_vars);
|
|
|
|
}
|
2016-10-22 19:23:18 +02:00
|
|
|
|
2016-11-11 23:13:13 +01:00
|
|
|
if ($if_scope->redefined_vars) {
|
|
|
|
foreach ($if_scope->redefined_vars as $var => $type) {
|
|
|
|
$context->vars_in_scope[$var] = $type;
|
|
|
|
$if_scope->updated_vars[$var] = true;
|
2016-10-22 19:23:18 +02:00
|
|
|
}
|
2016-11-11 23:13:13 +01:00
|
|
|
}
|
2016-10-22 19:23:18 +02:00
|
|
|
|
2017-09-03 00:15:52 +02:00
|
|
|
if ($if_scope->possible_param_types) {
|
|
|
|
foreach ($if_scope->possible_param_types as $var => $type) {
|
|
|
|
$context->possible_param_types[$var] = $type;
|
|
|
|
}
|
|
|
|
}
|
2016-11-11 23:13:13 +01:00
|
|
|
} else {
|
|
|
|
if ($if_scope->forced_new_vars) {
|
|
|
|
$context->vars_in_scope = array_merge($context->vars_in_scope, $if_scope->forced_new_vars);
|
2016-10-22 19:23:18 +02:00
|
|
|
}
|
2017-12-03 00:28:18 +01:00
|
|
|
|
|
|
|
if ($loop_scope && !in_array(ScopeChecker::ACTION_NONE, $if_scope->final_actions, true)) {
|
|
|
|
$loop_scope->redefined_loop_vars = null;
|
|
|
|
}
|
2016-11-11 23:13:13 +01:00
|
|
|
}
|
2016-10-22 19:23:18 +02:00
|
|
|
|
2016-11-11 23:13:13 +01:00
|
|
|
if ($if_scope->possibly_redefined_vars) {
|
|
|
|
foreach ($if_scope->possibly_redefined_vars as $var => $type) {
|
2018-01-28 23:28:34 +01:00
|
|
|
if ($context->hasVariable($var) &&
|
|
|
|
!$type->failed_reconciliation &&
|
2017-03-13 23:06:56 +01:00
|
|
|
!isset($if_scope->updated_vars[$var])
|
|
|
|
) {
|
2016-11-11 23:13:13 +01:00
|
|
|
$context->vars_in_scope[$var] = Type::combineUnionTypes($context->vars_in_scope[$var], $type);
|
2016-10-22 19:23:18 +02:00
|
|
|
}
|
2016-11-11 23:13:13 +01:00
|
|
|
}
|
|
|
|
}
|
2016-10-22 19:23:18 +02:00
|
|
|
|
2018-01-25 07:04:26 +01:00
|
|
|
if ($context->collect_references) {
|
2018-01-28 23:28:34 +01:00
|
|
|
foreach ($newly_unreferenced_locations as $var_id => $locations) {
|
|
|
|
if ((
|
|
|
|
$stmt->else
|
|
|
|
&& (isset($if_scope->assigned_var_ids[$var_id])
|
|
|
|
|| isset($if_scope->new_vars[$var_id]))
|
|
|
|
) || (!isset($context->vars_in_scope[$var_id]))
|
|
|
|
) {
|
|
|
|
$context->unreferenced_vars[$var_id] = array_shift($locations);
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($locations as $location) {
|
|
|
|
$statements_checker->registerVariableUse($location);
|
|
|
|
}
|
|
|
|
}
|
2018-01-25 07:04:26 +01:00
|
|
|
}
|
|
|
|
|
2016-11-11 23:13:13 +01:00
|
|
|
return null;
|
|
|
|
}
|
2016-10-22 19:23:18 +02:00
|
|
|
|
2016-11-11 23:13:13 +01:00
|
|
|
/**
|
|
|
|
* @param StatementsChecker $statements_checker
|
|
|
|
* @param PhpParser\Node\Stmt\If_ $stmt
|
|
|
|
* @param IfScope $if_scope
|
|
|
|
* @param Context $if_context
|
|
|
|
* @param Context $old_if_context
|
|
|
|
* @param Context $outer_context
|
|
|
|
* @param array<string,Type\Union> $pre_assignment_else_redefined_vars
|
2017-05-27 02:16:18 +02:00
|
|
|
*
|
2016-11-11 23:13:13 +01:00
|
|
|
* @return false|null
|
|
|
|
*/
|
2017-01-07 21:09:47 +01:00
|
|
|
protected static function analyzeIfBlock(
|
2016-11-11 23:13:13 +01:00
|
|
|
StatementsChecker $statements_checker,
|
|
|
|
PhpParser\Node\Stmt\If_ $stmt,
|
|
|
|
IfScope $if_scope,
|
|
|
|
Context $if_context,
|
|
|
|
Context $old_if_context,
|
|
|
|
Context $outer_context,
|
2017-12-03 00:28:18 +01:00
|
|
|
array $pre_assignment_else_redefined_vars,
|
|
|
|
LoopScope $loop_scope = null
|
2016-11-11 23:13:13 +01:00
|
|
|
) {
|
2017-11-28 06:25:21 +01:00
|
|
|
$final_actions = ScopeChecker::getFinalControlActions($stmt->stmts);
|
2016-10-22 19:23:18 +02:00
|
|
|
|
2017-11-28 06:25:21 +01:00
|
|
|
$has_ending_statements = $final_actions === [ScopeChecker::ACTION_END];
|
|
|
|
|
|
|
|
$has_leaving_statements = $has_ending_statements
|
|
|
|
|| (count($final_actions) && !in_array(ScopeChecker::ACTION_NONE, $final_actions, true));
|
2016-11-11 23:13:13 +01:00
|
|
|
|
2017-12-03 00:28:18 +01:00
|
|
|
$has_break_statement = $final_actions === [ScopeChecker::ACTION_BREAK];
|
|
|
|
$has_continue_statement = $final_actions === [ScopeChecker::ACTION_CONTINUE];
|
|
|
|
|
|
|
|
$if_scope->final_actions = $final_actions;
|
|
|
|
|
2017-09-03 00:15:52 +02:00
|
|
|
$project_checker = $statements_checker->getFileChecker()->project_checker;
|
|
|
|
|
2017-11-28 06:46:41 +01:00
|
|
|
$assigned_var_ids = $if_context->assigned_var_ids;
|
|
|
|
$if_context->assigned_var_ids = [];
|
|
|
|
|
2017-12-03 00:28:18 +01:00
|
|
|
if ($statements_checker->analyze(
|
|
|
|
$stmt->stmts,
|
|
|
|
$if_context,
|
|
|
|
$loop_scope
|
|
|
|
) === false
|
|
|
|
) {
|
2016-11-11 23:13:13 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-11-28 06:46:41 +01:00
|
|
|
/** @var array<string, bool> */
|
|
|
|
$new_assigned_var_ids = $if_context->assigned_var_ids;
|
|
|
|
$if_context->assigned_var_ids = $assigned_var_ids;
|
|
|
|
|
2017-02-23 06:25:28 +01:00
|
|
|
if ($if_context->byref_constraints !== null) {
|
|
|
|
foreach ($if_context->byref_constraints as $var_id => $byref_constraint) {
|
2018-01-25 07:04:26 +01:00
|
|
|
if ($outer_context->byref_constraints !== null
|
|
|
|
&& isset($outer_context->byref_constraints[$var_id])
|
|
|
|
&& $byref_constraint->type
|
|
|
|
&& ($outer_constraint_type = $outer_context->byref_constraints[$var_id]->type)
|
|
|
|
&& !TypeChecker::isContainedBy(
|
2018-02-01 06:50:01 +01:00
|
|
|
$project_checker->codebase,
|
2017-02-23 06:25:28 +01:00
|
|
|
$byref_constraint->type,
|
2018-01-25 07:04:26 +01:00
|
|
|
$outer_constraint_type
|
2017-02-23 06:25:28 +01:00
|
|
|
)
|
|
|
|
) {
|
|
|
|
if (IssueBuffer::accepts(
|
|
|
|
new ConflictingReferenceConstraint(
|
|
|
|
'There is more than one pass-by--reference constraint on ' . $var_id,
|
2017-06-21 20:22:52 +02:00
|
|
|
new CodeLocation($statements_checker, $stmt, $outer_context->include_location, true)
|
2017-02-23 06:25:28 +01:00
|
|
|
),
|
|
|
|
$statements_checker->getSuppressedIssues()
|
|
|
|
)) {
|
|
|
|
// fall through
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$outer_context->byref_constraints[$var_id] = $byref_constraint;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-27 05:09:18 +01:00
|
|
|
if ($outer_context->collect_references) {
|
2017-11-24 18:17:28 +01:00
|
|
|
$outer_context->referenced_var_ids = array_merge(
|
|
|
|
$outer_context->referenced_var_ids,
|
|
|
|
$if_context->referenced_var_ids
|
2017-02-01 05:24:33 +01:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2016-11-11 23:13:13 +01:00
|
|
|
$mic_drop = false;
|
2016-11-02 07:29:00 +01:00
|
|
|
|
2016-11-11 23:13:13 +01:00
|
|
|
if (!$has_leaving_statements) {
|
|
|
|
$if_scope->new_vars = array_diff_key($if_context->vars_in_scope, $outer_context->vars_in_scope);
|
|
|
|
|
|
|
|
// if we have a check like if (!isset($a)) { $a = true; } we want to make sure $a is always set
|
2017-02-11 01:10:13 +01:00
|
|
|
foreach ($if_scope->new_vars as $var_id => $_) {
|
2017-11-28 22:52:52 +01:00
|
|
|
if (isset($if_scope->negated_types[$var_id])
|
2018-01-03 01:55:07 +01:00
|
|
|
&& (
|
|
|
|
$if_scope->negated_types[$var_id] === 'isset'
|
2017-12-05 18:14:10 +01:00
|
|
|
|| $if_scope->negated_types[$var_id] === '^isset'
|
|
|
|
|| $if_scope->negated_types[$var_id] === '!empty'
|
|
|
|
)
|
2017-11-28 22:52:52 +01:00
|
|
|
) {
|
2016-11-11 23:13:13 +01:00
|
|
|
$if_scope->forced_new_vars[$var_id] = Type::getMixed();
|
|
|
|
}
|
2016-10-22 19:23:18 +02:00
|
|
|
}
|
|
|
|
|
2017-12-03 00:28:18 +01:00
|
|
|
$if_scope->redefined_vars = $if_context->getRedefinedVars($outer_context->vars_in_scope);
|
2016-11-11 23:13:13 +01:00
|
|
|
$if_scope->possibly_redefined_vars = $if_scope->redefined_vars;
|
2018-01-28 23:28:34 +01:00
|
|
|
$if_scope->assigned_var_ids = $new_assigned_var_ids;
|
2017-11-28 06:46:41 +01:00
|
|
|
|
|
|
|
$changed_var_ids = array_keys($new_assigned_var_ids);
|
|
|
|
|
2018-01-20 17:48:16 +01:00
|
|
|
// if the variable was only set in the conditional, it's not possibly redefined
|
|
|
|
foreach ($if_scope->possibly_redefined_vars as $var_id => $_) {
|
|
|
|
if (!isset($new_assigned_var_ids[$var_id])
|
|
|
|
&& in_array($var_id, $if_scope->if_cond_changed_var_ids, true)
|
|
|
|
) {
|
|
|
|
unset($if_scope->possibly_redefined_vars[$var_id]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-28 06:46:41 +01:00
|
|
|
if ($if_scope->reasonable_clauses) {
|
|
|
|
// remove all reasonable clauses that would be negated by the if stmts
|
|
|
|
foreach ($changed_var_ids as $var_id) {
|
|
|
|
$if_scope->reasonable_clauses = Context::filterClauses(
|
|
|
|
$var_id,
|
|
|
|
$if_scope->reasonable_clauses,
|
|
|
|
isset($if_context->vars_in_scope[$var_id]) ? $if_context->vars_in_scope[$var_id] : null,
|
|
|
|
$statements_checker
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
2017-09-03 00:15:52 +02:00
|
|
|
|
|
|
|
if ($project_checker->infer_types_from_usage) {
|
|
|
|
$if_scope->possible_param_types = $if_context->possible_param_types;
|
|
|
|
}
|
2017-11-28 06:46:41 +01:00
|
|
|
} else {
|
2017-12-03 00:28:18 +01:00
|
|
|
if (!$has_break_statement) {
|
|
|
|
$if_scope->reasonable_clauses = [];
|
|
|
|
}
|
2017-11-28 06:46:41 +01:00
|
|
|
}
|
|
|
|
|
2017-12-03 00:28:18 +01:00
|
|
|
if ($has_leaving_statements && !$has_break_statement && !$stmt->else && !$stmt->elseifs) {
|
2017-03-16 16:46:07 +01:00
|
|
|
if ($if_scope->negated_types) {
|
2017-11-28 06:46:41 +01:00
|
|
|
$changed_var_ids = [];
|
2016-12-28 20:20:16 +01:00
|
|
|
|
2017-12-29 16:55:41 +01:00
|
|
|
$outer_context_vars_reconciled = Reconciler::reconcileKeyedTypes(
|
2017-03-16 16:46:07 +01:00
|
|
|
$if_scope->negated_types,
|
|
|
|
$outer_context->vars_in_scope,
|
2017-11-28 06:46:41 +01:00
|
|
|
$changed_var_ids,
|
|
|
|
[],
|
2017-06-23 06:39:37 +02:00
|
|
|
$statements_checker,
|
2017-06-21 20:22:52 +02:00
|
|
|
new CodeLocation(
|
|
|
|
$statements_checker->getSource(),
|
|
|
|
$stmt->cond,
|
|
|
|
$outer_context->include_location,
|
|
|
|
false
|
|
|
|
),
|
2017-03-16 16:46:07 +01:00
|
|
|
$statements_checker->getSuppressedIssues()
|
|
|
|
);
|
2016-11-02 07:29:00 +01:00
|
|
|
|
2017-11-28 06:46:41 +01:00
|
|
|
foreach ($changed_var_ids as $changed_var_id) {
|
|
|
|
$outer_context->removeVarFromConflictingClauses($changed_var_id);
|
|
|
|
}
|
|
|
|
|
|
|
|
$changed_var_ids = array_unique(
|
|
|
|
array_merge(
|
|
|
|
$changed_var_ids,
|
|
|
|
array_keys($new_assigned_var_ids)
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
foreach ($changed_var_ids as $var_id) {
|
|
|
|
$if_scope->negated_clauses = Context::filterClauses(
|
|
|
|
$var_id,
|
|
|
|
$if_scope->negated_clauses
|
|
|
|
);
|
2017-03-16 16:46:07 +01:00
|
|
|
}
|
2016-12-29 00:55:16 +01:00
|
|
|
|
2017-03-16 16:46:07 +01:00
|
|
|
$outer_context->vars_in_scope = $outer_context_vars_reconciled;
|
|
|
|
$mic_drop = true;
|
2016-10-22 19:23:18 +02:00
|
|
|
}
|
|
|
|
|
2017-03-18 18:37:00 +01:00
|
|
|
$outer_context->clauses = AlgebraChecker::simplifyCNF(
|
2017-03-16 19:45:45 +01:00
|
|
|
array_merge($outer_context->clauses, $if_scope->negated_clauses)
|
2017-03-16 16:46:07 +01:00
|
|
|
);
|
2016-11-11 23:13:13 +01:00
|
|
|
}
|
2016-10-22 19:23:18 +02:00
|
|
|
|
2016-11-11 23:13:13 +01:00
|
|
|
// update the parent context as necessary, but only if we can safely reason about type negation.
|
|
|
|
// We only update vars that changed both at the start of the if block and then again by an assignment
|
|
|
|
// in the if statement.
|
2016-12-27 19:58:58 +01:00
|
|
|
if ($if_scope->negated_types && !$mic_drop) {
|
2016-12-29 00:55:16 +01:00
|
|
|
$vars_to_update = array_intersect(
|
|
|
|
array_keys($pre_assignment_else_redefined_vars),
|
|
|
|
array_keys($if_scope->negated_types)
|
|
|
|
);
|
|
|
|
|
2017-11-20 05:25:14 +01:00
|
|
|
$extra_vars_to_update = [];
|
|
|
|
|
|
|
|
// if there's an object-like array in there, we also need to update the root array variable
|
|
|
|
foreach ($vars_to_update as $var_id) {
|
|
|
|
$bracked_pos = strpos($var_id, '[');
|
|
|
|
if ($bracked_pos !== false) {
|
|
|
|
$extra_vars_to_update[] = substr($var_id, 0, $bracked_pos);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($extra_vars_to_update) {
|
|
|
|
$vars_to_update = array_unique(array_merge($extra_vars_to_update, $vars_to_update));
|
|
|
|
}
|
|
|
|
|
2017-12-03 22:25:52 +01:00
|
|
|
//update $if_context vars to include the pre-assignment else vars
|
|
|
|
if (!$stmt->else && !$has_leaving_statements) {
|
|
|
|
foreach ($pre_assignment_else_redefined_vars as $var_id => $type) {
|
|
|
|
if (isset($if_context->vars_in_scope[$var_id])) {
|
|
|
|
$if_context->vars_in_scope[$var_id] = Type::combineUnionTypes(
|
|
|
|
$if_context->vars_in_scope[$var_id],
|
|
|
|
$type
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-11 23:13:13 +01:00
|
|
|
$outer_context->update(
|
|
|
|
$old_if_context,
|
|
|
|
$if_context,
|
|
|
|
$has_leaving_statements,
|
2016-12-29 00:55:16 +01:00
|
|
|
$vars_to_update,
|
2016-11-11 23:13:13 +01:00
|
|
|
$if_scope->updated_vars
|
2016-11-02 07:29:00 +01:00
|
|
|
);
|
2016-11-11 23:13:13 +01:00
|
|
|
}
|
2016-10-22 19:23:18 +02:00
|
|
|
|
2016-11-11 23:13:13 +01:00
|
|
|
if (!$has_ending_statements) {
|
|
|
|
$vars = array_diff_key($if_context->vars_possibly_in_scope, $outer_context->vars_possibly_in_scope);
|
|
|
|
|
2017-12-03 00:28:18 +01:00
|
|
|
if ($loop_scope) {
|
|
|
|
if (!$has_continue_statement && !$has_break_statement) {
|
|
|
|
$if_scope->new_vars_possibly_in_scope = $vars;
|
2016-10-22 19:23:18 +02:00
|
|
|
}
|
2017-12-03 00:28:18 +01:00
|
|
|
|
|
|
|
$loop_scope->vars_possibly_in_scope = array_merge(
|
|
|
|
$vars,
|
|
|
|
$loop_scope->vars_possibly_in_scope
|
|
|
|
);
|
|
|
|
} elseif (!$has_leaving_statements) {
|
2016-11-11 23:13:13 +01:00
|
|
|
$if_scope->new_vars_possibly_in_scope = $vars;
|
2016-10-22 19:23:18 +02:00
|
|
|
}
|
2016-11-11 23:13:13 +01:00
|
|
|
}
|
|
|
|
}
|
2016-10-22 19:23:18 +02:00
|
|
|
|
2016-11-11 23:13:13 +01:00
|
|
|
/**
|
|
|
|
* @param StatementsChecker $statements_checker
|
|
|
|
* @param PhpParser\Node\Stmt\ElseIf_ $elseif
|
|
|
|
* @param IfScope $if_scope
|
|
|
|
* @param Context $elseif_context
|
|
|
|
* @param Context $outer_context
|
2017-05-27 02:16:18 +02:00
|
|
|
*
|
2016-11-11 23:13:13 +01:00
|
|
|
* @return false|null
|
|
|
|
*/
|
2017-01-07 21:09:47 +01:00
|
|
|
protected static function analyzeElseIfBlock(
|
2016-11-11 23:13:13 +01:00
|
|
|
StatementsChecker $statements_checker,
|
|
|
|
PhpParser\Node\Stmt\ElseIf_ $elseif,
|
|
|
|
IfScope $if_scope,
|
|
|
|
Context $elseif_context,
|
2017-12-03 00:28:18 +01:00
|
|
|
Context $outer_context,
|
|
|
|
LoopScope $loop_scope = null
|
2016-11-11 23:13:13 +01:00
|
|
|
) {
|
2017-09-03 00:15:52 +02:00
|
|
|
$project_checker = $statements_checker->getFileChecker()->project_checker;
|
|
|
|
|
2016-11-11 23:13:13 +01:00
|
|
|
$original_context = clone $elseif_context;
|
2016-10-22 19:23:18 +02:00
|
|
|
|
2017-11-28 06:46:41 +01:00
|
|
|
$entry_clauses = array_merge($original_context->clauses, $if_scope->negated_clauses);
|
|
|
|
|
2016-11-11 23:13:13 +01:00
|
|
|
if ($if_scope->negated_types) {
|
2017-11-28 06:46:41 +01:00
|
|
|
$changed_var_ids = [];
|
2016-12-28 20:20:16 +01:00
|
|
|
|
2017-12-29 16:55:41 +01:00
|
|
|
$elseif_vars_reconciled = Reconciler::reconcileKeyedTypes(
|
2016-11-11 23:13:13 +01:00
|
|
|
$if_scope->negated_types,
|
|
|
|
$elseif_context->vars_in_scope,
|
2017-11-28 06:46:41 +01:00
|
|
|
$changed_var_ids,
|
|
|
|
[],
|
2017-06-23 06:39:37 +02:00
|
|
|
$statements_checker,
|
2017-06-21 20:22:52 +02:00
|
|
|
new CodeLocation(
|
|
|
|
$statements_checker->getSource(),
|
|
|
|
$elseif->cond,
|
|
|
|
$outer_context->include_location,
|
|
|
|
false
|
|
|
|
),
|
2016-11-11 23:13:13 +01:00
|
|
|
$statements_checker->getSuppressedIssues()
|
|
|
|
);
|
2016-10-22 19:23:18 +02:00
|
|
|
|
2016-11-11 23:13:13 +01:00
|
|
|
$elseif_context->vars_in_scope = $elseif_vars_reconciled;
|
2017-11-28 06:46:41 +01:00
|
|
|
|
|
|
|
if ($changed_var_ids) {
|
|
|
|
$entry_clauses = array_filter(
|
|
|
|
$entry_clauses,
|
|
|
|
/** @return bool */
|
|
|
|
function (Clause $c) use ($changed_var_ids) {
|
|
|
|
return count($c->possibilities) > 1
|
|
|
|
|| !in_array(array_keys($c->possibilities)[0], $changed_var_ids, true);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
2016-11-11 23:13:13 +01:00
|
|
|
}
|
|
|
|
|
2017-03-14 20:48:52 +01:00
|
|
|
$pre_conditional_context = clone $elseif_context;
|
|
|
|
|
2017-02-13 00:06:18 +01:00
|
|
|
$elseif_context->inside_conditional = true;
|
|
|
|
|
2017-11-28 06:46:41 +01:00
|
|
|
$pre_assigned_var_ids = $elseif_context->assigned_var_ids;
|
|
|
|
|
|
|
|
$referenced_var_ids = $elseif_context->referenced_var_ids;
|
|
|
|
$elseif_context->referenced_var_ids = [];
|
|
|
|
|
2016-12-09 18:06:14 +01:00
|
|
|
// check the elseif
|
2017-01-07 21:09:47 +01:00
|
|
|
if (ExpressionChecker::analyze($statements_checker, $elseif->cond, $elseif_context) === false) {
|
2016-12-09 18:06:14 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-11-28 06:46:41 +01:00
|
|
|
$new_referenced_var_ids = $elseif_context->referenced_var_ids;
|
|
|
|
$elseif_context->referenced_var_ids = array_merge(
|
|
|
|
$referenced_var_ids,
|
|
|
|
$elseif_context->referenced_var_ids
|
|
|
|
);
|
|
|
|
|
|
|
|
$new_assigned_var_ids = array_diff_key($elseif_context->assigned_var_ids, $pre_assigned_var_ids);
|
|
|
|
|
|
|
|
$new_referenced_var_ids = array_diff_key($new_referenced_var_ids, $new_assigned_var_ids);
|
|
|
|
|
2017-02-13 00:06:18 +01:00
|
|
|
$elseif_context->inside_conditional = false;
|
|
|
|
|
2018-01-08 05:59:17 +01:00
|
|
|
$mixed_var_ids = [];
|
|
|
|
|
|
|
|
foreach ($elseif_context->vars_in_scope as $var_id => $type) {
|
|
|
|
if ($type->isMixed()) {
|
|
|
|
$mixed_var_ids[] = $var_id;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-18 18:37:00 +01:00
|
|
|
$elseif_clauses = AlgebraChecker::getFormula(
|
2016-12-27 19:58:58 +01:00
|
|
|
$elseif->cond,
|
|
|
|
$statements_checker->getFQCLN(),
|
2017-01-07 20:35:07 +01:00
|
|
|
$statements_checker
|
2016-12-27 19:58:58 +01:00
|
|
|
);
|
|
|
|
|
2018-01-08 07:38:25 +01:00
|
|
|
$elseif_clauses = array_values(
|
|
|
|
array_filter(
|
|
|
|
$elseif_clauses,
|
|
|
|
/** @return bool */
|
|
|
|
function (Clause $c) use ($mixed_var_ids) {
|
|
|
|
$keys = array_keys($c->possibilities);
|
|
|
|
|
|
|
|
foreach ($keys as $key) {
|
|
|
|
foreach ($mixed_var_ids as $mixed_var_id) {
|
|
|
|
if (preg_match('/^' . preg_quote($mixed_var_id) . '(\[|-)/', $key)) {
|
|
|
|
return false;
|
|
|
|
}
|
2018-01-08 05:59:17 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-08 07:38:25 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
)
|
2018-01-08 05:59:17 +01:00
|
|
|
);
|
|
|
|
|
2018-01-08 07:38:25 +01:00
|
|
|
if (!$elseif_clauses) {
|
|
|
|
$elseif_clauses = [new Clause([], true)];
|
|
|
|
}
|
|
|
|
|
2017-04-02 21:26:10 +02:00
|
|
|
// this will see whether any of the clauses in set A conflict with the clauses in set B
|
2017-11-29 04:17:03 +01:00
|
|
|
AlgebraChecker::checkForParadox(
|
|
|
|
$entry_clauses,
|
|
|
|
$elseif_clauses,
|
|
|
|
$statements_checker,
|
|
|
|
$elseif->cond,
|
|
|
|
$new_assigned_var_ids
|
|
|
|
);
|
2017-04-02 21:26:10 +02:00
|
|
|
|
2017-03-18 18:37:00 +01:00
|
|
|
$elseif_context->clauses = AlgebraChecker::simplifyCNF(
|
2016-12-27 19:58:58 +01:00
|
|
|
array_merge(
|
2017-04-02 21:26:10 +02:00
|
|
|
$entry_clauses,
|
2016-12-27 19:58:58 +01:00
|
|
|
$elseif_clauses
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
2017-03-18 18:37:00 +01:00
|
|
|
$reconcilable_elseif_types = AlgebraChecker::getTruthsFromFormula($elseif_context->clauses);
|
|
|
|
$negated_elseif_types = AlgebraChecker::getTruthsFromFormula(AlgebraChecker::negateFormula($elseif_clauses));
|
2016-11-11 23:13:13 +01:00
|
|
|
|
|
|
|
$all_negated_vars = array_unique(
|
|
|
|
array_merge(
|
|
|
|
array_keys($negated_elseif_types),
|
|
|
|
array_keys($if_scope->negated_types)
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
foreach ($all_negated_vars as $var_id) {
|
|
|
|
if (isset($negated_elseif_types[$var_id])) {
|
|
|
|
if (isset($if_scope->negated_types[$var_id])) {
|
2017-04-28 06:31:55 +02:00
|
|
|
$if_scope->negated_types[$var_id] = $if_scope->negated_types[$var_id] . '&' .
|
|
|
|
$negated_elseif_types[$var_id];
|
2016-11-11 23:13:13 +01:00
|
|
|
} else {
|
|
|
|
$if_scope->negated_types[$var_id] = $negated_elseif_types[$var_id];
|
|
|
|
}
|
2016-10-22 19:23:18 +02:00
|
|
|
}
|
2016-11-11 23:13:13 +01:00
|
|
|
}
|
2016-10-22 19:23:18 +02:00
|
|
|
|
2018-01-20 17:48:16 +01:00
|
|
|
$changed_var_ids = [];
|
|
|
|
|
2016-11-11 23:13:13 +01:00
|
|
|
// if the elseif has an || in the conditional, we cannot easily reason about it
|
|
|
|
if ($reconcilable_elseif_types) {
|
2017-12-29 16:55:41 +01:00
|
|
|
$elseif_vars_reconciled = Reconciler::reconcileKeyedTypes(
|
2016-11-11 23:13:13 +01:00
|
|
|
$reconcilable_elseif_types,
|
|
|
|
$elseif_context->vars_in_scope,
|
2017-11-28 06:46:41 +01:00
|
|
|
$changed_var_ids,
|
|
|
|
$new_referenced_var_ids,
|
2017-06-23 06:39:37 +02:00
|
|
|
$statements_checker,
|
2017-06-21 20:22:52 +02:00
|
|
|
new CodeLocation($statements_checker->getSource(), $elseif->cond, $outer_context->include_location),
|
2016-11-11 23:13:13 +01:00
|
|
|
$statements_checker->getSuppressedIssues()
|
|
|
|
);
|
2016-10-22 19:23:18 +02:00
|
|
|
|
2016-11-11 23:13:13 +01:00
|
|
|
$elseif_context->vars_in_scope = $elseif_vars_reconciled;
|
2017-11-28 06:46:41 +01:00
|
|
|
|
|
|
|
if ($changed_var_ids) {
|
|
|
|
$elseif_context->removeReconciledClauses($changed_var_ids);
|
|
|
|
}
|
2016-11-11 23:13:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
$old_elseif_context = clone $elseif_context;
|
2016-10-22 19:23:18 +02:00
|
|
|
|
2018-01-20 17:48:16 +01:00
|
|
|
$pre_stmts_assigned_var_ids = $elseif_context->assigned_var_ids;
|
|
|
|
$elseif_context->assigned_var_ids = [];
|
|
|
|
|
2017-12-03 00:28:18 +01:00
|
|
|
if ($statements_checker->analyze(
|
2018-01-03 03:23:48 +01:00
|
|
|
$elseif->stmts,
|
|
|
|
$elseif_context,
|
|
|
|
$loop_scope
|
|
|
|
) === false
|
2017-12-03 00:28:18 +01:00
|
|
|
) {
|
2016-11-11 23:13:13 +01:00
|
|
|
return false;
|
|
|
|
}
|
2016-10-22 19:23:18 +02:00
|
|
|
|
2018-01-20 17:48:16 +01:00
|
|
|
/** @var array<string, bool> */
|
|
|
|
$new_stmts_assigned_var_ids = $elseif_context->assigned_var_ids;
|
|
|
|
$elseif_context->assigned_var_ids = $pre_stmts_assigned_var_ids;
|
|
|
|
|
2017-02-23 06:25:28 +01:00
|
|
|
if ($elseif_context->byref_constraints !== null) {
|
|
|
|
foreach ($elseif_context->byref_constraints as $var_id => $byref_constraint) {
|
2018-01-25 07:04:26 +01:00
|
|
|
if ($outer_context->byref_constraints !== null
|
|
|
|
&& isset($outer_context->byref_constraints[$var_id])
|
|
|
|
&& ($outer_constraint_type = $outer_context->byref_constraints[$var_id]->type)
|
|
|
|
&& $byref_constraint->type
|
|
|
|
&& !TypeChecker::isContainedBy(
|
2018-02-01 06:50:01 +01:00
|
|
|
$project_checker->codebase,
|
2017-02-23 06:25:28 +01:00
|
|
|
$byref_constraint->type,
|
2018-01-25 07:04:26 +01:00
|
|
|
$outer_constraint_type
|
2017-02-23 06:25:28 +01:00
|
|
|
)
|
|
|
|
) {
|
|
|
|
if (IssueBuffer::accepts(
|
|
|
|
new ConflictingReferenceConstraint(
|
|
|
|
'There is more than one pass-by--reference constraint on ' . $var_id,
|
2017-06-21 20:22:52 +02:00
|
|
|
new CodeLocation($statements_checker, $elseif, $outer_context->include_location, true)
|
2017-02-23 06:25:28 +01:00
|
|
|
),
|
|
|
|
$statements_checker->getSuppressedIssues()
|
|
|
|
)) {
|
|
|
|
// fall through
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$outer_context->byref_constraints[$var_id] = $byref_constraint;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-03 00:28:18 +01:00
|
|
|
$final_actions = ScopeChecker::getFinalControlActions($elseif->stmts);
|
|
|
|
// has a return/throw at end
|
|
|
|
$has_ending_statements = $final_actions === [ScopeChecker::ACTION_END];
|
|
|
|
$has_leaving_statements = $has_ending_statements
|
|
|
|
|| (count($final_actions) && !in_array(ScopeChecker::ACTION_NONE, $final_actions, true));
|
2016-11-11 23:13:13 +01:00
|
|
|
|
2017-12-03 00:28:18 +01:00
|
|
|
$has_break_statement = $final_actions === [ScopeChecker::ACTION_BREAK];
|
|
|
|
$has_continue_statement = $final_actions === [ScopeChecker::ACTION_CONTINUE];
|
|
|
|
|
|
|
|
$if_scope->final_actions = array_merge($final_actions, $if_scope->final_actions);
|
|
|
|
|
2018-01-20 17:48:16 +01:00
|
|
|
// update the parent context as necessary
|
|
|
|
$elseif_redefined_vars = $elseif_context->getRedefinedVars($original_context->vars_in_scope);
|
2016-11-11 23:13:13 +01:00
|
|
|
|
2018-01-20 17:48:16 +01:00
|
|
|
if (!$has_leaving_statements) {
|
|
|
|
if ($if_scope->new_vars === null) {
|
|
|
|
$if_scope->new_vars = array_diff_key($elseif_context->vars_in_scope, $outer_context->vars_in_scope);
|
|
|
|
} else {
|
|
|
|
foreach ($if_scope->new_vars as $new_var => $type) {
|
2018-01-28 23:28:34 +01:00
|
|
|
if (!$elseif_context->hasVariable($new_var, $statements_checker)) {
|
2018-01-20 17:48:16 +01:00
|
|
|
unset($if_scope->new_vars[$new_var]);
|
|
|
|
} else {
|
|
|
|
$if_scope->new_vars[$new_var] = Type::combineUnionTypes(
|
|
|
|
$type,
|
|
|
|
$elseif_context->vars_in_scope[$new_var]
|
|
|
|
);
|
2016-10-22 19:23:18 +02:00
|
|
|
}
|
2016-11-11 23:13:13 +01:00
|
|
|
}
|
2018-01-20 17:48:16 +01:00
|
|
|
}
|
2016-10-22 19:23:18 +02:00
|
|
|
|
2018-01-20 17:48:16 +01:00
|
|
|
$possibly_redefined_vars = $elseif_redefined_vars;
|
2016-11-11 23:13:13 +01:00
|
|
|
|
2018-01-20 17:48:16 +01:00
|
|
|
foreach ($possibly_redefined_vars as $var_id => $_) {
|
|
|
|
if (!isset($new_stmts_assigned_var_ids[$var_id])
|
|
|
|
&& in_array($var_id, $changed_var_ids, true)
|
|
|
|
) {
|
|
|
|
unset($possibly_redefined_vars[$var_id]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-28 23:28:34 +01:00
|
|
|
$assigned_var_ids = array_merge($new_stmts_assigned_var_ids, $new_assigned_var_ids);
|
|
|
|
|
|
|
|
if ($if_scope->assigned_var_ids === null) {
|
|
|
|
$if_scope->assigned_var_ids = $assigned_var_ids;
|
|
|
|
} else {
|
|
|
|
$if_scope->assigned_var_ids = array_intersect_key($assigned_var_ids, $if_scope->assigned_var_ids);
|
|
|
|
}
|
|
|
|
|
2018-01-20 17:48:16 +01:00
|
|
|
if ($if_scope->redefined_vars === null) {
|
|
|
|
$if_scope->redefined_vars = $elseif_redefined_vars;
|
|
|
|
$if_scope->possibly_redefined_vars = $possibly_redefined_vars;
|
|
|
|
} else {
|
|
|
|
foreach ($if_scope->redefined_vars as $redefined_var => $type) {
|
|
|
|
if (!isset($elseif_redefined_vars[$redefined_var])) {
|
|
|
|
unset($if_scope->redefined_vars[$redefined_var]);
|
|
|
|
} else {
|
|
|
|
$if_scope->redefined_vars[$redefined_var] = Type::combineUnionTypes(
|
|
|
|
$elseif_redefined_vars[$redefined_var],
|
|
|
|
$type
|
|
|
|
);
|
2016-11-11 23:13:13 +01:00
|
|
|
}
|
|
|
|
}
|
2017-03-18 18:37:00 +01:00
|
|
|
|
2018-01-20 17:48:16 +01:00
|
|
|
foreach ($possibly_redefined_vars as $var => $type) {
|
|
|
|
if ($type->isMixed()) {
|
|
|
|
$if_scope->possibly_redefined_vars[$var] = $type;
|
|
|
|
} elseif (isset($if_scope->possibly_redefined_vars[$var])) {
|
|
|
|
$if_scope->possibly_redefined_vars[$var] = Type::combineUnionTypes(
|
|
|
|
$type,
|
|
|
|
$if_scope->possibly_redefined_vars[$var]
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
$if_scope->possibly_redefined_vars[$var] = $type;
|
|
|
|
}
|
2017-03-18 19:04:26 +01:00
|
|
|
}
|
2018-01-20 17:48:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if ($if_scope->reasonable_clauses && $elseif_clauses) {
|
|
|
|
$if_scope->reasonable_clauses = AlgebraChecker::combineOredClauses(
|
|
|
|
$if_scope->reasonable_clauses,
|
|
|
|
$elseif_clauses
|
|
|
|
);
|
2017-03-18 19:04:26 +01:00
|
|
|
} else {
|
|
|
|
$if_scope->reasonable_clauses = [];
|
2016-11-11 23:13:13 +01:00
|
|
|
}
|
2018-01-20 17:48:16 +01:00
|
|
|
} else {
|
|
|
|
$if_scope->reasonable_clauses = [];
|
|
|
|
}
|
2016-11-11 23:13:13 +01:00
|
|
|
|
2018-01-20 17:48:16 +01:00
|
|
|
if ($project_checker->infer_types_from_usage) {
|
|
|
|
$elseif_possible_param_types = $elseif_context->possible_param_types;
|
|
|
|
|
|
|
|
if ($if_scope->possible_param_types) {
|
|
|
|
$vars_to_remove = [];
|
2017-09-03 00:15:52 +02:00
|
|
|
|
2018-01-20 17:48:16 +01:00
|
|
|
foreach ($if_scope->possible_param_types as $var => $type) {
|
|
|
|
if (isset($elseif_possible_param_types[$var])) {
|
|
|
|
$if_scope->possible_param_types[$var] = Type::combineUnionTypes(
|
|
|
|
$elseif_possible_param_types[$var],
|
|
|
|
$type
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
$vars_to_remove[] = $var;
|
2017-09-03 00:15:52 +02:00
|
|
|
}
|
|
|
|
}
|
2018-01-20 17:48:16 +01:00
|
|
|
|
|
|
|
foreach ($vars_to_remove as $var) {
|
|
|
|
unset($if_scope->possible_param_types[$var]);
|
|
|
|
}
|
2017-09-03 00:15:52 +02:00
|
|
|
}
|
2018-01-20 17:48:16 +01:00
|
|
|
}
|
2017-09-03 00:15:52 +02:00
|
|
|
|
2018-01-20 17:48:16 +01:00
|
|
|
if ($negated_elseif_types) {
|
|
|
|
if ($has_leaving_statements) {
|
|
|
|
$changed_var_ids = [];
|
2017-03-14 20:48:52 +01:00
|
|
|
|
2018-01-20 17:48:16 +01:00
|
|
|
$leaving_vars_reconciled = Reconciler::reconcileKeyedTypes(
|
|
|
|
$negated_elseif_types,
|
|
|
|
$pre_conditional_context->vars_in_scope,
|
|
|
|
$changed_var_ids,
|
|
|
|
[],
|
|
|
|
$statements_checker,
|
|
|
|
new CodeLocation($statements_checker->getSource(), $elseif, $outer_context->include_location),
|
|
|
|
$statements_checker->getSuppressedIssues()
|
|
|
|
);
|
2017-03-14 20:48:52 +01:00
|
|
|
|
2018-01-20 17:48:16 +01:00
|
|
|
$implied_outer_context = clone $elseif_context;
|
|
|
|
$implied_outer_context->vars_in_scope = $leaving_vars_reconciled;
|
2017-03-14 20:48:52 +01:00
|
|
|
|
2018-01-20 17:48:16 +01:00
|
|
|
$outer_context->update(
|
|
|
|
$elseif_context,
|
|
|
|
$implied_outer_context,
|
|
|
|
false,
|
|
|
|
array_keys($negated_elseif_types),
|
|
|
|
$if_scope->updated_vars
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
$outer_context->update(
|
|
|
|
$old_elseif_context,
|
|
|
|
$elseif_context,
|
|
|
|
false,
|
|
|
|
array_keys($negated_elseif_types),
|
|
|
|
$if_scope->updated_vars
|
|
|
|
);
|
2016-11-11 23:13:13 +01:00
|
|
|
}
|
2018-01-20 17:48:16 +01:00
|
|
|
}
|
2016-11-11 23:13:13 +01:00
|
|
|
|
2018-01-20 17:48:16 +01:00
|
|
|
if (!$has_ending_statements) {
|
|
|
|
$vars = array_diff_key($elseif_context->vars_possibly_in_scope, $outer_context->vars_possibly_in_scope);
|
2016-10-22 19:23:18 +02:00
|
|
|
|
2018-01-20 17:48:16 +01:00
|
|
|
if ($has_leaving_statements && $loop_scope) {
|
|
|
|
if (!$has_continue_statement && !$has_break_statement) {
|
|
|
|
$if_scope->new_vars_possibly_in_scope = array_merge(
|
2016-11-11 23:13:13 +01:00
|
|
|
$vars,
|
2018-01-20 17:48:16 +01:00
|
|
|
$if_scope->new_vars_possibly_in_scope
|
2016-11-02 07:29:00 +01:00
|
|
|
);
|
2016-10-22 19:23:18 +02:00
|
|
|
}
|
2018-01-20 17:48:16 +01:00
|
|
|
|
|
|
|
$loop_scope->vars_possibly_in_scope = array_merge(
|
|
|
|
$vars,
|
|
|
|
$loop_scope->vars_possibly_in_scope
|
|
|
|
);
|
|
|
|
} elseif (!$has_leaving_statements) {
|
|
|
|
$if_scope->new_vars_possibly_in_scope = array_merge($vars, $if_scope->new_vars_possibly_in_scope);
|
2016-11-11 23:13:13 +01:00
|
|
|
}
|
|
|
|
}
|
2016-12-27 19:58:58 +01:00
|
|
|
|
2017-02-27 05:09:18 +01:00
|
|
|
if ($outer_context->collect_references) {
|
2017-11-24 18:17:28 +01:00
|
|
|
$outer_context->referenced_var_ids = array_merge(
|
|
|
|
$outer_context->referenced_var_ids,
|
|
|
|
$elseif_context->referenced_var_ids
|
2017-02-01 05:24:33 +01:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-03-16 19:45:45 +01:00
|
|
|
$if_scope->negated_clauses = array_merge(
|
|
|
|
$if_scope->negated_clauses,
|
2017-03-18 18:37:00 +01:00
|
|
|
AlgebraChecker::negateFormula($elseif_clauses)
|
2016-12-27 19:58:58 +01:00
|
|
|
);
|
2016-11-11 23:13:13 +01:00
|
|
|
}
|
2016-10-22 19:23:18 +02:00
|
|
|
|
2016-11-11 23:13:13 +01:00
|
|
|
/**
|
|
|
|
* @param StatementsChecker $statements_checker
|
|
|
|
* @param PhpParser\Node\Stmt\Else_ $else
|
|
|
|
* @param IfScope $if_scope
|
|
|
|
* @param Context $else_context
|
|
|
|
* @param Context $outer_context
|
2017-05-27 02:16:18 +02:00
|
|
|
*
|
2016-11-11 23:13:13 +01:00
|
|
|
* @return false|null
|
|
|
|
*/
|
2017-01-07 21:09:47 +01:00
|
|
|
protected static function analyzeElseBlock(
|
2016-11-11 23:13:13 +01:00
|
|
|
StatementsChecker $statements_checker,
|
|
|
|
PhpParser\Node\Stmt\Else_ $else,
|
|
|
|
IfScope $if_scope,
|
|
|
|
Context $else_context,
|
2017-12-03 00:28:18 +01:00
|
|
|
Context $outer_context,
|
|
|
|
LoopScope $loop_scope = null
|
2016-11-11 23:13:13 +01:00
|
|
|
) {
|
2017-09-03 00:15:52 +02:00
|
|
|
$project_checker = $statements_checker->getFileChecker()->project_checker;
|
|
|
|
|
2016-11-11 23:13:13 +01:00
|
|
|
$original_context = clone $else_context;
|
2016-10-22 19:23:18 +02:00
|
|
|
|
2017-03-18 18:37:00 +01:00
|
|
|
$else_context->clauses = AlgebraChecker::simplifyCNF(
|
2016-12-27 19:58:58 +01:00
|
|
|
array_merge(
|
|
|
|
$outer_context->clauses,
|
2017-03-16 19:45:45 +01:00
|
|
|
$if_scope->negated_clauses
|
2016-12-27 19:58:58 +01:00
|
|
|
)
|
|
|
|
);
|
|
|
|
|
2017-03-18 18:37:00 +01:00
|
|
|
$else_types = AlgebraChecker::getTruthsFromFormula($else_context->clauses);
|
2016-12-27 19:58:58 +01:00
|
|
|
|
|
|
|
if ($else_types) {
|
2017-11-28 06:46:41 +01:00
|
|
|
$changed_var_ids = [];
|
2016-12-28 20:20:16 +01:00
|
|
|
|
2017-12-29 16:55:41 +01:00
|
|
|
$else_vars_reconciled = Reconciler::reconcileKeyedTypes(
|
2016-12-27 19:58:58 +01:00
|
|
|
$else_types,
|
2016-11-11 23:13:13 +01:00
|
|
|
$else_context->vars_in_scope,
|
2017-11-28 06:46:41 +01:00
|
|
|
$changed_var_ids,
|
|
|
|
[],
|
2017-06-23 06:39:37 +02:00
|
|
|
$statements_checker,
|
2017-06-21 20:22:52 +02:00
|
|
|
new CodeLocation($statements_checker->getSource(), $else, $outer_context->include_location),
|
2016-11-11 23:13:13 +01:00
|
|
|
$statements_checker->getSuppressedIssues()
|
|
|
|
);
|
2016-10-22 19:23:18 +02:00
|
|
|
|
2016-11-11 23:13:13 +01:00
|
|
|
$else_context->vars_in_scope = $else_vars_reconciled;
|
2017-11-28 06:46:41 +01:00
|
|
|
|
|
|
|
$else_context->removeReconciledClauses($changed_var_ids);
|
2016-11-11 23:13:13 +01:00
|
|
|
}
|
2016-10-22 19:23:18 +02:00
|
|
|
|
2016-11-11 23:13:13 +01:00
|
|
|
$old_else_context = clone $else_context;
|
2016-11-02 07:29:00 +01:00
|
|
|
|
2018-01-28 23:28:34 +01:00
|
|
|
$pre_stmts_assigned_var_ids = $else_context->assigned_var_ids;
|
|
|
|
$else_context->assigned_var_ids = [];
|
|
|
|
|
2017-12-03 00:28:18 +01:00
|
|
|
if ($statements_checker->analyze(
|
2018-01-03 03:23:48 +01:00
|
|
|
$else->stmts,
|
|
|
|
$else_context,
|
|
|
|
$loop_scope
|
|
|
|
) === false
|
2017-12-03 00:28:18 +01:00
|
|
|
) {
|
2016-11-11 23:13:13 +01:00
|
|
|
return false;
|
|
|
|
}
|
2016-10-22 19:23:18 +02:00
|
|
|
|
2018-01-28 23:28:34 +01:00
|
|
|
/** @var array<string, bool> */
|
|
|
|
$new_assigned_var_ids = $else_context->assigned_var_ids;
|
|
|
|
$else_context->assigned_var_ids = $pre_stmts_assigned_var_ids;
|
|
|
|
|
2017-02-23 06:25:28 +01:00
|
|
|
if ($else_context->byref_constraints !== null) {
|
2017-07-29 21:05:06 +02:00
|
|
|
$project_checker = $statements_checker->getFileChecker()->project_checker;
|
|
|
|
|
2017-02-23 06:25:28 +01:00
|
|
|
foreach ($else_context->byref_constraints as $var_id => $byref_constraint) {
|
2018-01-25 07:04:26 +01:00
|
|
|
if ($outer_context->byref_constraints !== null
|
|
|
|
&& isset($outer_context->byref_constraints[$var_id])
|
|
|
|
&& ($outer_constraint_type = $outer_context->byref_constraints[$var_id]->type)
|
|
|
|
&& $byref_constraint->type
|
|
|
|
&& !TypeChecker::isContainedBy(
|
2018-02-01 06:50:01 +01:00
|
|
|
$project_checker->codebase,
|
2017-02-23 06:25:28 +01:00
|
|
|
$byref_constraint->type,
|
2018-01-25 07:04:26 +01:00
|
|
|
$outer_constraint_type
|
2017-02-23 06:25:28 +01:00
|
|
|
)
|
|
|
|
) {
|
|
|
|
if (IssueBuffer::accepts(
|
|
|
|
new ConflictingReferenceConstraint(
|
|
|
|
'There is more than one pass-by--reference constraint on ' . $var_id,
|
2017-06-21 20:22:52 +02:00
|
|
|
new CodeLocation($statements_checker, $else, $outer_context->include_location, true)
|
2017-02-23 06:25:28 +01:00
|
|
|
),
|
|
|
|
$statements_checker->getSuppressedIssues()
|
|
|
|
)) {
|
|
|
|
// fall through
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$outer_context->byref_constraints[$var_id] = $byref_constraint;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-27 05:09:18 +01:00
|
|
|
if ($outer_context->collect_references) {
|
2017-11-24 18:17:28 +01:00
|
|
|
$outer_context->referenced_var_ids = array_merge(
|
|
|
|
$outer_context->referenced_var_ids,
|
|
|
|
$else_context->referenced_var_ids
|
2017-02-02 06:45:23 +01:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-12-03 00:28:18 +01:00
|
|
|
$final_actions = ScopeChecker::getFinalControlActions($else->stmts);
|
|
|
|
// has a return/throw at end
|
|
|
|
$has_ending_statements = $final_actions === [ScopeChecker::ACTION_END];
|
|
|
|
$has_leaving_statements = $has_ending_statements
|
|
|
|
|| (count($final_actions) && !in_array(ScopeChecker::ACTION_NONE, $final_actions, true));
|
|
|
|
|
|
|
|
$has_break_statement = $final_actions === [ScopeChecker::ACTION_BREAK];
|
|
|
|
$has_continue_statement = $final_actions === [ScopeChecker::ACTION_CONTINUE];
|
2016-10-22 19:23:18 +02:00
|
|
|
|
2017-12-03 00:28:18 +01:00
|
|
|
$if_scope->final_actions = array_merge($final_actions, $if_scope->final_actions);
|
|
|
|
|
2018-01-20 17:48:16 +01:00
|
|
|
$else_redefined_vars = $else_context->getRedefinedVars($original_context->vars_in_scope);
|
2016-10-22 19:23:18 +02:00
|
|
|
|
2018-01-20 17:48:16 +01:00
|
|
|
// if it doesn't end in a return
|
|
|
|
if (!$has_leaving_statements) {
|
|
|
|
if ($if_scope->new_vars === null) {
|
|
|
|
$if_scope->new_vars = array_diff_key($else_context->vars_in_scope, $outer_context->vars_in_scope);
|
|
|
|
} else {
|
|
|
|
foreach ($if_scope->new_vars as $new_var => $type) {
|
|
|
|
if (!$else_context->hasVariable($new_var)) {
|
|
|
|
unset($if_scope->new_vars[$new_var]);
|
|
|
|
} else {
|
|
|
|
$if_scope->new_vars[$new_var] = Type::combineUnionTypes(
|
|
|
|
$type,
|
|
|
|
$else_context->vars_in_scope[$new_var]
|
|
|
|
);
|
2016-11-11 23:13:13 +01:00
|
|
|
}
|
|
|
|
}
|
2018-01-20 17:48:16 +01:00
|
|
|
}
|
2016-10-22 19:23:18 +02:00
|
|
|
|
2018-01-28 23:28:34 +01:00
|
|
|
if ($if_scope->assigned_var_ids === null) {
|
|
|
|
$if_scope->assigned_var_ids = $new_assigned_var_ids;
|
|
|
|
} else {
|
|
|
|
$if_scope->assigned_var_ids = array_intersect_key($new_assigned_var_ids, $if_scope->assigned_var_ids);
|
|
|
|
}
|
|
|
|
|
2018-01-20 17:48:16 +01:00
|
|
|
if ($if_scope->redefined_vars === null) {
|
|
|
|
$if_scope->redefined_vars = $else_redefined_vars;
|
|
|
|
$if_scope->possibly_redefined_vars = $if_scope->redefined_vars;
|
|
|
|
} else {
|
|
|
|
foreach ($if_scope->redefined_vars as $redefined_var => $type) {
|
|
|
|
if (!isset($else_redefined_vars[$redefined_var])) {
|
|
|
|
unset($if_scope->redefined_vars[$redefined_var]);
|
|
|
|
} else {
|
|
|
|
$if_scope->redefined_vars[$redefined_var] = Type::combineUnionTypes(
|
|
|
|
$else_redefined_vars[$redefined_var],
|
|
|
|
$type
|
|
|
|
);
|
2016-11-11 23:13:13 +01:00
|
|
|
}
|
2018-01-20 17:48:16 +01:00
|
|
|
}
|
2016-10-22 19:23:18 +02:00
|
|
|
|
2018-01-20 17:48:16 +01:00
|
|
|
foreach ($else_redefined_vars as $var => $type) {
|
|
|
|
if ($type->isMixed()) {
|
|
|
|
$if_scope->possibly_redefined_vars[$var] = $type;
|
|
|
|
} elseif (isset($if_scope->possibly_redefined_vars[$var])) {
|
|
|
|
$if_scope->possibly_redefined_vars[$var] = Type::combineUnionTypes(
|
|
|
|
$type,
|
|
|
|
$if_scope->possibly_redefined_vars[$var]
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
$if_scope->possibly_redefined_vars[$var] = $type;
|
2016-10-22 19:23:18 +02:00
|
|
|
}
|
2016-11-11 23:13:13 +01:00
|
|
|
}
|
|
|
|
}
|
2018-01-20 17:48:16 +01:00
|
|
|
} elseif ($if_scope->reasonable_clauses) {
|
|
|
|
$outer_context->clauses = AlgebraChecker::simplifyCNF(
|
|
|
|
array_merge(
|
|
|
|
$if_scope->reasonable_clauses,
|
|
|
|
$original_context->clauses
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
2016-11-11 23:13:13 +01:00
|
|
|
|
2018-01-20 17:48:16 +01:00
|
|
|
// update the parent context as necessary
|
|
|
|
if ($if_scope->negatable_if_types) {
|
|
|
|
$outer_context->update(
|
|
|
|
$old_else_context,
|
|
|
|
$else_context,
|
|
|
|
$has_leaving_statements,
|
|
|
|
array_keys($if_scope->negatable_if_types),
|
|
|
|
$if_scope->updated_vars
|
|
|
|
);
|
|
|
|
}
|
2016-11-11 23:13:13 +01:00
|
|
|
|
2018-01-20 17:48:16 +01:00
|
|
|
if (!$has_ending_statements) {
|
|
|
|
$vars = array_diff_key($else_context->vars_possibly_in_scope, $outer_context->vars_possibly_in_scope);
|
2016-10-22 19:23:18 +02:00
|
|
|
|
2018-01-20 17:48:16 +01:00
|
|
|
if ($has_leaving_statements && $loop_scope) {
|
|
|
|
if (!$has_continue_statement && !$has_break_statement) {
|
|
|
|
$if_scope->new_vars_possibly_in_scope = array_merge(
|
2016-11-11 23:13:13 +01:00
|
|
|
$vars,
|
2018-01-20 17:48:16 +01:00
|
|
|
$if_scope->new_vars_possibly_in_scope
|
2016-11-02 07:29:00 +01:00
|
|
|
);
|
2016-10-22 19:23:18 +02:00
|
|
|
}
|
2018-01-20 17:48:16 +01:00
|
|
|
|
|
|
|
$loop_scope->vars_possibly_in_scope = array_merge(
|
|
|
|
$vars,
|
|
|
|
$loop_scope->vars_possibly_in_scope
|
|
|
|
);
|
|
|
|
} elseif (!$has_leaving_statements) {
|
|
|
|
$if_scope->new_vars_possibly_in_scope = array_merge($vars, $if_scope->new_vars_possibly_in_scope);
|
2016-10-22 19:23:18 +02:00
|
|
|
}
|
|
|
|
}
|
2017-09-03 00:15:52 +02:00
|
|
|
|
|
|
|
if ($project_checker->infer_types_from_usage) {
|
|
|
|
$else_possible_param_types = $else_context->possible_param_types;
|
|
|
|
|
|
|
|
if ($if_scope->possible_param_types) {
|
|
|
|
$vars_to_remove = [];
|
|
|
|
|
|
|
|
foreach ($if_scope->possible_param_types as $var => $type) {
|
|
|
|
if (isset($else_possible_param_types[$var])) {
|
|
|
|
$if_scope->possible_param_types[$var] = Type::combineUnionTypes(
|
|
|
|
$else_possible_param_types[$var],
|
|
|
|
$type
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
$vars_to_remove[] = $var;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($vars_to_remove as $var) {
|
|
|
|
unset($if_scope->possible_param_types[$var]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-10-22 19:23:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param PhpParser\Node\Expr $stmt
|
2017-05-27 02:16:18 +02:00
|
|
|
*
|
2016-10-22 19:23:18 +02:00
|
|
|
* @return PhpParser\Node\Expr|null
|
|
|
|
*/
|
2016-12-28 23:04:03 +01:00
|
|
|
protected static function getDefinitelyEvaluatedExpression(PhpParser\Node\Expr $stmt)
|
2016-10-22 19:23:18 +02:00
|
|
|
{
|
|
|
|
if ($stmt instanceof PhpParser\Node\Expr\BinaryOp) {
|
2016-12-28 23:04:03 +01:00
|
|
|
if ($stmt instanceof PhpParser\Node\Expr\BinaryOp\BooleanAnd ||
|
2017-02-17 03:00:45 +01:00
|
|
|
$stmt instanceof PhpParser\Node\Expr\BinaryOp\LogicalAnd ||
|
2016-12-28 23:04:03 +01:00
|
|
|
$stmt instanceof PhpParser\Node\Expr\BinaryOp\LogicalXor
|
|
|
|
) {
|
|
|
|
return self::getDefinitelyEvaluatedExpression($stmt->left);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $stmt;
|
|
|
|
}
|
|
|
|
|
2016-10-22 19:23:18 +02:00
|
|
|
if ($stmt instanceof PhpParser\Node\Expr\BooleanNot) {
|
2016-12-28 23:04:03 +01:00
|
|
|
return self::getDefinitelyEvaluatedExpression($stmt->expr);
|
2016-10-22 19:23:18 +02:00
|
|
|
}
|
|
|
|
|
2017-01-07 20:35:07 +01:00
|
|
|
return $stmt;
|
2016-10-22 19:23:18 +02:00
|
|
|
}
|
|
|
|
}
|