In java, it is possible to get the class and method that called the current method (the method in which you get the StackTrace).

My question is, can I get the arguments that were passed to the method that called this method?

I need this for debugging purposes.

Eg:

baseClass {
   initialFunc(input) {
       var modifiedInput = input + " I modified you";
       otherClass.doSomething(modifiedInput);
   }
}

otherClass {
    doSomething(input)  {
         //GET THE ARGUMENTS PASSED TO THE METHOD OF THE CLASS THAT CALLED THIS METHOD
    }
}

Can one get this information from the stacktrace, or are there other means?

(Note that I need to be able to do this in runtime and cannot actually change the source of baseClass, this is going to be a feature of my debugging class that does not know the source beforehand)

Thanks.

link|improve this question

you can if you attach a debugger, otherwise - no. The parameters might be in CPU registers (not on the stack) – bestsss Feb 9 '11 at 10:38
I'm afraid I cannot attach a debugger for my purposes – Tom Feb 9 '11 at 10:39
Then you're lost, besides ClassLoader and enhancing on-the-fly the class to trap the arguments. (but you'd not ask if you knew how) – bestsss Feb 9 '11 at 10:42
When a debugger can do it, then it must be possible somehow. AFAIK, a debugger doesn't use code instrumentation or alike, since it can be attached to any Java process. No idea how this works, maybe some JMX? – maaartinus Feb 9 '11 at 10:54
The debugger has its own API and it's not JMX but you must start java w/ the debugger settings. Technically you can implement the debugger interface, stop the thread, examine the stack frame, etc... – bestsss Feb 9 '11 at 10:56
show 9 more comments
feedback

5 Answers

up vote 3 down vote accepted

I don't believe this is possible using the standard Java API.

What you could do is to use AspectJ, place a point-cut at the calling method, save the arguments, place a point-cut at the called method and pass on the arguments.

Another option (slightly more advanced) is to use a custom, bytecode-rewriting, class loader that saves the original arguments, and passes them on as extra arguments to the next method. This would probably take a day or two to implement. Suitable frameworks are BCEL or ASM.

link|improve this answer
The AspectJ approach would force me to change the source before runtime, so it is not an option. About the other option, can I make a JRE extention that updates whatever class every Method uses? If so, what class are methods/functions using in the JRE? – Tom Feb 9 '11 at 10:43
feedback

I think this could be possible, because input is out of scope but isn't yet accessible for garbage collection, so the value still exists, but unfortunately I don't believe there is an default API way to access it. This could be maybe possible with a custom implemented NDC (nested diagnostic context) for the logging approach.

link|improve this answer
Formal parameters are regarded as local varibales, whose content are stored on the stack, and thus never garbage collected. – aioobe Feb 9 '11 at 10:37
it's not necessary to be stored on the stack at all. The method can be inlined and/or the parameters can be in CPU registers (which is what happens w/ the 'hot' code) – bestsss Feb 9 '11 at 10:40
Are you sure there is no way to access it? – Tom Feb 9 '11 at 10:40
@Tom, if you run w/ debug settings you some other agent, you can do that. Normally you can't. – bestsss Feb 9 '11 at 10:41
@bestsss, I'm talking about the activation-record stack of the jvm. – aioobe Feb 9 '11 at 10:43
show 6 more comments
feedback

I'm not sure why you'd ever want to do this in Java?

The only way I can think of is to create a custom wrapper object for the passed string, thus sending the reference to the wrapper instead of a new string each time.
I'd advice against it, though, since it clutters your original code, and makes it even more error prone.

Might this problem not be solved using a debugger, like the one built into eclipse, to inspect your state?

link|improve this answer
feedback
public class StackTrace {
public static void main(String args[]) {
    StackTrace st = new StackTrace();
    st.func();
}
public void func() {
    OtherClass os =new OtherClass();
    os.getStackTrace(this);
}
}

class OtherClass {
void getStackTrace(Object obj)  {
    System.out.println(obj.getClass());
}
}
link|improve this answer
This does not access the passed arguments – Tom Feb 9 '11 at 12:44
feedback

This is possible using Reflection API !

link|improve this answer
Does that require me to attach a debugger? – Tom Feb 9 '11 at 10:45
i dont vote, yet the answer is a good candidate for -1 – bestsss Feb 9 '11 at 10:47
No not really, this is a technique which JVM uses internally for their purpose. It's really interesting to play around Reflection... – Ujjwal Feb 9 '11 at 10:47
1  
you can get the caller class - true, but not the arguments – bestsss Feb 9 '11 at 10:50
1  
This is not possible using reflection alone, as the original code should not be modified (=> you have no place to insert the reflective calls). – Arne Feb 9 '11 at 10:58
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

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