mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-05-26 14:30:27 +00:00
e797853ee6
- Bug 1259877 - Update DoCallFallback to use js::CallFromStack. r=jandem (16a263ebc8) - Bug 1259877 - Intl.cpp:GetInternals should directly return its result, not go via outparam. r=till (6e3f5a508f) - Bug 1165052 - Part 7: Implement native ArraySpeciesCreate wrapper. r=efaust (3b113b8862) - Bug 1233862 - Add a WeakCache builtin to automatically manage sweeping; r=sfink (e4a63eeae3) - Bug 1198701 - ArrayIterator gets length property after iteration has finished. r=till (e91e514ce7) - Bug 1254853 - Add a Helper to Report a ScriptError to the Main Thread. r=khuey (4fb04c563e) - Bug 1259294: Part 1 - Add MOZ_ALWAYS_SUCCEEDS. r=froydnj (646513400c) - Bug 1257758 - Adjust step numbering in scripted proxy code to be ES6-correct. r=evilpie (bbd060f0d0) - Bug 1265594 - Expose FromPropertyDescriptor() as a public JS API; r=jorendorff (b84183bdbd) - reapply Bug 1258163 - Implement Array.prototype[@@unscopables]. r=shu, r=bholley. (7790e0e824) - Bug 1253371 - make atomics range checking conformant. r=jolesen (8830769fd8) - Bug 1253351 - count argument of futexWake defaults to +Infinity. r=bbouvier (e6da823106) - Bug 1259544 - remove futexWakeOrRequeue. r=bbouvier (35e922f333) - Bug 1260696: Update wasm text format spewing; r=luke (62b1f8577a) - Bug 1260737: wasm: Implement Reinterpret opcodes; r=luke (d3a6117e59) - Bug 1225028 - remove Atomics.fence. r=bbouvier (51d9f55f83) - Bug 1253344: Defer br/br_if/br_table then-block definition to avoid indirections; r=sunfish (e28b024386) - Bug 1254142: Baldr: make control flow opcodes yield subexpressions; r=luke (b82d9c89fc) - Bug 1260910 - introduce 'wait' and 'wake'. r=bbouvier (cd3e94119f) - Bug 1260835 - Atomics.wait returns strings + remove symbolic constants. r=jolesen (33ef0d61d8) - Bug 1041586 - Autogenerate symbol names. r=jorendorff (12fa06b6a5) - Bug 1241088: SharedStubs - part 1: move NewArray and NewObject baseline stubs to shared stubs, r=efaust (846d537ca8) - Bug 1241088: SharedStubs - part 2: port NewArray and NewObject shared stubs to work in ion, r=efaust (c073756376) - Bug 1246061. r=jandem, r=bz, r=luke, r=froydnj (c065b403d4) - Bug 1263870: Check allocation in WasmAstModule::declare; r=luke (d3b2a2acd7) - Bug 1242040. Fix the GlobalObject usage in ExtendableEvent::GetPromise. r=bkelly (d9e284ad62) - Bug 1255832. Propagate out JS exceptions properly from some methods in dom/mobilemessage. r=bholley (8c8d9ce3db) - Bug 1255817 part 2. Get rid of AutoJSAPI::OwnsErrorReporting and AutoJSAPI::TakeOwnershipOfErrorReporting. r=bholley (4f1c052fe6) - Bug 1259936: Baldr: Simplify calls stack bytes management; r=luke (30c58b319f) - Bug 1259936: Extra test case; r=luke (116079c082) - Bug 1261577: Always set the result of a dead loop in wasm; r=luke (67014be844) - Bug 1261404: Ensure BrTable only set successors once; r=sunfish (6989814189) - Bug 875433 - Implement Array.prototype.values. r=jorendorff. (423fa799dc) - Bug 1250947. Fill area outside blur with solid color. r=mstange (bc54b70a1c) - Bug 1259578 - Use GC infrastructure to allocate proxy's malloced blob; r=jonco (fa28d8f8c4) - Bug 1259580 - Hide as many Proxy details as possible behind a detail namespace; r=efaust (86bed5cab5) - Bug 1215265 - Shut PImageBridge down properly. r=sotaro (f387f89418) - Bug 1215265 - Shut PCompositorBridge down properly. r=sotaro (a573020692) - Bug 1262367: Baldr: Rename "trap" to "unreachable"; r=luke (2f9d10ade7) - Bug 1263884 - Don't report OOM when speculative shape table shrink fails r=jandem (cabd97f681) - Bug 1259877 - Update miscellaneous code to use js::Call instead of js::Invoke. r=till (a2f417c8a1) - Bug 1262402: Add i64 testing infrastructure in Baldr; r=luke (d9d82c0acb)
705 lines
19 KiB
C++
705 lines
19 KiB
C++
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
* vim: set ts=4 sw=4 et tw=80:
|
|
*
|
|
* 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/. */
|
|
|
|
#include "WrapperAnswer.h"
|
|
#include "JavaScriptLogging.h"
|
|
#include "mozilla/dom/ContentChild.h"
|
|
#include "mozilla/dom/BindingUtils.h"
|
|
#include "mozilla/dom/ScriptSettings.h"
|
|
#include "xpcprivate.h"
|
|
#include "js/Class.h"
|
|
#include "jsfriendapi.h"
|
|
|
|
using namespace JS;
|
|
using namespace mozilla;
|
|
using namespace mozilla::jsipc;
|
|
|
|
// Note - Using AutoJSAPI (rather than AutoEntryScript) for a trap means
|
|
// that we don't expect it to run script. For most of these traps that will only
|
|
// happen if the target is a scripted proxy, which is probably something that we
|
|
// don't want to support over CPOWs. When enough code is fixed up, the long-term
|
|
// plan is to have the JS engine throw if it encounters script when it isn't
|
|
// expecting it.
|
|
using mozilla::dom::AutoJSAPI;
|
|
using mozilla::dom::AutoEntryScript;
|
|
|
|
bool
|
|
WrapperAnswer::fail(AutoJSAPI& jsapi, ReturnStatus* rs)
|
|
{
|
|
// By default, we set |undefined| unless we can get a more meaningful
|
|
// exception.
|
|
*rs = ReturnStatus(ReturnException(JSVariant(UndefinedVariant())));
|
|
|
|
// Note we always return true from this function, since this propagates
|
|
// to the IPC code, and we don't want a JS failure to cause the death
|
|
// of the child process.
|
|
|
|
JSContext* cx = jsapi.cx();
|
|
RootedValue exn(cx);
|
|
if (!jsapi.HasException())
|
|
return true;
|
|
|
|
jsapi.StealException(&exn);
|
|
|
|
if (JS_IsStopIteration(exn)) {
|
|
*rs = ReturnStatus(ReturnStopIteration());
|
|
return true;
|
|
}
|
|
|
|
// If this fails, we still don't want to exit. Just return an invalid
|
|
// exception.
|
|
(void) toVariant(cx, exn, &rs->get_ReturnException().exn());
|
|
return true;
|
|
}
|
|
|
|
bool
|
|
WrapperAnswer::ok(ReturnStatus* rs)
|
|
{
|
|
*rs = ReturnStatus(ReturnSuccess());
|
|
return true;
|
|
}
|
|
|
|
bool
|
|
WrapperAnswer::ok(ReturnStatus* rs, const JS::ObjectOpResult& result)
|
|
{
|
|
*rs = result
|
|
? ReturnStatus(ReturnSuccess())
|
|
: ReturnStatus(ReturnObjectOpResult(result.failureCode()));
|
|
return true;
|
|
}
|
|
|
|
bool
|
|
WrapperAnswer::RecvPreventExtensions(const ObjectId& objId, ReturnStatus* rs)
|
|
{
|
|
AutoJSAPI jsapi;
|
|
if (NS_WARN_IF(!jsapi.Init(scopeForTargetObjects())))
|
|
return false;
|
|
JSContext* cx = jsapi.cx();
|
|
|
|
RootedObject obj(cx, findObjectById(cx, objId));
|
|
if (!obj)
|
|
return fail(jsapi, rs);
|
|
|
|
ObjectOpResult success;
|
|
if (!JS_PreventExtensions(cx, obj, success))
|
|
return fail(jsapi, rs);
|
|
|
|
LOG("%s.preventExtensions()", ReceiverObj(objId));
|
|
return ok(rs, success);
|
|
}
|
|
|
|
static void
|
|
EmptyDesc(PPropertyDescriptor* desc)
|
|
{
|
|
desc->obj() = LocalObject(0);
|
|
desc->attrs() = 0;
|
|
desc->value() = UndefinedVariant();
|
|
desc->getter() = 0;
|
|
desc->setter() = 0;
|
|
}
|
|
|
|
bool
|
|
WrapperAnswer::RecvGetPropertyDescriptor(const ObjectId& objId, const JSIDVariant& idVar,
|
|
ReturnStatus* rs, PPropertyDescriptor* out)
|
|
{
|
|
AutoJSAPI jsapi;
|
|
if (NS_WARN_IF(!jsapi.Init(scopeForTargetObjects())))
|
|
return false;
|
|
JSContext* cx = jsapi.cx();
|
|
EmptyDesc(out);
|
|
|
|
RootedObject obj(cx, findObjectById(cx, objId));
|
|
if (!obj)
|
|
return fail(jsapi, rs);
|
|
|
|
LOG("%s.getPropertyDescriptor(%s)", ReceiverObj(objId), Identifier(idVar));
|
|
|
|
RootedId id(cx);
|
|
if (!fromJSIDVariant(cx, idVar, &id))
|
|
return fail(jsapi, rs);
|
|
|
|
Rooted<PropertyDescriptor> desc(cx);
|
|
if (!JS_GetPropertyDescriptorById(cx, obj, id, &desc))
|
|
return fail(jsapi, rs);
|
|
|
|
if (!fromDescriptor(cx, desc, out))
|
|
return fail(jsapi, rs);
|
|
|
|
return ok(rs);
|
|
}
|
|
|
|
bool
|
|
WrapperAnswer::RecvGetOwnPropertyDescriptor(const ObjectId& objId, const JSIDVariant& idVar,
|
|
ReturnStatus* rs, PPropertyDescriptor* out)
|
|
{
|
|
AutoJSAPI jsapi;
|
|
if (NS_WARN_IF(!jsapi.Init(scopeForTargetObjects())))
|
|
return false;
|
|
JSContext* cx = jsapi.cx();
|
|
EmptyDesc(out);
|
|
|
|
RootedObject obj(cx, findObjectById(cx, objId));
|
|
if (!obj)
|
|
return fail(jsapi, rs);
|
|
|
|
LOG("%s.getOwnPropertyDescriptor(%s)", ReceiverObj(objId), Identifier(idVar));
|
|
|
|
RootedId id(cx);
|
|
if (!fromJSIDVariant(cx, idVar, &id))
|
|
return fail(jsapi, rs);
|
|
|
|
Rooted<PropertyDescriptor> desc(cx);
|
|
if (!JS_GetOwnPropertyDescriptorById(cx, obj, id, &desc))
|
|
return fail(jsapi, rs);
|
|
|
|
if (!fromDescriptor(cx, desc, out))
|
|
return fail(jsapi, rs);
|
|
|
|
return ok(rs);
|
|
}
|
|
|
|
bool
|
|
WrapperAnswer::RecvDefineProperty(const ObjectId& objId, const JSIDVariant& idVar,
|
|
const PPropertyDescriptor& descriptor, ReturnStatus* rs)
|
|
{
|
|
AutoJSAPI jsapi;
|
|
if (NS_WARN_IF(!jsapi.Init(scopeForTargetObjects())))
|
|
return false;
|
|
JSContext* cx = jsapi.cx();
|
|
|
|
RootedObject obj(cx, findObjectById(cx, objId));
|
|
if (!obj)
|
|
return fail(jsapi, rs);
|
|
|
|
LOG("define %s[%s]", ReceiverObj(objId), Identifier(idVar));
|
|
|
|
RootedId id(cx);
|
|
if (!fromJSIDVariant(cx, idVar, &id))
|
|
return fail(jsapi, rs);
|
|
|
|
Rooted<PropertyDescriptor> desc(cx);
|
|
if (!toDescriptor(cx, descriptor, &desc))
|
|
return fail(jsapi, rs);
|
|
|
|
ObjectOpResult success;
|
|
if (!JS_DefinePropertyById(cx, obj, id, desc, success))
|
|
return fail(jsapi, rs);
|
|
return ok(rs, success);
|
|
}
|
|
|
|
bool
|
|
WrapperAnswer::RecvDelete(const ObjectId& objId, const JSIDVariant& idVar, ReturnStatus* rs)
|
|
{
|
|
AutoJSAPI jsapi;
|
|
if (NS_WARN_IF(!jsapi.Init(scopeForTargetObjects())))
|
|
return false;
|
|
JSContext* cx = jsapi.cx();
|
|
|
|
RootedObject obj(cx, findObjectById(cx, objId));
|
|
if (!obj)
|
|
return fail(jsapi, rs);
|
|
|
|
LOG("delete %s[%s]", ReceiverObj(objId), Identifier(idVar));
|
|
|
|
RootedId id(cx);
|
|
if (!fromJSIDVariant(cx, idVar, &id))
|
|
return fail(jsapi, rs);
|
|
|
|
ObjectOpResult success;
|
|
if (!JS_DeletePropertyById(cx, obj, id, success))
|
|
return fail(jsapi, rs);
|
|
return ok(rs, success);
|
|
}
|
|
|
|
bool
|
|
WrapperAnswer::RecvHas(const ObjectId& objId, const JSIDVariant& idVar, ReturnStatus* rs,
|
|
bool* foundp)
|
|
{
|
|
AutoJSAPI jsapi;
|
|
if (NS_WARN_IF(!jsapi.Init(scopeForTargetObjects())))
|
|
return false;
|
|
JSContext* cx = jsapi.cx();
|
|
*foundp = false;
|
|
|
|
RootedObject obj(cx, findObjectById(cx, objId));
|
|
if (!obj)
|
|
return fail(jsapi, rs);
|
|
|
|
LOG("%s.has(%s)", ReceiverObj(objId), Identifier(idVar));
|
|
|
|
RootedId id(cx);
|
|
if (!fromJSIDVariant(cx, idVar, &id))
|
|
return fail(jsapi, rs);
|
|
|
|
if (!JS_HasPropertyById(cx, obj, id, foundp))
|
|
return fail(jsapi, rs);
|
|
return ok(rs);
|
|
}
|
|
|
|
bool
|
|
WrapperAnswer::RecvHasOwn(const ObjectId& objId, const JSIDVariant& idVar, ReturnStatus* rs,
|
|
bool* foundp)
|
|
{
|
|
AutoJSAPI jsapi;
|
|
if (NS_WARN_IF(!jsapi.Init(scopeForTargetObjects())))
|
|
return false;
|
|
JSContext* cx = jsapi.cx();
|
|
*foundp = false;
|
|
|
|
RootedObject obj(cx, findObjectById(cx, objId));
|
|
if (!obj)
|
|
return fail(jsapi, rs);
|
|
|
|
LOG("%s.hasOwn(%s)", ReceiverObj(objId), Identifier(idVar));
|
|
|
|
RootedId id(cx);
|
|
if (!fromJSIDVariant(cx, idVar, &id))
|
|
return fail(jsapi, rs);
|
|
|
|
if (!JS_HasOwnPropertyById(cx, obj, id, foundp))
|
|
return fail(jsapi, rs);
|
|
return ok(rs);
|
|
}
|
|
|
|
bool
|
|
WrapperAnswer::RecvGet(const ObjectId& objId, const JSVariant& receiverVar,
|
|
const JSIDVariant& idVar, ReturnStatus* rs, JSVariant* result)
|
|
{
|
|
// We may run scripted getters.
|
|
AutoEntryScript aes(scopeForTargetObjects(),
|
|
"Cross-Process Object Wrapper 'get'");
|
|
JSContext* cx = aes.cx();
|
|
|
|
// The outparam will be written to the buffer, so it must be set even if
|
|
// the parent won't read it.
|
|
*result = UndefinedVariant();
|
|
|
|
RootedObject obj(cx, findObjectById(cx, objId));
|
|
if (!obj)
|
|
return fail(aes, rs);
|
|
|
|
RootedValue receiver(cx);
|
|
if (!fromVariant(cx, receiverVar, &receiver))
|
|
return fail(aes, rs);
|
|
|
|
RootedId id(cx);
|
|
if (!fromJSIDVariant(cx, idVar, &id))
|
|
return fail(aes, rs);
|
|
|
|
JS::RootedValue val(cx);
|
|
if (!JS_ForwardGetPropertyTo(cx, obj, id, receiver, &val))
|
|
return fail(aes, rs);
|
|
|
|
if (!toVariant(cx, val, result))
|
|
return fail(aes, rs);
|
|
|
|
LOG("get %s.%s = %s", ReceiverObj(objId), Identifier(idVar), OutVariant(*result));
|
|
|
|
return ok(rs);
|
|
}
|
|
|
|
bool
|
|
WrapperAnswer::RecvSet(const ObjectId& objId, const JSIDVariant& idVar, const JSVariant& value,
|
|
const JSVariant& receiverVar, ReturnStatus* rs)
|
|
{
|
|
// We may run scripted setters.
|
|
AutoEntryScript aes(scopeForTargetObjects(),
|
|
"Cross-Process Object Wrapper 'set'");
|
|
JSContext* cx = aes.cx();
|
|
|
|
RootedObject obj(cx, findObjectById(cx, objId));
|
|
if (!obj)
|
|
return fail(aes, rs);
|
|
|
|
LOG("set %s[%s] = %s", ReceiverObj(objId), Identifier(idVar), InVariant(value));
|
|
|
|
RootedId id(cx);
|
|
if (!fromJSIDVariant(cx, idVar, &id))
|
|
return fail(aes, rs);
|
|
|
|
RootedValue val(cx);
|
|
if (!fromVariant(cx, value, &val))
|
|
return fail(aes, rs);
|
|
|
|
RootedValue receiver(cx);
|
|
if (!fromVariant(cx, receiverVar, &receiver))
|
|
return fail(aes, rs);
|
|
|
|
ObjectOpResult result;
|
|
if (!JS_ForwardSetPropertyTo(cx, obj, id, val, receiver, result))
|
|
return fail(aes, rs);
|
|
|
|
return ok(rs, result);
|
|
}
|
|
|
|
bool
|
|
WrapperAnswer::RecvIsExtensible(const ObjectId& objId, ReturnStatus* rs, bool* result)
|
|
{
|
|
AutoJSAPI jsapi;
|
|
if (NS_WARN_IF(!jsapi.Init(scopeForTargetObjects())))
|
|
return false;
|
|
JSContext* cx = jsapi.cx();
|
|
*result = false;
|
|
|
|
RootedObject obj(cx, findObjectById(cx, objId));
|
|
if (!obj)
|
|
return fail(jsapi, rs);
|
|
|
|
LOG("%s.isExtensible()", ReceiverObj(objId));
|
|
|
|
bool extensible;
|
|
if (!JS_IsExtensible(cx, obj, &extensible))
|
|
return fail(jsapi, rs);
|
|
|
|
*result = !!extensible;
|
|
return ok(rs);
|
|
}
|
|
|
|
bool
|
|
WrapperAnswer::RecvCallOrConstruct(const ObjectId& objId,
|
|
InfallibleTArray<JSParam>&& argv,
|
|
const bool& construct,
|
|
ReturnStatus* rs,
|
|
JSVariant* result,
|
|
nsTArray<JSParam>* outparams)
|
|
{
|
|
AutoEntryScript aes(scopeForTargetObjects(),
|
|
"Cross-Process Object Wrapper call/construct");
|
|
JSContext* cx = aes.cx();
|
|
|
|
// The outparam will be written to the buffer, so it must be set even if
|
|
// the parent won't read it.
|
|
*result = UndefinedVariant();
|
|
|
|
RootedObject obj(cx, findObjectById(cx, objId));
|
|
if (!obj)
|
|
return fail(aes, rs);
|
|
|
|
MOZ_ASSERT(argv.Length() >= 2);
|
|
|
|
RootedValue objv(cx);
|
|
if (!fromVariant(cx, argv[0], &objv))
|
|
return fail(aes, rs);
|
|
|
|
*result = JSVariant(UndefinedVariant());
|
|
|
|
AutoValueVector vals(cx);
|
|
AutoValueVector outobjects(cx);
|
|
for (size_t i = 0; i < argv.Length(); i++) {
|
|
if (argv[i].type() == JSParam::Tvoid_t) {
|
|
// This is an outparam.
|
|
RootedObject obj(cx, xpc::NewOutObject(cx));
|
|
if (!obj)
|
|
return fail(aes, rs);
|
|
if (!outobjects.append(ObjectValue(*obj)))
|
|
return fail(aes, rs);
|
|
if (!vals.append(ObjectValue(*obj)))
|
|
return fail(aes, rs);
|
|
} else {
|
|
RootedValue v(cx);
|
|
if (!fromVariant(cx, argv[i].get_JSVariant(), &v))
|
|
return fail(aes, rs);
|
|
if (!vals.append(v))
|
|
return fail(aes, rs);
|
|
}
|
|
}
|
|
|
|
RootedValue rval(cx);
|
|
{
|
|
AutoSaveContextOptions asco(cx);
|
|
ContextOptionsRef(cx).setDontReportUncaught(true);
|
|
|
|
HandleValueArray args = HandleValueArray::subarray(vals, 2, vals.length() - 2);
|
|
if (construct) {
|
|
RootedObject obj(cx);
|
|
if (!JS::Construct(cx, vals[0], args, &obj))
|
|
return fail(aes, rs);
|
|
rval.setObject(*obj);
|
|
} else {
|
|
if(!JS::Call(cx, vals[1], vals[0], args, &rval))
|
|
return fail(aes, rs);
|
|
}
|
|
}
|
|
|
|
if (!toVariant(cx, rval, result))
|
|
return fail(aes, rs);
|
|
|
|
// Prefill everything with a dummy jsval.
|
|
for (size_t i = 0; i < outobjects.length(); i++)
|
|
outparams->AppendElement(JSParam(void_t()));
|
|
|
|
// Go through each argument that was an outparam, retrieve the "value"
|
|
// field, and add it to a temporary list. We need to do this separately
|
|
// because the outparams vector is not rooted.
|
|
vals.clear();
|
|
for (size_t i = 0; i < outobjects.length(); i++) {
|
|
RootedObject obj(cx, &outobjects[i].toObject());
|
|
|
|
RootedValue v(cx);
|
|
bool found;
|
|
if (JS_HasProperty(cx, obj, "value", &found)) {
|
|
if (!JS_GetProperty(cx, obj, "value", &v))
|
|
return fail(aes, rs);
|
|
} else {
|
|
v = UndefinedValue();
|
|
}
|
|
if (!vals.append(v))
|
|
return fail(aes, rs);
|
|
}
|
|
|
|
// Copy the outparams. If any outparam is already set to a void_t, we
|
|
// treat this as the outparam never having been set.
|
|
for (size_t i = 0; i < vals.length(); i++) {
|
|
JSVariant variant;
|
|
if (!toVariant(cx, vals[i], &variant))
|
|
return fail(aes, rs);
|
|
outparams->ReplaceElementAt(i, JSParam(variant));
|
|
}
|
|
|
|
LOG("%s.call(%s) = %s", ReceiverObj(objId), argv, OutVariant(*result));
|
|
|
|
return ok(rs);
|
|
}
|
|
|
|
bool
|
|
WrapperAnswer::RecvHasInstance(const ObjectId& objId, const JSVariant& vVar, ReturnStatus* rs, bool* bp)
|
|
{
|
|
AutoJSAPI jsapi;
|
|
if (NS_WARN_IF(!jsapi.Init(scopeForTargetObjects())))
|
|
return false;
|
|
JSContext* cx = jsapi.cx();
|
|
|
|
RootedObject obj(cx, findObjectById(cx, objId));
|
|
if (!obj)
|
|
return fail(jsapi, rs);
|
|
|
|
LOG("%s.hasInstance(%s)", ReceiverObj(objId), InVariant(vVar));
|
|
|
|
RootedValue val(cx);
|
|
if (!fromVariant(cx, vVar, &val))
|
|
return fail(jsapi, rs);
|
|
|
|
if (!JS_HasInstance(cx, obj, val, bp))
|
|
return fail(jsapi, rs);
|
|
|
|
return ok(rs);
|
|
}
|
|
|
|
bool
|
|
WrapperAnswer::RecvGetBuiltinClass(const ObjectId& objId, ReturnStatus* rs,
|
|
uint32_t* classValue)
|
|
{
|
|
*classValue = js::ESClass_Other;
|
|
|
|
AutoJSAPI jsapi;
|
|
if (NS_WARN_IF(!jsapi.Init(scopeForTargetObjects())))
|
|
return false;
|
|
JSContext* cx = jsapi.cx();
|
|
|
|
RootedObject obj(cx, findObjectById(cx, objId));
|
|
if (!obj)
|
|
return fail(jsapi, rs);
|
|
|
|
LOG("%s.getBuiltinClass()", ReceiverObj(objId));
|
|
|
|
js::ESClassValue cls;
|
|
if (!js::GetBuiltinClass(cx, obj, &cls))
|
|
return fail(jsapi, rs);
|
|
|
|
*classValue = cls;
|
|
return ok(rs);
|
|
}
|
|
|
|
bool
|
|
WrapperAnswer::RecvIsArray(const ObjectId& objId, ReturnStatus* rs,
|
|
uint32_t* ans)
|
|
{
|
|
*ans = uint32_t(IsArrayAnswer::NotArray);
|
|
|
|
AutoJSAPI jsapi;
|
|
if (NS_WARN_IF(!jsapi.Init(scopeForTargetObjects())))
|
|
return false;
|
|
JSContext* cx = jsapi.cx();
|
|
|
|
RootedObject obj(cx, findObjectById(cx, objId));
|
|
if (!obj)
|
|
return fail(jsapi, rs);
|
|
|
|
LOG("%s.isArray()", ReceiverObj(objId));
|
|
|
|
IsArrayAnswer answer;
|
|
if (!JS::IsArray(cx, obj, &answer))
|
|
return fail(jsapi, rs);
|
|
|
|
*ans = uint32_t(answer);
|
|
return ok(rs);
|
|
}
|
|
|
|
bool
|
|
WrapperAnswer::RecvClassName(const ObjectId& objId, nsCString* name)
|
|
{
|
|
AutoJSAPI jsapi;
|
|
if (NS_WARN_IF(!jsapi.Init(scopeForTargetObjects())))
|
|
return false;
|
|
JSContext* cx = jsapi.cx();
|
|
|
|
RootedObject obj(cx, findObjectById(cx, objId));
|
|
if (!obj) {
|
|
// This is very unfortunate, but we have no choice.
|
|
return "<dead CPOW>";
|
|
}
|
|
|
|
LOG("%s.className()", ReceiverObj(objId));
|
|
|
|
*name = js::ObjectClassName(cx, obj);
|
|
return true;
|
|
}
|
|
|
|
bool
|
|
WrapperAnswer::RecvGetPrototype(const ObjectId& objId, ReturnStatus* rs, ObjectOrNullVariant* result)
|
|
{
|
|
*result = NullVariant();
|
|
|
|
AutoJSAPI jsapi;
|
|
if (NS_WARN_IF(!jsapi.Init(scopeForTargetObjects())))
|
|
return false;
|
|
JSContext* cx = jsapi.cx();
|
|
|
|
RootedObject obj(cx, findObjectById(cx, objId));
|
|
if (!obj)
|
|
return fail(jsapi, rs);
|
|
|
|
JS::RootedObject proto(cx);
|
|
if (!JS_GetPrototype(cx, obj, &proto))
|
|
return fail(jsapi, rs);
|
|
|
|
if (!toObjectOrNullVariant(cx, proto, result))
|
|
return fail(jsapi, rs);
|
|
|
|
LOG("getPrototype(%s)", ReceiverObj(objId));
|
|
|
|
return ok(rs);
|
|
}
|
|
|
|
bool
|
|
WrapperAnswer::RecvRegExpToShared(const ObjectId& objId, ReturnStatus* rs,
|
|
nsString* source, uint32_t* flags)
|
|
{
|
|
AutoJSAPI jsapi;
|
|
if (NS_WARN_IF(!jsapi.Init(scopeForTargetObjects())))
|
|
return false;
|
|
JSContext* cx = jsapi.cx();
|
|
|
|
RootedObject obj(cx, findObjectById(cx, objId));
|
|
if (!obj)
|
|
return fail(jsapi, rs);
|
|
|
|
RootedString sourceJSStr(cx, JS_GetRegExpSource(cx, obj));
|
|
if (!sourceJSStr)
|
|
return fail(jsapi, rs);
|
|
nsAutoJSString sourceStr;
|
|
if (!sourceStr.init(cx, sourceJSStr))
|
|
return fail(jsapi, rs);
|
|
source->Assign(sourceStr);
|
|
|
|
*flags = JS_GetRegExpFlags(cx, obj);
|
|
|
|
return ok(rs);
|
|
}
|
|
|
|
bool
|
|
WrapperAnswer::RecvGetPropertyKeys(const ObjectId& objId, const uint32_t& flags,
|
|
ReturnStatus* rs, nsTArray<JSIDVariant>* ids)
|
|
{
|
|
AutoJSAPI jsapi;
|
|
if (NS_WARN_IF(!jsapi.Init(scopeForTargetObjects())))
|
|
return false;
|
|
JSContext* cx = jsapi.cx();
|
|
|
|
RootedObject obj(cx, findObjectById(cx, objId));
|
|
if (!obj)
|
|
return fail(jsapi, rs);
|
|
|
|
LOG("%s.getPropertyKeys()", ReceiverObj(objId));
|
|
|
|
AutoIdVector props(cx);
|
|
if (!js::GetPropertyKeys(cx, obj, flags, &props))
|
|
return fail(jsapi, rs);
|
|
|
|
for (size_t i = 0; i < props.length(); i++) {
|
|
JSIDVariant id;
|
|
if (!toJSIDVariant(cx, props[i], &id))
|
|
return fail(jsapi, rs);
|
|
|
|
ids->AppendElement(id);
|
|
}
|
|
|
|
return ok(rs);
|
|
}
|
|
|
|
bool
|
|
WrapperAnswer::RecvInstanceOf(const ObjectId& objId, const JSIID& iid, ReturnStatus* rs,
|
|
bool* instanceof)
|
|
{
|
|
AutoJSAPI jsapi;
|
|
if (NS_WARN_IF(!jsapi.Init(scopeForTargetObjects())))
|
|
return false;
|
|
JSContext* cx = jsapi.cx();
|
|
|
|
*instanceof = false;
|
|
|
|
RootedObject obj(cx, findObjectById(cx, objId));
|
|
if (!obj)
|
|
return fail(jsapi, rs);
|
|
|
|
LOG("%s.instanceOf()", ReceiverObj(objId));
|
|
|
|
nsID nsiid;
|
|
ConvertID(iid, &nsiid);
|
|
|
|
nsresult rv = xpc::HasInstance(cx, obj, &nsiid, instanceof);
|
|
if (rv != NS_OK)
|
|
return fail(jsapi, rs);
|
|
|
|
return ok(rs);
|
|
}
|
|
|
|
bool
|
|
WrapperAnswer::RecvDOMInstanceOf(const ObjectId& objId, const int& prototypeID,
|
|
const int& depth, ReturnStatus* rs, bool* instanceof)
|
|
{
|
|
AutoJSAPI jsapi;
|
|
if (NS_WARN_IF(!jsapi.Init(scopeForTargetObjects())))
|
|
return false;
|
|
JSContext* cx = jsapi.cx();
|
|
*instanceof = false;
|
|
|
|
RootedObject obj(cx, findObjectById(cx, objId));
|
|
if (!obj)
|
|
return fail(jsapi, rs);
|
|
|
|
LOG("%s.domInstanceOf()", ReceiverObj(objId));
|
|
|
|
bool tmp;
|
|
if (!mozilla::dom::InterfaceHasInstance(cx, prototypeID, depth, obj, &tmp))
|
|
return fail(jsapi, rs);
|
|
*instanceof = tmp;
|
|
|
|
return ok(rs);
|
|
}
|
|
|
|
bool
|
|
WrapperAnswer::RecvDropObject(const ObjectId& objId)
|
|
{
|
|
JSObject* obj = objects_.find(objId);
|
|
if (obj) {
|
|
objectIdMap(objId.hasXrayWaiver()).remove(obj);
|
|
objects_.remove(objId);
|
|
}
|
|
return true;
|
|
}
|