Projects/Summer of Code/2007/Projects/KrossJava

    From KDE TechBase

    Java backend for Kross

    Intro

    Abstract

    Kross is a scripting framework that allows a program to easily integrate support for multiple scripting languages. Currently Python, Ruby and KJS are supported.

    This project aims to integrate Java as another supported scripting language. Java is among the most used programming languages according to various sources, so supporting Java in Kross opens a lot of potential for programs using Kross as a scripting backend. This affects among others popular applications as KOffice, KWord, KSpread, Krita, Kexi and SuperKaramba.

    Project

    Create a Java backend for Kross. This will involve creating new code to the model of the existing modules for KJS, Python and Ruby. The code will have as much as possible (ideally full) documentation and unit test coverage.

    Benefits

    Every application using Kross will transparently receive dynamic Java scripting support. Since Java is one of the major programming languages these days, it would allow lots of developers to start scripting with a familiar language.

    Java comes with an extensive library of classes, which will then also be available to the program. Database access (JDBC), web server (Tomcat), RMI and networking, ... all become easily accessible for a wide variety of programs.

    Status

    Developing happens in the KDE SVN. Basic things are starting to work while there stays still a lot of work.

    Goals

    Developing happens according to eXtreme Programming and the following list provides a basic list of some selected goals.

    Done so far:

    • [DONE] Get some basic code done, that links against the jvm.
    • [DONE] Be able to run "kross Test.class" that does actualy execute some java code.
    • [DONE] Integrate a custom classloader and put it into a kross.jar
    • [DONE] Get a simple sample done to connect native methods from a QObject to a Java method.
    • [DONE] Introduce Extension to wrap QObject's and add InvocationHandler to generalize calls.
    • [DONE] Java<=>Qt variables.
    • [DONE] Get that code generic to handle any kind of QObject.
    • [DONE] Cache objects.
    • [DONE] Be able to connect() signals, slots and jmethods.
    • [DONE] Be sure we are able to pass QObject instances and all supported types around + handle ref-counting correct.
    • [DONE] Be sure we are able to run multiple jvm's the same time.

    Future steps done and to be done before the plugin can be named final:

    • [DONE] Compile to bytecode on demand.
    • [TODO] Be able to fetch all QObject::staticMetaObject's and use the classwriter to write matching class-files for them on one go on demand.
    • [TODO] probably allow to choose the used jvm at runtime.
    • [ON PROGRESS] Unittests++

    Probably Later:

    • [TODO] QtJambi integration. That means to be able to optional load+use Qt Jambi Rich Client Java Development Framework to e.g. create QWidget's in Java and pass them into the C++ world.
    • [TODO] To sandbox code shouldn't be that difficult.
    • [TODO] Provide a Kexi<=>HSQLDB implementation using the krossjava to have with it the first real world user: Kexi which is able to import/export to OO.org Base. This is a long time goal and absolute out-of-scope for this gsoc but remains defined as goal to provide an idea what the solution should be able to do and in what direction it may move.
    • [TODO] Do we need to support threading?

    Known problems