Groovy 2.2.0

groovy.lang
[Java] Class GroovyShell

java.lang.Object
  groovy.lang.GroovyObjectSupport
      groovy.lang.GroovyShell

public class GroovyShell
extends GroovyObjectSupport

Represents a groovy shell capable of running arbitrary groovy scripts

Authors:
James Strachan
Guillaume Laforge
Paul King
Version:
\$Revision\$


Field Summary
static String DEFAULT_CODE_BASE

 
Constructor Summary
GroovyShell()

GroovyShell(Binding binding)

GroovyShell(CompilerConfiguration config)

GroovyShell(Binding binding, CompilerConfiguration config)

GroovyShell(ClassLoader parent, Binding binding)

GroovyShell(ClassLoader parent)

GroovyShell(ClassLoader parent, Binding binding, CompilerConfiguration config)

GroovyShell(GroovyShell shell)

Creates a child shell using a new ClassLoader which uses the parent shell's class loader as its parent

 
Method Summary
Object evaluate(GroovyCodeSource codeSource)

Object evaluate(String scriptText)

Object evaluate(String scriptText, String fileName)

Object evaluate(String scriptText, String fileName, String codeBase)

Object evaluate(File file)

Object evaluate(Reader in)

Object evaluate(Reader in, String fileName)

protected String generateScriptName()

GroovyClassLoader getClassLoader()

Binding getContext()

Object getProperty(String property)

Object getVariable(String name)

Evaluates some script against the current Binding and returns the result

static void main(String[] args)

Script parse(Reader reader, String fileName)

Parses the given script and returns it ready to be run

Script parse(GroovyCodeSource codeSource)

Parses the given script and returns it ready to be run

Script parse(File file)

Script parse(String scriptText)

Script parse(String scriptText, String fileName)

Script parse(Reader in)

void resetLoadedClasses()

Object run(File scriptFile, List list)

A helper method which runs the given script file with the given command line arguments

Object run(String scriptText, String fileName, List list)

A helper method which runs the given cl script with the given command line arguments

Object run(File scriptFile, String[] args)

Runs the given script file name with the given command line arguments

Object run(String scriptText, String fileName, String[] args)

Runs the given script with command line arguments

Object run(Reader in, String fileName, String[] args)

Evaluates some script against the current Binding and returns the result

void setProperty(String property, Object newValue)

void setVariable(String name, Object value)

 
Methods inherited from class GroovyObjectSupport
getMetaClass, getProperty, invokeMethod, setMetaClass, setProperty
 
Methods inherited from class Object
wait, wait, wait, equals, toString, hashCode, getClass, notify, notifyAll
 

Field Detail

DEFAULT_CODE_BASE

public static final String DEFAULT_CODE_BASE


 
Constructor Detail

GroovyShell

public GroovyShell()


GroovyShell

public GroovyShell(Binding binding)


GroovyShell

public GroovyShell(CompilerConfiguration config)


GroovyShell

public GroovyShell(Binding binding, CompilerConfiguration config)


GroovyShell

public GroovyShell(ClassLoader parent, Binding binding)


GroovyShell

public GroovyShell(ClassLoader parent)


GroovyShell

public GroovyShell(ClassLoader parent, Binding binding, CompilerConfiguration config)


GroovyShell

public GroovyShell(GroovyShell shell)
Creates a child shell using a new ClassLoader which uses the parent shell's class loader as its parent
Parameters:
shell - is the parent shell used for the variable bindings and the parent class loader


 
Method Detail

evaluate

public Object evaluate(GroovyCodeSource codeSource)


evaluate

public Object evaluate(String scriptText)


evaluate

public Object evaluate(String scriptText, String fileName)


evaluate

public Object evaluate(String scriptText, String fileName, String codeBase)


evaluate

public Object evaluate(File file)


evaluate

public Object evaluate(Reader in)


evaluate

public Object evaluate(Reader in, String fileName)


generateScriptName

protected String generateScriptName()


getClassLoader

public GroovyClassLoader getClassLoader()


getContext

public Binding getContext()


getProperty

public Object getProperty(String property)


getVariable

public Object getVariable(String name)
Evaluates some script against the current Binding and returns the result
Parameters:
scriptText - the text of the script
fileName - is the logical file name of the script (which is used to create the class name of the script)


main

public static void main(String[] args)


parse

public Script parse(Reader reader, String fileName)
Parses the given script and returns it ready to be run
Parameters:
file - is the file of the script (which is used to create the class name of the script)


parse

public Script parse(GroovyCodeSource codeSource)
Parses the given script and returns it ready to be run
Parameters:
in - the stream reading the script


parse

public Script parse(File file)


parse

public Script parse(String scriptText)


parse

public Script parse(String scriptText, String fileName)


parse

public Script parse(Reader in)


resetLoadedClasses

public void resetLoadedClasses()


run

public Object run(File scriptFile, List list)
A helper method which runs the given script file with the given command line arguments
Parameters:
scriptFile - the file of the script to run
list - the command line arguments to pass in


run

public Object run(String scriptText, String fileName, List list)
A helper method which runs the given cl script with the given command line arguments
Parameters:
scriptText - is the text content of the script
fileName - is the logical file name of the script (which is used to create the class name of the script)
list - the command line arguments to pass in


run

public Object run(File scriptFile, String[] args)
Runs the given script file name with the given command line arguments
Parameters:
scriptFile - the file name of the script to run
args - the command line arguments to pass in


run

public Object run(String scriptText, String fileName, String[] args)
Runs the given script with command line arguments
Parameters:
in - the stream reading the script
fileName - is the logical file name of the script (which is used to create the class name of the script)
args - the command line arguments to pass in


run

public Object run(Reader in, String fileName, String[] args)
Evaluates some script against the current Binding and returns the result
Parameters:
scriptText - the text of the script


setProperty

public void setProperty(String property, Object newValue)


setVariable

public void setVariable(String name, Object value)


 

Copyright © 2003-2013 The Codehaus. All rights reserved.