2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 04:12:37 -07: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/. */
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
#ifndef nsIScriptContext_h__
|
|
|
|
#define nsIScriptContext_h__
|
|
|
|
|
|
|
|
#include "nscore.h"
|
|
|
|
#include "nsStringGlue.h"
|
|
|
|
#include "nsISupports.h"
|
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsIProgrammingLanguage.h"
|
2011-09-18 02:22:17 -07:00
|
|
|
#include "jspubtd.h"
|
2013-01-27 12:35:12 -08:00
|
|
|
#include "js/GCAPI.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
class nsIScriptGlobalObject;
|
|
|
|
class nsIScriptSecurityManager;
|
|
|
|
class nsIPrincipal;
|
|
|
|
class nsIAtom;
|
|
|
|
class nsIArray;
|
|
|
|
class nsIVariant;
|
|
|
|
class nsIObjectInputStream;
|
|
|
|
class nsIObjectOutputStream;
|
2010-05-18 05:28:37 -07:00
|
|
|
class nsIScriptObjectPrincipal;
|
2012-03-11 00:49:15 -08:00
|
|
|
class nsIDOMWindow;
|
2012-05-16 10:42:10 -07:00
|
|
|
class nsIURI;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
#define NS_ISCRIPTCONTEXT_IID \
|
2013-09-04 14:06:57 -07:00
|
|
|
{ 0xf3859ce7, 0x7551, 0x4760, \
|
|
|
|
{ 0x84, 0x29, 0x64, 0x4f, 0x26, 0x1e, 0xdb, 0x91 } }
|
2008-02-15 21:13:16 -08: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
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2013-08-15 14:14:43 -07:00
|
|
|
class nsIOffThreadScriptReceiver;
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
/**
|
|
|
|
* It is used by the application to initialize a runtime and run scripts.
|
|
|
|
* A script runtime would implement this interface.
|
|
|
|
*/
|
2013-05-06 16:53:10 -07:00
|
|
|
class nsIScriptContext : public nsISupports
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_DECLARE_STATIC_IID_ACCESSOR(NS_ISCRIPTCONTEXT_IID)
|
|
|
|
|
2013-01-16 18:50:26 -08:00
|
|
|
/**
|
|
|
|
* Compile and execute a script.
|
|
|
|
*
|
|
|
|
* @param aScript a string representing the script to be executed
|
|
|
|
* @param aScopeObject a script object for the scope to execute in.
|
|
|
|
* @param aOptions an options object. You probably want to at least set
|
|
|
|
* filename and line number. The principal is computed
|
|
|
|
* internally, though 'originPrincipals' may be passed.
|
|
|
|
* @param aCoerceToString if the return value is not JSVAL_VOID, convert it
|
|
|
|
* to a string before returning.
|
2013-01-29 05:44:00 -08:00
|
|
|
* @param aRetValue the result of executing the script. Pass null if you
|
|
|
|
* don't care about the result. Note that asking for a
|
|
|
|
* result will deoptimize your script somewhat in many cases.
|
2013-09-11 16:42:09 -07:00
|
|
|
* @param aOffThreadToken if specified, the result of compiling the script
|
|
|
|
* on another thread.
|
2013-01-29 05:44:00 -08:00
|
|
|
*/
|
2013-01-16 18:50:26 -08:00
|
|
|
virtual nsresult EvaluateString(const nsAString& aScript,
|
2013-05-10 11:22:21 -07:00
|
|
|
JS::Handle<JSObject*> aScopeObject,
|
2013-01-16 18:50:26 -08:00
|
|
|
JS::CompileOptions& aOptions,
|
|
|
|
bool aCoerceToString,
|
2013-09-11 16:42:09 -07:00
|
|
|
JS::Value* aRetValue,
|
|
|
|
void **aOffThreadToken = nullptr) = 0;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
/**
|
2011-08-24 12:49:25 -07: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.
|
2007-03-22 10:30:00 -07:00
|
|
|
*
|
2011-08-24 12:49:25 -07: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.
|
2007-03-22 10:30:00 -07:00
|
|
|
*
|
|
|
|
* @param aTarget an object telling the scope in which to bind the compiled
|
|
|
|
* event handler function. The context will presumably associate
|
|
|
|
* this nsISupports with a native script object.
|
2011-08-24 12:49:25 -07: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
|
2007-03-22 10:30:00 -07:00
|
|
|
* CompileEventHandler
|
2011-08-24 12:49:25 -07:00
|
|
|
* @param aBoundHandler [out] the result of the bind operation.
|
|
|
|
* @return NS_OK if the function was successfully bound
|
2007-03-22 10:30:00 -07:00
|
|
|
*/
|
2011-08-24 12:49:25 -07:00
|
|
|
virtual nsresult BindCompiledEventHandler(nsISupports* aTarget,
|
2013-05-11 22:17:42 -07:00
|
|
|
JS::Handle<JSObject*> aScope,
|
|
|
|
JS::Handle<JSObject*> aHandler,
|
2013-03-20 13:09:09 -07:00
|
|
|
JS::MutableHandle<JSObject*> aBoundHandler) = 0;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Return the global object.
|
|
|
|
*
|
|
|
|
**/
|
|
|
|
virtual nsIScriptGlobalObject *GetGlobalObject() = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return the native script context
|
|
|
|
*
|
|
|
|
**/
|
2011-09-18 02:22:17 -07:00
|
|
|
virtual JSContext* GetNativeContext() = 0;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
/**
|
2010-07-15 15:16:29 -07:00
|
|
|
* Initialize the context generally. Does not create a global object.
|
2007-03-22 10:30:00 -07:00
|
|
|
**/
|
2010-07-15 15:16:29 -07:00
|
|
|
virtual nsresult InitContext() = 0;
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
/**
|
|
|
|
* Check to see if context is as yet intialized. Used to prevent
|
|
|
|
* reentrancy issues during the initialization process.
|
|
|
|
*
|
2011-10-17 07:59:28 -07:00
|
|
|
* @return true if initialized, false if not
|
2007-03-22 10:30:00 -07:00
|
|
|
*
|
|
|
|
*/
|
2011-09-28 23:19:26 -07:00
|
|
|
virtual bool IsContextInitialized() = 0;
|
2007-03-22 10:30:00 -07: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
|
|
|
|
*/
|
2013-01-27 12:35:12 -08:00
|
|
|
virtual void GC(JS::gcreason::Reason aReason) = 0;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Called to disable/enable script execution in this context.
|
|
|
|
*/
|
2011-09-28 23:19:26 -07:00
|
|
|
virtual bool GetScriptsEnabled() = 0;
|
|
|
|
virtual void SetScriptsEnabled(bool aEnabled, bool aFireTimeouts) = 0;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// SetProperty is suspect and jst believes should not be needed. Currenly
|
|
|
|
// used only for "arguments".
|
2013-05-11 22:17:42 -07:00
|
|
|
virtual nsresult SetProperty(JS::Handle<JSObject*> aTarget,
|
|
|
|
const char* aPropName, nsISupports* aVal) = 0;
|
2013-01-15 03:46:35 -08:00
|
|
|
/**
|
|
|
|
* Called to set/get information if the script context is
|
|
|
|
* currently processing a script tag
|
|
|
|
*/
|
|
|
|
virtual bool GetProcessingScriptTag() = 0;
|
|
|
|
virtual void SetProcessingScriptTag(bool aResult) = 0;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Initialize DOM classes on aGlobalObj, always call
|
|
|
|
* WillInitializeContext() before calling InitContext(), and always
|
|
|
|
* call DidInitializeContext() when a context is fully
|
|
|
|
* (successfully) initialized.
|
|
|
|
*/
|
2013-05-11 22:17:42 -07:00
|
|
|
virtual nsresult InitClasses(JS::Handle<JSObject*> aGlobalObj) = 0;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Tell the context we're about to be reinitialize it.
|
|
|
|
*/
|
|
|
|
virtual void WillInitializeContext() = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Tell the context we're done reinitializing it.
|
|
|
|
*/
|
|
|
|
virtual void DidInitializeContext() = 0;
|
2013-09-04 14:06:55 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Access the Window Proxy. The setter should only be called by nsGlobalWindow.
|
|
|
|
*/
|
|
|
|
virtual void SetWindowProxy(JS::Handle<JSObject*> aWindowProxy) = 0;
|
|
|
|
virtual JSObject* GetWindowProxy() = 0;
|
|
|
|
virtual JSObject* GetWindowProxyPreserveColor() = 0;
|
2007-03-22 10:30:00 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
NS_DEFINE_STATIC_IID_ACCESSOR(nsIScriptContext, NS_ISCRIPTCONTEXT_IID)
|
|
|
|
|
2013-08-15 14:14:43 -07:00
|
|
|
#define NS_IOFFTHREADSCRIPTRECEIVER_IID \
|
|
|
|
{0x3a980010, 0x878d, 0x46a9, \
|
|
|
|
{0x93, 0xad, 0xbc, 0xfd, 0xd3, 0x8e, 0xa0, 0xc2}}
|
|
|
|
|
|
|
|
class nsIOffThreadScriptReceiver : public nsISupports
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IOFFTHREADSCRIPTRECEIVER_IID)
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Notify this object that a previous CompileScript call specifying this as
|
|
|
|
* aOffThreadReceiver has completed. The script being passed in must be
|
|
|
|
* rooted before any call which could trigger GC.
|
|
|
|
*/
|
|
|
|
NS_IMETHOD OnScriptCompileComplete(JSScript* aScript, nsresult aStatus) = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
NS_DEFINE_STATIC_IID_ACCESSOR(nsIOffThreadScriptReceiver, NS_IOFFTHREADSCRIPTRECEIVER_IID)
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
#endif // nsIScriptContext_h__
|
|
|
|
|