Path: blob/aarch64-shenandoah-jdk8u272-b10/jdk/src/share/classes/javax/script/ScriptEngine.java
38829 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.135* @throws NullPointerException if either argument is null.136*/137public Object eval(Reader reader , ScriptContext context) throws ScriptException;138139/**140* Executes the specified script. The default <code>ScriptContext</code> for the <code>ScriptEngine</code>141* is used.142*143* @param script The script language source to be executed.144*145* @return The value returned from the execution of the script.146*147* @throws ScriptException if error occurs in script.148* @throws NullPointerException if the argument is null.149*/150public Object eval(String script) throws ScriptException;151152/**153* Same as <code>eval(String)</code> except that the source of the script is154* provided as a <code>Reader</code>155*156* @param reader The source of the script.157*158* @return The value returned by the script.159*160* @throws ScriptException if an error occurs in script.161* @throws NullPointerException if the argument is null.162*/163public Object eval(Reader reader) throws ScriptException;164165/**166* Executes the script using the <code>Bindings</code> argument as the <code>ENGINE_SCOPE</code>167* <code>Bindings</code> of the <code>ScriptEngine</code> during the script execution. The168* <code>Reader</code>, <code>Writer</code> and non-<code>ENGINE_SCOPE</code> <code>Bindings</code> of the169* default <code>ScriptContext</code> are used. The <code>ENGINE_SCOPE</code>170* <code>Bindings</code> of the <code>ScriptEngine</code> is not changed, and its171* mappings are unaltered by the script execution.172*173* @param script The source for the script.174*175* @param n The <code>Bindings</code> of attributes to be used for script execution.176*177* @return The value returned by the script.178*179* @throws ScriptException if an error occurs in script.180* @throws NullPointerException if either argument is null.181*/182public Object eval(String script, Bindings n) throws ScriptException;183184/**185* Same as <code>eval(String, Bindings)</code> except that the source of the script186* is provided as a <code>Reader</code>.187*188* @param reader The source of the script.189* @param n The <code>Bindings</code> of attributes.190*191* @return The value returned by the script.192*193* @throws ScriptException if an error occurs.194* @throws NullPointerException if either argument is null.195*/196public Object eval(Reader reader , Bindings n) throws ScriptException;197198199200/**201* Sets a key/value pair in the state of the ScriptEngine that may either create202* a Java Language Binding to be used in the execution of scripts or be used in some203* other way, depending on whether the key is reserved. Must have the same effect as204* <code>getBindings(ScriptContext.ENGINE_SCOPE).put</code>.205*206* @param key The name of named value to add207* @param value The value of named value to add.208*209* @throws NullPointerException if key is null.210* @throws IllegalArgumentException if key is empty.211*/212public void put(String key, Object value);213214215/**216* Retrieves a value set in the state of this engine. The value might be one217* which was set using <code>setValue</code> or some other value in the state218* of the <code>ScriptEngine</code>, depending on the implementation. Must have the same effect219* as <code>getBindings(ScriptContext.ENGINE_SCOPE).get</code>220*221* @param key The key whose value is to be returned222* @return the value for the given key223*224* @throws NullPointerException if key is null.225* @throws IllegalArgumentException if key is empty.226*/227public Object get(String key);228229230/**231* Returns a scope of named values. The possible scopes are:232* <br><br>233* <ul>234* <li><code>ScriptContext.GLOBAL_SCOPE</code> - The set of named values representing global235* scope. If this <code>ScriptEngine</code> is created by a <code>ScriptEngineManager</code>,236* then the manager sets global scope bindings. This may be <code>null</code> if no global237* scope is associated with this <code>ScriptEngine</code></li>238* <li><code>ScriptContext.ENGINE_SCOPE</code> - The set of named values representing the state of239* this <code>ScriptEngine</code>. The values are generally visible in scripts using240* the associated keys as variable names.</li>241* <li>Any other value of scope defined in the default <code>ScriptContext</code> of the <code>ScriptEngine</code>.242* </li>243* </ul>244* <br><br>245* The <code>Bindings</code> instances that are returned must be identical to those returned by the246* <code>getBindings</code> method of <code>ScriptContext</code> called with corresponding arguments on247* the default <code>ScriptContext</code> of the <code>ScriptEngine</code>.248*249* @param scope Either <code>ScriptContext.ENGINE_SCOPE</code> or <code>ScriptContext.GLOBAL_SCOPE</code>250* which specifies the <code>Bindings</code> to return. Implementations of <code>ScriptContext</code>251* may define additional scopes. If the default <code>ScriptContext</code> of the <code>ScriptEngine</code>252* defines additional scopes, any of them can be passed to get the corresponding <code>Bindings</code>.253*254* @return The <code>Bindings</code> with the specified scope.255*256* @throws IllegalArgumentException if specified scope is invalid257*258*/259public Bindings getBindings(int scope);260261/**262* Sets a scope of named values to be used by scripts. The possible scopes are:263*<br><br>264* <ul>265* <li><code>ScriptContext.ENGINE_SCOPE</code> - The specified <code>Bindings</code> replaces the266* engine scope of the <code>ScriptEngine</code>.267* </li>268* <li><code>ScriptContext.GLOBAL_SCOPE</code> - The specified <code>Bindings</code> must be visible269* as the <code>GLOBAL_SCOPE</code>.270* </li>271* <li>Any other value of scope defined in the default <code>ScriptContext</code> of the <code>ScriptEngine</code>.272*</li>273* </ul>274* <br><br>275* The method must have the same effect as calling the <code>setBindings</code> method of276* <code>ScriptContext</code> with the corresponding value of <code>scope</code> on the default277* <code>ScriptContext</code> of the <code>ScriptEngine</code>.278*279* @param bindings The <code>Bindings</code> for the specified scope.280* @param scope The specified scope. Either <code>ScriptContext.ENGINE_SCOPE</code>,281* <code>ScriptContext.GLOBAL_SCOPE</code>, or any other valid value of scope.282*283* @throws IllegalArgumentException if the scope is invalid284* @throws NullPointerException if the bindings is null and the scope is285* <code>ScriptContext.ENGINE_SCOPE</code>286*/287public void setBindings(Bindings bindings, int scope);288289290/**291* Returns an uninitialized <code>Bindings</code>.292*293* @return A <code>Bindings</code> that can be used to replace the state of this <code>ScriptEngine</code>.294**/295public Bindings createBindings();296297298/**299* Returns the default <code>ScriptContext</code> of the <code>ScriptEngine</code> whose Bindings, Reader300* and Writers are used for script executions when no <code>ScriptContext</code> is specified.301*302* @return The default <code>ScriptContext</code> of the <code>ScriptEngine</code>.303*/304public ScriptContext getContext();305306/**307* Sets the default <code>ScriptContext</code> of the <code>ScriptEngine</code> whose Bindings, Reader308* and Writers are used for script executions when no <code>ScriptContext</code> is specified.309*310* @param context A <code>ScriptContext</code> that will replace the default <code>ScriptContext</code> in311* the <code>ScriptEngine</code>.312* @throws NullPointerException if context is null.313*/314public void setContext(ScriptContext context);315316/**317* Returns a <code>ScriptEngineFactory</code> for the class to which this <code>ScriptEngine</code> belongs.318*319* @return The <code>ScriptEngineFactory</code>320*/321public ScriptEngineFactory getFactory();322}323324325