CheckStyle检查代码是否符合制定的规范。CheckStyle检查是基于源码的,无需编译,执行速度快。
CheckStyle的主要流程是:
com.puppycrawl.tools.checkstyle.api.Check
类,重载其中的两个方法:public int[] getDefaultTokens()
和public void visitToken(DetailAST ast)
。这两个方法的含义为,在遍历语法树的过程中,每当到达getDefaultTokens函数所返回的AST类型,程序就进入visitToken进行具体的检查和分析,即真正的分析检查过程是在visitToken中实现的。CheckStyle有针对不同IDE和构建工具的各种插件,如 maven-checkstyle-plugin
插件,配置很简单:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>3.3.1</version>
<configuration>
<!--内置4种规范:config/sun_checks.xml、config/maven_checks.xml、config/turbine_checks.xml、config/avalon_checks.xml、其中sun_checks.xml为默认值。修改默认配置-->
<configLocation>google_checkstyle.xml</configLocation>
</configuration>
<executions>
<execution>
<id>checkstyle</id>
<phase>validate</phase>
<goals>
<goal>check</goal>
</goals>
<configuration>
<failOnViolation>true</failOnViolation>
</configuration>
</execution>
</executions>
</plugin>
定义在maven lifecycle的validate阶段执行check task,并且如果发现有违反标准的情况就会fail当前的build。运行checkstyle检查:mvn checkstyle:checkstyle
跳过对指定文件的某些检查
checkstyle-suppressions.xml
文件suppressions配置项:<?xml version="1.0"?>
<!DOCTYPE suppressions PUBLIC
"-//Puppy Crawl//DTD Suppressions 1.0//EN"
"http://www.puppycrawl.com/dtds/suppressions_1_0.dtd">
<suppressions>
<suppress checks="LineLengthCheck"
files="SessionMessageSource.java"/>
</suppressions>
<suppressionsLocation>${basedir}/src/config/checkstyle-suppressions.xml</suppressionsLocation>
然后在配置文件里面可以定义一系列可用的模块,每一个模块提供严格程度(强制的,可选的…)可配置的检查规则。规则可以触发通知(notification),警告(warning)和错误(error)。
特点:
在IDEA的Terminal执行mvn clean compile
报错:
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-checkstyle-plugin:3.0.0:check (checkstyle) on project test: Failed during checkstyle configuration: cannot initialize module TreeWalker - Token "METHOD_REF" was not found in Acceptable tokens list in check com.puppycrawl.tools.checkstyle.checks.whitespace.SeparatorWrapCheck.
参考stackoverflow问答java-google-checkstyle-maven:
You are trying to use a newer configuration with an old version of Checkstyle.
上面的报错信息提示,使用的Maven插件版本为3.0.0,升级到当前最新版3.3.1解决问题。
继续执行mvn clean compile
报错:
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-checkstyle-plugin:3.3.1:check (checkstyle) on project test: Failed during checkstyle configuration: cannot initialize module TreeWalker - TreeWalker is not allowed as a parent of LineLength Please review 'Parent Module' section for this Check in web documentation if Check is standard.
参考GitHub issue,LineLength本来在TreeWalker module下面,提升到与TreeWalker同级的module,解决问题。
虽然解决问题,但是这样下去感觉问题会无穷无尽。
考虑到上面升级过maven插件,即maven-checkstyle-plugin
到最新版,那配置文件是不是也得一起升级下?打开托管在GitHub的官方配置文件google_checks,借助于diffchecker这类在线文本对比工具,好家伙。本地配置文件和GitHub里的配置文件相差也太大了吧。是该更新一下了!!
至于为何不直接使用存放在GitHub上的配置文件?这样的话,可以保证一直使用最新的配置文件。而要使用一个下载到本地的必定会过期的备份配置文件?主要是两点考量:
继续执行mvn clean compile
依旧报错:
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-checkstyle-plugin:3.3.1:check (checkstyle) on project test: Failed during checkstyle configuration: cannot initialize module TreeWalker - Token "LITERAL_SWITCH" was not found in Acceptable tokens list in check com.puppycrawl.tools.checkstyle.checks.blocks.RightCurlyCheck.
不会吧。插件和配置文件都是最新的,配置文件是官方提供的,没有任何修改。
搜索google_checkstyle.xml
文件,可以找到LITERAL_SWITCH及RightCurly。分析此最新版配置文件,不难得出结论:
回到问题本身。分析报错,大意是在RightCurly这个module里有个tokens属性字段里不能出现LITERAL_SWITCH?
抱着试一试的想法,修改官方提供的配置文件,删除RightCurly module下LITERAL_SWITCH这个token。
再次执行mvn clean compile
,上面这个报错消失。出现新的报错,不过其形式和上面的报错一模一样。那就依样画瓢,找到报错的module和token,删除。最后执行mvn clean compile
成功。
上面留下一个疑问:token是什么?
看到完整包路径com.puppycrawl.tools.checkstyle.checks.blocks.RightCurlyCheck
,不难找到maven依赖:
<dependency>
<groupId>com.puppycrawl.tools</groupId>
<artifactId>checkstyle</artifactId>
<version>10.13.0</version>
</dependency>
包结构如下:
配置文件google_checkstyle.xml
里的module对应的**Check类全部位于com.puppycrawl.tools.checkstyle.checks
包下面。并且Check也模块化,有一下几种类型:
与此同时,在目录com.puppycrawl.tools.checkstyle.meta.blocks.blocks
下面有一个xml文件RightCurlyCheck.xml
,和Check方法一一对应。配置文件里的module对应一个继承AbstractCheck的Check方法,对应一个**Check.xml
配置文件。
NoLineWrapCheck.xml
文件内容如下:
<?xml version="1.0" encoding="UTF-8"?>
<checkstyle-metadata>
<module>
<check fully-qualified-name="com.puppycrawl.tools.checkstyle.checks.whitespace.NoLineWrapCheck"
name="NoLineWrap"
parent="com.puppycrawl.tools.checkstyle.TreeWalker">
<description>Checks that chosen statements are not line-wrapped. By default, this Check restricts wrapping import and package statements, but it's possible to check any statement.</description>
<properties>
<property default-value="PACKAGE_DEF,IMPORT,STATIC_IMPORT"
name="tokens"
type="java.lang.String[]"
validation-type="tokenSet">
<description>tokens to check</description>
</property>
</properties>
<message-keys>
<message-key key="no.line.wrap"/>
</message-keys>
</check>
</module>
</checkstyle-metadata>
check下的name和配置文件google_checkstyle.xml
的module name正好对应,parent指向TreeWalker,fully-qualified-name指向Java类文件。properties定义检查的token。
token是什么,回到文章开头,提到AST语法树及TokenTypes类。
借助于IDEA Double Shift快捷键以及左侧的项目视图,不难快速找到com.puppycrawl.tools.checkstyle.api.TokenTypes
类文件,定义194个静态常量。以及tokentypes.properties
配置文件,里面正好也是194行。经过对比,是一一对应的。
tokentypes.properties
文件样例:
OBJBLOCK=An object block.
message-keys
原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。
原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。