1
0
mirror of https://github.com/danog/psalm.git synced 2024-12-14 02:07:37 +01:00
psalm/src/Psalm/Checker/ClassLikeChecker.php

1864 lines
65 KiB
PHP
Raw Normal View History

2016-01-08 00:28:27 +01:00
<?php
namespace Psalm\Checker;
2016-01-08 00:28:27 +01:00
2016-11-02 07:29:00 +01:00
use PhpParser;
use Psalm\CodeLocation;
2016-11-02 07:29:00 +01:00
use Psalm\Config;
use Psalm\Context;
2016-11-21 05:31:10 +01:00
use Psalm\Exception\DocblockParseException;
use Psalm\Issue\DuplicateClass;
2016-07-26 00:37:44 +02:00
use Psalm\Issue\InvalidClass;
2016-11-21 05:31:10 +01:00
use Psalm\Issue\InvalidDocblock;
use Psalm\Issue\InaccessibleMethod;
use Psalm\Issue\InaccessibleProperty;
use Psalm\Issue\MissingConstructor;
2016-10-31 20:17:54 +01:00
use Psalm\Issue\MissingPropertyType;
use Psalm\Issue\PropertyNotSetInConstructor;
2017-01-07 20:35:07 +01:00
use Psalm\Issue\RedefinedTraitMethod;
2016-07-26 00:37:44 +02:00
use Psalm\Issue\UndefinedClass;
use Psalm\Issue\UndefinedTrait;
2016-10-30 16:14:36 +01:00
use Psalm\Issue\UnimplementedInterfaceMethod;
2016-07-26 00:37:44 +02:00
use Psalm\IssueBuffer;
use Psalm\StatementsSource;
use Psalm\Storage\ClassLikeStorage;
use Psalm\Storage\MethodStorage;
use Psalm\Storage\PropertyStorage;
2016-11-02 07:29:00 +01:00
use Psalm\Type;
use Psalm\Type\Atomic\TNamedObject;
use ReflectionClass;
use ReflectionMethod;
2016-08-05 21:11:20 +02:00
use ReflectionProperty;
2016-01-08 00:28:27 +01:00
2016-11-21 03:49:06 +01:00
abstract class ClassLikeChecker extends SourceChecker implements StatementsSource
2016-01-08 00:28:27 +01:00
{
const VISIBILITY_PUBLIC = 1;
const VISIBILITY_PROTECTED = 2;
const VISIBILITY_PRIVATE = 3;
2016-10-31 20:42:20 +01:00
/**
* @var array
*/
public static $SPECIAL_TYPES = [
'int' => 'int',
'string' => 'stirng',
'float' => 'float',
'bool' => 'bool',
'false' => 'false',
'object' => 'object',
'empty' => 'empty',
'callable' => 'callable',
'array' => 'array',
'iterable' => 'iterable',
'null' => 'null',
'mixed' => 'mixed',
2016-11-02 07:29:00 +01:00
];
2016-09-09 15:13:41 +02:00
/**
* @var PhpParser\Node\Stmt\ClassLike
*/
protected $class;
2016-09-09 15:13:41 +02:00
2016-11-21 04:02:26 +01:00
/**
* @var StatementsSource
*/
protected $source;
2016-09-09 15:13:41 +02:00
/**
* @var string
*/
protected $fq_class_name;
2016-09-09 15:13:41 +02:00
/**
* @var bool
*/
protected $has_custom_get = false;
2016-09-09 15:13:41 +02:00
/**
* The parent class
*
2016-10-03 17:38:59 +02:00
* @var string|null
2016-09-09 15:13:41 +02:00
*/
2017-01-07 20:35:07 +01:00
protected $parent_fq_class_name;
2016-07-25 00:02:03 +02:00
/**
* @var array<string, MethodChecker>
2016-07-25 00:02:03 +02:00
*/
protected $method_checkers = [];
/**
* @var array<string, MethodChecker>
*/
protected $property_types = [];
2016-07-25 00:02:03 +02:00
/**
* @var array<string, array<string, string>>|null
*/
protected static $property_map;
/**
* @var array<string, ClassLikeStorage>
*/
public static $storage = [];
2016-09-09 15:13:41 +02:00
/**
* A lookup table of cached TraitCheckers
2016-09-09 15:13:41 +02:00
*
* @var array<string, TraitChecker>
*/
public static $trait_checkers;
/**
* A lookup table of cached ClassCheckers
*
* @var array<string, ClassChecker>
2016-11-02 07:29:00 +01:00
*/
public static $class_checkers;
2016-11-02 07:29:00 +01:00
/**
* @var array<string, array<string, string>>
2016-11-02 07:29:00 +01:00
*/
public static $file_classes = [];
2016-12-12 19:50:46 +01:00
/**
* A lookup table used for caching the results of classExtends calls
*
* @var array<string, array<string, bool>>
*/
protected static $class_extends = [];
/**
* @var PhpParser\Node\Stmt[]
*/
protected $leftover_stmts = [];
2016-11-02 07:29:00 +01:00
/**
* @param PhpParser\Node\Stmt\ClassLike $class
* @param StatementsSource $source
* @param string $fq_class_name
2016-11-02 07:29:00 +01:00
*/
public function __construct(PhpParser\Node\Stmt\ClassLike $class, StatementsSource $source, $fq_class_name)
2016-01-08 00:28:27 +01:00
{
$this->class = $class;
2016-11-13 00:51:48 +01:00
$this->source = $source;
$this->fq_class_name = $fq_class_name;
2016-01-08 00:28:27 +01:00
2017-01-09 05:58:06 +01:00
$fq_class_name_lower = strtolower($fq_class_name);
if (!isset(self::$storage[$fq_class_name_lower])) {
self::$storage[$fq_class_name_lower] = $storage = new ClassLikeStorage();
$storage->name = $fq_class_name;
$storage->location = new CodeLocation($this->source, $class, true);
$storage->user_defined = true;
} else {
$storage = self::$storage[$fq_class_name_lower];
if ($storage->location &&
($storage->location->file_path !== $this->source->getFilePath() ||
$storage->location->getLineNumber() !== $class->getLine()
)
) {
if (IssueBuffer::accepts(
new DuplicateClass(
'Class ' . $fq_class_name . ' has already been defined at ' .
$storage->location->file_path . ':' . $storage->location->getLineNumber(),
new \Psalm\CodeLocation($this, $class, true)
)
)) {
// fall through
}
}
}
2017-01-07 20:35:07 +01:00
self::$file_classes[$this->source->getFilePath()][] = $fq_class_name;
2016-01-08 00:28:27 +01:00
}
2016-11-02 07:29:00 +01:00
/**
2016-11-13 17:24:46 +01:00
* @param Context|null $class_context
* @param Context|null $global_context
2016-11-02 07:29:00 +01:00
* @return false|null
*/
public function visit(
Context $class_context = null,
Context $global_context = null
) {
2017-01-09 05:58:06 +01:00
$storage = self::$storage[strtolower($class_context ? (string)$class_context->self : $this->fq_class_name)];
if (!($this instanceof TraitChecker) && $storage->registered) {
2016-11-02 07:29:00 +01:00
return null;
2016-08-15 05:24:16 +02:00
}
2016-06-25 00:18:11 +02:00
$config = Config::getInstance();
$storage->user_defined = true;
2016-08-15 05:24:16 +02:00
$long_file_name = $this->source->getFilePath();
2016-10-25 00:49:07 +02:00
2016-08-15 05:24:16 +02:00
if (!$class_context) {
$class_context = new Context($this->fq_class_name);
2017-01-07 20:35:07 +01:00
$class_context->parent = $this->parent_fq_class_name;
if ($global_context) {
$class_context->vars_in_scope = $global_context->vars_in_scope;
$class_context->vars_possibly_in_scope = $global_context->vars_possibly_in_scope;
}
$class_context->vars_in_scope['$this'] = new Type\Union([new TNamedObject($this->fq_class_name)]);
2017-02-08 08:23:17 +01:00
$class_context->vars_possibly_in_scope['$this'] = true;
2016-08-15 05:24:16 +02:00
}
2017-01-07 20:35:07 +01:00
// set all constants first
2016-08-15 05:24:16 +02:00
foreach ($this->class->stmts as $stmt) {
if ($stmt instanceof PhpParser\Node\Stmt\ClassConst) {
foreach ($stmt->consts as $const) {
if ($stmt->isProtected()) {
$storage->protected_class_constants[$const->name] = Type::getMixed();
} elseif ($stmt->isPrivate()) {
$storage->private_class_constants[$const->name] = Type::getMixed();
} else {
$storage->public_class_constants[$const->name] = Type::getMixed();
}
2016-08-15 05:24:16 +02:00
}
}
}
2016-08-14 18:06:53 +02:00
if ($this instanceof ClassChecker) {
2017-01-07 20:35:07 +01:00
if ($this->parent_fq_class_name &&
$this->registerParentClassInfo($this->parent_fq_class_name) === false
) {
2016-11-02 14:24:36 +01:00
return false;
2016-08-15 05:24:16 +02:00
}
2016-11-20 17:51:19 +01:00
}
2016-08-15 05:24:16 +02:00
2016-11-20 17:51:19 +01:00
if ($this instanceof InterfaceChecker || $this instanceof ClassChecker) {
2016-10-25 00:49:07 +02:00
$extra_interfaces = [];
2016-11-20 17:51:19 +01:00
if ($this instanceof InterfaceChecker) {
$parent_interfaces = InterfaceChecker::getParentInterfaces(
$this->fq_class_name
);
2016-11-20 17:51:19 +01:00
$extra_interfaces = $parent_interfaces;
2016-12-29 03:37:24 +01:00
} else {
2017-01-09 05:58:06 +01:00
$parent_interfaces = self::$storage[strtolower($this->fq_class_name)]->class_implements;
2016-11-20 17:51:19 +01:00
}
foreach ($parent_interfaces as $interface_name) {
2016-11-08 01:16:51 +01:00
if (self::checkFullyQualifiedClassLikeName(
2016-08-15 05:24:16 +02:00
$interface_name,
$this->getFileChecker(),
new CodeLocation($this, $this->class, true),
2017-02-12 01:30:06 +01:00
$this->getSuppressedIssues()
2016-11-02 07:29:00 +01:00
) === false) {
2016-08-15 05:24:16 +02:00
return false;
}
2016-11-02 07:29:00 +01:00
$extra_interfaces = array_merge(
$extra_interfaces,
InterfaceChecker::getParentInterfaces(
$interface_name
)
2016-11-02 07:29:00 +01:00
);
2016-10-25 00:49:07 +02:00
$interface_storage = self::$storage[strtolower($interface_name)];
// copy over any constants
$storage->public_class_constants = array_merge(
$storage->public_class_constants,
$interface_storage->public_class_constants
);
2016-10-25 00:49:07 +02:00
FileChecker::addFileInheritanceToClass($long_file_name, $interface_name);
}
$extra_interfaces = array_unique($extra_interfaces);
2016-10-05 23:08:20 +02:00
2016-10-25 00:49:07 +02:00
foreach ($extra_interfaces as $extra_interface_name) {
FileChecker::addFileInheritanceToClass($long_file_name, $extra_interface_name);
2016-11-20 17:51:19 +01:00
if ($this instanceof ClassChecker) {
$storage->class_implements[strtolower($extra_interface_name)] = $extra_interface_name;
2016-12-29 03:37:24 +01:00
} else {
$this->registerInheritedMethods($this->fq_class_name, $extra_interface_name);
2016-11-20 17:51:19 +01:00
}
2016-11-02 17:14:21 +01:00
}
2016-08-07 02:27:13 +02:00
}
2016-08-05 21:11:20 +02:00
2017-02-10 02:35:17 +01:00
$doc_comment = $this->class->getDocComment();
if ($doc_comment) {
$docblock_info = null;
try {
$docblock_info = CommentChecker::extractClassLikeDocblockInfo(
(string)$doc_comment,
$doc_comment->getLine()
);
} catch (DocblockParseException $e) {
if (IssueBuffer::accepts(
new InvalidDocblock(
$e->getMessage() . ' in docblock for ' . $this->fq_class_name,
new CodeLocation($this->source, $this->class, true)
)
)) {
// fall through
}
}
if ($docblock_info) {
if ($docblock_info->template_types) {
$storage->template_types = [];
foreach ($docblock_info->template_types as $template_type) {
if (count($template_type) === 3) {
$as_type_string = ClassLikeChecker::getFQCLNFromString($template_type[2], $this->source);
$storage->template_types[$template_type[0]] = $as_type_string;
} else {
$storage->template_types[$template_type[0]] = 'mixed';
}
}
}
}
}
$const_stmts = [];
foreach ($this->class->stmts as $stmt) {
2016-01-08 00:28:27 +01:00
if ($stmt instanceof PhpParser\Node\Stmt\ClassMethod) {
2016-11-02 07:29:00 +01:00
$this->visitClassMethod(
$stmt,
$class_context
2016-11-02 07:29:00 +01:00
);
2016-11-02 14:24:36 +01:00
} elseif ($stmt instanceof PhpParser\Node\Stmt\TraitUse) {
$this->visitTraitUse(
$stmt,
$class_context
);
2016-11-02 14:24:36 +01:00
} elseif ($stmt instanceof PhpParser\Node\Stmt\Property) {
2016-11-02 07:29:00 +01:00
$this->visitPropertyDeclaration(
$stmt,
$class_context,
$config
2016-11-02 07:29:00 +01:00
);
$this->leftover_stmts[] = $stmt;
2016-11-02 14:24:36 +01:00
} elseif ($stmt instanceof PhpParser\Node\Stmt\ClassConst) {
$this->visitClassConstDeclaration(
$stmt,
$class_context,
$config
);
$const_stmts[] = $stmt;
2016-01-08 00:28:27 +01:00
}
}
2016-01-26 20:13:04 +01:00
if (MethodChecker::methodExists($this->fq_class_name . '::__get', $this->getFileChecker())) {
$this->has_custom_get = true;
2016-04-20 12:55:26 +02:00
}
if ($const_stmts) {
(new StatementsChecker($this))->analyze($const_stmts, $class_context);
2016-01-26 20:13:04 +01:00
}
2016-03-23 18:05:25 +01:00
$config = Config::getInstance();
if ($this instanceof ClassChecker && $this->class instanceof PhpParser\Node\Stmt\Class_) {
$storage->abstract = (bool)$this->class->isAbstract();
foreach (ClassChecker::getInterfacesForClass(
$this->fq_class_name
2017-02-02 06:45:23 +01:00
) as $_ => $interface_name) {
2017-01-09 05:58:06 +01:00
$interface_storage = self::$storage[strtolower($interface_name)];
$storage->public_class_constants += $interface_storage->public_class_constants;
2016-10-15 06:12:57 +02:00
foreach ($interface_storage->methods as $method_name => $method) {
if ($method->visibility === self::VISIBILITY_PUBLIC) {
$mentioned_method_id = $interface_name . '::' . $method_name;
$implemented_method_id = $this->fq_class_name . '::' . $method_name;
MethodChecker::setOverriddenMethodId($implemented_method_id, $mentioned_method_id);
2017-01-07 21:57:25 +01:00
}
}
}
}
2017-01-08 19:53:40 +01:00
$storage->registered = true;
2017-01-07 21:57:25 +01:00
return null;
}
/**
* @param Context|null $class_context
* @param Context|null $global_context
* @param bool $update_docblocks
* @return null|false
*/
public function analyze(
Context $class_context = null,
Context $global_context = null,
$update_docblocks = false
) {
$fq_class_name = $class_context && $class_context->self ? $class_context->self : $this->fq_class_name;
2017-01-09 05:58:06 +01:00
$storage = self::$storage[strtolower($fq_class_name)];
2017-01-07 21:57:25 +01:00
if (($this->class instanceof PhpParser\Node\Stmt\Class_ ||
$this->class instanceof PhpParser\Node\Stmt\Interface_
) &&
$this->parent_fq_class_name &&
!ClassLikeChecker::classOrInterfaceExists($this->parent_fq_class_name, $this->getFileChecker())
) {
// we should not normally get here
return;
}
2017-01-07 21:57:25 +01:00
if ($this instanceof ClassChecker && $this->class instanceof PhpParser\Node\Stmt\Class_) {
2017-01-12 03:37:53 +01:00
$class_interfaces = ClassChecker::getInterfacesForClass($this->fq_class_name);
if (!$this->class->isAbstract()) {
2017-02-11 01:10:13 +01:00
foreach ($class_interfaces as $interface_name) {
if (!isset(self::$storage[strtolower($interface_name)])) {
continue;
}
$interface_storage = self::$storage[strtolower($interface_name)];
$storage->public_class_constants += $interface_storage->public_class_constants;
foreach ($interface_storage->methods as $method_name => $method) {
if ($method->visibility === self::VISIBILITY_PUBLIC) {
$implemented_method_id = $this->fq_class_name . '::' . $method_name;
$mentioned_method_id = $interface_name . '::' . $method_name;
$declaring_method_id = MethodChecker::getDeclaringMethodId($implemented_method_id);
$method_storage = $declaring_method_id
? MethodChecker::getStorage($declaring_method_id)
: null;
if (!$method_storage) {
$cased_method_id = MethodChecker::getCasedMethodId($mentioned_method_id);
if (IssueBuffer::accepts(
new UnimplementedInterfaceMethod(
'Method ' . $cased_method_id . ' is not defined on class ' .
$this->fq_class_name,
new CodeLocation($this, $this->class, true)
),
$this->source->getSuppressedIssues()
)) {
return false;
}
return null;
} elseif ($method_storage->visibility !== self::VISIBILITY_PUBLIC) {
$cased_method_id = MethodChecker::getCasedMethodId($mentioned_method_id);
if (IssueBuffer::accepts(
new InaccessibleMethod(
'Interface-defined method ' . $cased_method_id .
' must be public in ' . $this->fq_class_name,
new CodeLocation($this, $this->class, true)
),
$this->source->getSuppressedIssues()
)) {
return false;
}
return null;
}
2016-10-15 06:12:57 +02:00
}
}
}
}
}
if (!$class_context) {
$class_context = new Context($this->fq_class_name);
$class_context->count_references = $this->getFileChecker()->project_checker->count_references;
2017-01-07 20:35:07 +01:00
$class_context->parent = $this->parent_fq_class_name;
}
if ($this->leftover_stmts) {
(new StatementsChecker($this))->analyze($this->leftover_stmts, $class_context);
}
foreach ($storage->appearing_property_ids as $property_name => $appearing_property_id) {
if (explode('::', $appearing_property_id)[0] !== $fq_class_name) {
continue;
2017-01-27 16:49:37 +01:00
}
$property_class_name = self::getDeclaringClassForProperty($appearing_property_id);
$property_class_storage = self::$storage[strtolower((string)$property_class_name)];
$property_class_name = self::getDeclaringClassForProperty($appearing_property_id);
$property = $property_class_storage->properties[$property_name];
if ($property->type) {
$property_type = clone $property->type;
if (!$property_type->isMixed() &&
!$property->has_default &&
!$property->type->isNullable()
) {
$property_type->initialized = false;
}
} else {
$property_type = Type::getMixed();
}
if ($property->is_static) {
2017-01-07 20:35:07 +01:00
$property_id = $this->fq_class_name . '::$' . $property_name;
$class_context->vars_in_scope[$property_id] = $property_type;
} else {
$class_context->vars_in_scope['$this->' . $property_name] = $property_type;
}
}
$constructor_checker = null;
foreach ($this->class->stmts as $stmt) {
if ($stmt instanceof PhpParser\Node\Stmt\ClassMethod) {
$method_checker = $this->analyzeClassMethod(
$stmt,
$this,
$class_context,
$global_context,
$update_docblocks
);
if ($stmt->name === '__construct') {
$constructor_checker = $method_checker;
}
2017-01-12 03:37:53 +01:00
} elseif ($stmt instanceof PhpParser\Node\Stmt\TraitUse) {
foreach ($stmt->traits as $trait) {
$fq_trait_name = self::getFQCLNFromNameObject(
$trait,
$this->source
);
2017-01-12 03:37:53 +01:00
$trait_checker = self::$trait_checkers[$fq_trait_name];
2017-01-12 03:37:53 +01:00
foreach ($trait_checker->class->stmts as $trait_stmt) {
if ($trait_stmt instanceof PhpParser\Node\Stmt\ClassMethod) {
$this->analyzeClassMethod(
$trait_stmt,
$trait_checker,
$class_context,
$global_context
);
}
}
}
}
}
$config = Config::getInstance();
if (!$config->excludeIssueInFile('PropertyNotSetInConstructor', $this->getFilePath())) {
$uninitialized_variables = [];
$uninitialized_properties = [];
foreach ($storage->appearing_property_ids as $property_name => $appearing_property_id) {
if (explode('::', $appearing_property_id)[0] !== $fq_class_name) {
continue;
}
$property_class_name = self::getDeclaringClassForProperty($appearing_property_id);
$property_class_storage = self::$storage[strtolower((string)$property_class_name)];
$property_class_name = self::getDeclaringClassForProperty($appearing_property_id);
$property = $property_class_storage->properties[$property_name];
if (!$property->has_default &&
$property->type &&
!$property->type->isMixed() &&
!$property->type->isNullable() &&
!$property->is_static
) {
$uninitialized_variables[] = '$this->' . $property_name;
$uninitialized_properties[$property_name] = $property;
break;
}
}
if ($uninitialized_properties) {
if (isset($storage->methods['__construct']) && $constructor_checker) {
$method_context = clone $class_context;
$method_context->collect_initializations = true;
$method_context->vars_in_scope['$this'] = Type::parseString($fq_class_name);
2017-02-08 08:23:17 +01:00
$method_context->vars_possibly_in_scope['$this'] = true;
2017-02-12 19:16:40 +01:00
$constructor_checker->analyze($method_context, $global_context, true);
foreach ($uninitialized_properties as $property_name => $property) {
if (!isset($method_context->vars_in_scope['$this->' . $property_name])) {
throw new \UnexpectedValueException('$this->' . $property_name . ' should be in scope');
}
$end_type = $method_context->vars_in_scope['$this->' . $property_name];
if (!$end_type->initialized && $property->location) {
$property_id = $this->fq_class_name . '::$' . $property_name;
if (IssueBuffer::accepts(
new PropertyNotSetInConstructor(
'Property ' . $property_id . ' is not defined in constructor of ' .
$this->fq_class_name . ' or in any private methods called in the constructor',
$property->location
),
$this->source->getSuppressedIssues()
)) {
continue;
}
2017-01-12 03:37:53 +01:00
}
}
} elseif (!$this instanceof TraitChecker) {
$first_uninitialized_property = array_shift($uninitialized_properties);
if ($first_uninitialized_property->location) {
if (IssueBuffer::accepts(
new MissingConstructor(
$fq_class_name . ' has an uninitialized variable ' . $uninitialized_variables[0] .
', but no constructor',
$first_uninitialized_property->location
),
$this->source->getSuppressedIssues()
)) {
// fall through
}
}
2017-01-12 03:37:53 +01:00
}
}
}
2017-01-12 03:37:53 +01:00
}
2017-01-12 03:37:53 +01:00
/**
* @param PhpParser\Node\Stmt\ClassMethod $stmt
* @param StatementsSource $source
* @param Context $class_context
* @param Context|null $global_context
* @param boolean $update_docblocks
* @return MethodChecker|null
2017-01-12 03:37:53 +01:00
*/
private function analyzeClassMethod(
2017-01-12 03:37:53 +01:00
PhpParser\Node\Stmt\ClassMethod $stmt,
StatementsSource $source,
Context $class_context,
Context $global_context = null,
$update_docblocks = false
) {
$config = Config::getInstance();
2017-01-08 18:55:32 +01:00
2017-01-12 03:37:53 +01:00
$method_checker = new MethodChecker($stmt, $source);
2017-01-12 03:37:53 +01:00
$actual_method_id = (string)$method_checker->getMethodId();
2017-01-12 03:37:53 +01:00
if ($class_context->self && $class_context->self !== $source->getFQCLN()) {
$analyzed_method_id = (string)$method_checker->getMethodId($class_context->self);
$declaring_method_id = MethodChecker::getDeclaringMethodId($analyzed_method_id);
if ($actual_method_id !== $declaring_method_id) {
return;
}
}
$method_checker->analyze(
clone $class_context,
$global_context ? clone $global_context : null
);
if (!$config->excludeIssueInFile('InvalidReturnType', $source->getFilePath())) {
$return_type_location = null;
2017-01-12 03:37:53 +01:00
$secondary_return_type_location = null;
2017-02-10 02:35:17 +01:00
$actual_method_storage = MethodChecker::getStorage($actual_method_id);
if (!$actual_method_storage->has_template_return_type) {
if ($actual_method_id) {
$return_type_location = MethodChecker::getMethodReturnTypeLocation(
$actual_method_id,
$secondary_return_type_location
);
}
$return_type = MethodChecker::getMethodReturnType($actual_method_id);
$method_checker->verifyReturnType(
$update_docblocks,
$return_type,
$class_context->self,
$return_type_location,
$secondary_return_type_location
);
}
2017-01-12 03:37:53 +01:00
}
return $method_checker;
2017-01-12 03:37:53 +01:00
}
/**
* @param string $method_name
* @param Context $context
* @return void
*/
public function getMethodMutations(
$method_name,
Context $context
) {
foreach ($this->class->stmts as $stmt) {
if ($stmt instanceof PhpParser\Node\Stmt\ClassMethod &&
strtolower($stmt->name) === strtolower($method_name)
) {
2017-01-12 06:54:41 +01:00
$project_checker = $this->getFileChecker()->project_checker;
$method_id = $this->fq_class_name . '::' . $stmt->name;
if ($project_checker->canCache() && isset($project_checker->method_checkers[$method_id])) {
$method_checker = $project_checker->method_checkers[$method_id];
} else {
$method_checker = new MethodChecker($stmt, $this);
if ($project_checker->canCache()) {
$project_checker->method_checkers[$method_id] = $method_checker;
}
}
2017-01-12 03:37:53 +01:00
$method_checker->analyze($context, null, true);
} elseif ($stmt instanceof PhpParser\Node\Stmt\TraitUse) {
foreach ($stmt->traits as $trait) {
2017-01-12 03:37:53 +01:00
$fq_trait_name = self::getFQCLNFromNameObject(
$trait,
2017-01-07 20:35:07 +01:00
$this->source
);
2017-01-12 03:37:53 +01:00
$trait_checker = self::$trait_checkers[$fq_trait_name];
foreach ($trait_checker->class->stmts as $trait_stmt) {
if ($trait_stmt instanceof PhpParser\Node\Stmt\ClassMethod &&
strtolower($trait_stmt->name) === strtolower($method_name)
) {
$method_checker = new MethodChecker($trait_stmt, $trait_checker);
$actual_method_id = (string)$method_checker->getMethodId();
2017-01-12 03:37:53 +01:00
if ($context->self && $context->self !== $this->fq_class_name) {
$analyzed_method_id = (string)$method_checker->getMethodId($context->self);
$declaring_method_id = MethodChecker::getDeclaringMethodId($analyzed_method_id);
if ($actual_method_id !== $declaring_method_id) {
break;
}
}
$method_checker->analyze($context, null, true);
}
}
}
}
}
}
2016-11-02 14:24:36 +01:00
/**
* @param string $parent_class
* @return false|null
*/
private function registerParentClassInfo($parent_class)
2016-11-02 14:24:36 +01:00
{
if (!$this->class instanceof PhpParser\Node\Stmt\Class_) {
throw new \UnexpectedValueException('Cannot register parent class where none exists');
}
if (!$this->class->extends) {
throw new \UnexpectedValueException('Cannot register parent class where none exists');
}
2016-11-08 01:16:51 +01:00
if (self::checkFullyQualifiedClassLikeName(
2016-11-02 14:24:36 +01:00
$parent_class,
$this->getFileChecker(),
new CodeLocation($this, $this->class->extends, true),
2017-02-12 01:30:06 +01:00
$this->getSuppressedIssues()
2016-11-02 14:24:36 +01:00
) === false
) {
return false;
}
// if we don't care the parent class does not exist, exit now.
if (!ClassLikeChecker::classOrInterfaceExists($parent_class, $this->getFileChecker())) {
return;
}
2017-01-07 20:35:07 +01:00
self::$class_extends[$this->fq_class_name] = self::$class_extends[$this->parent_fq_class_name];
self::$class_extends[$this->fq_class_name][$this->parent_fq_class_name] = true;
2016-11-02 14:24:36 +01:00
$this->registerInheritedMethods($this->fq_class_name, $parent_class);
$this->registerInheritedProperties($this->fq_class_name, $parent_class);
2016-11-02 14:24:36 +01:00
2017-01-09 05:58:06 +01:00
$storage = self::$storage[strtolower($this->fq_class_name)];
2016-11-02 14:24:36 +01:00
2017-01-09 05:58:06 +01:00
$parent_storage = self::$storage[strtolower($parent_class)];
2016-11-02 14:24:36 +01:00
$storage->class_implements += $parent_storage->class_implements;
2016-11-04 01:51:56 +01:00
$storage->public_class_constants = $parent_storage->public_class_constants;
$storage->protected_class_constants = $parent_storage->protected_class_constants;
2016-11-04 01:51:56 +01:00
$storage->parent_classes = array_merge([strtolower($parent_class)], $parent_storage->parent_classes);
$storage->used_traits = $parent_storage->used_traits;
2017-01-07 20:35:07 +01:00
FileChecker::addFileInheritanceToClass(
$this->source->getFilePath(),
2017-01-07 20:35:07 +01:00
$parent_class
);
2016-11-04 01:51:56 +01:00
return null;
2016-11-02 14:24:36 +01:00
}
2016-11-04 01:51:56 +01:00
/**
2016-11-05 01:10:59 +01:00
* @param PhpParser\Node\Stmt\ClassMethod $stmt
* @param Context $class_context
* @return void
2016-11-04 01:51:56 +01:00
*/
private function visitClassMethod(
2016-11-04 01:51:56 +01:00
PhpParser\Node\Stmt\ClassMethod $stmt,
Context $class_context
2016-11-04 01:51:56 +01:00
) {
$method_name = strtolower($stmt->name);
$method_id = $this->fq_class_name . '::' . $method_name;
2017-01-09 05:58:06 +01:00
$class_storage = self::$storage[strtolower($this->fq_class_name)];
2016-11-02 14:24:36 +01:00
2017-01-07 20:35:07 +01:00
if (!isset($class_storage->methods[$method_name])) {
2017-02-02 06:45:23 +01:00
FunctionLikeChecker::register($stmt, $this);
}
2016-11-02 14:24:36 +01:00
if (!$stmt->isAbstract() && $class_context->self) {
2016-12-31 17:49:04 +01:00
$implemented_method_id =
$class_context->self . '::' . strtolower($this->getMappedMethodName(strtolower($stmt->name)));
2016-11-02 07:29:00 +01:00
MethodChecker::setDeclaringMethodId(
2016-12-31 17:49:04 +01:00
$implemented_method_id,
2016-11-02 07:29:00 +01:00
$method_id
);
2016-12-31 17:49:04 +01:00
// set a different apparent method if we're in a trait checker
MethodChecker::setAppearingMethodId(
$implemented_method_id,
$this instanceof TraitChecker ? $implemented_method_id : $method_id
);
2016-11-02 14:24:36 +01:00
}
}
2016-11-04 01:51:56 +01:00
/**
* @param PhpParser\Node\Stmt\TraitUse $stmt
* @param Context $class_context
* @return false|null
*/
private function visitTraitUse(
2016-11-04 01:51:56 +01:00
PhpParser\Node\Stmt\TraitUse $stmt,
Context $class_context
2016-11-04 01:51:56 +01:00
) {
2016-11-02 14:24:36 +01:00
$method_map = [];
foreach ($stmt->adaptations as $adaptation) {
if ($adaptation instanceof PhpParser\Node\Stmt\TraitUseAdaptation\Alias) {
if ($adaptation->method && $adaptation->newName) {
$method_map[strtolower($adaptation->method)] = strtolower($adaptation->newName);
}
}
}
foreach ($stmt->traits as $trait) {
2016-11-08 01:16:51 +01:00
$trait_name = self::getFQCLNFromNameObject(
2016-11-02 07:29:00 +01:00
$trait,
2017-01-07 20:35:07 +01:00
$this->source
2016-11-02 07:29:00 +01:00
);
2016-11-02 14:24:36 +01:00
if (!TraitChecker::traitExists($trait_name, $this->getFileChecker())) {
2016-11-02 14:24:36 +01:00
if (IssueBuffer::accepts(
new UndefinedTrait(
'Trait ' . $trait_name . ' does not exist',
new CodeLocation($this, $trait)
),
2017-01-07 20:35:07 +01:00
$this->source->getSuppressedIssues()
2016-11-02 14:24:36 +01:00
)) {
return false;
}
} else {
if (!TraitChecker::hasCorrectCase($trait_name, $this->getFileChecker())) {
2016-11-02 14:24:36 +01:00
if (IssueBuffer::accepts(
2016-11-04 01:51:56 +01:00
new UndefinedTrait(
'Trait ' . $trait_name . ' has wrong casing',
new CodeLocation($this, $trait)
2016-11-04 01:51:56 +01:00
),
2017-01-07 20:35:07 +01:00
$this->source->getSuppressedIssues()
2016-11-02 14:24:36 +01:00
)) {
return false;
}
continue;
}
$trait_checker = self::$trait_checkers[$trait_name];
2016-11-02 14:24:36 +01:00
$trait_checker->setMethodMap($method_map);
$trait_checker->visit($class_context);
2017-01-07 20:35:07 +01:00
self::registerInheritedProperties($this->fq_class_name, $trait_name);
2016-12-12 19:50:46 +01:00
ClassLikeChecker::registerTraitUse($this->fq_class_name, $trait_name);
2016-11-04 01:51:56 +01:00
FileChecker::addFileInheritanceToClass(
$this->source->getFilePath(),
2016-11-05 01:49:04 +01:00
$trait_name
2016-11-04 01:51:56 +01:00
);
2016-11-02 14:24:36 +01:00
}
}
2016-11-04 01:51:56 +01:00
return null;
2016-11-02 14:24:36 +01:00
}
2016-11-04 01:51:56 +01:00
/**
2016-11-05 01:10:59 +01:00
* @param PhpParser\Node\Stmt\Property $stmt
* @param Context $class_context
* @param Config $config
* @return void
2016-11-04 01:51:56 +01:00
*/
private function visitPropertyDeclaration(
2016-11-04 01:51:56 +01:00
PhpParser\Node\Stmt\Property $stmt,
Context $class_context,
Config $config
2016-11-04 01:51:56 +01:00
) {
2016-11-02 14:24:36 +01:00
$comment = $stmt->getDocComment();
$type_in_comment = null;
2017-01-09 05:58:06 +01:00
$storage = self::$storage[strtolower($this->fq_class_name)];
2016-11-02 14:24:36 +01:00
if ($comment && $config->use_docblock_types) {
2016-11-21 05:31:10 +01:00
try {
2017-02-10 06:14:44 +01:00
$type_in_comment = CommentChecker::getTypeFromComment(
(string)$comment,
null,
$this,
null,
$storage->template_types
);
} catch (DocblockParseException $e) {
2016-11-21 05:31:10 +01:00
if (IssueBuffer::accepts(
new InvalidDocblock(
2016-11-21 05:45:10 +01:00
(string)$e->getMessage(),
new CodeLocation($this, $this->class, true)
2016-11-21 05:31:10 +01:00
)
)) {
// fall through
2016-11-21 05:31:10 +01:00
}
}
} elseif (!$comment) {
2016-11-02 14:24:36 +01:00
if (IssueBuffer::accepts(
new MissingPropertyType(
'Property ' . $this->fq_class_name . '::$' . $stmt->props[0]->name . ' does not have a ' .
2016-11-04 01:51:56 +01:00
'declared type',
new CodeLocation($this, $stmt)
2016-11-02 14:24:36 +01:00
),
2017-01-07 20:35:07 +01:00
$this->source->getSuppressedIssues()
2016-11-02 14:24:36 +01:00
)) {
// fall through
}
}
$property_group_type = $type_in_comment ?: null;
2016-11-02 14:24:36 +01:00
foreach ($stmt->props as $property) {
if (!$property_group_type) {
if (!$property->default || !$config->use_property_default_for_type) {
2016-11-02 14:24:36 +01:00
$property_type = false;
} else {
$property_type = StatementsChecker::getSimpleType($property->default) ?: Type::getMixed();
}
} else {
$property_type = count($stmt->props) === 1 ? $property_group_type : clone $property_group_type;
}
$storage->properties[$property->name] = new PropertyStorage();
$storage->properties[$property->name]->is_static = (bool)$stmt->isStatic();
$storage->properties[$property->name]->type = $property_type;
$storage->properties[$property->name]->location = new CodeLocation($this, $property);
$storage->properties[$property->name]->has_default = $property->default ? true : false;
if ($stmt->isPublic()) {
$storage->properties[$property->name]->visibility = self::VISIBILITY_PUBLIC;
} elseif ($stmt->isProtected()) {
$storage->properties[$property->name]->visibility = self::VISIBILITY_PROTECTED;
} elseif ($stmt->isPrivate()) {
$storage->properties[$property->name]->visibility = self::VISIBILITY_PRIVATE;
2016-11-02 14:24:36 +01:00
}
$property_id = $this->fq_class_name . '::$' . $property->name;
$implemented_property_id = $class_context->self . '::$' . $property->name;
$storage->declaring_property_ids[$property->name] = $property_id;
$storage->appearing_property_ids[$property->name] = $this instanceof TraitChecker
? $implemented_property_id
: $property_id;
if (!$stmt->isPrivate()) {
$storage->inheritable_property_ids[$property->name] = $property_id;
}
2016-11-02 14:24:36 +01:00
}
}
2016-11-04 01:51:56 +01:00
/**
* @param PhpParser\Node\Stmt\ClassConst $stmt
* @param Context $class_context
* @param Config $config
* @return void
*/
private function visitClassConstDeclaration(
2016-11-04 01:51:56 +01:00
PhpParser\Node\Stmt\ClassConst $stmt,
Context $class_context,
Config $config
) {
2016-11-02 14:24:36 +01:00
$comment = $stmt->getDocComment();
$type_in_comment = null;
2017-01-09 05:58:06 +01:00
$storage = self::$storage[strtolower((string)$class_context->self)];
2016-11-02 14:24:36 +01:00
if ($comment && $config->use_docblock_types && count($stmt->consts) === 1) {
$type_in_comment = CommentChecker::getTypeFromComment((string) $comment, null, $this);
}
$const_type = $type_in_comment ? $type_in_comment : Type::getMixed();
foreach ($stmt->consts as $const) {
if ($stmt->isProtected()) {
$storage->protected_class_constants[$const->name] = $const_type;
} elseif ($stmt->isPrivate()) {
$storage->private_class_constants[$const->name] = $const_type;
} else {
$storage->public_class_constants[$const->name] = $const_type;
}
2016-11-02 14:24:36 +01:00
}
}
/**
2016-09-09 15:13:41 +02:00
* Check whether a class/interface exists
*
* @param string $fq_class_name
* @param FileChecker $file_checker
* @return bool
*/
public static function classOrInterfaceExists(
$fq_class_name,
FileChecker $file_checker
) {
return ClassChecker::classExists($fq_class_name, $file_checker) ||
InterfaceChecker::interfaceExists($fq_class_name, $file_checker);
2016-07-25 05:38:52 +02:00
}
/**
* @param string $fq_class_name
* @param string $possible_parent
2016-07-25 05:38:52 +02:00
* @return bool
*/
public static function classExtendsOrImplements(
$fq_class_name,
$possible_parent
) {
return ClassChecker::classExtends($fq_class_name, $possible_parent) ||
ClassChecker::classImplements($fq_class_name, $possible_parent);
2016-07-25 05:38:52 +02:00
}
/**
* @param string $fq_class_name
* @param FileChecker $file_checker
* @param CodeLocation $code_location
2016-11-05 01:10:59 +01:00
* @param array<string> $suppressed_issues
2016-07-25 05:38:52 +02:00
* @return bool|null
2016-04-27 00:42:48 +02:00
*/
2016-11-08 01:16:51 +01:00
public static function checkFullyQualifiedClassLikeName(
$fq_class_name,
FileChecker $file_checker,
CodeLocation $code_location,
2017-02-12 01:30:06 +01:00
array $suppressed_issues
2016-11-02 07:29:00 +01:00
) {
if (empty($fq_class_name)) {
2016-04-12 17:59:27 +02:00
throw new \InvalidArgumentException('$class cannot be empty');
}
$fq_class_name = preg_replace('/^\\\/', '', $fq_class_name);
2016-03-17 19:06:01 +01:00
if (in_array($fq_class_name, ['callable', 'iterable'])) {
return true;
}
$class_exists = ClassChecker::classExists($fq_class_name, $file_checker);
$interface_exists = InterfaceChecker::interfaceExists($fq_class_name, $file_checker);
if (!$class_exists && !$interface_exists) {
2016-06-26 21:18:40 +02:00
if (IssueBuffer::accepts(
2016-11-02 07:29:00 +01:00
new UndefinedClass(
'Class or interface ' . $fq_class_name . ' does not exist',
$code_location
2016-11-02 07:29:00 +01:00
),
$suppressed_issues
)) {
return false;
}
2016-11-02 07:29:00 +01:00
return null;
2016-01-08 00:28:27 +01:00
}
if (($class_exists && !ClassChecker::hasCorrectCasing($fq_class_name, $file_checker)) ||
2017-01-09 05:58:06 +01:00
($interface_exists && !InterfaceChecker::hasCorrectCasing($fq_class_name, $file_checker))
) {
$file_checker->evaluateClassLike($fq_class_name);
if (ClassLikeChecker::isUserDefined($fq_class_name)) {
if (IssueBuffer::accepts(
new InvalidClass(
'Class or interface ' . $fq_class_name . ' has wrong casing',
$code_location
),
$suppressed_issues
)) {
return false;
}
2016-08-10 07:09:47 +02:00
}
2016-03-17 19:06:01 +01:00
}
2016-12-08 04:38:57 +01:00
FileChecker::addFileReferenceToClass(
$code_location->file_path,
2016-12-08 04:38:57 +01:00
$fq_class_name
);
return true;
2016-01-08 00:28:27 +01:00
}
/**
2016-11-02 07:29:00 +01:00
* Gets the fully-qualified class name from a Name object
*
* @param PhpParser\Node\Name $class_name
2017-01-07 20:35:07 +01:00
* @param StatementsSource $source
* @return string
*/
2016-11-08 01:16:51 +01:00
public static function getFQCLNFromNameObject(
2016-11-02 07:29:00 +01:00
PhpParser\Node\Name $class_name,
2017-01-07 20:35:07 +01:00
StatementsSource $source
2016-11-02 07:29:00 +01:00
) {
if ($class_name->parts == ['self']) {
return 'self';
}
2016-01-08 00:28:27 +01:00
if ($class_name instanceof PhpParser\Node\Name\FullyQualified) {
return implode('\\', $class_name->parts);
2016-01-08 00:28:27 +01:00
}
return self::getFQCLNFromString(
implode('\\', $class_name->parts),
2017-01-07 20:35:07 +01:00
$source
);
2016-01-08 00:28:27 +01:00
}
2016-10-12 07:38:29 +02:00
/**
* @param string $class
2017-01-07 20:35:07 +01:00
* @param StatementsSource $source
2016-10-12 07:38:29 +02:00
* @return string
*/
2017-01-07 20:35:07 +01:00
public static function getFQCLNFromString($class, StatementsSource $source)
{
2016-04-12 17:59:27 +02:00
if (empty($class)) {
throw new \InvalidArgumentException('$class cannot be empty');
}
2016-01-08 00:28:27 +01:00
if ($class[0] === '\\') {
return substr($class, 1);
2016-01-08 00:28:27 +01:00
}
2017-01-07 20:35:07 +01:00
$imported_namespaces = $source->getAliasedClasses();
2016-01-08 00:28:27 +01:00
if (strpos($class, '\\') !== false) {
$class_parts = explode('\\', $class);
$first_namespace = array_shift($class_parts);
if (isset($imported_namespaces[strtolower($first_namespace)])) {
return $imported_namespaces[strtolower($first_namespace)] . '\\' . implode('\\', $class_parts);
2016-01-08 00:28:27 +01:00
}
} elseif (isset($imported_namespaces[strtolower($class)])) {
return $imported_namespaces[strtolower($class)];
2016-01-08 00:28:27 +01:00
}
2017-01-07 20:35:07 +01:00
$namespace = $source->getNamespace();
return ($namespace ? $namespace . '\\' : '') . $class;
2016-01-08 00:28:27 +01:00
}
2016-11-02 07:29:00 +01:00
/**
* @return string
*/
public function getNamespace()
{
2017-01-07 20:35:07 +01:00
return $this->source->getNamespace();
}
2016-11-13 00:51:48 +01:00
/**
* @return array<string, string>
*/
public function getAliasedClassesFlipped()
{
2016-11-13 17:24:46 +01:00
if ($this->source instanceof NamespaceChecker || $this->source instanceof FileChecker) {
return $this->source->getAliasedClassesFlipped();
}
return [];
2016-11-13 00:51:48 +01:00
}
2016-11-02 07:29:00 +01:00
/**
* @return string
*/
2016-11-08 01:16:51 +01:00
public function getFQCLN()
{
return $this->fq_class_name;
}
2016-11-02 07:29:00 +01:00
/**
* @return string|null
2016-11-02 07:29:00 +01:00
*/
public function getClassName()
{
return $this->class->name;
}
/**
* @return string|null
*/
2017-01-07 20:35:07 +01:00
public function getParentFQCLN()
{
2017-01-07 20:35:07 +01:00
return $this->parent_fq_class_name;
}
2016-04-27 00:42:48 +02:00
/**
* @return bool
*/
public function isStatic()
{
return false;
}
2016-11-02 07:29:00 +01:00
/**
* @return bool
*/
public function hasCustomGet()
{
return $this->has_custom_get;
}
2016-11-02 14:24:36 +01:00
/**
* @param string $class_name
* @param ReflectionClass $reflected_class
2017-01-09 05:58:06 +01:00
* @param ProjectChecker $project_checker
2016-11-02 14:24:36 +01:00
* @return void
*/
public static function registerReflectedClass(
$class_name,
2017-01-09 05:58:06 +01:00
ReflectionClass $reflected_class,
ProjectChecker $project_checker
) {
$class_name = $reflected_class->name;
if ($class_name === 'LibXMLError') {
$class_name = 'libXMLError';
}
2017-01-09 05:58:06 +01:00
$class_name_lower = strtolower($class_name);
if (isset(self::$storage[$class_name_lower]) && self::$storage[$class_name_lower]->reflected) {
return;
}
$reflected_parent_class = $reflected_class->getParentClass();
2017-01-09 05:58:06 +01:00
$storage = self::$storage[$class_name_lower] = new ClassLikeStorage();
$storage->name = $class_name;
$storage->abstract = $reflected_class->isAbstract();
self::$class_extends[$class_name] = [];
if ($reflected_parent_class) {
$parent_class_name = $reflected_parent_class->getName();
2017-01-09 05:58:06 +01:00
self::registerReflectedClass($parent_class_name, $reflected_parent_class, $project_checker);
2017-01-09 05:58:06 +01:00
$parent_storage = self::$storage[strtolower($parent_class_name)];
self::$class_extends[$class_name] = self::$class_extends[$parent_class_name];
self::$class_extends[$class_name][$parent_class_name] = true;
self::registerInheritedMethods($class_name, $parent_class_name);
self::registerInheritedProperties($class_name, $parent_class_name);
$storage->class_implements = $parent_storage->class_implements;
$storage->public_class_constants = $parent_storage->public_class_constants;
$storage->protected_class_constants = $parent_storage->protected_class_constants;
$storage->parent_classes = array_merge([strtolower($parent_class_name)], $parent_storage->parent_classes);
$storage->used_traits = $parent_storage->used_traits;
2016-11-02 14:24:36 +01:00
}
2016-11-02 14:24:36 +01:00
$class_properties = $reflected_class->getProperties();
$public_mapped_properties = self::inPropertyMap($class_name)
? self::getPropertyMap()[strtolower($class_name)]
: [];
2016-11-02 14:24:36 +01:00
/** @var \ReflectionProperty $class_property */
foreach ($class_properties as $class_property) {
$property_name = $class_property->getName();
$storage->properties[$property_name] = new PropertyStorage();
$storage->properties[$property_name]->type = Type::getMixed();
2016-11-02 14:24:36 +01:00
if ($class_property->isStatic()) {
$storage->properties[$property_name]->is_static = true;
}
if ($class_property->isPublic()) {
$storage->properties[$property_name]->visibility = self::VISIBILITY_PUBLIC;
} elseif ($class_property->isProtected()) {
$storage->properties[$property_name]->visibility = self::VISIBILITY_PROTECTED;
} elseif ($class_property->isPrivate()) {
$storage->properties[$property_name]->visibility = self::VISIBILITY_PRIVATE;
2016-08-07 02:27:13 +02:00
}
$property_id = (string)$class_property->class . '::$' . $property_name;
$storage->declaring_property_ids[$property_name] = $property_id;
$storage->appearing_property_ids[$property_name] = $property_id;
if (!$class_property->isPrivate()) {
$storage->inheritable_property_ids[$property_name] = $property_id;
}
2016-11-02 14:24:36 +01:00
}
// have to do this separately as there can be new properties here
foreach ($public_mapped_properties as $property_name => $type) {
if (!isset($storage->properties[$property_name])) {
$storage->properties[$property_name] = new PropertyStorage();
$storage->properties[$property_name]->visibility = self::VISIBILITY_PUBLIC;
$property_id = $class_name . '::$' . $property_name;
$storage->declaring_property_ids[$property_name] = $property_id;
$storage->appearing_property_ids[$property_name] = $property_id;
$storage->inheritable_property_ids[$property_name] = $property_id;
}
$storage->properties[$property_name]->type = Type::parseString($type);
2016-11-02 14:24:36 +01:00
}
2016-12-17 01:22:30 +01:00
/** @var array<string, int|string|float|null|array> */
2016-11-02 14:24:36 +01:00
$class_constants = $reflected_class->getConstants();
2016-11-02 14:24:36 +01:00
foreach ($class_constants as $name => $value) {
$storage->public_class_constants[$name] = self::getTypeFromValue($value);
2016-11-02 14:24:36 +01:00
}
2016-08-14 18:06:53 +02:00
if ($reflected_class->isInterface()) {
2017-01-09 05:58:06 +01:00
$project_checker->addFullyQualifiedInterfaceName($class_name);
} elseif ($reflected_class->isTrait()) {
$project_checker->addFullyQualifiedTraitName($class_name);
} else {
$project_checker->addFullyQualifiedClassName($class_name);
2016-11-02 14:24:36 +01:00
}
2016-08-15 05:24:16 +02:00
$storage->registered = true;
2016-11-04 01:51:56 +01:00
$reflection_methods = $reflected_class->getMethods(
ReflectionMethod::IS_PUBLIC | ReflectionMethod::IS_PROTECTED
);
2016-08-15 05:24:16 +02:00
2017-02-10 02:35:17 +01:00
if ($class_name_lower === 'generator') {
$storage->template_types = ['TKey' => 'mixed', 'TValue' => 'mixed'];
}
$interfaces = $reflected_class->getInterfaces();
/** @var \ReflectionClass $interface */
foreach ($interfaces as $interface) {
$interface_name = $interface->getName();
2017-01-09 05:58:06 +01:00
self::registerReflectedClass($interface_name, $interface, $project_checker);
if ($reflected_class->isInterface()) {
$storage->parent_interfaces[] = $interface_name;
} else {
$storage->class_implements[strtolower($interface_name)] = $interface_name;
}
}
2016-11-21 04:40:19 +01:00
/** @var \ReflectionMethod $reflection_method */
2016-11-02 14:24:36 +01:00
foreach ($reflection_methods as $reflection_method) {
MethodChecker::extractReflectionMethodInfo($reflection_method);
2016-08-15 06:31:34 +02:00
2016-11-02 14:24:36 +01:00
if ($reflection_method->class !== $class_name) {
MethodChecker::setDeclaringMethodId(
2016-12-24 12:03:55 +01:00
$class_name . '::' . strtolower($reflection_method->name),
$reflection_method->class . '::' . strtolower($reflection_method->name)
2016-11-02 14:24:36 +01:00
);
2016-08-15 05:24:16 +02:00
MethodChecker::setAppearingMethodId(
$class_name . '::' . strtolower($reflection_method->name),
$reflection_method->class . '::' . strtolower($reflection_method->name)
);
2016-08-15 05:24:16 +02:00
continue;
2016-11-02 14:24:36 +01:00
}
}
}
2016-11-02 07:29:00 +01:00
/**
* @param string $fq_class_name
2016-11-02 07:29:00 +01:00
* @param string $parent_class
* @return void
*/
protected static function registerInheritedMethods($fq_class_name, $parent_class)
2016-08-15 06:31:34 +02:00
{
2017-01-09 05:58:06 +01:00
$parent_storage = self::$storage[strtolower($parent_class)];
$storage = self::$storage[strtolower($fq_class_name)];
// register where they appear (can never be in a trait)
foreach ($parent_storage->appearing_method_ids as $method_name => $appearing_method_id) {
$parent_method_id = $parent_class . '::' . $method_name;
2016-12-31 17:49:04 +01:00
/** @var string */
$appearing_method_id = MethodChecker::getAppearingMethodId($parent_method_id);
$implemented_method_id = $fq_class_name . '::' . $method_name;
$storage->appearing_method_ids[$method_name] = $appearing_method_id;
}
// register where they're declared
foreach ($parent_storage->declaring_method_ids as $method_name => $declaring_method_id) {
2016-08-15 20:20:06 +02:00
$parent_method_id = $parent_class . '::' . $method_name;
2016-11-07 05:29:54 +01:00
/** @var string */
2016-10-15 06:12:57 +02:00
$declaring_method_id = MethodChecker::getDeclaringMethodId($parent_method_id);
$implemented_method_id = $fq_class_name . '::' . $method_name;
2016-08-15 06:31:34 +02:00
$storage->declaring_method_ids[$method_name] = $declaring_method_id;
MethodChecker::setOverriddenMethodId($implemented_method_id, $declaring_method_id);
2016-08-15 06:31:34 +02:00
}
}
2016-10-12 07:38:29 +02:00
/**
* @param string $fq_class_name
* @param string $parent_class
* @return void
2016-10-12 07:38:29 +02:00
*/
protected static function registerInheritedProperties($fq_class_name, $parent_class)
2016-08-07 02:27:13 +02:00
{
2017-01-09 05:58:06 +01:00
$parent_storage = self::$storage[strtolower($parent_class)];
$storage = self::$storage[strtolower($fq_class_name)];
2016-11-02 14:24:36 +01:00
// register where they appear (can never be in a trait)
foreach ($parent_storage->appearing_property_ids as $property_name => $appearing_property_id) {
$storage->appearing_property_ids[$property_name] = $appearing_property_id;
2016-08-07 02:27:13 +02:00
}
2016-11-02 14:24:36 +01:00
// register where they're declared
foreach ($parent_storage->declaring_property_ids as $property_name => $declaring_property_id) {
$storage->declaring_property_ids[$property_name] = $declaring_property_id;
2016-08-07 02:27:13 +02:00
}
// register where they're declared
foreach ($parent_storage->inheritable_property_ids as $property_name => $inheritable_property_id) {
$storage->inheritable_property_ids[$property_name] = $inheritable_property_id;
}
2016-08-07 02:27:13 +02:00
}
2016-10-12 07:38:29 +02:00
/**
* @param string $class_name
* @param mixed $visibility
* @return array<string, PropertyStorage>
2016-10-12 07:38:29 +02:00
*/
2017-02-12 01:30:06 +01:00
public static function getPropertiesForClass($class_name, $visibility)
2016-08-07 02:27:13 +02:00
{
2017-01-09 05:58:06 +01:00
$class_name = strtolower($class_name);
if (!isset(self::$storage[$class_name])) {
throw new \UnexpectedValueException('$storage should not be null for ' . $class_name);
2016-08-07 02:27:13 +02:00
}
$storage = self::$storage[$class_name];
$properties = [];
2016-11-02 14:24:36 +01:00
foreach ($storage->properties as $property_name => $property) {
if (!$property->is_static) {
if ($visibility === ReflectionProperty::IS_PRIVATE ||
$property->visibility === ClassLikeChecker::VISIBILITY_PUBLIC ||
($property->visibility === ClassLikeChecker::VISIBILITY_PROTECTED &&
$visibility === ReflectionProperty::IS_PROTECTED)
) {
$properties[$property_name] = $property;
}
}
2016-08-07 02:27:13 +02:00
}
2016-07-23 16:58:53 +02:00
return $properties;
}
2016-04-12 01:13:50 +02:00
2016-11-21 03:49:06 +01:00
/**
* Gets the Psalm type from a particular value
*
* @param mixed $value
* @return Type\Union
*/
public static function getTypeFromValue($value)
{
switch (gettype($value)) {
case 'boolean':
return Type::getBool();
case 'integer':
return Type::getInt();
case 'double':
return Type::getFloat();
case 'string':
return Type::getString();
case 'array':
return Type::getArray();
case 'NULL':
return Type::getNull();
default:
return Type::getMixed();
}
}
2016-10-12 07:38:29 +02:00
/**
* @param string $class_name
* @param mixed $visibility
* @return array<string,Type\Union>
*/
public static function getConstantsForClass($class_name, $visibility)
{
2017-01-09 05:58:06 +01:00
$class_name = strtolower($class_name);
$class_name = strtolower($class_name);
if (!isset(self::$storage[$class_name])) {
throw new \UnexpectedValueException('$storage should not be null for ' . $class_name);
}
$storage = self::$storage[$class_name];
if ($visibility === ReflectionProperty::IS_PUBLIC) {
return $storage->public_class_constants;
}
if ($visibility === ReflectionProperty::IS_PROTECTED) {
return array_merge(
$storage->public_class_constants,
$storage->protected_class_constants
);
}
if ($visibility === ReflectionProperty::IS_PRIVATE) {
return array_merge(
$storage->public_class_constants,
$storage->protected_class_constants,
$storage->private_class_constants
);
}
throw new \InvalidArgumentException('Must specify $visibility');
}
2016-11-02 07:29:00 +01:00
/**
* @param string $class_name
* @param string $const_name
* @param Type\Union $type
* @param int $visibility
2016-11-02 07:29:00 +01:00
* @return void
*/
public static function setConstantType($class_name, $const_name, Type\Union $type, $visibility)
{
2017-01-09 05:58:06 +01:00
$storage = self::$storage[strtolower($class_name)];
if ($visibility === ReflectionProperty::IS_PUBLIC) {
$storage->public_class_constants[$const_name] = $type;
} elseif ($visibility === ReflectionProperty::IS_PROTECTED) {
$storage->protected_class_constants[$const_name] = $type;
} elseif ($visibility === ReflectionProperty::IS_PRIVATE) {
$storage->private_class_constants[$const_name] = $type;
}
}
/**
* Whether or not a given property exists
*
* @param string $property_id
* @return bool
*/
public static function propertyExists($property_id)
{
// remove trailing backslash if it exists
$property_id = preg_replace('/^\\\\/', '', $property_id);
list($fq_class_name, $property_name) = explode('::$', $property_id);
2017-01-09 05:58:06 +01:00
if (!isset(self::$storage[strtolower($fq_class_name)])) {
throw new \UnexpectedValueException(
'Storage not defined for ' . $fq_class_name
);
}
2017-01-09 05:58:06 +01:00
$class_storage = self::$storage[strtolower($fq_class_name)];
if (isset($class_storage->declaring_property_ids[$property_name])) {
return true;
}
return false;
}
/**
* @param string $property_id
* @param string|null $calling_context
* @param StatementsSource $source
* @param CodeLocation $code_location
* @param array $suppressed_issues
* @return false|null
*/
public static function checkPropertyVisibility(
$property_id,
$calling_context,
StatementsSource $source,
CodeLocation $code_location,
array $suppressed_issues
) {
$declaring_property_class = self::getDeclaringClassForProperty($property_id);
$appearing_property_class = self::getAppearingClassForProperty($property_id);
if (!$declaring_property_class || !$appearing_property_class) {
throw new \UnexpectedValueException(
'Appearing/Declaring classes are not defined for ' . $property_id
);
}
2017-02-11 01:10:13 +01:00
list(, $property_name) = explode('::$', (string)$property_id);
// if the calling class is the same, we know the property exists, so it must be visible
if ($appearing_property_class === $calling_context) {
return null;
}
if ($source->getSource() instanceof TraitChecker && $declaring_property_class === $source->getFQCLN()) {
return null;
}
2017-01-09 05:58:06 +01:00
$class_storage = self::$storage[strtolower($declaring_property_class)];
if (!$class_storage) {
throw new \UnexpectedValueException('$class_storage should not be null for ' . $declaring_property_class);
}
$storage = $class_storage->properties[$property_name];
if (!$storage) {
throw new \UnexpectedValueException('$storage should not be null for ' . $property_id);
}
switch ($storage->visibility) {
case self::VISIBILITY_PUBLIC:
return null;
case self::VISIBILITY_PRIVATE:
if (!$calling_context || $appearing_property_class !== $calling_context) {
if (IssueBuffer::accepts(
new InaccessibleProperty(
'Cannot access private property ' . $property_id . ' from context ' . $calling_context,
$code_location
),
$suppressed_issues
)) {
return false;
}
}
return null;
case self::VISIBILITY_PROTECTED:
if ($appearing_property_class === $calling_context) {
return null;
}
if (!$calling_context) {
if (IssueBuffer::accepts(
new InaccessibleProperty(
'Cannot access protected property ' . $property_id,
$code_location
),
$suppressed_issues
)) {
return false;
}
return null;
}
if (ClassChecker::classExtends($appearing_property_class, $calling_context)) {
return null;
}
if (!ClassChecker::classExtends($calling_context, $appearing_property_class)) {
if (IssueBuffer::accepts(
new InaccessibleProperty(
'Cannot access protected property ' . $property_id . ' from context ' . $calling_context,
$code_location
),
$suppressed_issues
)) {
return false;
}
}
}
return null;
}
/**
* @param string $property_id
* @return string|null
*/
public static function getDeclaringClassForProperty($property_id)
{
list($fq_class_name, $property_name) = explode('::$', $property_id);
2017-01-09 05:58:06 +01:00
$fq_class_name = strtolower($fq_class_name);
if (isset(ClassLikeChecker::$storage[$fq_class_name]->declaring_property_ids[$property_name])) {
$declaring_property_id = ClassLikeChecker::$storage[$fq_class_name]->declaring_property_ids[$property_name];
return explode('::$', $declaring_property_id)[0];
}
}
/**
* Get the class this property appears in (vs is declared in, which could give a trait)
*
* @param string $property_id
* @return string|null
*/
public static function getAppearingClassForProperty($property_id)
{
list($fq_class_name, $property_name) = explode('::$', $property_id);
2017-01-09 05:58:06 +01:00
$fq_class_name = strtolower($fq_class_name);
if (isset(ClassLikeChecker::$storage[$fq_class_name]->appearing_property_ids[$property_name])) {
$appearing_property_id = ClassLikeChecker::$storage[$fq_class_name]->appearing_property_ids[$property_name];
return explode('::$', $appearing_property_id)[0];
}
}
2016-11-02 07:29:00 +01:00
/**
* @param string $method_name
2016-12-24 12:03:55 +01:00
* @return string
2016-11-02 07:29:00 +01:00
*/
2016-08-15 20:20:06 +02:00
protected function getMappedMethodName($method_name)
{
return $method_name;
}
2016-11-02 07:29:00 +01:00
/**
* @param string $file_path
* @return array<string>
2016-11-02 07:29:00 +01:00
*/
public static function getClassesForFile($file_path)
{
return isset(self::$file_classes[$file_path]) ? array_unique(self::$file_classes[$file_path]) : [];
}
2016-10-30 16:14:36 +01:00
/**
* @param string $fq_class_name
2016-10-30 16:14:36 +01:00
* @return boolean
*/
public static function isUserDefined($fq_class_name)
{
2017-01-09 05:58:06 +01:00
return self::$storage[strtolower($fq_class_name)]->user_defined;
}
/**
* Gets the method/function call map
*
* @return array<string, array<string, string>>
* @psalm-suppress MixedInferredReturnType as the use of require buggers things up
2017-01-09 05:58:06 +01:00
* @psalm-suppress MixedAssignment
*/
public static function getPropertyMap()
{
if (self::$property_map !== null) {
return self::$property_map;
}
/** @var array<string, array<string, string>> */
$property_map = require_once(__DIR__.'/../PropertyMap.php');
self::$property_map = [];
foreach ($property_map as $key => $value) {
$cased_key = strtolower($key);
self::$property_map[$cased_key] = $value;
}
return self::$property_map;
}
2016-11-02 07:29:00 +01:00
/**
* @param string $class_name
* @return bool
*/
public static function inPropertyMap($class_name)
{
return isset(self::getPropertyMap()[strtolower($class_name)]);
}
2016-12-12 19:50:46 +01:00
/**
* @param string $fq_class_name
* @param string $fq_trait_name
* @return void
*/
public static function registerTraitUse($fq_class_name, $fq_trait_name)
{
2017-01-09 05:58:06 +01:00
$storage = self::$storage[strtolower($fq_class_name)];
$storage->used_traits[$fq_trait_name] = true;
2016-12-12 19:50:46 +01:00
}
2016-11-02 07:29:00 +01:00
/**
* @return void
*/
2016-07-25 00:02:03 +02:00
public static function clearCache()
{
self::$file_classes = [];
2016-10-21 00:12:13 +02:00
self::$trait_checkers = [];
self::$class_checkers = [];
2016-07-25 00:02:03 +02:00
self::$storage = [];
2016-12-12 19:50:46 +01:00
self::$class_extends = [];
2016-08-15 17:01:50 +02:00
ClassChecker::clearCache();
2016-07-25 00:02:03 +02:00
}
2016-01-08 00:28:27 +01:00
}