Completed
Push — master ( 8f0d0f...15736a )
by Дмитрий
06:53
created

NameResolveVisitor   F

Complexity

Total Complexity 64

Size/Duplication

Total Lines 257
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 19

Test Coverage

Coverage 70.59%

Importance

Changes 0
Metric Value
dl 0
loc 257
ccs 96
cts 136
cp 0.7059
rs 2.4812
c 0
b 0
f 0
wmc 64
lcom 1
cbo 19

9 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 2
A beforeTraverse() 0 4 1
A resetState() 0 9 1
A addNamespacedName() 0 5 1
D enterNode() 0 84 37
B addAlias() 0 35 4
A resolveSignature() 0 12 4
B resolveClassName() 0 29 6
C resolveOtherName() 0 43 8

How to fix   Complexity   

Complex Class

Complex classes like NameResolveVisitor often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes. You can also have a look at the cohesion graph to spot any un-connected, or weakly-connected components.

Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.

While breaking up the class, it is a good idea to analyze how other classes use NameResolveVisitor, and based on these observations, apply Extract Interface, too.

1
<?php
2
/**
3
 * @author Nikita Popov @nikic
4
 * @link https://github.com/nikic/PHP-Parser/blob/master/lib/PhpParser/NodeVisitor/NameResolver.php
5
 *
6
 * @author Patsura Dmitry https://github.com/ovr <[email protected]>
7
 */
8
9
namespace PHPSA\Compiler;
10
11
use PhpParser\Error;
12
use PhpParser\ErrorHandler;
13
use PhpParser\Node;
14
use PhpParser\Node\Expr;
15
use PhpParser\Node\Name;
16
use PhpParser\Node\Name\FullyQualified;
17
use PhpParser\Node\Stmt;
18
use PhpParser\NodeVisitorAbstract;
19
20
class NameResolveVisitor extends NodeVisitorAbstract
0 ignored issues
show
Complexity introduced by
This class has a complexity of 64 which exceeds the configured maximum of 50.

The class complexity is the sum of the complexity of all methods. A very high value is usually an indication that your class does not follow the single reponsibility principle and does more than one job.

Some resources for further reading:

You can also find more detailed suggestions for refactoring in the “Code” section of your repository.

