Projects/Summer of Code/2007/Projects/KrossJava: Difference between revisions

From KDE TechBase
No edit summary
Line 35: Line 35:
* [DONE] Be able to connect() signals, slots and jmethods.
* [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 pass QObject instances and all supported types around + handle ref-counting correct.
* [TODO] Be sure we are able to run multiple jvm's the same time.
* [DONE] Be sure we are able to run multiple jvm's the same time.
 
Future steps done and to be done before :
* [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.
* [ON PROGRESS] Unittests++
* [ON PROGRESS] Unittests++
* [TODO] QtJambi integration.


Later:
Probably Later:
* [TODO] Compile to bytecode on demand. Some code for this is in SVN, but it has lesser priority right now.
* [TODO] To sandbox code shouldn't be that difficult.
* [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] 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] QtJambi integration.
* [TODO] Do we need to support threading?
* [TODO] Do we need to support threading?



Revision as of 20:59, 21 December 2007

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.

Now:

  • [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 :

  • [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.
  • [ON PROGRESS] Unittests++
  • [TODO] QtJambi integration.

Probably Later:

  • [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