1
0
mirror of https://github.com/danog/psalm.git synced 2024-12-13 17:57:37 +01:00
psalm/src/Psalm/Internal/Codebase/Properties.php

154 lines
4.8 KiB
PHP
Raw Normal View History

<?php
namespace Psalm\Internal\Codebase;
use Psalm\CodeLocation;
2018-11-06 03:57:36 +01:00
use Psalm\Internal\Provider\ClassLikeStorageProvider;
use Psalm\Internal\Provider\FileReferenceProvider;
2018-02-09 23:51:49 +01:00
/**
* @internal
*
* Handles information about class properties
*/
class Properties
{
/**
* @var ClassLikeStorageProvider
*/
private $classlike_storage_provider;
/**
* @var bool
*/
public $collect_references = false;
/**
* @var FileReferenceProvider
*/
public $file_reference_provider;
public function __construct(
ClassLikeStorageProvider $storage_provider,
FileReferenceProvider $file_reference_provider
) {
$this->classlike_storage_provider = $storage_provider;
$this->file_reference_provider = $file_reference_provider;
}
/**
* Whether or not a given property exists
*
* @param string $property_id
2018-09-27 19:32:08 +02:00
* @param ?string $calling_method_id
* @param string $calling_method_id
*
* @return bool
*/
public function propertyExists(
$property_id,
2018-09-27 19:32:08 +02:00
$calling_method_id = null,
CodeLocation $code_location = null
) {
// remove trailing backslash if it exists
$property_id = preg_replace('/^\\\\/', '', $property_id);
list($fq_class_name, $property_name) = explode('::$', $property_id);
$class_storage = $this->classlike_storage_provider->get($fq_class_name);
if (isset($class_storage->declaring_property_ids[$property_name])) {
$declaring_property_class = $class_storage->declaring_property_ids[$property_name];
if ($calling_method_id) {
$this->file_reference_provider->addReferenceToClassMethod(
$calling_method_id,
strtolower($declaring_property_class) . '::$' . $property_name
);
}
if ($this->collect_references && $code_location) {
$declaring_class_storage = $this->classlike_storage_provider->get($declaring_property_class);
$declaring_property_storage = $declaring_class_storage->properties[$property_name];
if ($declaring_property_storage->referencing_locations === null) {
$declaring_property_storage->referencing_locations = [];
}
$declaring_property_storage->referencing_locations[$code_location->file_path][] = $code_location;
}
return true;
}
if ($calling_method_id) {
$this->file_reference_provider->addReferenceToClassMethod(
$calling_method_id,
strtolower($fq_class_name) . '::$' . $property_name
);
}
return false;
}
/**
* @param string $property_id
*
* @return string|null
*/
public function getDeclaringClassForProperty($property_id)
{
list($fq_class_name, $property_name) = explode('::$', $property_id);
$class_storage = $this->classlike_storage_provider->get($fq_class_name);
if (isset($class_storage->declaring_property_ids[$property_name])) {
return $class_storage->declaring_property_ids[$property_name];
}
}
/**
* Get the class this property appears in (vs is declared in, which could give a trait)
*
* @param string $property_id
*
* @return string|null
*/
public function getAppearingClassForProperty($property_id)
{
list($fq_class_name, $property_name) = explode('::$', $property_id);
$class_storage = $this->classlike_storage_provider->get($fq_class_name);
if (isset($class_storage->appearing_property_ids[$property_name])) {
$appearing_property_id = $class_storage->appearing_property_ids[$property_name];
return explode('::$', $appearing_property_id)[0];
}
}
/**
* @param string $property_id
* @return \Psalm\Storage\PropertyStorage
*/
public function getStorage($property_id)
{
// remove trailing backslash if it exists
$property_id = preg_replace('/^\\\\/', '', $property_id);
list($fq_class_name, $property_name) = explode('::$', $property_id);
$class_storage = $this->classlike_storage_provider->get($fq_class_name);
if (isset($class_storage->declaring_property_ids[$property_name])) {
$declaring_property_class = $class_storage->declaring_property_ids[$property_name];
$declaring_class_storage = $this->classlike_storage_provider->get($declaring_property_class);
if (isset($declaring_class_storage->properties[$property_name])) {
return $declaring_class_storage->properties[$property_name];
}
}
throw new \UnexpectedValueException('Property ' . $property_id . ' should exist');
}
}