-
-
Notifications
You must be signed in to change notification settings - Fork 194
Expand file tree
/
Copy pathArrowFunctionDeclarationSniff.php
More file actions
213 lines (163 loc) · 6.18 KB
/
Copy pathArrowFunctionDeclarationSniff.php
File metadata and controls
213 lines (163 loc) · 6.18 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
<?php declare(strict_types = 1);
namespace SlevomatCodingStandard\Sniffs\Functions;
use PHP_CodeSniffer\Files\File;
use PHP_CodeSniffer\Sniffs\Sniff;
use SlevomatCodingStandard\Helpers\FixerHelper;
use SlevomatCodingStandard\Helpers\FunctionHelper;
use SlevomatCodingStandard\Helpers\SniffSettingsHelper;
use SlevomatCodingStandard\Helpers\TokenHelper;
use function preg_match;
use function sprintf;
use function str_repeat;
use function strlen;
use function strpos;
use const T_FN;
use const T_FN_ARROW;
class ArrowFunctionDeclarationSniff implements Sniff
{
public const CODE_INCORRECT_SPACES_AFTER_KEYWORD = 'IncorrectSpacesAfterKeyword';
public const CODE_INCORRECT_SPACES_BEFORE_ARROW = 'IncorrectSpacesBeforeArrow';
public const CODE_INCORRECT_SPACES_AFTER_ARROW = 'IncorrectSpacesAfterArrow';
public const CODE_DISALLOWED_RETURN_TYPE_HINT = 'DisallowedReturnTypeHint';
public int $spacesCountAfterKeyword = 1;
public int $spacesCountBeforeArrow = 1;
public int $spacesCountAfterArrow = 1;
public bool $allowMultiLine = false;
public bool $disallowReturnTypeHint = false;
/**
* @return array<int, (int|string)>
*/
public function register(): array
{
return [
T_FN,
];
}
public function process(File $phpcsFile, int $arrowFunctionPointer): void
{
$this->spacesCountAfterKeyword = SniffSettingsHelper::normalizeInteger($this->spacesCountAfterKeyword);
$this->spacesCountBeforeArrow = SniffSettingsHelper::normalizeInteger($this->spacesCountBeforeArrow);
$this->spacesCountAfterArrow = SniffSettingsHelper::normalizeInteger($this->spacesCountAfterArrow);
$this->checkSpacesAfterKeyword($phpcsFile, $arrowFunctionPointer);
$arrowPointer = TokenHelper::findNext($phpcsFile, T_FN_ARROW, $arrowFunctionPointer);
$this->checkReturnTypeHint($phpcsFile, $arrowFunctionPointer, $arrowPointer);
$this->checkSpacesBeforeArrow($phpcsFile, $arrowPointer);
$this->checkSpacesAfterArrow($phpcsFile, $arrowPointer);
}
private function checkReturnTypeHint(File $phpcsFile, int $arrowFunctionPointer, int $arrowPointer): void
{
if (!$this->disallowReturnTypeHint) {
return;
}
$returnTypeHint = FunctionHelper::findReturnTypeHint($phpcsFile, $arrowFunctionPointer);
if ($returnTypeHint === null) {
return;
}
$fix = $phpcsFile->addFixableError(
'Arrow function must not have return type hint.',
$returnTypeHint->getStartPointer(),
self::CODE_DISALLOWED_RETURN_TYPE_HINT,
);
if (!$fix) {
return;
}
$colonPointer = TokenHelper::findPreviousEffective($phpcsFile, $returnTypeHint->getStartPointer() - 1);
$pointerBeforeColon = TokenHelper::findPreviousEffective($phpcsFile, $colonPointer - 1);
$phpcsFile->fixer->beginChangeset();
FixerHelper::removeBetween($phpcsFile, $pointerBeforeColon, $arrowPointer);
if ($this->spacesCountBeforeArrow > 0) {
FixerHelper::addBefore($phpcsFile, $arrowPointer, str_repeat(' ', $this->spacesCountBeforeArrow));
}
$phpcsFile->fixer->endChangeset();
}
private function checkSpacesAfterKeyword(File $phpcsFile, int $arrowFunctionPointer): void
{
$pointerAfter = TokenHelper::findNextNonWhitespace($phpcsFile, $arrowFunctionPointer + 1);
$spaces = TokenHelper::getContent($phpcsFile, $arrowFunctionPointer + 1, $pointerAfter - 1);
if ($this->allowMultiLine && strpos($spaces, $phpcsFile->eolChar) === 0) {
return;
}
$actualSpaces = strlen($spaces);
if (
$actualSpaces === $this->spacesCountAfterKeyword
&& (
$this->spacesCountAfterKeyword === 0
|| preg_match('~^ +$~', $spaces) === 1
)
) {
return;
}
$fix = $phpcsFile->addFixableError(
$this->formatErrorMessage('after "fn" keyword', $this->spacesCountAfterKeyword),
$arrowFunctionPointer,
self::CODE_INCORRECT_SPACES_AFTER_KEYWORD,
);
if (!$fix) {
return;
}
$this->fixSpaces($phpcsFile, $arrowFunctionPointer, $pointerAfter, $this->spacesCountAfterKeyword);
}
private function checkSpacesBeforeArrow(File $phpcsFile, int $arrowPointer): void
{
$pointerBefore = TokenHelper::findPreviousNonWhitespace($phpcsFile, $arrowPointer - 1);
$spaces = TokenHelper::getContent($phpcsFile, $pointerBefore + 1, $arrowPointer - 1);
if ($this->allowMultiLine && strpos($spaces, $phpcsFile->eolChar) === 0) {
return;
}
$actualSpaces = strlen($spaces);
if (
$actualSpaces === $this->spacesCountBeforeArrow
&& (
$this->spacesCountBeforeArrow === 0
|| preg_match('~^ +$~', $spaces) === 1
)
) {
return;
}
$fix = $phpcsFile->addFixableError(
$this->formatErrorMessage('before =>', $this->spacesCountBeforeArrow),
$arrowPointer,
self::CODE_INCORRECT_SPACES_BEFORE_ARROW,
);
if (!$fix) {
return;
}
$this->fixSpaces($phpcsFile, $pointerBefore, $arrowPointer, $this->spacesCountBeforeArrow);
}
private function checkSpacesAfterArrow(File $phpcsFile, int $arrowPointer): void
{
$pointerAfter = TokenHelper::findNextNonWhitespace($phpcsFile, $arrowPointer + 1);
$spaces = TokenHelper::getContent($phpcsFile, $arrowPointer + 1, $pointerAfter - 1);
if ($this->allowMultiLine && strpos($spaces, $phpcsFile->eolChar) === 0) {
return;
}
$actualSpaces = strlen($spaces);
if ($actualSpaces === $this->spacesCountAfterArrow && ($this->spacesCountAfterArrow === 0 || preg_match('~^ +$~', $spaces) === 1)) {
return;
}
$fix = $phpcsFile->addFixableError(
$this->formatErrorMessage('after =>', $this->spacesCountAfterArrow),
$arrowPointer,
self::CODE_INCORRECT_SPACES_AFTER_ARROW,
);
if (!$fix) {
return;
}
$this->fixSpaces($phpcsFile, $arrowPointer, $pointerAfter, $this->spacesCountAfterArrow);
}
private function formatErrorMessage(string $suffix, int $requiredSpaces): string
{
return $requiredSpaces === 0
? sprintf('There must be no whitespace %s.', $suffix)
: sprintf('There must be exactly %d whitespace%s %s.', $requiredSpaces, $requiredSpaces !== 1 ? 's' : '', $suffix);
}
private function fixSpaces(File $phpcsFile, int $pointerBefore, int $pointerAfter, int $requiredSpaces): void
{
$phpcsFile->fixer->beginChangeset();
if ($requiredSpaces > 0) {
FixerHelper::add($phpcsFile, $pointerBefore, str_repeat(' ', $requiredSpaces));
}
FixerHelper::removeBetween($phpcsFile, $pointerBefore, $pointerAfter);
$phpcsFile->fixer->endChangeset();
}
}