Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* Copyright (c) 2016 the original author or authors.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
package com.rivescript.lang.jsr223;
import com.rivescript.RiveScript;
import com.rivescript.macro.ObjectHandler;
import com.rivescript.util.StringUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import javax.script.Invocable;
import javax.script.ScriptEngine;
import javax.script.ScriptEngineManager;
import javax.script.ScriptException;
import static java.util.Objects.requireNonNull;
/**
* Provides JSR-223 Scripting support for object macros in RiveScript.
*
* @author Marcel Overdijk
* @see ObjectHandler
* @see com.rivescript.lang.groovy.GroovyHandler
* @see com.rivescript.lang.javascript.JavaScriptHandler
* @see com.rivescript.lang.ruby.RubyHandler
*/
public class Jsr223ScriptingHandler implements ObjectHandler {
private static Logger logger = LoggerFactory.getLogger(Jsr223ScriptingHandler.class);
protected String engineName;
protected ScriptEngine scriptEngine;
protected String functionNamePrefix;
protected String functionCodeFormat;
protected String codeDelimiter;
/**
* Constructs a JSR-223 Scripting {@link ObjectHandler}.
*
* @param engineName the short name of the desired {@link ScriptEngine}
* @param functionCodeFormat the function code format
*/
public Jsr223ScriptingHandler(String engineName, String functionCodeFormat) {
this(engineName, functionCodeFormat, "object_");
}
/**
* Constructs a JSR-223 Scripting {@link ObjectHandler}.
*
* @param engineName the short name of the desired {@link ScriptEngine}
* @param functionCodeFormat the function code format
* @param functionNamePrefix the function code prefix
*/
public Jsr223ScriptingHandler(String engineName, String functionCodeFormat, String functionNamePrefix) {
this(engineName, functionCodeFormat, functionNamePrefix, "\n");
}
/**
* Constructs a JSR-223 Scripting {@link ObjectHandler}.
*
* @param engineName the short name of the desired {@link ScriptEngine}
* @param functionCodeFormat the function code format
* @param functionNamePrefix the function code prefix
* @param codeDelimiter the code delimiter
*/
public Jsr223ScriptingHandler(String engineName, String functionCodeFormat, String functionNamePrefix, String codeDelimiter) {
this.engineName = requireNonNull(engineName, "'engineName' must not be null");
this.scriptEngine = new ScriptEngineManager().getEngineByName(engineName);
this.functionNamePrefix = requireNonNull(functionNamePrefix, "'functionNamePrefix' must not be null");
this.functionCodeFormat = requireNonNull(functionCodeFormat, "'functionCodeFormat' must not be null");
this.codeDelimiter = requireNonNull(codeDelimiter, "'codeDelimiter' must not be null");
if (this.scriptEngine == null) {
logger.error("No script engine found for '{}'", engineName);
}
}
/**
* {@inheritDoc}
*/
@Override
public void load(RiveScript rs, String name, String[] code) {
if (scriptEngine == null) {
logger.warn("Cannot load macro '{}' as no script engine was found for '{}'", name, engineName);
} else {
long startTime = System.currentTimeMillis();
// Create a unique function name called the same as the object macro name.
String function = resolveFunctionCode(name, code);
// Run the code to load the function into the script engine.
try {
scriptEngine.eval(function);
if (logger.isDebugEnabled()) {
long elapsedTime = System.currentTimeMillis() - startTime;
logger.debug("Loaded code for macro '{}' in {} ms", name, elapsedTime);
}
} catch (ScriptException e) {
logger.error("Error loading code for marco '{}'", name, e);
}
}
}
/**
* {@inheritDoc}
*/
@Override
public String call(RiveScript rs, String name, String[] fields) {
String result = null;
if (scriptEngine == null) {
logger.warn("Cannot call macro '{}' as no script engine was found for '{}'", name, engineName);
} else {
long startTime = System.currentTimeMillis();
// Invoke the function in the script engine.
try {
Invocable invocable = (Invocable) scriptEngine;
Object value = invocable.invokeFunction(resolveFunctionName(name), rs, fields);
if (value != null) {
result = value.toString();
}
if (logger.isDebugEnabled()) {
long elapsedTime = System.currentTimeMillis() - startTime;
if (result == null) {
logger.debug("Returned null from macro '{}' in {} ms", name, elapsedTime);
} else {
logger.debug("Returned '{}' from macro '{}' in {} ms", result, name, elapsedTime);
}
}
} catch (ScriptException e) {
logger.error("Error invoking function for macro '{}'", name, e);
} catch (NoSuchMethodException e) {
logger.error("Error invoking function for macro '{}'", name, e);
}
}
return result;
}
/**
* Resolves the function name.
*
* @param name the name of the object
* @return the function name
*/
protected String resolveFunctionName(String name) {
return functionNamePrefix + name;
}
/**
* Resolves the code to create the function.
*
* @param name the name of the object
* @param code the source code inside the object
* @return the source as string
*/
protected String resolveFunctionCode(String name, String[] code) {
return String.format(functionCodeFormat, resolveFunctionName(name), StringUtils.join(code, codeDelimiter));
}
}