2020-05-19 18:56:23 +02:00
|
|
|
<?php
|
2021-12-15 04:58:32 +01:00
|
|
|
|
2020-05-19 18:56:23 +02:00
|
|
|
namespace Psalm\Internal\Analyzer\Statements;
|
|
|
|
|
|
|
|
use PhpParser;
|
2021-06-08 04:55:21 +02:00
|
|
|
use Psalm\CodeLocation;
|
|
|
|
use Psalm\Context;
|
2020-05-19 18:56:23 +02:00
|
|
|
use Psalm\Internal\Analyzer\FunctionLikeAnalyzer;
|
|
|
|
use Psalm\Internal\Analyzer\Statements\Expression\Fetch\VariableFetchAnalyzer;
|
2021-06-08 04:55:21 +02:00
|
|
|
use Psalm\Internal\Analyzer\StatementsAnalyzer;
|
2021-01-29 00:58:02 +01:00
|
|
|
use Psalm\Internal\DataFlow\DataFlowNode;
|
2021-12-03 20:11:20 +01:00
|
|
|
use Psalm\Internal\ReferenceConstraint;
|
2020-05-19 18:56:23 +02:00
|
|
|
use Psalm\Issue\InvalidGlobal;
|
|
|
|
use Psalm\IssueBuffer;
|
2021-06-08 04:55:21 +02:00
|
|
|
|
2020-05-19 18:56:23 +02:00
|
|
|
use function is_string;
|
|
|
|
|
|
|
|
class GlobalAnalyzer
|
|
|
|
{
|
|
|
|
public static function analyze(
|
|
|
|
StatementsAnalyzer $statements_analyzer,
|
|
|
|
PhpParser\Node\Stmt\Global_ $stmt,
|
|
|
|
Context $context,
|
|
|
|
?Context $global_context
|
2021-12-05 18:51:26 +01:00
|
|
|
): void {
|
2020-05-19 18:56:23 +02:00
|
|
|
if (!$context->collect_initializations && !$global_context) {
|
2021-11-29 20:54:17 +01:00
|
|
|
IssueBuffer::maybeAdd(
|
2020-05-19 18:56:23 +02:00
|
|
|
new InvalidGlobal(
|
|
|
|
'Cannot use global scope here',
|
|
|
|
new CodeLocation($statements_analyzer, $stmt)
|
|
|
|
),
|
|
|
|
$statements_analyzer->getSource()->getSuppressedIssues()
|
2021-11-29 20:54:17 +01:00
|
|
|
);
|
2020-05-19 18:56:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
$source = $statements_analyzer->getSource();
|
|
|
|
$function_storage = $source instanceof FunctionLikeAnalyzer
|
|
|
|
? $source->getFunctionLikeStorage($statements_analyzer)
|
|
|
|
: null;
|
|
|
|
|
|
|
|
foreach ($stmt->vars as $var) {
|
|
|
|
if ($var instanceof PhpParser\Node\Expr\Variable) {
|
|
|
|
if (is_string($var->name)) {
|
|
|
|
$var_id = '$' . $var->name;
|
|
|
|
|
|
|
|
if ($var->name === 'argv' || $var->name === 'argc') {
|
|
|
|
$context->vars_in_scope[$var_id] = VariableFetchAnalyzer::getGlobalType($var_id);
|
|
|
|
} elseif (isset($function_storage->global_types[$var_id])) {
|
|
|
|
$context->vars_in_scope[$var_id] = clone $function_storage->global_types[$var_id];
|
|
|
|
$context->vars_possibly_in_scope[$var_id] = true;
|
|
|
|
} else {
|
|
|
|
$context->vars_in_scope[$var_id] =
|
2020-09-30 18:28:13 +02:00
|
|
|
$global_context && $global_context->hasVariable($var_id)
|
2020-05-19 18:56:23 +02:00
|
|
|
? clone $global_context->vars_in_scope[$var_id]
|
|
|
|
: VariableFetchAnalyzer::getGlobalType($var_id);
|
|
|
|
|
|
|
|
$context->vars_possibly_in_scope[$var_id] = true;
|
|
|
|
|
2021-12-03 20:11:20 +01:00
|
|
|
$context->byref_constraints[$var_id] = new ReferenceConstraint();
|
2020-05-19 18:56:23 +02:00
|
|
|
}
|
2021-01-29 00:58:02 +01:00
|
|
|
$assignment_node = DataFlowNode::getForAssignment(
|
|
|
|
$var_id,
|
|
|
|
new CodeLocation($statements_analyzer, $var)
|
|
|
|
);
|
|
|
|
$context->vars_in_scope[$var_id]->parent_nodes = [
|
|
|
|
$assignment_node->id => $assignment_node,
|
|
|
|
];
|
2021-07-17 22:00:54 +02:00
|
|
|
$context->vars_from_global[$var_id] = true;
|
2021-01-29 00:58:02 +01:00
|
|
|
$statements_analyzer->registerVariable(
|
|
|
|
$var_id,
|
|
|
|
new CodeLocation($statements_analyzer, $var),
|
|
|
|
$context->branch_point
|
|
|
|
);
|
|
|
|
$statements_analyzer->getCodebase()->analyzer->addNodeReference(
|
|
|
|
$statements_analyzer->getFilePath(),
|
|
|
|
$var,
|
|
|
|
$var_id
|
|
|
|
);
|
2020-05-19 18:56:23 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|