All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.python.compiler.AdapterMaker Maven / Gradle / Ivy

Go to download

Jython is an implementation of the high-level, dynamic, object-oriented language Python written in 100% Pure Java, and seamlessly integrated with the Java platform. It thus allows you to run Python on any Java platform.

There is a newer version: 2.7.4
Show newest version
// Copyright (c) Corporation for National Research Initiatives

package org.python.compiler;

import java.util.Hashtable;
import java.util.Enumeration;
import java.lang.reflect.Method;
import java.io.*;


public class AdapterMaker extends ProxyMaker
{
    public AdapterMaker(Class interfac) {
        super(interfac.getName()+"$Adapter", interfac);
    }

    public void build() throws Exception {
        names = new Hashtable();

        //Class superclass = org.python.core.PyAdapter.class;
        int access = ClassFile.PUBLIC | ClassFile.SYNCHRONIZED;
        classfile = new ClassFile(myClass, "java/lang/Object", access);

        classfile.addInterface(mapClass(interfaces[0]));

        addMethods(interfaces[0], new Hashtable());
        addConstructors(Object.class);
        doConstants();
    }


    public static String makeAdapter(Class interfac, OutputStream ostream)
        throws Exception
    {
        AdapterMaker pm = new AdapterMaker(interfac);
        pm.build();
        pm.classfile.write(ostream);
        return pm.myClass;
    }

    public void doConstants() throws Exception {
        for (Enumeration e=names.keys(); e.hasMoreElements();)  {
            String name = (String)e.nextElement();
            classfile.addField(name, "Lorg/python/core/PyObject;",
                               ClassFile.PUBLIC);
        }
    }

    public void addMethod(Method method, int access) throws Exception {
        Class[] parameters = method.getParameterTypes();
        Class ret = method.getReturnType();
        String sig = makeSignature(parameters, ret);

        String name = method.getName();
        //System.out.println(name+": "+sig);
        names.put(name, name);

        Code code = classfile.addMethod(name, sig, ClassFile.PUBLIC);

        code.aload(0);
        int pyfunc = code.pool.Fieldref(classfile.name, name,
                                        "Lorg/python/core/PyObject;");
        code.getfield(pyfunc);
        code.dup();
        Label returnNull = code.getLabel();
        code.ifnull(returnNull);
        callMethod(code, name, parameters, ret, method.getExceptionTypes());
        returnNull.setPosition();
        doNullReturn(code, ret);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy