2001-09-26 02:43:09 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 15:12:37 +04: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-14 00:24:54 +04:00
|
|
|
|
|
|
|
#ifndef nsIScriptContext_h__
|
|
|
|
#define nsIScriptContext_h__
|
|
|
|
|
|
|
|
#include "nscore.h"
|
2013-09-25 11:27:54 +04:00
|
|
|
#include "nsStringGlue.h"
|
1998-04-14 00:24:54 +04:00
|
|
|
#include "nsISupports.h"
|
2003-06-25 01:43:01 +04:00
|
|
|
#include "nsCOMPtr.h"
|
2006-06-13 07:07:47 +04:00
|
|
|
#include "nsIProgrammingLanguage.h"
|
2011-09-18 13:22:17 +04:00
|
|
|
#include "jspubtd.h"
|
2013-01-28 00:35:12 +04:00
|
|
|
#include "js/GCAPI.h"
|
1998-04-14 00:24:54 +04:00
|
|
|
|
1998-06-23 22:43:06 +04:00
|
|
|
class nsIScriptGlobalObject;
|
1998-11-21 03:12:33 +03:00
|
|
|
class nsIScriptSecurityManager;
|
1999-09-16 00:58:41 +04:00
|
|
|
class nsIPrincipal;
|
2001-07-16 06:40:48 +04:00
|
|
|
class nsIAtom;
|
2006-06-13 07:07:47 +04:00
|
|
|
class nsIArray;
|
|
|
|
class nsIVariant;
|
|
|
|
class nsIObjectInputStream;
|
|
|
|
class nsIObjectOutputStream;
|
2010-05-18 16:28:37 +04:00
|
|
|
class nsIScriptObjectPrincipal;
|
2012-03-11 12:49:15 +04:00
|
|
|
class nsIDOMWindow;
|
2012-05-16 21:42:10 +04:00
|
|
|
class nsIURI;
|
1998-04-14 00:24:54 +04:00
|
|
|
|
|
|
|
#define NS_ISCRIPTCONTEXT_IID \
|
2014-03-22 06:31:02 +04:00
|
|
|
{ 0x274840b6, 0x7349, 0x4798, \
|
|
|
|
{ 0xbe, 0x24, 0xbd, 0x75, 0xa6, 0x46, 0x99, 0xb7 } }
|
2008-02-16 08:13:16 +03:00
|
|
|
|
2013-08-16 01:14:43 +04:00
|
|
|
class nsIOffThreadScriptReceiver;
|
|
|
|
|
1998-04-15 22:55:21 +04:00
|
|
|
/**
|
|
|
|
* It is used by the application to initialize a runtime and run scripts.
|
|
|
|
* A script runtime would implement this interface.
|
|
|
|
*/
|
2013-05-07 03:53:10 +04:00
|
|
|
class nsIScriptContext : public nsISupports
|
2004-02-10 01:48:53 +03:00
|
|
|
{
|
1998-04-14 00:24:54 +04:00
|
|
|
public:
|
2005-11-11 17:36:26 +03:00
|
|
|
NS_DECLARE_STATIC_IID_ACCESSOR(NS_ISCRIPTCONTEXT_IID)
|
1999-02-04 21:29:36 +03:00
|
|
|
|
1998-04-15 22:55:21 +04:00
|
|
|
/**
|
|
|
|
* Return the global object.
|
|
|
|
*
|
|
|
|
**/
|
2004-02-10 01:48:53 +03:00
|
|
|
virtual nsIScriptGlobalObject *GetGlobalObject() = 0;
|
1998-04-15 22:55:21 +04:00
|
|
|
|
|
|
|
/**
|
1998-06-23 22:43:06 +04:00
|
|
|
* Return the native script context
|
1998-04-15 22:55:21 +04:00
|
|
|
*
|
|
|
|
**/
|
2011-09-18 13:22:17 +04:00
|
|
|
virtual JSContext* GetNativeContext() = 0;
|
1998-04-15 22:55:21 +04:00
|
|
|
|
2006-06-13 07:07:47 +04:00
|
|
|
/**
|
2010-07-16 02:16:29 +04:00
|
|
|
* Initialize the context generally. Does not create a global object.
|
1998-04-15 22:55:21 +04:00
|
|
|
**/
|
2010-07-16 02:16:29 +04:00
|
|
|
virtual nsresult InitContext() = 0;
|
|
|
|
|
1998-12-30 05:46:36 +03:00
|
|
|
/**
|
|
|
|
* Check to see if context is as yet intialized. Used to prevent
|
|
|
|
* reentrancy issues during the initialization process.
|
|
|
|
*
|
2011-10-17 18:59:28 +04:00
|
|
|
* @return true if initialized, false if not
|
1998-12-30 05:46:36 +03:00
|
|
|
*
|
|
|
|
*/
|
2011-09-29 10:19:26 +04:00
|
|
|
virtual bool IsContextInitialized() = 0;
|
1998-12-30 05:46:36 +03:00
|
|
|
|
1998-10-27 02:22:21 +03: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-28 00:35:12 +04:00
|
|
|
virtual void GC(JS::gcreason::Reason aReason) = 0;
|
1999-03-13 01:24:30 +03:00
|
|
|
|
2006-06-13 07:07:47 +04:00
|
|
|
// SetProperty is suspect and jst believes should not be needed. Currenly
|
|
|
|
// used only for "arguments".
|
2013-05-12 09:17:42 +04:00
|
|
|
virtual nsresult SetProperty(JS::Handle<JSObject*> aTarget,
|
|
|
|
const char* aPropName, nsISupports* aVal) = 0;
|
2013-01-15 15:46:35 +04: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;
|
2001-10-19 08:13:37 +04:00
|
|
|
|
2005-07-31 00:57:07 +04:00
|
|
|
/**
|
2005-08-12 08:11:00 +04: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-31 00:57:07 +04:00
|
|
|
*/
|
2013-05-12 09:17:42 +04:00
|
|
|
virtual nsresult InitClasses(JS::Handle<JSObject*> aGlobalObj) = 0;
|
2006-06-13 07:07:47 +04:00
|
|
|
|
2005-07-31 00:57:07 +04:00
|
|
|
/**
|
|
|
|
* Tell the context we're about to be reinitialize it.
|
|
|
|
*/
|
|
|
|
virtual void WillInitializeContext() = 0;
|
|
|
|
|
|
|
|
/**
|
2005-08-17 22:17:39 +04:00
|
|
|
* Tell the context we're done reinitializing it.
|
2005-07-31 00:57:07 +04:00
|
|
|
*/
|
|
|
|
virtual void DidInitializeContext() = 0;
|
2013-09-05 01:06:55 +04: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;
|
1998-04-14 00:24:54 +04:00
|
|
|
};
|
|
|
|
|
2005-11-11 17:36:26 +03:00
|
|
|
NS_DEFINE_STATIC_IID_ACCESSOR(nsIScriptContext, NS_ISCRIPTCONTEXT_IID)
|
|
|
|
|
2013-08-16 01:14:43 +04: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)
|
|
|
|
|
1998-04-14 00:24:54 +04:00
|
|
|
#endif // nsIScriptContext_h__
|
|
|
|
|