forked from PHPCSStandards/PHP_CodeSniffer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathObjectOperatorIndentSniff.php
More file actions
201 lines (167 loc) · 6.85 KB
/
Copy pathObjectOperatorIndentSniff.php
File metadata and controls
201 lines (167 loc) · 6.85 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
<?php
/**
* Checks that object operators are indented correctly.
*
* @author Greg Sherwood <gsherwood@squiz.net>
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
* @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\PEAR\Sniffs\WhiteSpace;
use PHP_CodeSniffer\Files\File;
use PHP_CodeSniffer\Sniffs\Sniff;
class ObjectOperatorIndentSniff implements Sniff
{
/**
* The number of spaces code should be indented.
*
* @var integer
*/
public $indent = 4;
/**
* Indicates whether multilevel indenting is allowed.
*
* @var boolean
*/
public $multilevel = false;
/**
* Tokens to listen for.
*
* @var array
*/
private $targets = [
T_OBJECT_OPERATOR,
T_NULLSAFE_OBJECT_OPERATOR,
];
/**
* Returns an array of tokens this test wants to listen for.
*
* @return array<int|string>
*/
public function register()
{
return $this->targets;
}//end register()
/**
* Processes this test, when one of its tokens is encountered.
*
* @param \PHP_CodeSniffer\Files\File $phpcsFile All the tokens found in the document.
* @param int $stackPtr The position of the current token
* in the stack passed in $tokens.
*
* @return void
*/
public function process(File $phpcsFile, $stackPtr)
{
$tokens = $phpcsFile->getTokens();
// Make sure this is the first object operator in a chain of them.
$start = $phpcsFile->findStartOfStatement($stackPtr);
$prev = $phpcsFile->findPrevious($this->targets, ($stackPtr - 1), $start);
if ($prev !== false) {
return;
}
// Make sure this is a chained call.
$end = $phpcsFile->findEndOfStatement($stackPtr);
$next = $phpcsFile->findNext($this->targets, ($stackPtr + 1), $end);
if ($next === false) {
// Not a chained call.
return;
}
// Determine correct indent.
for ($i = ($start - 1); $i >= 0; $i--) {
if ($tokens[$i]['line'] !== $tokens[$start]['line']) {
$i++;
break;
}
}
$baseIndent = 0;
if ($i >= 0 && $tokens[$i]['code'] === T_WHITESPACE) {
$baseIndent = $tokens[$i]['length'];
}
$baseIndent += $this->indent;
// Determine the scope of the original object operator.
$origBrackets = null;
if (isset($tokens[$stackPtr]['nested_parenthesis']) === true) {
$origBrackets = $tokens[$stackPtr]['nested_parenthesis'];
}
$origConditions = null;
if (isset($tokens[$stackPtr]['conditions']) === true) {
$origConditions = $tokens[$stackPtr]['conditions'];
}
// Check indentation of each object operator in the chain.
// If the first object operator is on a different line than
// the variable, make sure we check its indentation too.
if ($tokens[$stackPtr]['line'] > $tokens[$start]['line']) {
$next = $stackPtr;
}
$previousIndent = $baseIndent;
while ($next !== false) {
// Make sure it is in the same scope, otherwise don't check indent.
$brackets = null;
if (isset($tokens[$next]['nested_parenthesis']) === true) {
$brackets = $tokens[$next]['nested_parenthesis'];
}
$conditions = null;
if (isset($tokens[$next]['conditions']) === true) {
$conditions = $tokens[$next]['conditions'];
}
if ($origBrackets === $brackets && $origConditions === $conditions) {
// Make sure it starts a line, otherwise don't check indent.
$prev = $phpcsFile->findPrevious(T_WHITESPACE, ($next - 1), $stackPtr, true);
$indent = $tokens[($next - 1)];
if ($tokens[$prev]['line'] !== $tokens[$next]['line']
&& $indent['code'] === T_WHITESPACE
) {
if ($indent['line'] === $tokens[$next]['line']) {
$foundIndent = strlen($indent['content']);
} else {
$foundIndent = 0;
}
$minIndent = $previousIndent;
$maxIndent = $previousIndent;
$expectedIndent = $previousIndent;
if ($this->multilevel === true) {
$minIndent = max(($previousIndent - $this->indent), $baseIndent);
$maxIndent = ($previousIndent + $this->indent);
$expectedIndent = min(max($foundIndent, $minIndent), $maxIndent);
}
if ($foundIndent < $minIndent || $foundIndent > $maxIndent) {
$error = 'Object operator not indented correctly; expected %s spaces but found %s';
$data = [
$expectedIndent,
$foundIndent,
];
$fix = $phpcsFile->addFixableError($error, $next, 'Incorrect', $data);
if ($fix === true) {
$spaces = str_repeat(' ', $expectedIndent);
if ($foundIndent === 0) {
$phpcsFile->fixer->addContentBefore($next, $spaces);
} else {
$phpcsFile->fixer->replaceToken(($next - 1), $spaces);
}
}
}
$previousIndent = $expectedIndent;
}//end if
// It cant be the last thing on the line either.
$content = $phpcsFile->findNext(T_WHITESPACE, ($next + 1), null, true);
if ($tokens[$content]['line'] !== $tokens[$next]['line']) {
$error = 'Object operator must be at the start of the line, not the end';
$fix = $phpcsFile->addFixableError($error, $next, 'StartOfLine');
if ($fix === true) {
$phpcsFile->fixer->beginChangeset();
for ($x = ($next + 1); $x < $content; $x++) {
$phpcsFile->fixer->replaceToken($x, '');
}
$phpcsFile->fixer->addNewlineBefore($next);
$phpcsFile->fixer->endChangeset();
}
}
}//end if
$next = $phpcsFile->findNext(
$this->targets,
($next + 1),
$end
);
}//end while
}//end process()
}//end class