Loading history...
21
{
22
    /** @var null|Name Current namespace */
23
    protected $namespace;
24
25
    /** @var array Map of format [aliasType => [aliasName => originalName]] */
26
    protected $aliases;
27
28
    /** @var ErrorHandler Error handler */
29
    protected $errorHandler;
30
31
    /**
32
     * Constructs a name resolution visitor.
33
     *
34
     * @param ErrorHandler|null $errorHandler Error handler
35
     */
36 55
    public function __construct(ErrorHandler $errorHandler = null)
37
    {
38 55
        $this->errorHandler = $errorHandler ?: new ErrorHandler\Throwing;
39 55
    }
40
41
    /**
42
     * {@inheritdoc}
43
     */
44 55
    public function beforeTraverse(array $nodes)
45
    {
46 55
        $this->resetState();
47 55
    }
48
49
    /**
50
     * {@inheritdoc}
51
     */
52 55
    public function enterNode(Node $node)
53
    {
54 55
        if ($node instanceof Stmt\Namespace_) {
55 55
            $this->resetState($node->name);
0 ignored issues
show
Bug introduced by
It seems like $node->name can also be of type string; however, PHPSA\Compiler\NameResolveVisitor::resetState() does only seem to accept null|object<PhpParser\Node\Name>, maybe add an additional type check?

If a method or function can return multiple different values and unless you are sure that you only can receive a single value in this context, we recommend to add an additional type check:

/**
 * @return array|string
 */
function returnsDifferentValues($x) {
    if ($x) {
        return 'foo';
    }

    return array();
}

$x = returnsDifferentValues($y);
if (is_array($x)) {
    // $x is an array.
}

If this a common case that PHP Analyzer should handle natively, please let us know by opening an issue.

Loading history...
56 55
        } elseif ($node instanceof Stmt\Use_) {
57 2
            foreach ($node->uses as $use) {
58 2
                $this->addAlias($use, $node->type, null);
59
            }
60 55
        } elseif ($node instanceof Stmt\GroupUse) {
61
            foreach ($node->uses as $use) {
62
                $this->addAlias($use, $node->type, $node->prefix);
63
            }
64 55
        } elseif ($node instanceof Stmt\Class_) {
65 55
            if (null !== $node->extends) {
66 2
                $node->extends = $this->resolveClassName($node->extends);
67
            }
68
69 55
            foreach ($node->implements as &$interface) {
70
                $interface = $this->resolveClassName($interface);
71
            }
72
73 55
            if (null !== $node->name) {
74 55
                $this->addNamespacedName($node);
75
            }
76 55
        } elseif ($node instanceof Stmt\Interface_) {
77
            foreach ($node->extends as &$interface) {
0 ignored issues
show
Bug introduced by
The expression $node->extends of type null|object<PhpParser\Node\Name> is not guaranteed to be traversable. How about adding an additional type check?

There are different options of fixing this problem.

  1. If you want to be on the safe side, you can add an additional type-check:

    $collection = json_decode($data, true);
    if ( ! is_array($collection)) {
        throw new \RuntimeException('$collection must be an array.');
    }
    
    foreach ($collection as $item) { /** ... */ }
    
  2. If you are sure that the expression is traversable, you might want to add a doc comment cast to improve IDE auto-completion and static analysis:

    /** @var array $collection */
    $collection = json_decode($data, true);
    
    foreach ($collection as $item) { /** .. */ }
    
  3. Mark the issue as a false-positive: Just hover the remove button, in the top-right corner of this issue for more options.

Loading history...
78
                $interface = $this->resolveClassName($interface);
79
            }
80
81
            $this->addNamespacedName($node);
82 55
        } elseif ($node instanceof Stmt\Trait_) {
83 1
            $this->addNamespacedName($node);
84 55
        } elseif ($node instanceof Stmt\Function_) {
85 6
            $this->addNamespacedName($node);
86 6
            $this->resolveSignature($node);
87 55
        } elseif ($node instanceof Stmt\ClassMethod
88 55
            || $node instanceof Expr\Closure
89
        ) {
90 52
            $this->resolveSignature($node);
91 55
        } elseif ($node instanceof Stmt\Const_) {
92
            foreach ($node->consts as $const) {
93
                $this->addNamespacedName($const);
94
            }
95 55
        } elseif ($node instanceof Expr\StaticCall
96 55
            || $node instanceof Expr\StaticPropertyFetch
97 55
            || $node instanceof Expr\ClassConstFetch
98 55
            || $node instanceof Expr\New_
99 55
            || $node instanceof Expr\Instanceof_
100
        ) {
101 8
            if ($node->class instanceof Name) {
102 8
                $node->class = $this->resolveClassName($node->class);
103
            }
104 55
        } elseif ($node instanceof Stmt\Catch_) {
105 2
            foreach ($node->types as &$type) {
106 2
                $type = $this->resolveClassName($type);
107
            }
108 55
        } elseif ($node instanceof Expr\FuncCall) {
109 15
            if ($node->name instanceof Name) {
110 15
                $node->name = $this->resolveOtherName($node->name, Stmt\Use_::TYPE_FUNCTION);
111
            }
112 55
        } elseif ($node instanceof Expr\ConstFetch) {
113 16
            $node->name = $this->resolveOtherName($node->name, Stmt\Use_::TYPE_CONSTANT);
0 ignored issues
show
Documentation introduced by
$node->name is of type string|null, but the function expects a object<PhpParser\Node\Name>.

It seems like the type of the argument is not accepted by the function/method which you are calling.

In some cases, in particular if PHP’s automatic type-juggling kicks in this might be fine. In other cases, however this might be a bug.

We suggest to add an explicit type cast like in the following example:

function acceptsInteger($int) { }

$x = '123'; // string "123"

// Instead of
acceptsInteger($x);

// we recommend to use
acceptsInteger((integer) $x);
Loading history...
114 55
        } elseif ($node instanceof Stmt\TraitUse) {
115
            foreach ($node->traits as &$trait) {
116
                $trait = $this->resolveClassName($trait);
117
            }
118
119
            foreach ($node->adaptations as $adaptation) {
120
                if (null !== $adaptation->trait) {
121
                    $adaptation->trait = $this->resolveClassName($adaptation->trait);
122
                }
123
124
                if ($adaptation instanceof Stmt\TraitUseAdaptation\Precedence) {
125
                    foreach ($adaptation->insteadof as &$insteadof) {
126
                        $insteadof = $this->resolveClassName($insteadof);
127
                    }
128
                }
129
            }
130 55
        } elseif ($node instanceof Node\NullableType) {
131
            if ($node->type instanceof Name) {
132
                $node->type = $this->resolveClassName($node->type);
133
            }
134
        }
135 55
    }
136
137 55
    protected function resetState(Name $namespace = null)
138
    {
139 55
        $this->namespace = $namespace;
140 55
        $this->aliases   = array(
141 55
            Stmt\Use_::TYPE_NORMAL   => array(),
142 55
            Stmt\Use_::TYPE_FUNCTION => array(),
143 55
            Stmt\Use_::TYPE_CONSTANT => array(),
144
        );
145 55
    }
146
147 2
    protected function addAlias(Stmt\UseUse $use, $type, Name $prefix = null)
148
    {
149
        // Add prefix for group uses
150 2
        $name = $prefix ? Name::concat($prefix, $use->name) : $use->name;
151
        // Type is determined either by individual element or whole use declaration
152 2
        $type |= $use->type;
153
154
        // Constant names are case sensitive, everything else case insensitive
155 2
        if ($type === Stmt\Use_::TYPE_CONSTANT) {
156
            $aliasName = $use->alias;
157
        } else {
158 2
            $aliasName = strtolower($use->alias);
159
        }
160
161 2
        if (isset($this->aliases[$type][$aliasName])) {
162
            $typeStringMap = array(
163
                Stmt\Use_::TYPE_NORMAL   => '',
164
                Stmt\Use_::TYPE_FUNCTION => 'function ',
165
                Stmt\Use_::TYPE_CONSTANT => 'const ',
166
            );
167
168
            $this->errorHandler->handleError(new Error(
169
                sprintf(
170
                    'Cannot use %s%s as %s because the name is already in use',
171
                    $typeStringMap[$type],
172
                    $name,
173
                    $use->alias
174
                ),
175
                $use->getAttributes()
176
            ));
177
            return;
178
        }
179
180 2
        $this->aliases[$type][$aliasName] = $name;
181 2
    }
182
183
    /** @param Stmt\Function_|Stmt\ClassMethod|Expr\Closure $node */
184 52
    private function resolveSignature($node)
185
    {
186 52
        foreach ($node->params as $param) {
187 7
            if ($param->type instanceof Name) {
188 7
                $param->type = $this->resolveClassName($param->type);
189
            }
190
        }
191
        
192 52
        if ($node->returnType instanceof Name) {
193
            $node->returnType = $this->resolveClassName($node->returnType);
194
        }
195 52
    }
196
197 9
    protected function resolveClassName(Name $name)
198
    {
199
        // don't resolve special class names
200 9
        if (in_array(strtolower($name->toString()), array('self', 'parent', 'static'))) {
201 4
            if (!$name->isUnqualified()) {
202
                $this->errorHandler->handleError(new Error(
203
                    sprintf("'\\%s' is an invalid class name", $name->toString()),
204
                    $name->getAttributes()
205
                ));
206
            }
207
208 4
            return $name;
209
        }
210
211
        // fully qualified names are already resolved
212 7
        if ($name->isFullyQualified()) {
213 4
            return $name;
214
        }
215
216 3
        $aliasName = strtolower($name->getFirst());
217 3
        if (!$name->isRelative() && isset($this->aliases[Stmt\Use_::TYPE_NORMAL][$aliasName])) {
218
            // resolve aliases (for non-relative names)
219 2
            $alias = $this->aliases[Stmt\Use_::TYPE_NORMAL][$aliasName];
220 2
            return FullyQualified::concat($alias, $name->slice(1), $name->getAttributes());
221
        }
222
223
        // if no alias exists prepend current namespace
224 1
        return FullyQualified::concat($this->namespace, $name, $name->getAttributes());
225
    }
226
227 26
    protected function resolveOtherName(Name $name, $type)
228
    {
229
        // fully qualified names are already resolved
230 26
        if ($name->isFullyQualified()) {
231
            return $name;
232
        }
233
234
        // resolve aliases for qualified names
235 26
        $aliasName = strtolower($name->getFirst());
236 26
        if ($name->isQualified() && isset($this->aliases[Stmt\Use_::TYPE_NORMAL][$aliasName])) {
237
            $alias = $this->aliases[Stmt\Use_::TYPE_NORMAL][$aliasName];
238
            return FullyQualified::concat($alias, $name->slice(1), $name->getAttributes());
239
        }
240
241 26
        if ($name->isUnqualified()) {
242 26
            if ($type === Stmt\Use_::TYPE_CONSTANT) {
243
                // constant aliases are case-sensitive, function aliases case-insensitive
244 16
                $aliasName = $name->getFirst();
245
            }
246
247 26
            if (isset($this->aliases[$type][$aliasName])) {
248
                // resolve unqualified aliases
249
                return new FullyQualified($this->aliases[$type][$aliasName], $name->getAttributes());
250
            }
251
252 26
            if (null === $this->namespace) {
253
                // outside of a namespace unaliased unqualified is same as fully qualified
254
                return new FullyQualified($name, $name->getAttributes());
255
            }
256
257
            // unqualified names inside a namespace cannot be resolved at compile-time
258
            // add the namespaced version of the name as an attribute
259 26
            $name->setAttribute(
260 26
                'namespacedName',
261 26
                FullyQualified::concat($this->namespace, $name, $name->getAttributes())
262
            );
263
264 26
            return $name;
265
        }
266
267
        // if no alias exists prepend current namespace
268
        return FullyQualified::concat($this->namespace, $name, $name->getAttributes());
269
    }
270
271 55
    protected function addNamespacedName(Node $node)
272
    {
273 55
        $node->namespacedName = Name::concat($this->namespace, $node->name);
0 ignored issues
show
Bug introduced by
Accessing namespacedName on the interface PhpParser\Node suggest that you code against a concrete implementation. How about adding an instanceof check?

If you access a property on an interface, you most likely code against a concrete implementation of the interface.

Available Fixes

  1. Adding an additional type check:

    interface SomeInterface { }
    class SomeClass implements SomeInterface {
        public $a;
    }
    
    function someFunction(SomeInterface $object) {
        if ($object instanceof SomeClass) {
            $a = $object->a;
        }
    }
    
  2. Changing the type hint:

    interface SomeInterface { }
    class SomeClass implements SomeInterface {
        public $a;
    }
    
    function someFunction(SomeClass $object) {
        $a = $object->a;
    }
    
Loading history...
Bug introduced by
Accessing name on the interface PhpParser\Node suggest that you code against a concrete implementation. How about adding an instanceof check?

If you access a property on an interface, you most likely code against a concrete implementation of the interface.

Available Fixes

  1. Adding an additional type check:

    interface SomeInterface { }
    class SomeClass implements SomeInterface {
        public $a;
    }
    
    function someFunction(SomeInterface $object) {
        if ($object instanceof SomeClass) {
            $a = $object->a;
        }
    }
    
  2. Changing the type hint:

    interface SomeInterface { }
    class SomeClass implements SomeInterface {
        public $a;
    }
    
    function someFunction(SomeClass $object) {
        $a = $object->a;
    }
    
Loading history...
274 55
        $node->namespace = $this->namespace;
0 ignored issues
show
Bug introduced by
Accessing namespace on the interface PhpParser\Node suggest that you code against a concrete implementation. How about adding an instanceof check?

If you access a property on an interface, you most likely code against a concrete implementation of the interface.

Available Fixes

  1. Adding an additional type check:

    interface SomeInterface { }
    class SomeClass implements SomeInterface {
        public $a;
    }
    
    function someFunction(SomeInterface $object) {
        if ($object instanceof SomeClass) {
            $a = $object->a;
        }
    }
    
  2. Changing the type hint:

    interface SomeInterface { }
    class SomeClass implements SomeInterface {
        public $a;
    }
    
    function someFunction(SomeClass $object) {
        $a = $object->a;
    }
    
Loading history...
275 55
    }
276
}
277