2016-10-22 23:35:59 +02:00
|
|
|
<?php
|
|
|
|
namespace Psalm\Checker\Statements\Block;
|
|
|
|
|
|
|
|
use PhpParser;
|
|
|
|
use Psalm\Checker\ClassLikeChecker;
|
2016-12-04 01:11:30 +01:00
|
|
|
use Psalm\CodeLocation;
|
2016-10-22 23:35:59 +02:00
|
|
|
use Psalm\Checker\ScopeChecker;
|
|
|
|
use Psalm\Checker\StatementsChecker;
|
2016-11-02 07:29:00 +01:00
|
|
|
use Psalm\Context;
|
2016-10-22 23:35:59 +02:00
|
|
|
use Psalm\Type;
|
|
|
|
|
|
|
|
class TryChecker
|
|
|
|
{
|
|
|
|
/**
|
2016-11-02 07:29:00 +01:00
|
|
|
* @param StatementsChecker $statements_checker
|
|
|
|
* @param PhpParser\Node\Stmt\TryCatch $stmt
|
|
|
|
* @param Context $context
|
|
|
|
* @param Context|null $loop_context
|
|
|
|
* @return false|null
|
2016-10-22 23:35:59 +02:00
|
|
|
*/
|
2016-11-02 07:29:00 +01:00
|
|
|
public static function check(
|
|
|
|
StatementsChecker $statements_checker,
|
|
|
|
PhpParser\Node\Stmt\TryCatch $stmt,
|
|
|
|
Context $context,
|
|
|
|
Context $loop_context = null
|
|
|
|
) {
|
2016-10-22 23:35:59 +02:00
|
|
|
$statements_checker->check($stmt->stmts, $context, $loop_context);
|
|
|
|
|
|
|
|
// clone context for catches after running the try block, as
|
|
|
|
// we optimistically assume it only failed at the very end
|
|
|
|
$original_context = clone $context;
|
|
|
|
|
|
|
|
foreach ($stmt->catches as $catch) {
|
|
|
|
$catch_context = clone $original_context;
|
|
|
|
|
2016-12-04 04:41:45 +01:00
|
|
|
$fq_catch_classes = [];
|
2016-10-22 23:35:59 +02:00
|
|
|
|
2016-12-04 04:41:45 +01:00
|
|
|
foreach ($catch->types as $catch_type) {
|
|
|
|
$fq_catch_classes[]= ClassLikeChecker::getFQCLNFromNameObject(
|
|
|
|
$catch_type,
|
|
|
|
$statements_checker->getNamespace(),
|
|
|
|
$statements_checker->getAliasedClasses()
|
|
|
|
);
|
|
|
|
}
|
2016-10-22 23:35:59 +02:00
|
|
|
|
2016-12-04 04:41:45 +01:00
|
|
|
if ($context->check_classes) {
|
|
|
|
foreach ($fq_catch_classes as $fq_catch_class) {
|
|
|
|
if (ClassLikeChecker::checkFullyQualifiedClassLikeName(
|
|
|
|
$fq_catch_class,
|
|
|
|
new CodeLocation($statements_checker->getSource(), $stmt),
|
|
|
|
$statements_checker->getSuppressedIssues()
|
|
|
|
) === false) {
|
|
|
|
return false;
|
|
|
|
}
|
2016-10-22 23:35:59 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-04 04:41:45 +01:00
|
|
|
$catch_context->vars_in_scope['$' . $catch->var] = new Type\Union(
|
|
|
|
array_map(
|
2016-12-07 01:41:52 +01:00
|
|
|
/**
|
|
|
|
* @param string $fq_catch_class
|
2016-12-07 20:13:39 +01:00
|
|
|
* @return Type\Atomic
|
2016-12-07 01:41:52 +01:00
|
|
|
*/
|
2016-12-04 04:41:45 +01:00
|
|
|
function ($fq_catch_class) {
|
|
|
|
return new Type\Atomic($fq_catch_class);
|
|
|
|
},
|
|
|
|
$fq_catch_classes
|
|
|
|
)
|
|
|
|
);
|
2016-10-22 23:35:59 +02:00
|
|
|
|
|
|
|
$catch_context->vars_possibly_in_scope['$' . $catch->var] = true;
|
|
|
|
|
|
|
|
$statements_checker->registerVariable('$' . $catch->var, $catch->getLine());
|
|
|
|
|
|
|
|
$statements_checker->check($catch->stmts, $catch_context, $loop_context);
|
|
|
|
|
|
|
|
if (!ScopeChecker::doesAlwaysReturnOrThrow($catch->stmts)) {
|
|
|
|
foreach ($catch_context->vars_in_scope as $catch_var => $type) {
|
2016-11-02 07:29:00 +01:00
|
|
|
if ($catch->var !== $catch_var &&
|
|
|
|
isset($context->vars_in_scope[$catch_var]) &&
|
|
|
|
(string) $context->vars_in_scope[$catch_var] !== (string) $type
|
|
|
|
) {
|
|
|
|
$context->vars_in_scope[$catch_var] = Type::combineUnionTypes(
|
|
|
|
$context->vars_in_scope[$catch_var],
|
|
|
|
$type
|
|
|
|
);
|
2016-10-22 23:35:59 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-02 07:29:00 +01:00
|
|
|
$context->vars_possibly_in_scope = array_merge(
|
|
|
|
$catch_context->vars_possibly_in_scope,
|
|
|
|
$context->vars_possibly_in_scope
|
|
|
|
);
|
2016-10-22 23:35:59 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-04 04:41:45 +01:00
|
|
|
if ($stmt->finally) {
|
|
|
|
$statements_checker->check($stmt->finally->stmts, $context, $loop_context);
|
2016-10-22 23:35:59 +02:00
|
|
|
}
|
2016-11-02 07:29:00 +01:00
|
|
|
|
|
|
|
return null;
|
2016-10-22 23:35:59 +02:00
|
|
|
}
|
|
|
|
}
|