Mechanism to identify calling object/method?

N

Nedron

Is there a mechanism within Java (J2SE 5) that would allow me to
identify which object and/or method is calling a target method?

For example, if I have method Class1.foo() that is being called from
Class2.bar(), is there a way for Class1.foo() to identify one or both
of the calling object and method?

-Nedron
 
R

Roedy Green

Is there a mechanism within Java (J2SE 5) that would allow me to
identify which object and/or method is calling a target method?

For example, if I have method Class1.foo() that is being called from
Class2.bar(), is there a way for Class1.foo() to identify one or both
of the calling object and method?

see http://mindprod.com/jgloss/trace.html
 
C

Chris Smith

Nedron said:
Is there a mechanism within Java (J2SE 5) that would allow me to
identify which object and/or method is calling a target method?

For example, if I have method Class1.foo() that is being called from
Class2.bar(), is there a way for Class1.foo() to identify one or both
of the calling object and method?

Yes, at least half of it is possible. No, you shouldn't do it unless
you're looking for debugging information.

If you are trying to get information for debugging (for example, writing
to debug dump files and such, then the following is what you want:

new Throwable().printStackTrace();


There's also a version of printStackTrace that takes a PrintWriter.
There's also a getStackTrace() the returns an array of stack trace
elements containing information about the source file, line number,
method, class, etc. for each stack frame in the call stack. (It does
not contain the object).

If you're looking at doing this in live code, then you've got design
problems. Somewhere, you need to have actually told the code you're
calling which object it needs to interact with. Perhaps that should
have been during the call to the method, or perhaps elsewhere such as in
a constructor. In any case, it's not at all a good idea to try to
recover this information, having failed to retain it in the first place.
Even if the information available from Throwable.getStackTrace() is
sufficient for your needs, it leads to fragile code that will break at
some future time. For that reason, you really need to find a better
answer than making real use of the stack; though providing it to
developers for informational purposes is entirely normal.

--
www.designacourse.com
The Easiest Way To Train Anyone... Anywhere.

Chris Smith - Lead Software Developer/Technical Trainer
MindIQ Corporation
 
D

Dave Mandelin

For a normal program, it's better to redesign to avoid the need to do
this. If you have some special purpose that makes it necessary, there
are a couple of things you can do. The method is easier to get: you can
create a Throwable and then parse its stack trace. To get the object, I
think you need a runtime instrumentation system, like AspectJ.
 
N

Nedron

Thanks to all for the pointer to Throwable. That's exactly what I was
looking for. This is specifically to attempt debugging a very strange
multithreaded synchronization issue.

-David
 
Joined
Jul 6, 2011
Messages
1
Reaction score
0
url of calling file...

If I want the url of the calling file then what i hav to do.
(means if a servlet A is calling my method then how can i get the url of that servlet)

Please help.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,756
Messages
2,569,535
Members
45,008
Latest member
obedient dusk

Latest Threads

Top