I am using Groovy in a Java Swing application as part of my plan to force-feed myself dynamic languages until I like them (which is happening, partly).

My stack traces are filled with Groovy stuff like

org.codehaus.groovy.runtime.callsite.ConstructorSite$ConstructorSiteNoUnwrapNoCoerce.callConstructor

is there a way to get Eclipse to remove all of that codehaus stuff (filter stack traces, basically)?

Edit: I can do this from the command-line with grep (well, not yet) so it's not so bad, but inside of Eclipse would be great too.

link|improve this question

If you're stack traces are being dumped through a logger (like java.util.Logger) you can format them how you like. However, removing stuff from the stack traces programatically seems like one of those things that could drive a person maintaining your code mad. If you're debugging, I'd stick with grep - then in production your code will generate correct stack traces all the time. – Quotidian Feb 25 '10 at 13:19
@Quotidian, your observation is partly correct. These are "development-time" stack traces that will halt startup of the app. On the other hand, I think that ANY ONE developing in groovy would want to remove that stuff, unless they were working on codehaus code. Just to say "hello world" there is a ton of codehaus code invoked. Makes no sense, from a user/programmer perspective. – Yar Feb 25 '10 at 13:24
feedback

2 Answers

up vote 7 down vote accepted

There is a Utility in Groovy that does exactly what you want: StackTraceUtils. STU will clean all the callsite information from your stacktrace, leaving the stuff you're really interested in.

Edit: In Java you will have to encasulate the exception in a java.lang.RuntimeExceptionaccording to comments.

Example of usage:

try {
    1/0;
} catch (Throwable t) {
    throw new RuntimeException(org.codehaus.groovy.runtime.StackTraceUtils.sanitize(t)); //Modifies the Throwable and rethrows
}

StackTraceUtils is available in the latest version of Groovy and originally comes from Grails. I'm not sure how you would go about applying this to all of your projects stacktraces but I think both Griffon and Grails does it so there should be some hints in those projects.

link|improve this answer
Good stuff, THANK YOU! – Yar Feb 26 '10 at 11:14
I'll mark this as best answer for now, but if someone comes along who can tell me how to get Eclipse to do this... But for me this did work. – Yar Feb 26 '10 at 13:01
You're welcome. You should be able to make this happen automatically for all uncaught stacktraces using java.lang.Thread.UncaughtExceptionHandler which allows you register an exceptionhandler for uncaught exceptions but I haven't been able to get this to work. Read more about this here: dabblescribble.blogspot.com/2009/11/… – xlson Mar 3 '10 at 9:36
Thanks @xlson, I've gotten this to work. Ironically, to get it to compile in Java, you have to wrap the sanitize return in a RuntimeException.... the joys of checked exceptions :) – Yar May 5 '10 at 9:39
Your welcome @yar :) Ofcourse, I soo don't miss them from my Java days. Added your tip to the answer! – xlson Jun 1 '10 at 12:40
feedback

I don't have an answer for "Run as Groovy application", but if you run GroovyTestcases as jUnit tests in Eclipse, there is a "filter stack traces" button above the stack trace view.

link|improve this answer
+1 we are getting closer! – Yar Feb 26 '10 at 18:29
feedback

Your Answer

 
or
required, but never shown

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