public class GremlinGroovyScriptEngine extends GroovyScriptEngineImpl implements DependencyManager, AutoCloseable, GremlinScriptEngine
ScriptEngine
implementation is
heavily adapted from the GroovyScriptEngineImpl
to include some additional functionality.GremlinExecutor
Modifier and Type | Field and Description |
---|---|
static String |
COLLECTED_BOUND_VARS_MAP_VARNAME
Name of variable that holds local variables to be globally bound if "interpreter mode" is enabled with
InterpreterModeCustomizerProvider . |
static ThreadLocal<Map<String,Object>> |
COMPILE_OPTIONS |
static String |
COMPILE_OPTIONS_VAR_TYPES
An "internal" key for sandboxing the script engine - technically not for public use.
|
static String |
KEY_REFERENCE_TYPE
The attribute key (passed as a binding on the context) for how to cache scripts.
|
static String |
REFERENCE_TYPE_HARD
A value to the
KEY_REFERENCE_TYPE that makes the evaluated script available in the cache for the life
of the JVM. |
static String |
REFERENCE_TYPE_PHANTOM
A value to the
KEY_REFERENCE_TYPE that immediately garbage collects the script after evaluation. |
static String |
REFERENCE_TYPE_SOFT
A value to the
KEY_REFERENCE_TYPE that retains the script until memory is "low" and therefore
should be reclaimed before an OutOfMemoryError occurs. |
static String |
REFERENCE_TYPE_WEAK
A value to the
KEY_REFERENCE_TYPE that marks the script as one that can be garbage collected
even when memory is abundant. |
HIDDEN_G
ARGV, ENGINE, ENGINE_VERSION, FILENAME, LANGUAGE, LANGUAGE_VERSION, NAME
Constructor and Description |
---|
GremlinGroovyScriptEngine()
Creates a new instance using the
DefaultImportCustomizerProvider . |
GremlinGroovyScriptEngine(CompilerCustomizerProvider... compilerCustomizerProviders)
Deprecated.
As of release 3.2.4, replaced by
GremlinGroovyScriptEngine(Customizer...) . |
GremlinGroovyScriptEngine(Customizer... customizers) |
GremlinGroovyScriptEngine(ImportCustomizerProvider importCustomizerProvider)
Deprecated.
As of release 3.0.1, replaced by
GremlinGroovyScriptEngine(CompilerCustomizerProvider...) |
Modifier and Type | Method and Description |
---|---|
void |
addImports(Set<String> importStatements)
Perform class imports for the ScriptEngine.
|
void |
close()
Deprecated.
As of release 3.2.4, not replaced as this class will not implement
AutoCloseable in the
future. |
CompiledScript |
compile(Reader reader) |
CompiledScript |
compile(String scriptSource) |
Bindings |
createBindings()
Create bindings to be used by this
ScriptEngine . |
Map[] |
dependencies()
List the dependencies in the ScriptEngine classloader.
|
Traversal.Admin |
eval(Bytecode bytecode,
Bindings bindings,
String traversalSource)
|
Object |
eval(Reader reader,
ScriptContext context) |
Object |
eval(String script,
ScriptContext context) |
double |
getClassCacheAverageLoadPenalty()
Gets the average time spent compiling new scripts.
|
long |
getClassCacheEstimatedSize()
Gets the estimated size of the class cache for compiled scripts.
|
long |
getClassCacheEvictionCount()
Gets the number of times a script compiled to a class has been evicted from the cache.
|
long |
getClassCacheEvictionWeight()
Gets the sum of the weights of evicted entries from the class cache.
|
long |
getClassCacheHitCount()
Gets the number of times cache look up for a compiled script returned a cached value.
|
double |
getClassCacheHitRate()
Gets the hit rate of the class cache.
|
long |
getClassCacheLoadCount()
Gets the total number of times the cache lookup method attempted to compile new scripts.
|
long |
getClassCacheLoadFailureCount()
Gets the total number of times the cache lookup method failed to compile a new script.
|
double |
getClassCacheLoadFailureRate()
Gets the ratio of script compilation attempts that failed.
|
long |
getClassCacheLoadSuccessCount()
Gets the total number of times the cache lookup method succeeded to compile a new script.
|
long |
getClassCacheLongRunCompilationCount()
Gets the number of compilations that extended beyond the
expectedCompilationTime . |
long |
getClassCacheMissCount()
Gets the total number of times the cache lookup method returned a newly compiled script.
|
double |
getClassCacheMissRate()
Gets the ratio of script compilation attempts that were misses.
|
long |
getClassCacheRequestCount()
Gets the total number of times the cache lookup method returned a cached or uncached value.
|
long |
getClassCacheTotalLoadTime()
Gets the total number of nanoseconds that the cache spent compiling scripts.
|
GremlinScriptEngineFactory |
getFactory() |
<T> T |
getInterface(Class<T> clazz) |
<T> T |
getInterface(Object thiz,
Class<T> clazz) |
protected ClassLoader |
getParentLoader() |
Set |
getPlugins()
Get the list of loaded plugins.
|
protected ScriptContext |
getScriptContext(Bindings nn)
Creates the
ScriptContext using a GremlinScriptContext which avoids a significant amount of
additional object creation on script evaluation. |
Map<String,Set<String>> |
imports()
List the imports in the ScriptEngine;
|
Object |
invokeFunction(String name,
Object... args) |
Object |
invokeMethod(Object thiz,
String name,
Object... args) |
void |
loadPlugins(List<GremlinPlugin> plugins)
Load a list of
GremlinPlugin instances. |
Set |
plugins()
Deprecated.
As of release 3.0.1, replaced by
getPlugins() |
void |
reset()
Reset the ScriptEngine.
|
List<GremlinPlugin> |
use(String group,
String artifact,
String version)
Take maven coordinates and load the classes into the classloader used by the ScriptEngine.
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
eval, eval, eval
eval, eval, eval, eval, get, getBindings, getContext, put, setBindings, setContext
public static final String COMPILE_OPTIONS_VAR_TYPES
public static final String KEY_REFERENCE_TYPE
public static final String REFERENCE_TYPE_PHANTOM
KEY_REFERENCE_TYPE
that immediately garbage collects the script after evaluation.public static final String REFERENCE_TYPE_WEAK
KEY_REFERENCE_TYPE
that marks the script as one that can be garbage collected
even when memory is abundant.public static final String REFERENCE_TYPE_SOFT
KEY_REFERENCE_TYPE
that retains the script until memory is "low" and therefore
should be reclaimed before an OutOfMemoryError
occurs.public static final String REFERENCE_TYPE_HARD
KEY_REFERENCE_TYPE
that makes the evaluated script available in the cache for the life
of the JVM.public static final String COLLECTED_BOUND_VARS_MAP_VARNAME
InterpreterModeCustomizerProvider
.public static final ThreadLocal<Map<String,Object>> COMPILE_OPTIONS
public GremlinGroovyScriptEngine()
DefaultImportCustomizerProvider
.@Deprecated public GremlinGroovyScriptEngine(ImportCustomizerProvider importCustomizerProvider)
GremlinGroovyScriptEngine(CompilerCustomizerProvider...)
public GremlinGroovyScriptEngine(Customizer... customizers)
@Deprecated public GremlinGroovyScriptEngine(CompilerCustomizerProvider... compilerCustomizerProviders)
GremlinGroovyScriptEngine(Customizer...)
.CompilerCustomizerProvider
objects.public List<GremlinPlugin> use(String group, String artifact, String version)
GremlinPlugin
implementations in the classloader. The GremlinGroovyScriptEngine
implementation uses ServiceLoader to figure out if there are such classes to return.
It is up to the caller to execute the
GremlinPlugin.pluginTo(org.apache.tinkerpop.gremlin.groovy.plugin.PluginAcceptor)
method. The reason for
this has to do with conflicts that can occur with mapper imports that are added via the
ImportCustomizerProvider
and scripts executed through the
PluginAcceptor
. Generally speaking, all calls to this "use" method
should be complete prior to calling
GremlinPlugin.pluginTo(PluginAcceptor)
.
This method should be called after "expected" imports have been added to the DependencyManager
because adding imports with addImports(java.util.Set)
will reset the classloader and flush away
dependencies.use
in interface DependencyManager
public void loadPlugins(List<GremlinPlugin> plugins) throws GremlinPluginException
GremlinPlugin
instances. These plugins are typically returned from calls to
DependencyManager.use(String, String, String)
.loadPlugins
in interface DependencyManager
GremlinPluginException
- if there is a problem loading the plugin itself.public Map[] dependencies()
dependencies
in interface DependencyManager
public Map<String,Set<String>> imports()
imports
in interface DependencyManager
public void addImports(Set<String> importStatements)
addImports
in interface DependencyManager
@Deprecated public Set plugins()
getPlugins()
public Set getPlugins()
public Traversal.Admin eval(Bytecode bytecode, Bindings bindings, String traversalSource) throws ScriptException
GremlinScriptEngine
Traversal
Bytecode
with the specified Bindings
. These Bindings
supplied to this method will be merged with global engine bindings and override them where keys match.eval
in interface GremlinScriptEngine
ScriptException
@Deprecated public void close() throws Exception
AutoCloseable
in the
future.close
in interface AutoCloseable
Exception
public void reset()
reset
in interface DependencyManager
protected ScriptContext getScriptContext(Bindings nn)
ScriptContext
using a GremlinScriptContext
which avoids a significant amount of
additional object creation on script evaluation.public Object eval(Reader reader, ScriptContext context) throws ScriptException
eval
in interface ScriptEngine
ScriptException
public Object eval(String script, ScriptContext context) throws ScriptException
eval
in interface ScriptEngine
ScriptException
public Bindings createBindings()
ScriptEngine
. In this case, SimpleBindings
are returned.createBindings
in interface ScriptEngine
public GremlinScriptEngineFactory getFactory()
getFactory
in interface ScriptEngine
getFactory
in interface GremlinScriptEngine
public CompiledScript compile(String scriptSource) throws ScriptException
ScriptException
public CompiledScript compile(Reader reader) throws ScriptException
ScriptException
public Object invokeFunction(String name, Object... args) throws ScriptException, NoSuchMethodException
ScriptException
NoSuchMethodException
public Object invokeMethod(Object thiz, String name, Object... args) throws ScriptException, NoSuchMethodException
ScriptException
NoSuchMethodException
public <T> T getInterface(Class<T> clazz)
public long getClassCacheLongRunCompilationCount()
expectedCompilationTime
.public long getClassCacheEstimatedSize()
public double getClassCacheAverageLoadPenalty()
public long getClassCacheEvictionCount()
public long getClassCacheEvictionWeight()
public long getClassCacheHitCount()
public double getClassCacheHitRate()
public long getClassCacheLoadCount()
public long getClassCacheLoadFailureCount()
public double getClassCacheLoadFailureRate()
public long getClassCacheLoadSuccessCount()
public long getClassCacheMissCount()
public double getClassCacheMissRate()
public long getClassCacheRequestCount()
public long getClassCacheTotalLoadTime()
protected ClassLoader getParentLoader()
Copyright © 2013–2018 Apache Software Foundation. All rights reserved.