1
0
mirror of https://github.com/danog/psalm.git synced 2025-01-22 13:51:54 +01:00
psalm/src/CodeInspector/FunctionChecker.php

171 lines
5.4 KiB
PHP
Raw Normal View History

2016-01-07 18:28:27 -05:00
<?php
2016-01-07 18:36:55 -05:00
namespace CodeInspector;
2016-01-07 18:28:27 -05:00
ini_set('xdebug.max_nesting_level', 512);
2016-01-07 18:28:27 -05:00
2016-02-04 09:22:46 -05:00
use PhpParser;
2016-01-07 18:28:27 -05:00
class FunctionChecker implements StatementsSource
2016-01-07 18:28:27 -05:00
{
protected $_function;
protected $_aliased_classes = [];
protected $_namespace;
protected $_file_name;
2016-01-11 17:18:19 -05:00
protected $_is_static = false;
protected $_absolute_class;
protected $_statements_checker;
protected $_source;
2016-05-16 16:12:02 -04:00
protected $_return_vars_in_scope = [];
protected $_return_vars_possibly_in_scope = [];
protected $_function_params = [];
2016-01-07 18:28:27 -05:00
public function __construct(PhpParser\Node\FunctionLike $function, StatementsSource $source)
2016-01-07 18:28:27 -05:00
{
$this->_function = $function;
$this->_aliased_classes = $source->getAliasedClasses();
$this->_namespace = $source->getNamespace();
$this->_class_name = $source->getClassName();
$this->_class_extends = $source->getParentClass();
$this->_file_name = $source->getFileName();
$this->_absolute_class = $source->getAbsoluteClass();
$this->_source = $source;
2016-01-07 18:28:27 -05:00
}
2016-05-16 16:12:02 -04:00
public function check(&$vars_in_scope = [], &$vars_possibly_in_scope = [])
2016-01-07 18:28:27 -05:00
{
if ($this->_function->stmts) {
$statements_checker = new StatementsChecker($this, !empty($this->_function->params));
foreach ($this->_function->params as $param) {
if ($param->type) {
if (is_object($param->type)) {
if (!in_array($param->type->parts[0], ['self', 'parent'])) {
ClassChecker::checkClassName($param->type, $this->_namespace, $this->_aliased_classes, $this->_file_name);
2016-01-08 18:30:51 -05:00
}
}
2016-01-11 11:38:02 -05:00
}
2016-01-11 11:05:24 -05:00
$is_nullable = $param->default !== null &&
$param->default instanceof \PhpParser\Node\Expr\ConstFetch &&
$param->default->name instanceof PhpParser\Node\Name &&
$param->default->name->parts = ['null'];
if ($param->type && is_object($param->type)) {
$vars_in_scope[$param->name] =
$param->type->parts === ['self'] ?
$this->_absolute_class :
ClassChecker::getAbsoluteClassFromName($param->type, $this->_namespace, $this->_aliased_classes);
if ($is_nullable) {
$vars_in_scope[$param->name] .= '|null';
}
2016-01-11 09:27:34 -05:00
}
2016-04-30 14:14:22 -04:00
else {
$vars_in_scope[$param->name] = 'mixed';
}
$vars_possibly_in_scope[$param->name] = true;
$statements_checker->registerVariable($param->name, $param->getLine());
2016-01-11 09:27:34 -05:00
}
2016-01-07 23:40:29 -05:00
$statements_checker->check($this->_function->stmts, $vars_in_scope, $vars_possibly_in_scope);
2016-05-16 16:12:02 -04:00
if (isset($this->_return_vars_in_scope[''])) {
$vars_in_scope = TypeChecker::combineTypes($vars_in_scope, $this->_return_vars_in_scope['']);
}
if (isset($this->_return_vars_possibly_in_scope[''])) {
$vars_possibly_in_scope = TypeChecker::combineTypes($vars_possibly_in_scope, $this->_return_vars_possibly_in_scope['']);
}
foreach ($vars_in_scope as $var => $type) {
if (strpos($var, 'this->') !== 0) {
unset($vars_in_scope[$var]);
}
}
foreach ($vars_in_scope as $var => $type) {
if (strpos($var, 'this->') !== 0) {
unset($vars_possibly_in_scope[$var]);
}
}
}
}
public function addReturnTypes($return_type, $vars_in_scope, $vars_possibly_in_scope)
{
if (isset($this->_return_vars_in_scope[$return_type])) {
$this->_return_vars_in_scope[$return_type] = TypeChecker::combineTypes($vars_in_scope, $this->_return_vars_in_scope[$return_type]);
}
else {
$this->_return_vars_in_scope[$return_type] = $vars_in_scope;
}
if (isset($this->_return_vars_possibly_in_scope[$return_type])) {
$this->_return_vars_possibly_in_scope[$return_type] = TypeChecker::combineTypes($vars_possibly_in_scope, $this->_return_vars_possibly_in_scope[$return_type]);
}
else {
$this->_return_vars_possibly_in_scope[$return_type] = $vars_possibly_in_scope;
2016-01-07 23:40:29 -05:00
}
2016-01-07 18:28:27 -05:00
}
2016-04-26 18:42:48 -04:00
/**
* @return string
*/
public function getMethodId()
{
if ($this->_function instanceof PhpParser\Node\Expr\Closure) {
return null;
}
return $this->getAbsoluteClass() . '::' . $this->_function->name;
}
public function getNamespace()
2016-01-07 18:28:27 -05:00
{
return $this->_namespace;
2016-01-07 18:28:27 -05:00
}
public function getAliasedClasses()
2016-01-07 18:28:27 -05:00
{
return $this->_aliased_classes;
2016-01-07 18:28:27 -05:00
}
public function getAbsoluteClass()
2016-01-07 18:28:27 -05:00
{
return $this->_absolute_class;
2016-01-07 18:28:27 -05:00
}
public function getClassName()
2016-01-07 18:28:27 -05:00
{
return $this->_class_name;
2016-01-07 18:28:27 -05:00
}
public function getClassChecker()
{
return $this->_source->getClassChecker();
}
public function getParentClass()
2016-01-07 18:28:27 -05:00
{
return $this->_class_extends;
2016-01-07 18:28:27 -05:00
}
public function getFileName()
2016-01-07 18:28:27 -05:00
{
return $this->_file_name;
2016-01-07 18:28:27 -05:00
}
public function isStatic()
2016-01-07 18:28:27 -05:00
{
return $this->_is_static;
2016-01-07 18:28:27 -05:00
}
public function getSource()
{
return $this->_source;
}
2016-01-07 18:28:27 -05:00
}