Example usage for org.objectweb.asm.tree ClassNode accept

List of usage examples for org.objectweb.asm.tree ClassNode accept

Introduction

In this page you can find the example usage for org.objectweb.asm.tree ClassNode accept.

Prototype

public void accept(final ClassVisitor classVisitor) 

Source Link

Document

Makes the given class visitor visit this class.

Usage

From source file:org.coldswap.asm.field.PrivateStaticFieldReplacer.java

License:Open Source License

public byte[] replace() {
    final ClassNode cn = new ClassNode(Opcodes.ASM5);
    ClassReader cr = new ClassReader(bytes);
    ClassWriter cw = new ClassWriter(cr, ClassWriter.COMPUTE_FRAMES);
    cr.accept(cn, 0);/*from  w ww .j a v a 2  s. co m*/
    // get a list of public/protected/package/private fields but exclude
    // inherited fields.
    Field[] refFields = aClass.getDeclaredFields();
    List asmFields = cn.fields;
    Iterator iterator = asmFields.iterator();
    while (iterator.hasNext()) {
        final FieldNode fNode = (FieldNode) iterator.next();
        int privateStatic = Opcodes.ACC_STATIC | Opcodes.ACC_PRIVATE;
        // search only for private static fields
        if ((fNode.access == privateStatic)) {
            // check if this field exist in the old loaded class
            // and if not proceed with the trick.
            boolean foundIt = false;
            for (Field refField : refFields) {
                if (fNode.name.equals(refField.getName())) {
                    if (fNode.desc.equals(Type.getType(refField.getType()).getDescriptor())) {
                        foundIt = true;
                        break;
                    }
                }
            }
            if (!foundIt) {
                String contClass = cn.name.substring(cn.name.lastIndexOf("/") + 1);
                String className = TransformerNameGenerator.getPrivateStaticFieldClassName(contClass,
                        fNode.name);
                // remove the static reference from <clinit>
                InsnList insnList = cleanClInit(cn, fNode);
                // create a new class that contains the field
                // before anything change the field access to public static so that it can be referenced
                // from other classes.
                fNode.access = Opcodes.ACC_PUBLIC | Opcodes.ACC_STATIC;
                byte[] newBClass = ByteCodeGenerator.newFieldClass(cn, fNode, insnList,
                        classPackage + className);
                try {
                    String cp = ClassUtil.getClassPath(aClass);
                    ByteCodeClassWriter.setClassPath(cp);
                    ByteCodeClassWriter.writeClass(className, newBClass);
                } catch (IOException e) {
                    logger.warning(e.toString());
                }

                iterator.remove();
                // replace every reference
                replaceReferences(cn, fNode);
            }
        }
    }
    cn.accept(cw);
    return cw.toByteArray();
}

From source file:org.coldswap.asm.field.ProtectedStaticFieldReplacer.java

License:Open Source License

