为了更好地调试,我通常希望有:
Exception
at com.example.blah.Something.method()
at com.example.blah.Xyz.otherMethod()
at com.example.hello.World.foo()
at com.example.debug.version_3_8_0.debug_info_something.Hah.method() // synthetic method
at com.example.x.A.wrappingMethod()
如上所示的调试堆栈帧将动态生成,就像java.lang.reflect.Proxy
一样,除了我想完全控制代理上最终的整个完全限定方法名。
在调用站点,我会做一些愚蠢而简单的事情,像这样:
public void wrappingMethod() {
run("com.example.debug.version_3_8_0.debug_info_something.Hah.method()", () -> {
World.foo();
});
}
你可以看到,wrappingMethod()
是一个真正的方法,结束在堆栈跟踪,Hah.method()
是一个动态生成的方法,而World.foo()
又是一个真正的方法。
是的,我知道这会污染已经很深的堆栈痕迹。别担心。我有我的理由。
是否有一种(简单的)方法来做到这一点或类似于上面的东西?
不需要代码生成来解决这个问题:
static void run(String name, Runnable runnable) {
try {
runnable.run();
} catch (Throwable throwable) {
StackTraceElement[] stackTraceElements = throwable.getStackTrace();
StackTraceElement[] currentStackTrace = new Throwable().getStackTrace();
if (stackTraceElements != null && currentStackTrace != null) { // if disabled
int currentStackSize = currentStackStrace.length;
int currentFrame = stackTraceElements.length - currentStackSize - 1;
int methodIndex = name.lastIndexOf('.');
int argumentIndex = name.indexOf('(');
stackTraceElements[currentFrame] = new StackTraceElement(
name.substring(0, methodIndex),
name.substring(methodIndex + 1, argumentIndex),
null, // file name is optional
-1); // line number is optional
throwable.setStackTrace(stackTraceElements);
}
throw throwable;
}
}
使用代码生成,您可以添加具有名称的方法,在方法内重新定义调用站点,展开框架并调用生成的方法,但这将需要更多的工作,并且永远不会同样稳定。
这种策略在测试框架中是一种相当常见的方法,我们在Mockito和其他实用程序(如JRebel)中经常这样做,通过重写异常堆栈帧来隐藏它们的魔力。
当使用Java 9时,使用Stack Walker API执行此类操作会更有效。