1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20 package com.puppycrawl.tools.checkstyle.checks.indentation;
21
22 import com.puppycrawl.tools.checkstyle.api.DetailAST;
23 import com.puppycrawl.tools.checkstyle.api.TokenTypes;
24 import com.puppycrawl.tools.checkstyle.utils.TokenUtil;
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44 public class BlockParentHandler extends AbstractExpressionHandler {
45
46
47
48
49 private static final int[] CHECKED_CHILDREN = {
50 TokenTypes.VARIABLE_DEF,
51 TokenTypes.EXPR,
52 TokenTypes.ANNOTATION,
53 TokenTypes.OBJBLOCK,
54 TokenTypes.LITERAL_BREAK,
55 TokenTypes.LITERAL_RETURN,
56 TokenTypes.LITERAL_THROW,
57 TokenTypes.LITERAL_CONTINUE,
58 TokenTypes.CTOR_CALL,
59 TokenTypes.SUPER_CTOR_CALL,
60 };
61
62
63
64
65
66
67
68
69
70
71
72
73 public BlockParentHandler(IndentationCheck indentCheck,
74 String name, DetailAST ast, AbstractExpressionHandler parent) {
75 super(indentCheck, name, ast, parent);
76 }
77
78
79
80
81
82
83 protected int[] getCheckedChildren() {
84 return CHECKED_CHILDREN.clone();
85 }
86
87
88
89
90
91
92 protected DetailAST getTopLevelAst() {
93 return getMainAst();
94 }
95
96
97
98
99 protected void checkTopLevelToken() {
100 final DetailAST topLevel = getTopLevelAst();
101
102 if (topLevel != null
103 && !getIndent().isAcceptable(expandedTabsColumnNo(topLevel))
104 && isOnStartOfLine(topLevel)) {
105 logError(topLevel, "", expandedTabsColumnNo(topLevel));
106 }
107 }
108
109
110
111
112
113
114 private boolean hasCurlies() {
115 return getLeftCurly() != null && getRightCurly() != null;
116 }
117
118
119
120
121
122
123 protected DetailAST getLeftCurly() {
124 return getMainAst().findFirstToken(TokenTypes.SLIST);
125 }
126
127
128
129
130
131
132 protected DetailAST getRightCurly() {
133 final DetailAST slist = getMainAst().findFirstToken(TokenTypes.SLIST);
134 return slist.findFirstToken(TokenTypes.RCURLY);
135 }
136
137
138
139
140 private void checkLeftCurly() {
141
142
143 final DetailAST lcurly = getLeftCurly();
144 final int lcurlyPos = expandedTabsColumnNo(lcurly);
145
146 if (!curlyIndent().isAcceptable(lcurlyPos) && isOnStartOfLine(lcurly)) {
147 logError(lcurly, "lcurly", lcurlyPos, curlyIndent());
148 }
149 }
150
151
152
153
154
155
156 protected IndentLevel curlyIndent() {
157 final DetailAST lcurly = getLeftCurly();
158 IndentLevel expIndentLevel = new IndentLevel(getIndent(), getBraceAdjustment());
159 if (!isOnStartOfLine(lcurly) || checkIfCodeBlock()) {
160 expIndentLevel = new IndentLevel(getIndent(), 0);
161 }
162 return expIndentLevel;
163 }
164
165
166
167
168
169
170 private boolean checkIfCodeBlock() {
171 return getMainAst().getType() == TokenTypes.SLIST
172 && getParent() instanceof BlockParentHandler
173 && getParent().getParent() instanceof BlockParentHandler;
174 }
175
176
177
178
179
180
181 protected boolean canChildrenBeNested() {
182 return false;
183 }
184
185
186
187
188 private void checkRightCurly() {
189 final DetailAST rcurly = getRightCurly();
190 final int rcurlyPos = expandedTabsColumnNo(rcurly);
191
192 if (!curlyIndent().isAcceptable(rcurlyPos)
193 && isOnStartOfLine(rcurly)) {
194 logError(rcurly, "rcurly", rcurlyPos, curlyIndent());
195 }
196 }
197
198
199
200
201
202
203 protected DetailAST getNonListChild() {
204 return getMainAst().findFirstToken(TokenTypes.RPAREN).getNextSibling();
205 }
206
207
208
209
210 private void checkNonListChild() {
211 final DetailAST nonList = getNonListChild();
212 if (nonList != null) {
213 final IndentLevel expected = new IndentLevel(getIndent(), getBasicOffset());
214 checkExpressionSubtree(nonList, expected, false, false);
215
216 final DetailAST nonListStartAst = getFirstAstNode(nonList);
217 if (nonList != nonListStartAst) {
218 checkExpressionSubtree(nonListStartAst, expected, false, false);
219 }
220 }
221 }
222
223
224
225
226
227
228 protected DetailAST getListChild() {
229 return getMainAst().findFirstToken(TokenTypes.SLIST);
230 }
231
232
233
234
235
236
237 private DetailAST getRightParen() {
238 return getMainAst().findFirstToken(TokenTypes.RPAREN);
239 }
240
241
242
243
244
245
246 private DetailAST getLeftParen() {
247 return getMainAst().findFirstToken(TokenTypes.LPAREN);
248 }
249
250 @Override
251 public void checkIndentation() {
252 checkTopLevelToken();
253
254 checkLeftParen(getLeftParen());
255 checkRightParen(getLeftParen(), getRightParen());
256 if (hasCurlies()) {
257 checkLeftCurly();
258 checkRightCurly();
259 }
260 final DetailAST listChild = getListChild();
261 if (listChild == null) {
262 checkNonListChild();
263 }
264 else {
265
266 if (!hasCurlies() || !TokenUtil.areOnSameLine(getLeftCurly(), getRightCurly())) {
267 checkChildren(listChild,
268 getCheckedChildren(),
269 getChildrenExpectedIndent(),
270 true,
271 canChildrenBeNested());
272 }
273 }
274 }
275
276
277
278
279
280
281 protected IndentLevel getChildrenExpectedIndent() {
282 IndentLevel indentLevel = new IndentLevel(getIndent(), getBasicOffset());
283
284
285
286 if (getIndent().isMultiLevel() && hasCurlies()) {
287 if (isOnStartOfLine(getLeftCurly())) {
288 indentLevel = new IndentLevel(expandedTabsColumnNo(getLeftCurly())
289 + getBasicOffset());
290 }
291 else if (isOnStartOfLine(getRightCurly())) {
292 final IndentLevel level = new IndentLevel(curlyIndent(), getBasicOffset());
293 indentLevel = IndentLevel.addAcceptable(level, level.getFirstIndentLevel()
294 + getLineWrappingIndent());
295 }
296 }
297 if (hasCurlies() && isOnStartOfLine(getLeftCurly())) {
298 indentLevel = IndentLevel.addAcceptable(indentLevel,
299 curlyIndent().getFirstIndentLevel() + getBasicOffset());
300 }
301 return indentLevel;
302 }
303
304 @Override
305 public IndentLevel getSuggestedChildIndent(AbstractExpressionHandler child) {
306 return getChildrenExpectedIndent();
307 }
308
309
310
311
312
313
314
315 private int getLineWrappingIndent() {
316 return getIndentCheck().getLineWrappingIndentation();
317 }
318
319 }