71 lines
2.7 KiB
Java
71 lines
2.7 KiB
Java
package bcelifier;
|
|
|
|
import org.apache.commons.bcel6.generic.*;
|
|
import org.apache.commons.bcel6.classfile.*;
|
|
import org.apache.commons.bcel6.*;
|
|
import java.io.*;
|
|
|
|
public class Lambda1Creator implements Constants {
|
|
private InstructionFactory _factory;
|
|
private ConstantPoolGen _cp;
|
|
private ClassGen _cg;
|
|
|
|
public Lambda1Creator() {
|
|
_cg = new ClassGen("bcelifier.Lambda1", "java.lang.Object", "Lambda1.java", ACC_PUBLIC | ACC_SUPER, new String[] { });
|
|
|
|
_cp = _cg.getConstantPool();
|
|
_factory = new InstructionFactory(_cg, _cp);
|
|
}
|
|
|
|
public void create(OutputStream out) throws IOException {
|
|
createMethod_0();
|
|
createMethod_1();
|
|
createMethod_2();
|
|
_cg.getJavaClass().dump(out);
|
|
}
|
|
|
|
private void createMethod_0() {
|
|
InstructionList il = new InstructionList();
|
|
MethodGen method = new MethodGen(ACC_PUBLIC, Type.VOID, Type.NO_ARGS, new String[] { }, "<init>", "bcelifier.Lambda1", il, _cp);
|
|
|
|
InstructionHandle ih_0 = il.append(_factory.createLoad(Type.OBJECT, 0));
|
|
il.append(_factory.createInvoke("java.lang.Object", "<init>", Type.VOID, Type.NO_ARGS, Constants.INVOKESPECIAL));
|
|
InstructionHandle ih_4 = il.append(_factory.createReturn(Type.VOID));
|
|
method.setMaxStack();
|
|
method.setMaxLocals();
|
|
_cg.addMethod(method.getMethod());
|
|
il.dispose();
|
|
}
|
|
|
|
private void createMethod_1() {
|
|
InstructionList il = new InstructionList();
|
|
MethodGen method = new MethodGen(0, new ObjectType("java.lang.Runnable"), Type.NO_ARGS, new String[] { }, "methode", "bcelifier.Lambda1", il, _cp);
|
|
|
|
InstructionHandle ih_0 = il.append(_factory.createLoad(Type.OBJECT, 0));
|
|
InstructionHandle ih_1 = il.append(_factory.createReturn(Type.OBJECT));
|
|
method.setMaxStack();
|
|
method.setMaxLocals();
|
|
_cg.addMethod(method.getMethod());
|
|
il.dispose();
|
|
}
|
|
|
|
private void createMethod_2() {
|
|
InstructionList il = new InstructionList();
|
|
MethodGen method = new MethodGen(ACC_PRIVATE | ACC_SYNTHETIC, Type.VOID, Type.NO_ARGS, new String[] { }, "lambda$methode$0", "bcelifier.Lambda1", il, _cp);
|
|
|
|
InstructionHandle ih_0 = il.append(_factory.createFieldAccess("java.lang.System", "out", new ObjectType("java.io.PrintStream"), Constants.GETSTATIC));
|
|
il.append(_factory.createLoad(Type.OBJECT, 0));
|
|
il.append(_factory.createInvoke("java.io.PrintStream", "println", Type.VOID, new Type[] { Type.OBJECT }, Constants.INVOKEVIRTUAL));
|
|
InstructionHandle ih_7 = il.append(_factory.createReturn(Type.VOID));
|
|
method.setMaxStack();
|
|
method.setMaxLocals();
|
|
_cg.addMethod(method.getMethod());
|
|
il.dispose();
|
|
}
|
|
|
|
public static void main(String[] args) throws Exception {
|
|
bcelifier.Lambda1Creator creator = new bcelifier.Lambda1Creator();
|
|
creator.create(new FileOutputStream("bcelifier.Lambda1.class"));
|
|
}
|
|
}
|