public byte[] replace() {
    final ClassNode cn = new ClassNode(Opcodes.ASM5);
    ClassReader cr = new ClassReader(bytes);
    ClassWriter cw = new ClassWriter(cr, ClassWriter.COMPUTE_FRAMES);
    cr.accept(cn, 0);/*from www  .  j  ava  2 s.c  om*/
    // get a list of public/protected fields.
    Field[] refFields = aClass.getDeclaredFields();
    List asmFields = getFields(cn);
    Iterator iterator = asmFields.iterator();
    while (iterator.hasNext()) {
        final FieldNode fNode = (FieldNode) iterator.next();
        int protectedStatic = Opcodes.ACC_STATIC | Opcodes.ACC_PROTECTED;
        // search only for protected static fields
        if ((fNode.access == protectedStatic)) {
            // check if this field exist in the old loaded class
            // and if not proceed with the trick.
            boolean foundIt = false;
            for (Field refField : refFields) {
                if (fNode.name.equals(refField.getName())) {
                    if (fNode.desc.equals(Type.getType(refField.getType()).getDescriptor())) {
                        foundIt = true;
                        break;
                    }
                }
            }
            if (!foundIt) {
                // register a public static reference replacer
                String contClass = cn.name.substring(cn.name.lastIndexOf("/") + 1);
                String className = TransformerNameGenerator.getProtectedStaticFieldClassName(contClass,
                        fNode.name);
                // make field access as public static
                fNode.access = Opcodes.ACC_PUBLIC | Opcodes.ACC_STATIC;
                replacerManager.registerFieldReferenceReplacer(new ProtectedStaticFieldReferenceReplacer(
                        contClass, fNode, classPackage + className, contClass));
                // remove the static reference from <clinit>
                InsnList insnList = cleanClInit(cn, fNode, true);
                // because the field might be inherited from superclass we need to copy
                // the initializer from the parent.
                if ((insnList == null) || (insnList.size() > 0)) {
                    insnList = inheritedInitCode.get(fNode);
                }
                // create a new class that contains the field
                // before anything change the field access to public static so that it can be referenced
                // from other classes.
                fNode.access = Opcodes.ACC_PUBLIC | Opcodes.ACC_STATIC;
                byte[] newBClass = ByteCodeGenerator.newFieldClass(cn, fNode, insnList,
                        classPackage + className);
                try {
                    String cp = ClassUtil.getClassPath(aClass);
                    ByteCodeClassWriter.setClassPath(cp);
                    ByteCodeClassWriter.writeClass(className, newBClass);
                } catch (IOException e) {
                    logger.warning(e.toString());
                }

                iterator.remove();
                // replace every reference
                replaceReferences(cn, fNode);
            }
        }
    }
    cn.accept(cw);
    return cw.toByteArray();
}

From source file:org.coldswap.asm.field.PublicStaticFieldReplacer.java

License:Open Source License

public byte[] replace() {
    final ClassNode cn = new ClassNode(Opcodes.ASM5);
    ClassReader cr = new ClassReader(bytes);
    ClassWriter cw = new ClassWriter(cr, ClassWriter.COMPUTE_FRAMES);
    cr.accept(cn, 0);/*from  ww w  . j a  va  2  s  . c om*/
    // get a list of public/protected/package/private fields but exclude
    // inherited fields.
    Field[] refFields = aClass.getDeclaredFields();
    List asmFields = cn.fields;
    Iterator iterator = asmFields.iterator();
    while (iterator.hasNext()) {
        final FieldNode fNode = (FieldNode) iterator.next();
        int publicStatic = Opcodes.ACC_STATIC | Opcodes.ACC_PUBLIC;
        //int publicStaticFinal = Opcodes.ACC_PUBLIC | Opcodes.ACC_STATIC | Opcodes.ACC_FINAL;
        // search only for public static fields
        if ((fNode.access == publicStatic)) {
            // check if this field exist in the old loaded class
            // and if not proceed with the trick.
            boolean foundIt = false;
            for (Field refField : refFields) {
                if (fNode.name.equals(refField.getName())) {
                    if (fNode.desc.equals(Type.getType(refField.getType()).getDescriptor())) {
                        foundIt = true;
                        break;
                    }
                }
            }
            if (!foundIt) {
                // register a public static reference replacer
                String contClass = cn.name.substring(cn.name.lastIndexOf("/") + 1);
                String className = TransformerNameGenerator.getPublicStaticFieldClassName(contClass,
                        fNode.name);
                replacerManager.registerFieldReferenceReplacer(
                        new PublicStaticFieldReferenceReplacer(contClass, fNode, classPackage + className));
                // remove the static reference from <clinit>
                InsnList insnList = cleanClInit(cn, fNode);
                // create a new class that contains the field
                byte[] newBClass = ByteCodeGenerator.newFieldClass(cn, fNode, insnList,
                        classPackage + className);
                try {
                    String cp = ClassUtil.getClassPath(aClass);
                    ByteCodeClassWriter.setClassPath(cp);
                    ByteCodeClassWriter.writeClass(className, newBClass);
                } catch (IOException e) {
                    logger.warning(e.toString());
                }

                iterator.remove();
                // replace every reference
                replaceReferences(cn, fNode);
            }
        }
    }
    cn.accept(cw);
    return cw.toByteArray();
}

