Path: blob/master/src/java.scripting/share/classes/javax/script/ScriptEngine.java
41153 views
/*1* Copyright (c) 2005, 2013, Oracle and/or its affiliates. All rights reserved.2* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.3*4* This code is free software; you can redistribute it and/or modify it5* under the terms of the GNU General Public License version 2 only, as6* published by the Free Software Foundation. Oracle designates this7* particular file as subject to the "Classpath" exception as provided8* by Oracle in the LICENSE file that accompanied this code.9*10* This code is distributed in the hope that it will be useful, but WITHOUT11* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or12* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License13* version 2 for more details (a copy is included in the LICENSE file that14* accompanied this code).15*16* You should have received a copy of the GNU General Public License version17* 2 along with this work; if not, write to the Free Software Foundation,18* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.19*20* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA21* or visit www.oracle.com if you need additional information or have any22* questions.23*/2425package javax.script;2627import java.io.Reader;28import java.util.Map;29import java.util.Set;3031/**32* <code>ScriptEngine</code> is the fundamental interface whose methods must be33* fully functional in every implementation of this specification.34* <br><br>35* These methods provide basic scripting functionality. Applications written to this36* simple interface are expected to work with minimal modifications in every implementation.37* It includes methods that execute scripts, and ones that set and get values.38* <br><br>39* The values are key/value pairs of two types. The first type of pairs consists of40* those whose keys are reserved and defined in this specification or by individual41* implementations. The values in the pairs with reserved keys have specified meanings.42* <br><br>43* The other type of pairs consists of those that create Java language Bindings, the values are44* usually represented in scripts by the corresponding keys or by decorated forms of them.45*46* @author Mike Grogan47* @since 1.648*/4950public interface ScriptEngine {5152/**53* Reserved key for a named value that passes54* an array of positional arguments to a script.55*/56public static final String ARGV="javax.script.argv";5758/**59* Reserved key for a named value that is60* the name of the file being executed.61*/62public static final String FILENAME = "javax.script.filename";6364/**65* Reserved key for a named value that is66* the name of the <code>ScriptEngine</code> implementation.67*/68public static final String ENGINE = "javax.script.engine";6970/**71* Reserved key for a named value that identifies72* the version of the <code>ScriptEngine</code> implementation.73*/74public static final String ENGINE_VERSION = "javax.script.engine_version";7576/**77* Reserved key for a named value that identifies78* the short name of the scripting language. The name is used by the79* <code>ScriptEngineManager</code> to locate a <code>ScriptEngine</code>80* with a given name in the <code>getEngineByName</code> method.81*/82public static final String NAME = "javax.script.name";8384/**85* Reserved key for a named value that is86* the full name of Scripting Language supported by the implementation.87*/88public static final String LANGUAGE = "javax.script.language";8990/**91* Reserved key for the named value that identifies92* the version of the scripting language supported by the implementation.93*/94public static final String LANGUAGE_VERSION ="javax.script.language_version";959697/**98* Causes the immediate execution of the script whose source is the String99* passed as the first argument. The script may be reparsed or recompiled before100* execution. State left in the engine from previous executions, including101* variable values and compiled procedures may be visible during this execution.102*103* @param script The script to be executed by the script engine.104*105* @param context A <code>ScriptContext</code> exposing sets of attributes in106* different scopes. The meanings of the scopes <code>ScriptContext.GLOBAL_SCOPE</code>,107* and <code>ScriptContext.ENGINE_SCOPE</code> are defined in the specification.108* <br><br>109* The <code>ENGINE_SCOPE</code> <code>Bindings</code> of the <code>ScriptContext</code> contains the110* bindings of scripting variables to application objects to be used during this111* script execution.112*113*114* @return The value returned from the execution of the script.115*116* @throws ScriptException if an error occurs in script. ScriptEngines should create and throw117* <code>ScriptException</code> wrappers for checked Exceptions thrown by underlying scripting118* implementations.119* @throws NullPointerException if either argument is null.120*/121public Object eval(String script, ScriptContext context) throws ScriptException;122123124/**125* Same as <code>eval(String, ScriptContext)</code> where the source of the script126* is read from a <code>Reader</code>.127*128* @param reader The source of the script to be executed by the script engine.129*130* @param context The <code>ScriptContext</code> passed to the script engine.131*132* @return The value returned from the execution of the script.133*134* @throws ScriptException if an error occurs in script. ScriptEngines should create and throw135* <code>ScriptException</code> wrappers for checked Exceptions thrown by underlying scripting136* implementations.137* @throws NullPointerException if either argument is null.138*/139public Object eval(Reader reader , ScriptContext context) throws ScriptException;140141/**142* Executes the specified script. The default <code>ScriptContext</code> for the <code>ScriptEngine</code>143* is used.144*145* @param script The script language source to be executed.146*147* @return The value returned from the execution of the script.148*149* @throws ScriptException if an error occurs in script. ScriptEngines should create and throw150* <code>ScriptException</code> wrappers for checked Exceptions thrown by underlying scripting151* implementations.152* @throws NullPointerException if the argument is null.153*/154public Object eval(String script) throws ScriptException;155156/**157* Same as <code>eval(String)</code> except that the source of the script is158* provided as a <code>Reader</code>159*160* @param reader The source of the script.161*162* @return The value returned by the script.163*164* @throws ScriptException if an error occurs in script. ScriptEngines should create and throw165* <code>ScriptException</code> wrappers for checked Exceptions thrown by underlying scripting166* implementations.167* @throws NullPointerException if the argument is null.168*/169public Object eval(Reader reader) throws ScriptException;170171/**172* Executes the script using the <code>Bindings</code> argument as the <code>ENGINE_SCOPE</code>173* <code>Bindings</code> of the <code>ScriptEngine</code> during the script execution. The174* <code>Reader</code>, <code>Writer</code> and non-<code>ENGINE_SCOPE</code> <code>Bindings</code> of the175* default <code>ScriptContext</code> are used. The <code>ENGINE_SCOPE</code>176* <code>Bindings</code> of the <code>ScriptEngine</code> is not changed, and its177* mappings are unaltered by the script execution.178*179* @param script The source for the script.180*181* @param n The <code>Bindings</code> of attributes to be used for script execution.182*183* @return The value returned by the script.184*185* @throws ScriptException if an error occurs in script. ScriptEngines should create and throw186* <code>ScriptException</code> wrappers for checked Exceptions thrown by underlying scripting187* implementations.188* @throws NullPointerException if either argument is null.189*/190public Object eval(String script, Bindings n) throws ScriptException;191192/**193* Same as <code>eval(String, Bindings)</code> except that the source of the script194* is provided as a <code>Reader</code>.195*196* @param reader The source of the script.197* @param n The <code>Bindings</code> of attributes.198*199* @return The value returned by the script.200*201* @throws ScriptException if an error occurs in script. ScriptEngines should create and throw202* <code>ScriptException</code> wrappers for checked Exceptions thrown by underlying scripting203* implementations.204* @throws NullPointerException if either argument is null.205*/206public Object eval(Reader reader , Bindings n) throws ScriptException;207208209210/**211* Sets a key/value pair in the state of the ScriptEngine that may either create212* a Java Language Binding to be used in the execution of scripts or be used in some213* other way, depending on whether the key is reserved. Must have the same effect as214* <code>getBindings(ScriptContext.ENGINE_SCOPE).put</code>.215*216* @param key The name of named value to add217* @param value The value of named value to add.218*219* @throws NullPointerException if key is null.220* @throws IllegalArgumentException if key is empty.221*/222public void put(String key, Object value);223224225/**226* Retrieves a value set in the state of this engine. The value might be one227* which was set using <code>setValue</code> or some other value in the state228* of the <code>ScriptEngine</code>, depending on the implementation. Must have the same effect229* as <code>getBindings(ScriptContext.ENGINE_SCOPE).get</code>230*231* @param key The key whose value is to be returned232* @return the value for the given key233*234* @throws NullPointerException if key is null.235* @throws IllegalArgumentException if key is empty.236*/237public Object get(String key);238239240/**241* Returns a scope of named values. The possible scopes are:242* <br><br>243* <ul>244* <li><code>ScriptContext.GLOBAL_SCOPE</code> - The set of named values representing global245* scope. If this <code>ScriptEngine</code> is created by a <code>ScriptEngineManager</code>,246* then the manager sets global scope bindings. This may be <code>null</code> if no global247* scope is associated with this <code>ScriptEngine</code></li>248* <li><code>ScriptContext.ENGINE_SCOPE</code> - The set of named values representing the state of249* this <code>ScriptEngine</code>. The values are generally visible in scripts using250* the associated keys as variable names.</li>251* <li>Any other value of scope defined in the default <code>ScriptContext</code> of the <code>ScriptEngine</code>.252* </li>253* </ul>254* <br><br>255* The <code>Bindings</code> instances that are returned must be identical to those returned by the256* <code>getBindings</code> method of <code>ScriptContext</code> called with corresponding arguments on257* the default <code>ScriptContext</code> of the <code>ScriptEngine</code>.258*259* @param scope Either <code>ScriptContext.ENGINE_SCOPE</code> or <code>ScriptContext.GLOBAL_SCOPE</code>260* which specifies the <code>Bindings</code> to return. Implementations of <code>ScriptContext</code>261* may define additional scopes. If the default <code>ScriptContext</code> of the <code>ScriptEngine</code>262* defines additional scopes, any of them can be passed to get the corresponding <code>Bindings</code>.263*264* @return The <code>Bindings</code> with the specified scope.265*266* @throws IllegalArgumentException if specified scope is invalid267*268*/269public Bindings getBindings(int scope);270271/**272* Sets a scope of named values to be used by scripts. The possible scopes are:273*<br><br>274* <ul>275* <li><code>ScriptContext.ENGINE_SCOPE</code> - The specified <code>Bindings</code> replaces the276* engine scope of the <code>ScriptEngine</code>.277* </li>278* <li><code>ScriptContext.GLOBAL_SCOPE</code> - The specified <code>Bindings</code> must be visible279* as the <code>GLOBAL_SCOPE</code>.280* </li>281* <li>Any other value of scope defined in the default <code>ScriptContext</code> of the <code>ScriptEngine</code>.282*</li>283* </ul>284* <br><br>285* The method must have the same effect as calling the <code>setBindings</code> method of286* <code>ScriptContext</code> with the corresponding value of <code>scope</code> on the default287* <code>ScriptContext</code> of the <code>ScriptEngine</code>.288*289* @param bindings The <code>Bindings</code> for the specified scope.290* @param scope The specified scope. Either <code>ScriptContext.ENGINE_SCOPE</code>,291* <code>ScriptContext.GLOBAL_SCOPE</code>, or any other valid value of scope.292*293* @throws IllegalArgumentException if the scope is invalid294* @throws NullPointerException if the bindings is null and the scope is295* <code>ScriptContext.ENGINE_SCOPE</code>296*/297public void setBindings(Bindings bindings, int scope);298299300/**301* Returns an uninitialized <code>Bindings</code>.302*303* @return A <code>Bindings</code> that can be used to replace the state of this <code>ScriptEngine</code>.304**/305public Bindings createBindings();306307308/**309* Returns the default <code>ScriptContext</code> of the <code>ScriptEngine</code> whose Bindings, Reader310* and Writers are used for script executions when no <code>ScriptContext</code> is specified.311*312* @return The default <code>ScriptContext</code> of the <code>ScriptEngine</code>.313*/314public ScriptContext getContext();315316/**317* Sets the default <code>ScriptContext</code> of the <code>ScriptEngine</code> whose Bindings, Reader318* and Writers are used for script executions when no <code>ScriptContext</code> is specified.319*320* @param context A <code>ScriptContext</code> that will replace the default <code>ScriptContext</code> in321* the <code>ScriptEngine</code>.322* @throws NullPointerException if context is null.323*/324public void setContext(ScriptContext context);325326/**327* Returns a <code>ScriptEngineFactory</code> for the class to which this <code>ScriptEngine</code> belongs.328*329* @return The <code>ScriptEngineFactory</code>330*/331public ScriptEngineFactory getFactory();332}333334335