I want to comment out all calls to an API (java.util.Logging, in my case) in my codebase. Is there a good library to accomplish this easily? I tried Eclipse ASTParser, but that is tied to Eclipse. I am now struggling with PMD's parser. I haven't yet looked at it, but can Jackpot do this? Any other suggestions?
|
1
|
|||
|
|
|
If you wanted to comment out this:
then you'd have a trickier time of it because you'd need to parse the code to some extend to know where to put the comments. I.e. you want to be able to do this:
It's much more trivial to do this instead:
The 'if false' part ends up being optimised out by the compiler and the Log statement won't make it to the final .class file. That way all you need is a search/replace step in your build script that replaces all occurences of
with either
without resorting to tricky parsing of the code. |
|||
|
|
|
If you're looking to avoid evaluation of arguments, as you say in your comments, then I assume you have calls like:
which you want to disable ? If that's the case, and it's scattered through your code, I'd use something like AspectJ to surround all instances of the above with:
and set the |
||
|
|
|
using a tool to comment out or remove all of the logging code might be a bad idea. There might be side effect code that you don't notice:
thats a real obvious example, but it could be very subtle with a method call or something inside the logger call. It is probably safer to turn off the logging output, or go through the whole thing manually... |
||
|
|
|
You can use slf4j's jul-to-slf4j module to redirect all java.util.logging calls into slf4j, and then you can choose the slf4j-nop module to ignore all the logging statements. Will this do, or do you REALLY need to get rid of these source lines? |
||
|
|
|
|
I know this isn't what you asked for, but I just want to draw your attention to the fact that you can turn logging OFF in your configuration file. |
||||
|
|
|
sed? Just substitute with a commented line. You'll need to think about the match regex to catch multiline calls. |
||||||||||||
|
