2016-06-20 06:38:13 +02:00
|
|
|
<?php
|
|
|
|
|
2016-07-26 00:37:44 +02:00
|
|
|
namespace Psalm;
|
2016-06-20 06:38:13 +02:00
|
|
|
|
2016-09-17 17:57:44 +02:00
|
|
|
use PhpParser;
|
|
|
|
use Psalm\Checker\StatementsChecker;
|
|
|
|
|
2016-06-20 06:38:13 +02:00
|
|
|
class Context
|
|
|
|
{
|
2016-09-09 22:21:49 +02:00
|
|
|
/** @var array<string, Type\Union> */
|
2016-06-20 06:38:13 +02:00
|
|
|
public $vars_in_scope = [];
|
|
|
|
|
|
|
|
public $vars_possibly_in_scope = [];
|
|
|
|
|
2016-08-08 17:28:14 +02:00
|
|
|
/** @var boolean */
|
2016-06-20 22:30:31 +02:00
|
|
|
public $in_loop = false;
|
|
|
|
|
2016-08-08 17:28:14 +02:00
|
|
|
/** @var string|null */
|
|
|
|
public $self;
|
|
|
|
|
|
|
|
/** @var string|null */
|
|
|
|
public $parent;
|
|
|
|
|
2016-08-14 03:14:32 +02:00
|
|
|
/** @var string */
|
|
|
|
public $file_name;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $file_name
|
|
|
|
* @param string|null $self
|
|
|
|
*/
|
|
|
|
public function __construct($file_name, $self = null)
|
|
|
|
{
|
|
|
|
$this->file_name = $file_name;
|
|
|
|
$this->self = $self;
|
|
|
|
}
|
|
|
|
|
2016-06-20 06:38:13 +02:00
|
|
|
public function __clone()
|
|
|
|
{
|
|
|
|
foreach ($this->vars_in_scope as $key => &$type) {
|
|
|
|
$type = clone $type;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Updates the parent context, looking at the changes within a block
|
|
|
|
* and then applying those changes, where necessary, to the parent context
|
|
|
|
*
|
|
|
|
* @param Context $start_context
|
|
|
|
* @param Context $end_context
|
|
|
|
* @param bool $has_leaving_statements whether or not the parent scope is abandoned between $start_context and $end_context
|
|
|
|
* @return void
|
|
|
|
*/
|
2016-08-10 07:54:45 +02:00
|
|
|
public function update(Context $start_context, Context $end_context, $has_leaving_statements, array $vars_to_update, array &$updated_vars)
|
2016-06-20 06:38:13 +02:00
|
|
|
{
|
|
|
|
foreach ($this->vars_in_scope as $var => &$context_type) {
|
|
|
|
$old_type = $start_context->vars_in_scope[$var];
|
|
|
|
|
2016-08-10 07:54:45 +02:00
|
|
|
// this is only true if there was some sort of type negation
|
|
|
|
if (in_array($var, $vars_to_update)) {
|
2016-09-17 17:57:44 +02:00
|
|
|
// if we're leaving, we're effectively deleting the possibility of the if types
|
2016-10-02 05:10:15 +02:00
|
|
|
$new_type = !$has_leaving_statements && isset($end_context->vars_in_scope[$var]) ? $end_context->vars_in_scope[$var] : null;
|
2016-08-10 07:54:45 +02:00
|
|
|
|
|
|
|
// if the type changed within the block of statements, process the replacement
|
|
|
|
if ((string)$old_type !== (string)$new_type) {
|
|
|
|
$context_type->substitute($old_type, $new_type);
|
|
|
|
$updated_vars[$var] = true;
|
|
|
|
}
|
2016-06-20 06:38:13 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public static function getRedefinedVars(Context $original_context, Context $new_context)
|
|
|
|
{
|
|
|
|
$redefined_vars = [];
|
|
|
|
|
|
|
|
foreach ($original_context->vars_in_scope as $var => $context_type) {
|
2016-08-24 05:39:43 +02:00
|
|
|
if (isset($new_context->vars_in_scope[$var]) && (string)$new_context->vars_in_scope[$var] !== (string)$context_type) {
|
2016-06-20 06:38:13 +02:00
|
|
|
$redefined_vars[$var] = $new_context->vars_in_scope[$var];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $redefined_vars;
|
|
|
|
}
|
2016-09-17 17:57:44 +02:00
|
|
|
|
|
|
|
public function remove($remove_var_id)
|
|
|
|
{
|
|
|
|
if (isset($this->vars_in_scope[$remove_var_id])) {
|
|
|
|
$type = $this->vars_in_scope[$remove_var_id];
|
|
|
|
unset($this->vars_in_scope[$remove_var_id]);
|
|
|
|
|
|
|
|
$this->removeDescendents($remove_var_id, $type);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function removeDescendents($remove_var_id, \Psalm\Type\Union $type = null)
|
|
|
|
{
|
|
|
|
if (!$type && isset($this->vars_in_scope[$remove_var_id])) {
|
|
|
|
$type = $this->vars_in_scope[$remove_var_id];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!$type) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($type->hasArray() || $type->hasObjectType() || $type->isMixed()) {
|
|
|
|
$vars_to_remove = [];
|
|
|
|
|
|
|
|
foreach ($this->vars_in_scope as $var_id => $context_type) {
|
2016-10-02 05:10:15 +02:00
|
|
|
if (preg_match('/^' . preg_quote($remove_var_id, '/') . '[\[\-]/', $var_id)) {
|
|
|
|
|
2016-09-17 17:57:44 +02:00
|
|
|
$vars_to_remove[] = $var_id;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($vars_to_remove as $var_id) {
|
|
|
|
unset($this->vars_in_scope[$var_id]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-06-20 06:38:13 +02:00
|
|
|
}
|