From source file:org.coldswap.asm.method.MethodCleaner.java

License:Open Source License

@Override
public byte[] replace() {
    final ClassNode cn = new ClassNode(Opcodes.ASM5);
    ClassReader cr = new ClassReader(bytes);
    ClassWriter cw = new ClassWriter(cr, ClassWriter.COMPUTE_FRAMES | ClassWriter.COMPUTE_MAXS);
    cr.accept(cn, 0);/*from   w  ww.ja v a  2  s .c o m*/
    // get a list of public/protected/package/private methods but exclude
    // inherited methods.
    Method[] methods = aClass.getDeclaredMethods();
    List asmMethods = cn.methods;
    Iterator iterator = asmMethods.iterator();
    while (iterator.hasNext()) {
        final MethodNode mNode = (MethodNode) iterator.next();
        // exclude <init>() and <clinit>()
        if (!"<clinit>".equals(mNode.name) && !"<init>".equals(mNode.name)) {
            boolean foundIt = false;
            int publicAccessor = Opcodes.ACC_PUBLIC;
            // search only for public methods
            if ((mNode.access == publicAccessor)) {
                // check if this method exist in the old loaded class
                // and if not proceed with the trick.
                Type mRetType = MethodUtil.getReturnType(mNode);
                Type[] mParamType = MethodUtil.getParamsType(mNode);
                for (Method method : methods) {
                    if (mNode.name.equals(method.getName())) {
                        Type fRetType = Type.getType(method).getReturnType();
                        if (mRetType.equals(fRetType)) {
                            Type[] fParamType = MethodUtil.classToType(method.getParameterTypes());
                            boolean tmp = true;
                            if (mParamType.length == fParamType.length) {
                                for (int i = 0; i < mParamType.length; i++) {
                                    if (!mParamType[i].equals(fParamType[i])) {
                                        tmp = false;
                                    }
                                }
                            }
                            foundIt = tmp;
                        }
                    }
                }
                if (!foundIt) {
                    // remove
                    counter++;
                    iterator.remove();
                }
            }
        }
    }
    // note user about removed methods.
    if (counter > 0) {
        logger.severe(
                counter + " new methods found and removed. Please consider stopping the application because"
                        + " there might be calls to this methods that would break application state.");
    }
    cn.accept(cw);
    return cw.toByteArray();
}

From source file:org.coldswap.asm.method.PublicFloatMethodReplacer.java

License:Open Source License

