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;
|
2018-01-18 23:16:50 +01:00
|
|
|
use Psalm\CodeLocation;
|
2018-01-14 18:09:40 +01:00
|
|
|
use Psalm\Context;
|
2018-01-18 23:16:50 +01:00
|
|
|
use Psalm\Issue\DuplicateArrayKey;
|
|
|
|
use Psalm\IssueBuffer;
|
2018-01-14 18:09:40 +01:00
|
|
|
use Psalm\Type;
|
2019-02-04 22:06:14 +01:00
|
|
|
use Psalm\Internal\Type\TypeCombination;
|
2018-01-14 18:09:40 +01:00
|
|
|
use Psalm\Type\Atomic\TInt;
|
|
|
|
use Psalm\Type\Atomic\TString;
|
2019-06-26 22:52:29 +02:00
|
|
|
use function preg_match;
|
|
|
|
use function array_merge;
|
|
|
|
use function array_values;
|
|
|
|
use function count;
|
2018-01-14 18:09:40 +01:00
|
|
|
|
2018-12-02 00:37:49 +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)) {
|
|
|
|
$stmt->inferredType = Type::getEmptyArray();
|
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2019-02-04 22:06:14 +01:00
|
|
|
$item_key_atomic_types = [];
|
|
|
|
$item_value_atomic_types = [];
|
2018-01-14 18:09:40 +01:00
|
|
|
|
|
|
|
$property_types = [];
|
2018-08-09 03:31:13 +02:00
|
|
|
$class_strings = [];
|
2018-01-14 18:09:40 +01:00
|
|
|
|
|
|
|
$can_create_objectlike = true;
|
|
|
|
|
2018-01-18 23:16:50 +01:00
|
|
|
$array_keys = [];
|
|
|
|
|
2018-05-30 13:42:00 +02:00
|
|
|
$int_offset_diff = 0;
|
|
|
|
|
2019-01-05 06:15:53 +01:00
|
|
|
$codebase = $statements_analyzer->getCodebase();
|
|
|
|
|
2018-01-14 18:09:40 +01:00
|
|
|
foreach ($stmt->items as $int_offset => $item) {
|
|
|
|
if ($item === null) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2018-05-18 17:02:50 +02:00
|
|
|
$item_key_value = null;
|
|
|
|
|
2018-01-14 18:09:40 +01:00
|
|
|
if ($item->key) {
|
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 (isset($item->key->inferredType)) {
|
2018-05-03 19:56:30 +02:00
|
|
|
$key_type = $item->key->inferredType;
|
|
|
|
|
2019-03-22 21:45:17 +01:00
|
|
|
if ($key_type->isNull()) {
|
|
|
|
$key_type = Type::getString('');
|
|
|
|
}
|
|
|
|
|
2018-05-03 19:56:30 +02:00
|
|
|
if ($item->key instanceof PhpParser\Node\Scalar\String_
|
|
|
|
&& preg_match('/^(0|[1-9][0-9]*)$/', $item->key->value)
|
|
|
|
) {
|
2018-05-18 17:02:50 +02:00
|
|
|
$key_type = Type::getInt(false, (int) $item->key->value);
|
2018-05-03 19:56:30 +02:00
|
|
|
}
|
|
|
|
|
2019-02-04 22:06:14 +01:00
|
|
|
$item_key_atomic_types = array_merge($item_key_atomic_types, array_values($key_type->getTypes()));
|
2018-05-18 17:02:50 +02:00
|
|
|
|
2019-03-22 21:45:17 +01:00
|
|
|
if ($key_type->isSingleStringLiteral()) {
|
|
|
|
$item_key_literal_type = $key_type->getSingleStringLiteral();
|
2018-08-09 03:31:13 +02:00
|
|
|
$item_key_value = $item_key_literal_type->value;
|
|
|
|
|
|
|
|
if ($item_key_literal_type instanceof Type\Atomic\TLiteralClassString) {
|
|
|
|
$class_strings[$item_key_value] = true;
|
|
|
|
}
|
2019-03-22 21:45:17 +01:00
|
|
|
} elseif ($key_type->isSingleIntLiteral()) {
|
|
|
|
$item_key_value = $key_type->getSingleIntLiteral()->value;
|
2018-05-30 13:42:00 +02:00
|
|
|
|
|
|
|
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-05-18 17:02:50 +02:00
|
|
|
}
|
|
|
|
}
|
2018-01-14 18:09:40 +01:00
|
|
|
}
|
|
|
|
} else {
|
2018-05-30 13:42:00 +02:00
|
|
|
$item_key_value = $int_offset + $int_offset_diff;
|
2019-02-04 22:06:14 +01:00
|
|
|
$item_key_atomic_types[] = new Type\Atomic\TInt();
|
2018-01-14 18:09:40 +01:00
|
|
|
}
|
|
|
|
|
2018-05-18 17:02:50 +02:00
|
|
|
if ($item_key_value !== null) {
|
|
|
|
if (isset($array_keys[$item_key_value])) {
|
2018-01-18 23:16:50 +01:00
|
|
|
if (IssueBuffer::accepts(
|
|
|
|
new DuplicateArrayKey(
|
2018-05-18 17:02:50 +02:00
|
|
|
'Key \'' . $item_key_value . '\' already exists on array',
|
2018-11-11 18:01:14 +01:00
|
|
|
new CodeLocation($statements_analyzer->getSource(), $item)
|
2018-01-18 23:16:50 +01:00
|
|
|
),
|
2018-11-11 18:01:14 +01:00
|
|
|
$statements_analyzer->getSuppressedIssues()
|
2018-01-18 23:16:50 +01:00
|
|
|
)) {
|
|
|
|
// fall through
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-18 17:02:50 +02:00
|
|
|
$array_keys[$item_key_value] = true;
|
|
|
|
}
|
|
|
|
|
2018-11-11 18:01:14 +01:00
|
|
|
if (ExpressionAnalyzer::analyze($statements_analyzer, $item->value, $context) === false) {
|
2018-05-18 17:02:50 +02:00
|
|
|
return false;
|
2018-01-18 23:16:50 +01: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,
|
2019-06-12 15:13:59 +02:00
|
|
|
$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();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-04 22:06:14 +01:00
|
|
|
if ($item_value_atomic_types && !$can_create_objectlike) {
|
2018-01-14 18:09:40 +01:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($item->value->inferredType)) {
|
2018-11-10 23:15:37 +01:00
|
|
|
if ($item_key_value !== null && count($property_types) <= 50) {
|
2018-05-18 17:02:50 +02:00
|
|
|
$property_types[$item_key_value] = $item->value->inferredType;
|
2018-01-14 18:09:40 +01:00
|
|
|
} else {
|
|
|
|
$can_create_objectlike = false;
|
|
|
|
}
|
|
|
|
|
2019-02-04 22:06:14 +01:00
|
|
|
$item_value_atomic_types = array_merge(
|
|
|
|
$item_value_atomic_types,
|
|
|
|
array_values($item->value->inferredType->getTypes())
|
|
|
|
);
|
2018-01-14 18:09:40 +01:00
|
|
|
} else {
|
2019-02-04 22:06:14 +01:00
|
|
|
$item_value_atomic_types[] = new Type\Atomic\TMixed();
|
2018-01-14 18:09:40 +01:00
|
|
|
|
2018-11-10 23:15:37 +01:00
|
|
|
if ($item_key_value !== null && count($property_types) <= 50) {
|
2019-02-04 22:06:14 +01:00
|
|
|
$property_types[$item_key_value] = Type::getMixed();
|
2018-01-14 18:09:40 +01:00
|
|
|
} else {
|
|
|
|
$can_create_objectlike = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-04 22:06:14 +01:00
|
|
|
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;
|
|
|
|
}
|
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
|
|
|
|
) {
|
2018-08-09 03:31:13 +02:00
|
|
|
$object_like = new Type\Atomic\ObjectLike($property_types, $class_strings);
|
2018-05-03 19:56:30 +02:00
|
|
|
$object_like->sealed = true;
|
|
|
|
|
|
|
|
$stmt->inferredType = new Type\Union([$object_like]);
|
2018-01-14 18:09:40 +01:00
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2018-11-09 16:56:27 +01:00
|
|
|
$array_type = new Type\Atomic\TNonEmptyArray([
|
2018-05-03 19:56:30 +02:00
|
|
|
$item_key_type ?: new Type\Union([new TInt, new TString]),
|
|
|
|
$item_value_type ?: Type::getMixed(),
|
|
|
|
]);
|
|
|
|
|
2018-05-18 17:02:50 +02:00
|
|
|
$array_type->count = count($stmt->items);
|
2018-05-03 19:56:30 +02:00
|
|
|
|
2018-01-14 18:09:40 +01:00
|
|
|
$stmt->inferredType = new Type\Union([
|
2018-05-03 19:56:30 +02:00
|
|
|
$array_type,
|
2018-01-14 18:09:40 +01:00
|
|
|
]);
|
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|