public class DescendantTokenCheck extends AbstractCheck
Checks for restricted tokens beneath other tokens.
Examples of how to configure the check:
<!-- String literal equality check -->
<module name="DescendantToken">
<property name="tokens" value="EQUAL,NOT_EQUAL"/>
<property name="limitedTokens" value="STRING_LITERAL"/>
<property name="maximumNumber" value="0"/>
<property name="maximumDepth" value="1"/>
</module>
<!-- Switch with no default -->
<module name="DescendantToken">
<property name="tokens" value="LITERAL_SWITCH"/>
<property name="maximumDepth" value="2"/>
<property name="limitedTokens" value="LITERAL_DEFAULT"/>
<property name="minimumNumber" value="1"/>
</module>
<!-- Assert statement may have side effects -->
<module name="DescendantToken">
<property name="tokens" value="LITERAL_ASSERT"/>
<property name="limitedTokens" value="ASSIGN,DEC,INC,POST_DEC,
POST_INC,PLUS_ASSIGN,MINUS_ASSIGN,STAR_ASSIGN,DIV_ASSIGN,MOD_ASSIGN,
BSR_ASSIGN,SR_ASSIGN,SL_ASSIGN,BAND_ASSIGN,BXOR_ASSIGN,BOR_ASSIGN,
METHOD_CALL"/>
<property name="maximumNumber" value="0"/>
</module>
<!-- Initializer in for performs no setup - use while instead? -->
<module name="DescendantToken">
<property name="tokens" value="FOR_INIT"/>
<property name="limitedTokens" value="EXPR"/>
<property name="minimumNumber" value="1"/>
</module>
<!-- Condition in for performs no check -->
<module name="DescendantToken">
<property name="tokens" value="FOR_CONDITION"/>
<property name="limitedTokens" value="EXPR"/>
<property name="minimumNumber" value="1"/>
</module>
<!-- Switch within switch -->
<module name="DescendantToken">
<property name="tokens" value="LITERAL_SWITCH"/>
<property name="limitedTokens" value="LITERAL_SWITCH"/>
<property name="maximumNumber" value="0"/>
<property name="minimumDepth" value="1"/>
</module>
<!-- Return from within a catch or finally block -->
<module name="DescendantToken">
<property name="tokens" value="LITERAL_FINALLY,LITERAL_CATCH"/>
<property name="limitedTokens" value="LITERAL_RETURN"/>
<property name="maximumNumber" value="0"/>
</module>
<!-- Try within catch or finally block -->
<module name="DescendantToken">
<property name="tokens" value="LITERAL_CATCH,LITERAL_FINALLY"/>
<property name="limitedTokens" value="LITERAL_TRY"/>
<property name="maximumNumber" value="0"/>
</module>
<!-- Too many cases within a switch -->
<module name="DescendantToken">
<property name="tokens" value="LITERAL_SWITCH"/>
<property name="limitedTokens" value="LITERAL_CASE"/>
<property name="maximumDepth" value="2"/>
<property name="maximumNumber" value="10"/>
</module>
<!-- Too many local variables within a method -->
<module name="DescendantToken">
<property name="tokens" value="METHOD_DEF"/>
<property name="limitedTokens" value="VARIABLE_DEF"/>
<property name="maximumDepth" value="2"/>
<property name="maximumNumber" value="10"/>
</module>
<!-- Too many returns from within a method -->
<module name="DescendantToken">
<property name="tokens" value="METHOD_DEF"/>
<property name="limitedTokens" value="LITERAL_RETURN"/>
<property name="maximumNumber" value="3"/>
</module>
<!-- Too many fields within an interface -->
<module name="DescendantToken">
<property name="tokens" value="INTERFACE_DEF"/>
<property name="limitedTokens" value="VARIABLE_DEF"/>
<property name="maximumDepth" value="2"/>
<property name="maximumNumber" value="0"/>
</module>
<!-- Limit the number of exceptions a method can throw -->
<module name="DescendantToken">
<property name="tokens" value="LITERAL_THROWS"/>
<property name="limitedTokens" value="IDENT"/>
<property name="maximumNumber" value="1"/>
</module>
<!-- Limit the number of expressions in a method -->
<module name="DescendantToken">
<property name="tokens" value="METHOD_DEF"/>
<property name="limitedTokens" value="EXPR"/>
<property name="maximumNumber" value="200"/>
</module>
<!-- Disallow empty statements -->
<module name="DescendantToken">
<property name="tokens" value="EMPTY_STAT"/>
<property name="limitedTokens" value="EMPTY_STAT"/>
<property name="maximumNumber" value="0"/>
<property name="maximumDepth" value="0"/>
<property name="maximumMessage"
value="Empty statement is not allowed."/>
</module>
<!-- Too many fields within a class -->
<module name="DescendantToken">
<property name="tokens" value="CLASS_DEF"/>
<property name="limitedTokens" value="VARIABLE_DEF"/>
<property name="maximumDepth" value="2"/>
<property name="maximumNumber" value="10"/>
</module>
| Modifier and Type | Field and Description |
|---|---|
private int[] |
counts
Counts of descendant tokens.
|
private int[] |
limitedTokens
Limited tokens.
|
private int |
maximumDepth
Maximum depth.
|
private java.lang.String |
maximumMessage
Error message when maximum count exceeded.
|
private int |
maximumNumber
Maximum number.
|
private int |
minimumDepth
Minimum depth.
|
private java.lang.String |
minimumMessage
Error message when minimum count not reached.
|
private int |
minimumNumber
Minimum number.
|
static java.lang.String |
MSG_KEY_MAX
A key is pointing to the warning message text in "messages.properties"
file.
|
static java.lang.String |
MSG_KEY_MIN
A key is pointing to the warning message text in "messages.properties"
file.
|
static java.lang.String |
MSG_KEY_SUM_MAX
A key is pointing to the warning message text in "messages.properties"
file.
|
static java.lang.String |
MSG_KEY_SUM_MIN
A key is pointing to the warning message text in "messages.properties"
file.
|
private boolean |
sumTokenCounts
Whether to sum the number of tokens found.
|
| Constructor and Description |
|---|
DescendantTokenCheck() |
| Modifier and Type | Method and Description |
|---|---|
private void |
countTokens(antlr.collections.AST ast,
int depth)
Counts the number of occurrences of descendant tokens.
|
int[] |
getAcceptableTokens()
The configurable token set.
|
int[] |
getDefaultTokens()
Returns the default token a check is interested in.
|
int[] |
getRequiredTokens()
The tokens that this check must be registered for.
|
private void |
logAsSeparated(DetailAST ast)
Log violations for each Token.
|
private void |
logAsTotal(DetailAST ast)
Log validation as one violation.
|
void |
setLimitedTokens(java.lang.String... limitedTokensParam)
Sets the tokens which occurrence as descendant is limited.
|
void |
setMaximumDepth(int maximumDepth)
Sets the maximum depth for descendant counts.
|
void |
setMaximumMessage(java.lang.String message)
Sets the error message for maximum count exceeded.
|
void |
setMaximumNumber(int maximumNumber)
Sets a maximum count for descendants.
|
void |
setMinimumDepth(int minimumDepth)
Sets the minimum depth for descendant counts.
|
void |
setMinimumMessage(java.lang.String message)
Sets the error message for minimum count not reached.
|
void |
setMinimumNumber(int minimumNumber)
Sets a minimum count for descendants.
|
void |
setSumTokenCounts(boolean sum)
Sets whether to use the sum of the tokens found, rather than the
individual counts.
|
void |
visitToken(DetailAST ast)
Called to process a token.
|
beginTree, destroy, finishTree, getClassLoader, getFileContents, getLine, getLines, getTabWidth, getTokenNames, init, isCommentNodesRequired, leaveToken, log, log, setClassLoader, setFileContents, setMessages, setTabWidth, setTokensgetCustomMessages, getId, getMessageBundle, getSeverity, getSeverityLevel, log, setId, setSeverityconfigure, contextualize, finishLocalSetup, getConfiguration, setupChildpublic static final java.lang.String MSG_KEY_MIN
public static final java.lang.String MSG_KEY_MAX
public static final java.lang.String MSG_KEY_SUM_MIN
public static final java.lang.String MSG_KEY_SUM_MAX
private int minimumDepth
private int maximumDepth
private int minimumNumber
private int maximumNumber
private boolean sumTokenCounts
private int[] limitedTokens
private java.lang.String minimumMessage
private java.lang.String maximumMessage
private int[] counts
public int[] getDefaultTokens()
AbstractCheckgetDefaultTokens in class AbstractCheckTokenTypespublic int[] getRequiredTokens()
AbstractCheckgetRequiredTokens in class AbstractCheckTokenTypespublic void visitToken(DetailAST ast)
AbstractCheckvisitToken in class AbstractCheckast - the token to processprivate void logAsSeparated(DetailAST ast)
ast - tokenprivate void logAsTotal(DetailAST ast)
ast - current tokenprivate void countTokens(antlr.collections.AST ast,
int depth)
ast - the root token for descendants.depth - the maximum depth of the counted descendants.public int[] getAcceptableTokens()
AbstractCheckgetAcceptableTokens in class AbstractCheckTokenTypespublic void setLimitedTokens(java.lang.String... limitedTokensParam)
limitedTokensParam - - list of tokens to ignore.public void setMinimumDepth(int minimumDepth)
minimumDepth - the minimum depth for descendant counts.public void setMaximumDepth(int maximumDepth)
maximumDepth - the maximum depth for descendant counts.public void setMinimumNumber(int minimumNumber)
minimumNumber - the minimum count for descendants.public void setMaximumNumber(int maximumNumber)
maximumNumber - the maximum count for descendants.public void setMinimumMessage(java.lang.String message)
message - the error message for minimum count not reached.
Used as a MessageFormat pattern with arguments
public void setMaximumMessage(java.lang.String message)
message - the error message for maximum count exceeded.
Used as a MessageFormat pattern with arguments
public void setSumTokenCounts(boolean sum)
sum - whether to use the sum.