-
-
Notifications
You must be signed in to change notification settings - Fork 439
Expand file tree
/
Copy pathRectifiedAnalyzer.php
More file actions
77 lines (64 loc) · 2.2 KB
/
RectifiedAnalyzer.php
File metadata and controls
77 lines (64 loc) · 2.2 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
<?php
declare(strict_types=1);
namespace Rector\ProcessAnalyzer;
use PhpParser\Node;
use Rector\Contract\Rector\RectorInterface;
use Rector\NodeAnalyzer\ScopeAnalyzer;
use Rector\NodeTypeResolver\Node\AttributeKey;
/**
* This service verify if the Node:
*
* - already applied same Rector rule before current Rector rule on last previous Rector rule.
* - just re-printed but token start still >= 0
*/
final readonly class RectifiedAnalyzer
{
public function __construct(
private ScopeAnalyzer $scopeAnalyzer
) {
}
/**
* @param class-string<RectorInterface> $rectorClass
*/
public function hasRectified(string $rectorClass, Node $node): bool
{
$originalNode = $node->getAttribute(AttributeKey::ORIGINAL_NODE);
if ($this->hasConsecutiveCreatedByRule($rectorClass, $node, $originalNode)) {
return true;
}
return $this->isJustReprintedOverlappedTokenStart($node, $originalNode);
}
/**
* @param class-string<RectorInterface> $rectorClass
*/
private function hasConsecutiveCreatedByRule(string $rectorClass, Node $node, ?Node $originalNode): bool
{
$createdByRuleNode = $originalNode ?? $node;
/** @var class-string<RectorInterface>[] $createdByRule */
$createdByRule = $createdByRuleNode->getAttribute(AttributeKey::CREATED_BY_RULE) ?? [];
if ($createdByRule === []) {
return false;
}
return end($createdByRule) === $rectorClass;
}
private function isJustReprintedOverlappedTokenStart(Node $node, ?Node $originalNode): bool
{
if ($originalNode instanceof Node) {
return false;
}
/**
* Start token pos must be < 0 to continue, as the node and parent node just re-printed
*
* - Node's original node is null
* - Parent Node's original node is null
*/
$startTokenPos = $node->getStartTokenPos();
if ($startTokenPos >= 0) {
return true;
}
if (! $this->scopeAnalyzer->isRefreshable($node)) {
return false;
}
return ! in_array(AttributeKey::SCOPE, array_keys($node->getAttributes()), true);
}
}