vote up 1 vote down star

I want to write a simple visualization of a Java program by displaying the program's method calls as branches of a tree. This could be done quite simply by having the program itself tell the visualization what it is doing, but I want to be able to do this with any Java method/class and not just the ones I modify to do so.

What I need is the ability to watch the methods a program calls and what methods are called within that method and so on. Obviously, stack traces provide exactly this functionality:

 java.lang.NullPointerException
     at MyClass.mash(MyClass.java:9)
     at MyClass.crunch(MyClass.java:6)
     at MyClass.main(MyClass.java:3)

So I thought about having the program I want to monitor run in a thread and then just look at that thread's stack. However, the thread class does not really support this. It only supports printing the current stack.

Now I, of course, thought of simply changing the PrintStream of the System class so the thread would print its stack into my PrintStream, but this feels kind of wrong.

Is there a better way to do this? Are there any pre-existing classes/methods I can use?

Also, I'm currently downloading the Java source code, to check how exactly the thread class prints its stack so I could maybe subclass thread and imitate the dumpStack() method with my own getStack() method.

flag

1  
I know it 'feels wrong' but it's not - one can re-direct System.out ( to a PrintStream which writes to a file ) I ended up writing my own Console, previously I have done things like this enough times by now to know that all this is in libs, be it in java.util or whatever: If you can get a dumpStack() anywhere, dump it to where-ever you want: That's what it's for. – Nicholas Jordan Oct 24 at 7:42

5 Answers

vote up 0 vote down

Have a look at the ThreadMXBean class -- it my provide what you need. Essentially, you:

  • call ManagementFactory.getThreadMXBean() to get an instance of ThreadMXBean;
  • call getAllThreadIds() on the resulting ThreadMXBean to enumerate current threads;
  • call getThreadInfo() to get the top n stack trace elements from a given list of threads.
link|flag
vote up 2 vote down

Look also at VisualVM, shipped with latest Java releases.

link|flag
You can also add your own custom plugins to this framework without too much trouble. – reccles Oct 24 at 16:39
And it is open source, so at least it shows a way to do that... – PhiLho Oct 25 at 14:30
vote up 0 vote down

You could use AspectJ for that. Have a look at this description of exactly your use case.

link|flag
vote up 1 vote down check

Oh shoot, looking through the source code I noticed the thread class has a method public StackTraceElement[] getStackTrace(), it just wasn't in the documentation I was reading. Now I feel dumb.

So yeah, that seems to be the solution.

link|flag
THis is a "newer" addition. You might have been looking at Java 1.4 javadoc. – Thorbjørn Ravn Andersen Oct 24 at 13:04
vote up 0 vote down

One approach might be to use something like BCEL to preprocess the target bytecode to insert calls to your own code on every method entry and exit (probably best to do exit by wrapping the whole method in a try/finally block, to catch exception exits). From this, you can deduce the call tree exactly as it happens.

link|flag

Your Answer

Get an OpenID
or

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