2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2008-01-29 18:11:48 -08:00
|
|
|
/* vim: set ts=2 sw=2 et tw=78: */
|
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
|
|
|
|
|
|
|
/**
|
|
|
|
* This is not a generated file. It contains common utility functions
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "nsJSUtils.h"
|
|
|
|
#include "jsapi.h"
|
2013-08-26 19:05:20 -07:00
|
|
|
#include "js/OldDebugAPI.h"
|
2013-09-04 14:06:55 -07:00
|
|
|
#include "jsfriendapi.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsIScriptContext.h"
|
|
|
|
#include "nsIScriptGlobalObject.h"
|
|
|
|
#include "nsIXPConnect.h"
|
|
|
|
#include "nsCOMPtr.h"
|
2008-02-12 19:52:43 -08:00
|
|
|
#include "nsIScriptSecurityManager.h"
|
2011-07-20 12:18:54 -07:00
|
|
|
#include "nsPIDOMWindow.h"
|
2013-08-08 16:51:34 -07:00
|
|
|
#include "GeckoProfiler.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsDOMJSUtils.h" // for GetScriptContextFromJSContext
|
2013-01-16 18:50:25 -08:00
|
|
|
#include "nsJSPrincipals.h"
|
2013-08-15 11:17:48 -07:00
|
|
|
#include "xpcpublic.h"
|
|
|
|
#include "nsContentUtils.h"
|
2013-11-20 08:48:00 -08:00
|
|
|
#include "nsGlobalWindow.h"
|
2012-03-30 21:42:20 -07:00
|
|
|
|
2013-08-08 15:53:04 -07:00
|
|
|
bool
|
2007-03-22 10:30:00 -07:00
|
|
|
nsJSUtils::GetCallingLocation(JSContext* aContext, const char* *aFilename,
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t* aLineno)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2014-02-25 07:43:14 -08:00
|
|
|
JS::AutoFilename filename;
|
2012-04-16 12:30:00 -07:00
|
|
|
unsigned lineno = 0;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2014-02-25 07:43:14 -08:00
|
|
|
if (!JS::DescribeScriptedCaller(aContext, &filename, &lineno)) {
|
2013-08-06 23:59:54 -07:00
|
|
|
return false;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2014-02-25 07:43:14 -08:00
|
|
|
*aFilename = filename.get();
|
2012-04-16 12:30:00 -07:00
|
|
|
*aLineno = lineno;
|
|
|
|
|
2013-08-06 23:59:54 -07:00
|
|
|
return true;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
nsIScriptGlobalObject *
|
2012-11-09 07:43:57 -08:00
|
|
|
nsJSUtils::GetStaticScriptGlobal(JSObject* aObj)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2013-11-20 08:48:00 -08:00
|
|
|
if (!aObj)
|
2012-07-30 07:20:58 -07:00
|
|
|
return nullptr;
|
2013-11-20 08:48:00 -08:00
|
|
|
return xpc::WindowGlobalOrNull(aObj);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
nsIScriptContext *
|
2012-11-09 07:43:57 -08:00
|
|
|
nsJSUtils::GetStaticScriptContext(JSObject* aObj)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2012-11-09 07:43:57 -08:00
|
|
|
nsIScriptGlobalObject *nativeGlobal = GetStaticScriptGlobal(aObj);
|
2007-03-22 10:30:00 -07:00
|
|
|
if (!nativeGlobal)
|
2012-07-30 07:20:58 -07:00
|
|
|
return nullptr;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2012-03-23 10:13:29 -07:00
|
|
|
return nativeGlobal->GetScriptContext();
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
nsIScriptGlobalObject *
|
|
|
|
nsJSUtils::GetDynamicScriptGlobal(JSContext* aContext)
|
|
|
|
{
|
|
|
|
nsIScriptContext *scriptCX = GetDynamicScriptContext(aContext);
|
|
|
|
if (!scriptCX)
|
2012-07-30 07:20:58 -07:00
|
|
|
return nullptr;
|
2007-03-22 10:30:00 -07:00
|
|
|
return scriptCX->GetGlobalObject();
|
|
|
|
}
|
|
|
|
|
|
|
|
nsIScriptContext *
|
|
|
|
nsJSUtils::GetDynamicScriptContext(JSContext *aContext)
|
|
|
|
{
|
|
|
|
return GetScriptContextFromJSContext(aContext);
|
|
|
|
}
|
2010-12-20 08:21:58 -08:00
|
|
|
|
2012-08-22 08:56:38 -07:00
|
|
|
uint64_t
|
2011-08-24 13:44:35 -07:00
|
|
|
nsJSUtils::GetCurrentlyRunningCodeInnerWindowID(JSContext *aContext)
|
2010-12-20 08:21:58 -08:00
|
|
|
{
|
|
|
|
if (!aContext)
|
|
|
|
return 0;
|
|
|
|
|
2012-08-22 08:56:38 -07:00
|
|
|
uint64_t innerWindowID = 0;
|
2011-02-19 20:46:44 -08:00
|
|
|
|
2013-07-29 16:45:27 -07:00
|
|
|
JSObject *jsGlobal = JS::CurrentGlobalOrNull(aContext);
|
2011-02-19 20:46:44 -08:00
|
|
|
if (jsGlobal) {
|
2012-11-09 07:43:57 -08:00
|
|
|
nsIScriptGlobalObject *scriptGlobal = GetStaticScriptGlobal(jsGlobal);
|
2011-02-19 20:46:44 -08:00
|
|
|
if (scriptGlobal) {
|
|
|
|
nsCOMPtr<nsPIDOMWindow> win = do_QueryInterface(scriptGlobal);
|
|
|
|
if (win)
|
2011-08-24 13:44:35 -07:00
|
|
|
innerWindowID = win->WindowID();
|
2011-02-19 20:46:44 -08:00
|
|
|
}
|
|
|
|
}
|
2010-12-20 08:21:58 -08:00
|
|
|
|
2011-08-24 13:44:35 -07:00
|
|
|
return innerWindowID;
|
2010-12-20 08:21:58 -08:00
|
|
|
}
|
|
|
|
|
2012-11-09 07:43:57 -08:00
|
|
|
void
|
|
|
|
nsJSUtils::ReportPendingException(JSContext *aContext)
|
|
|
|
{
|
|
|
|
if (JS_IsExceptionPending(aContext)) {
|
|
|
|
bool saved = JS_SaveFrameChain(aContext);
|
2013-07-17 11:53:52 -07:00
|
|
|
{
|
2013-09-04 14:06:55 -07:00
|
|
|
nsIScriptContext* scx = GetScriptContextFromJSContext(aContext);
|
|
|
|
JS::Rooted<JSObject*> scope(aContext);
|
2013-09-04 14:06:57 -07:00
|
|
|
scope = scx ? scx->GetWindowProxy()
|
2013-09-04 14:06:55 -07:00
|
|
|
: js::DefaultObjectForContextOrNull(aContext);
|
|
|
|
JSAutoCompartment ac(aContext, scope);
|
2013-07-17 11:53:52 -07:00
|
|
|
JS_ReportPendingException(aContext);
|
|
|
|
}
|
2012-11-09 07:43:57 -08:00
|
|
|
if (saved) {
|
|
|
|
JS_RestoreFrameChain(aContext);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-01-16 18:50:25 -08:00
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsJSUtils::CompileFunction(JSContext* aCx,
|
2013-11-11 00:04:41 -08:00
|
|
|
JS::Handle<JSObject*> aTarget,
|
2013-01-16 18:50:25 -08:00
|
|
|
JS::CompileOptions& aOptions,
|
|
|
|
const nsACString& aName,
|
|
|
|
uint32_t aArgCount,
|
|
|
|
const char** aArgArray,
|
|
|
|
const nsAString& aBody,
|
|
|
|
JSObject** aFunctionObject)
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(js::GetEnterCompartmentDepth(aCx) > 0);
|
2013-01-16 18:50:27 -08:00
|
|
|
MOZ_ASSERT_IF(aTarget, js::IsObjectInContextCompartment(aTarget, aCx));
|
2013-01-16 18:50:25 -08:00
|
|
|
MOZ_ASSERT_IF(aOptions.versionSet, aOptions.version != JSVERSION_UNKNOWN);
|
2013-01-22 22:12:50 -08:00
|
|
|
mozilla::DebugOnly<nsIScriptContext*> ctx = GetScriptContextFromJSContext(aCx);
|
|
|
|
MOZ_ASSERT_IF(ctx, ctx->IsContextInitialized());
|
2013-01-16 18:50:25 -08:00
|
|
|
|
|
|
|
// Since aTarget and aCx are same-compartment, there should be no distinction
|
|
|
|
// between the object principal and the cx principal.
|
|
|
|
// However, aTarget may be null in the wacky aShared case. So use the cx.
|
2013-01-16 18:50:27 -08:00
|
|
|
JSPrincipals* p = JS_GetCompartmentPrincipals(js::GetContextCompartment(aCx));
|
2013-01-16 18:50:25 -08:00
|
|
|
aOptions.setPrincipals(p);
|
|
|
|
|
|
|
|
// Do the junk Gecko is supposed to do before calling into JSAPI.
|
2013-09-08 20:28:48 -07:00
|
|
|
if (aTarget) {
|
|
|
|
JS::ExposeObjectToActiveJS(aTarget);
|
|
|
|
}
|
2013-01-16 18:50:25 -08:00
|
|
|
|
|
|
|
// Compile.
|
|
|
|
JSFunction* fun = JS::CompileFunction(aCx, aTarget, aOptions,
|
|
|
|
PromiseFlatCString(aName).get(),
|
|
|
|
aArgCount, aArgArray,
|
|
|
|
PromiseFlatString(aBody).get(),
|
|
|
|
aBody.Length());
|
2013-01-22 22:12:50 -08:00
|
|
|
if (!fun) {
|
|
|
|
ReportPendingException(aCx);
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
2013-01-16 18:50:25 -08:00
|
|
|
|
|
|
|
*aFunctionObject = JS_GetFunctionObject(fun);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2013-08-08 16:51:34 -07:00
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsJSUtils::EvaluateString(JSContext* aCx,
|
|
|
|
const nsAString& aScript,
|
|
|
|
JS::Handle<JSObject*> aScopeObject,
|
2013-08-08 16:51:35 -07:00
|
|
|
JS::CompileOptions& aCompileOptions,
|
|
|
|
EvaluateOptions& aEvaluateOptions,
|
2013-09-11 16:42:09 -07:00
|
|
|
JS::Value* aRetValue,
|
|
|
|
void **aOffThreadToken)
|
2013-08-08 16:51:34 -07:00
|
|
|
{
|
|
|
|
PROFILER_LABEL("JS", "EvaluateString");
|
2013-08-08 16:51:35 -07:00
|
|
|
MOZ_ASSERT_IF(aCompileOptions.versionSet,
|
|
|
|
aCompileOptions.version != JSVERSION_UNKNOWN);
|
|
|
|
MOZ_ASSERT_IF(aEvaluateOptions.coerceToString, aRetValue);
|
2013-08-08 16:51:35 -07:00
|
|
|
MOZ_ASSERT_IF(!aEvaluateOptions.reportUncaught, aRetValue);
|
2013-08-08 16:51:34 -07:00
|
|
|
MOZ_ASSERT(aCx == nsContentUtils::GetCurrentJSContext());
|
|
|
|
|
|
|
|
// 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
|
|
|
|
// return value. Callers use null to indicate they don't care.
|
|
|
|
if (aRetValue) {
|
|
|
|
*aRetValue = JSVAL_VOID;
|
|
|
|
}
|
|
|
|
|
2013-09-08 20:28:48 -07:00
|
|
|
JS::ExposeObjectToActiveJS(aScopeObject);
|
2013-08-08 16:51:34 -07:00
|
|
|
nsAutoMicroTask mt;
|
2013-11-12 16:43:31 -08:00
|
|
|
nsresult rv = NS_OK;
|
2013-08-08 16:51:34 -07:00
|
|
|
|
|
|
|
JSPrincipals* p = JS_GetCompartmentPrincipals(js::GetObjectCompartment(aScopeObject));
|
2013-08-08 16:51:35 -07:00
|
|
|
aCompileOptions.setPrincipals(p);
|
2013-08-08 16:51:34 -07:00
|
|
|
|
|
|
|
bool ok = false;
|
2013-11-12 16:43:31 -08:00
|
|
|
nsIScriptSecurityManager* ssm = nsContentUtils::GetSecurityManager();
|
|
|
|
NS_ENSURE_TRUE(ssm->ScriptAllowed(js::GetGlobalForObjectCrossCompartment(aScopeObject)), NS_OK);
|
2013-08-08 16:51:34 -07:00
|
|
|
|
2013-08-19 02:46:24 -07:00
|
|
|
mozilla::Maybe<AutoDontReportUncaught> dontReport;
|
|
|
|
if (!aEvaluateOptions.reportUncaught) {
|
|
|
|
// We need to prevent AutoLastFrameCheck from reporting and clearing
|
|
|
|
// any pending exceptions.
|
|
|
|
dontReport.construct(aCx);
|
|
|
|
}
|
|
|
|
|
2013-08-08 16:51:34 -07:00
|
|
|
// Scope the JSAutoCompartment so that we can later wrap the return value
|
|
|
|
// into the caller's cx.
|
|
|
|
{
|
|
|
|
JSAutoCompartment ac(aCx, aScopeObject);
|
|
|
|
|
2013-11-11 00:04:41 -08:00
|
|
|
JS::Rooted<JSObject*> rootedScope(aCx, aScopeObject);
|
2013-09-11 16:42:09 -07:00
|
|
|
if (aOffThreadToken) {
|
|
|
|
JSScript *script = JS::FinishOffThreadScript(aCx, JS_GetRuntime(aCx), *aOffThreadToken);
|
|
|
|
*aOffThreadToken = nullptr; // Mark the token as having been finished.
|
|
|
|
if (script) {
|
|
|
|
ok = JS_ExecuteScript(aCx, rootedScope, script, aRetValue);
|
|
|
|
} else {
|
|
|
|
ok = false;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
ok = JS::Evaluate(aCx, rootedScope, aCompileOptions,
|
|
|
|
PromiseFlatString(aScript).get(),
|
|
|
|
aScript.Length(), aRetValue);
|
|
|
|
}
|
|
|
|
|
2013-08-08 16:51:35 -07:00
|
|
|
if (ok && aEvaluateOptions.coerceToString && !aRetValue->isUndefined()) {
|
2013-11-16 04:31:36 -08:00
|
|
|
JS::Rooted<JS::Value> value(aCx, *aRetValue);
|
|
|
|
JSString* str = JS::ToString(aCx, value);
|
2013-08-08 16:51:34 -07:00
|
|
|
ok = !!str;
|
|
|
|
*aRetValue = ok ? JS::StringValue(str) : JS::UndefinedValue();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!ok) {
|
2013-08-08 16:51:35 -07:00
|
|
|
if (aEvaluateOptions.reportUncaught) {
|
|
|
|
ReportPendingException(aCx);
|
|
|
|
if (aRetValue) {
|
|
|
|
*aRetValue = JS::UndefinedValue();
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
rv = JS_IsExceptionPending(aCx) ? NS_ERROR_FAILURE
|
|
|
|
: NS_ERROR_OUT_OF_MEMORY;
|
2013-11-11 00:04:41 -08:00
|
|
|
JS::Rooted<JS::Value> exn(aCx);
|
2013-09-19 00:54:01 -07:00
|
|
|
JS_GetPendingException(aCx, &exn);
|
|
|
|
if (aRetValue) {
|
|
|
|
*aRetValue = exn;
|
|
|
|
}
|
2013-08-08 16:51:35 -07:00
|
|
|
JS_ClearPendingException(aCx);
|
2013-08-08 16:51:34 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Wrap the return value into whatever compartment aCx was in.
|
2013-10-26 09:19:05 -07:00
|
|
|
if (aRetValue) {
|
|
|
|
JS::Rooted<JS::Value> v(aCx, *aRetValue);
|
|
|
|
if (!JS_WrapValue(aCx, &v)) {
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
*aRetValue = v;
|
|
|
|
}
|
2013-08-08 16:51:35 -07:00
|
|
|
return rv;
|
2013-08-08 16:51:34 -07:00
|
|
|
}
|
2013-09-04 14:06:55 -07: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);
|
|
|
|
if (scx) {
|
2013-09-04 14:06:57 -07:00
|
|
|
return scx->GetWindowProxy();
|
2013-09-04 14:06:55 -07:00
|
|
|
}
|
|
|
|
return js::DefaultObjectForContextOrNull(cx);
|
|
|
|
}
|