1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141
|
/* -*- 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 "ContentProcessManager.h"
#include "ContentParent.h"
#include "mozilla/AppShutdown.h"
#include "mozilla/ClearOnShutdown.h"
#include "mozilla/StaticPtr.h"
#include "mozilla/dom/BrowserParent.h"
#include "mozilla/dom/BrowsingContextGroup.h"
#include "mozilla/dom/CanonicalBrowsingContext.h"
#include "nsPrintfCString.h"
namespace mozilla::dom {
/* static */
StaticAutoPtr<ContentProcessManager> ContentProcessManager::sSingleton;
/* static */
ContentProcessManager* ContentProcessManager::GetSingleton() {
MOZ_ASSERT(XRE_IsParentProcess());
if (!sSingleton &&
!AppShutdown::IsInOrBeyond(ShutdownPhase::XPCOMShutdownFinal)) {
sSingleton = new ContentProcessManager();
ClearOnShutdown(&sSingleton);
}
return sSingleton;
}
void ContentProcessManager::AddContentProcess(ContentParent* aChildCp) {
MOZ_ASSERT(NS_IsMainThread());
MOZ_ASSERT(aChildCp);
mContentParentMap.WithEntryHandle(aChildCp->ChildID(), [&](auto&& entry) {
MOZ_ASSERT_IF(entry, entry.Data() == aChildCp);
entry.OrInsert(aChildCp);
});
}
void ContentProcessManager::RemoveContentProcess(
const ContentParentId& aChildCpId) {
MOZ_ASSERT(NS_IsMainThread());
MOZ_ALWAYS_TRUE(mContentParentMap.Remove(aChildCpId));
}
ContentParent* ContentProcessManager::GetContentProcessById(
const ContentParentId& aChildCpId) {
MOZ_ASSERT(NS_IsMainThread());
ContentParent* contentParent = mContentParentMap.Get(aChildCpId);
if (NS_WARN_IF(!contentParent)) {
return nullptr;
}
return contentParent;
}
bool ContentProcessManager::RegisterRemoteFrame(BrowserParent* aChildBp) {
MOZ_ASSERT(NS_IsMainThread());
MOZ_ASSERT(aChildBp);
return mBrowserParentMap.WithEntryHandle(
aChildBp->GetTabId(), [&](auto&& entry) {
if (entry) {
MOZ_ASSERT(entry.Data() == aChildBp);
return false;
}
// Ensure that this BrowserParent's BrowsingContextGroup is kept alive
// until the BrowserParent has been unregistered, ensuring the group
// isn't destroyed while this BrowserParent can still send messages.
aChildBp->GetBrowsingContext()->Group()->AddKeepAlive();
entry.Insert(aChildBp);
return true;
});
}
void ContentProcessManager::UnregisterRemoteFrame(const TabId& aChildTabId) {
MOZ_ASSERT(NS_IsMainThread());
auto childBp = mBrowserParentMap.Extract(aChildTabId);
MOZ_DIAGNOSTIC_ASSERT(childBp);
// Clear the corresponding keepalive which was added in `RegisterRemoteFrame`.
(*childBp)->GetBrowsingContext()->Group()->RemoveKeepAlive();
}
ContentParentId ContentProcessManager::GetTabProcessId(
const TabId& aChildTabId) {
MOZ_ASSERT(NS_IsMainThread());
if (BrowserParent* browserParent = mBrowserParentMap.Get(aChildTabId)) {
return browserParent->Manager()->ChildID();
}
return ContentParentId(0);
}
uint32_t ContentProcessManager::GetBrowserParentCountByProcessId(
const ContentParentId& aChildCpId) {
MOZ_ASSERT(NS_IsMainThread());
ContentParent* contentParent = mContentParentMap.Get(aChildCpId);
if (NS_WARN_IF(!contentParent)) {
return 0;
}
return contentParent->ManagedPBrowserParent().Count();
}
already_AddRefed<BrowserParent>
ContentProcessManager::GetBrowserParentByProcessAndTabId(
const ContentParentId& aChildCpId, const TabId& aChildTabId) {
RefPtr<BrowserParent> browserParent = mBrowserParentMap.Get(aChildTabId);
if (NS_WARN_IF(!browserParent)) {
return nullptr;
}
if (NS_WARN_IF(browserParent->Manager()->ChildID() != aChildCpId)) {
return nullptr;
}
return browserParent.forget();
}
already_AddRefed<BrowserParent>
ContentProcessManager::GetTopLevelBrowserParentByProcessAndTabId(
const ContentParentId& aChildCpId, const TabId& aChildTabId) {
RefPtr<BrowserParent> browserParent =
GetBrowserParentByProcessAndTabId(aChildCpId, aChildTabId);
while (browserParent && browserParent->GetBrowserBridgeParent()) {
browserParent = browserParent->GetBrowserBridgeParent()->Manager();
}
return browserParent.forget();
}
} // namespace mozilla::dom
|