2001-09-25 22:43:09 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 11:12:37 +00:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
1998-04-13 20:24:54 +00:00
|
|
|
|
|
|
|
#ifndef nsIScriptContext_h__
|
|
|
|
#define nsIScriptContext_h__
|
|
|
|
|
|
|
|
#include "nscore.h"
|
2005-11-16 20:29:29 +00:00
|
|
|
#include "nsStringGlue.h"
|
1998-04-13 20:24:54 +00:00
|
|
|
#include "nsISupports.h"
|
2003-06-24 21:43:01 +00:00
|
|
|
#include "nsCOMPtr.h"
|
2006-06-13 03:07:47 +00:00
|
|
|
#include "nsIProgrammingLanguage.h"
|
2012-01-25 18:59:55 +00:00
|
|
|
#include "jsfriendapi.h"
|
2011-09-18 09:22:17 +00:00
|
|
|
#include "jspubtd.h"
|
1998-04-13 20:24:54 +00:00
|
|
|
|
1998-06-23 18:43:06 +00:00
|
|
|
class nsIScriptGlobalObject;
|
1998-11-21 00:12:33 +00:00
|
|
|
class nsIScriptSecurityManager;
|
1999-09-15 20:58:41 +00:00
|
|
|
class nsIPrincipal;
|
2001-07-16 02:40:48 +00:00
|
|
|
class nsIAtom;
|
2006-06-13 03:07:47 +00:00
|
|
|
class nsIArray;
|
|
|
|
class nsIVariant;
|
|
|
|
class nsIObjectInputStream;
|
|
|
|
class nsIObjectOutputStream;
|
2011-12-18 10:05:12 +00:00
|
|
|
template<class> class nsScriptObjectHolder;
|
2010-05-18 12:28:37 +00:00
|
|
|
class nsIScriptObjectPrincipal;
|
2012-03-11 08:49:15 +00:00
|
|
|
class nsIDOMWindow;
|
2012-05-16 17:42:10 +00:00
|
|
|
class nsIURI;
|
1998-04-13 20:24:54 +00:00
|
|
|
|
1999-10-28 14:12:56 +00:00
|
|
|
typedef void (*nsScriptTerminationFunc)(nsISupports* aRef);
|
|
|
|
|
2010-05-18 12:28:37 +00:00
|
|
|
#define NS_ISCRIPTCONTEXTPRINCIPAL_IID \
|
|
|
|
{ 0xd012cdb3, 0x8f1e, 0x4440, \
|
|
|
|
{ 0x8c, 0xbd, 0x32, 0x7f, 0x98, 0x1d, 0x37, 0xb4 } }
|
|
|
|
|
|
|
|
class nsIScriptContextPrincipal : public nsISupports
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_DECLARE_STATIC_IID_ACCESSOR(NS_ISCRIPTCONTEXTPRINCIPAL_IID)
|
|
|
|
|
|
|
|
virtual nsIScriptObjectPrincipal* GetObjectPrincipal() = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
NS_DEFINE_STATIC_IID_ACCESSOR(nsIScriptContextPrincipal,
|
|
|
|
NS_ISCRIPTCONTEXTPRINCIPAL_IID)
|
|
|
|
|
1998-04-13 20:24:54 +00:00
|
|
|
#define NS_ISCRIPTCONTEXT_IID \
|
2012-08-07 17:39:47 +00:00
|
|
|
{ 0x8bdcea47, 0x6704, 0x4dd9, \
|
|
|
|
{ 0xa1, 0x48, 0x05, 0x34, 0xcf, 0xe2, 0xdd, 0x57 } }
|
2008-02-16 05:13:16 +00:00
|
|
|
|
|
|
|
/* This MUST match JSVERSION_DEFAULT. This version stuff if we don't
|
|
|
|
know what language we have is a little silly... */
|
|
|
|
#define SCRIPTVERSION_DEFAULT JSVERSION_DEFAULT
|
1998-04-13 20:24:54 +00:00
|
|
|
|
1998-04-15 18:55:21 +00:00
|
|
|
/**
|
|
|
|
* It is used by the application to initialize a runtime and run scripts.
|
|
|
|
* A script runtime would implement this interface.
|
|
|
|
*/
|
2010-05-18 12:28:37 +00:00
|
|
|
class nsIScriptContext : public nsIScriptContextPrincipal
|
2004-02-09 22:48:53 +00:00
|
|
|
{
|
1998-04-13 20:24:54 +00:00
|
|
|
public:
|
2005-11-11 14:36:26 +00:00
|
|
|
NS_DECLARE_STATIC_IID_ACCESSOR(NS_ISCRIPTCONTEXT_IID)
|
1999-02-04 18:29:36 +00:00
|
|
|
|
2012-03-24 08:18:21 +00:00
|
|
|
virtual void SetGlobalObject(nsIScriptGlobalObject* aGlobalObject) = 0;
|
|
|
|
|
1998-04-15 18:55:21 +00:00
|
|
|
/**
|
1999-11-12 06:08:14 +00:00
|
|
|
* Compile and execute a script.
|
1998-04-15 18:55:21 +00:00
|
|
|
*
|
|
|
|
* @param aScript a string representing the script to be executed
|
2006-06-13 03:07:47 +00:00
|
|
|
* @param aScopeObject a script object for the scope to execute in, or
|
2012-07-30 14:20:58 +00:00
|
|
|
* nullptr to use a default scope
|
2011-12-19 17:47:52 +00:00
|
|
|
* @param aPrincipal the principal the script should be evaluated with
|
|
|
|
* @param aOriginPrincipal the principal the script originates from. If null,
|
|
|
|
* aPrincipal is used.
|
1999-09-17 20:13:52 +00:00
|
|
|
* @param aURL the URL or filename for error messages
|
2003-07-11 22:54:36 +00:00
|
|
|
* @param aLineNo the starting line number of the script for error messages
|
1999-11-12 06:08:14 +00:00
|
|
|
* @param aVersion the script language version to use when executing
|
2005-09-16 15:44:59 +00:00
|
|
|
* @param aRetValue the result of executing the script, or null for no result.
|
|
|
|
* If this is a JS context, it's the caller's responsibility to
|
|
|
|
* preserve aRetValue from GC across this call
|
1999-12-03 03:40:30 +00:00
|
|
|
* @param aIsUndefined true if the result of executing the script is the
|
1999-09-17 20:13:52 +00:00
|
|
|
* undefined value
|
1998-04-15 18:55:21 +00:00
|
|
|
*
|
1999-08-19 20:36:31 +00:00
|
|
|
* @return NS_OK if the script was valid and got executed
|
1998-04-15 18:55:21 +00:00
|
|
|
*
|
|
|
|
**/
|
2004-02-09 22:48:53 +00:00
|
|
|
virtual nsresult EvaluateString(const nsAString& aScript,
|
2011-10-29 20:11:51 +00:00
|
|
|
JSObject* aScopeObject,
|
2004-02-09 22:48:53 +00:00
|
|
|
nsIPrincipal *aPrincipal,
|
2011-12-19 17:47:52 +00:00
|
|
|
nsIPrincipal *aOriginPrincipal,
|
2004-02-09 22:48:53 +00:00
|
|
|
const char *aURL,
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t aLineNo,
|
2012-03-29 21:09:13 +00:00
|
|
|
JSVersion aVersion,
|
2004-06-11 00:48:00 +00:00
|
|
|
nsAString *aRetValue,
|
2011-09-29 06:19:26 +00:00
|
|
|
bool* aIsUndefined) = 0;
|
2004-02-09 22:48:53 +00:00
|
|
|
|
|
|
|
virtual nsresult EvaluateStringWithValue(const nsAString& aScript,
|
2011-11-16 07:50:19 +00:00
|
|
|
JSObject* aScopeObject,
|
2004-02-09 22:48:53 +00:00
|
|
|
nsIPrincipal *aPrincipal,
|
|
|
|
const char *aURL,
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t aLineNo,
|
|
|
|
uint32_t aVersion,
|
2011-11-16 07:50:20 +00:00
|
|
|
JS::Value* aRetValue,
|
2011-09-29 06:19:26 +00:00
|
|
|
bool* aIsUndefined) = 0;
|
2000-03-29 01:18:21 +00:00
|
|
|
|
1999-11-12 06:08:14 +00:00
|
|
|
/**
|
|
|
|
* Compile a script.
|
|
|
|
*
|
|
|
|
* @param aText a PRUnichar buffer containing script source
|
|
|
|
* @param aTextLength number of characters in aText
|
|
|
|
* @param aPrincipal the principal that produced the script
|
|
|
|
* @param aURL the URL or filename for error messages
|
2003-07-11 22:54:36 +00:00
|
|
|
* @param aLineNo the starting line number of the script for error messages
|
1999-11-12 06:08:14 +00:00
|
|
|
* @param aVersion the script language version to use when executing
|
|
|
|
* @param aScriptObject an executable object that's the result of compiling
|
2006-06-13 03:07:47 +00:00
|
|
|
* the script.
|
2012-08-07 17:39:47 +00:00
|
|
|
* @param aSaveSource force the source code to be saved by the JS engine in memory
|
1999-11-12 06:08:14 +00:00
|
|
|
*
|
2006-06-13 03:07:47 +00:00
|
|
|
* @return NS_OK if the script source was valid and got compiled.
|
1999-11-12 06:08:14 +00:00
|
|
|
*
|
|
|
|
**/
|
2004-02-09 22:48:53 +00:00
|
|
|
virtual nsresult CompileScript(const PRUnichar* aText,
|
2012-08-22 15:56:38 +00:00
|
|
|
int32_t aTextLength,
|
2004-02-09 22:48:53 +00:00
|
|
|
nsIPrincipal* aPrincipal,
|
|
|
|
const char* aURL,
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t aLineNo,
|
|
|
|
uint32_t aVersion,
|
2012-08-07 17:39:47 +00:00
|
|
|
nsScriptObjectHolder<JSScript>& aScriptObject,
|
|
|
|
bool aSaveSource = false) = 0;
|
1999-11-12 06:08:14 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Execute a precompiled script object.
|
|
|
|
*
|
|
|
|
* @param aScriptObject an object representing the script to be executed
|
|
|
|
* @param aScopeObject an object telling the scope in which to execute,
|
2012-07-30 14:20:58 +00:00
|
|
|
* or nullptr to use a default scope
|
1999-11-12 06:08:14 +00:00
|
|
|
* @param aRetValue the result of executing the script, may be null in
|
|
|
|
* which case no result string is computed
|
1999-12-03 03:40:30 +00:00
|
|
|
* @param aIsUndefined true if the result of executing the script is the
|
1999-11-12 06:08:14 +00:00
|
|
|
* undefined value, may be null for "don't care"
|
|
|
|
*
|
|
|
|
* @return NS_OK if the script was valid and got executed
|
|
|
|
*
|
1999-12-03 03:40:30 +00:00
|
|
|
*/
|
2011-10-29 20:15:43 +00:00
|
|
|
virtual nsresult ExecuteScript(JSScript* aScriptObject,
|
2011-10-29 20:10:49 +00:00
|
|
|
JSObject* aScopeObject,
|
2004-02-09 22:48:53 +00:00
|
|
|
nsAString* aRetValue,
|
2011-09-29 06:19:26 +00:00
|
|
|
bool* aIsUndefined) = 0;
|
1999-09-15 20:58:41 +00:00
|
|
|
|
1999-12-03 03:40:30 +00:00
|
|
|
/**
|
|
|
|
* Compile the event handler named by atom aName, with function body aBody
|
2006-06-13 03:07:47 +00:00
|
|
|
* into a function object returned if ok via aHandler. Does NOT bind the
|
|
|
|
* function to anything - BindCompiledEventHandler() should be used for that
|
|
|
|
* purpose. Note that this event handler is always considered 'shared' and
|
|
|
|
* hence is compiled without principals. Never call the returned object
|
|
|
|
* directly - it must be bound (and thereby cloned, and therefore have the
|
|
|
|
* correct principals) before use!
|
1999-12-03 03:40:30 +00:00
|
|
|
*
|
2008-12-03 14:41:09 +00:00
|
|
|
* If the compilation sets a pending exception on the native context, it is
|
|
|
|
* this method's responsibility to report said exception immediately, without
|
|
|
|
* relying on callers to do so.
|
|
|
|
*
|
|
|
|
*
|
1999-12-03 03:40:30 +00:00
|
|
|
* @param aName an nsIAtom pointer naming the function; it must be lowercase
|
|
|
|
* and ASCII, and should not be longer than 63 chars. This bound on
|
|
|
|
* length is enforced only by assertions, so caveat caller!
|
2004-07-22 16:38:05 +00:00
|
|
|
* @param aEventName the name that the event object should be bound to
|
1999-12-03 03:40:30 +00:00
|
|
|
* @param aBody the event handler function's body
|
2003-07-11 22:54:36 +00:00
|
|
|
* @param aURL the URL or filename for error messages
|
|
|
|
* @param aLineNo the starting line number of the script for error messages
|
2008-02-16 05:13:16 +00:00
|
|
|
* @param aVersion the script language version to use when executing
|
1999-12-07 22:14:17 +00:00
|
|
|
* @param aHandler the out parameter in which a void pointer to the compiled
|
2006-06-13 03:07:47 +00:00
|
|
|
* function object is stored on success
|
1999-12-03 03:40:30 +00:00
|
|
|
*
|
|
|
|
* @return NS_OK if the function body was valid and got compiled
|
|
|
|
*/
|
2006-06-13 03:07:47 +00:00
|
|
|
virtual nsresult CompileEventHandler(nsIAtom* aName,
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t aArgCount,
|
2006-06-13 03:07:47 +00:00
|
|
|
const char** aArgNames,
|
2004-02-09 22:48:53 +00:00
|
|
|
const nsAString& aBody,
|
2008-02-16 05:13:16 +00:00
|
|
|
const char* aURL,
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t aLineNo,
|
|
|
|
uint32_t aVersion,
|
2011-12-18 10:05:12 +00:00
|
|
|
nsScriptObjectHolder<JSObject>& aHandler) = 0;
|
(13163, r=alecf, scc, waterson, others; names available on request)
- Fix most of bug 13163 (see TODO for rest). This entails adding a version-string argument to nsIScriptContext::EvaluateString and passing it around lots of places in content sinks.
- Fix leaks and confusion about mSecurityManager and mNameSpaceManager in nsJSEnvironment.cpp. These still need to move from nsJSContext to nsGlobalWindow or thereabouts, jband and vidur are looking at that.
- Added comments and expanded tabs in nsJSEnvironment.cpp, esp. to EvaluateString. Also changed various nsresult vars to be named rv. Also restored brace/style conformity to nsJSProtocolHandler.cpp.
- Factored CompileFunction from AddScriptEventListener to pave the way for brutal sharing of compiled JS event handlers via JS_CloneFunctionObject.
- Lots of nsCOMPtr uses added. I'm using one for mNameSpaceManager. Hold mSecurityManager as a service explicitly, on the other hand (awaiting scc's fix to allow comptrs for services), and release in nsJSContext's dtor (fixing a leak). These two managers should be moved to the window object -- TODO item below.
- Hold JSRuntimeService along with JSRuntime for live of nsJSEnvironment, fix for shaver.
- Fix window.setTimeout etc. so the filename and line number of the timeout expr is propagated. This meant factoring nsJSUtils.cpp code.
- Fix all content sinks to use the same, and up-to-date JavaScript version parsing (whether for script type or for old language attribute); also fix SplitMimeType clones to strip whitespace.
- With waterson, fix bug in brutal-sharing version of XUL content sink: script src= should not evaluate the inline content of its tag.
1999-10-31 00:43:30 +00:00
|
|
|
|
1999-12-05 07:29:25 +00:00
|
|
|
/**
|
|
|
|
* Call the function object with given args and return its boolean result,
|
|
|
|
* or true if the result isn't boolean.
|
|
|
|
*
|
2006-06-13 03:07:47 +00:00
|
|
|
* @param aTarget the event target
|
|
|
|
* @param aScript an object telling the scope in which to call the compiled
|
1999-12-07 22:14:17 +00:00
|
|
|
* event handler function.
|
|
|
|
* @param aHandler function object (function and static scope) to invoke.
|
2006-06-13 03:07:47 +00:00
|
|
|
* @param argv array of arguments. Note each element is assumed to
|
|
|
|
* be an nsIVariant.
|
|
|
|
* @param rval out parameter returning result
|
1999-12-05 07:29:25 +00:00
|
|
|
**/
|
2006-06-13 03:07:47 +00:00
|
|
|
virtual nsresult CallEventHandler(nsISupports* aTarget,
|
2011-11-26 10:09:20 +00:00
|
|
|
JSObject* aScope, JSObject* aHandler,
|
2006-06-13 03:07:47 +00:00
|
|
|
nsIArray *argv, nsIVariant **rval) = 0;
|
1999-09-17 20:13:52 +00:00
|
|
|
|
1999-12-03 03:40:30 +00:00
|
|
|
/**
|
2011-08-24 19:49:25 +00:00
|
|
|
* Bind an already-compiled event handler function to the given
|
|
|
|
* target. Scripting languages with static scoping must re-bind the
|
|
|
|
* scope chain for aHandler to begin (after the activation scope for
|
|
|
|
* aHandler itself, typically) with aTarget's scope.
|
1999-12-03 03:40:30 +00:00
|
|
|
*
|
2011-08-24 19:49:25 +00:00
|
|
|
* The result of the bind operation is a new handler object, with
|
|
|
|
* principals now set and scope set as above. This is returned in
|
|
|
|
* aBoundHandler. When this function is called, aBoundHandler is
|
|
|
|
* expected to not be holding an object.
|
2006-06-13 03:07:47 +00:00
|
|
|
*
|
1999-12-07 22:14:17 +00:00
|
|
|
* @param aTarget an object telling the scope in which to bind the compiled
|
2006-06-13 03:07:47 +00:00
|
|
|
* event handler function. The context will presumably associate
|
|
|
|
* this nsISupports with a native script object.
|
2011-08-24 19:49:25 +00:00
|
|
|
* @param aScope the scope in which the script object for aTarget should be
|
|
|
|
* looked for.
|
|
|
|
* @param aHandler the function object to bind, created by an earlier call to
|
1999-12-03 03:40:30 +00:00
|
|
|
* CompileEventHandler
|
2011-08-24 19:49:25 +00:00
|
|
|
* @param aBoundHandler [out] the result of the bind operation.
|
|
|
|
* @return NS_OK if the function was successfully bound
|
2006-06-13 03:07:47 +00:00
|
|
|
*/
|
2011-08-24 19:49:25 +00:00
|
|
|
virtual nsresult BindCompiledEventHandler(nsISupports* aTarget,
|
2011-10-29 20:18:21 +00:00
|
|
|
JSObject* aScope,
|
2011-11-26 10:11:35 +00:00
|
|
|
JSObject* aHandler,
|
2011-12-18 10:05:12 +00:00
|
|
|
nsScriptObjectHolder<JSObject>& aBoundHandler) = 0;
|
2006-06-13 03:07:47 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Compile a function that isn't used as an event handler.
|
|
|
|
*
|
|
|
|
* NOTE: Not yet language agnostic (main problem is XBL - not yet agnostic)
|
|
|
|
* Caller must make sure aFunctionObject is a JS GC root.
|
|
|
|
*
|
|
|
|
**/
|
2011-11-26 10:07:55 +00:00
|
|
|
virtual nsresult CompileFunction(JSObject* aTarget,
|
2004-02-09 22:48:53 +00:00
|
|
|
const nsACString& aName,
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t aArgCount,
|
2004-02-09 22:48:53 +00:00
|
|
|
const char** aArgArray,
|
|
|
|
const nsAString& aBody,
|
|
|
|
const char* aURL,
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t aLineNo,
|
|
|
|
uint32_t aVersion,
|
2011-09-29 06:19:26 +00:00
|
|
|
bool aShared,
|
2011-11-26 10:08:42 +00:00
|
|
|
JSObject** aFunctionObject) = 0;
|
2000-03-29 01:18:21 +00:00
|
|
|
|
1998-04-15 18:55:21 +00:00
|
|
|
/**
|
|
|
|
* Return the global object.
|
|
|
|
*
|
|
|
|
**/
|
2004-02-09 22:48:53 +00:00
|
|
|
virtual nsIScriptGlobalObject *GetGlobalObject() = 0;
|
1998-04-15 18:55:21 +00:00
|
|
|
|
|
|
|
/**
|
1998-06-23 18:43:06 +00:00
|
|
|
* Return the native script context
|
1998-04-15 18:55:21 +00:00
|
|
|
*
|
|
|
|
**/
|
2011-09-18 09:22:17 +00:00
|
|
|
virtual JSContext* GetNativeContext() = 0;
|
1998-04-15 18:55:21 +00:00
|
|
|
|
|
|
|
/**
|
2006-06-13 03:07:47 +00:00
|
|
|
* Return the native global object for this context.
|
|
|
|
*
|
|
|
|
**/
|
2011-10-29 20:06:17 +00:00
|
|
|
virtual JSObject* GetNativeGlobal() = 0;
|
2006-06-13 03:07:47 +00:00
|
|
|
|
|
|
|
/**
|
2010-07-15 22:16:29 +00:00
|
|
|
* Initialize the context generally. Does not create a global object.
|
1998-04-15 18:55:21 +00:00
|
|
|
**/
|
2010-07-15 22:16:29 +00:00
|
|
|
virtual nsresult InitContext() = 0;
|
|
|
|
|
1998-12-30 02:46:36 +00:00
|
|
|
/**
|
|
|
|
* Check to see if context is as yet intialized. Used to prevent
|
|
|
|
* reentrancy issues during the initialization process.
|
|
|
|
*
|
2011-10-17 14:59:28 +00:00
|
|
|
* @return true if initialized, false if not
|
1998-12-30 02:46:36 +00:00
|
|
|
*
|
|
|
|
*/
|
2011-09-29 06:19:26 +00:00
|
|
|
virtual bool IsContextInitialized() = 0;
|
1998-12-30 02:46:36 +00:00
|
|
|
|
1998-10-26 23:22:21 +00:00
|
|
|
/**
|
|
|
|
* For garbage collected systems, do a synchronous collection pass.
|
|
|
|
* May be a no-op on other systems
|
|
|
|
*
|
|
|
|
* @return NS_OK if the method is successful
|
|
|
|
*/
|
2012-01-25 18:59:55 +00:00
|
|
|
virtual void GC(js::gcreason::Reason aReason) = 0;
|
1999-03-12 22:24:30 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Inform the context that a script was evaluated.
|
|
|
|
* A GC may be done if "necessary."
|
|
|
|
* This call is necessary if script evaluation is done
|
|
|
|
* without using the EvaluateScript method.
|
2000-09-15 06:17:08 +00:00
|
|
|
* @param aTerminated If true then call termination function if it was
|
|
|
|
* previously set. Within DOM this will always be true, but outside
|
|
|
|
* callers (such as xpconnect) who may do script evaluations nested
|
|
|
|
* inside DOM script evaluations can pass false to avoid premature
|
|
|
|
* calls to the termination function.
|
1999-03-12 22:24:30 +00:00
|
|
|
* @return NS_OK if the method is successful
|
|
|
|
*/
|
2011-09-29 06:19:26 +00:00
|
|
|
virtual void ScriptEvaluated(bool aTerminated) = 0;
|
1999-09-08 23:14:30 +00:00
|
|
|
|
2006-06-13 03:07:47 +00:00
|
|
|
virtual nsresult Serialize(nsIObjectOutputStream* aStream,
|
2011-10-29 20:12:47 +00:00
|
|
|
JSScript* aScriptObject) = 0;
|
2006-06-13 03:07:47 +00:00
|
|
|
|
|
|
|
/* Deserialize a script from a stream.
|
|
|
|
*/
|
|
|
|
virtual nsresult Deserialize(nsIObjectInputStream* aStream,
|
2011-12-18 10:05:12 +00:00
|
|
|
nsScriptObjectHolder<JSScript>& aResult) = 0;
|
2006-06-13 03:07:47 +00:00
|
|
|
|
1999-10-28 14:12:56 +00:00
|
|
|
/**
|
2006-06-13 03:07:47 +00:00
|
|
|
* JS only - this function need not be implemented by languages other
|
|
|
|
* than JS (ie, this should be moved to a private interface!)
|
1999-10-28 14:12:56 +00:00
|
|
|
* Called to specify a function that should be called when the current
|
|
|
|
* script (if there is one) terminates. Generally used if breakdown
|
2005-06-09 15:42:19 +00:00
|
|
|
* of script state needs to happen, but should be deferred till
|
1999-10-28 14:12:56 +00:00
|
|
|
* the end of script evaluation.
|
2005-06-09 15:42:19 +00:00
|
|
|
*
|
|
|
|
* @throws NS_ERROR_OUT_OF_MEMORY if that happens
|
1999-10-28 14:12:56 +00:00
|
|
|
*/
|
2012-03-11 08:49:15 +00:00
|
|
|
virtual void SetTerminationFunction(nsScriptTerminationFunc aFunc,
|
|
|
|
nsIDOMWindow* aRef) = 0;
|
2000-03-28 00:15:56 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Called to disable/enable script execution in this context.
|
|
|
|
*/
|
2011-09-29 06:19:26 +00:00
|
|
|
virtual bool GetScriptsEnabled() = 0;
|
|
|
|
virtual void SetScriptsEnabled(bool aEnabled, bool aFireTimeouts) = 0;
|
2001-05-15 22:26:19 +00:00
|
|
|
|
2006-06-13 03:07:47 +00:00
|
|
|
// SetProperty is suspect and jst believes should not be needed. Currenly
|
|
|
|
// used only for "arguments".
|
2012-03-11 08:50:22 +00:00
|
|
|
virtual nsresult SetProperty(JSObject* aTarget, const char* aPropName, nsISupports* aVal) = 0;
|
2001-05-15 22:26:19 +00:00
|
|
|
/**
|
|
|
|
* Called to set/get information if the script context is
|
|
|
|
* currently processing a script tag
|
|
|
|
*/
|
2011-09-29 06:19:26 +00:00
|
|
|
virtual bool GetProcessingScriptTag() = 0;
|
|
|
|
virtual void SetProcessingScriptTag(bool aResult) = 0;
|
2001-10-19 04:13:37 +00:00
|
|
|
|
2009-11-19 23:11:44 +00:00
|
|
|
/**
|
|
|
|
* Called to find out if this script context might be executing script.
|
|
|
|
*/
|
2011-09-29 06:19:26 +00:00
|
|
|
virtual bool GetExecutingScript() = 0;
|
2009-11-19 23:11:44 +00:00
|
|
|
|
2001-10-19 04:13:37 +00:00
|
|
|
/**
|
2006-06-13 03:07:47 +00:00
|
|
|
* Tell the context whether or not to GC when destroyed. An optimization
|
|
|
|
* used when the window is a [i]frame, so GC will happen anyway.
|
2001-10-19 04:13:37 +00:00
|
|
|
*/
|
2011-09-29 06:19:26 +00:00
|
|
|
virtual void SetGCOnDestruction(bool aGCOnDestruction) = 0;
|
2005-07-30 20:57:07 +00:00
|
|
|
|
|
|
|
/**
|
2005-08-12 04:11:00 +00:00
|
|
|
* Initialize DOM classes on aGlobalObj, always call
|
|
|
|
* WillInitializeContext() before calling InitContext(), and always
|
|
|
|
* call DidInitializeContext() when a context is fully
|
|
|
|
* (successfully) initialized.
|
2005-07-30 20:57:07 +00:00
|
|
|
*/
|
2011-11-26 10:19:45 +00:00
|
|
|
virtual nsresult InitClasses(JSObject* aGlobalObj) = 0;
|
2006-06-13 03:07:47 +00:00
|
|
|
|
2005-07-30 20:57:07 +00:00
|
|
|
/**
|
|
|
|
* Tell the context we're about to be reinitialize it.
|
|
|
|
*/
|
|
|
|
virtual void WillInitializeContext() = 0;
|
|
|
|
|
|
|
|
/**
|
2005-08-17 18:17:39 +00:00
|
|
|
* Tell the context we're done reinitializing it.
|
2005-07-30 20:57:07 +00:00
|
|
|
*/
|
|
|
|
virtual void DidInitializeContext() = 0;
|
2006-06-13 03:07:47 +00:00
|
|
|
|
|
|
|
/* Memory managment for script objects. Used by the implementation of
|
|
|
|
* nsScriptObjectHolder to manage the lifetimes of the held script objects.
|
|
|
|
*
|
|
|
|
* See also nsIScriptRuntime, which has identical methods and is useful
|
|
|
|
* in situations when you do not have an nsIScriptContext.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
virtual nsresult DropScriptObject(void *object) = 0;
|
|
|
|
virtual nsresult HoldScriptObject(void *object) = 0;
|
2009-06-12 00:52:47 +00:00
|
|
|
|
|
|
|
virtual void EnterModalState() = 0;
|
|
|
|
virtual void LeaveModalState() = 0;
|
1998-04-13 20:24:54 +00:00
|
|
|
};
|
|
|
|
|
2005-11-11 14:36:26 +00:00
|
|
|
NS_DEFINE_STATIC_IID_ACCESSOR(nsIScriptContext, NS_ISCRIPTCONTEXT_IID)
|
|
|
|
|
1998-04-13 20:24:54 +00:00
|
|
|
#endif // nsIScriptContext_h__
|
|
|
|
|