2018-02-04 00:52:35 +01:00
|
|
|
<?php
|
2018-11-12 16:46:55 +01:00
|
|
|
namespace Psalm\Internal\Codebase;
|
2018-02-04 00:52:35 +01:00
|
|
|
|
2018-11-06 03:57:36 +01:00
|
|
|
use Psalm\Internal\Analyzer\ClassLikeAnalyzer;
|
2018-02-04 00:52:35 +01:00
|
|
|
use Psalm\Config;
|
|
|
|
use Psalm\Issue\CircularReference;
|
|
|
|
use Psalm\IssueBuffer;
|
2018-11-06 03:57:36 +01:00
|
|
|
use Psalm\Internal\Provider\ClassLikeStorageProvider;
|
|
|
|
use Psalm\Internal\Provider\FileReferenceProvider;
|
|
|
|
use Psalm\Internal\Provider\FileStorageProvider;
|
2018-02-04 00:52:35 +01:00
|
|
|
use Psalm\Storage\ClassLikeStorage;
|
|
|
|
use Psalm\Storage\FileStorage;
|
|
|
|
use Psalm\Type;
|
|
|
|
|
2018-02-09 23:51:49 +01:00
|
|
|
/**
|
|
|
|
* @internal
|
|
|
|
*
|
|
|
|
* Populates file and class information so that analysis can work properly
|
|
|
|
*/
|
2018-02-04 00:52:35 +01:00
|
|
|
class Populator
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @var ClassLikeStorageProvider
|
|
|
|
*/
|
|
|
|
private $classlike_storage_provider;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var FileStorageProvider
|
|
|
|
*/
|
|
|
|
private $file_storage_provider;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var bool
|
|
|
|
*/
|
|
|
|
private $debug_output;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var ClassLikes
|
|
|
|
*/
|
|
|
|
private $classlikes;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var Config
|
|
|
|
*/
|
|
|
|
private $config;
|
|
|
|
|
2018-09-28 22:18:45 +02:00
|
|
|
/**
|
|
|
|
* @var FileReferenceProvider
|
|
|
|
*/
|
|
|
|
private $file_reference_provider;
|
|
|
|
|
2018-02-04 00:52:35 +01:00
|
|
|
/**
|
|
|
|
* @param bool $debug_output
|
|
|
|
*/
|
|
|
|
public function __construct(
|
|
|
|
Config $config,
|
|
|
|
ClassLikeStorageProvider $classlike_storage_provider,
|
|
|
|
FileStorageProvider $file_storage_provider,
|
|
|
|
ClassLikes $classlikes,
|
2018-09-28 22:18:45 +02:00
|
|
|
FileReferenceProvider $file_reference_provider,
|
2018-02-04 00:52:35 +01:00
|
|
|
$debug_output
|
|
|
|
) {
|
|
|
|
$this->classlike_storage_provider = $classlike_storage_provider;
|
|
|
|
$this->file_storage_provider = $file_storage_provider;
|
|
|
|
$this->classlikes = $classlikes;
|
|
|
|
$this->debug_output = $debug_output;
|
|
|
|
$this->config = $config;
|
2018-09-28 22:18:45 +02:00
|
|
|
$this->file_reference_provider = $file_reference_provider;
|
2018-02-04 00:52:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return void
|
|
|
|
*/
|
2018-06-28 03:53:25 +02:00
|
|
|
public function populateCodebase(\Psalm\Codebase $codebase)
|
2018-02-04 00:52:35 +01:00
|
|
|
{
|
|
|
|
if ($this->debug_output) {
|
2018-04-13 01:42:24 +02:00
|
|
|
echo 'ClassLikeStorage is populating' . "\n";
|
2018-02-04 00:52:35 +01:00
|
|
|
}
|
|
|
|
|
2018-10-18 16:42:37 +02:00
|
|
|
foreach ($this->classlike_storage_provider->getNew() as $class_storage) {
|
2018-02-04 00:52:35 +01:00
|
|
|
$this->populateClassLikeStorage($class_storage);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($this->debug_output) {
|
2018-04-13 01:42:24 +02:00
|
|
|
echo 'ClassLikeStorage is populated' . "\n";
|
2018-02-04 00:52:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if ($this->debug_output) {
|
2018-04-13 01:42:24 +02:00
|
|
|
echo 'FileStorage is populating' . "\n";
|
2018-02-04 00:52:35 +01:00
|
|
|
}
|
|
|
|
|
2018-10-18 16:42:37 +02:00
|
|
|
$all_file_storage = $this->file_storage_provider->getNew();
|
2018-02-04 00:52:35 +01:00
|
|
|
|
|
|
|
foreach ($all_file_storage as $file_storage) {
|
|
|
|
$this->populateFileStorage($file_storage);
|
|
|
|
}
|
|
|
|
|
2018-10-18 16:42:37 +02:00
|
|
|
foreach ($this->classlike_storage_provider->getNew() as $class_storage) {
|
2018-06-28 03:53:25 +02:00
|
|
|
if ($this->config->allow_phpstorm_generics) {
|
2018-02-04 00:52:35 +01:00
|
|
|
foreach ($class_storage->properties as $property_storage) {
|
|
|
|
if ($property_storage->type) {
|
|
|
|
$this->convertPhpStormGenericToPsalmGeneric($property_storage->type, true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($class_storage->methods as $method_storage) {
|
|
|
|
if ($method_storage->return_type) {
|
|
|
|
$this->convertPhpStormGenericToPsalmGeneric($method_storage->return_type);
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($method_storage->params as $param_storage) {
|
|
|
|
if ($param_storage->type) {
|
|
|
|
$this->convertPhpStormGenericToPsalmGeneric($param_storage->type);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-28 03:53:25 +02:00
|
|
|
if ($class_storage->aliases) {
|
|
|
|
foreach ($class_storage->public_class_constant_nodes as $const_name => $node) {
|
2018-11-06 03:57:36 +01:00
|
|
|
$const_type = \Psalm\Internal\Analyzer\StatementsAnalyzer::getSimpleType(
|
2018-06-28 03:53:25 +02:00
|
|
|
$codebase,
|
|
|
|
$node,
|
|
|
|
$class_storage->aliases,
|
|
|
|
null,
|
|
|
|
null,
|
|
|
|
$class_storage->name
|
|
|
|
);
|
|
|
|
|
|
|
|
$class_storage->public_class_constants[$const_name] = $const_type ?: Type::getMixed();
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($class_storage->protected_class_constant_nodes as $const_name => $node) {
|
2018-11-06 03:57:36 +01:00
|
|
|
$const_type = \Psalm\Internal\Analyzer\StatementsAnalyzer::getSimpleType(
|
2018-06-28 03:53:25 +02:00
|
|
|
$codebase,
|
|
|
|
$node,
|
|
|
|
$class_storage->aliases,
|
|
|
|
null,
|
|
|
|
null,
|
|
|
|
$class_storage->name
|
|
|
|
);
|
|
|
|
|
|
|
|
$class_storage->protected_class_constants[$const_name] = $const_type ?: Type::getMixed();
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($class_storage->private_class_constant_nodes as $const_name => $node) {
|
2018-11-06 03:57:36 +01:00
|
|
|
$const_type = \Psalm\Internal\Analyzer\StatementsAnalyzer::getSimpleType(
|
2018-06-28 03:53:25 +02:00
|
|
|
$codebase,
|
|
|
|
$node,
|
|
|
|
$class_storage->aliases,
|
|
|
|
null,
|
|
|
|
null,
|
|
|
|
$class_storage->name
|
|
|
|
);
|
|
|
|
|
|
|
|
$class_storage->private_class_constants[$const_name] = $const_type ?: Type::getMixed();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($this->config->allow_phpstorm_generics) {
|
2018-02-04 00:52:35 +01:00
|
|
|
foreach ($all_file_storage as $file_storage) {
|
|
|
|
foreach ($file_storage->functions as $function_storage) {
|
|
|
|
if ($function_storage->return_type) {
|
|
|
|
$this->convertPhpStormGenericToPsalmGeneric($function_storage->return_type);
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($function_storage->params as $param_storage) {
|
|
|
|
if ($param_storage->type) {
|
|
|
|
$this->convertPhpStormGenericToPsalmGeneric($param_storage->type);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($this->debug_output) {
|
2018-04-13 01:42:24 +02:00
|
|
|
echo 'FileStorage is populated' . "\n";
|
2018-02-04 00:52:35 +01:00
|
|
|
}
|
2018-10-18 16:42:37 +02:00
|
|
|
|
|
|
|
$this->classlike_storage_provider->populated();
|
|
|
|
$this->file_storage_provider->populated();
|
2018-02-04 00:52:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param ClassLikeStorage $storage
|
|
|
|
* @param array $dependent_classlikes
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2018-02-04 02:03:31 +01:00
|
|
|
private function populateClassLikeStorage(ClassLikeStorage $storage, array $dependent_classlikes = [])
|
2018-02-04 00:52:35 +01:00
|
|
|
{
|
|
|
|
if ($storage->populated) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$fq_classlike_name_lc = strtolower($storage->name);
|
|
|
|
|
|
|
|
if (isset($dependent_classlikes[$fq_classlike_name_lc])) {
|
|
|
|
if ($storage->location && IssueBuffer::accepts(
|
|
|
|
new CircularReference(
|
|
|
|
'Circular reference discovered when loading ' . $storage->name,
|
|
|
|
$storage->location
|
|
|
|
)
|
|
|
|
)) {
|
|
|
|
// fall through
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$storage_provider = $this->classlike_storage_provider;
|
|
|
|
|
2018-02-04 02:03:31 +01:00
|
|
|
$this->populateDataFromTraits($storage, $storage_provider, $dependent_classlikes);
|
|
|
|
|
|
|
|
$dependent_classlikes[$fq_classlike_name_lc] = true;
|
|
|
|
|
|
|
|
if ($storage->parent_classes) {
|
|
|
|
$this->populateDataFromParentClass($storage, $storage_provider, $dependent_classlikes);
|
|
|
|
}
|
|
|
|
|
2018-09-25 23:23:19 +02:00
|
|
|
if (!strpos($fq_classlike_name_lc, '\\')
|
|
|
|
&& !isset($storage->methods['__construct'])
|
|
|
|
&& isset($storage->methods[$fq_classlike_name_lc])
|
|
|
|
&& !$storage->is_interface
|
|
|
|
&& !$storage->is_trait
|
|
|
|
) {
|
|
|
|
$storage->methods['__construct'] = $storage->methods[$fq_classlike_name_lc];
|
|
|
|
}
|
|
|
|
|
2018-02-04 02:03:31 +01:00
|
|
|
$this->populateInterfaceDataFromParentInterfaces($storage, $storage_provider, $dependent_classlikes);
|
|
|
|
|
|
|
|
$this->populateDataFromImplementedInterfaces($storage, $storage_provider, $dependent_classlikes);
|
|
|
|
|
|
|
|
if ($storage->location) {
|
|
|
|
$file_path = $storage->location->file_path;
|
|
|
|
|
|
|
|
foreach ($storage->parent_interfaces as $parent_interface_lc) {
|
2018-09-28 22:18:45 +02:00
|
|
|
$this->file_reference_provider->addFileInheritanceToClass($file_path, $parent_interface_lc);
|
2018-02-04 02:03:31 +01:00
|
|
|
}
|
|
|
|
|
2019-03-08 23:35:09 +01:00
|
|
|
foreach ($storage->parent_classes as $parent_class_lc => $_) {
|
2018-09-28 22:18:45 +02:00
|
|
|
$this->file_reference_provider->addFileInheritanceToClass($file_path, $parent_class_lc);
|
2018-02-04 02:03:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($storage->class_implements as $implemented_interface) {
|
2018-09-28 22:18:45 +02:00
|
|
|
$this->file_reference_provider->addFileInheritanceToClass(
|
|
|
|
$file_path,
|
|
|
|
strtolower($implemented_interface)
|
|
|
|
);
|
2018-02-04 02:03:31 +01:00
|
|
|
}
|
|
|
|
|
2018-11-20 21:51:47 +01:00
|
|
|
foreach ($storage->used_traits as $used_trait_lc => $_) {
|
2018-09-28 22:18:45 +02:00
|
|
|
$this->file_reference_provider->addFileInheritanceToClass($file_path, $used_trait_lc);
|
2018-02-04 02:03:31 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-13 15:28:30 +01:00
|
|
|
if ($storage->internal
|
|
|
|
&& !$storage->is_interface
|
|
|
|
&& !$storage->is_trait
|
|
|
|
) {
|
2018-12-02 00:37:49 +01:00
|
|
|
foreach ($storage->methods as $method) {
|
|
|
|
$method->internal = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($storage->properties as $property) {
|
|
|
|
$property->internal = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-28 21:53:07 +01:00
|
|
|
$this->populateOverriddenMethods($storage);
|
|
|
|
|
|
|
|
if ($this->debug_output) {
|
|
|
|
echo 'Have populated ' . $storage->name . "\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
$storage->populated = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** @return void */
|
|
|
|
private function populateOverriddenMethods(
|
|
|
|
ClassLikeStorage $storage
|
|
|
|
) {
|
2019-03-25 16:25:43 +01:00
|
|
|
foreach ($storage->methods as $method_name => $method_storage) {
|
|
|
|
if (isset($storage->overridden_method_ids[$method_name])) {
|
|
|
|
foreach ($storage->overridden_method_ids[$method_name] as $declaring_method_id) {
|
|
|
|
list($declaring_class, $declaring_method_name) = explode('::', $declaring_method_id);
|
|
|
|
$declaring_class_storage = $this->classlike_storage_provider->get($declaring_class);
|
|
|
|
|
|
|
|
$declaring_method_storage = $declaring_class_storage->methods[strtolower($declaring_method_name)];
|
|
|
|
|
|
|
|
if ($declaring_method_storage->has_docblock_param_types
|
|
|
|
&& !$method_storage->has_docblock_param_types
|
|
|
|
&& !isset($storage->documenting_method_ids[$method_name])
|
|
|
|
) {
|
|
|
|
$storage->documenting_method_ids[$method_name] = $declaring_method_id;
|
|
|
|
}
|
|
|
|
|
|
|
|
// tell the declaring class it's overridden downstream
|
|
|
|
$declaring_method_storage->overridden_downstream = true;
|
|
|
|
$declaring_method_storage->overridden_somewhere = true;
|
|
|
|
|
|
|
|
if (!$method_storage->throws
|
|
|
|
&& $method_storage->inheritdoc
|
|
|
|
&& $declaring_method_storage->throws
|
|
|
|
) {
|
|
|
|
$method_storage->throws = $declaring_method_storage->throws;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (count($storage->overridden_method_ids[$method_name]) === 1
|
|
|
|
&& $method_storage->signature_return_type
|
|
|
|
&& !$method_storage->signature_return_type->isVoid()
|
|
|
|
&& $method_storage->return_type === $method_storage->signature_return_type
|
|
|
|
) {
|
|
|
|
if (isset($declaring_class_storage->methods[$method_name])) {
|
|
|
|
$declaring_method_storage = $declaring_class_storage->methods[$method_name];
|
|
|
|
|
|
|
|
if ($declaring_method_storage->return_type
|
|
|
|
&& $declaring_method_storage->signature_return_type
|
|
|
|
&& $declaring_method_storage->return_type
|
|
|
|
!== $declaring_method_storage->signature_return_type
|
|
|
|
) {
|
|
|
|
$method_storage->return_type = $declaring_method_storage->return_type;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-02-04 02:03:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
private function populateDataFromTraits(
|
|
|
|
ClassLikeStorage $storage,
|
|
|
|
ClassLikeStorageProvider $storage_provider,
|
|
|
|
array $dependent_classlikes
|
|
|
|
) {
|
2018-02-04 00:52:35 +01:00
|
|
|
foreach ($storage->used_traits as $used_trait_lc => $_) {
|
|
|
|
try {
|
2018-12-21 15:29:23 +01:00
|
|
|
$used_trait_lc = $this->classlikes->getUnAliasedName(
|
|
|
|
$used_trait_lc
|
|
|
|
);
|
2018-02-04 00:52:35 +01:00
|
|
|
$trait_storage = $storage_provider->get($used_trait_lc);
|
|
|
|
} catch (\InvalidArgumentException $e) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->populateClassLikeStorage($trait_storage, $dependent_classlikes);
|
|
|
|
|
|
|
|
$this->inheritMethodsFromParent($storage, $trait_storage);
|
|
|
|
$this->inheritPropertiesFromParent($storage, $trait_storage);
|
2019-01-28 05:12:40 +01:00
|
|
|
|
|
|
|
if ($trait_storage->template_types) {
|
|
|
|
if (isset($storage->template_type_extends[$used_trait_lc])) {
|
|
|
|
foreach ($storage->template_type_extends[$used_trait_lc] as $i => $type) {
|
|
|
|
$trait_template_type_names = array_keys($trait_storage->template_types);
|
|
|
|
|
|
|
|
$mapped_name = $trait_template_type_names[$i] ?? null;
|
|
|
|
|
|
|
|
if ($mapped_name) {
|
|
|
|
$storage->template_type_extends[$used_trait_lc][$mapped_name] = $type;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($trait_storage->template_type_extends) {
|
|
|
|
foreach ($trait_storage->template_type_extends as $t_storage_class => $type_map) {
|
|
|
|
foreach ($type_map as $i => $type) {
|
|
|
|
if (isset($storage->template_type_extends[$t_storage_class][$i])
|
|
|
|
|| is_int($i)
|
|
|
|
) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2019-03-16 16:15:25 +01:00
|
|
|
$storage->template_type_extends[$t_storage_class][$i] = self::extendType(
|
|
|
|
$type,
|
|
|
|
$storage
|
|
|
|
);
|
2019-01-28 05:12:40 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$storage->template_type_extends[$used_trait_lc] = [];
|
|
|
|
|
2019-03-22 20:59:10 +01:00
|
|
|
foreach ($trait_storage->template_types as $template_name => $template_type_map) {
|
|
|
|
foreach ($template_type_map as $template_type) {
|
|
|
|
$storage->template_type_extends[$used_trait_lc][$template_name]
|
|
|
|
= $template_type[0];
|
|
|
|
}
|
2019-01-28 05:12:40 +01:00
|
|
|
}
|
|
|
|
}
|
2019-01-28 22:56:42 +01:00
|
|
|
} elseif ($trait_storage->template_type_extends) {
|
|
|
|
$storage->template_type_extends = array_merge(
|
|
|
|
$storage->template_type_extends ?: [],
|
|
|
|
$trait_storage->template_type_extends
|
|
|
|
);
|
2019-01-28 05:12:40 +01:00
|
|
|
}
|
2018-02-04 00:52:35 +01:00
|
|
|
}
|
2018-02-04 02:03:31 +01:00
|
|
|
}
|
2018-02-04 00:52:35 +01:00
|
|
|
|
2019-03-16 16:15:25 +01:00
|
|
|
private static function extendType(
|
|
|
|
Type\Union $type,
|
|
|
|
ClassLikeStorage $storage
|
|
|
|
) : Type\Union {
|
|
|
|
$extended_types = [];
|
|
|
|
|
|
|
|
foreach ($type->getTypes() as $atomic_type) {
|
|
|
|
if ($atomic_type instanceof Type\Atomic\TTemplateParam
|
|
|
|
&& $atomic_type->defining_class
|
|
|
|
) {
|
|
|
|
$referenced_type
|
|
|
|
= $storage->template_type_extends
|
|
|
|
[strtolower($atomic_type->defining_class)]
|
|
|
|
[$atomic_type->param_name]
|
|
|
|
?? null;
|
|
|
|
|
|
|
|
if ($referenced_type) {
|
|
|
|
foreach ($referenced_type->getTypes() as $atomic_referenced_type) {
|
|
|
|
if (!$atomic_referenced_type instanceof Type\Atomic\TTemplateParam) {
|
|
|
|
$extended_types[] = $atomic_referenced_type;
|
|
|
|
} else {
|
|
|
|
$extended_types[] = $atomic_type;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$extended_types[] = $atomic_type;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$extended_types[] = $atomic_type;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return new Type\Union($extended_types);
|
|
|
|
}
|
|
|
|
|
2018-02-04 02:03:31 +01:00
|
|
|
/**
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
private function populateDataFromParentClass(
|
|
|
|
ClassLikeStorage $storage,
|
|
|
|
ClassLikeStorageProvider $storage_provider,
|
|
|
|
array $dependent_classlikes
|
|
|
|
) {
|
2018-02-14 19:34:16 +01:00
|
|
|
$parent_storage_class = reset($storage->parent_classes);
|
|
|
|
|
2018-02-04 02:03:31 +01:00
|
|
|
try {
|
2018-12-21 15:29:23 +01:00
|
|
|
$parent_storage_class = $this->classlikes->getUnAliasedName(
|
|
|
|
strtolower($parent_storage_class)
|
|
|
|
);
|
2018-02-14 19:34:16 +01:00
|
|
|
$parent_storage = $storage_provider->get($parent_storage_class);
|
2018-02-04 02:03:31 +01:00
|
|
|
} catch (\InvalidArgumentException $e) {
|
2019-01-02 12:58:49 +01:00
|
|
|
if ($this->debug_output) {
|
|
|
|
echo 'Populator could not find dependency (' . __LINE__ . ")\n";
|
|
|
|
}
|
|
|
|
|
2018-02-14 19:34:16 +01:00
|
|
|
$storage->invalid_dependencies[] = $parent_storage_class;
|
2018-02-04 02:03:31 +01:00
|
|
|
$parent_storage = null;
|
|
|
|
}
|
2018-02-04 00:52:35 +01:00
|
|
|
|
2019-01-28 22:56:42 +01:00
|
|
|
if ($parent_storage && $parent_storage_class) {
|
2018-02-04 02:03:31 +01:00
|
|
|
$this->populateClassLikeStorage($parent_storage, $dependent_classlikes);
|
2018-02-04 00:52:35 +01:00
|
|
|
|
2018-02-04 02:03:31 +01:00
|
|
|
$storage->parent_classes = array_merge($storage->parent_classes, $parent_storage->parent_classes);
|
2018-02-04 00:52:35 +01:00
|
|
|
|
2019-01-28 22:56:42 +01:00
|
|
|
if ($parent_storage->template_types) {
|
2019-01-24 22:09:04 +01:00
|
|
|
if (isset($storage->template_type_extends[$parent_storage_class])) {
|
|
|
|
foreach ($storage->template_type_extends[$parent_storage_class] as $i => $type) {
|
|
|
|
$parent_template_type_names = array_keys($parent_storage->template_types);
|
2019-01-10 22:59:44 +01:00
|
|
|
|
2019-01-24 22:09:04 +01:00
|
|
|
$mapped_name = $parent_template_type_names[$i] ?? null;
|
2019-01-10 22:59:44 +01:00
|
|
|
|
2019-01-24 22:09:04 +01:00
|
|
|
if ($mapped_name) {
|
|
|
|
$storage->template_type_extends[$parent_storage_class][$mapped_name] = $type;
|
|
|
|
}
|
2019-01-10 22:59:44 +01:00
|
|
|
}
|
2019-01-13 00:18:23 +01:00
|
|
|
|
2019-01-24 22:09:04 +01:00
|
|
|
if ($parent_storage->template_type_extends) {
|
|
|
|
foreach ($parent_storage->template_type_extends as $t_storage_class => $type_map) {
|
|
|
|
foreach ($type_map as $i => $type) {
|
|
|
|
if (isset($storage->template_type_extends[$t_storage_class][$i])
|
|
|
|
|| is_int($i)
|
|
|
|
) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2019-03-16 16:15:25 +01:00
|
|
|
$storage->template_type_extends[$t_storage_class][$i] = self::extendType(
|
|
|
|
$type,
|
|
|
|
$storage
|
|
|
|
);
|
2019-01-16 18:07:30 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-01-24 22:09:04 +01:00
|
|
|
} else {
|
|
|
|
$storage->template_type_extends[$parent_storage_class] = [];
|
|
|
|
|
2019-03-22 20:59:10 +01:00
|
|
|
foreach ($parent_storage->template_types as $template_name => $template_type_map) {
|
|
|
|
foreach ($template_type_map as $template_type) {
|
|
|
|
$storage->template_type_extends[$parent_storage_class][$template_name]
|
|
|
|
= $template_type[0];
|
|
|
|
}
|
2019-01-24 22:09:04 +01:00
|
|
|
}
|
2019-01-13 00:18:23 +01:00
|
|
|
}
|
2019-01-28 22:56:42 +01:00
|
|
|
} elseif ($parent_storage->template_type_extends) {
|
|
|
|
$storage->template_type_extends = array_merge(
|
|
|
|
$storage->template_type_extends ?: [],
|
|
|
|
$parent_storage->template_type_extends
|
|
|
|
);
|
2019-01-10 22:59:44 +01:00
|
|
|
}
|
|
|
|
|
2018-02-04 02:03:31 +01:00
|
|
|
$this->inheritMethodsFromParent($storage, $parent_storage);
|
|
|
|
$this->inheritPropertiesFromParent($storage, $parent_storage);
|
2018-02-04 00:52:35 +01:00
|
|
|
|
2019-01-26 22:58:49 +01:00
|
|
|
$storage->class_implements = array_merge($storage->class_implements, $parent_storage->class_implements);
|
2018-02-14 19:34:16 +01:00
|
|
|
$storage->invalid_dependencies = array_merge(
|
|
|
|
$storage->invalid_dependencies,
|
|
|
|
$parent_storage->invalid_dependencies
|
|
|
|
);
|
2018-02-04 00:52:35 +01:00
|
|
|
|
2018-09-04 20:34:14 +02:00
|
|
|
if ($parent_storage->has_visitor_issues) {
|
|
|
|
$storage->has_visitor_issues = true;
|
|
|
|
}
|
|
|
|
|
2018-09-09 17:18:20 +02:00
|
|
|
$storage->public_class_constants = array_merge(
|
|
|
|
$parent_storage->public_class_constants,
|
|
|
|
$storage->public_class_constants
|
|
|
|
);
|
|
|
|
$storage->protected_class_constants = array_merge(
|
|
|
|
$parent_storage->protected_class_constants,
|
|
|
|
$storage->protected_class_constants
|
|
|
|
);
|
2018-05-09 04:13:26 +02:00
|
|
|
|
2019-01-02 19:46:46 +01:00
|
|
|
foreach ($parent_storage->public_class_constant_nodes as $name => $_) {
|
|
|
|
$storage->public_class_constants[$name] = Type::getMixed();
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($parent_storage->protected_class_constant_nodes as $name => $_) {
|
|
|
|
$storage->protected_class_constants[$name] = Type::getMixed();
|
|
|
|
}
|
|
|
|
|
2018-05-09 04:13:26 +02:00
|
|
|
$storage->pseudo_property_get_types += $parent_storage->pseudo_property_get_types;
|
|
|
|
$storage->pseudo_property_set_types += $parent_storage->pseudo_property_set_types;
|
2018-11-30 21:13:25 +01:00
|
|
|
|
2019-01-24 21:03:13 +01:00
|
|
|
$parent_storage->dependent_classlikes[strtolower($storage->name)] = true;
|
|
|
|
|
2018-11-30 21:13:25 +01:00
|
|
|
$storage->pseudo_methods += $parent_storage->pseudo_methods;
|
2018-02-04 00:52:35 +01:00
|
|
|
}
|
2018-02-04 02:03:31 +01:00
|
|
|
}
|
2018-02-04 00:52:35 +01:00
|
|
|
|
2018-02-04 02:03:31 +01:00
|
|
|
/**
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
private function populateInterfaceDataFromParentInterfaces(
|
|
|
|
ClassLikeStorage $storage,
|
|
|
|
ClassLikeStorageProvider $storage_provider,
|
|
|
|
array $dependent_classlikes
|
|
|
|
) {
|
2018-02-04 00:52:35 +01:00
|
|
|
$parent_interfaces = [];
|
|
|
|
|
|
|
|
foreach ($storage->parent_interfaces as $parent_interface_lc => $_) {
|
|
|
|
try {
|
2018-12-21 15:29:23 +01:00
|
|
|
$parent_interface_lc = $this->classlikes->getUnAliasedName(
|
|
|
|
$parent_interface_lc
|
|
|
|
);
|
2018-02-04 00:52:35 +01:00
|
|
|
$parent_interface_storage = $storage_provider->get($parent_interface_lc);
|
|
|
|
} catch (\InvalidArgumentException $e) {
|
2019-01-02 12:58:49 +01:00
|
|
|
if ($this->debug_output) {
|
|
|
|
echo 'Populator could not find dependency (' . __LINE__ . ")\n";
|
|
|
|
}
|
|
|
|
|
2018-02-14 19:34:16 +01:00
|
|
|
$storage->invalid_dependencies[] = $parent_interface_lc;
|
2018-02-04 00:52:35 +01:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->populateClassLikeStorage($parent_interface_storage, $dependent_classlikes);
|
|
|
|
|
|
|
|
// copy over any constants
|
|
|
|
$storage->public_class_constants = array_merge(
|
2018-09-09 17:18:20 +02:00
|
|
|
$parent_interface_storage->public_class_constants,
|
|
|
|
$storage->public_class_constants
|
2018-02-04 00:52:35 +01:00
|
|
|
);
|
|
|
|
|
2018-02-14 19:34:16 +01:00
|
|
|
$storage->invalid_dependencies = array_merge(
|
|
|
|
$storage->invalid_dependencies,
|
|
|
|
$parent_interface_storage->invalid_dependencies
|
|
|
|
);
|
|
|
|
|
2019-01-02 19:46:46 +01:00
|
|
|
foreach ($parent_interface_storage->public_class_constant_nodes as $name => $_) {
|
|
|
|
$storage->public_class_constants[$name] = Type::getMixed();
|
|
|
|
}
|
|
|
|
|
2019-01-26 22:58:49 +01:00
|
|
|
if ($parent_interface_storage->template_types) {
|
|
|
|
if (isset($storage->template_type_extends[$parent_interface_lc])) {
|
|
|
|
foreach ($storage->template_type_extends[$parent_interface_lc] as $i => $type) {
|
|
|
|
$parent_template_type_names = array_keys($parent_interface_storage->template_types);
|
|
|
|
|
|
|
|
$mapped_name = $parent_template_type_names[$i] ?? null;
|
|
|
|
|
|
|
|
if ($mapped_name) {
|
|
|
|
$storage->template_type_extends[$parent_interface_lc][$mapped_name] = $type;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($parent_interface_storage->template_type_extends) {
|
|
|
|
foreach ($parent_interface_storage->template_type_extends as $t_storage_class => $type_map) {
|
|
|
|
foreach ($type_map as $i => $type) {
|
|
|
|
if (isset($storage->template_type_extends[$t_storage_class][$i])
|
|
|
|
|| is_int($i)
|
|
|
|
) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2019-03-16 16:15:25 +01:00
|
|
|
$storage->template_type_extends[$t_storage_class][$i] = self::extendType(
|
|
|
|
$type,
|
|
|
|
$storage
|
|
|
|
);
|
2019-01-26 22:58:49 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$storage->template_type_extends[$parent_interface_lc] = [];
|
|
|
|
|
2019-03-22 20:59:10 +01:00
|
|
|
foreach ($parent_interface_storage->template_types as $template_name => $template_type_map) {
|
|
|
|
foreach ($template_type_map as $template_type) {
|
|
|
|
$storage->template_type_extends[$parent_interface_lc][$template_name]
|
|
|
|
= $template_type[0];
|
|
|
|
}
|
2019-01-26 22:58:49 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-04 00:52:35 +01:00
|
|
|
$parent_interfaces = array_merge($parent_interfaces, $parent_interface_storage->parent_interfaces);
|
|
|
|
|
|
|
|
$this->inheritMethodsFromParent($storage, $parent_interface_storage);
|
|
|
|
}
|
|
|
|
|
|
|
|
$storage->parent_interfaces = array_merge($parent_interfaces, $storage->parent_interfaces);
|
2018-02-04 02:03:31 +01:00
|
|
|
}
|
2018-02-04 00:52:35 +01:00
|
|
|
|
2018-02-04 02:03:31 +01:00
|
|
|
/**
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
private function populateDataFromImplementedInterfaces(
|
|
|
|
ClassLikeStorage $storage,
|
|
|
|
ClassLikeStorageProvider $storage_provider,
|
|
|
|
array $dependent_classlikes
|
|
|
|
) {
|
2018-02-04 00:52:35 +01:00
|
|
|
$extra_interfaces = [];
|
|
|
|
|
|
|
|
foreach ($storage->class_implements as $implemented_interface_lc => $_) {
|
|
|
|
try {
|
2018-12-21 15:29:23 +01:00
|
|
|
$implemented_interface_lc = $this->classlikes->getUnAliasedName(
|
|
|
|
strtolower($implemented_interface_lc)
|
|
|
|
);
|
2018-02-04 00:52:35 +01:00
|
|
|
$implemented_interface_storage = $storage_provider->get($implemented_interface_lc);
|
|
|
|
} catch (\InvalidArgumentException $e) {
|
2019-01-02 12:58:49 +01:00
|
|
|
if ($this->debug_output) {
|
|
|
|
echo 'Populator could not find dependency (' . __LINE__ . ")\n";
|
|
|
|
}
|
|
|
|
|
2018-02-14 19:34:16 +01:00
|
|
|
$storage->invalid_dependencies[] = $implemented_interface_lc;
|
2018-02-04 00:52:35 +01:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->populateClassLikeStorage($implemented_interface_storage, $dependent_classlikes);
|
|
|
|
|
|
|
|
// copy over any constants
|
|
|
|
$storage->public_class_constants = array_merge(
|
2018-09-09 17:18:20 +02:00
|
|
|
$implemented_interface_storage->public_class_constants,
|
|
|
|
$storage->public_class_constants
|
2018-02-04 00:52:35 +01:00
|
|
|
);
|
|
|
|
|
2019-01-02 19:46:46 +01:00
|
|
|
foreach ($implemented_interface_storage->public_class_constant_nodes as $name => $_) {
|
|
|
|
$storage->public_class_constants[$name] = Type::getMixed();
|
|
|
|
}
|
|
|
|
|
2018-02-14 19:34:16 +01:00
|
|
|
$storage->invalid_dependencies = array_merge(
|
|
|
|
$storage->invalid_dependencies,
|
|
|
|
$implemented_interface_storage->invalid_dependencies
|
|
|
|
);
|
2019-01-10 22:59:44 +01:00
|
|
|
|
2019-01-24 22:09:04 +01:00
|
|
|
if ($implemented_interface_storage->template_types) {
|
|
|
|
if (isset($storage->template_type_extends[$implemented_interface_lc])) {
|
|
|
|
foreach ($storage->template_type_extends[$implemented_interface_lc] as $i => $type) {
|
|
|
|
$parent_template_type_names = array_keys($implemented_interface_storage->template_types);
|
|
|
|
|
|
|
|
$mapped_name = $parent_template_type_names[$i] ?? null;
|
2019-01-10 22:59:44 +01:00
|
|
|
|
2019-01-24 22:09:04 +01:00
|
|
|
if ($mapped_name) {
|
|
|
|
$storage->template_type_extends[$implemented_interface_lc][$mapped_name] = $type;
|
|
|
|
}
|
|
|
|
}
|
2019-01-26 22:58:49 +01:00
|
|
|
|
|
|
|
if ($implemented_interface_storage->template_type_extends) {
|
|
|
|
foreach ($implemented_interface_storage->template_type_extends as $e_i_lc => $type) {
|
|
|
|
if (isset($storage->template_type_extends[$e_i_lc])) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
$storage->template_type_extends[$e_i_lc] = $type;
|
|
|
|
}
|
|
|
|
}
|
2019-01-24 22:09:04 +01:00
|
|
|
} else {
|
|
|
|
$storage->template_type_extends[$implemented_interface_lc] = [];
|
2019-01-10 22:59:44 +01:00
|
|
|
|
2019-03-22 20:59:10 +01:00
|
|
|
foreach ($implemented_interface_storage->template_types as $template_name => $template_type_map) {
|
|
|
|
foreach ($template_type_map as $template_type) {
|
|
|
|
$storage->template_type_extends[$implemented_interface_lc][$template_name]
|
|
|
|
= $template_type[0];
|
|
|
|
}
|
2019-01-10 22:59:44 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-02-14 19:34:16 +01:00
|
|
|
|
2018-02-04 00:52:35 +01:00
|
|
|
$extra_interfaces = array_merge($extra_interfaces, $implemented_interface_storage->parent_interfaces);
|
|
|
|
}
|
|
|
|
|
2019-01-26 22:58:49 +01:00
|
|
|
$storage->class_implements = array_merge($storage->class_implements, $extra_interfaces);
|
2018-02-04 00:52:35 +01:00
|
|
|
|
|
|
|
$interface_method_implementers = [];
|
|
|
|
|
2019-01-24 21:03:13 +01:00
|
|
|
foreach ($storage->class_implements as $implemented_interface_lc => $_) {
|
2018-02-04 00:52:35 +01:00
|
|
|
try {
|
2018-12-21 15:29:23 +01:00
|
|
|
$implemented_interface = $this->classlikes->getUnAliasedName(
|
2019-01-24 21:03:13 +01:00
|
|
|
$implemented_interface_lc
|
2018-12-21 15:29:23 +01:00
|
|
|
);
|
2018-02-04 00:52:35 +01:00
|
|
|
$implemented_interface_storage = $storage_provider->get($implemented_interface);
|
|
|
|
} catch (\InvalidArgumentException $e) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2019-01-24 21:03:13 +01:00
|
|
|
$implemented_interface_storage->dependent_classlikes[strtolower($storage->name)] = true;
|
|
|
|
|
2018-02-04 00:52:35 +01:00
|
|
|
foreach ($implemented_interface_storage->methods as $method_name => $method) {
|
2018-11-06 03:57:36 +01:00
|
|
|
if ($method->visibility === ClassLikeAnalyzer::VISIBILITY_PUBLIC) {
|
2018-02-04 00:52:35 +01:00
|
|
|
$mentioned_method_id = $implemented_interface . '::' . $method_name;
|
|
|
|
$interface_method_implementers[$method_name][] = $mentioned_method_id;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($interface_method_implementers as $method_name => $interface_method_ids) {
|
|
|
|
if (count($interface_method_ids) === 1) {
|
2019-01-24 17:55:59 +01:00
|
|
|
if (isset($storage->methods[$method_name])) {
|
|
|
|
$method_storage = $storage->methods[$method_name];
|
|
|
|
|
|
|
|
if ($method_storage->signature_return_type
|
|
|
|
&& !$method_storage->signature_return_type->isVoid()
|
|
|
|
&& $method_storage->return_type === $method_storage->signature_return_type
|
|
|
|
) {
|
|
|
|
list($interface_fqcln) = explode('::', $interface_method_ids[0]);
|
|
|
|
$interface_storage = $storage_provider->get($interface_fqcln);
|
|
|
|
|
|
|
|
if (isset($interface_storage->methods[$method_name])) {
|
|
|
|
$interface_method_storage = $interface_storage->methods[$method_name];
|
|
|
|
|
2019-02-01 00:40:40 +01:00
|
|
|
if (!$method_storage->throws
|
|
|
|
&& $method_storage->inheritdoc
|
|
|
|
&& $interface_method_storage->throws
|
|
|
|
) {
|
|
|
|
$method_storage->throws = $interface_method_storage->throws;
|
|
|
|
}
|
|
|
|
|
2019-01-24 17:55:59 +01:00
|
|
|
if ($interface_method_storage->return_type
|
|
|
|
&& $interface_method_storage->signature_return_type
|
|
|
|
&& $interface_method_storage->return_type
|
|
|
|
!== $interface_method_storage->signature_return_type
|
|
|
|
) {
|
|
|
|
$method_storage->return_type = $interface_method_storage->return_type;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-03-04 18:24:50 +01:00
|
|
|
$storage->overridden_method_ids[$method_name][] = $interface_method_ids[0];
|
2018-02-04 00:52:35 +01:00
|
|
|
} else {
|
|
|
|
$storage->interface_method_ids[$method_name] = $interface_method_ids;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param FileStorage $storage
|
|
|
|
* @param array<string, bool> $dependent_file_paths
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
private function populateFileStorage(FileStorage $storage, array $dependent_file_paths = [])
|
|
|
|
{
|
|
|
|
if ($storage->populated) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$file_path_lc = strtolower($storage->file_path);
|
|
|
|
|
|
|
|
if (isset($dependent_file_paths[$file_path_lc])) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$dependent_file_paths[$file_path_lc] = true;
|
|
|
|
|
2018-05-30 18:23:53 +02:00
|
|
|
$all_required_file_paths = $storage->required_file_paths;
|
2018-05-23 05:38:27 +02:00
|
|
|
|
2018-05-30 18:23:53 +02:00
|
|
|
foreach ($storage->required_file_paths as $included_file_path => $_) {
|
2018-02-04 00:52:35 +01:00
|
|
|
try {
|
|
|
|
$included_file_storage = $this->file_storage_provider->get($included_file_path);
|
|
|
|
} catch (\InvalidArgumentException $e) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->populateFileStorage($included_file_storage, $dependent_file_paths);
|
|
|
|
|
2018-05-30 18:23:53 +02:00
|
|
|
$all_required_file_paths = $all_required_file_paths + $included_file_storage->required_file_paths;
|
2018-05-23 05:38:27 +02:00
|
|
|
}
|
|
|
|
|
2018-05-30 18:23:53 +02:00
|
|
|
foreach ($all_required_file_paths as $included_file_path => $_) {
|
2018-05-23 05:38:27 +02:00
|
|
|
try {
|
|
|
|
$included_file_storage = $this->file_storage_provider->get($included_file_path);
|
|
|
|
} catch (\InvalidArgumentException $e) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2018-02-04 00:52:35 +01:00
|
|
|
$storage->declaring_function_ids = array_merge(
|
|
|
|
$included_file_storage->declaring_function_ids,
|
|
|
|
$storage->declaring_function_ids
|
|
|
|
);
|
|
|
|
|
|
|
|
$storage->declaring_constants = array_merge(
|
|
|
|
$included_file_storage->declaring_constants,
|
|
|
|
$storage->declaring_constants
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2019-02-08 23:41:03 +01:00
|
|
|
foreach ($storage->referenced_classlikes as $fq_class_name) {
|
|
|
|
try {
|
|
|
|
$classlike_storage = $this->classlike_storage_provider->get($fq_class_name);
|
|
|
|
} catch (\InvalidArgumentException $e) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!$classlike_storage->location) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
$included_file_storage = $this->file_storage_provider->get($classlike_storage->location->file_path);
|
|
|
|
} catch (\InvalidArgumentException $e) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
$storage->declaring_function_ids = array_merge(
|
|
|
|
$included_file_storage->declaring_function_ids,
|
|
|
|
$storage->declaring_function_ids
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2018-05-30 18:23:53 +02:00
|
|
|
$storage->required_file_paths = $all_required_file_paths;
|
|
|
|
|
|
|
|
foreach ($all_required_file_paths as $required_file_path) {
|
|
|
|
try {
|
|
|
|
$required_file_storage = $this->file_storage_provider->get($required_file_path);
|
|
|
|
} catch (\InvalidArgumentException $e) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
$required_file_storage->required_by_file_paths += [$file_path_lc => $storage->file_path];
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($storage->required_classes as $required_classlike) {
|
|
|
|
try {
|
|
|
|
$classlike_storage = $this->classlike_storage_provider->get($required_classlike);
|
|
|
|
} catch (\InvalidArgumentException $e) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!$classlike_storage->location) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
$required_file_storage = $this->file_storage_provider->get($classlike_storage->location->file_path);
|
|
|
|
} catch (\InvalidArgumentException $e) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
$required_file_storage->required_by_file_paths += [$file_path_lc => $storage->file_path];
|
|
|
|
}
|
2018-05-23 05:38:27 +02:00
|
|
|
|
2018-02-04 00:52:35 +01:00
|
|
|
$storage->populated = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param Type\Union $candidate
|
|
|
|
* @param bool $is_property
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
private function convertPhpStormGenericToPsalmGeneric(Type\Union $candidate, $is_property = false)
|
|
|
|
{
|
|
|
|
$atomic_types = $candidate->getTypes();
|
|
|
|
|
|
|
|
if (isset($atomic_types['array']) && count($atomic_types) > 1) {
|
|
|
|
$iterator_name = null;
|
|
|
|
$generic_params = null;
|
|
|
|
|
2019-03-25 15:44:40 +01:00
|
|
|
try {
|
|
|
|
foreach ($atomic_types as $type) {
|
|
|
|
if ($type instanceof Type\Atomic\TIterable
|
|
|
|
|| ($type instanceof Type\Atomic\TNamedObject
|
|
|
|
&& (!$type->from_docblock || $is_property)
|
|
|
|
&& (
|
|
|
|
strtolower($type->value) === 'traversable'
|
|
|
|
|| $this->classlikes->interfaceExtends(
|
|
|
|
$type->value,
|
|
|
|
'Traversable'
|
|
|
|
)
|
|
|
|
|| $this->classlikes->classImplements(
|
|
|
|
$type->value,
|
|
|
|
'Traversable'
|
|
|
|
)
|
|
|
|
))
|
|
|
|
) {
|
|
|
|
$iterator_name = $type->value;
|
|
|
|
} elseif ($type instanceof Type\Atomic\TArray) {
|
|
|
|
$generic_params = $type->type_params;
|
|
|
|
}
|
2018-02-04 00:52:35 +01:00
|
|
|
}
|
2019-03-25 15:44:40 +01:00
|
|
|
} catch (\InvalidArgumentException $e) {
|
|
|
|
// ignore class-not-found issues
|
2018-02-04 00:52:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if ($iterator_name && $generic_params) {
|
2019-01-04 20:54:40 +01:00
|
|
|
if ($iterator_name === 'iterable') {
|
2019-01-23 05:42:54 +01:00
|
|
|
$generic_iterator = new Type\Atomic\TIterable($generic_params);
|
2019-01-04 20:54:40 +01:00
|
|
|
} else {
|
2019-02-20 17:13:33 +01:00
|
|
|
if (strtolower($iterator_name) === 'generator') {
|
|
|
|
$generic_params[] = Type::getMixed();
|
|
|
|
$generic_params[] = Type::getMixed();
|
|
|
|
}
|
2019-01-04 20:54:40 +01:00
|
|
|
$generic_iterator = new Type\Atomic\TGenericObject($iterator_name, $generic_params);
|
|
|
|
}
|
|
|
|
|
2018-02-04 00:52:35 +01:00
|
|
|
$candidate->removeType('array');
|
|
|
|
$candidate->addType($generic_iterator);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param ClassLikeStorage $storage
|
|
|
|
* @param ClassLikeStorage $parent_storage
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
protected function inheritMethodsFromParent(ClassLikeStorage $storage, ClassLikeStorage $parent_storage)
|
|
|
|
{
|
|
|
|
$fq_class_name = $storage->name;
|
|
|
|
|
|
|
|
// register where they appear (can never be in a trait)
|
|
|
|
foreach ($parent_storage->appearing_method_ids as $method_name => $appearing_method_id) {
|
2018-03-21 21:55:31 +01:00
|
|
|
$aliased_method_names = [$method_name];
|
|
|
|
|
2018-02-04 00:52:35 +01:00
|
|
|
if ($parent_storage->is_trait
|
|
|
|
&& $storage->trait_alias_map
|
|
|
|
) {
|
2018-11-30 19:45:39 +01:00
|
|
|
$aliased_method_names = array_merge(
|
|
|
|
$aliased_method_names,
|
|
|
|
array_keys($storage->trait_alias_map, $method_name, true)
|
|
|
|
);
|
2018-02-04 00:52:35 +01:00
|
|
|
}
|
|
|
|
|
2018-03-21 21:55:31 +01:00
|
|
|
foreach ($aliased_method_names as $aliased_method_name) {
|
|
|
|
if (isset($storage->appearing_method_ids[$aliased_method_name])) {
|
|
|
|
continue;
|
|
|
|
}
|
2018-02-04 00:52:35 +01:00
|
|
|
|
2018-03-21 21:55:31 +01:00
|
|
|
$implemented_method_id = $fq_class_name . '::' . $aliased_method_name;
|
2018-02-04 00:52:35 +01:00
|
|
|
|
2018-03-21 21:55:31 +01:00
|
|
|
$storage->appearing_method_ids[$aliased_method_name] =
|
|
|
|
$parent_storage->is_trait ? $implemented_method_id : $appearing_method_id;
|
2018-09-26 00:37:24 +02:00
|
|
|
|
|
|
|
$this_method_id = strtolower($fq_class_name . '::' . $method_name);
|
|
|
|
|
|
|
|
if (isset($storage->methods[$aliased_method_name])) {
|
|
|
|
$storage->potential_declaring_method_ids[$aliased_method_name] = [$this_method_id => true];
|
|
|
|
} else {
|
|
|
|
if (isset($parent_storage->potential_declaring_method_ids[$aliased_method_name])) {
|
|
|
|
$storage->potential_declaring_method_ids[$aliased_method_name]
|
|
|
|
= $parent_storage->potential_declaring_method_ids[$aliased_method_name];
|
|
|
|
}
|
|
|
|
|
|
|
|
$storage->potential_declaring_method_ids[$aliased_method_name][$this_method_id] = true;
|
|
|
|
|
|
|
|
$parent_method_id = strtolower($parent_storage->name . '::' . $method_name);
|
|
|
|
$storage->potential_declaring_method_ids[$aliased_method_name][$parent_method_id] = true;
|
|
|
|
}
|
2018-03-21 21:55:31 +01:00
|
|
|
}
|
2018-02-04 00:52:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// register where they're declared
|
|
|
|
foreach ($parent_storage->inheritable_method_ids as $method_name => $declaring_method_id) {
|
2019-03-17 19:14:28 +01:00
|
|
|
if (!$parent_storage->is_trait && $method_name !== '__construct') {
|
2018-03-04 18:24:50 +01:00
|
|
|
$storage->overridden_method_ids[$method_name][] = $declaring_method_id;
|
2018-02-04 00:52:35 +01:00
|
|
|
}
|
|
|
|
|
2018-03-21 21:55:31 +01:00
|
|
|
$aliased_method_names = [$method_name];
|
|
|
|
|
2018-02-04 00:52:35 +01:00
|
|
|
if ($parent_storage->is_trait
|
|
|
|
&& $storage->trait_alias_map
|
|
|
|
) {
|
2018-11-30 19:45:39 +01:00
|
|
|
$aliased_method_names = array_merge(
|
|
|
|
$aliased_method_names,
|
|
|
|
array_keys($storage->trait_alias_map, $method_name, true)
|
|
|
|
);
|
2018-02-04 00:52:35 +01:00
|
|
|
}
|
|
|
|
|
2018-03-21 21:55:31 +01:00
|
|
|
foreach ($aliased_method_names as $aliased_method_name) {
|
|
|
|
if (isset($storage->declaring_method_ids[$aliased_method_name])) {
|
|
|
|
list($implementing_fq_class_name, $implementing_method_name) = explode(
|
|
|
|
'::',
|
|
|
|
$storage->declaring_method_ids[$aliased_method_name]
|
|
|
|
);
|
2018-02-04 00:52:35 +01:00
|
|
|
|
2018-03-21 21:55:31 +01:00
|
|
|
$implementing_class_storage = $this->classlike_storage_provider->get($implementing_fq_class_name);
|
2018-02-04 00:52:35 +01:00
|
|
|
|
2018-03-21 21:55:31 +01:00
|
|
|
if (!$implementing_class_storage->methods[$implementing_method_name]->abstract) {
|
|
|
|
continue;
|
|
|
|
}
|
2018-02-04 00:52:35 +01:00
|
|
|
}
|
|
|
|
|
2018-03-21 21:55:31 +01:00
|
|
|
$storage->declaring_method_ids[$aliased_method_name] = $declaring_method_id;
|
|
|
|
$storage->inheritable_method_ids[$aliased_method_name] = $declaring_method_id;
|
|
|
|
}
|
2018-02-04 00:52:35 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param ClassLikeStorage $storage
|
|
|
|
* @param ClassLikeStorage $parent_storage
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
private function inheritPropertiesFromParent(ClassLikeStorage $storage, ClassLikeStorage $parent_storage)
|
|
|
|
{
|
|
|
|
// register where they appear (can never be in a trait)
|
|
|
|
foreach ($parent_storage->appearing_property_ids as $property_name => $appearing_property_id) {
|
|
|
|
if (isset($storage->appearing_property_ids[$property_name])) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!$parent_storage->is_trait
|
|
|
|
&& isset($parent_storage->properties[$property_name])
|
2018-11-06 03:57:36 +01:00
|
|
|
&& $parent_storage->properties[$property_name]->visibility === ClassLikeAnalyzer::VISIBILITY_PRIVATE
|
2018-02-04 00:52:35 +01:00
|
|
|
) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
$implemented_property_id = $storage->name . '::$' . $property_name;
|
|
|
|
|
|
|
|
$storage->appearing_property_ids[$property_name] =
|
|
|
|
$parent_storage->is_trait ? $implemented_property_id : $appearing_property_id;
|
|
|
|
}
|
|
|
|
|
|
|
|
// register where they're declared
|
2018-07-22 01:56:26 +02:00
|
|
|
foreach ($parent_storage->declaring_property_ids as $property_name => $declaring_property_class) {
|
2018-02-04 00:52:35 +01:00
|
|
|
if (isset($storage->declaring_property_ids[$property_name])) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!$parent_storage->is_trait
|
|
|
|
&& isset($parent_storage->properties[$property_name])
|
2018-11-06 03:57:36 +01:00
|
|
|
&& $parent_storage->properties[$property_name]->visibility === ClassLikeAnalyzer::VISIBILITY_PRIVATE
|
2018-02-04 00:52:35 +01:00
|
|
|
) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2018-07-22 01:56:26 +02:00
|
|
|
$storage->declaring_property_ids[$property_name] = $declaring_property_class;
|
2018-02-04 00:52:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// register where they're declared
|
|
|
|
foreach ($parent_storage->inheritable_property_ids as $property_name => $inheritable_property_id) {
|
|
|
|
if (!$parent_storage->is_trait
|
|
|
|
&& isset($parent_storage->properties[$property_name])
|
2018-11-06 03:57:36 +01:00
|
|
|
&& $parent_storage->properties[$property_name]->visibility === ClassLikeAnalyzer::VISIBILITY_PRIVATE
|
2018-02-04 00:52:35 +01:00
|
|
|
) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2018-03-04 18:24:50 +01:00
|
|
|
if (!$parent_storage->is_trait) {
|
|
|
|
$storage->overridden_property_ids[$property_name][] = $inheritable_property_id;
|
|
|
|
}
|
|
|
|
|
2018-02-04 00:52:35 +01:00
|
|
|
$storage->inheritable_property_ids[$property_name] = $inheritable_property_id;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|