@Override
public byte[] replace() {
    int counter = -1;
    final ClassNode cn = new ClassNode(Opcodes.ASM5);
    ClassReader cr = new ClassReader(bytes);
    ClassWriter cw = new ClassWriter(cr, ClassWriter.COMPUTE_FRAMES | ClassWriter.COMPUTE_MAXS);
    cr.accept(cn, 0);//w  w  w. ja v a2  s  .  com
    List<MethodBox> factory = new ArrayList<MethodBox>();
    // find first the helper method
    MethodNode[] helperMethod = new MethodNode[maxNumberOfMethods];
    for (int i = 0; i < maxNumberOfMethods; i++) {
        helperMethod[i] = MethodUtil.createFloatHelperMethod(cn.name, i);
        cn.methods.add(helperMethod[i]);
    }
    // get a list of public/protected/package/private methods but exclude
    // inherited methods.
    Method[] methods = aClass.getDeclaredMethods();
    List asmMethods = cn.methods;
    Iterator iterator = asmMethods.iterator();
    while (iterator.hasNext()) {
        final MethodNode mNode = (MethodNode) iterator.next();
        // exclude <init>() and <clinit>()
        if (!"<clinit>".equals(mNode.name) && !"<init>".equals(mNode.name)) {
            boolean foundIt = false;
            int publicAccessor = Opcodes.ACC_PUBLIC;
            // search only for public methods
            if ((mNode.access == publicAccessor)) {
                // check if this method exist in the old loaded class
                // and if not proceed with the trick.
                Type mRetType = MethodUtil.getReturnType(mNode);
                Type[] mParamType = MethodUtil.getParamsType(mNode);
                for (Method method : methods) {
                    if (mNode.name.equals(method.getName())) {
                        Type fRetType = Type.getType(method).getReturnType();
                        if (mRetType.equals(fRetType)) {
                            Type[] fParamType = MethodUtil.classToType(method.getParameterTypes());
                            boolean tmp = true;
                            if (mParamType.length == fParamType.length) {
                                for (int i = 0; i < mParamType.length; i++) {
                                    if (!mParamType[i].equals(fParamType[i])) {
                                        tmp = false;
                                    }
                                }
                            }
                            foundIt = tmp;
                        }
                    }
                }
                if (!foundIt) {
                    // ignore any method that has return type of void
                    if (!mRetType.equals(Type.VOID_TYPE)) {
                        // work only with methods that have as a parameter int.
                        if (mParamType.length == 1 && mParamType[0].equals(Type.getType("F"))) {
                            if (counter < maxNumberOfMethods) {
                                counter++;
                                refManager.registerFieldReferenceReplacer(new PublicMethodReferenceReplacer(
                                        cn.name, mNode.name, mRetType, mParamType, Constants.FLOAT, counter));
                                // autobox return type.
                                if (AutoBoxing.isPrimitive(mRetType.getDescriptor())) {
                                    // replace any return reference with a boxing call and a areturn call
                                    mNode.instructions = replaceReturn(mNode.instructions, mRetType);
                                }
                                helperMethod[counter] = ByteCodeGenerator
                                        .insertNewNotVoidMethod(helperMethod[counter], mNode);
                                // replace method call
                                factory.add(new VirtualMethodReplacer(cn.name, mNode.name, mRetType, mParamType,
                                        Constants.FLOAT, counter));
                            }
                            // remove method
                            iterator.remove();
                        }
                    }
                }
            }
        }
    }

    // start replacing references
    for (Object asmMethod : asmMethods) {
        MethodNode container = (MethodNode) asmMethod;
        for (MethodBox methodReplacer : factory) {
            methodReplacer.replaceInvoke(container);
        }

    }

    cn.accept(cw);
    return cw.toByteArray();
}

From source file:org.coldswap.asm.method.PublicIntMethodReplacer.java

License:Open Source License

