Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm looking for a DSL that helps to find problematic patterns in (Java) code.

It should allow to build tools like PMD and FindBugs very quickly or adjust existing tools for special needs.

Example: If a class is used in a test case and it has the @PostConstruct annotation on a method, warn if the test doesn't call this method.

Do you about know any work in this area?

Ideally, it should be based on Xtext.

share|improve this question
1  
If you found one: I want it too :D – Andreas_D Jun 28 '11 at 12:25

1 Answer

up vote 2 down vote accepted

I was looking for something like that a year ago and I am looking still. There are various commercial tools, which let you write rules and metrics using a custom query langauge, very much like SQL or Datalog. PMD apart from the Visitor pattern allows you to create rules using JXPath, which is XPath specific to XML representing Java code. Then there is also MoDisco, which allows you to create a model of your code and than you can use OCL among others, which is a language for describing constraints on object oriented code - it is related to UML and includes various predicates and higher order functions for working with collections of objects. As to Xtext, you would have to write the Java grammar and then you would use the Validation API or Check language with Xtend expressinos (which is pretty much like OCL).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.