2018-01-29 00:29:38 +01:00
|
|
|
<?php
|
2018-11-06 03:57:36 +01:00
|
|
|
namespace Psalm\Internal\Analyzer\Statements\Expression\Call;
|
2018-01-29 00:29:38 +01:00
|
|
|
|
|
|
|
use PhpParser;
|
2018-11-06 03:57:36 +01:00
|
|
|
use Psalm\Internal\Analyzer\ClassAnalyzer;
|
|
|
|
use Psalm\Internal\Analyzer\ClassLikeAnalyzer;
|
2019-05-14 23:30:16 +02:00
|
|
|
use Psalm\Internal\Analyzer\NamespaceAnalyzer;
|
2018-11-06 03:57:36 +01:00
|
|
|
use Psalm\Internal\Analyzer\Statements\ExpressionAnalyzer;
|
|
|
|
use Psalm\Internal\Analyzer\StatementsAnalyzer;
|
2020-10-13 22:49:03 +02:00
|
|
|
use Psalm\Internal\DataFlow\DataFlowNode;
|
2020-09-30 18:28:13 +02:00
|
|
|
use Psalm\Internal\Codebase\TaintFlowGraph;
|
2018-01-29 00:29:38 +01:00
|
|
|
use Psalm\CodeLocation;
|
|
|
|
use Psalm\Context;
|
|
|
|
use Psalm\Issue\AbstractInstantiation;
|
|
|
|
use Psalm\Issue\DeprecatedClass;
|
2019-07-18 07:31:48 +02:00
|
|
|
use Psalm\Issue\ImpureMethodCall;
|
2018-02-18 00:53:02 +01:00
|
|
|
use Psalm\Issue\InterfaceInstantiation;
|
2018-12-02 00:37:49 +01:00
|
|
|
use Psalm\Issue\InternalClass;
|
2018-03-06 18:19:50 +01:00
|
|
|
use Psalm\Issue\InvalidStringClass;
|
2019-01-02 12:58:49 +01:00
|
|
|
use Psalm\Issue\MixedMethodCall;
|
2018-01-29 00:29:38 +01:00
|
|
|
use Psalm\Issue\TooManyArguments;
|
2020-08-06 01:39:27 +02:00
|
|
|
use Psalm\Issue\UnsafeInstantiation;
|
2018-03-06 18:19:50 +01:00
|
|
|
use Psalm\Issue\UndefinedClass;
|
2018-01-29 00:29:38 +01:00
|
|
|
use Psalm\IssueBuffer;
|
|
|
|
use Psalm\Type;
|
|
|
|
use Psalm\Type\Atomic\TNamedObject;
|
2019-06-26 22:52:29 +02:00
|
|
|
use function in_array;
|
|
|
|
use function strtolower;
|
|
|
|
use function implode;
|
|
|
|
use function array_values;
|
2020-11-27 17:43:23 +01:00
|
|
|
use function array_map;
|
2021-02-26 03:24:18 +01:00
|
|
|
use function reset;
|
2018-01-29 00:29:38 +01:00
|
|
|
|
2018-12-02 00:37:49 +01:00
|
|
|
/**
|
|
|
|
* @internal
|
|
|
|
*/
|
2018-11-06 03:57:36 +01:00
|
|
|
class NewAnalyzer extends \Psalm\Internal\Analyzer\Statements\Expression\CallAnalyzer
|
2018-01-29 00:29:38 +01:00
|
|
|
{
|
|
|
|
public static function analyze(
|
2018-11-11 18:01:14 +01:00
|
|
|
StatementsAnalyzer $statements_analyzer,
|
2018-01-29 00:29:38 +01:00
|
|
|
PhpParser\Node\Expr\New_ $stmt,
|
|
|
|
Context $context
|
2020-05-18 21:13:27 +02:00
|
|
|
) : bool {
|
2018-01-29 00:29:38 +01:00
|
|
|
$fq_class_name = null;
|
|
|
|
|
2018-11-11 18:01:14 +01:00
|
|
|
$codebase = $statements_analyzer->getCodebase();
|
2018-11-06 03:57:36 +01:00
|
|
|
$config = $codebase->config;
|
2018-01-29 00:29:38 +01:00
|
|
|
|
2019-01-04 18:28:00 +01:00
|
|
|
$can_extend = false;
|
2018-01-29 00:29:38 +01:00
|
|
|
|
2020-03-24 23:00:20 +01:00
|
|
|
$from_static = false;
|
|
|
|
|
2018-01-29 00:29:38 +01:00
|
|
|
if ($stmt->class instanceof PhpParser\Node\Name) {
|
|
|
|
if (!in_array(strtolower($stmt->class->parts[0]), ['self', 'static', 'parent'], true)) {
|
2018-11-11 18:01:14 +01:00
|
|
|
$aliases = $statements_analyzer->getAliases();
|
2018-10-27 05:04:38 +02:00
|
|
|
|
2020-03-26 17:35:27 +01:00
|
|
|
if ($context->calling_method_id
|
2018-10-27 05:04:38 +02:00
|
|
|
&& !$stmt->class instanceof PhpParser\Node\Name\FullyQualified
|
|
|
|
) {
|
2019-04-16 22:07:48 +02:00
|
|
|
$codebase->file_reference_provider->addMethodReferenceToClassMember(
|
2020-03-26 17:35:27 +01:00
|
|
|
$context->calling_method_id,
|
2018-11-11 18:01:14 +01:00
|
|
|
'use:' . $stmt->class->parts[0] . ':' . \md5($statements_analyzer->getFilePath())
|
2018-10-27 05:04:38 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2018-11-06 03:57:36 +01:00
|
|
|
$fq_class_name = ClassLikeAnalyzer::getFQCLNFromNameObject(
|
2018-01-29 00:29:38 +01:00
|
|
|
$stmt->class,
|
2018-10-27 05:04:38 +02:00
|
|
|
$aliases
|
2018-01-29 00:29:38 +01:00
|
|
|
);
|
|
|
|
|
2018-11-29 06:05:56 +01:00
|
|
|
$fq_class_name = $codebase->classlikes->getUnAliasedName($fq_class_name);
|
2020-02-15 02:54:26 +01:00
|
|
|
} elseif ($context->self !== null) {
|
2018-01-29 00:29:38 +01:00
|
|
|
switch ($stmt->class->parts[0]) {
|
|
|
|
case 'self':
|
2020-02-15 02:54:26 +01:00
|
|
|
$class_storage = $codebase->classlike_storage_provider->get($context->self);
|
|
|
|
$fq_class_name = $class_storage->name;
|
2018-01-29 00:29:38 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 'parent':
|
|
|
|
$fq_class_name = $context->parent;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'static':
|
|
|
|
// @todo maybe we can do better here
|
2020-02-15 02:54:26 +01:00
|
|
|
$class_storage = $codebase->classlike_storage_provider->get($context->self);
|
|
|
|
$fq_class_name = $class_storage->name;
|
2020-08-18 17:25:11 +02:00
|
|
|
|
|
|
|
if (!$class_storage->final) {
|
|
|
|
$can_extend = true;
|
|
|
|
$from_static = true;
|
|
|
|
}
|
|
|
|
|
2018-01-29 00:29:38 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2018-10-26 22:17:15 +02:00
|
|
|
|
2019-07-01 15:55:39 +02:00
|
|
|
if ($codebase->store_node_types
|
|
|
|
&& $fq_class_name
|
|
|
|
&& !$context->collect_initializations
|
|
|
|
&& !$context->collect_mutations
|
|
|
|
) {
|
2018-10-26 22:17:15 +02:00
|
|
|
$codebase->analyzer->addNodeReference(
|
2018-11-11 18:01:14 +01:00
|
|
|
$statements_analyzer->getFilePath(),
|
2018-10-26 22:17:15 +02:00
|
|
|
$stmt->class,
|
2019-06-21 23:10:35 +02:00
|
|
|
$codebase->classlikes->classExists($fq_class_name)
|
|
|
|
? $fq_class_name
|
2021-02-15 05:25:13 +01:00
|
|
|
: '*'
|
|
|
|
. ($stmt->class instanceof PhpParser\Node\Name\FullyQualified
|
|
|
|
? '\\'
|
|
|
|
: $statements_analyzer->getNamespace() . '-')
|
|
|
|
. implode('\\', $stmt->class->parts)
|
2018-10-26 22:17:15 +02:00
|
|
|
);
|
|
|
|
}
|
2018-01-29 00:29:38 +01:00
|
|
|
} elseif ($stmt->class instanceof PhpParser\Node\Stmt\Class_) {
|
2018-11-11 18:01:14 +01:00
|
|
|
$statements_analyzer->analyze([$stmt->class], $context);
|
|
|
|
$fq_class_name = ClassAnalyzer::getAnonymousClassName($stmt->class, $statements_analyzer->getFilePath());
|
2018-01-29 00:29:38 +01:00
|
|
|
} else {
|
2020-11-30 19:24:24 +01:00
|
|
|
self::analyzeConstructorExpression(
|
|
|
|
$statements_analyzer,
|
|
|
|
$codebase,
|
|
|
|
$context,
|
|
|
|
$stmt,
|
|
|
|
$stmt->class,
|
|
|
|
$config,
|
|
|
|
$fq_class_name,
|
|
|
|
$can_extend
|
|
|
|
);
|
2018-01-29 00:29:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if ($fq_class_name) {
|
2019-11-15 22:50:43 +01:00
|
|
|
if ($codebase->alter_code
|
|
|
|
&& $stmt->class instanceof PhpParser\Node\Name
|
|
|
|
&& !in_array($stmt->class->parts[0], ['parent', 'static'])
|
|
|
|
) {
|
2019-06-04 22:36:32 +02:00
|
|
|
$codebase->classlikes->handleClassLikeReferenceInMigration(
|
|
|
|
$codebase,
|
|
|
|
$statements_analyzer,
|
|
|
|
$stmt->class,
|
2019-06-01 16:32:49 +02:00
|
|
|
$fq_class_name,
|
2020-03-26 17:35:27 +01:00
|
|
|
$context->calling_method_id
|
2019-06-01 16:32:49 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2019-01-02 12:58:49 +01:00
|
|
|
if ($context->check_classes) {
|
|
|
|
if ($context->isPhantomClass($fq_class_name)) {
|
2020-05-19 04:57:00 +02:00
|
|
|
ArgumentsAnalyzer::analyze(
|
2020-05-03 04:13:59 +02:00
|
|
|
$statements_analyzer,
|
|
|
|
$stmt->args,
|
|
|
|
null,
|
|
|
|
null,
|
2020-10-03 02:58:51 +02:00
|
|
|
true,
|
2020-05-03 04:13:59 +02:00
|
|
|
$context
|
|
|
|
);
|
|
|
|
|
2020-05-18 21:13:27 +02:00
|
|
|
return true;
|
2019-01-02 12:58:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (ClassLikeAnalyzer::checkFullyQualifiedClassLikeName(
|
|
|
|
$statements_analyzer,
|
|
|
|
$fq_class_name,
|
|
|
|
new CodeLocation($statements_analyzer->getSource(), $stmt->class),
|
2020-02-11 22:39:33 +01:00
|
|
|
$context->self,
|
2020-03-26 17:35:27 +01:00
|
|
|
$context->calling_method_id,
|
2019-01-02 12:58:49 +01:00
|
|
|
$statements_analyzer->getSuppressedIssues(),
|
|
|
|
false
|
|
|
|
) === false) {
|
2020-05-19 04:57:00 +02:00
|
|
|
ArgumentsAnalyzer::analyze(
|
2020-05-03 04:13:59 +02:00
|
|
|
$statements_analyzer,
|
|
|
|
$stmt->args,
|
|
|
|
null,
|
|
|
|
null,
|
2020-10-03 02:58:51 +02:00
|
|
|
true,
|
2020-05-03 04:13:59 +02:00
|
|
|
$context
|
|
|
|
);
|
|
|
|
|
2020-05-18 21:13:27 +02:00
|
|
|
return true;
|
2019-01-02 12:58:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if ($codebase->interfaceExists($fq_class_name)) {
|
|
|
|
if (IssueBuffer::accepts(
|
|
|
|
new InterfaceInstantiation(
|
|
|
|
'Interface ' . $fq_class_name . ' cannot be instantiated',
|
|
|
|
new CodeLocation($statements_analyzer->getSource(), $stmt->class)
|
|
|
|
),
|
|
|
|
$statements_analyzer->getSuppressedIssues()
|
|
|
|
)) {
|
|
|
|
}
|
|
|
|
|
2020-05-18 21:13:27 +02:00
|
|
|
return true;
|
2019-01-02 12:58:49 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-24 23:00:20 +01:00
|
|
|
if ($stmt->class instanceof PhpParser\Node\Stmt\Class_) {
|
2021-02-04 15:59:38 +01:00
|
|
|
$extends = $stmt->class->extends ? (string) $stmt->class->extends : null;
|
|
|
|
$result_atomic_type = new Type\Atomic\TAnonymousClassInstance($fq_class_name, false, $extends);
|
2020-03-24 23:00:20 +01:00
|
|
|
} else {
|
|
|
|
$result_atomic_type = new TNamedObject($fq_class_name);
|
|
|
|
$result_atomic_type->was_static = $from_static;
|
|
|
|
}
|
|
|
|
|
2019-12-31 14:46:52 +01:00
|
|
|
$statements_analyzer->node_data->setType(
|
|
|
|
$stmt,
|
2020-03-24 23:00:20 +01:00
|
|
|
new Type\Union([$result_atomic_type])
|
2019-12-31 14:46:52 +01:00
|
|
|
);
|
2018-01-29 00:29:38 +01:00
|
|
|
|
|
|
|
if (strtolower($fq_class_name) !== 'stdclass' &&
|
2018-02-18 00:53:02 +01:00
|
|
|
$codebase->classlikes->classExists($fq_class_name)
|
2018-01-29 00:29:38 +01:00
|
|
|
) {
|
2020-11-30 19:24:24 +01:00
|
|
|
self::analyzeNamedConstructor(
|
|
|
|
$statements_analyzer,
|
|
|
|
$codebase,
|
|
|
|
$stmt,
|
|
|
|
$context,
|
|
|
|
$fq_class_name,
|
|
|
|
$from_static,
|
|
|
|
$can_extend
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
ArgumentsAnalyzer::analyze(
|
|
|
|
$statements_analyzer,
|
|
|
|
$stmt->args,
|
|
|
|
null,
|
|
|
|
null,
|
|
|
|
true,
|
|
|
|
$context
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
2018-01-29 00:29:38 +01:00
|
|
|
|
2020-11-30 19:24:24 +01:00
|
|
|
if (!$config->remember_property_assignments_after_call && !$context->collect_initializations) {
|
2020-12-08 22:39:06 +01:00
|
|
|
$context->removeMutableObjectVars();
|
2020-11-30 19:24:24 +01:00
|
|
|
}
|
2020-08-06 01:39:27 +02:00
|
|
|
|
2020-11-30 19:24:24 +01:00
|
|
|
return true;
|
|
|
|
}
|
2018-01-29 00:29:38 +01:00
|
|
|
|
2020-11-30 19:24:24 +01:00
|
|
|
private static function analyzeNamedConstructor(
|
|
|
|
StatementsAnalyzer $statements_analyzer,
|
|
|
|
\Psalm\Codebase $codebase,
|
|
|
|
PhpParser\Node\Expr\New_ $stmt,
|
|
|
|
Context $context,
|
|
|
|
string $fq_class_name,
|
|
|
|
bool $from_static,
|
|
|
|
bool $can_extend
|
|
|
|
): void {
|
|
|
|
$storage = $codebase->classlike_storage_provider->get($fq_class_name);
|
|
|
|
|
|
|
|
if ($from_static && !$storage->preserve_constructor_signature) {
|
|
|
|
if (IssueBuffer::accepts(
|
|
|
|
new UnsafeInstantiation(
|
|
|
|
'Cannot safely instantiate class ' . $fq_class_name . ' with "new static" as'
|
|
|
|
. ' its constructor might change in child classes',
|
|
|
|
new CodeLocation($statements_analyzer->getSource(), $stmt)
|
|
|
|
),
|
|
|
|
$statements_analyzer->getSuppressedIssues()
|
|
|
|
)) {
|
|
|
|
// fall through
|
|
|
|
}
|
|
|
|
}
|
2018-01-29 00:29:38 +01:00
|
|
|
|
2020-11-30 19:24:24 +01:00
|
|
|
// if we're not calling this constructor via new static()
|
|
|
|
if ($storage->abstract && !$can_extend) {
|
|
|
|
if (IssueBuffer::accepts(
|
|
|
|
new AbstractInstantiation(
|
|
|
|
'Unable to instantiate a abstract class ' . $fq_class_name,
|
|
|
|
new CodeLocation($statements_analyzer->getSource(), $stmt)
|
|
|
|
),
|
|
|
|
$statements_analyzer->getSuppressedIssues()
|
|
|
|
)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2019-05-11 16:23:49 +02:00
|
|
|
|
2020-11-30 19:24:24 +01:00
|
|
|
if ($storage->deprecated && strtolower($fq_class_name) !== strtolower((string)$context->self)) {
|
|
|
|
if (IssueBuffer::accepts(
|
|
|
|
new DeprecatedClass(
|
|
|
|
$fq_class_name . ' is marked deprecated',
|
|
|
|
new CodeLocation($statements_analyzer->getSource(), $stmt),
|
|
|
|
$fq_class_name
|
|
|
|
),
|
|
|
|
$statements_analyzer->getSuppressedIssues()
|
|
|
|
)) {
|
|
|
|
// fall through
|
|
|
|
}
|
|
|
|
}
|
2018-12-02 00:37:49 +01:00
|
|
|
|
2020-02-15 02:54:26 +01:00
|
|
|
|
2020-11-30 19:24:24 +01:00
|
|
|
if ($context->self
|
|
|
|
&& !$context->collect_initializations
|
|
|
|
&& !$context->collect_mutations
|
|
|
|
&& !NamespaceAnalyzer::isWithin($context->self, $storage->internal)
|
|
|
|
) {
|
|
|
|
if (IssueBuffer::accepts(
|
|
|
|
new InternalClass(
|
|
|
|
$fq_class_name . ' is internal to ' . $storage->internal
|
|
|
|
. ' but called from ' . $context->self,
|
|
|
|
new CodeLocation($statements_analyzer->getSource(), $stmt),
|
|
|
|
$fq_class_name
|
|
|
|
),
|
|
|
|
$statements_analyzer->getSuppressedIssues()
|
|
|
|
)) {
|
|
|
|
// fall through
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$method_id = new \Psalm\Internal\MethodIdentifier($fq_class_name, '__construct');
|
|
|
|
|
|
|
|
if ($codebase->methods->methodExists(
|
|
|
|
$method_id,
|
|
|
|
$context->calling_method_id,
|
|
|
|
$codebase->collect_locations ? new CodeLocation($statements_analyzer->getSource(), $stmt) : null,
|
|
|
|
$statements_analyzer,
|
|
|
|
$statements_analyzer->getFilePath()
|
|
|
|
)) {
|
|
|
|
if ($codebase->store_node_types
|
|
|
|
&& !$context->collect_initializations
|
|
|
|
&& !$context->collect_mutations
|
|
|
|
) {
|
|
|
|
ArgumentMapPopulator::recordArgumentPositions(
|
2020-03-06 19:02:34 +01:00
|
|
|
$statements_analyzer,
|
2020-11-30 19:24:24 +01:00
|
|
|
$stmt,
|
|
|
|
$codebase,
|
|
|
|
(string)$method_id
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
$template_result = new \Psalm\Internal\Type\TemplateResult([], []);
|
|
|
|
|
|
|
|
if (self::checkMethodArgs(
|
|
|
|
$method_id,
|
|
|
|
$stmt->args,
|
|
|
|
$template_result,
|
|
|
|
$context,
|
|
|
|
new CodeLocation($statements_analyzer->getSource(), $stmt),
|
|
|
|
$statements_analyzer
|
|
|
|
) === false) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Method\MethodVisibilityAnalyzer::analyze(
|
|
|
|
$method_id,
|
|
|
|
$context,
|
|
|
|
$statements_analyzer->getSource(),
|
|
|
|
new CodeLocation($statements_analyzer->getSource(), $stmt),
|
|
|
|
$statements_analyzer->getSuppressedIssues()
|
|
|
|
) === false) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$declaring_method_id = $codebase->methods->getDeclaringMethodId($method_id);
|
|
|
|
|
|
|
|
if ($declaring_method_id) {
|
|
|
|
$method_storage = $codebase->methods->getStorage($declaring_method_id);
|
|
|
|
|
|
|
|
if (!$method_storage->external_mutation_free && !$context->inside_throw) {
|
|
|
|
if ($context->pure) {
|
|
|
|
if (IssueBuffer::accepts(
|
|
|
|
new ImpureMethodCall(
|
|
|
|
'Cannot call an impure constructor from a pure context',
|
|
|
|
new CodeLocation($statements_analyzer, $stmt)
|
|
|
|
),
|
|
|
|
$statements_analyzer->getSuppressedIssues()
|
|
|
|
)) {
|
|
|
|
// fall through
|
|
|
|
}
|
|
|
|
} elseif ($statements_analyzer->getSource()
|
|
|
|
instanceof \Psalm\Internal\Analyzer\FunctionLikeAnalyzer
|
|
|
|
&& $statements_analyzer->getSource()->track_mutations
|
2019-07-01 21:54:33 +02:00
|
|
|
) {
|
2020-11-30 19:24:24 +01:00
|
|
|
$statements_analyzer->getSource()->inferred_has_mutation = true;
|
|
|
|
$statements_analyzer->getSource()->inferred_impure = true;
|
2019-07-01 21:54:33 +02:00
|
|
|
}
|
2020-11-30 19:24:24 +01:00
|
|
|
}
|
2019-07-01 21:54:33 +02:00
|
|
|
|
2020-11-30 19:24:24 +01:00
|
|
|
$generic_params = $template_result->upper_bounds;
|
2019-11-04 03:27:40 +01:00
|
|
|
|
2020-11-30 19:24:24 +01:00
|
|
|
if ($method_storage->assertions && $stmt->class instanceof PhpParser\Node\Name) {
|
|
|
|
self::applyAssertionsToContext(
|
|
|
|
$stmt->class,
|
|
|
|
null,
|
|
|
|
$method_storage->assertions,
|
2018-01-29 00:29:38 +01:00
|
|
|
$stmt->args,
|
2020-11-30 19:24:24 +01:00
|
|
|
$generic_params,
|
2018-01-29 00:29:38 +01:00
|
|
|
$context,
|
2018-11-11 18:01:14 +01:00
|
|
|
$statements_analyzer
|
2020-11-30 19:24:24 +01:00
|
|
|
);
|
|
|
|
}
|
2018-01-29 00:29:38 +01:00
|
|
|
|
2020-11-30 19:24:24 +01:00
|
|
|
if ($method_storage->if_true_assertions) {
|
|
|
|
$statements_analyzer->node_data->setIfTrueAssertions(
|
|
|
|
$stmt,
|
|
|
|
\array_map(
|
|
|
|
function ($assertion) use ($generic_params) {
|
|
|
|
return $assertion->getUntemplatedCopy($generic_params, null);
|
|
|
|
},
|
|
|
|
$method_storage->if_true_assertions
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($method_storage->if_false_assertions) {
|
|
|
|
$statements_analyzer->node_data->setIfFalseAssertions(
|
|
|
|
$stmt,
|
|
|
|
\array_map(
|
|
|
|
function ($assertion) use ($generic_params) {
|
|
|
|
return $assertion->getUntemplatedCopy($generic_params, null);
|
|
|
|
},
|
|
|
|
$method_storage->if_false_assertions
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$generic_param_types = null;
|
|
|
|
|
|
|
|
if ($storage->template_types) {
|
|
|
|
foreach ($storage->template_types as $template_name => $base_type) {
|
|
|
|
if (isset($template_result->upper_bounds[$template_name][$fq_class_name])) {
|
|
|
|
$generic_param_type
|
|
|
|
= $template_result->upper_bounds[$template_name][$fq_class_name]->type;
|
|
|
|
} elseif ($storage->template_extended_params && $template_result->upper_bounds) {
|
|
|
|
$generic_param_type = self::getGenericParamForOffset(
|
2021-02-13 22:16:58 +01:00
|
|
|
$fq_class_name,
|
2020-11-30 19:24:24 +01:00
|
|
|
$template_name,
|
|
|
|
$storage->template_extended_params,
|
|
|
|
array_map(
|
|
|
|
function ($type_map) {
|
|
|
|
return array_map(
|
|
|
|
function ($bound) {
|
|
|
|
return $bound->type;
|
|
|
|
},
|
|
|
|
$type_map
|
|
|
|
);
|
|
|
|
},
|
|
|
|
$template_result->upper_bounds
|
|
|
|
)
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
if ($fq_class_name === 'SplObjectStorage') {
|
|
|
|
$generic_param_type = Type::getEmpty();
|
|
|
|
} else {
|
|
|
|
$generic_param_type = array_values($base_type)[0];
|
|
|
|
}
|
2018-01-29 00:29:38 +01:00
|
|
|
}
|
|
|
|
|
2020-11-30 19:24:24 +01:00
|
|
|
$generic_param_type->had_template = true;
|
2019-07-18 07:31:48 +02:00
|
|
|
|
2020-11-30 19:24:24 +01:00
|
|
|
$generic_param_types[] = $generic_param_type;
|
|
|
|
}
|
|
|
|
}
|
2019-07-18 07:31:48 +02:00
|
|
|
|
2020-11-30 19:24:24 +01:00
|
|
|
if ($generic_param_types) {
|
|
|
|
$result_atomic_type = new Type\Atomic\TGenericObject(
|
|
|
|
$fq_class_name,
|
|
|
|
$generic_param_types
|
|
|
|
);
|
2020-11-06 17:55:19 +01:00
|
|
|
|
2020-11-30 19:24:24 +01:00
|
|
|
$result_atomic_type->was_static = $from_static;
|
2020-11-06 17:55:19 +01:00
|
|
|
|
2020-11-30 19:24:24 +01:00
|
|
|
$statements_analyzer->node_data->setType(
|
|
|
|
$stmt,
|
|
|
|
new Type\Union([$result_atomic_type])
|
|
|
|
);
|
|
|
|
}
|
|
|
|
} elseif ($stmt->args) {
|
|
|
|
if (IssueBuffer::accepts(
|
|
|
|
new TooManyArguments(
|
|
|
|
'Class ' . $fq_class_name . ' has no __construct, but arguments were passed',
|
|
|
|
new CodeLocation($statements_analyzer->getSource(), $stmt),
|
|
|
|
$fq_class_name . '::__construct'
|
|
|
|
),
|
|
|
|
$statements_analyzer->getSuppressedIssues()
|
|
|
|
)) {
|
|
|
|
// fall through
|
|
|
|
}
|
2021-02-26 03:20:05 +01:00
|
|
|
} elseif ($storage->template_types) {
|
|
|
|
$result_atomic_type = new Type\Atomic\TGenericObject(
|
|
|
|
$fq_class_name,
|
|
|
|
array_values(
|
|
|
|
array_map(
|
2021-02-26 03:24:18 +01:00
|
|
|
function ($map) {
|
2021-02-26 03:20:05 +01:00
|
|
|
return clone reset($map);
|
|
|
|
},
|
|
|
|
$storage->template_types
|
|
|
|
)
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
$result_atomic_type->was_static = $from_static;
|
|
|
|
|
|
|
|
$statements_analyzer->node_data->setType(
|
|
|
|
$stmt,
|
|
|
|
new Type\Union([$result_atomic_type])
|
|
|
|
);
|
2020-11-30 19:24:24 +01:00
|
|
|
}
|
2020-11-06 17:55:19 +01:00
|
|
|
|
2020-11-30 19:24:24 +01:00
|
|
|
if ($storage->external_mutation_free) {
|
|
|
|
/** @psalm-suppress UndefinedPropertyAssignment */
|
|
|
|
$stmt->external_mutation_free = true;
|
|
|
|
$stmt_type = $statements_analyzer->node_data->getType($stmt);
|
2019-07-18 07:31:48 +02:00
|
|
|
|
2020-11-30 19:24:24 +01:00
|
|
|
if ($stmt_type) {
|
|
|
|
$stmt_type->reference_free = true;
|
|
|
|
}
|
|
|
|
}
|
2019-07-09 20:48:19 +02:00
|
|
|
|
2020-11-30 19:24:24 +01:00
|
|
|
if ($statements_analyzer->data_flow_graph instanceof TaintFlowGraph
|
|
|
|
&& !\in_array('TaintedInput', $statements_analyzer->getSuppressedIssues())
|
|
|
|
&& ($stmt_type = $statements_analyzer->node_data->getType($stmt))
|
|
|
|
) {
|
|
|
|
$code_location = new CodeLocation($statements_analyzer->getSource(), $stmt);
|
2019-07-09 20:48:19 +02:00
|
|
|
|
2020-11-30 19:24:24 +01:00
|
|
|
$method_storage = null;
|
|
|
|
|
|
|
|
$declaring_method_id = $codebase->methods->getDeclaringMethodId($method_id);
|
|
|
|
|
|
|
|
if ($declaring_method_id) {
|
|
|
|
$method_storage = $codebase->methods->getStorage($declaring_method_id);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($storage->external_mutation_free
|
|
|
|
|| ($method_storage && $method_storage->specialize_call)
|
|
|
|
) {
|
|
|
|
$method_source = DataFlowNode::getForMethodReturn(
|
|
|
|
(string)$method_id,
|
|
|
|
$fq_class_name . '::__construct',
|
|
|
|
$storage->location,
|
|
|
|
$code_location
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
$method_source = DataFlowNode::getForMethodReturn(
|
|
|
|
(string)$method_id,
|
|
|
|
$fq_class_name . '::__construct',
|
|
|
|
$storage->location
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
$statements_analyzer->data_flow_graph->addNode($method_source);
|
|
|
|
|
|
|
|
$stmt_type->parent_nodes = [$method_source->id => $method_source];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private static function analyzeConstructorExpression(
|
|
|
|
StatementsAnalyzer $statements_analyzer,
|
|
|
|
\Psalm\Codebase $codebase,
|
|
|
|
Context $context,
|
|
|
|
PhpParser\Node\Expr\New_ $stmt,
|
|
|
|
PhpParser\Node\Expr $stmt_class,
|
|
|
|
\Psalm\Config $config,
|
|
|
|
?string &$fq_class_name,
|
|
|
|
bool &$can_extend
|
|
|
|
): void {
|
|
|
|
$was_inside_use = $context->inside_use;
|
|
|
|
$context->inside_use = true;
|
|
|
|
ExpressionAnalyzer::analyze($statements_analyzer, $stmt_class, $context);
|
|
|
|
$context->inside_use = $was_inside_use;
|
|
|
|
|
|
|
|
$stmt_class_type = $statements_analyzer->node_data->getType($stmt_class);
|
|
|
|
|
|
|
|
if (!$stmt_class_type) {
|
|
|
|
ArgumentsAnalyzer::analyze(
|
|
|
|
$statements_analyzer,
|
|
|
|
$stmt->args,
|
|
|
|
null,
|
|
|
|
null,
|
|
|
|
true,
|
|
|
|
$context
|
|
|
|
);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$has_single_class = $stmt_class_type->isSingleStringLiteral();
|
|
|
|
|
|
|
|
if ($has_single_class) {
|
|
|
|
$fq_class_name = $stmt_class_type->getSingleStringLiteral()->value;
|
|
|
|
} else {
|
|
|
|
if (self::checkMethodArgs(
|
|
|
|
null,
|
|
|
|
$stmt->args,
|
|
|
|
null,
|
|
|
|
$context,
|
|
|
|
new CodeLocation($statements_analyzer->getSource(), $stmt),
|
|
|
|
$statements_analyzer
|
|
|
|
) === false) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$new_type = null;
|
|
|
|
|
2021-01-27 04:43:42 +01:00
|
|
|
$stmt_class_types = $stmt_class_type->getAtomicTypes();
|
|
|
|
|
|
|
|
while ($stmt_class_types) {
|
|
|
|
$lhs_type_part = \array_shift($stmt_class_types);
|
|
|
|
|
|
|
|
if ($lhs_type_part instanceof Type\Atomic\TTemplateParam) {
|
|
|
|
$stmt_class_types = \array_merge($stmt_class_types, $lhs_type_part->as->getAtomicTypes());
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2020-11-30 19:24:24 +01:00
|
|
|
if ($lhs_type_part instanceof Type\Atomic\TTemplateParamClass) {
|
|
|
|
if (!$statements_analyzer->node_data->getType($stmt)) {
|
|
|
|
$new_type_part = new Type\Atomic\TTemplateParam(
|
|
|
|
$lhs_type_part->param_name,
|
|
|
|
$lhs_type_part->as_type
|
|
|
|
? new Type\Union([$lhs_type_part->as_type])
|
|
|
|
: Type::getObject(),
|
|
|
|
$lhs_type_part->defining_class
|
|
|
|
);
|
|
|
|
|
|
|
|
if (!$lhs_type_part->as_type) {
|
|
|
|
if (IssueBuffer::accepts(
|
|
|
|
new MixedMethodCall(
|
|
|
|
'Cannot call constructor on an unknown class',
|
|
|
|
new CodeLocation($statements_analyzer->getSource(), $stmt)
|
|
|
|
),
|
|
|
|
$statements_analyzer->getSuppressedIssues()
|
|
|
|
)) {
|
|
|
|
// fall through
|
2018-01-29 00:29:38 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-30 19:24:24 +01:00
|
|
|
if ($new_type) {
|
|
|
|
$new_type = Type::combineUnionTypes(
|
|
|
|
$new_type,
|
|
|
|
new Type\Union([$new_type_part])
|
2020-03-24 23:00:20 +01:00
|
|
|
);
|
2020-11-30 19:24:24 +01:00
|
|
|
} else {
|
|
|
|
$new_type = new Type\Union([$new_type_part]);
|
|
|
|
}
|
2020-03-24 23:00:20 +01:00
|
|
|
|
2020-11-30 19:24:24 +01:00
|
|
|
if ($lhs_type_part->as_type
|
|
|
|
&& $codebase->classlikes->classExists($lhs_type_part->as_type->value)
|
|
|
|
) {
|
|
|
|
$as_storage = $codebase->classlike_storage_provider->get(
|
|
|
|
$lhs_type_part->as_type->value
|
2019-11-25 17:44:54 +01:00
|
|
|
);
|
2020-11-30 19:24:24 +01:00
|
|
|
|
|
|
|
if (!$as_storage->preserve_constructor_signature) {
|
|
|
|
if (IssueBuffer::accepts(
|
|
|
|
new UnsafeInstantiation(
|
|
|
|
'Cannot safely instantiate class ' . $lhs_type_part->as_type->value
|
|
|
|
. ' with "new $class_name" as'
|
|
|
|
. ' its constructor might change in child classes',
|
|
|
|
new CodeLocation($statements_analyzer->getSource(), $stmt)
|
|
|
|
),
|
|
|
|
$statements_analyzer->getSuppressedIssues()
|
|
|
|
)) {
|
|
|
|
// fall through
|
|
|
|
}
|
|
|
|
}
|
2018-01-29 00:29:38 +01:00
|
|
|
}
|
2020-11-30 19:24:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if ($lhs_type_part->as_type) {
|
|
|
|
$codebase->methods->methodExists(
|
|
|
|
new \Psalm\Internal\MethodIdentifier(
|
|
|
|
$lhs_type_part->as_type->value,
|
|
|
|
'__construct'
|
2018-01-29 00:29:38 +01:00
|
|
|
),
|
2020-11-30 19:24:24 +01:00
|
|
|
$context->calling_method_id,
|
|
|
|
$codebase->collect_locations
|
|
|
|
? new CodeLocation($statements_analyzer->getSource(), $stmt) : null,
|
|
|
|
$statements_analyzer,
|
|
|
|
$statements_analyzer->getFilePath()
|
|
|
|
);
|
2018-01-29 00:29:38 +01:00
|
|
|
}
|
2019-08-31 15:49:32 +02:00
|
|
|
|
2020-11-30 19:24:24 +01:00
|
|
|
continue;
|
|
|
|
}
|
2019-11-25 17:44:54 +01:00
|
|
|
|
2020-11-30 19:24:24 +01:00
|
|
|
if ($lhs_type_part instanceof Type\Atomic\TLiteralClassString
|
|
|
|
|| $lhs_type_part instanceof Type\Atomic\TClassString
|
|
|
|
|| $lhs_type_part instanceof Type\Atomic\TDependentGetClass
|
|
|
|
) {
|
|
|
|
if (!$statements_analyzer->node_data->getType($stmt)) {
|
|
|
|
if ($lhs_type_part instanceof Type\Atomic\TClassString) {
|
|
|
|
$generated_type = $lhs_type_part->as_type
|
|
|
|
? clone $lhs_type_part->as_type
|
|
|
|
: new Type\Atomic\TObject();
|
|
|
|
|
|
|
|
if ($lhs_type_part->as_type
|
|
|
|
&& $codebase->classlikes->classExists($lhs_type_part->as_type->value)
|
|
|
|
) {
|
|
|
|
$as_storage = $codebase->classlike_storage_provider->get(
|
|
|
|
$lhs_type_part->as_type->value
|
|
|
|
);
|
2020-06-19 07:22:51 +02:00
|
|
|
|
2020-11-30 19:24:24 +01:00
|
|
|
if (!$as_storage->preserve_constructor_signature) {
|
|
|
|
if (IssueBuffer::accepts(
|
|
|
|
new UnsafeInstantiation(
|
|
|
|
'Cannot safely instantiate class ' . $lhs_type_part->as_type->value
|
|
|
|
. ' with "new $class_name" as'
|
|
|
|
. ' its constructor might change in child classes',
|
|
|
|
new CodeLocation($statements_analyzer->getSource(), $stmt)
|
|
|
|
),
|
|
|
|
$statements_analyzer->getSuppressedIssues()
|
|
|
|
)) {
|
|
|
|
// fall through
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} elseif ($lhs_type_part instanceof Type\Atomic\TDependentGetClass) {
|
|
|
|
$generated_type = new Type\Atomic\TObject();
|
2020-06-19 07:22:51 +02:00
|
|
|
|
2020-11-30 19:24:24 +01:00
|
|
|
if ($lhs_type_part->as_type->hasObjectType()
|
|
|
|
&& $lhs_type_part->as_type->isSingle()
|
|
|
|
) {
|
|
|
|
foreach ($lhs_type_part->as_type->getAtomicTypes() as $typeof_type_atomic) {
|
|
|
|
if ($typeof_type_atomic instanceof Type\Atomic\TNamedObject) {
|
|
|
|
$generated_type = new Type\Atomic\TNamedObject(
|
|
|
|
$typeof_type_atomic->value
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$generated_type = new Type\Atomic\TNamedObject(
|
|
|
|
$lhs_type_part->value
|
|
|
|
);
|
|
|
|
}
|
2020-06-30 03:08:43 +02:00
|
|
|
|
2020-11-30 19:24:24 +01:00
|
|
|
if ($lhs_type_part instanceof Type\Atomic\TClassString) {
|
|
|
|
$can_extend = true;
|
|
|
|
}
|
2020-06-30 03:08:43 +02:00
|
|
|
|
2020-11-30 19:24:24 +01:00
|
|
|
if ($generated_type instanceof Type\Atomic\TObject) {
|
|
|
|
if (IssueBuffer::accepts(
|
|
|
|
new MixedMethodCall(
|
|
|
|
'Cannot call constructor on an unknown class',
|
|
|
|
new CodeLocation($statements_analyzer->getSource(), $stmt)
|
|
|
|
),
|
|
|
|
$statements_analyzer->getSuppressedIssues()
|
|
|
|
)) {
|
|
|
|
// fall through
|
|
|
|
}
|
2020-06-30 03:08:43 +02:00
|
|
|
}
|
|
|
|
|
2020-11-30 19:24:24 +01:00
|
|
|
if ($new_type) {
|
|
|
|
$new_type = Type::combineUnionTypes(
|
|
|
|
$new_type,
|
|
|
|
new Type\Union([$generated_type])
|
2020-06-19 07:22:51 +02:00
|
|
|
);
|
|
|
|
} else {
|
2020-11-30 19:24:24 +01:00
|
|
|
$new_type = new Type\Union([$generated_type]);
|
2020-06-19 07:22:51 +02:00
|
|
|
}
|
2020-11-30 19:24:24 +01:00
|
|
|
}
|
2020-06-19 07:22:51 +02:00
|
|
|
|
2020-11-30 19:24:24 +01:00
|
|
|
continue;
|
|
|
|
}
|
2020-06-19 07:22:51 +02:00
|
|
|
|
2020-11-30 19:24:24 +01:00
|
|
|
if ($lhs_type_part instanceof Type\Atomic\TString) {
|
|
|
|
if ($config->allow_string_standin_for_class
|
|
|
|
&& !$lhs_type_part instanceof Type\Atomic\TNumericString
|
|
|
|
) {
|
|
|
|
// do nothing
|
|
|
|
} elseif (IssueBuffer::accepts(
|
|
|
|
new InvalidStringClass(
|
|
|
|
'String cannot be used as a class',
|
|
|
|
new CodeLocation($statements_analyzer->getSource(), $stmt)
|
|
|
|
),
|
|
|
|
$statements_analyzer->getSuppressedIssues()
|
|
|
|
)) {
|
|
|
|
// fall through
|
2020-06-19 07:22:51 +02:00
|
|
|
}
|
2021-01-27 04:43:42 +01:00
|
|
|
} elseif ($lhs_type_part instanceof Type\Atomic\TMixed) {
|
2020-11-30 19:24:24 +01:00
|
|
|
if (IssueBuffer::accepts(
|
|
|
|
new MixedMethodCall(
|
|
|
|
'Cannot call constructor on an unknown class',
|
|
|
|
new CodeLocation($statements_analyzer->getSource(), $stmt)
|
|
|
|
),
|
|
|
|
$statements_analyzer->getSuppressedIssues()
|
|
|
|
)) {
|
|
|
|
// fall through
|
|
|
|
}
|
|
|
|
} elseif ($lhs_type_part instanceof Type\Atomic\TFalse
|
|
|
|
&& $stmt_class_type->ignore_falsable_issues
|
|
|
|
) {
|
|
|
|
// do nothing
|
|
|
|
} elseif ($lhs_type_part instanceof Type\Atomic\TNull
|
|
|
|
&& $stmt_class_type->ignore_nullable_issues
|
|
|
|
) {
|
|
|
|
// do nothing
|
|
|
|
} elseif (IssueBuffer::accepts(
|
|
|
|
new UndefinedClass(
|
|
|
|
'Type ' . $lhs_type_part . ' cannot be called as a class',
|
|
|
|
new CodeLocation($statements_analyzer->getSource(), $stmt),
|
|
|
|
(string)$lhs_type_part
|
|
|
|
),
|
|
|
|
$statements_analyzer->getSuppressedIssues()
|
|
|
|
)) {
|
|
|
|
// fall through
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($new_type) {
|
|
|
|
$new_type = Type::combineUnionTypes(
|
|
|
|
$new_type,
|
|
|
|
Type::getObject()
|
2020-05-03 04:13:59 +02:00
|
|
|
);
|
2020-11-30 19:24:24 +01:00
|
|
|
} else {
|
|
|
|
$new_type = Type::getObject();
|
2018-01-29 00:29:38 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-30 19:24:24 +01:00
|
|
|
if (!$has_single_class) {
|
|
|
|
if ($new_type) {
|
|
|
|
$statements_analyzer->node_data->setType($stmt, $new_type);
|
|
|
|
}
|
2020-06-19 07:22:51 +02:00
|
|
|
|
2020-11-30 19:24:24 +01:00
|
|
|
ArgumentsAnalyzer::analyze(
|
|
|
|
$statements_analyzer,
|
|
|
|
$stmt->args,
|
|
|
|
null,
|
|
|
|
null,
|
|
|
|
true,
|
|
|
|
$context
|
|
|
|
);
|
2020-06-19 07:22:51 +02:00
|
|
|
|
2020-11-30 19:24:24 +01:00
|
|
|
return;
|
2018-01-29 00:29:38 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|