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-12-03 03:33:00 +03:00
|
|
|
|
|
|
|
/**
|
2003-11-18 04:58:43 +03:00
|
|
|
* This is not a generated file. It contains common utility functions
|
1998-12-03 03:33:00 +03:00
|
|
|
* invoked from the JavaScript code generated from IDL interfaces.
|
|
|
|
* The goal of the utility functions is to cut down on the size of
|
|
|
|
* the generated code itself.
|
|
|
|
*/
|
|
|
|
|
1998-12-23 01:03:20 +03:00
|
|
|
#include "nsJSUtils.h"
|
1998-12-03 03:33:00 +03:00
|
|
|
#include "jsapi.h"
|
2013-09-05 01:06:55 +04:00
|
|
|
#include "jsfriendapi.h"
|
1998-12-03 03:33:00 +03:00
|
|
|
#include "nsIScriptContext.h"
|
|
|
|
#include "nsIScriptGlobalObject.h"
|
1999-04-24 06:37:41 +04:00
|
|
|
#include "nsIXPConnect.h"
|
1999-09-09 03:14:30 +04:00
|
|
|
#include "nsCOMPtr.h"
|
2008-02-13 06:52:43 +03:00
|
|
|
#include "nsIScriptSecurityManager.h"
|
2011-07-20 23:18:54 +04:00
|
|
|
#include "nsPIDOMWindow.h"
|
2013-08-09 03:51:34 +04:00
|
|
|
#include "GeckoProfiler.h"
|
2006-06-13 07:07:47 +04:00
|
|
|
#include "nsDOMJSUtils.h" // for GetScriptContextFromJSContext
|
2013-01-17 06:50:25 +04:00
|
|
|
#include "nsJSPrincipals.h"
|
2013-08-15 22:17:48 +04:00
|
|
|
#include "xpcpublic.h"
|
|
|
|
#include "nsContentUtils.h"
|
2013-11-20 20:48:00 +04:00
|
|
|
#include "nsGlobalWindow.h"
|
2012-03-31 08:42:20 +04:00
|
|
|
|
2014-10-31 00:40:09 +03:00
|
|
|
#include "mozilla/dom/BindingUtils.h"
|
|
|
|
#include "mozilla/dom/Element.h"
|
2014-09-29 17:34:21 +04:00
|
|
|
#include "mozilla/dom/ScriptSettings.h"
|
|
|
|
|
|
|
|
using namespace mozilla::dom;
|
|
|
|
|
2013-08-09 02:53:04 +04:00
|
|
|
bool
|
2015-01-06 00:53:27 +03:00
|
|
|
nsJSUtils::GetCallingLocation(JSContext* aContext, nsACString& aFilename,
|
2015-09-02 03:56:03 +03:00
|
|
|
uint32_t* aLineno, uint32_t* aColumn)
|
1999-09-09 03:14:30 +04:00
|
|
|
{
|
2014-02-25 19:43:14 +04:00
|
|
|
JS::AutoFilename filename;
|
2015-09-02 03:56:03 +03:00
|
|
|
if (!JS::DescribeScriptedCaller(aContext, &filename, aLineno, aColumn)) {
|
2013-08-07 10:59:54 +04:00
|
|
|
return false;
|
1999-09-09 03:14:30 +04: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 03:43:30 +03:00
|
|
|
|
2015-01-06 00:53:27 +03:00
|
|
|
aFilename.Assign(filename.get());
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
nsJSUtils::GetCallingLocation(JSContext* aContext, nsAString& aFilename,
|
2015-09-02 03:56:03 +03:00
|
|
|
uint32_t* aLineno, uint32_t* aColumn)
|
2015-01-06 00:53:27 +03:00
|
|
|
{
|
|
|
|
JS::AutoFilename filename;
|
2015-09-02 03:56:03 +03:00
|
|
|
if (!JS::DescribeScriptedCaller(aContext, &filename, aLineno, aColumn)) {
|
2015-01-06 00:53:27 +03:00
|
|
|
return false;
|
|
|
|
}
|
2012-04-16 23:30:00 +04:00
|
|
|
|
2015-01-06 00:53:27 +03:00
|
|
|
aFilename.Assign(NS_ConvertUTF8toUTF16(filename.get()));
|
2013-08-07 10:59:54 +04:00
|
|
|
return true;
|
(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 03:43:30 +03:00
|
|
|
}
|
|
|
|
|
2004-02-10 01:48:53 +03:00
|
|
|
nsIScriptGlobalObject *
|
2012-11-09 19:43:57 +04:00
|
|
|
nsJSUtils::GetStaticScriptGlobal(JSObject* aObj)
|
1999-12-18 23:29:29 +03:00
|
|
|
{
|
2013-11-20 20:48:00 +04:00
|
|
|
if (!aObj)
|
2012-07-30 18:20:58 +04:00
|
|
|
return nullptr;
|
2013-11-20 20:48:00 +04:00
|
|
|
return xpc::WindowGlobalOrNull(aObj);
|
1999-12-18 23:29:29 +03:00
|
|
|
}
|
|
|
|
|
2004-02-10 01:48:53 +03:00
|
|
|
nsIScriptContext *
|
2012-11-09 19:43:57 +04:00
|
|
|
nsJSUtils::GetStaticScriptContext(JSObject* aObj)
|
1999-12-18 23:29:29 +03:00
|
|
|
{
|
2012-11-09 19:43:57 +04:00
|
|
|
nsIScriptGlobalObject *nativeGlobal = GetStaticScriptGlobal(aObj);
|
2003-11-18 04:58:43 +03:00
|
|
|
if (!nativeGlobal)
|
2012-07-30 18:20:58 +04:00
|
|
|
return nullptr;
|
2004-02-10 01:48:53 +03:00
|
|
|
|
2012-03-23 21:13:29 +04:00
|
|
|
return nativeGlobal->GetScriptContext();
|
2003-11-18 04:58:43 +03:00
|
|
|
}
|
1999-12-18 23:29:29 +03:00
|
|
|
|
2012-08-22 19:56:38 +04:00
|
|
|
uint64_t
|
2011-08-25 00:44:35 +04:00
|
|
|
nsJSUtils::GetCurrentlyRunningCodeInnerWindowID(JSContext *aContext)
|
2010-12-20 19:21:58 +03:00
|
|
|
{
|
|
|
|
if (!aContext)
|
|
|
|
return 0;
|
|
|
|
|
2012-08-22 19:56:38 +04:00
|
|
|
uint64_t innerWindowID = 0;
|
2011-02-20 07:46:44 +03:00
|
|
|
|
2013-07-30 03:45:27 +04:00
|
|
|
JSObject *jsGlobal = JS::CurrentGlobalOrNull(aContext);
|
2011-02-20 07:46:44 +03:00
|
|
|
if (jsGlobal) {
|
2012-11-09 19:43:57 +04:00
|
|
|
nsIScriptGlobalObject *scriptGlobal = GetStaticScriptGlobal(jsGlobal);
|
2011-02-20 07:46:44 +03:00
|
|
|
if (scriptGlobal) {
|
|
|
|
nsCOMPtr<nsPIDOMWindow> win = do_QueryInterface(scriptGlobal);
|
|
|
|
if (win)
|
2011-08-25 00:44:35 +04:00
|
|
|
innerWindowID = win->WindowID();
|
2011-02-20 07:46:44 +03:00
|
|
|
}
|
|
|
|
}
|
2010-12-20 19:21:58 +03:00
|
|
|
|
2011-08-25 00:44:35 +04:00
|
|
|
return innerWindowID;
|
2010-12-20 19:21:58 +03:00
|
|
|
}
|
|
|
|
|
2013-01-17 06:50:25 +04:00
|
|
|
nsresult
|
2014-09-29 17:34:21 +04:00
|
|
|
nsJSUtils::CompileFunction(AutoJSAPI& jsapi,
|
2014-10-25 08:50:29 +04:00
|
|
|
JS::AutoObjectVector& aScopeChain,
|
2013-01-17 06:50:25 +04:00
|
|
|
JS::CompileOptions& aOptions,
|
|
|
|
const nsACString& aName,
|
|
|
|
uint32_t aArgCount,
|
|
|
|
const char** aArgArray,
|
|
|
|
const nsAString& aBody,
|
|
|
|
JSObject** aFunctionObject)
|
|
|
|
{
|
2014-09-29 17:34:21 +04:00
|
|
|
MOZ_ASSERT(jsapi.OwnsErrorReporting());
|
|
|
|
JSContext* cx = jsapi.cx();
|
|
|
|
MOZ_ASSERT(js::GetEnterCompartmentDepth(cx) > 0);
|
2014-10-25 08:50:29 +04:00
|
|
|
MOZ_ASSERT_IF(aScopeChain.length() != 0,
|
|
|
|
js::IsObjectInContextCompartment(aScopeChain[0], cx));
|
2013-01-17 06:50:25 +04:00
|
|
|
MOZ_ASSERT_IF(aOptions.versionSet, aOptions.version != JSVERSION_UNKNOWN);
|
2014-09-29 17:34:21 +04:00
|
|
|
mozilla::DebugOnly<nsIScriptContext*> ctx = GetScriptContextFromJSContext(cx);
|
2013-01-23 10:12:50 +04:00
|
|
|
MOZ_ASSERT_IF(ctx, ctx->IsContextInitialized());
|
2013-01-17 06:50:25 +04:00
|
|
|
|
|
|
|
// Do the junk Gecko is supposed to do before calling into JSAPI.
|
2014-10-25 08:50:29 +04:00
|
|
|
for (size_t i = 0; i < aScopeChain.length(); ++i) {
|
|
|
|
JS::ExposeObjectToActiveJS(aScopeChain[i]);
|
2013-09-09 07:28:48 +04:00
|
|
|
}
|
2013-01-17 06:50:25 +04:00
|
|
|
|
|
|
|
// Compile.
|
2014-09-29 17:34:21 +04:00
|
|
|
JS::Rooted<JSFunction*> fun(cx);
|
2014-10-25 08:50:29 +04:00
|
|
|
if (!JS::CompileFunction(cx, aScopeChain, aOptions,
|
2014-06-26 02:35:35 +04:00
|
|
|
PromiseFlatCString(aName).get(),
|
|
|
|
aArgCount, aArgArray,
|
|
|
|
PromiseFlatString(aBody).get(),
|
|
|
|
aBody.Length(), &fun))
|
|
|
|
{
|
2013-01-23 10:12:50 +04:00
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
2013-01-17 06:50:25 +04:00
|
|
|
|
|
|
|
*aFunctionObject = JS_GetFunctionObject(fun);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2013-08-09 03:51:34 +04:00
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsJSUtils::EvaluateString(JSContext* aCx,
|
|
|
|
const nsAString& aScript,
|
2014-11-13 01:04:29 +03:00
|
|
|
JS::Handle<JSObject*> aEvaluationGlobal,
|
2013-08-09 03:51:35 +04:00
|
|
|
JS::CompileOptions& aCompileOptions,
|
2014-04-01 14:34:39 +04:00
|
|
|
const EvaluateOptions& aEvaluateOptions,
|
2014-11-18 19:01:08 +03:00
|
|
|
JS::MutableHandle<JS::Value> aRetValue)
|
2014-04-25 18:11:56 +04:00
|
|
|
{
|
|
|
|
const nsPromiseFlatString& flatScript = PromiseFlatString(aScript);
|
|
|
|
JS::SourceBufferHolder srcBuf(flatScript.get(), aScript.Length(),
|
|
|
|
JS::SourceBufferHolder::NoOwnership);
|
2014-11-13 01:04:29 +03:00
|
|
|
return EvaluateString(aCx, srcBuf, aEvaluationGlobal, aCompileOptions,
|
2014-11-18 19:01:08 +03:00
|
|
|
aEvaluateOptions, aRetValue, nullptr);
|
2014-04-25 18:11:56 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsJSUtils::EvaluateString(JSContext* aCx,
|
|
|
|
JS::SourceBufferHolder& aSrcBuf,
|
2014-11-13 01:04:29 +03:00
|
|
|
JS::Handle<JSObject*> aEvaluationGlobal,
|
2014-04-25 18:11:56 +04:00
|
|
|
JS::CompileOptions& aCompileOptions,
|
|
|
|
const EvaluateOptions& aEvaluateOptions,
|
|
|
|
JS::MutableHandle<JS::Value> aRetValue,
|
|
|
|
void **aOffThreadToken)
|
2013-08-09 03:51:34 +04:00
|
|
|
{
|
2014-05-24 01:12:29 +04:00
|
|
|
PROFILER_LABEL("nsJSUtils", "EvaluateString",
|
|
|
|
js::ProfileEntry::Category::JS);
|
|
|
|
|
2015-06-16 03:11:06 +03:00
|
|
|
MOZ_ASSERT(JS::ContextOptionsRef(aCx).autoJSAPIOwnsErrorReporting(),
|
|
|
|
"Caller must own error reporting");
|
2013-08-09 03:51:35 +04:00
|
|
|
MOZ_ASSERT_IF(aCompileOptions.versionSet,
|
|
|
|
aCompileOptions.version != JSVERSION_UNKNOWN);
|
2014-11-18 19:01:09 +03:00
|
|
|
MOZ_ASSERT_IF(aEvaluateOptions.coerceToString, !aCompileOptions.noScriptRval);
|
2013-08-09 03:51:34 +04:00
|
|
|
MOZ_ASSERT(aCx == nsContentUtils::GetCurrentJSContext());
|
2014-04-25 18:11:56 +04:00
|
|
|
MOZ_ASSERT(aSrcBuf.get());
|
2014-11-13 01:04:29 +03:00
|
|
|
MOZ_ASSERT(js::GetGlobalForObjectCrossCompartment(aEvaluationGlobal) ==
|
|
|
|
aEvaluationGlobal);
|
2014-11-18 19:01:09 +03:00
|
|
|
MOZ_ASSERT_IF(aOffThreadToken, aCompileOptions.noScriptRval);
|
2015-07-09 09:41:43 +03:00
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
|
|
MOZ_ASSERT(nsContentUtils::IsInMicroTask());
|
2013-08-09 03:51:34 +04:00
|
|
|
|
|
|
|
// Unfortunately, the JS engine actually compiles scripts with a return value
|
|
|
|
// in a different, less efficient way. Furthermore, it can't JIT them in many
|
|
|
|
// cases. So we need to be explicitly told whether the caller cares about the
|
2014-04-01 14:34:39 +04:00
|
|
|
// return value. Callers can do this by calling the other overload of
|
2014-11-18 19:01:09 +03:00
|
|
|
// EvaluateString() which calls this function with
|
|
|
|
// aCompileOptions.noScriptRval set to true.
|
2014-04-01 14:34:39 +04:00
|
|
|
aRetValue.setUndefined();
|
2013-08-09 03:51:34 +04:00
|
|
|
|
2013-11-13 04:43:31 +04:00
|
|
|
nsresult rv = NS_OK;
|
2013-08-09 03:51:34 +04:00
|
|
|
|
2013-11-13 04:43:31 +04:00
|
|
|
nsIScriptSecurityManager* ssm = nsContentUtils::GetSecurityManager();
|
2014-11-13 01:04:29 +03:00
|
|
|
NS_ENSURE_TRUE(ssm->ScriptAllowed(aEvaluationGlobal), NS_OK);
|
2013-08-09 03:51:34 +04:00
|
|
|
|
2014-11-13 01:04:29 +03:00
|
|
|
bool ok = true;
|
2013-08-09 03:51:34 +04:00
|
|
|
// Scope the JSAutoCompartment so that we can later wrap the return value
|
|
|
|
// into the caller's cx.
|
|
|
|
{
|
2014-11-13 01:04:29 +03:00
|
|
|
JSAutoCompartment ac(aCx, aEvaluationGlobal);
|
2013-08-09 03:51:34 +04:00
|
|
|
|
2014-11-13 01:04:29 +03:00
|
|
|
// Now make sure to wrap the scope chain into the right compartment.
|
|
|
|
JS::AutoObjectVector scopeChain(aCx);
|
|
|
|
if (!scopeChain.reserve(aEvaluateOptions.scopeChain.length())) {
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (size_t i = 0; i < aEvaluateOptions.scopeChain.length(); ++i) {
|
|
|
|
JS::ExposeObjectToActiveJS(aEvaluateOptions.scopeChain[i]);
|
|
|
|
scopeChain.infallibleAppend(aEvaluateOptions.scopeChain[i]);
|
|
|
|
if (!JS_WrapObject(aCx, scopeChain[i])) {
|
|
|
|
ok = false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ok && aOffThreadToken) {
|
2014-03-17 20:17:58 +04:00
|
|
|
JS::Rooted<JSScript*>
|
|
|
|
script(aCx, JS::FinishOffThreadScript(aCx, JS_GetRuntime(aCx), *aOffThreadToken));
|
2013-09-12 03:42:09 +04:00
|
|
|
*aOffThreadToken = nullptr; // Mark the token as having been finished.
|
|
|
|
if (script) {
|
2014-11-18 19:01:08 +03:00
|
|
|
ok = JS_ExecuteScript(aCx, scopeChain, script);
|
2013-09-12 03:42:09 +04:00
|
|
|
} else {
|
|
|
|
ok = false;
|
|
|
|
}
|
2014-11-13 01:04:29 +03:00
|
|
|
} else if (ok) {
|
2014-11-19 07:27:16 +03:00
|
|
|
ok = JS::Evaluate(aCx, scopeChain, aCompileOptions, aSrcBuf, aRetValue);
|
2013-09-12 03:42:09 +04:00
|
|
|
}
|
|
|
|
|
2014-04-01 14:34:39 +04:00
|
|
|
if (ok && aEvaluateOptions.coerceToString && !aRetValue.isUndefined()) {
|
|
|
|
JS::Rooted<JS::Value> value(aCx, aRetValue);
|
2013-11-16 16:31:36 +04:00
|
|
|
JSString* str = JS::ToString(aCx, value);
|
2013-08-09 03:51:34 +04:00
|
|
|
ok = !!str;
|
2014-04-01 14:34:39 +04:00
|
|
|
aRetValue.set(ok ? JS::StringValue(str) : JS::UndefinedValue());
|
2013-08-09 03:51:34 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!ok) {
|
2015-06-16 03:11:06 +03:00
|
|
|
rv = NS_SUCCESS_DOM_SCRIPT_EVALUATION_THREW;
|
2015-06-16 03:10:50 +03:00
|
|
|
if (!aCompileOptions.noScriptRval) {
|
|
|
|
aRetValue.setUndefined();
|
2013-08-09 03:51:34 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Wrap the return value into whatever compartment aCx was in.
|
2015-06-16 03:10:50 +03:00
|
|
|
if (ok && !aCompileOptions.noScriptRval) {
|
2014-11-18 19:01:09 +03:00
|
|
|
if (!JS_WrapValue(aCx, aRetValue)) {
|
2013-10-26 20:19:05 +04:00
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
}
|
2013-08-09 03:51:35 +04:00
|
|
|
return rv;
|
2013-08-09 03:51:34 +04:00
|
|
|
}
|
2013-09-05 01:06:55 +04:00
|
|
|
|
2014-04-01 14:34:39 +04:00
|
|
|
nsresult
|
|
|
|
nsJSUtils::EvaluateString(JSContext* aCx,
|
2014-11-18 19:01:08 +03:00
|
|
|
JS::SourceBufferHolder& aSrcBuf,
|
2014-11-13 01:04:29 +03:00
|
|
|
JS::Handle<JSObject*> aEvaluationGlobal,
|
2014-04-01 14:34:39 +04:00
|
|
|
JS::CompileOptions& aCompileOptions,
|
2014-11-18 19:01:08 +03:00
|
|
|
const EvaluateOptions& aEvaluateOptions,
|
|
|
|
JS::MutableHandle<JS::Value> aRetValue)
|
|
|
|
{
|
|
|
|
return EvaluateString(aCx, aSrcBuf, aEvaluationGlobal, aCompileOptions,
|
|
|
|
aEvaluateOptions, aRetValue, nullptr);
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsJSUtils::EvaluateString(JSContext* aCx,
|
|
|
|
const nsAString& aScript,
|
|
|
|
JS::Handle<JSObject*> aEvaluationGlobal,
|
|
|
|
JS::CompileOptions& aCompileOptions)
|
2014-04-01 14:34:39 +04:00
|
|
|
{
|
2014-11-13 01:04:29 +03:00
|
|
|
EvaluateOptions options(aCx);
|
2014-11-18 19:01:09 +03:00
|
|
|
aCompileOptions.setNoScriptRval(true);
|
2014-04-01 14:34:39 +04:00
|
|
|
JS::RootedValue unused(aCx);
|
2014-11-13 01:04:29 +03:00
|
|
|
return EvaluateString(aCx, aScript, aEvaluationGlobal, aCompileOptions,
|
2014-11-18 19:01:08 +03:00
|
|
|
options, &unused);
|
2014-04-01 14:34:39 +04:00
|
|
|
}
|
|
|
|
|
2014-04-25 18:11:56 +04:00
|
|
|
nsresult
|
|
|
|
nsJSUtils::EvaluateString(JSContext* aCx,
|
|
|
|
JS::SourceBufferHolder& aSrcBuf,
|
2014-11-13 01:04:29 +03:00
|
|
|
JS::Handle<JSObject*> aEvaluationGlobal,
|
2014-04-25 18:11:56 +04:00
|
|
|
JS::CompileOptions& aCompileOptions,
|
|
|
|
void **aOffThreadToken)
|
|
|
|
{
|
2014-11-13 01:04:29 +03:00
|
|
|
EvaluateOptions options(aCx);
|
2014-11-18 19:01:09 +03:00
|
|
|
aCompileOptions.setNoScriptRval(true);
|
2014-04-25 18:11:56 +04:00
|
|
|
JS::RootedValue unused(aCx);
|
2014-11-13 01:04:29 +03:00
|
|
|
return EvaluateString(aCx, aSrcBuf, aEvaluationGlobal, aCompileOptions,
|
2014-04-25 18:11:56 +04:00
|
|
|
options, &unused, aOffThreadToken);
|
|
|
|
}
|
|
|
|
|
2014-10-31 00:40:09 +03:00
|
|
|
/* static */
|
|
|
|
bool
|
|
|
|
nsJSUtils::GetScopeChainForElement(JSContext* aCx,
|
|
|
|
mozilla::dom::Element* aElement,
|
|
|
|
JS::AutoObjectVector& aScopeChain)
|
|
|
|
{
|
|
|
|
for (nsINode* cur = aElement; cur; cur = cur->GetScopeChainParent()) {
|
|
|
|
JS::RootedValue val(aCx);
|
2014-11-26 22:25:20 +03:00
|
|
|
if (!GetOrCreateDOMReflector(aCx, cur, &val)) {
|
2014-10-31 00:40:09 +03:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!aScopeChain.append(&val.toObject())) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-06-15 10:44:09 +03:00
|
|
|
/* static */
|
|
|
|
void
|
|
|
|
nsJSUtils::ResetTimeZone()
|
|
|
|
{
|
|
|
|
JS::ResetTimeZone();
|
|
|
|
}
|
2014-10-31 00:40:09 +03:00
|
|
|
|
2013-09-05 01:06:55 +04:00
|
|
|
//
|
|
|
|
// nsDOMJSUtils.h
|
|
|
|
//
|
|
|
|
|
|
|
|
JSObject* GetDefaultScopeFromJSContext(JSContext *cx)
|
|
|
|
{
|
|
|
|
// DOM JSContexts don't store their default compartment object on
|
|
|
|
// the cx, so in those cases we need to fetch it via the scx
|
|
|
|
// instead.
|
|
|
|
nsIScriptContext *scx = GetScriptContextFromJSContext(cx);
|
2014-08-22 04:13:50 +04:00
|
|
|
return scx ? scx->GetWindowProxy() : nullptr;
|
2013-09-05 01:06:55 +04:00
|
|
|
}
|
2015-02-19 22:16:00 +03:00
|
|
|
|
|
|
|
bool nsAutoJSString::init(const JS::Value &v)
|
|
|
|
{
|
|
|
|
return init(nsContentUtils::RootingCxForThread(), v);
|
|
|
|
}
|
|
|
|
|