/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ /* vim: set ts=8 sts=2 et sw=2 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 "ProcessGlobal.h" #include "nsContentCID.h" #include "mozilla/dom/MessageManagerBinding.h" #include "mozilla/dom/ResolveSystemBinding.h" using namespace mozilla; using namespace mozilla::dom; bool ProcessGlobal::sWasCreated = false; ProcessGlobal::ProcessGlobal(nsFrameMessageManager* aMessageManager) : MessageManagerGlobal(aMessageManager), mInitialized(false) { mozilla::HoldJSObjects(this); } ProcessGlobal::~ProcessGlobal() { mAnonymousGlobalScopes.Clear(); mozilla::DropJSObjects(this); } bool ProcessGlobal::DoResolve(JSContext* aCx, JS::Handle aObj, JS::Handle aId, JS::MutableHandle aDesc) { bool found; if (!SystemGlobalResolve(aCx, aObj, aId, &found)) { return false; } if (found) { FillPropertyDescriptor(aDesc, aObj, JS::UndefinedValue(), false); } return true; } /* static */ bool ProcessGlobal::MayResolve(jsid aId) { return MayResolveAsSystemBindingName(aId); } void ProcessGlobal::GetOwnPropertyNames(JSContext* aCx, JS::AutoIdVector& aNames, bool aEnumerableOnly, ErrorResult& aRv) { JS::Rooted thisObj(aCx, GetWrapper()); GetSystemBindingNames(aCx, thisObj, aNames, aEnumerableOnly, aRv); } ProcessGlobal* ProcessGlobal::Get() { nsCOMPtr service = do_GetService(NS_CHILDPROCESSMESSAGEMANAGER_CONTRACTID); if (!service) { return nullptr; } ProcessGlobal* global = static_cast(service.get()); if (global) { sWasCreated = true; } return global; } bool ProcessGlobal::WasCreated() { return sWasCreated; } void ProcessGlobal::MarkForCC() { MarkScopesForCC(); MessageManagerGlobal::MarkForCC(); } NS_IMPL_CYCLE_COLLECTION_CLASS(ProcessGlobal) NS_IMPL_CYCLE_COLLECTION_TRAVERSE_BEGIN(ProcessGlobal) NS_IMPL_CYCLE_COLLECTION_TRAVERSE(mMessageManager) tmp->TraverseHostObjectURIs(cb); NS_IMPL_CYCLE_COLLECTION_TRAVERSE_END NS_IMPL_CYCLE_COLLECTION_TRACE_BEGIN(ProcessGlobal) NS_IMPL_CYCLE_COLLECTION_TRACE_PRESERVED_WRAPPER tmp->nsMessageManagerScriptExecutor::Trace(aCallbacks, aClosure); NS_IMPL_CYCLE_COLLECTION_TRACE_END NS_IMPL_CYCLE_COLLECTION_UNLINK_BEGIN(ProcessGlobal) NS_IMPL_CYCLE_COLLECTION_UNLINK_PRESERVED_WRAPPER NS_IMPL_CYCLE_COLLECTION_UNLINK(mMessageManager) tmp->nsMessageManagerScriptExecutor::Unlink(); tmp->UnlinkHostObjectURIs(); NS_IMPL_CYCLE_COLLECTION_UNLINK_END NS_INTERFACE_MAP_BEGIN_CYCLE_COLLECTION(ProcessGlobal) NS_WRAPPERCACHE_INTERFACE_MAP_ENTRY NS_INTERFACE_MAP_ENTRY_AMBIGUOUS(nsISupports, nsIMessageSender) NS_INTERFACE_MAP_ENTRY(nsIMessageSender) NS_INTERFACE_MAP_ENTRY(nsIScriptObjectPrincipal) NS_INTERFACE_MAP_ENTRY(nsIGlobalObject) NS_INTERFACE_MAP_ENTRY(nsISupportsWeakReference) NS_INTERFACE_MAP_END NS_IMPL_CYCLE_COLLECTING_ADDREF(ProcessGlobal) NS_IMPL_CYCLE_COLLECTING_RELEASE(ProcessGlobal) bool ProcessGlobal::Init() { if (mInitialized) { return true; } mInitialized = true; return InitChildGlobalInternal(NS_LITERAL_CSTRING("processChildGlobal")); } bool ProcessGlobal::WrapGlobalObject(JSContext* aCx, JS::RealmOptions& aOptions, JS::MutableHandle aReflector) { bool ok = ContentProcessMessageManager_Binding::Wrap(aCx, this, this, aOptions, nsJSPrincipals::get(mPrincipal), true, aReflector); if (ok) { // Since we can't rewrap we have to preserve the global's wrapper here. PreserveWrapper(ToSupports(this)); } return ok; } void ProcessGlobal::LoadScript(const nsAString& aURL) { Init(); JS::Rooted global(mozilla::dom::RootingCx(), GetWrapper()); LoadScriptInternal(global, aURL, false); } void ProcessGlobal::SetInitialProcessData(JS::HandleValue aInitialData) { mMessageManager->SetInitialProcessData(aInitialData); }