Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

To fix a test case I need to identify whether the function is called from a particular caller function. I can't afford to add a boolean parameter because it would break the interfaces defined. How to go about this?

This is what I want to achieve. Here I can't change the parameters of operation() as it is an interface implementation.

operation()
{
   if not called from performancetest() method
       do expensive bookkeeping operation
   ...       

}
share|improve this question
6  
I'd just emphasize that in almost every circumstance this is a really really bad idea. Make sure you have a really really good reason before implementing this. Consider any and all possible alternatives. For example: can you add an interface? – Winston Ewert Oct 31 '10 at 22:46
I found out a way without it. Thanks a lot for the suggestion. – darthvader Oct 31 '10 at 23:30
2  
One reason this is a really bad idea is that the only viable implementation approach is Expensive. – Stephen C Oct 31 '10 at 23:34
And it's a particularly terrible idea to do it just to fix a test case. – EJP Nov 1 '10 at 2:28

2 Answers

up vote 18 down vote accepted

You could try

StackTraceElement[] stacktrace = Thread.currentThread().getStackTrace();
StackTraceElement e = stacktrace[2];//maybe this number needs to be corrected
String methodName = e.getMethodName();
share|improve this answer
1  
new Throwable().fillInStackTrace().getStackTrace()[1].getMethodName() – mootinator Oct 31 '10 at 22:47
1  
@mootinator: I think that getStackTrace() is faster. – thejh Oct 31 '10 at 23:08
1  
if correctly implemented, they are both the same: thread.getStackTrace() does return (new Exception()).getStackTrace(); if the thread is the current one. – Stephen C Oct 31 '10 at 23:30
1  
@mootinator - the fillInStackTrace() call is redundant. – Stephen C Oct 31 '10 at 23:31

You could find the calling method using the Stacktrace

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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