1
0
mirror of https://github.com/danog/psalm.git synced 2024-12-04 02:27:59 +01:00
psalm/src/Psalm/Internal/Analyzer/ScopeAnalyzer.php

447 lines
16 KiB
PHP
Raw Normal View History

<?php
2018-11-06 03:57:36 +01:00
namespace Psalm\Internal\Analyzer;
use PhpParser;
2021-12-03 20:11:20 +01:00
use Psalm\Internal\Provider\NodeDataProvider;
use Psalm\NodeTypeProvider;
2021-06-08 04:55:21 +02:00
use function array_diff;
use function array_filter;
use function array_intersect;
use function array_unique;
use function array_values;
use function count;
use function in_array;
/**
* @internal
*/
2023-10-26 17:00:29 +02:00
final class ScopeAnalyzer
{
2020-09-20 18:54:46 +02:00
public const ACTION_END = 'END';
public const ACTION_BREAK = 'BREAK';
public const ACTION_CONTINUE = 'CONTINUE';
public const ACTION_LEAVE_SWITCH = 'LEAVE_SWITCH';
2022-12-04 13:37:29 +01:00
public const ACTION_LEAVE_LOOP = 'LEAVE_LOOP';
2020-09-20 18:54:46 +02:00
public const ACTION_NONE = 'NONE';
public const ACTION_RETURN = 'RETURN';
2016-11-02 07:29:00 +01:00
/**
* @param array<PhpParser\Node> $stmts
* @param list<'loop'|'switch'> $break_types
* @param bool $return_is_exit Exit and Throw statements are treated differently from return if this is false
* @return list<self::ACTION_*>
* @psalm-suppress ComplexMethod nothing much we can do
2016-11-02 07:29:00 +01:00
*/
public static function getControlActions(
array $stmts,
2021-12-03 20:11:20 +01:00
?NodeDataProvider $nodes,
2021-05-17 14:27:24 +02:00
array $break_types,
2020-10-12 21:46:47 +02:00
bool $return_is_exit = true
): array {
2016-06-20 22:18:31 +02:00
if (empty($stmts)) {
2018-01-03 03:23:48 +01:00
return [self::ACTION_NONE];
2016-06-20 22:18:31 +02:00
}
$control_actions = [];
2021-09-25 02:34:21 +02:00
foreach ($stmts as $stmt) {
2016-06-21 00:10:24 +02:00
if ($stmt instanceof PhpParser\Node\Stmt\Return_ ||
$stmt instanceof PhpParser\Node\Stmt\Throw_ ||
($stmt instanceof PhpParser\Node\Stmt\Expression && $stmt->expr instanceof PhpParser\Node\Expr\Exit_)
2016-06-21 00:10:24 +02:00
) {
if (!$return_is_exit && $stmt instanceof PhpParser\Node\Stmt\Return_) {
2022-01-06 21:12:51 +01:00
$stmt_return_type = null;
if ($nodes && $stmt->expr) {
$stmt_return_type = $nodes->getType($stmt->expr);
}
// don't consider a return if the expression never returns (e.g. a throw inside a short closure)
2022-01-14 21:13:34 +01:00
if ($stmt_return_type && $stmt_return_type->isNever()) {
return array_values(array_unique([...$control_actions, ...[self::ACTION_END]]));
2022-01-06 21:12:51 +01:00
}
return array_values(array_unique([...$control_actions, ...[self::ACTION_RETURN]]));
}
return array_values(array_unique([...$control_actions, ...[self::ACTION_END]]));
}
if ($stmt instanceof PhpParser\Node\Stmt\Expression) {
// This allows calls to functions that always exit to act as exit statements themselves
if ($nodes
&& ($stmt_expr_type = $nodes->getType($stmt->expr))
&& $stmt_expr_type->isNever()
) {
return array_values(array_unique([...$control_actions, ...[self::ACTION_END]]));
}
continue;
}
if ($stmt instanceof PhpParser\Node\Stmt\Continue_) {
$count = !$stmt->num
? 1
: ($stmt->num instanceof PhpParser\Node\Scalar\LNumber ? $stmt->num->value : null);
if ($break_types && $count !== null && count($break_types) >= $count) {
/** @psalm-suppress InvalidArrayOffset Some int-range improvements are needed */
if ($break_types[count($break_types) - $count] === 'switch') {
return [...$control_actions, ...[self::ACTION_LEAVE_SWITCH]];
2021-05-17 14:27:24 +02:00
}
return array_values($control_actions);
}
return array_values(array_unique([...$control_actions, ...[self::ACTION_CONTINUE]]));
}
if ($stmt instanceof PhpParser\Node\Stmt\Break_) {
$count = !$stmt->num
? 1
: ($stmt->num instanceof PhpParser\Node\Scalar\LNumber ? $stmt->num->value : null);
if ($break_types && $count !== null && count($break_types) >= $count) {
/** @psalm-suppress InvalidArrayOffset Some int-range improvements are needed */
if ($break_types[count($break_types) - $count] === 'switch') {
return [...$control_actions, ...[self::ACTION_LEAVE_SWITCH]];
2021-05-17 14:27:24 +02:00
}
/** @psalm-suppress InvalidArrayOffset Some int-range improvements are needed */
2022-12-04 13:37:29 +01:00
if ($break_types[count($break_types) - $count] === 'loop') {
return [...$control_actions, ...[self::ACTION_LEAVE_LOOP]];
}
return array_values($control_actions);
2018-06-17 02:01:33 +02:00
}
return array_values(array_unique([...$control_actions, ...[self::ACTION_BREAK]]));
2016-06-20 22:18:31 +02:00
}
if ($stmt instanceof PhpParser\Node\Stmt\If_) {
$if_statement_actions = self::getControlActions(
$stmt->stmts,
$nodes,
$break_types,
2022-12-18 17:15:15 +01:00
$return_is_exit,
);
$all_leave = !array_filter(
$if_statement_actions,
2022-12-18 17:15:15 +01:00
static fn(string $action): bool => $action === self::ACTION_NONE,
);
$else_statement_actions = $stmt->else
? self::getControlActions(
$stmt->else->stmts,
$nodes,
$break_types,
2022-12-18 17:15:15 +01:00
$return_is_exit,
) : [];
2016-06-20 22:18:31 +02:00
$all_leave = $all_leave
&& $else_statement_actions
&& !array_filter(
$else_statement_actions,
2022-12-18 17:15:15 +01:00
static fn(string $action): bool => $action === self::ACTION_NONE,
);
$all_elseif_actions = [];
if ($stmt->elseifs) {
2016-06-20 22:18:31 +02:00
foreach ($stmt->elseifs as $elseif) {
$elseif_control_actions = self::getControlActions(
$elseif->stmts,
$nodes,
$break_types,
2022-12-18 17:15:15 +01:00
$return_is_exit,
);
$all_leave = $all_leave
&& !array_filter(
$elseif_control_actions,
2022-12-18 17:15:15 +01:00
static fn(string $action): bool => $action === self::ACTION_NONE,
);
$all_elseif_actions = [...$elseif_control_actions, ...$all_elseif_actions];
2016-06-20 22:18:31 +02:00
}
}
2016-06-20 22:18:31 +02:00
if ($all_leave) {
return array_values(
array_unique([
...$control_actions,
...$if_statement_actions,
...$else_statement_actions,
2022-12-18 17:15:15 +01:00
...$all_elseif_actions,
]),
);
2016-06-20 22:18:31 +02:00
}
2020-09-21 17:18:30 +02:00
$control_actions = array_filter(
[...$control_actions, ...$if_statement_actions, ...$else_statement_actions, ...$all_elseif_actions],
2022-12-18 17:15:15 +01:00
static fn(string $action): bool => $action !== self::ACTION_NONE,
);
2016-06-20 22:18:31 +02:00
}
2016-06-28 19:56:44 +02:00
if ($stmt instanceof PhpParser\Node\Stmt\Switch_) {
$has_ended = false;
$has_non_breaking_default = false;
2016-06-28 20:28:45 +02:00
$has_default_terminator = false;
2016-06-28 19:56:44 +02:00
$all_case_actions = [];
2016-06-28 19:56:44 +02:00
// iterate backwards in a case statement
for ($d = count($stmt->cases) - 1; $d >= 0; --$d) {
$case = $stmt->cases[$d];
2016-06-20 22:18:31 +02:00
$case_actions = self::getControlActions(
$case->stmts,
$nodes,
[...$break_types, ...['switch']],
2022-12-18 17:15:15 +01:00
$return_is_exit,
);
2018-06-17 02:01:33 +02:00
if (array_intersect([
self::ACTION_LEAVE_SWITCH,
self::ACTION_BREAK,
2022-12-18 17:15:15 +01:00
self::ACTION_CONTINUE,
2018-06-17 02:01:33 +02:00
], $case_actions)
) {
continue 2;
2016-06-20 22:18:31 +02:00
}
if (!$case->cond) {
$has_non_breaking_default = true;
}
$case_does_end = !array_diff(
$control_actions,
2022-12-18 17:15:15 +01:00
[self::ACTION_END, self::ACTION_RETURN],
);
2016-06-28 19:56:44 +02:00
if ($case_does_end) {
$has_ended = true;
2016-06-20 22:18:31 +02:00
}
$all_case_actions = [...$all_case_actions, ...$case_actions];
if (!$case_does_end && !$has_ended) {
continue 2;
2016-06-20 22:18:31 +02:00
}
if ($has_non_breaking_default && $case_does_end) {
2016-06-28 19:56:44 +02:00
$has_default_terminator = true;
}
2016-06-20 22:18:31 +02:00
}
$all_case_actions = array_filter(
$all_case_actions,
2022-12-18 17:15:15 +01:00
static fn(string $action): bool => $action !== self::ACTION_NONE,
);
if ($has_default_terminator || $stmt->getAttribute('allMatched', false)) {
return array_values(array_unique([...$control_actions, ...$all_case_actions]));
}
$control_actions = [...$control_actions, ...$all_case_actions];
2016-06-20 22:18:31 +02:00
}
if ($stmt instanceof PhpParser\Node\Stmt\Do_
|| $stmt instanceof PhpParser\Node\Stmt\While_
|| $stmt instanceof PhpParser\Node\Stmt\Foreach_
|| $stmt instanceof PhpParser\Node\Stmt\For_
) {
2021-05-17 14:27:24 +02:00
$loop_actions = self::getControlActions(
$stmt->stmts,
$nodes,
[...$break_types, ...['loop']],
2022-12-18 17:15:15 +01:00
$return_is_exit,
);
2020-09-21 17:18:30 +02:00
$control_actions = array_filter(
[...$control_actions, ...$loop_actions],
2022-12-18 17:15:15 +01:00
static fn(string $action): bool => $action !== self::ACTION_NONE,
2020-09-21 17:18:30 +02:00
);
2022-12-18 18:19:22 +01:00
if (($stmt instanceof PhpParser\Node\Stmt\While_
|| $stmt instanceof PhpParser\Node\Stmt\Do_)
&& $nodes
&& ($stmt_expr_type = $nodes->getType($stmt->cond))
2021-09-04 14:08:04 +02:00
&& $stmt_expr_type->isAlwaysTruthy()
2022-12-04 13:37:29 +01:00
&& !in_array(self::ACTION_LEAVE_LOOP, $control_actions, true)
) {
//infinite while loop that only return don't have an exit path
$have_exit_path = (bool)array_diff(
$control_actions,
2022-12-18 17:15:15 +01:00
[self::ACTION_END, self::ACTION_RETURN],
);
if (!$have_exit_path) {
return array_values(array_unique($control_actions));
}
}
2021-10-10 10:22:41 +02:00
if ($stmt instanceof PhpParser\Node\Stmt\For_
&& $nodes
2022-12-04 13:37:29 +01:00
&& !in_array(self::ACTION_LEAVE_LOOP, $control_actions, true)
2021-10-10 10:22:41 +02:00
) {
2021-10-10 10:27:22 +02:00
$is_infinite_loop = true;
if ($stmt->cond) {
foreach ($stmt->cond as $cond) {
$stmt_expr_type = $nodes->getType($cond);
if (!$stmt_expr_type || !$stmt_expr_type->isAlwaysTruthy()) {
$is_infinite_loop = false;
}
}
}
2021-10-10 10:22:41 +02:00
2021-10-10 10:27:22 +02:00
if ($is_infinite_loop) {
//infinite while loop that only return don't have an exit path
$have_exit_path = (bool)array_diff(
$control_actions,
2022-12-18 17:15:15 +01:00
[self::ACTION_END, self::ACTION_RETURN],
2021-10-10 10:27:22 +02:00
);
if (!$have_exit_path) {
return array_values(array_unique($control_actions));
}
2021-10-10 10:22:41 +02:00
}
}
2022-12-04 13:37:29 +01:00
$control_actions = array_filter(
$control_actions,
2022-12-18 17:15:15 +01:00
static fn(string $action): bool => $action !== self::ACTION_LEAVE_LOOP,
2022-12-04 13:37:29 +01:00
);
2016-06-21 00:10:24 +02:00
}
if ($stmt instanceof PhpParser\Node\Stmt\TryCatch) {
$try_statement_actions = self::getControlActions(
$stmt->stmts,
$nodes,
$break_types,
2022-12-18 17:15:15 +01:00
$return_is_exit,
);
$try_leaves = !array_filter(
$try_statement_actions,
2022-12-18 17:15:15 +01:00
static fn(string $action): bool => $action === self::ACTION_NONE,
);
$all_catch_actions = [];
if ($stmt->catches) {
$all_leave = $try_leaves;
2016-06-21 00:10:24 +02:00
foreach ($stmt->catches as $catch) {
$catch_actions = self::getControlActions(
$catch->stmts,
$nodes,
$break_types,
2022-12-18 17:15:15 +01:00
$return_is_exit,
);
$all_leave = $all_leave
&& !array_filter(
$catch_actions,
2022-12-18 17:15:15 +01:00
static fn(string $action): bool => $action === self::ACTION_NONE,
);
if (!$all_leave) {
$control_actions = [...$control_actions, ...$catch_actions];
} else {
$all_catch_actions = [...$all_catch_actions, ...$catch_actions];
2016-06-21 00:10:24 +02:00
}
}
if ($all_leave && $try_statement_actions !== [self::ACTION_NONE]) {
return array_values(
array_unique(
2022-12-18 17:15:15 +01:00
[...$control_actions, ...$try_statement_actions, ...$all_catch_actions],
),
);
}
} elseif ($try_leaves) {
return array_values(array_unique([...$control_actions, ...$try_statement_actions]));
2016-06-21 00:10:24 +02:00
}
if ($stmt->finally && $stmt->finally->stmts) {
$finally_statement_actions = self::getControlActions(
$stmt->finally->stmts,
$nodes,
$break_types,
2022-12-18 17:15:15 +01:00
$return_is_exit,
);
if (!in_array(self::ACTION_NONE, $finally_statement_actions, true)) {
return [...array_filter(
$control_actions,
2022-12-18 17:15:15 +01:00
static fn(string $action): bool => $action !== self::ACTION_NONE,
), ...$finally_statement_actions];
}
}
2020-09-21 17:18:30 +02:00
$control_actions = array_filter(
[...$control_actions, ...$try_statement_actions],
2022-12-18 17:15:15 +01:00
static fn(string $action): bool => $action !== self::ACTION_NONE,
2020-09-21 17:18:30 +02:00
);
2016-06-20 22:18:31 +02:00
}
}
$control_actions[] = self::ACTION_NONE;
return array_values(array_unique($control_actions));
2016-06-20 22:18:31 +02:00
}
2016-11-02 07:29:00 +01:00
/**
2016-12-17 06:48:31 +01:00
* @param array<PhpParser\Node> $stmts
2016-11-02 07:29:00 +01:00
*/
2021-12-03 20:11:20 +01:00
public static function onlyThrowsOrExits(NodeTypeProvider $type_provider, array $stmts): bool
{
if (empty($stmts)) {
return false;
}
2017-05-27 02:05:57 +02:00
for ($i = count($stmts) - 1; $i >= 0; --$i) {
$stmt = $stmts[$i];
if ($stmt instanceof PhpParser\Node\Stmt\Throw_
|| ($stmt instanceof PhpParser\Node\Stmt\Expression
&& $stmt->expr instanceof PhpParser\Node\Expr\Exit_)
) {
return true;
}
if ($stmt instanceof PhpParser\Node\Stmt\Expression) {
$stmt_type = $type_provider->getType($stmt->expr);
if ($stmt_type && $stmt_type->isNever()) {
return true;
}
}
}
return false;
}
/**
* @param array<PhpParser\Node> $stmts
*/
public static function onlyThrows(array $stmts): bool
{
$stmts_count = count($stmts);
if ($stmts_count !== 1) {
return false;
}
foreach ($stmts as $stmt) {
if ($stmt instanceof PhpParser\Node\Stmt\Throw_) {
return true;
}
}
return false;
}
}