public class JsScriptEngine extends ScriptEngine
ScriptEngine
implementation for JavaScriptScriptEngine.SupportedScriptLang
NAMESPACE_SEPARATOR
Constructor and Description |
---|
JsScriptEngine() |
Modifier and Type | Method and Description |
---|---|
protected Object |
eval(String expr) |
static JsScriptEngine |
getInstance() |
protected Map<String,Object> |
getParamsFromVariables()
Returns a map from local variable names to their values
|
protected String |
getScriptingLang()
Gets ScriptEngine classname or keyword for the scripting language
|
Object |
jsCall(String functionName,
Object[] passedParams)
call a javascript function
|
Object |
jsEval(String name,
Reader scriptReader)
evaluate javascript from a reader
|
Object |
jsEval(String name,
String script)
evaluate a javascript String
|
org.mozilla.javascript.Scriptable |
jsNewArray(long size)
creates a new javascript array
|
org.mozilla.javascript.Scriptable |
jsNewObject()
creates a new JavaScript object
|
void |
jsPut(String name,
Object value)
put a value in the current scope
|
protected void |
load(String name,
InputStream script) |
protected Map<String,List<PigStats>> |
main(PigContext pigContext,
String scriptFile)
Actually runs the script file.
|
void |
registerFunctions(String path,
String namespace,
PigContext pigContext)
Registers scripting language functions as Pig functions with given namespace
|
getInstance, getJarPath, getPigStatsMap, getScriptAsStream, getSupportedScriptLang, run
public static JsScriptEngine getInstance()
public Object jsEval(String name, String script)
name
- the name of the script (for error messages)script
- the content of the scriptpublic Object jsEval(String name, Reader scriptReader)
name
- the name of the script (for error messages)scriptReader
- the content of the scriptpublic void jsPut(String name, Object value)
name
- the name of the variablevalue
- its valuepublic Object jsCall(String functionName, Object[] passedParams)
functionName
- the name of the functionpassedParams
- the parameters to passpublic org.mozilla.javascript.Scriptable jsNewObject()
public org.mozilla.javascript.Scriptable jsNewArray(long size)
size
- the size of the arrayprotected void load(String name, InputStream script)
protected Map<String,List<PigStats>> main(PigContext pigContext, String scriptFile) throws IOException
ScriptEngine
main
in class ScriptEngine
pigContext
- ScriptPigContext
to run the script filescriptFile
- the fileIOException
public void registerFunctions(String path, String namespace, PigContext pigContext) throws IOException
ScriptEngine
registerFunctions
in class ScriptEngine
path
- path of the scriptnamespace
- namespace for the functionspigContext
- pigcontext to register functions to pig in the given namespaceIOException
protected Map<String,Object> getParamsFromVariables() throws IOException
ScriptEngine
getParamsFromVariables
in class ScriptEngine
IOException
protected String getScriptingLang()
ScriptEngine
getScriptingLang
in class ScriptEngine
Copyright © 2007-2017 The Apache Software Foundation