Movatterモバイル変換


[0]ホーム

URL:


 
» Writing a custom rule Edit on GitHub

Writing a custom rule

Learn how to write a custom rule for PMD
Table of Contents

Note:Ideally most of what is written in this document would be directlyin the Javadocs of the relevant classes. This is not the case yet.

This page covers the specifics of writing a rule in Java. The basic developmentprocess is very similar to the process for XPath rules, which is described inYour First Rule.

Basically, you open the designer, look at the structure of the AST, and refineyour rule as you add test cases.

In this page we’ll talk about rules for the Java language, but the process isvery similar for other languages.

Basics

To write a rule in Java you’ll have to:

  1. Write a Java class that implements the interfaceRule. Eachlanguage implementation provides a base rule class to ease your pain,e.g.AbstractJavaRule.
  2. Compile this class, linking it to PMD APIs (e.g. using PMD as a Maven dependency)
  3. Bundle this into a JAR and add it to the execution classpath of PMD
  4. Declare the rule in your ruleset XML

Rule execution

Most base rule classes use aVisitor patternto explore the AST.

Tree traversal

When a rule is applied to a file, it’s handed the root of the AST and toldto traverse all the tree to look for violations. Each rule defines a specificvisit method for each type of node for of the language, whichby default just visits the children.

So the following rule would traverse the whole tree and do nothing:

publicclassMyRuleextendsAbstractJavaRule{// all methods are default implementations!}

Generally, a rule wants to check for only some node types. In our XPath exampleinYour First Rule,we wanted to check for someVariableId nodes. That’s the XPath name,but in Java, you’ll get access to theASTVariableIdfull API.

If you want to check for some specific node types, you can override thecorrespondingvisit method:

publicclassMyRuleextendsAbstractJavaRule{@OverridepublicObjectvisit(ASTVariableIdnode,Objectdata){// This method is called on each node of type ASTVariableId// in the ASTif(node.getType()==short.class){// reports a violation at the position of the node// the "data" parameter is a context object handed to by your rule// the message for the violation is the message defined in the rule declaration XML elementasCtx(data).addViolation(node);}// this calls back to the default implementation, which recurses further down the subtreereturnsuper.visit(node,data);}}

Thesuper.visit(node, data) call is super common in rule implementations,because it makes the traversal continue by visiting all the descendants of thecurrent node.

Stopping the traversal

Sometimes you have checked all you needed and you’re sure that the descendantsof a node may not contain violations. In that case, you can avoid calling thesuper implementation and the traversal will not continue further down. Thismeans that your callbacks (visit implementations) won’t be called on the restof the subtree. The siblings of the current node may be visitedrecursively nevertheless.

Economic traversal: the rulechain

If you don’t care about the order in which the nodes are traversed (e.g. yourrule doesn’t maintain any state between visits), then you can monumentallyspeed-up your rule by using therulechain.

That mechanism doesn’t recurse on all the tree, instead, your rule will only bepassed the nodes it is interested in. To use the rulechain correctly:

  • Your rule must override the methodbuildTargetSelector. This methodshould return a target selector, that selects all the node types you are interested in. E.g. the factorymethodforTypes can be usedto create such a selector.
  • For the Java language, there is another base class, to make it easier:AbstractJavaRulechainRule. You’ll need to call the super constructor andprovide the node types you are interested in.
  • Your visit methodsmust not recurse! In effect, you should call nevercallsuper.visit in the methods.

Manual AST navigation

In Java rule implementations, you often need to navigate the AST to find the interesting nodes.In yourvisit implementation, you can start navigating the AST from the given node.

TheNode interface provides a couple of useful methodsthat return aNodeStream and can be used to query the AST:

The returned NodeStream API provides easy to use methods that follow the Java Stream API (java.util.stream).

Example:

NodeStream.of(someNode)// the stream here is empty if the node is null.filterIs(ASTVariableDeclaratorId.class)// the stream here is empty if the node was not a variable declarator id.followingSiblings()// the stream here contains only the siblings, not the original node.filterIs(ASTVariableInitializer.class).children(ASTExpression.class).children(ASTPrimaryExpression.class).children(ASTPrimaryPrefix.class).children(ASTLiteral.class).filterMatching(Node::getImage,"0").filterNot(ASTLiteral::isStringLiteral).nonEmpty();// If the stream is non empty here, then all the pipeline matched

TheNode interface provides also an alternative way to navigate the AST for convenience:

Depending on the AST of the language, there might also be more specific methods that can be used tonavigate. E.g. in Java there exists the methodASTIfStatement#getConditionto get the condition of an If-statement.

Reporting violations

In your visit method, you have access to theRuleContext which is the entry point intoreporting back during the analysis.

  • addViolation reports a rule violation atthe position of the given node with the message defined in the rule declaration XML element.
  • The message defined in the rule declaration XML element might containplaceholder, such as{0}.In that case, you need to calladdViolationand provide the values for the placeholders. The message is actually processed as ajava.text.MessageFormat.
  • Sometimes a rule might want to differentiate between different cases of a violation and use differentmessages. This is possible by calling the methodsaddViolationWithMessage oraddViolationWithMessage.Using these methods, the message defined in the rule declaration XML element isnot used.
  • Rules can be customized using properties and sometimes you want to include the actual value of a propertyin the message, e.g. if the rule enforces a specific limit.The syntax for such placeholders is:${propertyName}.
  • Some languages support additional placeholder variables. E.g. for Java, you can use${methodName} to insertthe name of the method in which the violation occurred.SeeJava-specific features and guidance.

Execution across files, thread-safety and statefulness

When starting execution, PMD will instantiate a new instance of your rule.If PMD is executed in multiple threads, then each thread is using its owninstance of the rule. This means, that the rule implementationdoes not need to care aboutthreading issues, as PMD makes sure, that a single instance is not used concurrentlyby multiple threads.

However, for performance reasons, the rule instances are reused for multiple files.This means, that the constructor of the rule is only executed once (per thread)and the rule instance is reused. If you rely on a proper initialization of instanceproperties, you can do the initialization in thestart method of the rule(you need to override this method).The start method is called exactly once per file.

Using metrics

Some languages might support metrics.

Using symbol table

Some languages might support symbol table.

Using type resolution

Some languages might support type resolution.

Rule lifecycle reference

Construction

Exactly once (per thread):

  1. The rule’s no-arg constructor is called when loading the ruleset.The rule’s constructor must define already anyProperty descriptors the rule wants to use.
  2. If the rule was included in the ruleset as a rule reference,some propertiesmay be overridden.If an overridden property is unknown, an error is reported.
  3. Misconfigured rules are removed from the ruleset

Execution

For each thread, a deep copy of the rule is created. Each thread is givena different set of files to analyse. Then, for each such file and for eachrule copy:

  1. start is called once, before parsing
  2. apply is called with the rootof the AST. That method performs the AST traversal that ultimately calls visit methods.It’s not called for RuleChain rules.
  3. end is called when the rule is done processingthe file

Example projects

Seehttps://github.com/pmd/pmd-examples for a couple of example projects, thatcreate custom PMD rules for different languages.


This documentation is written in markdown.
If there is something missing or can be improved, edit this page on github and create a PR: Edit on GitHub

©2025 PMD Open Source Project. All rights reserved.
Page last updated: December 2023 (7.0.0)
Site last generated: Jun 27, 2025

PMD                logo


[8]ページ先頭

©2009-2025 Movatter.jp