blob: 1eb0edfc54798925ce894ba9031be50f8b86065b [file] [log] [blame]
/*
* Copyright 2006 The Apache Software Foundation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
package org.apache.felix.ipojo.handlers.dependency.nullable;
import java.io.IOException;
import java.io.InputStream;
import java.net.URL;
import org.objectweb.asm.ClassReader;
import org.objectweb.asm.ClassWriter;
import org.objectweb.asm.MethodVisitor;
import org.objectweb.asm.Opcodes;
import org.objectweb.asm.Type;
/** Create the proxy class.
* @author clément
*/
public class NullableObjectWriter implements Opcodes {
/** Return the proxy classname for the contract contractname
* on the service object soc.
* @param url URL of the needed contract
* @param contractName String
* @return byte[]
*/
public static byte[] dump(URL url,
String contractName) {
ClassReader cr = null;
InputStream is = null;
byte[] b = null;
try {
is = url.openStream();
cr = new ClassReader(is);
MethodSignatureVisitor msv = new MethodSignatureVisitor();
cr.accept(msv, true);
is.close();
ClassWriter cw = new ClassWriter(true);
String[] segment = contractName.split("[.]");
String className = "org/apache/felix/ipojo/" + segment[segment.length - 1] + "Nullable";
// Create the class
cw.visit(V1_2, ACC_PUBLIC + ACC_SUPER, className, null,
"java/lang/Object", new String[]{contractName.replace('.', '/'), "org/apache/felix/ipojo/Nullable"});
// Inject a constructor <INIT>()V
MethodVisitor cst = cw.visitMethod(ACC_PUBLIC, "<init>", "()V", null, null);
cst.visitVarInsn(ALOAD, 0);
cst.visitMethodInsn(INVOKESPECIAL, "java/lang/Object", "<init>", "()V");
cst.visitInsn(RETURN);
cst.visitMaxs(0, 0);
cst.visitEnd();
// Methods Generation :
MethodSignature[] methods = msv.getMethods();
for (int i = 0; i < methods.length; ++i) {
MethodSignature method = methods[i];
String desc = method.getDesc();
String name = method.getName();
String sign = method.getSignature();
String[] exc = method.getException();
MethodVisitor mv = cw.visitMethod(ACC_PUBLIC, name, desc, sign, exc);
Type returnType = Type.getReturnType(desc);
// TODO : manage the other type primitive
// Primitive type :
switch (returnType.getSort()) {
case Type.BOOLEAN:
case Type.INT:
// Integer or Boolean : return 0 ( false)
mv.visitInsn(ICONST_0);
mv.visitInsn(IRETURN);
break;
case Type.DOUBLE:
// Double : return 0.0
mv.visitInsn(DCONST_0);
mv.visitInsn(DRETURN);
break;
case Type.ARRAY :
case Type.OBJECT :
// Return always null for array and object
mv.visitInsn(ACONST_NULL);
mv.visitInsn(ARETURN);
break;
case Type.VOID :
mv.visitInsn(RETURN);
break;
default :
System.err.println("Type not yet managed : " + returnType);
}
mv.visitMaxs(0, 0);
mv.visitEnd();
}
// End process
cw.visitEnd();
b = cw.toByteArray();
} catch (IOException e) {
e.printStackTrace();
}
return b;
}
}