Joe Walnes
  Blog



Recent Entries

Creative uses of Hamcrest matchers

Hamcrest 1.1 released

Testing on the Toilet

Building testable AJAX apps (Does my button look big in this?)

QDox is back - 1.6 released

Java and .NET RESTful interoperability with XStream

I've joined Google

OSCon: SiteMesh, SiteMesh, SiteMesh, SiteMesh

Flexible JUnit assertions with assertThat()

SiteMesh and Content Management @ O'Reilly OpenSource Conference

XStream 1.1.2 released. Java 5 Enums, JavaBeans, field aliasing, StAX, and more...

VB.Net is the bestest

XStream 1.1.1 released

Accessing generic type information at runtime

XStream 1.1 released

JUnit tip: Setting the default timezone with a TestDecorator

XStream: how to serialize objects to non XML formats

How my backflip went...

Backflippin' in 4 hours.

Is 100% test coverage a BAD thing?

Looking back at the SiteMesh HTML parser

The road ahead for SiteMesh 3

Joe's Backflipping for Autistic Research - time is nearly up...

SiteMesh 2.2 Released

Advanced SiteMesh

More... [RSS | RDF]

About Joe Walnes

I am a software engineer for Google, based in London.

Open Source

WebStuff (coming soon)

XStream

ActiveMQ

SiteMesh

QDox

nMock

jMock

Pico Container

Nano Container

OpenSymphony

Squiggle

MockDoclet

MockObjects

Jelly

Groovy

PatternStitcher

XJB

Books

Java Open Source Programming, Wiley JSP Site Design, Wrox

Talks

Mock Roles, not Objects
October 26 2004, Vancouver, Canada. OOPSLA'04

Personal Development Practices Map
June 24 2004, Salt Lake City, Utah. Agile Development Conference

SiteMesh.NET and ASP.NET MasterPages
May 20 2004, Bangalore, India. Bangalore .NET User Group

Mock Objects: Driving Top Down Development
March 29 2004, St Neots, UK. OT2004

Mock Objects
December 2 2003, London, UK. XP Day 3


Running Groovy natively without the JVM

Two days ago I was hacking away at some Ruby scripts and thought it would be nice if I could write them in Groovy (not necessarily useful, just nice).

Of course, for small scripts that honour the UNIX philosophy, that would be a terrible idea. These scripts should start instantly and have minimal overheads.

What changes would be needed to allow Groovy to compete with languages like Perl, Python, TCL, Ruby or plain old shell scripts in this space?

  • Better performance / reduced overheads (cpu, memory, start-up time).
  • Simple install (src tarball, RPM, dpkg, windows installer, OS-X whatever).
  • No JVM required.
  • Ability to use Groovy to access less Javaish libraries (POSIXy style stuff, MFC, .NET).
  • Ability to use Groovy (and Java) objects from other languages (C, C++, Perl, Python, Ruby, .NET, etc)

As an experiment, I've created a subproject of Groovy (groovy-native) that aims to address these issues.

Take a peek at where I'm going with this.

So far:

  • Created a stripped down native runtime library (libgroovy.so).
  • Compiled a .groovy file to a native executable (linked with libgroovy).
  • Created a native C++ app that calls interops with Groovy objects.

Comments

Adrian

That's funny from a Python -> Jython perspective ...
You are going the exact opposite way :) I think it's an excellent idea, but how will you make use of Groovy-Java integration without a JVM ? I mean - all these nifty SQL/via JDBC and GPath features, won't you have to rewrite everything native ?

Joe Walnes

The idea is to nativify things that make sense.

For some stuff it may make sense to compile from Java to native (e.g. GPath).

For other stuff it may make sense to provide implementations that use alternative native library alternatives use less overheads than their Java equivalents (e.g. RegExps, XML, SQL).

And some stuff will probably not make it into the native port (e.g. Ant, JMX, etc).

Nat Pryce

The most important thing a native Groovy will need is a high quality, extensive standard library. As far as I understand it, Groovy uses Java's APIs for any real work.

As a start, how about just compiling Groovy with GCC? Would that get you anywhere useful?

Nat Pryce

Doh! Should read *everything* before I post. I see that you are using GCC.

Name:
Email:
URL:

ThoughtBloggers

Martin Fowler

Dan North

Aslak Hellesoy

Darren Hobbs

Geoff Oliphant

Mike Roberts

Chris Stevenson

Jon Tirsen

Loads More...

Agile Bloggers

Ken Arnold

Ward Cunningham

Brian Marick

Robert Martin

Bret Pettichord

Java Bloggers

Ara Abrahamian

Mike Cannon-Brookes

Vincent Massol

Bob McWhirter

Rickard Oberg

Joseph Ottinger

James Strachan

Hani Suleiman

Communities

eXtreme Tuesday Club (XTC)

Thursday GeekSpeek

ThoughtWorks GeekNight

London Java Meetup

The Codehaus

[RSS | RDF]
© 2001-2004, Joe Walnes

Powered by SiteMesh and Moveable Type.