TODO:
Want to know what’s coming? Or, better, wanna contribute ? Here is the page listing what are our plans -when we have ones, for the future of PMD. It also give you hints at part of the code we would like to clean -that you may want to clean to contribute to the project!
Of course, an easy way to contribute is too check out thebug tracker and see if you can fix some issues -some could be quite easy, we simply have not the time to look at them all!
At last, if you want to contribute, register on thepmd-devel mailing list, and come discuss with us!
This roadmap contains all the different ‘workshops’ PMD’s developers are working right now.
Please note that, of course, there is no warranty about when those ‘features’ will be finished, if they ever are.
Currently PMD only looks at one source file at a time. Instead, it should resolve symbols across classes.This will eliminate some open bugs and enable a lot more rules to be written. However, it’ll taken some doing,because it’ll require parsing of class files. Lots of work here.
Raik Schroeder, a graduate student atFachhochschule Stralsund has written a DFA layer that should enableus to write some more complicated rules - stuff like common subexpression elimination, loop invariant code motion(and code hoisting suggestions), shrink wrapping, and partial redundancy elimination. The code is currently in thenet.sourceforge.pmd.dfa packages, and we’re going through it now figuring out what rules we can writethat use it. We should be able to use it to simplify some current rules, as well.
These are things which really should be done, but just haven’t been gotten to yet:
These are food for thought, perhaps future items. If you think you’d like towork on one of these, check with pmd-devel to see what the current thoughtson the topic.
CPD needs work on use of Language. It currently is hardcoded to onlyhandled Java 1.4. Integrate CPD needs into core PMD where appropriate.Otherwise, drive CPD behavior based off of core PMD, instead of duplicatingsome logic.
Need a more flexible and powerful scheme for classifying files to variousLanguages. At a minimum, should have the ability to specify whichfile extensions you want to be used for a language (e.g. not everyone uses.jsp for JSP extensions, some use .jspx, .xhtml, etc.). Also, considerhooks into the LanguageVersionDiscoverer process for classifying aFile/String to a LanguageVersion of a specific Language, one could imagingusing a ‘magic’ system like Unix uses to tell different versions of filesapart based on actual content.
Should we change Node interface to something like ‘Node<T extends Node<T>>’,and then declare the language specific node interfaces to be something like‘JavaNode extends Node<JavaNode>’? This could allow anything on the Nodeinterface to return the language specific node type instead of genericnode. For example, ASTStatement.jjtGetParent() to return a JavaNode,instead of a Node. This is a rather huge change, as the Node interface isone of the pervasive things in the PMD code base. Is the extra work of usingthe Node interface with properly with generics, worth the omission ofoccasional some casting?
Should multiple Languages be able to claim a single source file? ImagineXML format JSP file, for which you’ve defined a ruleset which uses JSP andXML rules. Stating that certain XML rules also can map to the JSP languageextensions could be useful. This means Source file to LanguageVersionmapping is not 1-1, but 1-many, we’d need to deal with this accordingly.
Additional changes to Rule organization within RuleSets as discussed onthis forum thread.
Figure out a way to allow Rules to deal with parentheses and blocks, whichintroduce certain repetitive (and generally ignorable for most Rules)structures into the AST tree. Some rules are making special effort(e.g. ConfusingTernaryRule) to detect these AST patterns. Perhaps a“normalized” AST structure can be created which will make the AST appearconsistent regardless of how many parens are presented, or how many blockshave been created (e.g. default block inserted, duplicates collapsed).This should be configurable on per Rule basis similar to TR and SymbolTable.
Some of the code is a bit sloppy: