Loading...
Logo
Processing Forum
I want to create a Processing library to record events on a multi-touch interface. I'm trying to achieve this by using SQLJet to easily record events on an SQLite database. I know about the SQLibrary for Processing, but I'm trying to avoid having write instructions on the Sketches' code.

I'm using the Processing library template for Eclipse, and I've imported the OSGi bundle with SQLJet as an external JAR. I'm testing this simple code that only creates a database:

Copy code
  1. package TUIrecorder;
  2. import java.io.File;
  3. import org.tmatesoft.sqljet.core.SqlJetException;
  4. import org.tmatesoft.sqljet.core.SqlJetTransactionMode;
  5. import org.tmatesoft.sqljet.core.table.ISqlJetTransaction;
  6. import org.tmatesoft.sqljet.core.table.SqlJetDb;
  7. import processing.core.*;
  8. public class TUIrecorder {
  9. // myParent is a reference to the parent sketch
  10. PApplet myParent;
  11. File dbFile;
  12. /**
  13. * Constructor, called in the setup() method in the Processing sketch to start the library.
  14. *
  15. * @example TUIrecExample
  16. * @param theParent
  17. */
  18. public TUIrecorder(PApplet theParent) {
  19. myParent = theParent;
  20. try {
  21. createDB();
  22. } catch (Exception e) {
  23. System.out.println("Failed to create the database.");
  24. }
  25. }
  26. /**
  27. * Prepares a table in the database to record pick ups and drop downs
  28. *
  29. * @example TUIrecExample
  30. * @throws SqlJetException
  31. */
  32. private void createDB() throws SqlJetException {
  33. dbFile = new File("db.interaction");
  34. dbFile.delete();
  35. // create database, table and two indices
  36. SqlJetDb db = SqlJetDb.open(dbFile, true);
  37. // set DB option that have to be set before running any transactions
  38. db.getOptions().setAutovacuum(true);
  39. // set DB option that have to be set in a transaction
  40. db.runTransaction(new ISqlJetTransaction() {
  41. public Object run(SqlJetDb db) throws SqlJetException {
  42. db.getOptions().setUserVersion(1);
  43. return true;
  44. }
  45. }, SqlJetTransactionMode.WRITE);
  46. // close DB
  47. db.close();
  48. }
  49. }
It builds successfully, although I have a warning relating to the javadoc of SqlJetException.

When I try to run the following code in Processing:

Copy code
  1. import TUIrecorder.*;
  2. TUIrecorder tuiRec;
  3. void setup() {
  4. size(400,400);
  5. smooth();
  6. tuiRec = new TUIrecorder(this);
  7. }
  8. void draw() {
  9. background(0);
  10. }

I get the following error:

processing.app.debug.RunnerException: NoClassDefFoundError: org/antlr/runtime/RecognitionException
at processing.app.Sketch.placeException(Sketch.java:1543)
at processing.app.debug.Runner.findException(Runner.java:583)
at processing.app.debug.Runner.reportException(Runner.java:558)
at processing.app.debug.Runner.exception(Runner.java:498)
at processing.app.debug.EventThread.exceptionEvent(EventThread.java:367)
at processing.app.debug.EventThread.handleEvent(EventThread.java:255)
at processing.app.debug.EventThread.run(EventThread.java:89)

Exception in thread "Animation Thread" java.lang.NoClassDefFoundError: org/antlr/runtime/RecognitionException
at org.tmatesoft.sqljet.core.table.SqlJetDb$2.runWithLock(SqlJetDb.java:247)
at org.tmatesoft.sqljet.core.table.SqlJetDb.runWithLock(SqlJetDb.java:305)
at org.tmatesoft.sqljet.core.table.SqlJetDb.readSchema(SqlJetDb.java:242)
at org.tmatesoft.sqljet.core.table.SqlJetDb.getOptions(SqlJetDb.java:509)
at TUIrecorder.TUIrecorder.createDB(Unknown Source)
at TUIrecorder.TUIrecorder. (Unknown Source)
at TUIrecExample.setup(TUIrecExample.java:30)
at processing.core.PApplet.handleDraw(PApplet.java:1583)
at processing.core.PApplet.run(PApplet.java:1503) at java.lang.Thread.run(Thread.java:680)

Caused by: java.lang.ClassNotFoundException: org.antlr.runtime.RecognitionException
at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
... 10 more

Any clue on what I'm doing wrong here?

Replies(1)

I manually added the  antlr-runtime-3.1.3.jar that comes with SQLJet OSGi bundle, and it works now :)