使用insertAfter在Javassist中检测构造函数

时间:2019-04-10 04:40:32

标签: javassist

我试图检测构造函数以在调用它们时打印出一些东西。我通过使用insertAfter来做到这一点。我还想打印出对象引用。我尝试使用$_,但是将其设置为0。可以打印出新对象的对象引用吗?

1 个答案:

答案 0 :(得分:0)

我结束了寻找所需解决方案的工作。它由像这样的ExprEditor组成:

public CtClass instrumentMethods() throws CannotCompileException, IOException {
    ClassPool cp = ClassPool.getDefault();
    cp.insertClassPath(new LoaderClassPath(loader));
    CtClass ctKlazz = cp.makeClass(instream);

    CtMethod[] methods = ctKlazz.getMethods();
    for (CtMethod method : methods) {
        final CtBehavior method = methods[ind];
        method.instrument(
            new ExprEditor() {
                // Instrument new expressions:
                public void edit(NewExpr expr) throws CannotCompileException {
                    final int allocSiteId = getAllocSiteId(className, expr.indexOfBytecode());
                    expr.replace( "{ $_ = $proceed($$); someCodeHere($_); }");
                }
            }
        );
        method.insertBefore("{ someInstrumentationAtStart(); }");
    }

    return ctKlazz;
}