All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.seejoke.script.ScriptUtil Maven / Gradle / Ivy

There is a newer version: 0.3
Show newest version
package com.seejoke.script;

import javax.script.*;

/**
 * 脚本工具类
 * 
 * @author seejoke
 *
 */
public class ScriptUtil {

	/**
	 * 获得 {@link ScriptEngine} 实例
	 * 
	 * @param name 脚本名称
	 * @return {@link ScriptEngine} 实例
	 */
	public static ScriptEngine getScript(String name) {
		return new ScriptEngineManager().getEngineByName(name);
	}

	/**
	 * 获得 Javascript引擎 {@link JavaScriptEngine}
	 * 
	 * @return {@link JavaScriptEngine}
	 */
	public static JavaScriptEngine getJavaScriptEngine() {
		return new JavaScriptEngine();
	}
	
	/**
	 * 编译脚本
	 * 
	 * @param script 脚本内容
	 * @return {@link CompiledScript}
	 * @throws ScriptRuntimeException 脚本异常
	 * @since 3.2.0
	 */
	public static Object eval(String script) throws ScriptRuntimeException {
		try {
			return compile(script).eval();
		} catch (ScriptException e) {
			throw new ScriptRuntimeException(e);
		}
	}
	
	/**
	 * 编译脚本
	 * 
	 * @param script 脚本内容
	 * @param context 脚本上下文
	 * @return {@link CompiledScript}
	 * @throws ScriptRuntimeException 脚本异常
	 * @since 3.2.0
	 */
	public static Object eval(String script, ScriptContext context) throws ScriptRuntimeException {
		try {
			return compile(script).eval(context);
		} catch (ScriptException e) {
			throw new ScriptRuntimeException(e);
		}
	}
	
	/**
	 * 编译脚本
	 * 
	 * @param script 脚本内容
	 * @param bindings 绑定的参数
	 * @return {@link CompiledScript}
	 * @throws ScriptRuntimeException 脚本异常
	 * @since 3.2.0
	 */
	public static Object eval(String script, Bindings bindings) throws ScriptRuntimeException {
		try {
			return compile(script).eval(bindings);
		} catch (ScriptException e) {
			throw new ScriptRuntimeException(e);
		}
	}

	/**
	 * 编译脚本
	 * 
	 * @param script 脚本内容
	 * @return {@link CompiledScript}
	 * @throws ScriptRuntimeException 脚本异常
	 * @since 3.2.0
	 */
	public static CompiledScript compile(String script) throws ScriptRuntimeException {
		try {
			return compile(getJavaScriptEngine(), script);
		} catch (ScriptException e) {
			throw new ScriptRuntimeException(e);
		}
	}

	/**
	 * 编译脚本
	 * 
	 * @param engine 引擎
	 * @param script 脚本内容
	 * @return {@link CompiledScript}
	 * @throws ScriptException 脚本异常
	 */
	public static CompiledScript compile(ScriptEngine engine, String script) throws ScriptException {
		if (engine instanceof Compilable) {
			Compilable compEngine = (Compilable) engine;
			return compEngine.compile(script);
		}
		return null;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy