StandardScriptUtils.retrieveEngineByName for lookup with descriptive exception message
Also revised StandardScriptFactory for finer-grained template methods, added further configuration variants to StandardScriptEvaluator, and identified thread-local ScriptEngine instances in ScriptTemplateView by appropriate key. Issue: SPR-13491 Issue: SPR-13487
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright 2002-2013 the original author or authors.
|
||||
* Copyright 2002-2015 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
@@ -22,7 +22,6 @@ import javax.script.Bindings;
|
||||
import javax.script.ScriptEngine;
|
||||
import javax.script.ScriptEngineManager;
|
||||
import javax.script.ScriptException;
|
||||
import javax.script.SimpleBindings;
|
||||
|
||||
import org.springframework.beans.factory.BeanClassLoaderAware;
|
||||
import org.springframework.core.io.Resource;
|
||||
@@ -45,34 +44,74 @@ public class StandardScriptEvaluator implements ScriptEvaluator, BeanClassLoader
|
||||
|
||||
private volatile ScriptEngineManager scriptEngineManager;
|
||||
|
||||
private String language;
|
||||
private String engineName;
|
||||
|
||||
|
||||
/**
|
||||
* Construct a new StandardScriptEvaluator.
|
||||
* Construct a new {@code StandardScriptEvaluator}.
|
||||
*/
|
||||
public StandardScriptEvaluator() {
|
||||
}
|
||||
|
||||
/**
|
||||
* Construct a new StandardScriptEvaluator.
|
||||
* Construct a new {@code StandardScriptEvaluator} for the given class loader.
|
||||
* @param classLoader the class loader to use for script engine detection
|
||||
*/
|
||||
public StandardScriptEvaluator(ClassLoader classLoader) {
|
||||
this.scriptEngineManager = new ScriptEngineManager(classLoader);
|
||||
}
|
||||
|
||||
/**
|
||||
* Construct a new {@code StandardScriptEvaluator} for the given JSR-223
|
||||
* {@link ScriptEngineManager} to obtain script engines from.
|
||||
* @param scriptEngineManager the ScriptEngineManager (or subclass thereof) to use
|
||||
* @since 4.2.2
|
||||
*/
|
||||
public StandardScriptEvaluator(ScriptEngineManager scriptEngineManager) {
|
||||
this.scriptEngineManager = scriptEngineManager;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setBeanClassLoader(ClassLoader classLoader) {
|
||||
this.scriptEngineManager = new ScriptEngineManager(classLoader);
|
||||
|
||||
/**
|
||||
* Set the name of the language meant for evaluating the scripts (e.g. "Groovy").
|
||||
* <p>This is effectively an alias for {@link #setEngineName "engineName"},
|
||||
* potentially (but not yet) providing common abbreviations for certain languages
|
||||
* beyond what the JSR-223 script engine factory exposes.
|
||||
* @see #setEngineName
|
||||
*/
|
||||
public void setLanguage(String language) {
|
||||
this.engineName = language;
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the name of language meant for evaluation the scripts (e.g. "Groovy").
|
||||
* Set the name of the script engine for evaluating the scripts (e.g. "Groovy"),
|
||||
* as exposed by the JSR-223 script engine factory.
|
||||
* @since 4.2.2
|
||||
* @see #setLanguage
|
||||
*/
|
||||
public void setLanguage(String language) {
|
||||
this.language = language;
|
||||
public void setEngineName(String engineName) {
|
||||
this.engineName = engineName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the globally scoped bindings on the underlying script engine manager,
|
||||
* shared by all scripts, as an alternative to script argument bindings.
|
||||
* @since 4.2.2
|
||||
* @see #evaluate(ScriptSource, Map)
|
||||
* @see javax.script.ScriptEngineManager#setBindings(Bindings)
|
||||
* @see javax.script.SimpleBindings
|
||||
*/
|
||||
public void setGlobalBindings(Map<String, Object> globalBindings) {
|
||||
if (globalBindings != null) {
|
||||
this.scriptEngineManager.setBindings(StandardScriptUtils.getBindings(globalBindings));
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setBeanClassLoader(ClassLoader classLoader) {
|
||||
if (this.scriptEngineManager == null) {
|
||||
this.scriptEngineManager = new ScriptEngineManager(classLoader);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -82,12 +121,16 @@ public class StandardScriptEvaluator implements ScriptEvaluator, BeanClassLoader
|
||||
}
|
||||
|
||||
@Override
|
||||
public Object evaluate(ScriptSource script, Map<String, Object> arguments) {
|
||||
public Object evaluate(ScriptSource script, Map<String, Object> argumentBindings) {
|
||||
ScriptEngine engine = getScriptEngine(script);
|
||||
Bindings bindings = (!CollectionUtils.isEmpty(arguments) ? new SimpleBindings(arguments) : null);
|
||||
try {
|
||||
return (bindings != null ? engine.eval(script.getScriptAsString(), bindings) :
|
||||
engine.eval(script.getScriptAsString()));
|
||||
if (CollectionUtils.isEmpty(argumentBindings)) {
|
||||
return engine.eval(script.getScriptAsString());
|
||||
}
|
||||
else {
|
||||
Bindings bindings = StandardScriptUtils.getBindings(argumentBindings);
|
||||
return engine.eval(script.getScriptAsString(), bindings);
|
||||
}
|
||||
}
|
||||
catch (IOException ex) {
|
||||
throw new ScriptCompilationException(script, "Cannot access script", ex);
|
||||
@@ -106,12 +149,9 @@ public class StandardScriptEvaluator implements ScriptEvaluator, BeanClassLoader
|
||||
if (this.scriptEngineManager == null) {
|
||||
this.scriptEngineManager = new ScriptEngineManager();
|
||||
}
|
||||
if (StringUtils.hasText(this.language)) {
|
||||
ScriptEngine engine = this.scriptEngineManager.getEngineByName(this.language);
|
||||
if (engine == null) {
|
||||
throw new IllegalStateException("No matching engine found for language '" + this.language + "'");
|
||||
}
|
||||
return engine;
|
||||
|
||||
if (StringUtils.hasText(this.engineName)) {
|
||||
return StandardScriptUtils.retrieveEngineByName(this.scriptEngineManager, this.engineName);
|
||||
}
|
||||
else if (script instanceof ResourceScriptSource) {
|
||||
Resource resource = ((ResourceScriptSource) script).getResource();
|
||||
|
||||
@@ -109,31 +109,6 @@ public class StandardScriptFactory implements ScriptFactory, BeanClassLoaderAwar
|
||||
this.beanClassLoader = classLoader;
|
||||
}
|
||||
|
||||
protected ScriptEngine retrieveScriptEngine(ScriptSource scriptSource) {
|
||||
ScriptEngineManager scriptEngineManager = new ScriptEngineManager(this.beanClassLoader);
|
||||
if (this.scriptEngineName != null) {
|
||||
ScriptEngine engine = scriptEngineManager.getEngineByName(this.scriptEngineName);
|
||||
if (engine == null) {
|
||||
throw new IllegalStateException("Script engine named '" + this.scriptEngineName + "' not found");
|
||||
}
|
||||
return engine;
|
||||
}
|
||||
if (scriptSource instanceof ResourceScriptSource) {
|
||||
String filename = ((ResourceScriptSource) scriptSource).getResource().getFilename();
|
||||
if (filename != null) {
|
||||
String extension = StringUtils.getFilenameExtension(filename);
|
||||
if (extension != null) {
|
||||
ScriptEngine engine = scriptEngineManager.getEngineByExtension(extension);
|
||||
if (engine != null) {
|
||||
return engine;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
public String getScriptSourceLocator() {
|
||||
return this.scriptSourceLocator;
|
||||
@@ -157,54 +132,18 @@ public class StandardScriptFactory implements ScriptFactory, BeanClassLoaderAwar
|
||||
public Object getScriptedObject(ScriptSource scriptSource, Class<?>... actualInterfaces)
|
||||
throws IOException, ScriptCompilationException {
|
||||
|
||||
Object script;
|
||||
|
||||
try {
|
||||
if (this.scriptEngine == null) {
|
||||
this.scriptEngine = retrieveScriptEngine(scriptSource);
|
||||
if (this.scriptEngine == null) {
|
||||
throw new IllegalStateException("Could not determine script engine for " + scriptSource);
|
||||
}
|
||||
}
|
||||
script = this.scriptEngine.eval(scriptSource.getScriptAsString());
|
||||
}
|
||||
catch (Exception ex) {
|
||||
throw new ScriptCompilationException(scriptSource, ex);
|
||||
}
|
||||
Object script = evaluateScript(scriptSource);
|
||||
|
||||
if (!ObjectUtils.isEmpty(actualInterfaces)) {
|
||||
boolean adaptationRequired = false;
|
||||
for (Class<?> requestedIfc : actualInterfaces) {
|
||||
if (!requestedIfc.isInstance(script)) {
|
||||
if (script instanceof Class ? !requestedIfc.isAssignableFrom((Class<?>) script) :
|
||||
!requestedIfc.isInstance(script)) {
|
||||
adaptationRequired = true;
|
||||
}
|
||||
}
|
||||
if (adaptationRequired) {
|
||||
Class<?> adaptedIfc;
|
||||
if (actualInterfaces.length == 1) {
|
||||
adaptedIfc = actualInterfaces[0];
|
||||
}
|
||||
else {
|
||||
adaptedIfc = ClassUtils.createCompositeInterface(actualInterfaces, this.beanClassLoader);
|
||||
}
|
||||
if (adaptedIfc != null) {
|
||||
if (!(this.scriptEngine instanceof Invocable)) {
|
||||
throw new ScriptCompilationException(scriptSource,
|
||||
"ScriptEngine must implement Invocable in order to adapt it to an interface: " +
|
||||
this.scriptEngine);
|
||||
}
|
||||
Invocable invocable = (Invocable) this.scriptEngine;
|
||||
if (script != null) {
|
||||
script = invocable.getInterface(script, adaptedIfc);
|
||||
}
|
||||
if (script == null) {
|
||||
script = invocable.getInterface(adaptedIfc);
|
||||
if (script == null) {
|
||||
throw new ScriptCompilationException(scriptSource,
|
||||
"Could not adapt script to interface [" + adaptedIfc.getName() + "]");
|
||||
}
|
||||
}
|
||||
}
|
||||
script = adaptToInterfaces(script, scriptSource, actualInterfaces);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -226,6 +165,75 @@ public class StandardScriptFactory implements ScriptFactory, BeanClassLoaderAwar
|
||||
return script;
|
||||
}
|
||||
|
||||
protected Object evaluateScript(ScriptSource scriptSource) {
|
||||
try {
|
||||
if (this.scriptEngine == null) {
|
||||
this.scriptEngine = retrieveScriptEngine(scriptSource);
|
||||
if (this.scriptEngine == null) {
|
||||
throw new IllegalStateException("Could not determine script engine for " + scriptSource);
|
||||
}
|
||||
}
|
||||
return this.scriptEngine.eval(scriptSource.getScriptAsString());
|
||||
}
|
||||
catch (Exception ex) {
|
||||
throw new ScriptCompilationException(scriptSource, ex);
|
||||
}
|
||||
}
|
||||
|
||||
protected ScriptEngine retrieveScriptEngine(ScriptSource scriptSource) {
|
||||
ScriptEngineManager scriptEngineManager = new ScriptEngineManager(this.beanClassLoader);
|
||||
|
||||
if (this.scriptEngineName != null) {
|
||||
return StandardScriptUtils.retrieveEngineByName(scriptEngineManager, this.scriptEngineName);
|
||||
}
|
||||
|
||||
if (scriptSource instanceof ResourceScriptSource) {
|
||||
String filename = ((ResourceScriptSource) scriptSource).getResource().getFilename();
|
||||
if (filename != null) {
|
||||
String extension = StringUtils.getFilenameExtension(filename);
|
||||
if (extension != null) {
|
||||
ScriptEngine engine = scriptEngineManager.getEngineByExtension(extension);
|
||||
if (engine != null) {
|
||||
return engine;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
protected Object adaptToInterfaces(Object script, ScriptSource scriptSource, Class<?>... actualInterfaces) {
|
||||
Class<?> adaptedIfc;
|
||||
if (actualInterfaces.length == 1) {
|
||||
adaptedIfc = actualInterfaces[0];
|
||||
}
|
||||
else {
|
||||
adaptedIfc = ClassUtils.createCompositeInterface(actualInterfaces, this.beanClassLoader);
|
||||
}
|
||||
|
||||
if (adaptedIfc != null) {
|
||||
if (!(this.scriptEngine instanceof Invocable)) {
|
||||
throw new ScriptCompilationException(scriptSource,
|
||||
"ScriptEngine must implement Invocable in order to adapt it to an interface: " +
|
||||
this.scriptEngine);
|
||||
}
|
||||
Invocable invocable = (Invocable) this.scriptEngine;
|
||||
if (script != null) {
|
||||
script = invocable.getInterface(script, adaptedIfc);
|
||||
}
|
||||
if (script == null) {
|
||||
script = invocable.getInterface(adaptedIfc);
|
||||
if (script == null) {
|
||||
throw new ScriptCompilationException(scriptSource,
|
||||
"Could not adapt script to interface [" + adaptedIfc.getName() + "]");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return script;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Class<?> getScriptedObjectType(ScriptSource scriptSource)
|
||||
throws IOException, ScriptCompilationException {
|
||||
|
||||
@@ -0,0 +1,79 @@
|
||||
/*
|
||||
* Copyright 2002-2015 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package org.springframework.scripting.support;
|
||||
|
||||
import java.util.LinkedHashSet;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
import java.util.Set;
|
||||
import javax.script.Bindings;
|
||||
import javax.script.ScriptContext;
|
||||
import javax.script.ScriptEngine;
|
||||
import javax.script.ScriptEngineFactory;
|
||||
import javax.script.ScriptEngineManager;
|
||||
import javax.script.SimpleBindings;
|
||||
|
||||
/**
|
||||
* Common operations for dealing with a JSR-223 {@link ScriptEngine}.
|
||||
*
|
||||
* @author Juergen Hoeller
|
||||
* @since 4.2.2
|
||||
*/
|
||||
public abstract class StandardScriptUtils {
|
||||
|
||||
/**
|
||||
* Retrieve a {@link ScriptEngine} from the given {@link ScriptEngineManager}
|
||||
* by name, delegating to {@link ScriptEngineManager#getEngineByName} but
|
||||
* throwing a descriptive exception if not found or if initialization failed.
|
||||
* @param scriptEngineManager the ScriptEngineManager to use
|
||||
* @param engineName the name of the engine
|
||||
* @return a corresponding ScriptEngine (never {@code null})
|
||||
* @throws IllegalArgumentException if no matching engine has been found
|
||||
* @throws IllegalStateException if no matching engine has been found or if
|
||||
*/
|
||||
public static ScriptEngine retrieveEngineByName(ScriptEngineManager scriptEngineManager, String engineName) {
|
||||
ScriptEngine engine = scriptEngineManager.getEngineByName(engineName);
|
||||
if (engine == null) {
|
||||
Set<String> engineNames = new LinkedHashSet<String>();
|
||||
for (ScriptEngineFactory engineFactory : scriptEngineManager.getEngineFactories()) {
|
||||
List<String> factoryNames = engineFactory.getNames();
|
||||
if (factoryNames.contains(engineName)) {
|
||||
// Special case: getEngineByName returned null but engine is present...
|
||||
// Let's assume it failed to initialize (which ScriptEngineManager silently swallows).
|
||||
// If it happens to initialize fine now, alright, but we really expect an exception.
|
||||
try {
|
||||
engine = engineFactory.getScriptEngine();
|
||||
engine.setBindings(scriptEngineManager.getBindings(), ScriptContext.GLOBAL_SCOPE);
|
||||
}
|
||||
catch (Throwable ex) {
|
||||
throw new IllegalStateException("Script engine with name '" + engineName +
|
||||
"' failed to initialize", ex);
|
||||
}
|
||||
}
|
||||
engineNames.addAll(factoryNames);
|
||||
}
|
||||
throw new IllegalArgumentException("Script engine with name '" + engineName +
|
||||
"' not found; registered engine names: " + engineNames);
|
||||
}
|
||||
return engine;
|
||||
}
|
||||
|
||||
static Bindings getBindings(Map<String, Object> bindings) {
|
||||
return (bindings instanceof Bindings ? (Bindings) bindings : new SimpleBindings(bindings));
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user