blob: d3cc7300de41c8a57caa52304181d03289c967c7 [file] [log] [blame]
tom0eb04ca2014-08-25 14:34:51 -07001<?xml version="1.0"?>
alshabibab984662014-12-04 18:56:18 -08002<!--
Brian O'Connora09fe5b2017-08-03 21:12:30 -07003 ~ Copyright 2014-present Open Networking Foundation
alshabibab984662014-12-04 18:56:18 -08004 ~
5 ~ Licensed under the Apache License, Version 2.0 (the "License");
6 ~ you may not use this file except in compliance with the License.
7 ~ You may obtain a copy of the License at
8 ~
9 ~ http://www.apache.org/licenses/LICENSE-2.0
10 ~
11 ~ Unless required by applicable law or agreed to in writing, software
12 ~ distributed under the License is distributed on an "AS IS" BASIS,
13 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 ~ See the License for the specific language governing permissions and
15 ~ limitations under the License.
16 -->
tom0eb04ca2014-08-25 14:34:51 -070017<!DOCTYPE module PUBLIC
18 "-//Puppy Crawl//DTD Check Configuration 1.3//EN"
19 "http://www.puppycrawl.com/dtds/configuration_1_3.dtd">
20
21
22<!--
23
24 Checkstyle configuration that checks the sun coding conventions from:
25
26 - the Java Language Specification at
27 http://java.sun.com/docs/books/jls/second_edition/html/index.html
28
29 - the Sun Code Conventions at http://java.sun.com/docs/codeconv/
30
31 - the Javadoc guidelines at
32 http://java.sun.com/j2se/javadoc/writingdoccomments/index.html
33
34 - the JDK Api documentation http://java.sun.com/j2se/docs/api/index.html
35
36 - some best practices
37
38 Checkstyle is very configurable. Be sure to read the documentation at
39 http://checkstyle.sf.net (or in your downloaded distribution).
40
41 Most Checks are configurable, be sure to consult the documentation.
42
43 To completely disable a check, just comment it out or delete it from the file.
44
45 Finally, it is worth reading the documentation.
46
47-->
48
49
50<!--
51 The default severity setting in checkstyle is 'error', so some
52 of the rules below are configured to change the severity to
Ray Milkey85267002016-11-16 11:06:35 -080053 'warning'. Over time, these 'warning' settings should be
tom0eb04ca2014-08-25 14:34:51 -070054 removed as more of the ONOS source code is modified to
55 follow the recommended rules.
56-->
57
58
tom0eb04ca2014-08-25 14:34:51 -070059<module name="Checker">
60 <!--
61 If you set the basedir property below, then all reported file
62 names will be relative to the specified directory. See
63 http://checkstyle.sourceforge.net/5.x/config.html#Checker
64
65 <property name="basedir" value="${basedir}"/>
66 -->
67 <!-- Checks that a package-info.java file exists for each package. -->
68 <!-- See http://checkstyle.sf.net/config_javadoc.html#JavadocPackage -->
Ray Milkeyccda0b52015-10-30 16:51:06 -070069 <module name="JavadocPackage"/>
tom0eb04ca2014-08-25 14:34:51 -070070
71 <!-- Checks whether files end with a new line. -->
72 <!-- See http://checkstyle.sf.net/config_misc.html#NewlineAtEndOfFile -->
73 <module name="NewlineAtEndOfFile"/>
74
75 <!-- Checks that property files contain the same keys. -->
76 <!-- See http://checkstyle.sf.net/config_misc.html#Translation -->
77 <module name="Translation"/>
78
79 <!-- Checks for Size Violations. -->
80 <!-- See http://checkstyle.sf.net/config_sizes.html -->
81 <module name="FileLength"/>
82
83 <!-- Checks for whitespace -->
84 <!-- See http://checkstyle.sf.net/config_whitespace.html -->
85 <module name="FileTabCharacter"/>
86
87 <!-- Miscellaneous other checks. -->
88 <!-- See http://checkstyle.sf.net/config_misc.html -->
89 <module name="RegexpSingleline">
90 <property name="format" value="\s+$"/>
91 <property name="minimum" value="0"/>
92 <property name="maximum" value="0"/>
93 <property name="message" value="Line has trailing spaces."/>
94 </module>
95
Madan Jampanic27b6b22016-02-05 11:36:31 -080096 <module name="RegexpMultiline">
97 <property name="format" value="\r\n"/>
98 <property name="maximum" value="0"/>
99 <property name="message" value="Line has windows line endings."/>
100 </module>
101
Ray Milkey6a51cb92018-03-06 09:03:03 -0800102 <!-- Don't allow usage of deprecated Throwables propagate methods -->
103 <module name="RegexpSingleline">
104 <property name="format" value="Throwables.propagate.*\("/>
105 <property name="minimum" value="0"/>
106 <property name="maximum" value="0"/>
107 <property name="message" value="Throwables propagate methods have been deprecated."/>
108 </module>
109
Ray Milkeyca188042018-04-05 16:57:01 -0700110 <!-- Don't allow usage of Oracle JDK only javafx classes -->
111 <module name="RegexpSingleline">
112 <property name="format" value="javafx.*"/>
113 <property name="minimum" value="0"/>
114 <property name="maximum" value="0"/>
115 <property name="message" value="javafx classes are not supported by all JDKs."/>
116 </module>
117
tom0eb04ca2014-08-25 14:34:51 -0700118 <!-- Checks for Headers -->
119 <!-- See http://checkstyle.sf.net/config_header.html -->
120 <!-- <module name="Header"> -->
121 <!-- <property name="headerFile" value="${checkstyle.header.file}"/> -->
122 <!-- <property name="fileExtensions" value="java"/> -->
123 <!-- </module> -->
124
Ray Milkey85267002016-11-16 11:06:35 -0800125 <module name="RegexpHeader">
Yuta HIGUCHIe7e71a82018-05-18 16:36:43 -0700126 <!-- The following line is different for maven due to how the maven checkstyle plugin works -->
Ray Milkey85267002016-11-16 11:06:35 -0800127 <property name="headerFile" value="tools/build/conf/src/main/resources/onos/onos-java.header"/>
Ray Milkey2d572dd2017-04-14 10:01:24 -0700128 <property name="fileExtensions" value="java"/>
Ray Milkey85267002016-11-16 11:06:35 -0800129 </module>
130
Yuta HIGUCHIe7e71a82018-05-18 16:36:43 -0700131 <module name="SuppressWarningsFilter" />
Ray Milkey85267002016-11-16 11:06:35 -0800132
Yuta HIGUCHIe7e71a82018-05-18 16:36:43 -0700133 <module name="SuppressWithPlainTextCommentFilter"/>
tom0eb04ca2014-08-25 14:34:51 -0700134
135 <module name="TreeWalker">
Yuta HIGUCHIe7e71a82018-05-18 16:36:43 -0700136 <module name="SuppressWarningsHolder" />
tom0eb04ca2014-08-25 14:34:51 -0700137
Yuta HIGUCHIe7e71a82018-05-18 16:36:43 -0700138 <module name="SuppressionCommentFilter">
139 <property name="offCommentFormat"
140 value="(CHECKSTYLE\:OFF|Generated by the protocol buffer compiler.)"/>
141 <property name="onCommentFormat" value="CHECKSTYLE:ON"/>
142 </module>
143
144 <module name="SuppressWithNearbyCommentFilter">
145 <property name="commentFormat" value="CHECKSTYLE IGNORE THIS LINE"/>
146 <property name="checkFormat" value=".*"/>
147 <property name="influenceFormat" value="0"/>
148 </module>
149
150 <!-- Example: // CHECKSTYLE IGNORE FinalClass FOR NEXT 1 LINES -->
151 <module name="SuppressWithNearbyCommentFilter">
152 <property name="commentFormat"
153 value="CHECKSTYLE IGNORE (\w+) FOR NEXT (\d+) LINES"/>
154 <property name="checkFormat" value="$1"/>
155 <property name="influenceFormat" value="$2"/>
156 </module>
157
tom0eb04ca2014-08-25 14:34:51 -0700158 <!-- Checks for Javadoc comments. -->
159 <!-- See http://checkstyle.sf.net/config_javadoc.html -->
160 <module name="JavadocMethod">
Ray Milkey0bb1e102016-11-10 14:51:27 -0800161 <property name="scope" value="package"/>
Yuta HIGUCHI9312a802017-06-12 20:01:27 -0700162 <property name="allowMissingJavadoc" value="true"/>
tom0eb04ca2014-08-25 14:34:51 -0700163 <property name="allowUndeclaredRTE" value="true"/>
Yuta HIGUCHI9312a802017-06-12 20:01:27 -0700164 <property name="suppressLoadErrors" value="true"/>
tom0eb04ca2014-08-25 14:34:51 -0700165 </module>
166 <module name="JavadocType">
167 <property name="severity" value="warning"/>
168 </module>
169 <module name="JavadocVariable">
170 <!-- Suppress check for private member Javadocs.
171 Possibly revist fixing these. -->
172 <property name="scope" value="public"/>
173 <property name="severity" value="warning"/>
174 </module>
175 <module name="JavadocStyle"/>
Brian O'Connor8b5edbc2016-04-05 15:45:25 -0700176 <!-- @author tag should not be used -->
tom0eb04ca2014-08-25 14:34:51 -0700177 <module name="WriteTag">
178 <property name="tag" value="@author"/>
179 <property name="tagFormat" value="\S"/>
180 <property name="severity" value="ignore"/>
181 <property name="tagSeverity" value="error"/>
182 </module>
183
Jonathan Hart51539b82015-10-29 09:53:04 -0700184 <module name="AbbreviationAsWordInName">
Brian O'Connor8b5edbc2016-04-05 15:45:25 -0700185 <property name="allowedAbbreviationLength" value="2"/>
Jonathan Hart51539b82015-10-29 09:53:04 -0700186 </module>
tom0eb04ca2014-08-25 14:34:51 -0700187
188 <!-- Checks for Naming Conventions. -->
189 <!-- See http://checkstyle.sf.net/config_naming.html -->
190 <module name="ConstantName">
191 <!-- ONOS allows the name "log" for static final Loggers -->
192 <property name="format"
193 value="^log$|^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$"/>
194 </module>
195 <module name="LocalFinalVariableName"/>
196
197 <module name="LocalVariableName"/>
198
199 <module name="MemberName"/>
200 <module name="MethodName"/>
Jonathan Hart317f4762015-11-09 16:05:36 -0800201 <module name="PackageName">
202 <property name="format" value="^[a-z]+(\.[a-z][a-z0-9]*)*$"/>
203 </module>
tom0eb04ca2014-08-25 14:34:51 -0700204 <module name="ParameterName"/>
205 <module name="StaticVariableName"/>
206 <module name="TypeName"/>
207
208 <!-- Checks for imports -->
209 <!-- See http://checkstyle.sf.net/config_import.html -->
210 <module name="AvoidStarImport">
Brian O'Connor8b5edbc2016-04-05 15:45:25 -0700211 <property name="allowStaticMemberImports" value="true"/>
tom0eb04ca2014-08-25 14:34:51 -0700212 </module>
213 <module name="IllegalImport"/>
214 <!-- defaults to sun.* packages -->
215 <module name="RedundantImport"/>
216 <module name="UnusedImports"/>
217
218
219 <!-- Checks for Size Violations. -->
220 <!-- See http://checkstyle.sf.net/config_sizes.html -->
221 <module name="LineLength">
222 <!-- ONOS standard usage is 80 columns, but we allow up
223 to 120 to not break the build. -->
224 <property name="max" value="120"/>
225 <property name="ignorePattern" value="^import"/>
226 </module>
227 <module name="MethodLength">
228 <property name="max" value="200"/>
229 </module>
230
alshabib6b5cfec2014-09-18 17:42:18 -0700231 <module name="ParameterNumber">
alshabibba5ac482014-10-02 17:15:20 -0700232 <property name="max" value="15"/>
alshabib6b5cfec2014-09-18 17:42:18 -0700233 <property name="tokens" value="CTOR_DEF"/>
234 </module>
tom0eb04ca2014-08-25 14:34:51 -0700235 <!-- Checks for whitespace -->
236 <!-- See http://checkstyle.sf.net/config_whitespace.html -->
237 <module name="EmptyForIteratorPad"/>
238 <module name="GenericWhitespace"/>
239 <module name="MethodParamPad"/>
240 <module name="NoWhitespaceAfter"/>
241 <module name="NoWhitespaceBefore"/>
242
243 <!-- Disabled for ONOS. Default rules specify undesired behavior for the '?' operator -->
244 <!-- <module name="OperatorWrap"/> -->
245 <module name="ParenPad"/>
246 <module name="TypecastParenPad"/>
247 <module name="WhitespaceAfter"/>
248 <module name="WhitespaceAround">
249 <property name="allowEmptyConstructors" value="true"/>
250 <property name="allowEmptyMethods" value="true"/>
251 </module>
252
253
tom0eb04ca2014-08-25 14:34:51 -0700254 <!-- Modifier Checks -->
255 <!-- See http://checkstyle.sf.net/config_modifiers.html -->
256 <module name="ModifierOrder"/>
257
258 <!-- Disabled for ONOS to allow use of public -->
259 <!-- modifiers in interfaces. -->
260 <!-- <module name="RedundantModifier"/> -->
261
262
263 <!-- Checks for blocks. You know, those {}'s -->
264 <!-- See http://checkstyle.sf.net/config_blocks.html -->
265 <module name="AvoidNestedBlocks">
266 <!-- ONOS alows declarations inside of switch case blocks -->
267 <property name="allowInSwitchCase" value="true"/>
268 </module>
HIGUCHI Yuta94a9eed2015-09-25 15:20:04 -0700269 <module name="EmptyBlock">
270 <!-- allow empty block, as long as there's some comment -->
271 <property name="option" value="text"/>
272 </module>
tom0eb04ca2014-08-25 14:34:51 -0700273 <module name="LeftCurly"/>
274 <module name="NeedBraces"/>
275 <module name="RightCurly"/>
276
277 <!-- Checks for common coding problems -->
278 <!-- See http://checkstyle.sf.net/config_coding.html -->
279 <!-- ONOS allows conditional operators -->
280 <!-- <module name="AvoidInlineConditionals"/> -->
281 <module name="EmptyStatement"/>
282 <module name="EqualsHashCode"/>
283
284 <module name="HiddenField">
285 <property name="ignoreSetter" value="true"/>
286 <property name="ignoreConstructorParameter" value="true"/>
287 </module>
288
289 <module name="IllegalInstantiation"/>
290 <module name="InnerAssignment"/>
291
292 <!-- Many violations of this rule present, revist in a
293 subsequent round of cleanups -->
294 <!-- <module name="MagicNumber"/> -->
295 <module name="MissingSwitchDefault"/>
296
tom0eb04ca2014-08-25 14:34:51 -0700297 <module name="SimplifyBooleanExpression"/>
298 <module name="SimplifyBooleanReturn"/>
299
300 <!-- Checks for class design -->
301 <!-- See http://checkstyle.sf.net/config_design.html -->
302 <!-- ONOS produces many warnings of this type.
303 Fixing all of these is outside the scope of the current cleanup. -->
304 <!-- <module name="DesignForExtension"/> -->
305 <module name="FinalClass"/>
306
307 <module name="HideUtilityClassConstructor"/>
308
309 <module name="InterfaceIsType"/>
310
311 <module name="VisibilityModifier">
312 <property name="severity" value="warning"/>
313 </module>
314
315
tom0eb04ca2014-08-25 14:34:51 -0700316 <!-- Miscellaneous other checks. -->
317 <!-- See http://checkstyle.sf.net/config_misc.html -->
318 <module name="ArrayTypeStyle"/>
319
320 <!-- Many violations of this rule currently, too many to fix
321 in the current cleanup. -->
322 <!-- <module name="FinalParameters"/> -->
323 <!-- ONOS allows TODO markers in checked in source code -->
324 <!-- <module name="TodoComment"/> -->
325 <module name="UpperEll"/>
tom0eb04ca2014-08-25 14:34:51 -0700326 </module>
Brian O'Connor8b5edbc2016-04-05 15:45:25 -0700327
328</module>