@Override
public byte[] replace() {
    int counter = -1;
    final ClassNode cn = new ClassNode(Opcodes.ASM5);
    ClassReader cr = new ClassReader(bytes);
    ClassWriter cw = new ClassWriter(cr, ClassWriter.COMPUTE_FRAMES | ClassWriter.COMPUTE_MAXS);
    cr.accept(cn, 0);/* w w  w . j  ava 2s.com*/
    List<MethodBox> factory = new ArrayList<MethodBox>();
    // find first the helper method
    MethodNode[] helperMethod = new MethodNode[maxNumberOfMethods];
    for (int i = 0; i < maxNumberOfMethods; i++) {
        helperMethod[i] = MethodUtil.createIntHelperMethod(cn.name, i);
        cn.methods.add(helperMethod[i]);
    }
    // get a list of public/protected/package/private methods but exclude
    // inherited methods.
    Method[] methods = aClass.getDeclaredMethods();
    List asmMethods = cn.methods;
    Iterator iterator = asmMethods.iterator();
    while (iterator.hasNext()) {
        final MethodNode mNode = (MethodNode) iterator.next();
        // exclude <init>() and <clinit>()
        if (!"<clinit>".equals(mNode.name) && !"<init>".equals(mNode.name)) {
            boolean foundIt = false;
            int publicAccessor = Opcodes.ACC_PUBLIC;
            // search only for public methods
            if ((mNode.access == publicAccessor)) {
                // check if this method exist in the old loaded class
                // and if not proceed with the trick.
                Type mRetType = MethodUtil.getReturnType(mNode);
                Type[] mParamType = MethodUtil.getParamsType(mNode);
                for (Method method : methods) {
                    if (mNode.name.equals(method.getName())) {
                        Type fRetType = Type.getType(method).getReturnType();
                        if (mRetType.equals(fRetType)) {
                            Type[] fParamType = MethodUtil.classToType(method.getParameterTypes());
                            boolean tmp = true;
                            if (mParamType.length == fParamType.length) {
                                for (int i = 0; i < mParamType.length; i++) {
                                    if (!mParamType[i].equals(fParamType[i])) {
                                        tmp = false;
                                    }
                                }
                            }
                            foundIt = tmp;
                        }
                    }
                }
                if (!foundIt) {
                    // ignore any method that has return type of void
                    if (!mRetType.equals(Type.VOID_TYPE)) {
                        // work only with methods that have as a parameter int.
                        if (mParamType.length == 1 && mParamType[0].equals(Type.getType("I"))) {
                            if (counter < maxNumberOfMethods) {
                                counter++;
                                refManager.registerFieldReferenceReplacer(new PublicMethodReferenceReplacer(
                                        cn.name, mNode.name, mRetType, mParamType, Constants.INT, counter));
                                // autobox return type.
                                if (AutoBoxing.isPrimitive(mRetType.getDescriptor())) {
                                    // replace any return reference with a boxing call and a areturn call
                                    mNode.instructions = replaceReturn(mNode.instructions, mRetType);
                                }
                                helperMethod[counter] = ByteCodeGenerator
                                        .insertNewNotVoidMethod(helperMethod[counter], mNode);
                                // replace method call
                                factory.add(new VirtualMethodReplacer(cn.name, mNode.name, mRetType, mParamType,
                                        Constants.INT, counter));
                            }
                            // remove method
                            iterator.remove();
                        }
                    }
                }
            }
        }
    }

    // start replacing references
    for (Object asmMethod : asmMethods) {
        MethodNode container = (MethodNode) asmMethod;
        for (MethodBox methodReplacer : factory) {
            methodReplacer.replaceInvoke(container);
        }

    }

    cn.accept(cw);
    return cw.toByteArray();
}

From source file:org.coldswap.asm.method.PublicLongMethodReplacer.java

License:Open Source License

