2017-01-07 14:35:07 -05:00
|
|
|
<?php
|
2018-11-05 21:57:36 -05:00
|
|
|
namespace Psalm\Internal\Analyzer;
|
2017-01-07 14:35:07 -05:00
|
|
|
|
|
|
|
use PhpParser;
|
2017-07-25 16:11:02 -04:00
|
|
|
use Psalm\Aliases;
|
2017-03-10 19:36:17 -05:00
|
|
|
use Psalm\CodeLocation;
|
2017-01-07 14:35:07 -05:00
|
|
|
|
|
|
|
trait CanAlias
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @var array<string, string>
|
|
|
|
*/
|
2017-02-11 18:56:38 -05:00
|
|
|
private $aliased_classes = [];
|
2017-01-07 14:35:07 -05:00
|
|
|
|
2017-03-10 19:36:17 -05:00
|
|
|
/**
|
|
|
|
* @var array<string, CodeLocation>
|
|
|
|
*/
|
|
|
|
private $aliased_class_locations = [];
|
|
|
|
|
2017-01-07 14:35:07 -05:00
|
|
|
/**
|
|
|
|
* @var array<string, string>
|
|
|
|
*/
|
2017-02-11 18:56:38 -05:00
|
|
|
private $aliased_classes_flipped = [];
|
2017-01-07 14:35:07 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @var array<string, string>
|
|
|
|
*/
|
2017-02-11 18:56:38 -05:00
|
|
|
private $aliased_functions = [];
|
2017-01-07 14:35:07 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @var array<string, string>
|
|
|
|
*/
|
2017-02-11 18:56:38 -05:00
|
|
|
private $aliased_constants = [];
|
2017-01-07 14:35:07 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @param PhpParser\Node\Stmt\Use_ $stmt
|
2017-05-26 20:16:18 -04:00
|
|
|
*
|
2017-01-07 14:35:07 -05:00
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function visitUse(PhpParser\Node\Stmt\Use_ $stmt)
|
|
|
|
{
|
|
|
|
foreach ($stmt->uses as $use) {
|
|
|
|
$use_path = implode('\\', $use->name->parts);
|
2018-04-17 12:16:25 -04:00
|
|
|
$use_alias = $use->alias ? $use->alias->name : $use->name->getLast();
|
2017-01-07 14:35:07 -05:00
|
|
|
|
|
|
|
switch ($use->type !== PhpParser\Node\Stmt\Use_::TYPE_UNKNOWN ? $use->type : $stmt->type) {
|
|
|
|
case PhpParser\Node\Stmt\Use_::TYPE_FUNCTION:
|
2018-04-17 12:16:25 -04:00
|
|
|
$this->aliased_functions[strtolower($use_alias)] = $use_path;
|
2017-01-07 14:35:07 -05:00
|
|
|
break;
|
|
|
|
|
|
|
|
case PhpParser\Node\Stmt\Use_::TYPE_CONSTANT:
|
2018-04-17 12:16:25 -04:00
|
|
|
$this->aliased_constants[$use_alias] = $use_path;
|
2017-01-07 14:35:07 -05:00
|
|
|
break;
|
|
|
|
|
|
|
|
case PhpParser\Node\Stmt\Use_::TYPE_NORMAL:
|
2018-11-05 21:57:36 -05:00
|
|
|
if ($this->getCodebase()->collect_references) {
|
2017-02-27 18:24:20 -05:00
|
|
|
// register the path
|
2018-11-05 21:57:36 -05:00
|
|
|
$codebase = $this->getCodebase();
|
2017-02-27 18:24:20 -05:00
|
|
|
|
2018-01-21 13:38:51 -05:00
|
|
|
$codebase->use_referencing_locations[strtolower($use_path)][$this->getFilePath()][] =
|
2017-02-27 18:24:20 -05:00
|
|
|
new \Psalm\CodeLocation($this, $use);
|
2017-03-10 19:36:17 -05:00
|
|
|
|
2018-01-21 13:38:51 -05:00
|
|
|
$codebase->use_referencing_files[$this->getFilePath()][strtolower($use_path)] = true;
|
2017-02-27 18:24:20 -05:00
|
|
|
}
|
|
|
|
|
2018-04-17 12:16:25 -04:00
|
|
|
$this->aliased_classes[strtolower($use_alias)] = $use_path;
|
|
|
|
$this->aliased_class_locations[strtolower($use_alias)] = new CodeLocation($this, $stmt);
|
|
|
|
$this->aliased_classes_flipped[strtolower($use_path)] = $use_alias;
|
2017-01-07 14:35:07 -05:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param PhpParser\Node\Stmt\GroupUse $stmt
|
2017-05-26 20:16:18 -04:00
|
|
|
*
|
2017-01-07 14:35:07 -05:00
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function visitGroupUse(PhpParser\Node\Stmt\GroupUse $stmt)
|
|
|
|
{
|
|
|
|
$use_prefix = implode('\\', $stmt->prefix->parts);
|
|
|
|
|
|
|
|
foreach ($stmt->uses as $use) {
|
|
|
|
$use_path = $use_prefix . '\\' . implode('\\', $use->name->parts);
|
2018-04-17 12:16:25 -04:00
|
|
|
$use_alias = $use->alias ? $use->alias->name : $use->name->getLast();
|
2017-01-07 14:35:07 -05:00
|
|
|
|
|
|
|
switch ($use->type !== PhpParser\Node\Stmt\Use_::TYPE_UNKNOWN ? $use->type : $stmt->type) {
|
|
|
|
case PhpParser\Node\Stmt\Use_::TYPE_FUNCTION:
|
2018-04-17 12:16:25 -04:00
|
|
|
$this->aliased_functions[strtolower($use_alias)] = $use_path;
|
2017-01-07 14:35:07 -05:00
|
|
|
break;
|
|
|
|
|
|
|
|
case PhpParser\Node\Stmt\Use_::TYPE_CONSTANT:
|
2018-04-17 12:16:25 -04:00
|
|
|
$this->aliased_constants[$use_alias] = $use_path;
|
2017-01-07 14:35:07 -05:00
|
|
|
break;
|
|
|
|
|
|
|
|
case PhpParser\Node\Stmt\Use_::TYPE_NORMAL:
|
2018-11-05 21:57:36 -05:00
|
|
|
if ($this->getCodebase()->collect_references) {
|
2017-02-27 18:24:20 -05:00
|
|
|
// register the path
|
2018-11-05 21:57:36 -05:00
|
|
|
$codebase = $this->getCodebase();
|
2017-02-27 18:24:20 -05:00
|
|
|
|
2018-01-21 13:38:51 -05:00
|
|
|
$codebase->use_referencing_locations[$use_path][$this->getFilePath()][] =
|
2017-02-27 18:24:20 -05:00
|
|
|
new \Psalm\CodeLocation($this, $use);
|
|
|
|
}
|
|
|
|
|
2018-04-17 12:16:25 -04:00
|
|
|
$this->aliased_classes[strtolower($use_alias)] = $use_path;
|
|
|
|
$this->aliased_classes_flipped[strtolower($use_path)] = $use_alias;
|
2017-01-07 14:35:07 -05:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return array<string, string>
|
|
|
|
*/
|
|
|
|
public function getAliasedClassesFlipped()
|
|
|
|
{
|
|
|
|
return $this->aliased_classes_flipped;
|
|
|
|
}
|
|
|
|
|
2017-12-29 11:26:28 -05:00
|
|
|
/**
|
|
|
|
* @return Aliases
|
|
|
|
*/
|
2017-07-25 16:11:02 -04:00
|
|
|
public function getAliases()
|
2017-01-07 14:35:07 -05:00
|
|
|
{
|
2017-07-25 16:11:02 -04:00
|
|
|
return new Aliases(
|
|
|
|
$this->getNamespace(),
|
|
|
|
$this->aliased_classes,
|
|
|
|
$this->aliased_functions,
|
|
|
|
$this->aliased_constants
|
|
|
|
);
|
2017-01-07 14:35:07 -05:00
|
|
|
}
|
|
|
|
}
|