forked from rectorphp/rector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMoveVariableDeclarationNearReferenceRector.php
408 lines (334 loc) · 11.5 KB
/
MoveVariableDeclarationNearReferenceRector.php
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
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
<?php
declare(strict_types=1);
namespace Rector\CodeQualityStrict\Rector\Variable;
use Nette\Utils\Strings;
use PhpParser\Node;
use PhpParser\Node\Expr;
use PhpParser\Node\Expr\ArrayDimFetch;
use PhpParser\Node\Expr\Assign;
use PhpParser\Node\Expr\FuncCall;
use PhpParser\Node\Expr\MethodCall;
use PhpParser\Node\Expr\PropertyFetch;
use PhpParser\Node\Expr\StaticCall;
use PhpParser\Node\Expr\StaticPropertyFetch;
use PhpParser\Node\Expr\Variable;
use PhpParser\Node\Stmt\Do_;
use PhpParser\Node\Stmt\Else_;
use PhpParser\Node\Stmt\ElseIf_;
use PhpParser\Node\Stmt\Expression;
use PhpParser\Node\Stmt\For_;
use PhpParser\Node\Stmt\Foreach_;
use PhpParser\Node\Stmt\If_;
use PhpParser\Node\Stmt\Switch_;
use PhpParser\Node\Stmt\TryCatch;
use PhpParser\Node\Stmt\While_;
use Rector\Core\Rector\AbstractRector;
use Rector\NodeNestingScope\NodeFinder\ScopeAwareNodeFinder;
use Rector\NodeTypeResolver\Node\AttributeKey;
use Symplify\RuleDocGenerator\ValueObject\CodeSample\CodeSample;
use Symplify\RuleDocGenerator\ValueObject\RuleDefinition;
/**
* @see \Rector\Tests\CodeQualityStrict\Rector\Variable\MoveVariableDeclarationNearReferenceRector\MoveVariableDeclarationNearReferenceRectorTest
*/
final class MoveVariableDeclarationNearReferenceRector extends AbstractRector
{
/**
* @var ScopeAwareNodeFinder
*/
private $scopeAwareNodeFinder;
public function __construct(ScopeAwareNodeFinder $scopeAwareNodeFinder)
{
$this->scopeAwareNodeFinder = $scopeAwareNodeFinder;
}
public function getRuleDefinition(): RuleDefinition
{
return new RuleDefinition(
'Move variable declaration near its reference',
[
new CodeSample(
<<<'CODE_SAMPLE'
$var = 1;
if ($condition === null) {
return $var;
}
CODE_SAMPLE
,
<<<'CODE_SAMPLE'
if ($condition === null) {
$var = 1;
return $var;
}
CODE_SAMPLE
),
]);
}
/**
* @return array<class-string<Node>>
*/
public function getNodeTypes(): array
{
return [Variable::class];
}
/**
* @param Variable $node
*/
public function refactor(Node $node): ?Node
{
$parent = $node->getAttribute(AttributeKey::PARENT_NODE);
if (! ($parent instanceof Assign && $parent->var === $node)) {
return null;
}
if ($parent->expr instanceof ArrayDimFetch) {
return null;
}
$expression = $parent->getAttribute(AttributeKey::PARENT_NODE);
if (! $expression instanceof Expression) {
return null;
}
if ($this->isUsedAsArraykeyOrInsideIfCondition($expression, $node)) {
return null;
}
if ($this->hasPropertyInExpr($expression, $parent->expr)) {
return null;
}
if ($this->shouldSkipReAssign($expression, $parent)) {
return null;
}
$variable = $this->getUsageInNextStmts($expression, $node);
if (! $variable instanceof Variable) {
return null;
}
/** @var Node $usageStmt */
$usageStmt = $variable->getAttribute(AttributeKey::CURRENT_STATEMENT);
if ($this->isInsideLoopStmts($usageStmt)) {
return null;
}
$this->addNodeBeforeNode($expression, $usageStmt);
$this->removeNode($expression);
return $node;
}
private function isUsedAsArraykeyOrInsideIfCondition(Expression $expression, Variable $variable): bool
{
$parentExpression = $expression->getAttribute(AttributeKey::PARENT_NODE);
if ($this->isUsedAsArrayKey($parentExpression, $variable)) {
return true;
}
return $this->isInsideCondition($expression);
}
private function hasPropertyInExpr(Expression $expression, Expr $expr): bool
{
return (bool) $this->betterNodeFinder->findFirst($expr, function (Node $node): bool {
return $node instanceof PropertyFetch || $node instanceof StaticPropertyFetch;
});
}
private function shouldSkipReAssign(Expression $expression, Assign $assign): bool
{
if ($this->hasReAssign($expression, $assign->var)) {
return true;
}
return $this->hasReAssign($expression, $assign->expr);
}
private function getUsageInNextStmts(Expression $expression, Variable $variable): ?Variable
{
/** @var Node|null $next */
$next = $expression->getAttribute(AttributeKey::NEXT_NODE);
if (! $next instanceof Node) {
return null;
}
if ($this->hasCall($next)) {
return null;
}
$countFound = $this->getCountFound($next, $variable);
if ($countFound === 0) {
return null;
}
if ($countFound >= 2) {
return null;
}
$nextVariable = $this->getSameVarName([$next], $variable);
if ($nextVariable instanceof Variable) {
return $nextVariable;
}
return $this->getSameVarNameInNexts($next, $variable);
}
private function isInsideLoopStmts(Node $node): bool
{
$loopNode = $this->betterNodeFinder->findParentTypes(
$node,
[For_::class, While_::class, Foreach_::class, Do_::class]
);
return (bool) $loopNode;
}
private function isUsedAsArrayKey(?Node $node, Variable $variable): bool
{
if (! $node instanceof Node) {
return false;
}
/** @var ArrayDimFetch[] $arrayDimFetches */
$arrayDimFetches = $this->betterNodeFinder->findInstanceOf($node, ArrayDimFetch::class);
foreach ($arrayDimFetches as $arrayDimFetch) {
/** @var Node|null $dim */
$dim = $arrayDimFetch->dim;
if (! $dim instanceof Node) {
continue;
}
$isFoundInKey = (bool) $this->betterNodeFinder->findFirst($dim, function (Node $node) use (
$variable
): bool {
return $this->nodeComparator->areNodesEqual($node, $variable);
});
if ($isFoundInKey) {
return true;
}
}
return false;
}
private function isInsideCondition(Expression $expression): bool
{
return (bool) $this->scopeAwareNodeFinder->findParentType(
$expression,
[If_::class, Else_::class, ElseIf_::class]
);
}
private function hasReAssign(Expression $expression, Expr $expr): bool
{
$next = $expression->getAttribute(AttributeKey::NEXT_NODE);
$exprValues = $this->betterNodeFinder->find($expr, function (Node $node): bool {
return $node instanceof Variable;
});
if ($exprValues === []) {
return false;
}
while ($next) {
foreach ($exprValues as $exprValue) {
$isReAssign = (bool) $this->betterNodeFinder->findFirst($next, function (Node $node): bool {
$parent = $node->getAttribute(AttributeKey::PARENT_NODE);
$node = $this->mayBeArrayDimFetch($node);
if (! $parent instanceof Assign) {
return false;
}
return (string) $this->getName($node) === (string) $this->getName($parent->var);
});
if (! $isReAssign) {
continue;
}
return true;
}
$next = $next->getAttribute(AttributeKey::NEXT_NODE);
}
return false;
}
private function hasCall(Node $node): bool
{
return (bool) $this->betterNodeFinder->findFirst($node, function (Node $n): bool {
if ($n instanceof StaticCall) {
return true;
}
if ($n instanceof MethodCall) {
return true;
}
if (! $n instanceof FuncCall) {
return false;
}
$funcName = $this->getName($n);
if ($funcName === null) {
return false;
}
return Strings::startsWith($funcName, 'ob_');
});
}
private function getCountFound(Node $node, Variable $variable): int
{
$countFound = 0;
while ($node) {
$isFound = (bool) $this->getSameVarName([$node], $variable);
if ($isFound) {
++$countFound;
}
$countFound = $this->countWithElseIf($node, $variable, $countFound);
$countFound = $this->countWithTryCatch($node, $variable, $countFound);
$countFound = $this->countWithSwitchCase($node, $variable, $countFound);
/** @var Node|null $node */
$node = $node->getAttribute(AttributeKey::NEXT_NODE);
}
return $countFound;
}
/**
* @param array<int, Node|null> $multiNodes
*/
private function getSameVarName(array $multiNodes, Variable $variable): ?Variable
{
foreach ($multiNodes as $multiNode) {
if ($multiNode === null) {
continue;
}
/** @var Variable|null $found */
$found = $this->betterNodeFinder->findFirst($multiNode, function (Node $n) use ($variable): bool {
$n = $this->mayBeArrayDimFetch($n);
if (! $n instanceof Variable) {
return false;
}
return $this->isName($n, (string) $this->getName($variable));
});
if ($found !== null) {
return $found;
}
}
return null;
}
private function getSameVarNameInNexts(Node $node, Variable $variable): ?Variable
{
while ($node) {
$found = $this->getSameVarName([$node], $variable);
if ($found instanceof Variable) {
return $found;
}
/** @var Node|null $node */
$node = $node->getAttribute(AttributeKey::NEXT_NODE);
}
return null;
}
private function mayBeArrayDimFetch(Node $node): Node
{
$parent = $node->getAttribute(AttributeKey::PARENT_NODE);
if ($parent instanceof ArrayDimFetch) {
$node = $parent->var;
}
return $node;
}
private function countWithElseIf(Node $node, Variable $variable, int $countFound): int
{
if (! $node instanceof If_) {
return $countFound;
}
$isFoundElseIf = (bool) $this->getSameVarName($node->elseifs, $variable);
$isFoundElse = (bool) $this->getSameVarName([$node->else], $variable);
if ($isFoundElseIf || $isFoundElse) {
++$countFound;
}
return $countFound;
}
private function countWithTryCatch(Node $node, Variable $variable, int $countFound): int
{
if (! $node instanceof TryCatch) {
return $countFound;
}
$isFoundInCatch = (bool) $this->getSameVarName($node->catches, $variable);
$isFoundInFinally = (bool) $this->getSameVarName([$node->finally], $variable);
if ($isFoundInCatch || $isFoundInFinally) {
++$countFound;
}
return $countFound;
}
private function countWithSwitchCase(Node $node, Variable $variable, int $countFound): int
{
if (! $node instanceof Switch_) {
return $countFound;
}
$isFoundInCases = (bool) $this->getSameVarName($node->cases, $variable);
if ($isFoundInCases) {
++$countFound;
}
return $countFound;
}
}