@Override
public byte[] replace() {
    int counter = -1;
    final ClassNode cn = new ClassNode(Opcodes.ASM5);
    ClassReader cr = new ClassReader(bytes);
    ClassWriter cw = new ClassWriter(cr, ClassWriter.COMPUTE_FRAMES | ClassWriter.COMPUTE_MAXS);
    cr.accept(cn, 0);/*  w w  w  .  j a va 2s  . c  o  m*/
    List<MethodBox> factory = new ArrayList<MethodBox>();
    // find first the helper method
    MethodNode[] helperMethod = new MethodNode[maxNumberOfMethods];
    for (int i = 0; i < maxNumberOfMethods; i++) {
        helperMethod[i] = MethodUtil.createLongHelperMethod(cn.name, i);
        cn.methods.add(helperMethod[i]);
    }
    // get a list of public/protected/package/private methods but exclude
    // inherited methods.
    Method[] methods = aClass.getDeclaredMethods();
    List asmMethods = cn.methods;
    Iterator iterator = asmMethods.iterator();
    while (iterator.hasNext()) {
        final MethodNode mNode = (MethodNode) iterator.next();
        // exclude <init>() and <clinit>()
        if (!"<clinit>".equals(mNode.name) && !"<init>".equals(mNode.name)) {
            boolean foundIt = false;
            int publicAccessor = Opcodes.ACC_PUBLIC;
            // search only for public methods
            if ((mNode.access == publicAccessor)) {
                // check if this method exist in the old loaded class
                // and if not proceed with the trick.
                Type mRetType = MethodUtil.getReturnType(mNode);
                Type[] mParamType = MethodUtil.getParamsType(mNode);
                for (Method method : methods) {
                    if (mNode.name.equals(method.getName())) {
                        Type fRetType = Type.getType(method).getReturnType();
                        if (mRetType.equals(fRetType)) {
                            Type[] fParamType = MethodUtil.classToType(method.getParameterTypes());
                            boolean tmp = true;
                            if (mParamType.length == fParamType.length) {
                                for (int i = 0; i < mParamType.length; i++) {
                                    if (!mParamType[i].equals(fParamType[i])) {
                                        tmp = false;
                                    }
                                }
                            }
                            foundIt = tmp;
                        }
                    }
                }
                if (!foundIt) {
                    // ignore any method that has return type of void
                    if (!mRetType.equals(Type.VOID_TYPE)) {
                        // work only with methods that have as a parameter int.
                        if (mParamType.length == 1 && mParamType[0].equals(Type.getType("J"))) {
                            if (counter < maxNumberOfMethods) {
                                counter++;
                                refManager.registerFieldReferenceReplacer(new PublicMethodReferenceReplacer(
                                        cn.name, mNode.name, mRetType, mParamType, Constants.LONG, counter));
                                // autobox return type.
                                if (AutoBoxing.isPrimitive(mRetType.getDescriptor())) {
                                    // replace any return reference with a boxing call and a areturn call
                                    mNode.instructions = replaceReturn(mNode.instructions, mRetType);
                                }
                                helperMethod[counter] = ByteCodeGenerator
                                        .insertNewNotVoidMethod(helperMethod[counter], mNode);
                                // replace method call
                                factory.add(new VirtualMethodReplacer(cn.name, mNode.name, mRetType, mParamType,
                                        Constants.LONG, counter));
                            }
                            // remove method
                            iterator.remove();
                        }
                    }
                }
            }
        }
    }

    // start replacing references
    for (Object asmMethod : asmMethods) {
        MethodNode container = (MethodNode) asmMethod;
        for (MethodBox methodReplacer : factory) {
            methodReplacer.replaceInvoke(container);
        }

    }

    cn.accept(cw);
    return cw.toByteArray();
}

From source file:org.coldswap.asm.method.PublicObjectMethodReplacer.java

License:Open Source License

