1
0
mirror of https://github.com/danog/psalm.git synced 2024-12-15 19:07:00 +01:00
psalm/src/Psalm/Internal/Analyzer/Statements/Expression/ArrayAnalyzer.php

356 lines
13 KiB
PHP
Raw Normal View History

2018-01-14 18:09:40 +01:00
<?php
2018-11-06 03:57:36 +01:00
namespace Psalm\Internal\Analyzer\Statements\Expression;
2018-01-14 18:09:40 +01:00
use PhpParser;
2018-11-06 03:57:36 +01:00
use Psalm\Internal\Analyzer\Statements\ExpressionAnalyzer;
use Psalm\Internal\Analyzer\StatementsAnalyzer;
use Psalm\CodeLocation;
2018-01-14 18:09:40 +01:00
use Psalm\Context;
use Psalm\Issue\DuplicateArrayKey;
use Psalm\IssueBuffer;
2018-01-14 18:09:40 +01:00
use Psalm\Type;
use Psalm\Internal\Type\TypeCombination;
2018-01-14 18:09:40 +01:00
use Psalm\Type\Atomic\TInt;
use Psalm\Type\Atomic\TString;
use function preg_match;
use function array_merge;
use function array_values;
use function count;
2018-01-14 18:09:40 +01:00
/**
* @internal
*/
2018-11-06 03:57:36 +01:00
class ArrayAnalyzer
2018-01-14 18:09:40 +01:00
{
/**
2018-11-11 18:01:14 +01:00
* @param StatementsAnalyzer $statements_analyzer
2018-01-14 18:09:40 +01:00
* @param PhpParser\Node\Expr\Array_ $stmt
* @param Context $context
*
* @return false|null
*/
public static function analyze(
2018-11-11 18:01:14 +01:00
StatementsAnalyzer $statements_analyzer,
2018-01-14 18:09:40 +01:00
PhpParser\Node\Expr\Array_ $stmt,
Context $context
) {
// if the array is empty, this special type allows us to match any other array type against it
if (empty($stmt->items)) {
$statements_analyzer->node_data->setType($stmt, Type::getEmptyArray());
2018-01-14 18:09:40 +01:00
return null;
}
$item_key_atomic_types = [];
$item_value_atomic_types = [];
2018-01-14 18:09:40 +01:00
$property_types = [];
$class_strings = [];
2018-01-14 18:09:40 +01:00
$can_create_objectlike = true;
$array_keys = [];
$int_offset_diff = 0;
$codebase = $statements_analyzer->getCodebase();
2019-10-09 00:44:46 +02:00
$all_list = true;
2019-10-12 05:28:17 +02:00
$taint_sources = [];
$either_tainted = 0;
2018-01-14 18:09:40 +01:00
foreach ($stmt->items as $int_offset => $item) {
if ($item === null) {
continue;
}
2019-11-27 08:07:17 +01:00
if (ExpressionAnalyzer::analyze($statements_analyzer, $item->value, $context) === false) {
return false;
}
if ($item->unpack) {
$unpacked_array_type = $statements_analyzer->node_data->getType($item->value);
if (!$unpacked_array_type) {
continue;
}
foreach ($unpacked_array_type->getTypes() as $unpacked_atomic_type) {
if ($unpacked_atomic_type instanceof Type\Atomic\ObjectLike) {
$unpacked_array_offset = 0;
foreach ($unpacked_atomic_type->properties as $key => $property_value) {
2019-11-27 08:11:18 +01:00
if (\is_string($key)) {
2019-11-27 08:07:17 +01:00
if (IssueBuffer::accepts(
new DuplicateArrayKey(
'String keys are not supported in unpacked arrays',
new CodeLocation($statements_analyzer->getSource(), $item->value)
),
$statements_analyzer->getSuppressedIssues()
)) {
// fall through
}
continue;
}
$item_key_atomic_types[] = new Type\Atomic\TLiteralInt($key);
$item_value_atomic_types = array_merge(
$item_value_atomic_types,
array_values($property_value->getTypes())
);
$array_keys[$int_offset + $int_offset_diff + $unpacked_array_offset] = true;
$property_types[$int_offset + $int_offset_diff + $unpacked_array_offset] = $property_value;
$unpacked_array_offset++;
}
$int_offset_diff += $unpacked_array_offset - 1;
} else {
$can_create_objectlike = false;
if ($unpacked_atomic_type instanceof Type\Atomic\TArray) {
if ($unpacked_atomic_type->type_params[0]->hasString()) {
if (IssueBuffer::accepts(
new DuplicateArrayKey(
'String keys are not supported in unpacked arrays',
new CodeLocation($statements_analyzer->getSource(), $item->value)
),
$statements_analyzer->getSuppressedIssues()
)) {
// fall through
}
} elseif ($unpacked_atomic_type->type_params[0]->hasInt()) {
$item_key_atomic_types[] = new Type\Atomic\TInt();
}
$item_value_atomic_types = array_merge(
$item_value_atomic_types,
array_values($unpacked_atomic_type->type_params[1]->getTypes())
);
} elseif ($unpacked_atomic_type instanceof Type\Atomic\TList) {
$item_key_atomic_types[] = new Type\Atomic\TInt();
$item_value_atomic_types = array_merge(
$item_value_atomic_types,
array_values($unpacked_atomic_type->type_param->getTypes())
);
}
}
}
continue;
}
$item_key_value = null;
2018-01-14 18:09:40 +01:00
if ($item->key) {
2019-10-09 00:44:46 +02:00
$all_list = false;
2018-11-11 18:01:14 +01:00
if (ExpressionAnalyzer::analyze($statements_analyzer, $item->key, $context) === false) {
2018-01-14 18:09:40 +01:00
return false;
}
if ($item_key_type = $statements_analyzer->node_data->getType($item->key)) {
$key_type = $item_key_type;
if ($key_type->isNull()) {
$key_type = Type::getString('');
}
if ($item->key instanceof PhpParser\Node\Scalar\String_
&& preg_match('/^(0|[1-9][0-9]*)$/', $item->key->value)
) {
$key_type = Type::getInt(false, (int) $item->key->value);
}
$item_key_atomic_types = array_merge($item_key_atomic_types, array_values($key_type->getTypes()));
if ($key_type->isSingleStringLiteral()) {
$item_key_literal_type = $key_type->getSingleStringLiteral();
$item_key_value = $item_key_literal_type->value;
if ($item_key_literal_type instanceof Type\Atomic\TLiteralClassString) {
$class_strings[$item_key_value] = true;
}
} elseif ($key_type->isSingleIntLiteral()) {
$item_key_value = $key_type->getSingleIntLiteral()->value;
if ($item_key_value > $int_offset + $int_offset_diff) {
2019-01-08 15:56:54 +01:00
$int_offset_diff = $item_key_value - $int_offset;
}
}
2018-01-14 18:09:40 +01:00
}
} else {
$item_key_value = $int_offset + $int_offset_diff;
$item_key_atomic_types[] = new Type\Atomic\TInt();
2018-01-14 18:09:40 +01:00
}
if ($item_key_value !== null) {
if (isset($array_keys[$item_key_value])) {
if (IssueBuffer::accepts(
new DuplicateArrayKey(
'Key \'' . $item_key_value . '\' already exists on array',
2018-11-11 18:01:14 +01:00
new CodeLocation($statements_analyzer->getSource(), $item)
),
2018-11-11 18:01:14 +01:00
$statements_analyzer->getSuppressedIssues()
)) {
// fall through
}
}
$array_keys[$item_key_value] = true;
}
2019-10-12 05:28:17 +02:00
if ($codebase->taint) {
if ($item_value_type = $statements_analyzer->node_data->getType($item->value)) {
$taint_sources = array_merge($taint_sources, $item_value_type->sources ?: []);
$either_tainted = $either_tainted | $item_value_type->tainted;
2019-10-12 05:28:17 +02:00
}
if ($item->key && ($item_key_type = $statements_analyzer->node_data->getType($item->key))) {
$taint_sources = array_merge($taint_sources, $item_key_type->sources ?: []);
$either_tainted = $either_tainted | $item_key_type->tainted;
2019-10-12 05:28:17 +02:00
}
}
2019-06-08 16:32:40 +02:00
if ($item->byRef) {
$var_id = ExpressionAnalyzer::getArrayVarId(
$item->value,
$statements_analyzer->getFQCLN(),
$statements_analyzer
);
if ($var_id) {
$context->removeDescendents(
$var_id,
$context->vars_in_scope[$var_id] ?? null,
2019-06-08 16:32:40 +02:00
null,
$statements_analyzer
);
$context->vars_in_scope[$var_id] = Type::getMixed();
}
}
if ($item_value_atomic_types && !$can_create_objectlike) {
2018-01-14 18:09:40 +01:00
continue;
}
if ($item_value_type = $statements_analyzer->node_data->getType($item->value)) {
2019-10-10 16:26:13 +02:00
if ($item_key_value !== null && count($property_types) <= 100) {
$property_types[$item_key_value] = $item_value_type;
2018-01-14 18:09:40 +01:00
} else {
$can_create_objectlike = false;
}
$item_value_atomic_types = array_merge(
$item_value_atomic_types,
array_values($item_value_type->getTypes())
);
2018-01-14 18:09:40 +01:00
} else {
$item_value_atomic_types[] = new Type\Atomic\TMixed();
2018-01-14 18:09:40 +01:00
2019-10-10 16:26:13 +02:00
if ($item_key_value !== null && count($property_types) <= 100) {
$property_types[$item_key_value] = Type::getMixed();
2018-01-14 18:09:40 +01:00
} else {
$can_create_objectlike = false;
}
}
}
if ($item_key_atomic_types) {
$item_key_type = TypeCombination::combineTypes(
$item_key_atomic_types,
$codebase,
false,
true,
30
);
} else {
$item_key_type = null;
}
if ($item_value_atomic_types) {
$item_value_type = TypeCombination::combineTypes(
$item_value_atomic_types,
$codebase,
false,
true,
30
);
} else {
$item_value_type = null;
}
2019-10-09 00:44:46 +02:00
2018-01-14 18:09:40 +01:00
// if this array looks like an object-like array, let's return that instead
if ($item_value_type
&& $item_key_type
&& ($item_key_type->hasString() || $item_key_type->hasInt())
&& $can_create_objectlike
) {
$object_like = new Type\Atomic\ObjectLike($property_types, $class_strings);
$object_like->sealed = true;
2019-10-09 00:44:46 +02:00
$object_like->is_list = $all_list;
$stmt_type = new Type\Union([$object_like]);
2018-01-14 18:09:40 +01:00
2019-10-12 05:28:17 +02:00
if ($taint_sources) {
$stmt_type->sources = $taint_sources;
2019-10-12 05:28:17 +02:00
}
if ($either_tainted) {
$stmt_type->tainted = $either_tainted;
2019-10-12 05:28:17 +02:00
}
$statements_analyzer->node_data->setType($stmt, $stmt_type);
2018-01-14 18:09:40 +01:00
return null;
}
2019-10-09 00:44:46 +02:00
if ($all_list) {
$array_type = new Type\Atomic\TNonEmptyList($item_value_type ?: Type::getMixed());
$array_type->count = count($stmt->items);
$stmt_type = new Type\Union([
2019-10-09 00:44:46 +02:00
$array_type,
]);
2019-10-12 05:28:17 +02:00
if ($taint_sources) {
$stmt_type->sources = $taint_sources;
2019-10-12 05:28:17 +02:00
}
if ($either_tainted) {
$stmt_type->tainted = $either_tainted;
2019-10-12 05:28:17 +02:00
}
$statements_analyzer->node_data->setType($stmt, $stmt_type);
2019-10-09 00:44:46 +02:00
return null;
}
2018-11-09 16:56:27 +01:00
$array_type = new Type\Atomic\TNonEmptyArray([
$item_key_type ?: new Type\Union([new TInt, new TString]),
$item_value_type ?: Type::getMixed(),
]);
$array_type->count = count($stmt->items);
$stmt_type = new Type\Union([
$array_type,
2018-01-14 18:09:40 +01:00
]);
2019-10-12 05:28:17 +02:00
if ($taint_sources) {
$stmt_type->sources = $taint_sources;
2019-10-12 05:28:17 +02:00
}
if ($either_tainted) {
$stmt_type->tainted = $either_tainted;
2019-10-12 05:28:17 +02:00
}
$statements_analyzer->node_data->setType($stmt, $stmt_type);
2018-01-14 18:09:40 +01:00
return null;
}
}