2016-01-07 18:28:27 -05:00
|
|
|
<?php
|
2018-11-05 21:57:36 -05:00
|
|
|
namespace Psalm\Internal\Analyzer;
|
2016-01-07 18:28:27 -05:00
|
|
|
|
2016-11-02 02:29:00 -04:00
|
|
|
use PhpParser;
|
2017-07-25 16:11:02 -04:00
|
|
|
use Psalm\Aliases;
|
2018-10-06 20:11:19 -04:00
|
|
|
use Psalm\Codebase;
|
2016-12-03 19:11:30 -05:00
|
|
|
use Psalm\CodeLocation;
|
2016-11-02 02:29:00 -04:00
|
|
|
use Psalm\Context;
|
2018-11-12 10:46:55 -05:00
|
|
|
use Psalm\Internal\FileManipulation\FileManipulationBuffer;
|
2017-01-01 19:09:17 -05:00
|
|
|
use Psalm\Issue\InaccessibleProperty;
|
2017-05-19 00:48:26 -04:00
|
|
|
use Psalm\Issue\InvalidClass;
|
2018-02-17 11:36:20 -05:00
|
|
|
use Psalm\Issue\MissingDependency;
|
2018-01-10 00:07:47 -05:00
|
|
|
use Psalm\Issue\ReservedWord;
|
2020-10-24 00:10:22 -04:00
|
|
|
use Psalm\Issue\UndefinedAttributeClass;
|
2016-07-25 18:37:44 -04:00
|
|
|
use Psalm\Issue\UndefinedClass;
|
2019-05-15 18:41:26 -04:00
|
|
|
use Psalm\Issue\UndefinedDocblockClass;
|
2016-07-25 18:37:44 -04:00
|
|
|
use Psalm\IssueBuffer;
|
2017-05-19 00:48:26 -04:00
|
|
|
use Psalm\StatementsSource;
|
2016-12-30 12:41:14 -05:00
|
|
|
use Psalm\Storage\ClassLikeStorage;
|
2016-11-02 02:29:00 -04:00
|
|
|
use Psalm\Type;
|
2019-06-26 22:52:29 +02:00
|
|
|
use function strtolower;
|
|
|
|
use function preg_replace;
|
|
|
|
use function in_array;
|
|
|
|
use function preg_match;
|
|
|
|
use function explode;
|
|
|
|
use function array_pop;
|
|
|
|
use function implode;
|
|
|
|
use function gettype;
|
2016-01-07 18:28:27 -05:00
|
|
|
|
2018-12-01 18:37:49 -05:00
|
|
|
/**
|
|
|
|
* @internal
|
|
|
|
*/
|
2020-10-15 19:23:35 +02:00
|
|
|
abstract class ClassLikeAnalyzer extends SourceAnalyzer
|
2016-01-07 18:28:27 -05:00
|
|
|
{
|
2020-09-20 18:54:46 +02:00
|
|
|
public const VISIBILITY_PUBLIC = 1;
|
|
|
|
public const VISIBILITY_PROTECTED = 2;
|
|
|
|
public const VISIBILITY_PRIVATE = 3;
|
2017-01-01 19:09:17 -05:00
|
|
|
|
2020-09-20 18:54:46 +02:00
|
|
|
public const SPECIAL_TYPES = [
|
2017-01-02 15:31:18 -05:00
|
|
|
'int' => 'int',
|
2018-03-30 19:04:21 -04:00
|
|
|
'string' => 'string',
|
2017-01-02 15:31:18 -05:00
|
|
|
'float' => 'float',
|
|
|
|
'bool' => 'bool',
|
|
|
|
'false' => 'false',
|
|
|
|
'object' => 'object',
|
|
|
|
'empty' => 'empty',
|
|
|
|
'callable' => 'callable',
|
|
|
|
'array' => 'array',
|
|
|
|
'iterable' => 'iterable',
|
|
|
|
'null' => 'null',
|
|
|
|
'mixed' => 'mixed',
|
2016-11-02 02:29:00 -04:00
|
|
|
];
|
2016-07-25 00:31:29 -04:00
|
|
|
|
2020-09-20 18:54:46 +02:00
|
|
|
public const GETTYPE_TYPES = [
|
2017-09-11 11:52:34 -04:00
|
|
|
'boolean' => true,
|
|
|
|
'integer' => true,
|
|
|
|
'double' => true,
|
|
|
|
'string' => true,
|
|
|
|
'array' => true,
|
|
|
|
'object' => true,
|
|
|
|
'resource' => true,
|
2020-01-17 11:55:16 -05:00
|
|
|
'resource (closed)' => true,
|
2017-09-11 11:52:34 -04:00
|
|
|
'NULL' => true,
|
|
|
|
'unknown type' => true,
|
|
|
|
];
|
|
|
|
|
2016-09-09 09:13:41 -04:00
|
|
|
/**
|
|
|
|
* @var PhpParser\Node\Stmt\ClassLike
|
|
|
|
*/
|
2016-08-13 18:54:49 -04:00
|
|
|
protected $class;
|
2016-09-09 09:13:41 -04:00
|
|
|
|
2016-11-20 22:02:26 -05:00
|
|
|
/**
|
|
|
|
* @var StatementsSource
|
|
|
|
*/
|
|
|
|
protected $source;
|
|
|
|
|
2018-11-05 21:57:36 -05:00
|
|
|
/** @var FileAnalyzer */
|
2018-11-11 12:01:14 -05:00
|
|
|
public $file_analyzer;
|
2017-07-29 15:05:06 -04:00
|
|
|
|
2016-09-09 09:13:41 -04:00
|
|
|
/**
|
|
|
|
* @var string
|
|
|
|
*/
|
2016-11-07 17:29:51 -05:00
|
|
|
protected $fq_class_name;
|
2016-09-09 09:13:41 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The parent class
|
|
|
|
*
|
2016-10-03 11:38:59 -04:00
|
|
|
* @var string|null
|
2016-09-09 09:13:41 -04:00
|
|
|
*/
|
2017-01-07 14:35:07 -05:00
|
|
|
protected $parent_fq_class_name;
|
2016-07-22 13:29:46 -04:00
|
|
|
|
2017-02-01 18:27:24 -05:00
|
|
|
/**
|
|
|
|
* @var PhpParser\Node\Stmt[]
|
|
|
|
*/
|
|
|
|
protected $leftover_stmts = [];
|
|
|
|
|
2017-07-29 15:05:06 -04:00
|
|
|
/** @var ClassLikeStorage */
|
|
|
|
protected $storage;
|
|
|
|
|
2020-09-07 01:36:47 +02:00
|
|
|
public function __construct(PhpParser\Node\Stmt\ClassLike $class, SourceAnalyzer $source, string $fq_class_name)
|
2016-01-07 18:28:27 -05:00
|
|
|
{
|
2016-08-13 18:54:49 -04:00
|
|
|
$this->class = $class;
|
2016-11-12 18:51:48 -05:00
|
|
|
$this->source = $source;
|
2018-11-11 12:01:14 -05:00
|
|
|
$this->file_analyzer = $source->getFileAnalyzer();
|
2016-11-07 17:29:51 -05:00
|
|
|
$this->fq_class_name = $fq_class_name;
|
2018-11-11 12:19:53 -05:00
|
|
|
$codebase = $source->getCodebase();
|
|
|
|
$this->storage = $codebase->classlike_storage_provider->get($fq_class_name);
|
2017-01-07 15:57:25 -05:00
|
|
|
}
|
|
|
|
|
2018-11-18 11:39:14 -05:00
|
|
|
public function __destruct()
|
|
|
|
{
|
|
|
|
$this->source = null;
|
|
|
|
$this->file_analyzer = null;
|
|
|
|
}
|
|
|
|
|
2017-01-11 21:37:53 -05:00
|
|
|
public function getMethodMutations(
|
2020-09-07 01:36:47 +02:00
|
|
|
string $method_name,
|
2017-01-11 21:37:53 -05:00
|
|
|
Context $context
|
2020-09-12 17:24:05 +02:00
|
|
|
): void {
|
2018-11-11 12:01:14 -05:00
|
|
|
$project_analyzer = $this->getFileAnalyzer()->project_analyzer;
|
|
|
|
$codebase = $project_analyzer->getCodebase();
|
2017-07-29 15:05:06 -04:00
|
|
|
|
2017-01-11 21:37:53 -05:00
|
|
|
foreach ($this->class->stmts as $stmt) {
|
|
|
|
if ($stmt instanceof PhpParser\Node\Stmt\ClassMethod &&
|
2018-04-17 12:16:25 -04:00
|
|
|
strtolower($stmt->name->name) === strtolower($method_name)
|
2017-01-11 21:37:53 -05:00
|
|
|
) {
|
2018-11-11 12:01:14 -05:00
|
|
|
$method_analyzer = new MethodAnalyzer($stmt, $this);
|
2017-01-11 21:37:53 -05:00
|
|
|
|
2019-11-25 11:44:54 -05:00
|
|
|
$method_analyzer->analyze($context, new \Psalm\Internal\Provider\NodeDataProvider(), null, true);
|
2020-04-08 01:03:37 -04:00
|
|
|
|
|
|
|
$context->clauses = [];
|
2017-01-06 01:07:11 -05:00
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Stmt\TraitUse) {
|
|
|
|
foreach ($stmt->traits as $trait) {
|
2017-01-11 21:37:53 -05:00
|
|
|
$fq_trait_name = self::getFQCLNFromNameObject(
|
2017-01-06 01:07:11 -05:00
|
|
|
$trait,
|
2017-07-25 16:11:02 -04:00
|
|
|
$this->source->getAliases()
|
2017-01-06 01:07:11 -05:00
|
|
|
);
|
|
|
|
|
2018-11-11 12:01:14 -05:00
|
|
|
$trait_file_analyzer = $project_analyzer->getFileAnalyzerForClassLike($fq_trait_name);
|
2018-02-03 18:52:35 -05:00
|
|
|
$trait_node = $codebase->classlikes->getTraitNode($fq_trait_name);
|
2020-03-02 22:27:54 -05:00
|
|
|
$trait_storage = $codebase->classlike_storage_provider->get($fq_trait_name);
|
|
|
|
$trait_aliases = $trait_storage->aliases;
|
|
|
|
|
|
|
|
if ($trait_aliases === null) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2018-11-11 12:01:14 -05:00
|
|
|
$trait_analyzer = new TraitAnalyzer(
|
2018-01-21 12:44:46 -05:00
|
|
|
$trait_node,
|
2018-11-11 12:01:14 -05:00
|
|
|
$trait_file_analyzer,
|
2018-01-21 12:44:46 -05:00
|
|
|
$fq_trait_name,
|
|
|
|
$trait_aliases
|
|
|
|
);
|
2017-01-11 21:37:53 -05:00
|
|
|
|
2018-01-21 13:38:51 -05:00
|
|
|
foreach ($trait_node->stmts as $trait_stmt) {
|
2017-01-11 21:37:53 -05:00
|
|
|
if ($trait_stmt instanceof PhpParser\Node\Stmt\ClassMethod &&
|
2018-04-17 12:16:25 -04:00
|
|
|
strtolower($trait_stmt->name->name) === strtolower($method_name)
|
2017-01-11 21:37:53 -05:00
|
|
|
) {
|
2018-11-11 12:01:14 -05:00
|
|
|
$method_analyzer = new MethodAnalyzer($trait_stmt, $trait_analyzer);
|
2017-01-11 21:37:53 -05:00
|
|
|
|
2020-02-14 20:54:26 -05:00
|
|
|
$actual_method_id = $method_analyzer->getMethodId();
|
2017-01-06 01:07:11 -05:00
|
|
|
|
2017-01-11 21:37:53 -05:00
|
|
|
if ($context->self && $context->self !== $this->fq_class_name) {
|
2020-02-14 20:54:26 -05:00
|
|
|
$analyzed_method_id = $method_analyzer->getMethodId($context->self);
|
2018-02-03 18:52:35 -05:00
|
|
|
$declaring_method_id = $codebase->methods->getDeclaringMethodId($analyzed_method_id);
|
2017-01-11 21:37:53 -05:00
|
|
|
|
2020-02-14 20:54:26 -05:00
|
|
|
if ((string) $actual_method_id !== (string) $declaring_method_id) {
|
2017-01-11 21:37:53 -05:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-25 11:44:54 -05:00
|
|
|
$method_analyzer->analyze(
|
|
|
|
$context,
|
|
|
|
new \Psalm\Internal\Provider\NodeDataProvider(),
|
|
|
|
null,
|
|
|
|
true
|
|
|
|
);
|
2017-01-11 21:37:53 -05:00
|
|
|
}
|
|
|
|
}
|
2019-06-29 21:06:21 -04:00
|
|
|
|
|
|
|
$trait_file_analyzer->clearSourceBeforeDestruction();
|
2017-01-06 01:07:11 -05:00
|
|
|
}
|
2017-01-02 15:31:18 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-17 18:36:44 +02:00
|
|
|
public function getFunctionLikeAnalyzer(string $method_name) : ?MethodAnalyzer
|
2019-05-31 01:47:35 -04:00
|
|
|
{
|
|
|
|
foreach ($this->class->stmts as $stmt) {
|
|
|
|
if ($stmt instanceof PhpParser\Node\Stmt\ClassMethod &&
|
|
|
|
strtolower($stmt->name->name) === strtolower($method_name)
|
|
|
|
) {
|
|
|
|
return new MethodAnalyzer($stmt, $this);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-31 11:55:24 -04:00
|
|
|
return null;
|
2019-05-31 01:47:35 -04:00
|
|
|
}
|
|
|
|
|
2016-07-24 23:38:52 -04:00
|
|
|
/**
|
2016-11-04 20:10:59 -04:00
|
|
|
* @param array<string> $suppressed_issues
|
2017-03-02 12:19:18 -05:00
|
|
|
* @param bool $inferred - whether or not the type was inferred
|
2016-04-26 18:42:48 -04:00
|
|
|
*/
|
2016-11-07 19:16:51 -05:00
|
|
|
public static function checkFullyQualifiedClassLikeName(
|
2018-01-01 20:04:03 -05:00
|
|
|
StatementsSource $statements_source,
|
2019-06-01 00:56:54 -04:00
|
|
|
string $fq_class_name,
|
2016-12-03 19:11:30 -05:00
|
|
|
CodeLocation $code_location,
|
2020-02-11 16:39:33 -05:00
|
|
|
?string $calling_fq_class_name,
|
2020-03-26 12:35:27 -04:00
|
|
|
?string $calling_method_id,
|
2017-03-02 12:19:18 -05:00
|
|
|
array $suppressed_issues,
|
2019-05-15 18:41:26 -04:00
|
|
|
bool $inferred = true,
|
2019-03-28 08:22:44 -04:00
|
|
|
bool $allow_trait = false,
|
2019-05-15 18:41:26 -04:00
|
|
|
bool $allow_interface = true,
|
2020-10-24 00:10:22 -04:00
|
|
|
bool $from_docblock = false,
|
|
|
|
bool $from_attribute = false
|
2020-09-13 22:39:06 +02:00
|
|
|
): ?bool {
|
2018-11-05 21:57:36 -05:00
|
|
|
$codebase = $statements_source->getCodebase();
|
2020-09-20 00:26:51 +02:00
|
|
|
if ($fq_class_name === '') {
|
2018-03-06 13:59:59 -05:00
|
|
|
if (IssueBuffer::accepts(
|
|
|
|
new UndefinedClass(
|
|
|
|
'Class or interface <empty string> does not exist',
|
2018-03-21 10:17:57 -04:00
|
|
|
$code_location,
|
|
|
|
'empty string'
|
2018-03-06 13:59:59 -05:00
|
|
|
),
|
|
|
|
$suppressed_issues
|
|
|
|
)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-09-13 22:39:06 +02:00
|
|
|
return null;
|
2016-04-12 11:59:27 -04:00
|
|
|
}
|
|
|
|
|
2016-11-07 17:29:51 -05:00
|
|
|
$fq_class_name = preg_replace('/^\\\/', '', $fq_class_name);
|
2016-03-17 14:06:01 -04:00
|
|
|
|
2018-05-21 00:46:56 -04:00
|
|
|
if (in_array($fq_class_name, ['callable', 'iterable', 'self', 'static', 'parent'], true)) {
|
2016-12-04 21:04:25 -05:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-01-10 00:07:47 -05:00
|
|
|
if (preg_match(
|
2020-02-11 22:34:34 -05:00
|
|
|
'/(^|\\\)(int|float|bool|string|void|null|false|true|object|mixed)$/i',
|
2018-01-10 00:07:47 -05:00
|
|
|
$fq_class_name
|
2019-08-26 00:08:18 -04:00
|
|
|
) || strtolower($fq_class_name) === 'resource'
|
2018-01-10 00:07:47 -05:00
|
|
|
) {
|
|
|
|
$class_name_parts = explode('\\', $fq_class_name);
|
|
|
|
$class_name = array_pop($class_name_parts);
|
|
|
|
|
|
|
|
if (IssueBuffer::accepts(
|
|
|
|
new ReservedWord(
|
|
|
|
$class_name . ' is a reserved word',
|
2018-03-21 10:17:57 -04:00
|
|
|
$code_location,
|
|
|
|
$class_name
|
2018-01-10 00:07:47 -05:00
|
|
|
),
|
|
|
|
$suppressed_issues
|
|
|
|
)) {
|
|
|
|
// fall through
|
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2019-04-13 15:38:09 -04:00
|
|
|
$class_exists = $codebase->classlikes->classExists(
|
|
|
|
$fq_class_name,
|
2020-02-11 16:39:33 -05:00
|
|
|
!$inferred ? $code_location : null,
|
2020-03-26 12:35:27 -04:00
|
|
|
$calling_fq_class_name,
|
|
|
|
$calling_method_id
|
2019-04-13 15:38:09 -04:00
|
|
|
);
|
|
|
|
$interface_exists = $codebase->classlikes->interfaceExists(
|
|
|
|
$fq_class_name,
|
2020-02-11 16:39:33 -05:00
|
|
|
!$inferred ? $code_location : null,
|
2020-03-26 12:35:27 -04:00
|
|
|
$calling_fq_class_name,
|
|
|
|
$calling_method_id
|
2019-04-13 15:38:09 -04:00
|
|
|
);
|
2016-08-13 18:54:49 -04:00
|
|
|
|
2020-10-24 00:10:22 -04:00
|
|
|
if (!$class_exists && !($interface_exists && $allow_interface)) {
|
2019-04-13 15:38:09 -04:00
|
|
|
if (!$allow_trait || !$codebase->classlikes->traitExists($fq_class_name, $code_location)) {
|
2019-05-15 18:41:26 -04:00
|
|
|
if ($from_docblock) {
|
|
|
|
if (IssueBuffer::accepts(
|
|
|
|
new UndefinedDocblockClass(
|
|
|
|
'Docblock-defined class or interface ' . $fq_class_name . ' does not exist',
|
|
|
|
$code_location,
|
|
|
|
$fq_class_name
|
|
|
|
),
|
|
|
|
$suppressed_issues
|
|
|
|
)) {
|
|
|
|
return false;
|
|
|
|
}
|
2020-10-24 00:10:22 -04:00
|
|
|
} elseif ($from_attribute) {
|
|
|
|
if (IssueBuffer::accepts(
|
|
|
|
new UndefinedAttributeClass(
|
|
|
|
'Attribute class ' . $fq_class_name . ' does not exist',
|
|
|
|
$code_location,
|
|
|
|
$fq_class_name
|
|
|
|
),
|
|
|
|
$suppressed_issues
|
|
|
|
)) {
|
|
|
|
return false;
|
|
|
|
}
|
2019-05-15 18:41:26 -04:00
|
|
|
} else {
|
|
|
|
if (IssueBuffer::accepts(
|
|
|
|
new UndefinedClass(
|
|
|
|
'Class or interface ' . $fq_class_name . ' does not exist',
|
|
|
|
$code_location,
|
|
|
|
$fq_class_name
|
|
|
|
),
|
|
|
|
$suppressed_issues
|
|
|
|
)) {
|
|
|
|
return false;
|
|
|
|
}
|
2018-05-08 22:32:57 -04:00
|
|
|
}
|
2016-06-05 20:25:16 -04:00
|
|
|
}
|
2016-07-24 17:06:36 -04:00
|
|
|
|
2016-11-02 02:29:00 -04:00
|
|
|
return null;
|
2016-01-07 18:28:27 -05:00
|
|
|
}
|
|
|
|
|
2020-02-14 20:54:26 -05:00
|
|
|
$aliased_name = $codebase->classlikes->getUnAliasedName(
|
|
|
|
$fq_class_name
|
2018-11-29 00:05:56 -05:00
|
|
|
);
|
|
|
|
|
2018-10-08 19:57:18 -04:00
|
|
|
try {
|
2020-02-14 20:54:26 -05:00
|
|
|
$class_storage = $codebase->classlike_storage_provider->get($aliased_name);
|
2018-10-08 19:57:18 -04:00
|
|
|
} catch (\InvalidArgumentException $e) {
|
|
|
|
if (!$inferred) {
|
|
|
|
throw $e;
|
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
2018-02-14 13:34:16 -05:00
|
|
|
|
|
|
|
foreach ($class_storage->invalid_dependencies as $dependency_class_name) {
|
2019-04-21 11:30:42 -04:00
|
|
|
// if the implemented/extended class is stubbed, it may not yet have
|
|
|
|
// been hydrated
|
|
|
|
if ($codebase->classlike_storage_provider->has($dependency_class_name)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2018-02-14 13:34:16 -05:00
|
|
|
if (IssueBuffer::accepts(
|
2018-02-17 11:36:20 -05:00
|
|
|
new MissingDependency(
|
2018-02-14 13:34:16 -05:00
|
|
|
$fq_class_name . ' depends on class or interface '
|
|
|
|
. $dependency_class_name . ' that does not exist',
|
2018-03-21 10:17:57 -04:00
|
|
|
$code_location,
|
|
|
|
$fq_class_name
|
2018-02-14 13:34:16 -05:00
|
|
|
),
|
|
|
|
$suppressed_issues
|
|
|
|
)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-14 20:54:26 -05:00
|
|
|
if (!$inferred) {
|
|
|
|
if (($class_exists && !$codebase->classHasCorrectCasing($fq_class_name)) ||
|
|
|
|
($interface_exists && !$codebase->interfaceHasCorrectCasing($fq_class_name))
|
|
|
|
) {
|
|
|
|
if ($codebase->classlikes->isUserDefined(strtolower($aliased_name))) {
|
|
|
|
if (IssueBuffer::accepts(
|
|
|
|
new InvalidClass(
|
|
|
|
'Class or interface ' . $fq_class_name . ' has wrong casing',
|
|
|
|
$code_location,
|
|
|
|
$fq_class_name
|
|
|
|
),
|
|
|
|
$suppressed_issues
|
|
|
|
)) {
|
|
|
|
// fall through here
|
|
|
|
}
|
2017-01-18 00:33:48 -05:00
|
|
|
}
|
2016-08-10 01:09:47 -04:00
|
|
|
}
|
2016-03-17 14:06:01 -04:00
|
|
|
}
|
|
|
|
|
2018-01-01 21:17:23 -05:00
|
|
|
if (!$inferred) {
|
2018-02-11 22:49:19 -05:00
|
|
|
$plugin_classes = $codebase->config->after_classlike_exists_checks;
|
2018-01-01 21:17:23 -05:00
|
|
|
|
2018-02-11 22:49:19 -05:00
|
|
|
if ($plugin_classes) {
|
2018-01-01 21:17:23 -05:00
|
|
|
$file_manipulations = [];
|
|
|
|
|
2018-02-11 22:49:19 -05:00
|
|
|
foreach ($plugin_classes as $plugin_fq_class_name) {
|
2018-11-05 21:57:36 -05:00
|
|
|
$plugin_fq_class_name::afterClassLikeExistenceCheck(
|
2018-01-01 21:17:23 -05:00
|
|
|
$fq_class_name,
|
|
|
|
$code_location,
|
2018-11-05 21:57:36 -05:00
|
|
|
$statements_source,
|
|
|
|
$codebase,
|
2018-01-01 21:17:23 -05:00
|
|
|
$file_manipulations
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($file_manipulations) {
|
|
|
|
FileManipulationBuffer::add($code_location->file_path, $file_manipulations);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-07-24 17:06:36 -04:00
|
|
|
return true;
|
2016-01-07 18:28:27 -05:00
|
|
|
}
|
|
|
|
|
2016-10-09 17:54:58 -04:00
|
|
|
/**
|
2016-11-02 02:29:00 -04:00
|
|
|
* Gets the fully-qualified class name from a Name object
|
2016-10-09 17:54:58 -04:00
|
|
|
*
|
2017-05-26 20:16:18 -04:00
|
|
|
*
|
2016-10-09 17:54:58 -04:00
|
|
|
*/
|
2018-10-26 23:04:38 -04:00
|
|
|
public static function getFQCLNFromNameObject(
|
|
|
|
PhpParser\Node\Name $class_name,
|
|
|
|
Aliases $aliases
|
2020-09-04 22:26:33 +02:00
|
|
|
): string {
|
2018-07-12 21:25:06 -04:00
|
|
|
/** @var string|null */
|
|
|
|
$resolved_name = $class_name->getAttribute('resolvedName');
|
|
|
|
|
|
|
|
if ($resolved_name) {
|
|
|
|
return $resolved_name;
|
|
|
|
}
|
|
|
|
|
2016-01-07 18:28:27 -05:00
|
|
|
if ($class_name instanceof PhpParser\Node\Name\FullyQualified) {
|
2016-02-18 15:05:13 -05:00
|
|
|
return implode('\\', $class_name->parts);
|
2016-01-07 18:28:27 -05:00
|
|
|
}
|
|
|
|
|
2017-07-25 16:11:02 -04:00
|
|
|
if (in_array($class_name->parts[0], ['self', 'static', 'parent'], true)) {
|
|
|
|
return $class_name->parts[0];
|
|
|
|
}
|
|
|
|
|
2018-02-04 12:23:32 -05:00
|
|
|
return Type::getFQCLNFromString(
|
2017-01-06 01:07:11 -05:00
|
|
|
implode('\\', $class_name->parts),
|
2017-07-25 16:11:02 -04:00
|
|
|
$aliases
|
2017-01-06 01:07:11 -05:00
|
|
|
);
|
2016-01-07 18:28:27 -05:00
|
|
|
}
|
|
|
|
|
2016-11-12 18:51:48 -05:00
|
|
|
/**
|
|
|
|
* @return array<string, string>
|
|
|
|
*/
|
2020-09-04 22:26:33 +02:00
|
|
|
public function getAliasedClassesFlipped(): array
|
2016-11-12 18:51:48 -05:00
|
|
|
{
|
2018-11-05 21:57:36 -05:00
|
|
|
if ($this->source instanceof NamespaceAnalyzer || $this->source instanceof FileAnalyzer) {
|
2016-11-13 11:24:46 -05:00
|
|
|
return $this->source->getAliasedClassesFlipped();
|
|
|
|
}
|
|
|
|
|
|
|
|
return [];
|
2016-11-12 18:51:48 -05:00
|
|
|
}
|
|
|
|
|
2019-06-05 22:13:33 -04:00
|
|
|
/**
|
|
|
|
* @return array<string, string>
|
|
|
|
*/
|
2020-09-04 22:26:33 +02:00
|
|
|
public function getAliasedClassesFlippedReplaceable(): array
|
2019-06-05 22:13:33 -04:00
|
|
|
{
|
|
|
|
if ($this->source instanceof NamespaceAnalyzer || $this->source instanceof FileAnalyzer) {
|
|
|
|
return $this->source->getAliasedClassesFlippedReplaceable();
|
|
|
|
}
|
|
|
|
|
|
|
|
return [];
|
|
|
|
}
|
|
|
|
|
2020-09-04 22:26:33 +02:00
|
|
|
public function getFQCLN(): string
|
2016-01-19 18:27:06 -05:00
|
|
|
{
|
2016-11-07 17:29:51 -05:00
|
|
|
return $this->fq_class_name;
|
2016-01-19 18:27:06 -05:00
|
|
|
}
|
|
|
|
|
2020-09-04 22:26:33 +02:00
|
|
|
public function getClassName(): ?string
|
2016-01-19 18:27:06 -05:00
|
|
|
{
|
2018-04-17 12:16:25 -04:00
|
|
|
return $this->class->name ? $this->class->name->name : null;
|
2016-01-19 18:27:06 -05:00
|
|
|
}
|
|
|
|
|
2018-12-17 23:29:27 -05:00
|
|
|
/**
|
2019-03-22 15:59:10 -04:00
|
|
|
* @return array<string, array<string, array{Type\Union}>>|null
|
2018-12-17 23:29:27 -05:00
|
|
|
*/
|
2020-09-04 22:26:33 +02:00
|
|
|
public function getTemplateTypeMap(): ?array
|
2018-12-17 23:29:27 -05:00
|
|
|
{
|
|
|
|
return $this->storage->template_types;
|
|
|
|
}
|
|
|
|
|
2020-09-04 22:26:33 +02:00
|
|
|
public function getParentFQCLN(): ?string
|
2016-01-19 18:27:06 -05:00
|
|
|
{
|
2017-01-07 14:35:07 -05:00
|
|
|
return $this->parent_fq_class_name;
|
2016-01-19 18:27:06 -05:00
|
|
|
}
|
|
|
|
|
2020-09-04 22:26:33 +02:00
|
|
|
public function isStatic(): bool
|
2016-01-19 18:27:06 -05:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2016-01-29 18:48:09 -05:00
|
|
|
|
2016-11-20 21:49:06 -05:00
|
|
|
/**
|
|
|
|
* Gets the Psalm type from a particular value
|
|
|
|
*
|
|
|
|
* @param mixed $value
|
2017-05-26 20:16:18 -04:00
|
|
|
*
|
2016-11-20 21:49:06 -05:00
|
|
|
*/
|
2020-09-04 22:26:33 +02:00
|
|
|
public static function getTypeFromValue($value): Type\Union
|
2016-11-20 21:49:06 -05:00
|
|
|
{
|
|
|
|
switch (gettype($value)) {
|
|
|
|
case 'boolean':
|
2018-05-31 16:49:01 -04:00
|
|
|
if ($value) {
|
|
|
|
return Type::getTrue();
|
|
|
|
}
|
|
|
|
|
|
|
|
return Type::getFalse();
|
2016-11-20 21:49:06 -05:00
|
|
|
|
|
|
|
case 'integer':
|
2018-05-31 16:49:01 -04:00
|
|
|
return Type::getInt(false, $value);
|
2016-11-20 21:49:06 -05:00
|
|
|
|
|
|
|
case 'double':
|
2018-05-31 16:49:01 -04:00
|
|
|
return Type::getFloat($value);
|
2016-11-20 21:49:06 -05:00
|
|
|
|
|
|
|
case 'string':
|
2018-05-31 16:49:01 -04:00
|
|
|
return Type::getString($value);
|
2016-11-20 21:49:06 -05:00
|
|
|
|
|
|
|
case 'array':
|
|
|
|
return Type::getArray();
|
|
|
|
|
|
|
|
case 'NULL':
|
|
|
|
return Type::getNull();
|
|
|
|
|
|
|
|
default:
|
|
|
|
return Type::getMixed();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-01 19:09:17 -05:00
|
|
|
/**
|
2019-06-16 09:12:32 -04:00
|
|
|
* @param string[] $suppressed_issues
|
2017-01-01 19:09:17 -05:00
|
|
|
*/
|
|
|
|
public static function checkPropertyVisibility(
|
2020-09-07 01:36:47 +02:00
|
|
|
string $property_id,
|
2019-03-01 08:57:10 -05:00
|
|
|
Context $context,
|
2018-11-05 21:57:36 -05:00
|
|
|
SourceAnalyzer $source,
|
2017-01-01 19:09:17 -05:00
|
|
|
CodeLocation $code_location,
|
2018-01-13 01:52:46 -05:00
|
|
|
array $suppressed_issues,
|
2020-09-07 01:36:47 +02:00
|
|
|
bool $emit_issues = true
|
2020-09-04 22:26:33 +02:00
|
|
|
): ?bool {
|
2020-09-22 06:44:31 +02:00
|
|
|
[$fq_class_name, $property_name] = explode('::$', $property_id);
|
2019-03-01 08:57:10 -05:00
|
|
|
|
2018-11-05 21:57:36 -05:00
|
|
|
$codebase = $source->getCodebase();
|
2017-07-29 15:05:06 -04:00
|
|
|
|
2019-03-01 08:57:10 -05:00
|
|
|
if ($codebase->properties->property_visibility_provider->has($fq_class_name)) {
|
|
|
|
$property_visible = $codebase->properties->property_visibility_provider->isPropertyVisible(
|
|
|
|
$source,
|
|
|
|
$fq_class_name,
|
|
|
|
$property_name,
|
2020-01-05 18:53:24 -05:00
|
|
|
true,
|
2020-08-31 16:40:16 -04:00
|
|
|
$context,
|
|
|
|
$code_location
|
2019-03-01 08:57:10 -05:00
|
|
|
);
|
|
|
|
|
|
|
|
if ($property_visible !== null) {
|
|
|
|
return $property_visible;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-29 00:05:56 -05:00
|
|
|
$declaring_property_class = $codebase->properties->getDeclaringClassForProperty(
|
2019-03-01 08:57:10 -05:00
|
|
|
$property_id,
|
|
|
|
true
|
2018-11-29 00:05:56 -05:00
|
|
|
);
|
|
|
|
$appearing_property_class = $codebase->properties->getAppearingClassForProperty(
|
2019-03-01 08:57:10 -05:00
|
|
|
$property_id,
|
|
|
|
true
|
2018-11-29 00:05:56 -05:00
|
|
|
);
|
2017-01-01 19:09:17 -05:00
|
|
|
|
|
|
|
if (!$declaring_property_class || !$appearing_property_class) {
|
|
|
|
throw new \UnexpectedValueException(
|
|
|
|
'Appearing/Declaring classes are not defined for ' . $property_id
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
// if the calling class is the same, we know the property exists, so it must be visible
|
2019-03-01 08:57:10 -05:00
|
|
|
if ($appearing_property_class === $context->self) {
|
2018-01-13 01:52:46 -05:00
|
|
|
return $emit_issues ? null : true;
|
2017-01-01 19:09:17 -05:00
|
|
|
}
|
|
|
|
|
2020-02-14 20:54:26 -05:00
|
|
|
if ($source->getSource() instanceof TraitAnalyzer
|
|
|
|
&& strtolower($declaring_property_class) === strtolower((string) $source->getFQCLN())
|
|
|
|
) {
|
2018-01-13 01:52:46 -05:00
|
|
|
return $emit_issues ? null : true;
|
2017-01-01 19:09:17 -05:00
|
|
|
}
|
|
|
|
|
2018-11-11 12:19:53 -05:00
|
|
|
$class_storage = $codebase->classlike_storage_provider->get($declaring_property_class);
|
2017-01-01 19:09:17 -05:00
|
|
|
|
2017-11-24 12:10:30 -05:00
|
|
|
if (!isset($class_storage->properties[$property_name])) {
|
2017-01-01 19:09:17 -05:00
|
|
|
throw new \UnexpectedValueException('$storage should not be null for ' . $property_id);
|
|
|
|
}
|
|
|
|
|
2017-11-24 12:10:30 -05:00
|
|
|
$storage = $class_storage->properties[$property_name];
|
|
|
|
|
2017-01-01 19:09:17 -05:00
|
|
|
switch ($storage->visibility) {
|
|
|
|
case self::VISIBILITY_PUBLIC:
|
2018-01-13 01:52:46 -05:00
|
|
|
return $emit_issues ? null : true;
|
2017-01-01 19:09:17 -05:00
|
|
|
|
|
|
|
case self::VISIBILITY_PRIVATE:
|
2019-03-01 08:57:10 -05:00
|
|
|
if (!$context->self || $appearing_property_class !== $context->self) {
|
2018-01-13 02:08:53 -05:00
|
|
|
if ($emit_issues && IssueBuffer::accepts(
|
2017-01-01 19:09:17 -05:00
|
|
|
new InaccessibleProperty(
|
2019-03-01 08:57:10 -05:00
|
|
|
'Cannot access private property ' . $property_id . ' from context ' . $context->self,
|
2017-01-01 19:09:17 -05:00
|
|
|
$code_location
|
|
|
|
),
|
|
|
|
$suppressed_issues
|
|
|
|
)) {
|
2020-03-14 23:54:42 -04:00
|
|
|
// fall through
|
2017-01-01 19:09:17 -05:00
|
|
|
}
|
2018-01-13 01:52:46 -05:00
|
|
|
|
|
|
|
return null;
|
2017-01-01 19:09:17 -05:00
|
|
|
}
|
|
|
|
|
2018-01-13 01:52:46 -05:00
|
|
|
return $emit_issues ? null : true;
|
2017-01-01 19:09:17 -05:00
|
|
|
|
|
|
|
case self::VISIBILITY_PROTECTED:
|
2019-03-01 08:57:10 -05:00
|
|
|
if ($appearing_property_class === $context->self) {
|
2017-01-01 19:09:17 -05:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2019-03-01 08:57:10 -05:00
|
|
|
if (!$context->self) {
|
2018-01-13 02:08:53 -05:00
|
|
|
if ($emit_issues && IssueBuffer::accepts(
|
2017-01-01 19:09:17 -05:00
|
|
|
new InaccessibleProperty(
|
|
|
|
'Cannot access protected property ' . $property_id,
|
|
|
|
$code_location
|
|
|
|
),
|
|
|
|
$suppressed_issues
|
|
|
|
)) {
|
2020-03-14 23:54:42 -04:00
|
|
|
// fall through
|
2017-01-01 19:09:17 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2019-03-01 08:57:10 -05:00
|
|
|
if ($codebase->classExtends($appearing_property_class, $context->self)) {
|
2018-01-13 01:52:46 -05:00
|
|
|
return $emit_issues ? null : true;
|
2017-01-01 19:09:17 -05:00
|
|
|
}
|
|
|
|
|
2019-03-01 08:57:10 -05:00
|
|
|
if (!$codebase->classExtends($context->self, $appearing_property_class)) {
|
2018-01-13 02:08:53 -05:00
|
|
|
if ($emit_issues && IssueBuffer::accepts(
|
2017-01-01 19:09:17 -05:00
|
|
|
new InaccessibleProperty(
|
2019-03-01 08:57:10 -05:00
|
|
|
'Cannot access protected property ' . $property_id . ' from context ' . $context->self,
|
2017-01-01 19:09:17 -05:00
|
|
|
$code_location
|
|
|
|
),
|
|
|
|
$suppressed_issues
|
|
|
|
)) {
|
2020-03-14 23:54:42 -04:00
|
|
|
// fall through
|
2017-01-01 19:09:17 -05:00
|
|
|
}
|
2018-01-13 01:52:46 -05:00
|
|
|
|
|
|
|
return null;
|
2017-01-01 19:09:17 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-13 01:52:46 -05:00
|
|
|
return $emit_issues ? null : true;
|
2017-01-01 19:09:17 -05:00
|
|
|
}
|
|
|
|
|
2016-11-02 02:29:00 -04:00
|
|
|
/**
|
2018-02-11 22:49:19 -05:00
|
|
|
* @return array<string, string>
|
2016-11-02 02:29:00 -04:00
|
|
|
*/
|
2020-09-07 01:36:47 +02:00
|
|
|
public static function getClassesForFile(Codebase $codebase, string $file_path): array
|
2016-10-04 19:23:38 -04:00
|
|
|
{
|
2017-07-29 15:05:06 -04:00
|
|
|
try {
|
2018-10-06 20:11:19 -04:00
|
|
|
return $codebase->file_storage_provider->get($file_path)->classlikes_in_file;
|
2017-07-29 15:05:06 -04:00
|
|
|
} catch (\InvalidArgumentException $e) {
|
|
|
|
return [];
|
|
|
|
}
|
2016-10-04 19:23:38 -04:00
|
|
|
}
|
|
|
|
|
2018-11-05 21:57:36 -05:00
|
|
|
public function getFileAnalyzer() : FileAnalyzer
|
2017-07-29 15:05:06 -04:00
|
|
|
{
|
2018-11-11 12:01:14 -05:00
|
|
|
return $this->file_analyzer;
|
2017-07-29 15:05:06 -04:00
|
|
|
}
|
2016-01-07 18:28:27 -05:00
|
|
|
}
|