Uploaded image for project: 'Groovy'
  1. Groovy
  2. GROOVY-1594

Bundle JSR 223 Support in Groovy

    XMLWordPrintableJSON

Details

    • Improvement
    • Status: Closed
    • Major
    • Resolution: Fixed
    • 1.0, 1.1-rc-3
    • 1.6-rc-1, 1.6-rc-2, 1.7.0
    • None
    • None
    • N/A

    Description

      Now that Java 6 released, there's a lot of interest going around about the new JSR 223 scripting platform. Unfortunately, neither Java SE 6 nor the current Groovy builds support JSR 223-style Groovy out of the box.

      Fortunately, adding this to Groovy is trivial. The code is both simple and available from the JSR 223 reference implementation (https://scripting.dev.java.net/). The license permits redistributing as source or binary as long as mention that some code comes from Sun and release them from liability.

      Ideally, the Groovy project should integrate the three implementation classes and the service declaration into groovy-1.0.jar. If you do this, simply dropping Groovy into your classpath is enough to enable the Groovy engine. At the very least, we should bundle the RI's groovy-engine.jar into the groovy binary distribution. Finding and installing the Sun RI is a bit of a pain and will discourage would-be users.

      Behind the scenes, scripting engines get enabled by adding a file to the META-INF/services directory of a JAR as specified in the new Java 6 java.util.ServiceLoader (http://java.sun.com/javase/6/docs/api/java/util/ServiceLoader.html). This file just tells the JVM that it can find a service implementation in a specific class. For JSR 223, the implementation is just a concrete ScriptEngineFactory and a couple of support classes:

      https://scripting.dev.java.net/source/browse/scripting/engines/groovy/src/META-INF/services/javax.script.ScriptEngineFactory?rev=1.1.1.1&view=auto&content-type=text/vnd.viewcvs-markup

      https://scripting.dev.java.net/source/browse/scripting/engines/groovy/src/com/sun/script/groovy/GroovyScriptEngineFactory.java?rev=1.4&view=auto&content-type=text/vnd.viewcvs-markup

      https://scripting.dev.java.net/source/browse/scripting/engines/groovy/src/com/sun/script/groovy/GroovyCompiledScript.java?rev=1.1.1.1&view=auto&content-type=text/vnd.viewcvs-markup

      https://scripting.dev.java.net/source/browse/scripting/engines/groovy/src/com/sun/script/groovy/GroovyScriptEngine.java?rev=1.4&view=auto&content-type=text/vnd.viewcvs-markup

      I'm happy to volunteer any assistance that might help make this part of the Groovy distribution. However, adding these classes and the service definition to groovy-1.0.jar should be trivial and will provide a great service (pun intended).

      Attachments

        1. jsr223-patch-1.txt
          30 kB
          James P. White

        Activity

          People

            jimwhite James P. White
            gerweck Sarah Gerweck
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: