2015-05-03 22:32:37 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
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"
|
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-04-14 00:24:54 +04:00
|
|
|
|
|
|
|
#define NS_ISCRIPTCONTEXT_IID \
|
2016-06-02 17:34:39 +03:00
|
|
|
{ 0x54cbe9cf, 0x7282, 0x421a, \
|
|
|
|
{ 0x91, 0x6f, 0xd0, 0x70, 0x73, 0xde, 0xb8, 0xc0 } }
|
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
|
|
|
|
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
|
|
|
|
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;
|
2014-12-16 19:02:27 +03:00
|
|
|
/**
|
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;
|
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__
|