@Override
public byte[] replace() {
    int counter = -1;
    final ClassNode cn = new ClassNode(Opcodes.ASM5);
    ClassReader cr = new ClassReader(bytes);
    ClassWriter cw = new ClassWriter(cr, ClassWriter.COMPUTE_FRAMES | ClassWriter.COMPUTE_MAXS);
    cr.accept(cn, 0);/*from  w  w  w .j a va  2s  . c  o m*/
    List<MethodBox> factory = new ArrayList<MethodBox>();
    // find first the helper method
    MethodNode[] helperMethod = new MethodNode[maxNumberOfMethods];
    for (int i = 0; i < maxNumberOfMethods; i++) {
        helperMethod[i] = MethodUtil.createObjectHelperMethod(cn.name, i);
        cn.methods.add(helperMethod[i]);
    }
    // get a list of public/protected/package/private methods but exclude
    // inherited methods.
    Method[] methods = aClass.getDeclaredMethods();
    List asmMethods = cn.methods;
    Iterator iterator = asmMethods.iterator();
    while (iterator.hasNext()) {
        final MethodNode mNode = (MethodNode) iterator.next();
        // exclude <init>() and <clinit>()
        if (!"<clinit>".equals(mNode.name) && !"<init>".equals(mNode.name)) {
            boolean foundIt = false;
            int publicAccessor = Opcodes.ACC_PUBLIC;
            // search only for public methods
            if ((mNode.access == publicAccessor)) {
                // check if this method exist in the old loaded class
                // and if not proceed with the trick.
                Type mRetType = MethodUtil.getReturnType(mNode);
                Type[] mParamType = MethodUtil.getParamsType(mNode);
                for (Method method : methods) {
                    if (mNode.name.equals(method.getName())) {
                        Type fRetType = Type.getType(method).getReturnType();
                        if (mRetType.equals(fRetType)) {
                            Type[] fParamType = MethodUtil.classToType(method.getParameterTypes());
                            boolean tmp = true;
                            if (mParamType.length == fParamType.length) {
                                for (int i = 0; i < mParamType.length; i++) {
                                    if (!mParamType[i].equals(fParamType[i])) {
                                        tmp = false;
                                    }
                                }
                            }
                            foundIt = tmp;
                        }
                    }
                }
                if (!foundIt) {
                    // ignore any method that has return type of void
                    if (!mRetType.equals(Type.VOID_TYPE)) {
                        // work only with methods that have as a parameter
                        // Object[].
                        if (mParamType.length == 1
                                && mParamType[0].equals(Type.getType("[Ljava/lang/Object;"))) {
                            if (counter < maxNumberOfMethods) {
                                counter++;
                                refManager.registerFieldReferenceReplacer(
                                        new PublicMethodReferenceReplacer(cn.name, mNode.name, mRetType,
                                                mParamType, Constants.VAROBJECT, counter));
                                // autobox return type.
                                if (AutoBoxing.isPrimitive(mRetType.getDescriptor())) {
                                    // replace any return reference with a boxing call and a areturn call
                                    mNode.instructions = replaceReturn(mNode.instructions, mRetType);
                                }
                                helperMethod[counter] = ByteCodeGenerator
                                        .insertNewNotVoidMethod(helperMethod[counter], mNode);
                                // replace method call
                                factory.add(new VirtualMethodReplacer(cn.name, mNode.name, mRetType, mParamType,
                                        Constants.VAROBJECT, counter));
                            }
                            // remove this method
                            iterator.remove();
                        }
                    }
                }
            }
        }
    }

    // start replacing references
    for (Object asmMethod : asmMethods) {
        MethodNode container = (MethodNode) asmMethod;
        for (MethodBox methodReplacer : factory) {
            methodReplacer.replaceInvoke(container);
        }

    }
    cn.accept(cw);
    return cw.toByteArray();
}

From source file:org.coldswap.asm.method.PublicStringMethodReplacer.java

License:Open Source License

