blob: 9460b7c48b77ddce24d562513ad098f44b7bf16c [file] [log] [blame]
Yuta HIGUCHIf9808442014-03-20 15:56:50 -07001<?xml version="1.0"?>
2<!DOCTYPE module PUBLIC
Ray Milkey3f5ef562014-03-25 17:11:19 -07003 "-//Puppy Crawl//DTD Check Configuration 1.3//EN"
4 "http://www.puppycrawl.com/dtds/configuration_1_3.dtd">
Yuta HIGUCHIf9808442014-03-20 15:56:50 -07005
6
7<!--
8
9 Checkstyle configuration that checks the sun coding conventions from:
10
11 - the Java Language Specification at
12 http://java.sun.com/docs/books/jls/second_edition/html/index.html
13
14 - the Sun Code Conventions at http://java.sun.com/docs/codeconv/
15
16 - the Javadoc guidelines at
17 http://java.sun.com/j2se/javadoc/writingdoccomments/index.html
18
19 - the JDK Api documentation http://java.sun.com/j2se/docs/api/index.html
20
21 - some best practices
22
23 Checkstyle is very configurable. Be sure to read the documentation at
24 http://checkstyle.sf.net (or in your downloaded distribution).
25
26 Most Checks are configurable, be sure to consult the documentation.
27
28 To completely disable a check, just comment it out or delete it from the file.
29
30 Finally, it is worth reading the documentation.
31
32-->
33
Ray Milkeyb5716c52014-04-07 11:38:27 -070034
35<!--
36 The default severity setting in checkstyle is 'error', so some
37 of the rules below are configured to change the severity to
38 'warning'. Over time, these 'warning' settings should be
39 removed as more of the ONOS source code is modified to
40 follow the recommended rules.
41-->
42
43
44
Yuta HIGUCHIf9808442014-03-20 15:56:50 -070045<module name="Checker">
46 <!--
47 If you set the basedir property below, then all reported file
48 names will be relative to the specified directory. See
49 http://checkstyle.sourceforge.net/5.x/config.html#Checker
50
51 <property name="basedir" value="${basedir}"/>
52 -->
53 <!-- Checks that a package-info.java file exists for each package. -->
54 <!-- See http://checkstyle.sf.net/config_javadoc.html#JavadocPackage -->
55 <!-- ONOS does not currently supply package level Javadoc information
Ray Milkeyb5716c52014-04-07 11:38:27 -070056 in package-info files -->
Yuta HIGUCHIf9808442014-03-20 15:56:50 -070057 <!-- <module name="JavadocPackage"/> -->
58
59 <!-- Checks whether files end with a new line. -->
60 <!-- See http://checkstyle.sf.net/config_misc.html#NewlineAtEndOfFile -->
Ray Milkey0f913a02014-04-07 20:58:17 -070061 <module name="NewlineAtEndOfFile"/>
Yuta HIGUCHIf9808442014-03-20 15:56:50 -070062
63 <!-- Checks that property files contain the same keys. -->
64 <!-- See http://checkstyle.sf.net/config_misc.html#Translation -->
65 <module name="Translation"/>
Ray Milkey3f5ef562014-03-25 17:11:19 -070066
Yuta HIGUCHIf9808442014-03-20 15:56:50 -070067 <!-- Checks for Size Violations. -->
68 <!-- See http://checkstyle.sf.net/config_sizes.html -->
Ray Milkey0b122ed2014-04-14 10:06:03 -070069 <module name="FileLength"/>
Ray Milkey3f5ef562014-03-25 17:11:19 -070070
Yuta HIGUCHIf9808442014-03-20 15:56:50 -070071 <!-- Checks for whitespace -->
72 <!-- See http://checkstyle.sf.net/config_whitespace.html -->
73 <module name="FileTabCharacter"/>
74
75 <!-- Miscellaneous other checks. -->
76 <!-- See http://checkstyle.sf.net/config_misc.html -->
77 <module name="RegexpSingleline">
Ray Milkey3f5ef562014-03-25 17:11:19 -070078 <property name="format" value="\s+$"/>
79 <property name="minimum" value="0"/>
80 <property name="maximum" value="0"/>
81 <property name="message" value="Line has trailing spaces."/>
Yuta HIGUCHIf9808442014-03-20 15:56:50 -070082 </module>
83
84 <!-- Checks for Headers -->
85 <!-- See http://checkstyle.sf.net/config_header.html -->
86 <!-- <module name="Header"> -->
87 <!-- <property name="headerFile" value="${checkstyle.header.file}"/> -->
88 <!-- <property name="fileExtensions" value="java"/> -->
89 <!-- </module> -->
90
Ray Milkey5df613b2014-04-15 10:50:56 -070091 <module name="SuppressionCommentFilter">
92 <property name="offCommentFormat" value="CHECKSTYLE:OFF"/>
93 <property name="onCommentFormat" value="CHECKSTYLE:ON"/>
94 </module>
Yuta HIGUCHIf9808442014-03-20 15:56:50 -070095 <module name="TreeWalker">
96
Ray Milkey5df613b2014-04-15 10:50:56 -070097 <module name="FileContentsHolder"/>
Yuta HIGUCHIf9808442014-03-20 15:56:50 -070098 <!-- Checks for Javadoc comments. -->
99 <!-- See http://checkstyle.sf.net/config_javadoc.html -->
Ray Milkeyb5716c52014-04-07 11:38:27 -0700100 <module name="JavadocMethod">
101 <property name="severity" value="warning"/>
102 </module>
103 <module name="JavadocType">
104 <property name="severity" value="warning"/>
105 </module>
Yuta HIGUCHIf9808442014-03-20 15:56:50 -0700106 <module name="JavadocVariable">
Ray Milkey3f5ef562014-03-25 17:11:19 -0700107 <!-- Suppress check for private member Javadocs.
108 Possibly revist fixing these. -->
109 <property name="scope" value="public"/>
Ray Milkeyb5716c52014-04-07 11:38:27 -0700110 <property name="severity" value="warning"/>
Ray Milkey3f5ef562014-03-25 17:11:19 -0700111 </module>
Ray Milkeyb41100a2014-04-10 10:42:15 -0700112 <module name="JavadocStyle"/>
Yuta HIGUCHIf9808442014-03-20 15:56:50 -0700113
114
115 <!-- Checks for Naming Conventions. -->
116 <!-- See http://checkstyle.sf.net/config_naming.html -->
Ray Milkeyec497712014-03-20 17:51:22 -0700117 <module name="ConstantName">
Ray Milkey3f5ef562014-03-25 17:11:19 -0700118 <!-- ONOS allows the name "log" for static final Loggers -->
119 <property name="format"
120 value="^log$|^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$"/>
121 </module>
Yuta HIGUCHIf9808442014-03-20 15:56:50 -0700122 <module name="LocalFinalVariableName"/>
Yuta HIGUCHIf9808442014-03-20 15:56:50 -0700123
Ray Milkey2476cac2014-04-08 11:03:21 -0700124 <module name="LocalVariableName"/>
Ray Milkeyb5716c52014-04-07 11:38:27 -0700125
Ray Milkey2476cac2014-04-08 11:03:21 -0700126 <module name="MemberName"/>
Ray Milkey7531a342014-04-11 15:08:12 -0700127 <module name="MethodName"/>
Ray Milkeyb5716c52014-04-07 11:38:27 -0700128 <module name="PackageName"/>
Ray Milkey9526d6f2014-04-10 14:54:15 -0700129 <module name="ParameterName"/>
Ray Milkey94b41b52014-04-10 11:13:06 -0700130 <module name="StaticVariableName"/>
Ray Milkeyb5716c52014-04-07 11:38:27 -0700131 <module name="TypeName"/>
Yuta HIGUCHIf9808442014-03-20 15:56:50 -0700132
133 <!-- Checks for imports -->
134 <!-- See http://checkstyle.sf.net/config_import.html -->
135 <module name="AvoidStarImport"/>
Ray Milkey3f5ef562014-03-25 17:11:19 -0700136 <module name="IllegalImport"/>
137 <!-- defaults to sun.* packages -->
Yuta HIGUCHIf9808442014-03-20 15:56:50 -0700138 <module name="RedundantImport"/>
139 <module name="UnusedImports"/>
140
141
142 <!-- Checks for Size Violations. -->
143 <!-- See http://checkstyle.sf.net/config_sizes.html -->
144 <module name="LineLength">
Ray Milkey3f5ef562014-03-25 17:11:19 -0700145 <!-- ONOS standard usage is 80 columns, but we allow up
146 to 120 to not break the build. -->
147 <property name="max" value="120"/>
Ray Milkeyb5716c52014-04-07 11:38:27 -0700148 <property name="severity" value="warning"/>
Yuta HIGUCHIf9808442014-03-20 15:56:50 -0700149 </module>
Ray Milkeyb5716c52014-04-07 11:38:27 -0700150 <module name="MethodLength">
151 <property name="severity" value="warning"/>
152 </module>
153
154 <module name="ParameterNumber">
155 <property name="severity" value="warning"/>
156 </module>
Yuta HIGUCHIf9808442014-03-20 15:56:50 -0700157
158
159 <!-- Checks for whitespace -->
160 <!-- See http://checkstyle.sf.net/config_whitespace.html -->
Ray Milkey7f1567c2014-04-08 13:53:32 -0700161 <module name="EmptyForIteratorPad"/>
Yuta HIGUCHIf9808442014-03-20 15:56:50 -0700162 <module name="GenericWhitespace"/>
163 <module name="MethodParamPad"/>
Ray Milkey7f1567c2014-04-08 13:53:32 -0700164 <module name="NoWhitespaceAfter"/>
165 <module name="NoWhitespaceBefore"/>
Ray Milkeyb5716c52014-04-07 11:38:27 -0700166
Ray Milkey3f5ef562014-03-25 17:11:19 -0700167 <!-- Disabled for ONOS. Default rules specify undesired behavior for the '?' operator -->
Yuta HIGUCHIf9808442014-03-20 15:56:50 -0700168 <!-- <module name="OperatorWrap"/> -->
169 <module name="ParenPad"/>
170 <module name="TypecastParenPad"/>
Ray Milkey7f1567c2014-04-08 13:53:32 -0700171 <module name="WhitespaceAfter"/>
172 <module name="WhitespaceAround"/>
Ray Milkeyb5716c52014-04-07 11:38:27 -0700173
Yuta HIGUCHIf9808442014-03-20 15:56:50 -0700174
175
176 <!-- Modifier Checks -->
177 <!-- See http://checkstyle.sf.net/config_modifiers.html -->
Ray Milkeyec838942014-04-09 11:28:43 -0700178 <module name="ModifierOrder"/>
Ray Milkeyb5716c52014-04-07 11:38:27 -0700179
Ray Milkey3f5ef562014-03-25 17:11:19 -0700180 <!-- Disabled for ONOS to allow use of public -->
181 <!-- modifiers in interfaces. -->
182 <!-- <module name="RedundantModifier"/> -->
Yuta HIGUCHIf9808442014-03-20 15:56:50 -0700183
184
185 <!-- Checks for blocks. You know, those {}'s -->
186 <!-- See http://checkstyle.sf.net/config_blocks.html -->
187 <module name="AvoidNestedBlocks">
Ray Milkey3f5ef562014-03-25 17:11:19 -0700188 <!-- ONOS alows declarations inside of switch case blocks -->
Yuta HIGUCHIf9808442014-03-20 15:56:50 -0700189 <property name="allowInSwitchCase" value="true"/>
Yuta HIGUCHIf9808442014-03-20 15:56:50 -0700190 </module>
Ray Milkey1aa71f82014-04-08 16:23:24 -0700191 <module name="EmptyBlock"/>
Ray Milkeyb5716c52014-04-07 11:38:27 -0700192 <module name="LeftCurly"/>
Ray Milkeyb29e6262014-04-09 16:02:14 -0700193 <module name="NeedBraces"/>
Ray Milkeyb5716c52014-04-07 11:38:27 -0700194 <module name="RightCurly"/>
Yuta HIGUCHIf9808442014-03-20 15:56:50 -0700195
196 <!-- Checks for common coding problems -->
197 <!-- See http://checkstyle.sf.net/config_coding.html -->
Ray Milkey3f5ef562014-03-25 17:11:19 -0700198 <!-- ONOS allows conditional operators -->
Yuta HIGUCHIf9808442014-03-20 15:56:50 -0700199 <!-- <module name="AvoidInlineConditionals"/> -->
Ray Milkey043daa22014-04-08 14:13:16 -0700200 <module name="EmptyStatement"/>
Yuta HIGUCHIf9808442014-03-20 15:56:50 -0700201 <module name="EqualsHashCode"/>
Ray Milkeyb5716c52014-04-07 11:38:27 -0700202
203 <module name="HiddenField">
Ray Milkey5df613b2014-04-15 10:50:56 -0700204 <property name="ignoreSetter" value="true"/>
205 <property name="ignoreConstructorParameter" value="true"/>
Ray Milkeyb5716c52014-04-07 11:38:27 -0700206 </module>
207
Yuta HIGUCHIf9808442014-03-20 15:56:50 -0700208 <module name="IllegalInstantiation"/>
Ray Milkeyb6e0ac82014-04-09 13:21:42 -0700209 <module name="InnerAssignment"/>
Ray Milkeyb5716c52014-04-07 11:38:27 -0700210
Ray Milkey3f5ef562014-03-25 17:11:19 -0700211 <!-- Many violations of this rule present, revist in a
212 subsequent round of cleanups -->
Yuta HIGUCHIf9808442014-03-20 15:56:50 -0700213 <!-- <module name="MagicNumber"/> -->
Ray Milkey0b122ed2014-04-14 10:06:03 -0700214 <module name="MissingSwitchDefault"/>
Ray Milkeyb5716c52014-04-07 11:38:27 -0700215
216 <module name="RedundantThrows">
Ray Milkeya11fcb72014-04-11 11:34:22 -0700217 <property name="allowSubclasses" value="true"/>
218 </module>
Ray Milkeyb5716c52014-04-07 11:38:27 -0700219
Ray Milkey6c4f2fe2014-04-11 09:47:23 -0700220 <module name="SimplifyBooleanExpression"/>
Ray Milkey4985f212014-04-10 16:57:05 -0700221 <module name="SimplifyBooleanReturn"/>
Yuta HIGUCHIf9808442014-03-20 15:56:50 -0700222
223 <!-- Checks for class design -->
224 <!-- See http://checkstyle.sf.net/config_design.html -->
Ray Milkey3f5ef562014-03-25 17:11:19 -0700225 <!-- ONOS produces many warnings of this type.
226 Fixing all of these is outside the scope of the current cleanup. -->
Yuta HIGUCHIf9808442014-03-20 15:56:50 -0700227 <!-- <module name="DesignForExtension"/> -->
Ray Milkey1584ec82014-04-10 11:58:30 -0700228 <module name="FinalClass"/>
Ray Milkeyb5716c52014-04-07 11:38:27 -0700229
Ray Milkeya2e21462014-04-10 13:21:44 -0700230 <module name="HideUtilityClassConstructor"/>
Ray Milkeyb5716c52014-04-07 11:38:27 -0700231
Yuta HIGUCHIf9808442014-03-20 15:56:50 -0700232 <module name="InterfaceIsType"/>
Ray Milkeyb5716c52014-04-07 11:38:27 -0700233
234 <module name="VisibilityModifier">
235 <property name="severity" value="warning"/>
236 </module>
237
Yuta HIGUCHIf9808442014-03-20 15:56:50 -0700238
239
240 <!-- Miscellaneous other checks. -->
241 <!-- See http://checkstyle.sf.net/config_misc.html -->
Ray Milkey45614c52014-04-07 16:30:54 -0700242 <module name="ArrayTypeStyle"/>
Ray Milkeyb5716c52014-04-07 11:38:27 -0700243
Ray Milkey3f5ef562014-03-25 17:11:19 -0700244 <!-- Many violations of this rule currently, too many to fix
245 in the current cleanup. -->
Yuta HIGUCHIf9808442014-03-20 15:56:50 -0700246 <!-- <module name="FinalParameters"/> -->
Ray Milkey3f5ef562014-03-25 17:11:19 -0700247 <!-- ONOS allows TODO markers in checked in source code -->
Yuta HIGUCHIf9808442014-03-20 15:56:50 -0700248 <!-- <module name="TodoComment"/> -->
249 <module name="UpperEll"/>
250
Ray Milkeyb5716c52014-04-07 11:38:27 -0700251 </module>
Yuta HIGUCHIf9808442014-03-20 15:56:50 -0700252
Ray Milkeyb5716c52014-04-07 11:38:27 -0700253 </module>