2016-05-09 14:56:07 +02:00
|
|
|
<?php
|
2021-05-05 07:22:29 +02:00
|
|
|
|
2018-11-06 03:57:36 +01:00
|
|
|
namespace Psalm\Internal\Analyzer;
|
2016-05-09 14:56:07 +02:00
|
|
|
|
|
|
|
use PhpParser;
|
2021-05-05 07:22:29 +02:00
|
|
|
|
2021-06-08 04:55:21 +02:00
|
|
|
use function array_diff;
|
2021-05-05 07:22:29 +02:00
|
|
|
use function array_filter;
|
|
|
|
use function array_intersect;
|
|
|
|
use function array_merge;
|
|
|
|
use function array_unique;
|
|
|
|
use function array_values;
|
2019-06-26 22:52:29 +02:00
|
|
|
use function count;
|
2021-05-05 07:22:29 +02:00
|
|
|
use function in_array;
|
2019-06-26 22:52:29 +02:00
|
|
|
use function strtolower;
|
2016-05-09 14:56:07 +02:00
|
|
|
|
2018-12-02 00:37:49 +01:00
|
|
|
/**
|
|
|
|
* @internal
|
|
|
|
*/
|
2018-11-06 03:57:36 +01:00
|
|
|
class ScopeAnalyzer
|
2016-05-09 14:56:07 +02:00
|
|
|
{
|
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';
|
|
|
|
public const ACTION_NONE = 'NONE';
|
|
|
|
public const ACTION_RETURN = 'RETURN';
|
2017-11-28 06:25:21 +01:00
|
|
|
|
2016-11-02 07:29:00 +01:00
|
|
|
/**
|
2020-11-19 20:32:49 +01:00
|
|
|
* @param array<PhpParser\Node\Stmt> $stmts
|
2017-05-27 02:16:18 +02:00
|
|
|
*
|
2017-02-21 22:52:27 +01:00
|
|
|
*/
|
2020-09-04 22:26:33 +02:00
|
|
|
public static function doesEverBreak(array $stmts): bool
|
2017-02-21 22:52:27 +01:00
|
|
|
{
|
|
|
|
if (empty($stmts)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-05-27 02:05:57 +02:00
|
|
|
for ($i = count($stmts) - 1; $i >= 0; --$i) {
|
2017-02-21 22:52:27 +01:00
|
|
|
$stmt = $stmts[$i];
|
|
|
|
|
|
|
|
if ($stmt instanceof PhpParser\Node\Stmt\Break_) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($stmt instanceof PhpParser\Node\Stmt\If_) {
|
|
|
|
if (self::doesEverBreak($stmt->stmts)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($stmt->else && self::doesEverBreak($stmt->else->stmts)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($stmt->elseifs as $elseif) {
|
|
|
|
if (self::doesEverBreak($elseif->stmts)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-11-02 07:29:00 +01:00
|
|
|
/**
|
2020-12-29 12:42:12 +01:00
|
|
|
* @param array<PhpParser\Node> $stmts
|
|
|
|
* @param array<lowercase-string, bool> $exit_functions
|
|
|
|
* @param list<'loop'|'switch'> $break_types
|
|
|
|
* @param bool $return_is_exit Exit and Throw statements are treated differently from return if this is false
|
2017-05-27 02:16:18 +02:00
|
|
|
*
|
2020-12-29 12:42:12 +01:00
|
|
|
* @return list<self::ACTION_*>
|
2021-05-17 19:35:15 +02:00
|
|
|
*
|
|
|
|
* @psalm-suppress ComplexMethod nothing much we can do
|
2016-11-02 07:29:00 +01:00
|
|
|
*/
|
2020-10-15 16:15:55 +02:00
|
|
|
public static function getControlActions(
|
2018-02-23 21:39:33 +01:00
|
|
|
array $stmts,
|
2019-11-25 17:44:54 +01:00
|
|
|
?\Psalm\Internal\Provider\NodeDataProvider $nodes,
|
2018-07-13 05:26:08 +02:00
|
|
|
array $exit_functions,
|
2021-05-17 14:27:24 +02:00
|
|
|
array $break_types,
|
2020-10-12 21:46:47 +02:00
|
|
|
bool $return_is_exit = true
|
2020-10-12 21:02:52 +02:00
|
|
|
): 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
|
|
|
}
|
|
|
|
|
2017-11-28 06:25:21 +01:00
|
|
|
$control_actions = [];
|
|
|
|
|
|
|
|
for ($i = 0, $c = count($stmts); $i < $c; ++$i) {
|
2016-06-20 22:18:31 +02:00
|
|
|
$stmt = $stmts[$i];
|
|
|
|
|
2016-06-21 00:10:24 +02:00
|
|
|
if ($stmt instanceof PhpParser\Node\Stmt\Return_ ||
|
|
|
|
$stmt instanceof PhpParser\Node\Stmt\Throw_ ||
|
2018-04-17 18:16:25 +02:00
|
|
|
($stmt instanceof PhpParser\Node\Stmt\Expression && $stmt->expr instanceof PhpParser\Node\Expr\Exit_)
|
2016-06-21 00:10:24 +02:00
|
|
|
) {
|
2018-02-23 21:39:33 +01:00
|
|
|
if (!$return_is_exit && $stmt instanceof PhpParser\Node\Stmt\Return_) {
|
2021-05-05 07:22:29 +02:00
|
|
|
return array_values(array_unique(array_merge($control_actions, [self::ACTION_RETURN])));
|
2018-02-23 21:39:33 +01:00
|
|
|
}
|
|
|
|
|
2021-05-05 07:22:29 +02:00
|
|
|
return array_values(array_unique(array_merge($control_actions, [self::ACTION_END])));
|
2017-11-28 06:25:21 +01:00
|
|
|
}
|
|
|
|
|
2018-07-13 05:26:08 +02:00
|
|
|
if ($stmt instanceof PhpParser\Node\Stmt\Expression) {
|
2019-01-02 23:16:04 +01:00
|
|
|
// This allows calls to functions that always exit to act as exit statements themselves
|
2019-11-25 17:44:54 +01:00
|
|
|
if ($nodes
|
|
|
|
&& ($stmt_expr_type = $nodes->getType($stmt->expr))
|
|
|
|
&& $stmt_expr_type->isNever()
|
2019-01-02 23:16:04 +01:00
|
|
|
) {
|
2021-05-17 19:35:15 +02:00
|
|
|
return array_values(array_unique(array_merge($control_actions, [self::ACTION_END])));
|
2019-01-02 23:16:04 +01:00
|
|
|
}
|
|
|
|
|
2018-07-13 05:26:08 +02:00
|
|
|
if ($exit_functions) {
|
|
|
|
if ($stmt->expr instanceof PhpParser\Node\Expr\FuncCall
|
|
|
|
|| $stmt->expr instanceof PhpParser\Node\Expr\StaticCall
|
|
|
|
) {
|
|
|
|
if ($stmt->expr instanceof PhpParser\Node\Expr\FuncCall) {
|
|
|
|
/** @var string|null */
|
|
|
|
$resolved_name = $stmt->expr->name->getAttribute('resolvedName');
|
|
|
|
|
|
|
|
if ($resolved_name && isset($exit_functions[strtolower($resolved_name)])) {
|
2021-05-17 19:35:15 +02:00
|
|
|
return array_values(array_unique(array_merge($control_actions, [self::ACTION_END])));
|
2018-07-13 05:26:08 +02:00
|
|
|
}
|
|
|
|
} elseif ($stmt->expr->class instanceof PhpParser\Node\Name
|
|
|
|
&& $stmt->expr->name instanceof PhpParser\Node\Identifier
|
|
|
|
) {
|
|
|
|
/** @var string|null */
|
|
|
|
$resolved_class_name = $stmt->expr->class->getAttribute('resolvedName');
|
|
|
|
|
|
|
|
if ($resolved_class_name
|
|
|
|
&& isset($exit_functions[strtolower($resolved_class_name . '::' . $stmt->expr->name)])
|
|
|
|
) {
|
2021-05-17 19:35:15 +02:00
|
|
|
return array_values(array_unique(array_merge($control_actions, [self::ACTION_END])));
|
2018-07-13 05:26:08 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2017-11-28 06:25:21 +01:00
|
|
|
if ($stmt instanceof PhpParser\Node\Stmt\Continue_) {
|
2021-05-17 15:26:14 +02:00
|
|
|
$count = !$stmt->num
|
|
|
|
? 1
|
|
|
|
: ($stmt->num instanceof PhpParser\Node\Scalar\LNumber ? $stmt->num->value : null);
|
|
|
|
|
|
|
|
if ($break_types && $count !== null && count($break_types) >= $count) {
|
|
|
|
if ($break_types[count($break_types) - $count] === 'switch') {
|
2021-05-17 14:27:24 +02:00
|
|
|
return array_merge($control_actions, [self::ACTION_LEAVE_SWITCH]);
|
|
|
|
}
|
|
|
|
|
2021-05-17 15:26:14 +02:00
|
|
|
return array_values($control_actions);
|
2018-01-24 06:01:08 +01:00
|
|
|
}
|
|
|
|
|
2021-05-05 07:22:29 +02:00
|
|
|
return array_values(array_unique(array_merge($control_actions, [self::ACTION_CONTINUE])));
|
2017-11-28 06:25:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if ($stmt instanceof PhpParser\Node\Stmt\Break_) {
|
2021-05-17 15:26:14 +02:00
|
|
|
$count = !$stmt->num
|
|
|
|
? 1
|
|
|
|
: ($stmt->num instanceof PhpParser\Node\Scalar\LNumber ? $stmt->num->value : null);
|
|
|
|
|
|
|
|
if ($break_types && $count !== null && count($break_types) >= $count) {
|
|
|
|
if ($break_types[count($break_types) - $count] === 'switch') {
|
2021-05-17 14:27:24 +02:00
|
|
|
return array_merge($control_actions, [self::ACTION_LEAVE_SWITCH]);
|
|
|
|
}
|
|
|
|
|
2021-05-17 15:26:14 +02:00
|
|
|
return array_values($control_actions);
|
2018-06-17 02:01:33 +02:00
|
|
|
}
|
|
|
|
|
2021-05-05 07:22:29 +02:00
|
|
|
return array_values(array_unique(array_merge($control_actions, [self::ACTION_BREAK])));
|
2016-06-20 22:18:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if ($stmt instanceof PhpParser\Node\Stmt\If_) {
|
2020-10-15 16:15:55 +02:00
|
|
|
$if_statement_actions = self::getControlActions(
|
2020-01-27 18:17:12 +01:00
|
|
|
$stmt->stmts,
|
|
|
|
$nodes,
|
|
|
|
$exit_functions,
|
2021-05-05 07:22:29 +02:00
|
|
|
$break_types,
|
|
|
|
$return_is_exit
|
2020-01-27 18:17:12 +01:00
|
|
|
);
|
|
|
|
|
2021-05-18 00:52:25 +02:00
|
|
|
$all_leave = !array_filter(
|
|
|
|
$if_statement_actions,
|
|
|
|
function ($action) {
|
|
|
|
return $action === self::ACTION_NONE;
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
2018-01-24 06:01:08 +01:00
|
|
|
$else_statement_actions = $stmt->else
|
2021-05-05 07:22:29 +02:00
|
|
|
? self::getControlActions(
|
|
|
|
$stmt->else->stmts,
|
|
|
|
$nodes,
|
|
|
|
$exit_functions,
|
|
|
|
$break_types,
|
|
|
|
$return_is_exit
|
|
|
|
) : [];
|
2016-06-20 22:18:31 +02:00
|
|
|
|
2021-05-18 00:52:25 +02:00
|
|
|
$all_leave = $all_leave
|
|
|
|
&& $else_statement_actions
|
|
|
|
&& !array_filter(
|
|
|
|
$else_statement_actions,
|
|
|
|
function ($action) {
|
|
|
|
return $action === self::ACTION_NONE;
|
|
|
|
}
|
|
|
|
);
|
2017-11-28 06:25:21 +01:00
|
|
|
|
|
|
|
$all_elseif_actions = [];
|
|
|
|
|
|
|
|
if ($stmt->elseifs) {
|
2016-06-20 22:18:31 +02:00
|
|
|
foreach ($stmt->elseifs as $elseif) {
|
2020-10-15 16:15:55 +02:00
|
|
|
$elseif_control_actions = self::getControlActions(
|
2018-07-13 05:26:08 +02:00
|
|
|
$elseif->stmts,
|
2019-11-25 17:44:54 +01:00
|
|
|
$nodes,
|
2018-07-13 05:26:08 +02:00
|
|
|
$exit_functions,
|
2021-05-05 07:22:29 +02:00
|
|
|
$break_types,
|
|
|
|
$return_is_exit
|
2018-07-13 05:26:08 +02:00
|
|
|
);
|
2017-11-28 06:25:21 +01:00
|
|
|
|
2021-05-18 00:52:25 +02:00
|
|
|
$all_leave = $all_leave
|
|
|
|
&& !array_filter(
|
|
|
|
$elseif_control_actions,
|
|
|
|
function ($action) {
|
|
|
|
return $action === self::ACTION_NONE;
|
|
|
|
}
|
|
|
|
);
|
2017-11-28 06:25:21 +01:00
|
|
|
|
2021-05-18 00:52:25 +02:00
|
|
|
$all_elseif_actions = array_merge($elseif_control_actions, $all_elseif_actions);
|
2016-06-20 22:18:31 +02:00
|
|
|
}
|
2017-11-28 06:25:21 +01:00
|
|
|
}
|
2016-06-20 22:18:31 +02:00
|
|
|
|
2021-05-18 00:52:25 +02:00
|
|
|
if ($all_leave) {
|
|
|
|
return array_values(
|
|
|
|
array_unique(
|
|
|
|
array_merge(
|
|
|
|
$control_actions,
|
|
|
|
$if_statement_actions,
|
|
|
|
$else_statement_actions,
|
|
|
|
$all_elseif_actions
|
|
|
|
)
|
|
|
|
)
|
|
|
|
);
|
2016-06-20 22:18:31 +02:00
|
|
|
}
|
2017-11-28 06:25:21 +01:00
|
|
|
|
2020-09-21 17:18:30 +02:00
|
|
|
$control_actions = array_filter(
|
|
|
|
array_merge(
|
|
|
|
$control_actions,
|
|
|
|
$if_statement_actions,
|
|
|
|
$else_statement_actions,
|
|
|
|
$all_elseif_actions
|
|
|
|
),
|
|
|
|
function ($action) {
|
|
|
|
return $action !== self::ACTION_NONE;
|
|
|
|
}
|
2017-11-28 06:25:21 +01:00
|
|
|
);
|
2016-06-20 22:18:31 +02:00
|
|
|
}
|
|
|
|
|
2016-06-28 19:56:44 +02:00
|
|
|
if ($stmt instanceof PhpParser\Node\Stmt\Switch_) {
|
2018-02-23 21:39:33 +01:00
|
|
|
$has_ended = false;
|
2018-01-24 22:15:53 +01:00
|
|
|
$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
|
|
|
|
2021-05-18 14:52:41 +02:00
|
|
|
$all_case_actions = [];
|
|
|
|
|
2016-06-28 19:56:44 +02:00
|
|
|
// iterate backwards in a case statement
|
2017-11-28 06:25:21 +01:00
|
|
|
for ($d = count($stmt->cases) - 1; $d >= 0; --$d) {
|
|
|
|
$case = $stmt->cases[$d];
|
2016-06-20 22:18:31 +02:00
|
|
|
|
2021-05-05 07:22:29 +02:00
|
|
|
$case_actions = self::getControlActions(
|
|
|
|
$case->stmts,
|
|
|
|
$nodes,
|
|
|
|
$exit_functions,
|
2021-05-17 14:27:24 +02:00
|
|
|
array_merge($break_types, ['switch']),
|
2021-05-05 07:22:29 +02:00
|
|
|
$return_is_exit
|
|
|
|
);
|
2017-11-28 06:25:21 +01:00
|
|
|
|
2018-06-17 02:01:33 +02:00
|
|
|
if (array_intersect([
|
|
|
|
self::ACTION_LEAVE_SWITCH,
|
|
|
|
self::ACTION_BREAK,
|
|
|
|
self::ACTION_CONTINUE
|
|
|
|
], $case_actions)
|
|
|
|
) {
|
2017-11-28 06:25:21 +01:00
|
|
|
continue 2;
|
2016-06-20 22:18:31 +02:00
|
|
|
}
|
|
|
|
|
2018-01-24 22:15:53 +01:00
|
|
|
if (!$case->cond) {
|
|
|
|
$has_non_breaking_default = true;
|
|
|
|
}
|
|
|
|
|
2021-05-18 00:52:25 +02:00
|
|
|
$case_does_end = !array_diff(
|
|
|
|
$control_actions,
|
|
|
|
[ScopeAnalyzer::ACTION_END, ScopeAnalyzer::ACTION_RETURN]
|
|
|
|
);
|
2016-06-28 19:56:44 +02:00
|
|
|
|
2018-02-23 21:39:33 +01:00
|
|
|
if ($case_does_end) {
|
|
|
|
$has_ended = true;
|
2016-06-20 22:18:31 +02:00
|
|
|
}
|
|
|
|
|
2021-05-18 14:52:41 +02:00
|
|
|
$all_case_actions = array_merge(
|
|
|
|
$all_case_actions,
|
|
|
|
$case_actions
|
|
|
|
);
|
|
|
|
|
2018-02-23 21:39:33 +01:00
|
|
|
if (!$case_does_end && !$has_ended) {
|
2017-11-28 06:25:21 +01:00
|
|
|
continue 2;
|
2016-06-20 22:18:31 +02:00
|
|
|
}
|
|
|
|
|
2018-02-23 21:39:33 +01: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
|
|
|
}
|
|
|
|
|
2021-06-09 15:06:23 +02:00
|
|
|
$all_case_actions = array_filter(
|
|
|
|
$all_case_actions,
|
|
|
|
function ($action) {
|
|
|
|
return $action !== self::ACTION_NONE;
|
|
|
|
}
|
|
|
|
);
|
2021-05-18 14:52:41 +02:00
|
|
|
|
2021-06-09 15:06:23 +02:00
|
|
|
if ($has_default_terminator || isset($stmt->allMatched)) {
|
2021-05-18 14:52:41 +02:00
|
|
|
return array_values(array_unique(array_merge($control_actions, $all_case_actions)));
|
2017-11-28 06:25:21 +01:00
|
|
|
}
|
2021-06-09 15:06:23 +02:00
|
|
|
|
|
|
|
$control_actions = array_merge(
|
|
|
|
$control_actions,
|
|
|
|
$all_case_actions
|
|
|
|
);
|
2016-06-20 22:18:31 +02:00
|
|
|
}
|
|
|
|
|
2019-09-29 22:12:52 +02:00
|
|
|
if ($stmt instanceof PhpParser\Node\Stmt\Do_
|
|
|
|
|| $stmt instanceof PhpParser\Node\Stmt\While_
|
2020-01-27 18:17:12 +01:00
|
|
|
|| $stmt instanceof PhpParser\Node\Stmt\Foreach_
|
|
|
|
|| $stmt instanceof PhpParser\Node\Stmt\For_
|
2019-09-29 22:12:52 +02:00
|
|
|
) {
|
2021-05-17 14:27:24 +02:00
|
|
|
$loop_actions = self::getControlActions(
|
2020-01-27 18:17:12 +01:00
|
|
|
$stmt->stmts,
|
|
|
|
$nodes,
|
|
|
|
$exit_functions,
|
2021-05-05 07:22:29 +02:00
|
|
|
array_merge($break_types, ['loop']),
|
|
|
|
$return_is_exit
|
2020-01-27 18:17:12 +01:00
|
|
|
);
|
2017-11-28 06:25:21 +01:00
|
|
|
|
2020-09-21 17:18:30 +02:00
|
|
|
$control_actions = array_filter(
|
2021-05-17 14:27:24 +02:00
|
|
|
array_merge($control_actions, $loop_actions),
|
|
|
|
function ($action) {
|
|
|
|
return $action !== self::ACTION_NONE;
|
2020-09-21 17:18:30 +02:00
|
|
|
}
|
|
|
|
);
|
2021-09-02 21:47:10 +02:00
|
|
|
|
|
|
|
if ($stmt instanceof PhpParser\Node\Stmt\While_
|
|
|
|
&& $nodes
|
|
|
|
&& ($stmt_expr_type = $nodes->getType($stmt->cond))
|
2021-09-04 14:08:04 +02:00
|
|
|
&& $stmt_expr_type->isAlwaysTruthy()
|
2021-09-02 21:47:10 +02:00
|
|
|
) {
|
|
|
|
//infinite while loop that only return don't have an exit path
|
|
|
|
$have_exit_path = (bool)array_diff(
|
|
|
|
$control_actions,
|
|
|
|
[self::ACTION_END, self::ACTION_RETURN]
|
|
|
|
);
|
|
|
|
|
|
|
|
if (!$have_exit_path) {
|
|
|
|
return array_values(array_unique($control_actions));
|
|
|
|
}
|
|
|
|
}
|
2016-06-21 00:10:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if ($stmt instanceof PhpParser\Node\Stmt\TryCatch) {
|
2020-10-15 16:15:55 +02:00
|
|
|
$try_statement_actions = self::getControlActions(
|
2019-11-25 17:44:54 +01:00
|
|
|
$stmt->stmts,
|
|
|
|
$nodes,
|
|
|
|
$exit_functions,
|
2021-05-05 07:22:29 +02:00
|
|
|
$break_types,
|
|
|
|
$return_is_exit
|
2019-11-25 17:44:54 +01:00
|
|
|
);
|
2017-11-28 06:25:21 +01:00
|
|
|
|
2021-05-18 00:52:25 +02:00
|
|
|
$try_leaves = !array_filter(
|
|
|
|
$try_statement_actions,
|
|
|
|
function ($action) {
|
|
|
|
return $action === self::ACTION_NONE;
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
|
|
|
$all_catch_actions = [];
|
|
|
|
|
2017-11-28 06:25:21 +01:00
|
|
|
if ($stmt->catches) {
|
2021-05-18 00:52:25 +02:00
|
|
|
$all_leave = $try_leaves;
|
2017-11-28 06:25:21 +01:00
|
|
|
|
2016-06-21 00:10:24 +02:00
|
|
|
foreach ($stmt->catches as $catch) {
|
2020-10-15 16:15:55 +02:00
|
|
|
$catch_actions = self::getControlActions(
|
2019-11-25 17:44:54 +01:00
|
|
|
$catch->stmts,
|
|
|
|
$nodes,
|
|
|
|
$exit_functions,
|
2021-05-05 07:22:29 +02:00
|
|
|
$break_types,
|
|
|
|
$return_is_exit
|
2019-11-25 17:44:54 +01:00
|
|
|
);
|
2017-11-28 06:25:21 +01:00
|
|
|
|
2021-05-18 00:52:25 +02:00
|
|
|
$all_leave = $all_leave
|
|
|
|
&& !array_filter(
|
|
|
|
$catch_actions,
|
|
|
|
function ($action) {
|
|
|
|
return $action === self::ACTION_NONE;
|
|
|
|
}
|
|
|
|
);
|
2017-11-28 06:25:21 +01:00
|
|
|
|
2021-05-18 00:52:25 +02:00
|
|
|
if (!$all_leave) {
|
2017-11-28 06:25:21 +01:00
|
|
|
$control_actions = array_merge($control_actions, $catch_actions);
|
2021-05-18 00:52:25 +02:00
|
|
|
} else {
|
|
|
|
$all_catch_actions = array_merge($all_catch_actions, $catch_actions);
|
2016-06-21 00:10:24 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-18 00:52:25 +02:00
|
|
|
if ($all_leave && $try_statement_actions !== [self::ACTION_NONE]) {
|
|
|
|
return array_values(
|
|
|
|
array_unique(
|
|
|
|
array_merge(
|
|
|
|
$control_actions,
|
|
|
|
$try_statement_actions,
|
|
|
|
$all_catch_actions
|
|
|
|
)
|
|
|
|
)
|
|
|
|
);
|
2017-11-28 06:25:21 +01:00
|
|
|
}
|
2021-05-18 00:52:25 +02:00
|
|
|
} elseif ($try_leaves) {
|
2021-05-05 07:22:29 +02:00
|
|
|
return array_values(array_unique(array_merge($control_actions, $try_statement_actions)));
|
2016-06-21 00:10:24 +02:00
|
|
|
}
|
|
|
|
|
2018-01-29 01:02:31 +01:00
|
|
|
if ($stmt->finally) {
|
|
|
|
if ($stmt->finally->stmts) {
|
2020-10-15 16:15:55 +02:00
|
|
|
$finally_statement_actions = self::getControlActions(
|
2018-01-29 01:02:31 +01:00
|
|
|
$stmt->finally->stmts,
|
2019-11-25 17:44:54 +01:00
|
|
|
$nodes,
|
2018-07-13 05:26:08 +02:00
|
|
|
$exit_functions,
|
2021-05-05 07:22:29 +02:00
|
|
|
$break_types,
|
|
|
|
$return_is_exit
|
2018-01-29 01:02:31 +01:00
|
|
|
);
|
|
|
|
|
|
|
|
if (!in_array(self::ACTION_NONE, $finally_statement_actions, true)) {
|
2020-09-21 17:18:30 +02:00
|
|
|
return array_merge(
|
|
|
|
array_filter(
|
|
|
|
$control_actions,
|
|
|
|
function ($action) {
|
|
|
|
return $action !== self::ACTION_NONE;
|
|
|
|
}
|
|
|
|
),
|
|
|
|
$finally_statement_actions
|
|
|
|
);
|
2018-01-29 01:02:31 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!$stmt->catches && !in_array(self::ACTION_NONE, $try_statement_actions, true)) {
|
2020-09-21 17:18:30 +02:00
|
|
|
return array_merge(
|
|
|
|
array_filter(
|
|
|
|
$control_actions,
|
|
|
|
function ($action) {
|
|
|
|
return $action !== self::ACTION_NONE;
|
|
|
|
}
|
|
|
|
),
|
|
|
|
$try_statement_actions
|
|
|
|
);
|
2018-01-29 01:02:31 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-21 17:18:30 +02:00
|
|
|
$control_actions = array_filter(
|
2021-05-05 07:22:29 +02:00
|
|
|
array_merge($control_actions, $try_statement_actions),
|
2020-09-21 17:18:30 +02:00
|
|
|
function ($action) {
|
|
|
|
return $action !== self::ACTION_NONE;
|
|
|
|
}
|
|
|
|
);
|
2016-06-20 22:18:31 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-02 22:57:40 +01:00
|
|
|
$control_actions[] = self::ACTION_NONE;
|
2017-11-28 06:25:21 +01:00
|
|
|
|
2021-05-05 07:22:29 +02:00
|
|
|
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
|
2017-05-27 02:16:18 +02:00
|
|
|
*
|
2016-11-02 07:29:00 +01:00
|
|
|
*/
|
2020-09-04 22:26:33 +02:00
|
|
|
public static function onlyThrowsOrExits(\Psalm\NodeTypeProvider $type_provider, array $stmts): bool
|
2016-06-17 00:52:12 +02:00
|
|
|
{
|
|
|
|
if (empty($stmts)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-05-27 02:05:57 +02:00
|
|
|
for ($i = count($stmts) - 1; $i >= 0; --$i) {
|
2016-06-17 00:52:12 +02:00
|
|
|
$stmt = $stmts[$i];
|
|
|
|
|
2019-05-02 05:45:03 +02:00
|
|
|
if ($stmt instanceof PhpParser\Node\Stmt\Throw_
|
|
|
|
|| ($stmt instanceof PhpParser\Node\Stmt\Expression
|
|
|
|
&& $stmt->expr instanceof PhpParser\Node\Expr\Exit_)
|
|
|
|
) {
|
2016-06-17 00:52:12 +02:00
|
|
|
return true;
|
|
|
|
}
|
2020-05-26 21:02:23 +02:00
|
|
|
|
|
|
|
if ($stmt instanceof PhpParser\Node\Stmt\Expression) {
|
|
|
|
$stmt_type = $type_provider->getType($stmt->expr);
|
|
|
|
|
|
|
|
if ($stmt_type && $stmt_type->isNever()) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
2016-06-17 00:52:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
2016-05-09 14:56:07 +02:00
|
|
|
}
|