@Override
public byte[] replace() {
    int counter = -1;
    final ClassNode cn = new ClassNode(Opcodes.ASM5);
    ClassReader cr = new ClassReader(bytes);
    ClassWriter cw = new ClassWriter(cr, ClassWriter.COMPUTE_FRAMES | ClassWriter.COMPUTE_MAXS);
    cr.accept(cn, 0);/*from  w ww  . ja  v a  2 s  .  c  om*/
    List<MethodBox> factory = new ArrayList<MethodBox>();
    // find first the helper method
    MethodNode[] helperMethod = new MethodNode[maxNumberOfMethods];
    for (int i = 0; i < maxNumberOfMethods; i++) {
        helperMethod[i] = MethodUtil.createStringHelperMethod(cn.name, i);
        cn.methods.add(helperMethod[i]);
    }
    // get a list of public/protected/package/private methods but exclude
    // inherited methods.
    Method[] methods = aClass.getDeclaredMethods();
    List asmMethods = cn.methods;
    Iterator iterator = asmMethods.iterator();
    while (iterator.hasNext()) {
        final MethodNode mNode = (MethodNode) iterator.next();
        // exclude <init>() and <clinit>()
        if (!"<clinit>".equals(mNode.name) && !"<init>".equals(mNode.name)) {
            boolean foundIt = false;
            int publicAccessor = Opcodes.ACC_PUBLIC;
            // search only for public methods
            if ((mNode.access == publicAccessor)) {
                // check if this method exist in the old loaded class
                // and if not proceed with the trick.
                Type mRetType = MethodUtil.getReturnType(mNode);
                Type[] mParamType = MethodUtil.getParamsType(mNode);
                for (Method method : methods) {
                    if (mNode.name.equals(method.getName())) {
                        Type fRetType = Type.getType(method).getReturnType();
                        if (mRetType.equals(fRetType)) {
                            Type[] fParamType = MethodUtil.classToType(method.getParameterTypes());
                            boolean tmp = true;
                            if (mParamType.length == fParamType.length) {
                                for (int i = 0; i < mParamType.length; i++) {
                                    if (!mParamType[i].equals(fParamType[i])) {
                                        tmp = false;
                                    }
                                }
                            }
                            foundIt = tmp;
                        }
                    }
                }
                if (!foundIt) {
                    // ignore any method that has return type of void
                    if (!mRetType.equals(Type.VOID_TYPE)) {
                        // work only with methods that have as a parameter int.
                        if (mParamType.length == 1
                                && mParamType[0].equals(Type.getType("Ljava/lang/String;"))) {
                            if (counter < maxNumberOfMethods) {
                                counter++;
                                refManager.registerFieldReferenceReplacer(new PublicMethodReferenceReplacer(
                                        cn.name, mNode.name, mRetType, mParamType, Constants.STRING, counter));
                                // autobox return type.
                                if (AutoBoxing.isPrimitive(mRetType.getDescriptor())) {
                                    // replace any return reference with a boxing call and a areturn call
                                    mNode.instructions = replaceReturn(mNode.instructions, mRetType);
                                }
                                helperMethod[counter] = ByteCodeGenerator
                                        .insertNewNotVoidMethod(helperMethod[counter], mNode);
                                // replace method call
                                factory.add(new VirtualMethodReplacer(cn.name, mNode.name, mRetType, mParamType,
                                        Constants.STRING, counter));
                            }
                            // remove method
                            iterator.remove();
                        }
                    }
                }
            }
        }
    }

    // start replacing references
    for (Object asmMethod : asmMethods) {
        MethodNode container = (MethodNode) asmMethod;
        for (MethodBox methodReplacer : factory) {
            methodReplacer.replaceInvoke(container);
        }

    }

    cn.accept(cw);
    return cw.toByteArray();
}

From source file:org.coldswap.transformer.ClInitTransformer.java

License:Open Source License

@SuppressWarnings("unchecked")
@Override//from   ww  w  .  jav  a  2  s . co m
public byte[] transform(ClassLoader classLoader, String s, Class<?> aClass, ProtectionDomain protectionDomain,
        byte[] bytes) throws IllegalClassFormatException {
    if (s != null && !"".equals(s)) {
        for (String pack : ClassUtil.skipTransforming) {
            if (s.startsWith(pack)) {
                return bytes;
            }
        }

        ClassNode cn = new ClassNode(Opcodes.ASM5);
        ClassReader cr = new ClassReader(bytes);
        ClassWriter cw = new ClassWriter(cr, ClassWriter.COMPUTE_FRAMES | ClassWriter.COMPUTE_MAXS);
        // create adapter for method insertion.
        cr.accept(cn, 0);
        // insert <clinit>V if it is not inserted
        List methods = cn.methods;
        boolean clInitFound = false;
        for (MethodNode methodNode : (List<MethodNode>) methods) {
            if ("<clinit>".equals(methodNode.name)) {
                clInitFound = true;
            }
        }

        if (!clInitFound) {
            MethodNode mn = new MethodNode(Opcodes.ACC_STATIC, "<clinit>", "()V", null, null);
            InsnList insnList = mn.instructions;
            insnList.add(new LabelNode());
            insnList.add(new InsnNode(Opcodes.RETURN));
            cn.methods.add(mn);
        }

        cn.accept(cw);
        byte[] toRet = cw.toByteArray();
        if (toRet != null) {
            logger.info("Successful transformation!");
            return toRet;
        } else {
            logger.severe("Could not transform class");
            return bytes;
        }
    }
    return bytes;
}