forked from rectorphp/rector-src
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRectorNodeTraverser.php
More file actions
327 lines (279 loc) · 11 KB
/
RectorNodeTraverser.php
File metadata and controls
327 lines (279 loc) · 11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
<?php
declare(strict_types=1);
namespace Rector\PhpParser\NodeTraverser;
use LogicException;
use PhpParser\Node;
use PhpParser\Node\Expr;
use PhpParser\Node\Stmt;
use PhpParser\NodeTraverserInterface;
use PhpParser\NodeVisitor;
use Rector\Configuration\ConfigurationRuleFilter;
use Rector\Contract\Rector\RectorInterface;
use Rector\Exception\ShouldNotHappenException;
use Rector\PhpParser\Node\CustomNode\FileWithoutNamespace;
use Rector\PhpParser\Node\FileNode;
use Rector\VersionBonding\ComposerPackageConstraintFilter;
use Rector\VersionBonding\PhpVersionedFilter;
use Webmozart\Assert\Assert;
/**
* Based on native NodeTraverser class, but heavily customized for Rector needs.
*
* The main differences are:
* - no leaveNode(), as we do all in enterNode() that calls refactor() method
* - cached visitors per node class for performance, e.g. when we find rules for Class_ node, they're cached for next time
* - immutability features, register Rector rules once, then use; no changes on the fly
*
* @see \Rector\Tests\PhpParser\NodeTraverser\RectorNodeTraverserTest
* @internal No BC promise on this class, it might change any time.
*/
final class RectorNodeTraverser implements NodeTraverserInterface
{
/**
* @var RectorInterface[]
*/
private array $visitors = [];
private bool $stopTraversal;
private bool $areNodeVisitorsPrepared = false;
/**
* @var array<class-string<Node>, RectorInterface[]>
*/
private array $visitorsPerNodeClass = [];
/**
* @param RectorInterface[] $rectors
*/
public function __construct(
private array $rectors,
private readonly PhpVersionedFilter $phpVersionedFilter,
private readonly ComposerPackageConstraintFilter $composerPackageConstraintFilter,
private readonly ConfigurationRuleFilter $configurationRuleFilter,
) {
}
public function addVisitor(NodeVisitor $visitor): void
{
throw new ShouldNotHappenException('The immutable node traverser does not support adding visitors.');
}
public function removeVisitor(NodeVisitor $visitor): void
{
throw new ShouldNotHappenException('The immutable node traverser does not support removing visitors.');
}
/**
* @param Node[] $nodes
* @return Node[]
*/
public function traverse(array $nodes): array
{
$this->prepareNodeVisitors();
$this->stopTraversal = false;
foreach ($this->visitors as $visitor) {
if (null !== $return = $visitor->beforeTraverse($nodes)) {
$nodes = $return;
}
}
$nodes = $this->traverseArray($nodes);
for ($i = \count($this->visitors) - 1; $i >= 0; --$i) {
$visitor = $this->visitors[$i];
if (null !== $return = $visitor->afterTraverse($nodes)) {
$nodes = $return;
}
}
return $nodes;
}
/**
* @param RectorInterface[] $rectors
* @api used in tests to update the active rules
*
* @internal Used only in Rector core, not supported outside. Might change any time.
*/
public function refreshPhpRectors(array $rectors): void
{
Assert::allIsInstanceOf($rectors, RectorInterface::class);
$this->rectors = $rectors;
$this->visitors = [];
$this->visitorsPerNodeClass = [];
$this->areNodeVisitorsPrepared = false;
$this->prepareNodeVisitors();
}
/**
* @return RectorInterface[]
*
* @api used in tests
*/
public function getVisitorsForNode(Node $node): array
{
$nodeClass = $node::class;
if (! isset($this->visitorsPerNodeClass[$nodeClass])) {
$this->visitorsPerNodeClass[$nodeClass] = [];
/** @var RectorInterface $visitor */
foreach ($this->visitors as $visitor) {
foreach ($visitor->getNodeTypes() as $nodeType) {
// BC layer matching
if ($nodeType === FileWithoutNamespace::class && $nodeClass === FileNode::class) {
$this->visitorsPerNodeClass[$nodeClass][] = $visitor;
continue;
}
if (is_a($nodeClass, $nodeType, true)) {
$this->visitorsPerNodeClass[$nodeClass][] = $visitor;
continue 2;
}
}
}
}
return $this->visitorsPerNodeClass[$nodeClass];
}
private function traverseNode(Node $node): void
{
foreach ($node->getSubNodeNames() as $name) {
$subNode = $node->{$name};
if (\is_array($subNode)) {
$node->{$name} = $this->traverseArray($subNode);
if ($this->stopTraversal) {
break;
}
continue;
}
if (! $subNode instanceof Node) {
continue;
}
$traverseChildren = true;
$currentNodeVisitors = $this->getVisitorsForNode($subNode);
foreach ($currentNodeVisitors as $currentNodeVisitor) {
$return = $currentNodeVisitor->enterNode($subNode);
if ($return !== null) {
if ($return instanceof Node) {
$originalSubNodeClass = $subNode::class;
$this->ensureReplacementReasonable($subNode, $return);
$subNode = $return;
$node->{$name} = $return;
if ($originalSubNodeClass !== $subNode::class) {
// stop traversing as node type changed and visitors won't work
continue 2;
}
} elseif ($return === NodeVisitor::DONT_TRAVERSE_CHILDREN) {
$traverseChildren = false;
} elseif ($return === NodeVisitor::DONT_TRAVERSE_CURRENT_AND_CHILDREN) {
$traverseChildren = false;
break;
} elseif ($return === NodeVisitor::STOP_TRAVERSAL) {
$this->stopTraversal = true;
break 2;
} elseif ($return === NodeVisitor::REPLACE_WITH_NULL) {
$node->{$name} = null;
continue 2;
} else {
throw new LogicException('enterNode() returned invalid value of type ' . gettype($return));
}
}
}
if ($traverseChildren) {
$this->traverseNode($subNode);
if ($this->stopTraversal) {
break;
}
}
}
}
/**
* @param Node[] $nodes
* @return Node[]
*/
private function traverseArray(array $nodes): array
{
$doNodes = [];
foreach ($nodes as $i => $node) {
if (! $node instanceof Node) {
if (\is_array($node)) {
throw new LogicException('Invalid node structure: Contains nested arrays');
}
continue;
}
$traverseChildren = true;
$currentNodeVisitors = $this->getVisitorsForNode($node);
foreach ($currentNodeVisitors as $currentNodeVisitor) {
$return = $currentNodeVisitor->enterNode($node);
if ($return !== null) {
if ($return instanceof Node) {
$originalNodeNodeClass = $node::class;
$this->ensureReplacementReasonable($node, $return);
$nodes[$i] = $node = $return;
if ($originalNodeNodeClass !== $return::class) {
// stop traversing as node type changed and visitors won't work
continue 2;
}
} elseif (\is_array($return)) {
$doNodes[] = [$i, $return];
continue 2;
} elseif ($return === NodeVisitor::REMOVE_NODE) {
$doNodes[] = [$i, []];
continue 2;
} elseif ($return === NodeVisitor::DONT_TRAVERSE_CHILDREN) {
$traverseChildren = false;
} elseif ($return === NodeVisitor::DONT_TRAVERSE_CURRENT_AND_CHILDREN) {
$traverseChildren = false;
break;
} elseif ($return === NodeVisitor::STOP_TRAVERSAL) {
$this->stopTraversal = true;
break 2;
} elseif ($return === NodeVisitor::REPLACE_WITH_NULL) {
throw new LogicException(
'REPLACE_WITH_NULL can not be used if the parent structure is an array'
);
} else {
throw new LogicException('enterNode() returned invalid value of type ' . gettype($return));
}
}
}
if ($traverseChildren) {
$this->traverseNode($node);
if ($this->stopTraversal) {
break;
}
}
}
if ($doNodes !== []) {
while ([$i, $replace] = array_pop($doNodes)) {
array_splice($nodes, $i, 1, $replace);
}
}
return $nodes;
}
private function ensureReplacementReasonable(Node $old, Node $new): void
{
if ($old instanceof Stmt) {
if ($new instanceof Expr) {
throw new LogicException(
sprintf('Trying to replace statement (%s) ', $old->getType()) . sprintf(
'with expression (%s). Are you missing a ',
$new->getType()
) . 'Stmt_Expression wrapper?'
);
}
return;
}
if ($new instanceof Stmt) {
throw new LogicException(
sprintf('Trying to replace expression (%s) ', $old->getType()) . sprintf(
'with statement (%s)',
$new->getType()
)
);
}
}
/**
* This must happen after $this->configuration is set after ProcessCommand::execute() is run, otherwise we get default false positives.
*
* This should be removed after https://github.com/rectorphp/rector/issues/5584 is resolved
*/
private function prepareNodeVisitors(): void
{
if ($this->areNodeVisitorsPrepared) {
return;
}
// filter out by PHP version
$this->visitors = $this->phpVersionedFilter->filter($this->rectors);
// filter out by composer package constraint
$this->visitors = $this->composerPackageConstraintFilter->filter($this->visitors);
// filter by configuration
$this->visitors = $this->configurationRuleFilter->filter($this->visitors);
$this->areNodeVisitorsPrepared = true;
}
}