forked from PHP-CS-Fixer/PHP-CS-Fixer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathYieldFromArrayToYieldsFixer.php
189 lines (156 loc) · 6.31 KB
/
YieldFromArrayToYieldsFixer.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
<?php
declare(strict_types=1);
/*
* This file is part of PHP CS Fixer.
*
* (c) Fabien Potencier <fabien@symfony.com>
* Dariusz Rumiński <dariusz.ruminski@gmail.com>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
namespace PhpCsFixer\Fixer\ArrayNotation;
use PhpCsFixer\AbstractFixer;
use PhpCsFixer\FixerDefinition\CodeSample;
use PhpCsFixer\FixerDefinition\FixerDefinition;
use PhpCsFixer\FixerDefinition\FixerDefinitionInterface;
use PhpCsFixer\Tokenizer\CT;
use PhpCsFixer\Tokenizer\Token;
use PhpCsFixer\Tokenizer\Tokens;
/**
* @author Kuba Werłos <werlos@gmail.com>
*/
final class YieldFromArrayToYieldsFixer extends AbstractFixer
{
public function getDefinition(): FixerDefinitionInterface
{
return new FixerDefinition(
'Yield from array must be unpacked to series of yields.',
[
new CodeSample('<?php function generate() {
yield from [
1,
2,
3,
];
}
'),
],
'The conversion will make the array in `yield from` changed in arrays of 1 less dimension.',
'The rule is risky in case of `yield from` being used multiple times within single function scope, while using list-alike data sources (e.g. `function foo() { yield from ["a"]; yield from ["b"]; }`). It only matters when consuming such iterator with key-value context, because set of yielded keys may be changed after applying this rule.'
);
}
public function isRisky(): bool
{
return true;
}
public function isCandidate(Tokens $tokens): bool
{
return $tokens->isTokenKindFound(T_YIELD_FROM);
}
/**
* {@inheritdoc}
*
* Must run before BlankLineBeforeStatementFixer, NoExtraBlankLinesFixer, NoMultipleStatementsPerLineFixer, NoWhitespaceInBlankLineFixer, StatementIndentationFixer.
* Must run after ReturnToYieldFromFixer.
*/
public function getPriority(): int
{
return 0;
}
protected function applyFix(\SplFileInfo $file, Tokens $tokens): void
{
/**
* @var array<int, Token> $inserts
*/
$inserts = [];
foreach ($this->getYieldsFromToUnpack($tokens) as $index => [$startIndex, $endIndex]) {
$tokens->clearTokenAndMergeSurroundingWhitespace($index);
if ($tokens[$startIndex]->equals('(')) {
$prevStartIndex = $tokens->getPrevMeaningfulToken($startIndex);
$tokens->clearTokenAndMergeSurroundingWhitespace($prevStartIndex); // clear `array` from `array(`
}
$tokens->clearTokenAndMergeSurroundingWhitespace($startIndex);
$tokens->clearTokenAndMergeSurroundingWhitespace($endIndex);
$arrayHasTrailingComma = false;
$startIndex = $tokens->getNextMeaningfulToken($startIndex);
$inserts[$startIndex] = [new Token([T_YIELD, 'yield']), new Token([T_WHITESPACE, ' '])];
foreach ($this->findArrayItemCommaIndex(
$tokens,
$startIndex,
$tokens->getPrevMeaningfulToken($endIndex),
) as $commaIndex) {
$nextItemIndex = $tokens->getNextMeaningfulToken($commaIndex);
if ($nextItemIndex < $endIndex) {
$inserts[$nextItemIndex] = [new Token([T_YIELD, 'yield']), new Token([T_WHITESPACE, ' '])];
$tokens[$commaIndex] = new Token(';');
} else {
$arrayHasTrailingComma = true;
// array has trailing comma - we replace it with `;` (as it's best fit to put it)
$tokens[$commaIndex] = new Token(';');
}
}
// there was a trailing comma, so we do not need original `;` after initial array structure
if (true === $arrayHasTrailingComma) {
$tokens->clearTokenAndMergeSurroundingWhitespace($tokens->getNextMeaningfulToken($endIndex));
}
}
$tokens->insertSlices($inserts);
}
/**
* @return iterable<int, array<int>>
*/
private function getYieldsFromToUnpack(Tokens $tokens): iterable
{
$tokensCount = $tokens->count();
$index = 0;
while (++$index < $tokensCount) {
if (!$tokens[$index]->isGivenKind(T_YIELD_FROM)) {
continue;
}
$prevIndex = $tokens->getPrevMeaningfulToken($index);
if (!$tokens[$prevIndex]->equalsAny([';', '{', '}', [T_OPEN_TAG]])) {
continue;
}
$arrayStartIndex = $tokens->getNextMeaningfulToken($index);
if (!$tokens[$arrayStartIndex]->isGivenKind([T_ARRAY, CT::T_ARRAY_SQUARE_BRACE_OPEN])) {
continue;
}
if ($tokens[$arrayStartIndex]->isGivenKind(T_ARRAY)) {
$startIndex = $tokens->getNextTokenOfKind($arrayStartIndex, ['(']);
$endIndex = $tokens->findBlockEnd(Tokens::BLOCK_TYPE_PARENTHESIS_BRACE, $startIndex);
} else {
$startIndex = $arrayStartIndex;
$endIndex = $tokens->findBlockEnd(Tokens::BLOCK_TYPE_ARRAY_SQUARE_BRACE, $startIndex);
}
// is there empty "yield from []" ?
if ($endIndex === $tokens->getNextMeaningfulToken($startIndex)) {
continue;
}
// is there any nested "yield from"?
if ([] !== $tokens->findGivenKind(T_YIELD_FROM, $startIndex, $endIndex)) {
continue;
}
yield $index => [$startIndex, $endIndex];
}
}
/**
* @return iterable<int>
*/
private function findArrayItemCommaIndex(Tokens $tokens, int $startIndex, int $endIndex): iterable
{
for ($index = $startIndex; $index <= $endIndex; ++$index) {
$token = $tokens[$index];
// skip nested (), [], {} constructs
$blockDefinitionProbe = Tokens::detectBlockType($token);
if (null !== $blockDefinitionProbe && true === $blockDefinitionProbe['isStart']) {
$index = $tokens->findBlockEnd($blockDefinitionProbe['type'], $index);
continue;
}
if (!$tokens[$index]->equals(',')) {
continue;
}
yield $index;
}
}
}