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/. */
|
2011-09-18 09:22:17 +00:00
|
|
|
#ifndef nsJSEnvironment_h
|
|
|
|
#define nsJSEnvironment_h
|
1998-07-16 01:16:47 +00:00
|
|
|
|
|
|
|
#include "nsIScriptContext.h"
|
2006-06-13 03:07:47 +00:00
|
|
|
#include "nsIScriptRuntime.h"
|
2012-03-24 08:18:21 +00:00
|
|
|
#include "nsIScriptGlobalObject.h"
|
(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
|
|
|
#include "nsCOMPtr.h"
|
1998-12-15 06:10:59 +00:00
|
|
|
#include "jsapi.h"
|
2012-01-25 18:59:55 +00:00
|
|
|
#include "jsfriendapi.h"
|
2000-06-20 03:45:21 +00:00
|
|
|
#include "nsIObserver.h"
|
2001-09-24 22:57:47 +00:00
|
|
|
#include "nsIXPCScriptNotify.h"
|
2004-02-11 22:22:05 +00:00
|
|
|
#include "prtime.h"
|
2007-03-08 11:17:16 +00:00
|
|
|
#include "nsCycleCollectionParticipant.h"
|
2012-01-25 18:59:55 +00:00
|
|
|
#include "nsIXPConnect.h"
|
2012-03-11 08:53:05 +00:00
|
|
|
#include "nsIArray.h"
|
2012-06-15 02:31:55 +00:00
|
|
|
#include "mozilla/Attributes.h"
|
2007-01-11 00:02:58 +00:00
|
|
|
|
2005-07-29 15:11:08 +00:00
|
|
|
class nsIXPConnectJSObjectHolder;
|
2011-09-22 22:13:36 +00:00
|
|
|
class nsRootedJSValueArray;
|
2011-10-03 19:11:31 +00:00
|
|
|
class nsScriptNameSpaceManager;
|
2011-04-28 22:48:52 +00:00
|
|
|
namespace mozilla {
|
2011-04-28 22:48:51 +00:00
|
|
|
template <class> class Maybe;
|
2010-03-30 05:51:52 +00:00
|
|
|
}
|
1998-07-16 01:16:47 +00:00
|
|
|
|
2012-03-12 23:25:03 +00:00
|
|
|
// The amount of time we wait between a request to GC (due to leaving
|
|
|
|
// a page) and doing the actual GC.
|
|
|
|
#define NS_GC_DELAY 4000 // ms
|
|
|
|
|
2001-11-27 09:46:38 +00:00
|
|
|
class nsJSContext : public nsIScriptContext,
|
2009-02-12 12:06:59 +00:00
|
|
|
public nsIXPCScriptNotify
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
{
|
1998-07-16 01:16:47 +00:00
|
|
|
public:
|
|
|
|
nsJSContext(JSRuntime *aRuntime);
|
1999-03-20 01:54:12 +00:00
|
|
|
virtual ~nsJSContext();
|
1998-07-16 01:16:47 +00:00
|
|
|
|
2007-03-08 11:17:16 +00:00
|
|
|
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
|
2009-05-07 18:19:36 +00:00
|
|
|
NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_CLASS_AMBIGUOUS(nsJSContext,
|
|
|
|
nsIScriptContext)
|
1998-07-16 01:16:47 +00:00
|
|
|
|
2010-05-18 12:28:37 +00:00
|
|
|
virtual nsIScriptObjectPrincipal* GetObjectPrincipal();
|
|
|
|
|
2012-03-24 08:18:21 +00:00
|
|
|
virtual void SetGlobalObject(nsIScriptGlobalObject* aGlobalObject)
|
|
|
|
{
|
|
|
|
mGlobalObjectRef = aGlobalObject;
|
|
|
|
}
|
|
|
|
|
2004-02-09 22:48:53 +00:00
|
|
|
virtual nsresult EvaluateString(const nsAString& aScript,
|
2011-10-29 20:11:51 +00:00
|
|
|
JSObject* aScopeObject,
|
1999-09-15 20:58:41 +00:00
|
|
|
nsIPrincipal *principal,
|
2011-12-19 17:47:52 +00:00
|
|
|
nsIPrincipal *originPrincipal,
|
1999-09-15 20:58:41 +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);
|
2004-02-09 22:48:53 +00:00
|
|
|
virtual nsresult EvaluateStringWithValue(const nsAString& aScript,
|
2011-11-16 07:50:19 +00:00
|
|
|
JSObject* aScopeObject,
|
|
|
|
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-11-16 07:50:19 +00:00
|
|
|
bool* aIsUndefined);
|
2000-03-29 01:18:21 +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,
|
1999-11-12 06:08:14 +00:00
|
|
|
nsIPrincipal *principal,
|
|
|
|
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);
|
2011-10-29 20:15:43 +00:00
|
|
|
virtual nsresult ExecuteScript(JSScript* aScriptObject,
|
2011-10-29 20:10:49 +00:00
|
|
|
JSObject* aScopeObject,
|
2002-03-24 00:16:18 +00:00
|
|
|
nsAString* aRetValue,
|
2011-09-29 06:19:26 +00:00
|
|
|
bool* aIsUndefined);
|
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,
|
2002-03-24 00:16:18 +00:00
|
|
|
const nsAString& aBody,
|
2012-08-22 15:56:38 +00:00
|
|
|
const char *aURL, uint32_t aLineNo,
|
|
|
|
uint32_t aVersion,
|
2011-12-18 10:05:12 +00:00
|
|
|
nsScriptObjectHolder<JSObject>& aHandler);
|
2011-10-29 20:19:03 +00:00
|
|
|
virtual nsresult CallEventHandler(nsISupports* aTarget, JSObject* aScope,
|
2011-11-26 10:09:20 +00:00
|
|
|
JSObject* aHandler,
|
2006-06-13 03:07:47 +00:00
|
|
|
nsIArray *argv, nsIVariant **rv);
|
|
|
|
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);
|
2011-11-26 10:07:55 +00:00
|
|
|
virtual nsresult CompileFunction(JSObject* aTarget,
|
2003-06-24 01:20:40 +00:00
|
|
|
const nsACString& aName,
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t aArgCount,
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
const char** aArgArray,
|
2002-03-24 00:16:18 +00:00
|
|
|
const nsAString& aBody,
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
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);
|
1999-12-07 22:14:17 +00:00
|
|
|
|
2004-02-09 22:48:53 +00:00
|
|
|
virtual nsIScriptGlobalObject *GetGlobalObject();
|
2012-04-12 18:21:12 +00:00
|
|
|
inline nsIScriptGlobalObject *GetGlobalObjectRef() { return mGlobalObjectRef; };
|
|
|
|
|
2011-09-18 09:22:17 +00:00
|
|
|
virtual JSContext* GetNativeContext();
|
2011-10-29 20:06:17 +00:00
|
|
|
virtual JSObject* GetNativeGlobal();
|
2010-07-15 22:16:29 +00:00
|
|
|
virtual nsresult InitContext();
|
2011-09-29 06:19:26 +00:00
|
|
|
virtual bool IsContextInitialized();
|
2006-06-13 03:07:47 +00:00
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
virtual void ScriptEvaluated(bool aTerminated);
|
2012-03-11 08:49:15 +00:00
|
|
|
virtual void SetTerminationFunction(nsScriptTerminationFunc aFunc,
|
|
|
|
nsIDOMWindow* aRef);
|
2011-09-29 06:19:26 +00:00
|
|
|
virtual bool GetScriptsEnabled();
|
|
|
|
virtual void SetScriptsEnabled(bool aEnabled, bool aFireTimeouts);
|
2004-02-09 22:48:53 +00:00
|
|
|
|
2012-03-11 08:50:22 +00:00
|
|
|
virtual nsresult SetProperty(JSObject* aTarget, const char* aPropName, nsISupports* aVal);
|
2006-06-13 03:07:47 +00:00
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
virtual bool GetProcessingScriptTag();
|
|
|
|
virtual void SetProcessingScriptTag(bool aResult);
|
2004-02-09 22:48:53 +00:00
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
virtual bool GetExecutingScript();
|
2009-11-19 23:11:44 +00:00
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
virtual void SetGCOnDestruction(bool aGCOnDestruction);
|
2001-10-19 04:13:37 +00:00
|
|
|
|
2011-11-26 10:19:45 +00:00
|
|
|
virtual nsresult InitClasses(JSObject* aGlobalObj);
|
2005-07-30 20:57:07 +00:00
|
|
|
|
|
|
|
virtual void WillInitializeContext();
|
|
|
|
virtual void DidInitializeContext();
|
2006-06-13 03:07:47 +00:00
|
|
|
|
2011-10-29 20:12:47 +00:00
|
|
|
virtual nsresult Serialize(nsIObjectOutputStream* aStream, JSScript* aScriptObject);
|
2006-06-13 03:07:47 +00:00
|
|
|
virtual nsresult Deserialize(nsIObjectInputStream* aStream,
|
2011-12-18 10:05:12 +00:00
|
|
|
nsScriptObjectHolder<JSScript>& aResult);
|
2006-06-13 03:07:47 +00:00
|
|
|
|
|
|
|
virtual nsresult DropScriptObject(void *object);
|
|
|
|
virtual nsresult HoldScriptObject(void *object);
|
2005-07-30 20:57:07 +00:00
|
|
|
|
2009-06-12 00:52:47 +00:00
|
|
|
virtual void EnterModalState();
|
|
|
|
virtual void LeaveModalState();
|
|
|
|
|
2001-09-24 22:57:47 +00:00
|
|
|
NS_DECL_NSIXPCSCRIPTNOTIFY
|
2001-11-27 09:46:38 +00:00
|
|
|
|
2007-01-11 00:02:58 +00:00
|
|
|
static void LoadStart();
|
2007-10-21 16:46:54 +00:00
|
|
|
static void LoadEnd();
|
2007-01-11 00:02:58 +00:00
|
|
|
|
2012-06-30 21:16:32 +00:00
|
|
|
enum IsCompartment {
|
|
|
|
CompartmentGC,
|
|
|
|
NonCompartmentGC
|
|
|
|
};
|
|
|
|
|
|
|
|
enum IsShrinking {
|
|
|
|
ShrinkingGC,
|
|
|
|
NonShrinkingGC
|
|
|
|
};
|
|
|
|
|
|
|
|
enum IsIncremental {
|
|
|
|
IncrementalGC,
|
|
|
|
NonIncrementalGC
|
|
|
|
};
|
|
|
|
|
2012-05-09 18:53:23 +00:00
|
|
|
static void GarbageCollectNow(js::gcreason::Reason reason,
|
2012-06-30 21:16:32 +00:00
|
|
|
IsIncremental aIncremental = NonIncrementalGC,
|
|
|
|
IsCompartment aCompartment = NonCompartmentGC,
|
2012-08-01 01:39:39 +00:00
|
|
|
IsShrinking aShrinking = NonShrinkingGC,
|
|
|
|
int64_t aSliceMillis = 0);
|
2011-12-27 11:59:29 +00:00
|
|
|
static void ShrinkGCBuffersNow();
|
2012-01-30 20:06:18 +00:00
|
|
|
// If aExtraForgetSkippableCalls is -1, forgetSkippable won't be
|
|
|
|
// called even if the previous collection was GC.
|
2012-07-30 14:20:58 +00:00
|
|
|
static void CycleCollectNow(nsICycleCollectorListener *aListener = nullptr,
|
2012-08-22 15:56:38 +00:00
|
|
|
int32_t aExtraForgetSkippableCalls = 0,
|
2012-06-27 15:10:20 +00:00
|
|
|
bool aForced = true);
|
2011-02-16 23:47:12 +00:00
|
|
|
|
2012-02-17 22:35:20 +00:00
|
|
|
static void PokeGC(js::gcreason::Reason aReason, int aDelay = 0);
|
2011-02-16 23:47:12 +00:00
|
|
|
static void KillGCTimer();
|
|
|
|
|
2011-12-27 11:59:29 +00:00
|
|
|
static void PokeShrinkGCBuffers();
|
|
|
|
static void KillShrinkGCBuffersTimer();
|
|
|
|
|
2011-02-16 23:47:12 +00:00
|
|
|
static void MaybePokeCC();
|
|
|
|
static void KillCCTimer();
|
2012-05-09 18:53:23 +00:00
|
|
|
static void KillFullGCTimer();
|
2012-06-11 04:27:59 +00:00
|
|
|
static void KillInterSliceGCTimer();
|
2011-02-16 23:47:12 +00:00
|
|
|
|
2012-01-25 18:59:55 +00:00
|
|
|
virtual void GC(js::gcreason::Reason aReason);
|
2009-02-12 12:06:59 +00:00
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
static uint32_t CleanupsSinceLastGC();
|
2012-01-30 20:06:18 +00:00
|
|
|
|
2012-01-26 15:03:21 +00:00
|
|
|
nsIScriptGlobalObject* GetCachedGlobalObject()
|
|
|
|
{
|
|
|
|
// Verify that we have a global so that this
|
|
|
|
// does always return a null when GetGlobalObject() is null.
|
|
|
|
JSObject* global = JS_GetGlobalObject(mContext);
|
2012-07-30 14:20:58 +00:00
|
|
|
return global ? mGlobalObjectRef.get() : nullptr;
|
2012-01-26 15:03:21 +00:00
|
|
|
}
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
protected:
|
1998-12-30 21:35:35 +00:00
|
|
|
nsresult InitializeExternalClasses();
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
|
2006-06-13 03:07:47 +00:00
|
|
|
// Helper to convert xpcom datatypes to jsvals.
|
2010-01-25 16:48:07 +00:00
|
|
|
nsresult ConvertSupportsTojsvals(nsISupports *aArgs,
|
2011-10-29 20:06:17 +00:00
|
|
|
JSObject *aScope,
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t *aArgc,
|
2010-01-25 16:48:07 +00:00
|
|
|
jsval **aArgv,
|
2011-09-22 22:13:36 +00:00
|
|
|
mozilla::Maybe<nsRootedJSValueArray> &aPoolRelease);
|
2006-06-13 03:07:47 +00:00
|
|
|
|
|
|
|
nsresult AddSupportsPrimitiveTojsvals(nsISupports *aArg, jsval *aArgv);
|
|
|
|
|
|
|
|
// given an nsISupports object (presumably an event target or some other
|
|
|
|
// DOM object), get (or create) the JSObject wrapping it.
|
2011-10-29 20:17:00 +00:00
|
|
|
nsresult JSObjectFromInterface(nsISupports *aSup, JSObject *aScript,
|
2006-06-13 03:07:47 +00:00
|
|
|
JSObject **aRet);
|
|
|
|
|
2009-05-20 02:11:01 +00:00
|
|
|
// Report the pending exception on our mContext, if any. This
|
|
|
|
// function will set aside the frame chain on mContext before
|
|
|
|
// reporting.
|
|
|
|
void ReportPendingException();
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
private:
|
2009-05-07 18:19:36 +00:00
|
|
|
void DestroyJSContext();
|
|
|
|
|
|
|
|
nsrefcnt GetCCRefcnt();
|
2007-11-01 22:51:57 +00:00
|
|
|
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
JSContext *mContext;
|
2012-05-09 18:53:23 +00:00
|
|
|
bool mActive;
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
|
2005-06-09 15:42:19 +00:00
|
|
|
protected:
|
2005-06-09 16:29:26 +00:00
|
|
|
struct TerminationFuncHolder;
|
|
|
|
friend struct TerminationFuncHolder;
|
2008-11-26 22:54:40 +00:00
|
|
|
|
2005-07-30 20:57:07 +00:00
|
|
|
struct TerminationFuncClosure
|
|
|
|
{
|
2005-06-09 15:42:19 +00:00
|
|
|
TerminationFuncClosure(nsScriptTerminationFunc aFunc,
|
|
|
|
nsISupports* aArg,
|
|
|
|
TerminationFuncClosure* aNext) :
|
|
|
|
mTerminationFunc(aFunc),
|
|
|
|
mTerminationFuncArg(aArg),
|
|
|
|
mNext(aNext)
|
2005-07-30 20:57:07 +00:00
|
|
|
{
|
|
|
|
}
|
2005-06-09 15:42:19 +00:00
|
|
|
~TerminationFuncClosure()
|
|
|
|
{
|
|
|
|
delete mNext;
|
|
|
|
}
|
2008-11-26 22:54:40 +00:00
|
|
|
|
2005-06-09 15:42:19 +00:00
|
|
|
nsScriptTerminationFunc mTerminationFunc;
|
|
|
|
nsCOMPtr<nsISupports> mTerminationFuncArg;
|
|
|
|
TerminationFuncClosure* mNext;
|
|
|
|
};
|
|
|
|
|
2005-07-30 20:57:07 +00:00
|
|
|
struct TerminationFuncHolder
|
|
|
|
{
|
|
|
|
TerminationFuncHolder(nsJSContext* aContext)
|
|
|
|
: mContext(aContext),
|
|
|
|
mTerminations(aContext->mTerminations)
|
2005-06-09 15:42:19 +00:00
|
|
|
{
|
2012-07-30 14:20:58 +00:00
|
|
|
aContext->mTerminations = nullptr;
|
2005-06-09 15:42:19 +00:00
|
|
|
}
|
2005-07-30 20:57:07 +00:00
|
|
|
~TerminationFuncHolder()
|
|
|
|
{
|
2005-06-09 15:42:19 +00:00
|
|
|
// Have to be careful here. mContext might have picked up new
|
|
|
|
// termination funcs while the script was evaluating. Prepend whatever
|
|
|
|
// we have to the current termination funcs on the context (since our
|
|
|
|
// termination funcs were posted first).
|
|
|
|
if (mTerminations) {
|
|
|
|
TerminationFuncClosure* cur = mTerminations;
|
|
|
|
while (cur->mNext) {
|
|
|
|
cur = cur->mNext;
|
|
|
|
}
|
|
|
|
cur->mNext = mContext->mTerminations;
|
|
|
|
mContext->mTerminations = mTerminations;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
nsJSContext* mContext;
|
|
|
|
TerminationFuncClosure* mTerminations;
|
|
|
|
};
|
2008-11-26 22:54:40 +00:00
|
|
|
|
2005-06-09 15:42:19 +00:00
|
|
|
TerminationFuncClosure* mTerminations;
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
|
2005-06-09 15:42:19 +00:00
|
|
|
private:
|
2011-09-29 06:19:26 +00:00
|
|
|
bool mIsInitialized;
|
|
|
|
bool mScriptsEnabled;
|
|
|
|
bool mGCOnDestruction;
|
|
|
|
bool mProcessingScriptTag;
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t mExecuteDepth;
|
|
|
|
uint32_t mDefaultJSOptions;
|
2008-01-18 21:28:42 +00:00
|
|
|
PRTime mOperationCallbackTime;
|
2001-10-31 08:39:09 +00:00
|
|
|
|
2009-06-12 00:52:47 +00:00
|
|
|
PRTime mModalStateTime;
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t mModalStateDepth;
|
2009-06-12 00:52:47 +00:00
|
|
|
|
2012-05-09 18:53:23 +00:00
|
|
|
nsJSContext *mNext;
|
|
|
|
nsJSContext **mPrev;
|
|
|
|
|
2010-09-03 21:15:50 +00:00
|
|
|
// mGlobalObjectRef ensures that the outer window stays alive as long as the
|
|
|
|
// context does. It is eventually collected by the cycle collector.
|
2011-04-28 20:28:54 +00:00
|
|
|
nsCOMPtr<nsIScriptGlobalObject> mGlobalObjectRef;
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
|
2008-10-10 15:04:34 +00:00
|
|
|
static int JSOptionChangedCallback(const char *pref, void *data);
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
|
2008-09-06 22:21:43 +00:00
|
|
|
static JSBool DOMOperationCallback(JSContext *cx);
|
1998-07-16 01:16:47 +00:00
|
|
|
};
|
|
|
|
|
(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
|
|
|
class nsIJSRuntimeService;
|
|
|
|
|
2012-06-15 02:31:55 +00:00
|
|
|
class nsJSRuntime MOZ_FINAL : public nsIScriptRuntime
|
2001-11-27 09:46:38 +00:00
|
|
|
{
|
2006-06-13 03:07:47 +00:00
|
|
|
public:
|
|
|
|
// let people who can see us use our runtime for convenience.
|
2001-11-27 09:46:38 +00:00
|
|
|
static JSRuntime *sRuntime;
|
1998-07-16 01:16:47 +00:00
|
|
|
|
|
|
|
public:
|
2006-06-13 03:07:47 +00:00
|
|
|
// nsISupports
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
|
2011-11-16 07:50:19 +00:00
|
|
|
virtual already_AddRefed<nsIScriptContext> CreateContext();
|
2006-06-13 03:07:47 +00:00
|
|
|
|
|
|
|
virtual nsresult DropScriptObject(void *object);
|
|
|
|
virtual nsresult HoldScriptObject(void *object);
|
2008-11-26 22:54:40 +00:00
|
|
|
|
2006-06-13 03:07:47 +00:00
|
|
|
static void Startup();
|
2008-09-11 13:20:56 +00:00
|
|
|
static void Shutdown();
|
2006-06-13 03:07:47 +00:00
|
|
|
// Setup all the statics etc - safe to call multiple times after Startup()
|
2001-11-27 09:46:38 +00:00
|
|
|
static nsresult Init();
|
2007-11-13 10:35:49 +00:00
|
|
|
// Get the NameSpaceManager, creating if necessary
|
|
|
|
static nsScriptNameSpaceManager* GetNameSpaceManager();
|
2006-06-13 03:07:47 +00:00
|
|
|
};
|
1998-07-16 01:16:47 +00:00
|
|
|
|
2006-06-13 03:07:47 +00:00
|
|
|
// An interface for fast and native conversion to/from nsIArray. If an object
|
|
|
|
// supports this interface, JS can reach directly in for the argv, and avoid
|
|
|
|
// nsISupports conversion. If this interface is not supported, the object will
|
|
|
|
// be queried for nsIArray, and everything converted via xpcom objects.
|
|
|
|
#define NS_IJSARGARRAY_IID \
|
2012-03-11 08:53:05 +00:00
|
|
|
{ 0xb6acdac8, 0xf5c6, 0x432c, \
|
|
|
|
{ 0xa8, 0x6e, 0x33, 0xee, 0xb1, 0xb0, 0xcd, 0xdc } }
|
2001-11-27 09:46:38 +00:00
|
|
|
|
2012-03-11 08:53:05 +00:00
|
|
|
class nsIJSArgArray : public nsIArray
|
2006-06-13 03:07:47 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IJSARGARRAY_IID)
|
|
|
|
// Bug 312003 describes why this must be "void **", but after calling argv
|
|
|
|
// may be cast to jsval* and the args found at:
|
|
|
|
// ((jsval*)argv)[0], ..., ((jsval*)argv)[argc - 1]
|
2012-08-22 15:56:38 +00:00
|
|
|
virtual nsresult GetArgs(uint32_t *argc, void **argv) = 0;
|
1998-07-16 01:16:47 +00:00
|
|
|
};
|
|
|
|
|
2006-06-13 03:07:47 +00:00
|
|
|
NS_DEFINE_STATIC_IID_ACCESSOR(nsIJSArgArray, NS_IJSARGARRAY_IID)
|
|
|
|
|
|
|
|
/* factory functions */
|
|
|
|
nsresult NS_CreateJSRuntime(nsIScriptRuntime **aRuntime);
|
2004-02-24 03:22:35 +00:00
|
|
|
|
1999-01-06 18:53:59 +00:00
|
|
|
/* prototypes */
|
2008-09-06 22:21:43 +00:00
|
|
|
void NS_ScriptErrorReporter(JSContext *cx, const char *message, JSErrorReport *report);
|
1999-01-06 18:53:59 +00:00
|
|
|
|
2011-07-17 19:09:13 +00:00
|
|
|
JSObject* NS_DOMReadStructuredClone(JSContext* cx,
|
Bug 708735 - Use <stdint.h> types in JSAPI and throughout SpiderMonkey. Continue to provide the {u,}int{8,16,32,64} and JS{Uint,Int}{8,16,32,64} integer types through a single header, however, for a simpler backout strategy -- and also to ease the transition for embedders. r=timeless on switching the jsd API to use the <stdint.h> types, r=luke, r=dmandelin
2011-12-09 03:54:10 +00:00
|
|
|
JSStructuredCloneReader* reader, uint32_t tag,
|
|
|
|
uint32_t data, void* closure);
|
2011-07-17 19:09:13 +00:00
|
|
|
|
|
|
|
JSBool NS_DOMWriteStructuredClone(JSContext* cx,
|
|
|
|
JSStructuredCloneWriter* writer,
|
|
|
|
JSObject* obj, void *closure);
|
|
|
|
|
Bug 708735 - Use <stdint.h> types in JSAPI and throughout SpiderMonkey. Continue to provide the {u,}int{8,16,32,64} and JS{Uint,Int}{8,16,32,64} integer types through a single header, however, for a simpler backout strategy -- and also to ease the transition for embedders. r=timeless on switching the jsd API to use the <stdint.h> types, r=luke, r=dmandelin
2011-12-09 03:54:10 +00:00
|
|
|
void NS_DOMStructuredCloneError(JSContext* cx, uint32_t errorid);
|
2011-07-17 19:09:13 +00:00
|
|
|
|
2011-09-18 09:22:17 +00:00
|
|
|
#endif /* nsJSEnvironment_h */
|