blob: 412842cbcdd52344249be431c674aace616a1ba5 [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
91 <module name="TreeWalker">
92
93 <!-- Checks for Javadoc comments. -->
94 <!-- See http://checkstyle.sf.net/config_javadoc.html -->
Ray Milkeyb5716c52014-04-07 11:38:27 -070095 <module name="JavadocMethod">
96 <property name="severity" value="warning"/>
97 </module>
98 <module name="JavadocType">
99 <property name="severity" value="warning"/>
100 </module>
Yuta HIGUCHIf9808442014-03-20 15:56:50 -0700101 <module name="JavadocVariable">
Ray Milkey3f5ef562014-03-25 17:11:19 -0700102 <!-- Suppress check for private member Javadocs.
103 Possibly revist fixing these. -->
104 <property name="scope" value="public"/>
Ray Milkeyb5716c52014-04-07 11:38:27 -0700105 <property name="severity" value="warning"/>
Ray Milkey3f5ef562014-03-25 17:11:19 -0700106 </module>
Ray Milkeyb41100a2014-04-10 10:42:15 -0700107 <module name="JavadocStyle"/>
Yuta HIGUCHIf9808442014-03-20 15:56:50 -0700108
109
110 <!-- Checks for Naming Conventions. -->
111 <!-- See http://checkstyle.sf.net/config_naming.html -->
Ray Milkeyec497712014-03-20 17:51:22 -0700112 <module name="ConstantName">
Ray Milkey3f5ef562014-03-25 17:11:19 -0700113 <!-- ONOS allows the name "log" for static final Loggers -->
114 <property name="format"
115 value="^log$|^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$"/>
116 </module>
Yuta HIGUCHIf9808442014-03-20 15:56:50 -0700117 <module name="LocalFinalVariableName"/>
Yuta HIGUCHIf9808442014-03-20 15:56:50 -0700118
Ray Milkey2476cac2014-04-08 11:03:21 -0700119 <module name="LocalVariableName"/>
Ray Milkeyb5716c52014-04-07 11:38:27 -0700120
Ray Milkey2476cac2014-04-08 11:03:21 -0700121 <module name="MemberName"/>
Ray Milkey7531a342014-04-11 15:08:12 -0700122 <module name="MethodName"/>
Ray Milkeyb5716c52014-04-07 11:38:27 -0700123 <module name="PackageName"/>
Ray Milkey9526d6f2014-04-10 14:54:15 -0700124 <module name="ParameterName"/>
Ray Milkey94b41b52014-04-10 11:13:06 -0700125 <module name="StaticVariableName"/>
Ray Milkeyb5716c52014-04-07 11:38:27 -0700126 <module name="TypeName"/>
Yuta HIGUCHIf9808442014-03-20 15:56:50 -0700127
128 <!-- Checks for imports -->
129 <!-- See http://checkstyle.sf.net/config_import.html -->
130 <module name="AvoidStarImport"/>
Ray Milkey3f5ef562014-03-25 17:11:19 -0700131 <module name="IllegalImport"/>
132 <!-- defaults to sun.* packages -->
Yuta HIGUCHIf9808442014-03-20 15:56:50 -0700133 <module name="RedundantImport"/>
134 <module name="UnusedImports"/>
135
136
137 <!-- Checks for Size Violations. -->
138 <!-- See http://checkstyle.sf.net/config_sizes.html -->
139 <module name="LineLength">
Ray Milkey3f5ef562014-03-25 17:11:19 -0700140 <!-- ONOS standard usage is 80 columns, but we allow up
141 to 120 to not break the build. -->
142 <property name="max" value="120"/>
Ray Milkeyb5716c52014-04-07 11:38:27 -0700143 <property name="severity" value="warning"/>
Yuta HIGUCHIf9808442014-03-20 15:56:50 -0700144 </module>
Ray Milkeyb5716c52014-04-07 11:38:27 -0700145 <module name="MethodLength">
146 <property name="severity" value="warning"/>
147 </module>
148
149 <module name="ParameterNumber">
150 <property name="severity" value="warning"/>
151 </module>
Yuta HIGUCHIf9808442014-03-20 15:56:50 -0700152
153
154 <!-- Checks for whitespace -->
155 <!-- See http://checkstyle.sf.net/config_whitespace.html -->
Ray Milkey7f1567c2014-04-08 13:53:32 -0700156 <module name="EmptyForIteratorPad"/>
Yuta HIGUCHIf9808442014-03-20 15:56:50 -0700157 <module name="GenericWhitespace"/>
158 <module name="MethodParamPad"/>
Ray Milkey7f1567c2014-04-08 13:53:32 -0700159 <module name="NoWhitespaceAfter"/>
160 <module name="NoWhitespaceBefore"/>
Ray Milkeyb5716c52014-04-07 11:38:27 -0700161
Ray Milkey3f5ef562014-03-25 17:11:19 -0700162 <!-- Disabled for ONOS. Default rules specify undesired behavior for the '?' operator -->
Yuta HIGUCHIf9808442014-03-20 15:56:50 -0700163 <!-- <module name="OperatorWrap"/> -->
164 <module name="ParenPad"/>
165 <module name="TypecastParenPad"/>
Ray Milkey7f1567c2014-04-08 13:53:32 -0700166 <module name="WhitespaceAfter"/>
167 <module name="WhitespaceAround"/>
Ray Milkeyb5716c52014-04-07 11:38:27 -0700168
Yuta HIGUCHIf9808442014-03-20 15:56:50 -0700169
170
171 <!-- Modifier Checks -->
172 <!-- See http://checkstyle.sf.net/config_modifiers.html -->
Ray Milkeyec838942014-04-09 11:28:43 -0700173 <module name="ModifierOrder"/>
Ray Milkeyb5716c52014-04-07 11:38:27 -0700174
Ray Milkey3f5ef562014-03-25 17:11:19 -0700175 <!-- Disabled for ONOS to allow use of public -->
176 <!-- modifiers in interfaces. -->
177 <!-- <module name="RedundantModifier"/> -->
Yuta HIGUCHIf9808442014-03-20 15:56:50 -0700178
179
180 <!-- Checks for blocks. You know, those {}'s -->
181 <!-- See http://checkstyle.sf.net/config_blocks.html -->
182 <module name="AvoidNestedBlocks">
Ray Milkey3f5ef562014-03-25 17:11:19 -0700183 <!-- ONOS alows declarations inside of switch case blocks -->
Yuta HIGUCHIf9808442014-03-20 15:56:50 -0700184 <property name="allowInSwitchCase" value="true"/>
Yuta HIGUCHIf9808442014-03-20 15:56:50 -0700185 </module>
Ray Milkey1aa71f82014-04-08 16:23:24 -0700186 <module name="EmptyBlock"/>
Ray Milkeyb5716c52014-04-07 11:38:27 -0700187 <module name="LeftCurly"/>
Ray Milkeyb29e6262014-04-09 16:02:14 -0700188 <module name="NeedBraces"/>
Ray Milkeyb5716c52014-04-07 11:38:27 -0700189 <module name="RightCurly"/>
Yuta HIGUCHIf9808442014-03-20 15:56:50 -0700190
191 <!-- Checks for common coding problems -->
192 <!-- See http://checkstyle.sf.net/config_coding.html -->
Ray Milkey3f5ef562014-03-25 17:11:19 -0700193 <!-- ONOS allows conditional operators -->
Yuta HIGUCHIf9808442014-03-20 15:56:50 -0700194 <!-- <module name="AvoidInlineConditionals"/> -->
Ray Milkey043daa22014-04-08 14:13:16 -0700195 <module name="EmptyStatement"/>
Yuta HIGUCHIf9808442014-03-20 15:56:50 -0700196 <module name="EqualsHashCode"/>
Ray Milkeyb5716c52014-04-07 11:38:27 -0700197
198 <module name="HiddenField">
199 <property name="severity" value="warning"/>
200 </module>
201
Yuta HIGUCHIf9808442014-03-20 15:56:50 -0700202 <module name="IllegalInstantiation"/>
Ray Milkeyb6e0ac82014-04-09 13:21:42 -0700203 <module name="InnerAssignment"/>
Ray Milkeyb5716c52014-04-07 11:38:27 -0700204
Ray Milkey3f5ef562014-03-25 17:11:19 -0700205 <!-- Many violations of this rule present, revist in a
206 subsequent round of cleanups -->
Yuta HIGUCHIf9808442014-03-20 15:56:50 -0700207 <!-- <module name="MagicNumber"/> -->
Ray Milkey0b122ed2014-04-14 10:06:03 -0700208 <module name="MissingSwitchDefault"/>
Ray Milkeyb5716c52014-04-07 11:38:27 -0700209
210 <module name="RedundantThrows">
Ray Milkeya11fcb72014-04-11 11:34:22 -0700211 <property name="allowSubclasses" value="true"/>
212 </module>
Ray Milkeyb5716c52014-04-07 11:38:27 -0700213
Ray Milkey6c4f2fe2014-04-11 09:47:23 -0700214 <module name="SimplifyBooleanExpression"/>
Ray Milkey4985f212014-04-10 16:57:05 -0700215 <module name="SimplifyBooleanReturn"/>
Yuta HIGUCHIf9808442014-03-20 15:56:50 -0700216
217 <!-- Checks for class design -->
218 <!-- See http://checkstyle.sf.net/config_design.html -->
Ray Milkey3f5ef562014-03-25 17:11:19 -0700219 <!-- ONOS produces many warnings of this type.
220 Fixing all of these is outside the scope of the current cleanup. -->
Yuta HIGUCHIf9808442014-03-20 15:56:50 -0700221 <!-- <module name="DesignForExtension"/> -->
Ray Milkey1584ec82014-04-10 11:58:30 -0700222 <module name="FinalClass"/>
Ray Milkeyb5716c52014-04-07 11:38:27 -0700223
Ray Milkeya2e21462014-04-10 13:21:44 -0700224 <module name="HideUtilityClassConstructor"/>
Ray Milkeyb5716c52014-04-07 11:38:27 -0700225
Yuta HIGUCHIf9808442014-03-20 15:56:50 -0700226 <module name="InterfaceIsType"/>
Ray Milkeyb5716c52014-04-07 11:38:27 -0700227
228 <module name="VisibilityModifier">
229 <property name="severity" value="warning"/>
230 </module>
231
Yuta HIGUCHIf9808442014-03-20 15:56:50 -0700232
233
234 <!-- Miscellaneous other checks. -->
235 <!-- See http://checkstyle.sf.net/config_misc.html -->
Ray Milkey45614c52014-04-07 16:30:54 -0700236 <module name="ArrayTypeStyle"/>
Ray Milkeyb5716c52014-04-07 11:38:27 -0700237
Ray Milkey3f5ef562014-03-25 17:11:19 -0700238 <!-- Many violations of this rule currently, too many to fix
239 in the current cleanup. -->
Yuta HIGUCHIf9808442014-03-20 15:56:50 -0700240 <!-- <module name="FinalParameters"/> -->
Ray Milkey3f5ef562014-03-25 17:11:19 -0700241 <!-- ONOS allows TODO markers in checked in source code -->
Yuta HIGUCHIf9808442014-03-20 15:56:50 -0700242 <!-- <module name="TodoComment"/> -->
243 <module name="UpperEll"/>
244
Ray Milkeyb5716c52014-04-07 11:38:27 -0700245 </module>
Yuta HIGUCHIf9808442014-03-20 15:56:50 -0700246
Ray Milkeyb5716c52014-04-07 11:38:27 -0700247 </module>