2016-07-18 07:24:28 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2016-05-23 10:27:01 +03:00
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=99: */
|
|
|
|
/* 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 "GPUProcessManager.h"
|
2016-06-11 05:27:24 +03:00
|
|
|
#include "GPUProcessHost.h"
|
2016-09-20 11:18:50 +03:00
|
|
|
#include "GPUProcessListener.h"
|
2016-07-18 07:24:28 +03:00
|
|
|
#include "mozilla/StaticPtr.h"
|
2016-08-16 23:59:13 +03:00
|
|
|
#include "mozilla/dom/ContentParent.h"
|
|
|
|
#include "mozilla/layers/APZCTreeManager.h"
|
2016-08-29 16:18:00 +03:00
|
|
|
#include "mozilla/layers/APZCTreeManagerChild.h"
|
2016-07-18 07:24:28 +03:00
|
|
|
#include "mozilla/layers/CompositorBridgeParent.h"
|
2016-07-20 10:17:28 +03:00
|
|
|
#include "mozilla/layers/ImageBridgeChild.h"
|
2016-07-20 10:18:30 +03:00
|
|
|
#include "mozilla/layers/ImageBridgeParent.h"
|
2016-07-18 07:24:28 +03:00
|
|
|
#include "mozilla/layers/InProcessCompositorSession.h"
|
2016-08-16 23:59:13 +03:00
|
|
|
#include "mozilla/layers/LayerTreeOwnerTracker.h"
|
2016-07-18 07:24:28 +03:00
|
|
|
#include "mozilla/layers/RemoteCompositorSession.h"
|
|
|
|
#include "mozilla/widget/PlatformWidgetTypes.h"
|
|
|
|
#ifdef MOZ_WIDGET_SUPPORTS_OOP_COMPOSITING
|
|
|
|
# include "mozilla/widget/CompositorWidgetChild.h"
|
|
|
|
#endif
|
2016-07-19 21:56:07 +03:00
|
|
|
#include "nsBaseWidget.h"
|
2016-06-11 05:27:24 +03:00
|
|
|
#include "nsContentUtils.h"
|
2016-07-21 10:14:59 +03:00
|
|
|
#include "VRManagerChild.h"
|
2016-07-21 10:14:59 +03:00
|
|
|
#include "VRManagerParent.h"
|
2016-07-19 21:56:06 +03:00
|
|
|
#include "VsyncBridgeChild.h"
|
|
|
|
#include "VsyncIOThreadHolder.h"
|
2016-07-26 11:57:11 +03:00
|
|
|
#include "VsyncSource.h"
|
2016-09-21 12:25:33 +03:00
|
|
|
#include "mozilla/dom/VideoDecoderManagerChild.h"
|
|
|
|
#include "mozilla/dom/VideoDecoderManagerParent.h"
|
2016-05-23 10:27:01 +03:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace gfx {
|
|
|
|
|
|
|
|
using namespace mozilla::layers;
|
|
|
|
|
|
|
|
static StaticAutoPtr<GPUProcessManager> sSingleton;
|
|
|
|
|
|
|
|
GPUProcessManager*
|
|
|
|
GPUProcessManager::Get()
|
|
|
|
{
|
|
|
|
return sSingleton;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
GPUProcessManager::Initialize()
|
|
|
|
{
|
2016-06-27 09:33:20 +03:00
|
|
|
MOZ_ASSERT(XRE_IsParentProcess());
|
2016-05-23 10:27:01 +03:00
|
|
|
sSingleton = new GPUProcessManager();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
GPUProcessManager::Shutdown()
|
|
|
|
{
|
|
|
|
sSingleton = nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
GPUProcessManager::GPUProcessManager()
|
2016-07-18 07:24:28 +03:00
|
|
|
: mTaskFactory(this),
|
|
|
|
mNextLayerTreeId(0),
|
2016-07-18 07:24:27 +03:00
|
|
|
mProcess(nullptr),
|
2016-09-28 23:23:48 +03:00
|
|
|
mGPUChild(nullptr),
|
|
|
|
mNumProcessAttempts(0)
|
2016-05-23 10:27:01 +03:00
|
|
|
{
|
2016-06-11 05:27:24 +03:00
|
|
|
mObserver = new Observer(this);
|
|
|
|
nsContentUtils::RegisterShutdownObserver(mObserver);
|
2016-08-16 23:59:13 +03:00
|
|
|
|
|
|
|
LayerTreeOwnerTracker::Initialize();
|
2016-05-23 10:27:01 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
GPUProcessManager::~GPUProcessManager()
|
|
|
|
{
|
2016-08-16 23:59:13 +03:00
|
|
|
LayerTreeOwnerTracker::Shutdown();
|
|
|
|
|
2016-06-11 05:27:24 +03:00
|
|
|
// The GPU process should have already been shut down.
|
|
|
|
MOZ_ASSERT(!mProcess && !mGPUChild);
|
|
|
|
|
|
|
|
// We should have already removed observers.
|
|
|
|
MOZ_ASSERT(!mObserver);
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMPL_ISUPPORTS(GPUProcessManager::Observer, nsIObserver);
|
|
|
|
|
|
|
|
GPUProcessManager::Observer::Observer(GPUProcessManager* aManager)
|
|
|
|
: mManager(aManager)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
GPUProcessManager::Observer::Observe(nsISupports* aSubject, const char* aTopic, const char16_t* aData)
|
|
|
|
{
|
|
|
|
if (!strcmp(aTopic, NS_XPCOM_SHUTDOWN_OBSERVER_ID)) {
|
|
|
|
mManager->OnXPCOMShutdown();
|
|
|
|
}
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
GPUProcessManager::OnXPCOMShutdown()
|
|
|
|
{
|
|
|
|
if (mObserver) {
|
|
|
|
nsContentUtils::UnregisterShutdownObserver(mObserver);
|
|
|
|
mObserver = nullptr;
|
|
|
|
}
|
|
|
|
|
2016-07-19 21:56:06 +03:00
|
|
|
CleanShutdown();
|
2016-06-11 05:27:24 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2016-09-28 23:23:48 +03:00
|
|
|
GPUProcessManager::LaunchGPUProcess()
|
2016-06-11 05:27:24 +03:00
|
|
|
{
|
|
|
|
if (mProcess) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-07-19 21:56:06 +03:00
|
|
|
// Start the Vsync I/O thread so can use it as soon as the process launches.
|
|
|
|
EnsureVsyncIOThread();
|
|
|
|
|
2016-09-28 23:23:48 +03:00
|
|
|
mNumProcessAttempts++;
|
|
|
|
|
2016-06-11 05:27:24 +03:00
|
|
|
// The subprocess is launched asynchronously, so we wait for a callback to
|
|
|
|
// acquire the IPDL actor.
|
|
|
|
mProcess = new GPUProcessHost(this);
|
|
|
|
if (!mProcess->Launch()) {
|
|
|
|
DisableGPUProcess("Failed to launch GPU process");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
GPUProcessManager::DisableGPUProcess(const char* aMessage)
|
|
|
|
{
|
2016-09-28 23:23:48 +03:00
|
|
|
if (!gfxConfig::IsEnabled(Feature::GPU_PROCESS)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-06-11 05:27:24 +03:00
|
|
|
gfxConfig::SetFailed(Feature::GPU_PROCESS, FeatureStatus::Failed, aMessage);
|
|
|
|
gfxCriticalNote << aMessage;
|
|
|
|
|
|
|
|
DestroyProcess();
|
2016-07-19 21:56:06 +03:00
|
|
|
ShutdownVsyncIOThread();
|
2016-06-11 05:27:24 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
GPUProcessManager::EnsureGPUReady()
|
|
|
|
{
|
|
|
|
if (mProcess && mProcess->IsConnected()) {
|
|
|
|
if (!mProcess->WaitForLaunch()) {
|
|
|
|
// If this fails, we should have fired OnProcessLaunchComplete and
|
|
|
|
// removed the process.
|
|
|
|
MOZ_ASSERT(!mProcess && !mGPUChild);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2016-08-21 06:59:11 +03:00
|
|
|
|
|
|
|
if (mGPUChild) {
|
|
|
|
mGPUChild->EnsureGPUReady();
|
|
|
|
}
|
2016-06-11 05:27:24 +03:00
|
|
|
}
|
|
|
|
|
2016-07-20 10:17:28 +03:00
|
|
|
void
|
|
|
|
GPUProcessManager::EnsureImageBridgeChild()
|
|
|
|
{
|
2016-09-14 02:30:57 +03:00
|
|
|
if (ImageBridgeChild::GetSingleton()) {
|
2016-07-20 10:19:27 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-08-21 06:59:11 +03:00
|
|
|
EnsureGPUReady();
|
|
|
|
|
2016-07-20 10:19:27 +03:00
|
|
|
if (!mGPUChild) {
|
2016-07-20 10:17:28 +03:00
|
|
|
ImageBridgeChild::InitSameProcess();
|
2016-07-20 10:19:27 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
ipc::Endpoint<PImageBridgeParent> parentPipe;
|
|
|
|
ipc::Endpoint<PImageBridgeChild> childPipe;
|
|
|
|
nsresult rv = PImageBridge::CreateEndpoints(
|
|
|
|
mGPUChild->OtherPid(),
|
|
|
|
base::GetCurrentProcId(),
|
|
|
|
&parentPipe,
|
|
|
|
&childPipe);
|
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
DisableGPUProcess("Failed to create PImageBridge endpoints");
|
|
|
|
return;
|
2016-07-20 10:17:28 +03:00
|
|
|
}
|
2016-07-20 10:19:27 +03:00
|
|
|
|
|
|
|
mGPUChild->SendInitImageBridge(Move(parentPipe));
|
|
|
|
ImageBridgeChild::InitWithGPUProcess(Move(childPipe));
|
2016-07-20 10:17:28 +03:00
|
|
|
}
|
|
|
|
|
2016-07-21 10:14:59 +03:00
|
|
|
void
|
|
|
|
GPUProcessManager::EnsureVRManager()
|
|
|
|
{
|
|
|
|
if (VRManagerChild::IsCreated()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-08-21 06:59:11 +03:00
|
|
|
EnsureGPUReady();
|
|
|
|
|
2016-07-21 10:14:59 +03:00
|
|
|
if (!mGPUChild) {
|
|
|
|
VRManagerChild::InitSameProcess();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
ipc::Endpoint<PVRManagerParent> parentPipe;
|
|
|
|
ipc::Endpoint<PVRManagerChild> childPipe;
|
|
|
|
nsresult rv = PVRManager::CreateEndpoints(
|
|
|
|
mGPUChild->OtherPid(),
|
|
|
|
base::GetCurrentProcId(),
|
|
|
|
&parentPipe,
|
|
|
|
&childPipe);
|
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
DisableGPUProcess("Failed to create PVRManager endpoints");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
mGPUChild->SendInitVRManager(Move(parentPipe));
|
|
|
|
VRManagerChild::InitWithGPUProcess(Move(childPipe));
|
|
|
|
}
|
|
|
|
|
2016-06-11 05:27:24 +03:00
|
|
|
void
|
|
|
|
GPUProcessManager::OnProcessLaunchComplete(GPUProcessHost* aHost)
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(mProcess && mProcess == aHost);
|
|
|
|
|
|
|
|
if (!mProcess->IsConnected()) {
|
|
|
|
DisableGPUProcess("Failed to launch GPU process");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
mGPUChild = mProcess->GetActor();
|
2016-07-18 07:24:28 +03:00
|
|
|
mProcessToken = mProcess->GetProcessToken();
|
2016-07-19 21:56:06 +03:00
|
|
|
|
|
|
|
Endpoint<PVsyncBridgeParent> vsyncParent;
|
|
|
|
Endpoint<PVsyncBridgeChild> vsyncChild;
|
|
|
|
nsresult rv = PVsyncBridge::CreateEndpoints(
|
|
|
|
mGPUChild->OtherPid(),
|
|
|
|
base::GetCurrentProcId(),
|
|
|
|
&vsyncParent,
|
|
|
|
&vsyncChild);
|
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
DisableGPUProcess("Failed to create PVsyncBridge endpoints");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
mVsyncBridge = VsyncBridgeChild::Create(mVsyncIOThread, mProcessToken, Move(vsyncChild));
|
|
|
|
mGPUChild->SendInitVsyncBridge(Move(vsyncParent));
|
2016-06-11 05:27:24 +03:00
|
|
|
}
|
|
|
|
|
2016-06-11 05:37:03 +03:00
|
|
|
void
|
|
|
|
GPUProcessManager::OnProcessUnexpectedShutdown(GPUProcessHost* aHost)
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(mProcess && mProcess == aHost);
|
|
|
|
|
|
|
|
DestroyProcess();
|
2016-09-20 11:16:03 +03:00
|
|
|
|
2016-09-28 23:23:48 +03:00
|
|
|
if (mNumProcessAttempts > gfxPrefs::GPUProcessDevMaxRestarts()) {
|
|
|
|
DisableGPUProcess("GPU processed crashed too many times");
|
|
|
|
}
|
|
|
|
if (gfxConfig::IsEnabled(Feature::GPU_PROCESS)) {
|
|
|
|
LaunchGPUProcess();
|
|
|
|
}
|
|
|
|
|
2016-09-20 11:18:50 +03:00
|
|
|
// The shutdown and restart sequence for the GPU process is as follows:
|
|
|
|
//
|
|
|
|
// (1) The GPU process dies. IPDL will enqueue an ActorDestroy message on
|
|
|
|
// each channel owning a bridge to the GPU process, on the thread
|
|
|
|
// owning that channel.
|
|
|
|
//
|
|
|
|
// (2) The first channel to process its ActorDestroy message will post a
|
|
|
|
// message to the main thread to call NotifyRemoteActorDestroyed on
|
|
|
|
// the GPUProcessManager, which calls OnProcessUnexpectedShutdown if
|
|
|
|
// it has not handled shutdown for this process yet.
|
|
|
|
//
|
|
|
|
// (3) We then notify each widget that its session with the compositor is
|
|
|
|
// now invalid. The widget is responsible for destroying its layer
|
|
|
|
// manager and CompositorBridgeChild. Note that at this stage, not
|
|
|
|
// all actors may have received ActorDestroy yet. CompositorBridgeChild
|
|
|
|
// may attempt to send messages, and if this happens, it will probably
|
|
|
|
// report a MsgDropped error. This is okay.
|
|
|
|
//
|
|
|
|
// (4) At this point, the UI process has a clean slate: no layers should
|
|
|
|
// exist for the old compositor. We may make a decision on whether or
|
|
|
|
// not to re-launch the GPU process. Currently, we do not relaunch it,
|
|
|
|
// and any new compositors will be created in-process and will default
|
|
|
|
// to software.
|
|
|
|
//
|
|
|
|
// (5) Next we notify each ContentParent of the lost connection. It will
|
|
|
|
// request new endpoints from the GPUProcessManager and forward them
|
|
|
|
// to its ContentChild. The parent-side of these endpoints may come
|
|
|
|
// from the compositor thread of the UI process, or the compositor
|
|
|
|
// thread of the GPU process. However, no actual compositors should
|
|
|
|
// exist yet.
|
|
|
|
//
|
|
|
|
// (6) Each ContentChild will receive new endpoints. It will destroy its
|
|
|
|
// Compositor/ImageBridgeChild singletons and recreate them, as well
|
|
|
|
// as invalidate all retained layers.
|
|
|
|
//
|
|
|
|
// (7) In addition, each ContentChild will ask each of its TabChildren
|
|
|
|
// to re-request association with the compositor for the window
|
|
|
|
// owning the tab. The sequence of calls looks like:
|
|
|
|
// (a) [CONTENT] ContentChild::RecvReinitRendering
|
|
|
|
// (b) [CONTENT] TabChild::ReinitRendering
|
|
|
|
// (c) [CONTENT] TabChild::SendEnsureLayersConnected
|
|
|
|
// (d) [UI] TabParent::RecvEnsureLayersConnected
|
|
|
|
// (e) [UI] RenderFrameParent::EnsureLayersConnected
|
|
|
|
// (f) [UI] CompositorBridgeChild::SendNotifyChildRecreated
|
|
|
|
//
|
|
|
|
// Note that at step (e), RenderFrameParent will call GetLayerManager
|
|
|
|
// on the nsIWidget owning the tab. This step ensures that a compositor
|
|
|
|
// exists for the window. If we decided to launch a new GPU Process,
|
|
|
|
// at this point we block until the process has launched and we're
|
|
|
|
// able to create a new window compositor. Otherwise, if compositing
|
|
|
|
// is now in-process, this will simply create a new
|
|
|
|
// CompositorBridgeParent in the UI process. If there are multiple tabs
|
|
|
|
// in the same window, additional tabs will simply return the already-
|
|
|
|
// established compositor.
|
|
|
|
//
|
|
|
|
// Finally, this step serves one other crucial function: tabs must be
|
|
|
|
// associated with a window compositor or else they can't forward
|
|
|
|
// layer transactions. So this step both ensures that a compositor
|
|
|
|
// exists, and that the tab can forward layers.
|
|
|
|
//
|
|
|
|
// (8) Last, if the window had no remote tabs, step (7) will not have
|
|
|
|
// applied, and the window will not have a new compositor just yet.
|
|
|
|
// The next refresh tick and paint will ensure that one exists, again
|
|
|
|
// via nsIWidget::GetLayerManager.
|
|
|
|
|
2016-09-20 11:16:03 +03:00
|
|
|
// Build a list of sessions to notify, since notification might delete
|
|
|
|
// entries from the list.
|
|
|
|
nsTArray<RefPtr<RemoteCompositorSession>> sessions;
|
|
|
|
for (auto& session : mRemoteSessions) {
|
|
|
|
sessions.AppendElement(session);
|
|
|
|
}
|
|
|
|
|
2016-09-20 11:18:50 +03:00
|
|
|
// Notify each widget that we have lost the GPU process. This will ensure
|
|
|
|
// that each widget destroys its layer manager and CompositorBridgeChild.
|
2016-09-20 11:16:03 +03:00
|
|
|
for (const auto& session : sessions) {
|
|
|
|
session->NotifySessionLost();
|
|
|
|
}
|
2016-09-20 11:18:50 +03:00
|
|
|
|
|
|
|
// Notify content. This will ensure that each content process re-establishes
|
|
|
|
// a connection to the compositor thread (whether it's in-process or in a
|
|
|
|
// newly launched GPU process).
|
|
|
|
for (const auto& listener : mListeners) {
|
|
|
|
listener->OnCompositorUnexpectedShutdown();
|
|
|
|
}
|
2016-06-11 05:37:03 +03:00
|
|
|
}
|
|
|
|
|
2016-07-18 07:24:28 +03:00
|
|
|
void
|
|
|
|
GPUProcessManager::NotifyRemoteActorDestroyed(const uint64_t& aProcessToken)
|
|
|
|
{
|
|
|
|
if (!NS_IsMainThread()) {
|
|
|
|
RefPtr<Runnable> task = mTaskFactory.NewRunnableMethod(
|
|
|
|
&GPUProcessManager::NotifyRemoteActorDestroyed, aProcessToken);
|
|
|
|
NS_DispatchToMainThread(task.forget());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mProcessToken != aProcessToken) {
|
|
|
|
// This token is for an older process; we can safely ignore it.
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// One of the bridged top-level actors for the GPU process has been
|
|
|
|
// prematurely terminated, and we're receiving a notification. This
|
|
|
|
// can happen if the ActorDestroy for a bridged protocol fires
|
|
|
|
// before the ActorDestroy for PGPUChild.
|
2016-09-20 11:16:03 +03:00
|
|
|
OnProcessUnexpectedShutdown(mProcess);
|
2016-07-18 07:24:28 +03:00
|
|
|
}
|
|
|
|
|
2016-07-19 21:56:06 +03:00
|
|
|
void
|
|
|
|
GPUProcessManager::CleanShutdown()
|
|
|
|
{
|
|
|
|
if (!mProcess) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef NS_FREE_PERMANENT_DATA
|
|
|
|
mVsyncBridge->Close();
|
|
|
|
#endif
|
|
|
|
DestroyProcess();
|
|
|
|
}
|
|
|
|
|
2016-06-11 05:27:24 +03:00
|
|
|
void
|
|
|
|
GPUProcessManager::DestroyProcess()
|
|
|
|
{
|
|
|
|
if (!mProcess) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
mProcess->Shutdown();
|
2016-07-18 07:24:28 +03:00
|
|
|
mProcessToken = 0;
|
2016-06-11 05:27:24 +03:00
|
|
|
mProcess = nullptr;
|
|
|
|
mGPUChild = nullptr;
|
2016-07-19 21:56:06 +03:00
|
|
|
mVsyncBridge = nullptr;
|
2016-05-23 10:27:01 +03:00
|
|
|
}
|
|
|
|
|
2016-07-18 07:24:27 +03:00
|
|
|
RefPtr<CompositorSession>
|
2016-07-19 21:56:07 +03:00
|
|
|
GPUProcessManager::CreateTopLevelCompositor(nsBaseWidget* aWidget,
|
2016-05-23 10:27:01 +03:00
|
|
|
ClientLayerManager* aLayerManager,
|
|
|
|
CSSToLayoutDeviceScale aScale,
|
|
|
|
bool aUseAPZ,
|
|
|
|
bool aUseExternalSurfaceSize,
|
2016-06-28 03:05:34 +03:00
|
|
|
const gfx::IntSize& aSurfaceSize)
|
2016-05-23 10:27:01 +03:00
|
|
|
{
|
2016-07-18 07:24:27 +03:00
|
|
|
uint64_t layerTreeId = AllocateLayerTreeId();
|
|
|
|
|
2016-08-21 06:59:11 +03:00
|
|
|
EnsureGPUReady();
|
2016-07-20 10:17:28 +03:00
|
|
|
EnsureImageBridgeChild();
|
2016-07-21 10:14:59 +03:00
|
|
|
EnsureVRManager();
|
2016-07-20 10:17:28 +03:00
|
|
|
|
2016-07-18 07:24:28 +03:00
|
|
|
if (mGPUChild) {
|
|
|
|
RefPtr<CompositorSession> session = CreateRemoteSession(
|
|
|
|
aWidget,
|
|
|
|
aLayerManager,
|
|
|
|
layerTreeId,
|
|
|
|
aScale,
|
|
|
|
aUseAPZ,
|
|
|
|
aUseExternalSurfaceSize,
|
|
|
|
aSurfaceSize);
|
|
|
|
if (session) {
|
|
|
|
return session;
|
|
|
|
}
|
|
|
|
|
|
|
|
// We couldn't create a remote compositor, so abort the process.
|
|
|
|
DisableGPUProcess("Failed to create remote compositor");
|
|
|
|
}
|
|
|
|
|
2016-07-18 07:24:27 +03:00
|
|
|
return InProcessCompositorSession::Create(
|
2016-07-01 11:15:16 +03:00
|
|
|
aWidget,
|
2016-05-23 10:27:01 +03:00
|
|
|
aLayerManager,
|
2016-07-18 07:24:27 +03:00
|
|
|
layerTreeId,
|
2016-05-23 10:27:01 +03:00
|
|
|
aScale,
|
|
|
|
aUseAPZ,
|
|
|
|
aUseExternalSurfaceSize,
|
2016-06-28 03:05:34 +03:00
|
|
|
aSurfaceSize);
|
2016-05-23 10:27:01 +03:00
|
|
|
}
|
|
|
|
|
2016-07-18 07:24:28 +03:00
|
|
|
RefPtr<CompositorSession>
|
2016-07-19 21:56:07 +03:00
|
|
|
GPUProcessManager::CreateRemoteSession(nsBaseWidget* aWidget,
|
2016-07-18 07:24:28 +03:00
|
|
|
ClientLayerManager* aLayerManager,
|
|
|
|
const uint64_t& aRootLayerTreeId,
|
|
|
|
CSSToLayoutDeviceScale aScale,
|
|
|
|
bool aUseAPZ,
|
|
|
|
bool aUseExternalSurfaceSize,
|
|
|
|
const gfx::IntSize& aSurfaceSize)
|
|
|
|
{
|
|
|
|
#ifdef MOZ_WIDGET_SUPPORTS_OOP_COMPOSITING
|
|
|
|
ipc::Endpoint<PCompositorBridgeParent> parentPipe;
|
|
|
|
ipc::Endpoint<PCompositorBridgeChild> childPipe;
|
|
|
|
|
|
|
|
nsresult rv = PCompositorBridge::CreateEndpoints(
|
|
|
|
mGPUChild->OtherPid(),
|
|
|
|
base::GetCurrentProcId(),
|
|
|
|
&parentPipe,
|
|
|
|
&childPipe);
|
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
gfxCriticalNote << "Failed to create PCompositorBridge endpoints: " << hexa(int(rv));
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
RefPtr<CompositorBridgeChild> child = CompositorBridgeChild::CreateRemote(
|
|
|
|
mProcessToken,
|
|
|
|
aLayerManager,
|
|
|
|
Move(childPipe));
|
|
|
|
if (!child) {
|
|
|
|
gfxCriticalNote << "Failed to create CompositorBridgeChild";
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
CompositorWidgetInitData initData;
|
|
|
|
aWidget->GetCompositorWidgetInitData(&initData);
|
|
|
|
|
2016-07-26 11:57:11 +03:00
|
|
|
TimeDuration vsyncRate =
|
|
|
|
gfxPlatform::GetPlatform()->GetHardwareVsync()->GetGlobalDisplay().GetVsyncRate();
|
|
|
|
|
2016-07-18 07:24:28 +03:00
|
|
|
bool ok = mGPUChild->SendNewWidgetCompositor(
|
|
|
|
Move(parentPipe),
|
|
|
|
aScale,
|
2016-07-26 11:57:11 +03:00
|
|
|
vsyncRate,
|
2016-07-18 07:24:28 +03:00
|
|
|
aUseExternalSurfaceSize,
|
|
|
|
aSurfaceSize);
|
2016-07-20 10:19:27 +03:00
|
|
|
if (!ok) {
|
2016-07-18 07:24:28 +03:00
|
|
|
return nullptr;
|
2016-07-20 10:19:27 +03:00
|
|
|
}
|
2016-07-18 07:24:28 +03:00
|
|
|
|
2016-07-19 21:56:07 +03:00
|
|
|
RefPtr<CompositorVsyncDispatcher> dispatcher = aWidget->GetCompositorVsyncDispatcher();
|
|
|
|
RefPtr<CompositorWidgetVsyncObserver> observer =
|
|
|
|
new CompositorWidgetVsyncObserver(mVsyncBridge, aRootLayerTreeId);
|
|
|
|
|
|
|
|
CompositorWidgetChild* widget = new CompositorWidgetChild(dispatcher, observer);
|
2016-07-20 10:19:27 +03:00
|
|
|
if (!child->SendPCompositorWidgetConstructor(widget, initData)) {
|
2016-07-18 07:24:28 +03:00
|
|
|
return nullptr;
|
2016-07-20 10:19:27 +03:00
|
|
|
}
|
|
|
|
if (!child->SendInitialize(aRootLayerTreeId)) {
|
2016-07-18 07:24:28 +03:00
|
|
|
return nullptr;
|
2016-07-20 10:19:27 +03:00
|
|
|
}
|
2016-07-18 07:24:28 +03:00
|
|
|
|
2016-08-29 16:18:00 +03:00
|
|
|
RefPtr<APZCTreeManagerChild> apz = nullptr;
|
|
|
|
if (aUseAPZ) {
|
|
|
|
PAPZCTreeManagerChild* papz = child->SendPAPZCTreeManagerConstructor(0);
|
|
|
|
if (!papz) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
apz = static_cast<APZCTreeManagerChild*>(papz);
|
|
|
|
}
|
|
|
|
|
2016-07-18 07:24:28 +03:00
|
|
|
RefPtr<RemoteCompositorSession> session =
|
2016-09-20 11:16:03 +03:00
|
|
|
new RemoteCompositorSession(aWidget, child, widget, apz, aRootLayerTreeId);
|
2016-07-18 07:24:28 +03:00
|
|
|
return session.forget();
|
|
|
|
#else
|
|
|
|
gfxCriticalNote << "Platform does not support out-of-process compositing";
|
|
|
|
return nullptr;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2016-09-20 11:15:49 +03:00
|
|
|
bool
|
|
|
|
GPUProcessManager::CreateContentBridges(base::ProcessId aOtherProcess,
|
|
|
|
ipc::Endpoint<PCompositorBridgeChild>* aOutCompositor,
|
|
|
|
ipc::Endpoint<PImageBridgeChild>* aOutImageBridge,
|
|
|
|
ipc::Endpoint<PVRManagerChild>* aOutVRBridge)
|
|
|
|
{
|
|
|
|
if (!CreateContentCompositorBridge(aOtherProcess, aOutCompositor) ||
|
|
|
|
!CreateContentImageBridge(aOtherProcess, aOutImageBridge) ||
|
|
|
|
!CreateContentVRManager(aOtherProcess, aOutVRBridge))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-07-18 07:24:28 +03:00
|
|
|
bool
|
|
|
|
GPUProcessManager::CreateContentCompositorBridge(base::ProcessId aOtherProcess,
|
|
|
|
ipc::Endpoint<PCompositorBridgeChild>* aOutEndpoint)
|
2016-05-23 10:28:51 +03:00
|
|
|
{
|
2016-08-21 06:59:11 +03:00
|
|
|
EnsureGPUReady();
|
|
|
|
|
2016-07-18 07:24:28 +03:00
|
|
|
ipc::Endpoint<PCompositorBridgeParent> parentPipe;
|
|
|
|
ipc::Endpoint<PCompositorBridgeChild> childPipe;
|
|
|
|
|
2016-07-18 07:24:28 +03:00
|
|
|
base::ProcessId gpuPid = mGPUChild
|
|
|
|
? mGPUChild->OtherPid()
|
|
|
|
: base::GetCurrentProcId();
|
|
|
|
|
2016-07-18 07:24:28 +03:00
|
|
|
nsresult rv = PCompositorBridge::CreateEndpoints(
|
2016-07-18 07:24:28 +03:00
|
|
|
gpuPid,
|
2016-07-18 07:24:28 +03:00
|
|
|
aOtherProcess,
|
|
|
|
&parentPipe,
|
|
|
|
&childPipe);
|
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
gfxCriticalNote << "Could not create content compositor bridge: " << hexa(int(rv));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-07-18 07:24:28 +03:00
|
|
|
if (mGPUChild) {
|
|
|
|
mGPUChild->SendNewContentCompositorBridge(Move(parentPipe));
|
|
|
|
} else {
|
2016-07-20 10:19:27 +03:00
|
|
|
if (!CompositorBridgeParent::CreateForContent(Move(parentPipe))) {
|
2016-07-18 07:24:28 +03:00
|
|
|
return false;
|
2016-07-20 10:19:27 +03:00
|
|
|
}
|
2016-07-18 07:24:28 +03:00
|
|
|
}
|
2016-07-18 07:24:28 +03:00
|
|
|
|
|
|
|
*aOutEndpoint = Move(childPipe);
|
|
|
|
return true;
|
2016-05-23 10:28:51 +03:00
|
|
|
}
|
|
|
|
|
2016-07-20 10:18:30 +03:00
|
|
|
bool
|
|
|
|
GPUProcessManager::CreateContentImageBridge(base::ProcessId aOtherProcess,
|
|
|
|
ipc::Endpoint<PImageBridgeChild>* aOutEndpoint)
|
|
|
|
{
|
|
|
|
EnsureImageBridgeChild();
|
|
|
|
|
2016-07-20 10:19:27 +03:00
|
|
|
base::ProcessId gpuPid = mGPUChild
|
|
|
|
? mGPUChild->OtherPid()
|
|
|
|
: base::GetCurrentProcId();
|
2016-07-20 10:18:30 +03:00
|
|
|
|
|
|
|
ipc::Endpoint<PImageBridgeParent> parentPipe;
|
|
|
|
ipc::Endpoint<PImageBridgeChild> childPipe;
|
|
|
|
nsresult rv = PImageBridge::CreateEndpoints(
|
|
|
|
gpuPid,
|
|
|
|
aOtherProcess,
|
|
|
|
&parentPipe,
|
|
|
|
&childPipe);
|
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
gfxCriticalNote << "Could not create content compositor bridge: " << hexa(int(rv));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-07-20 10:19:27 +03:00
|
|
|
if (mGPUChild) {
|
|
|
|
mGPUChild->SendNewContentImageBridge(Move(parentPipe));
|
|
|
|
} else {
|
|
|
|
if (!ImageBridgeParent::CreateForContent(Move(parentPipe))) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2016-07-20 10:18:30 +03:00
|
|
|
|
|
|
|
*aOutEndpoint = Move(childPipe);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-07-21 10:14:59 +03:00
|
|
|
bool
|
|
|
|
GPUProcessManager::CreateContentVRManager(base::ProcessId aOtherProcess,
|
|
|
|
ipc::Endpoint<PVRManagerChild>* aOutEndpoint)
|
|
|
|
{
|
2016-07-21 10:14:59 +03:00
|
|
|
EnsureVRManager();
|
|
|
|
|
|
|
|
base::ProcessId gpuPid = mGPUChild
|
|
|
|
? mGPUChild->OtherPid()
|
|
|
|
: base::GetCurrentProcId();
|
2016-07-21 10:14:59 +03:00
|
|
|
|
|
|
|
ipc::Endpoint<PVRManagerParent> parentPipe;
|
|
|
|
ipc::Endpoint<PVRManagerChild> childPipe;
|
|
|
|
nsresult rv = PVRManager::CreateEndpoints(
|
|
|
|
gpuPid,
|
|
|
|
aOtherProcess,
|
|
|
|
&parentPipe,
|
|
|
|
&childPipe);
|
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
gfxCriticalNote << "Could not create content compositor bridge: " << hexa(int(rv));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-07-21 10:14:59 +03:00
|
|
|
if (mGPUChild) {
|
|
|
|
mGPUChild->SendNewContentVRManager(Move(parentPipe));
|
|
|
|
} else {
|
|
|
|
if (!VRManagerParent::CreateForContent(Move(parentPipe))) {
|
|
|
|
return false;
|
|
|
|
}
|
2016-07-21 10:14:59 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
*aOutEndpoint = Move(childPipe);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-09-21 12:25:33 +03:00
|
|
|
bool
|
|
|
|
GPUProcessManager::CreateContentVideoDecoderManager(base::ProcessId aOtherProcess,
|
|
|
|
ipc::Endpoint<dom::PVideoDecoderManagerChild>* aOutEndpoint)
|
|
|
|
{
|
|
|
|
if (!mGPUChild) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
ipc::Endpoint<dom::PVideoDecoderManagerParent> parentPipe;
|
|
|
|
ipc::Endpoint<dom::PVideoDecoderManagerChild> childPipe;
|
|
|
|
|
|
|
|
nsresult rv = dom::PVideoDecoderManager::CreateEndpoints(
|
|
|
|
mGPUChild->OtherPid(),
|
|
|
|
aOtherProcess,
|
|
|
|
&parentPipe,
|
|
|
|
&childPipe);
|
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
gfxCriticalNote << "Could not create content video decoder: " << hexa(int(rv));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
mGPUChild->SendNewContentVideoDecoderManager(Move(parentPipe));
|
|
|
|
|
|
|
|
*aOutEndpoint = Move(childPipe);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-07-20 14:37:00 +03:00
|
|
|
already_AddRefed<IAPZCTreeManager>
|
2016-05-23 10:27:51 +03:00
|
|
|
GPUProcessManager::GetAPZCTreeManagerForLayers(uint64_t aLayersId)
|
|
|
|
{
|
|
|
|
return CompositorBridgeParent::GetAPZCTreeManager(aLayersId);
|
|
|
|
}
|
|
|
|
|
2016-08-16 23:59:13 +03:00
|
|
|
void
|
|
|
|
GPUProcessManager::MapLayerTreeId(uint64_t aLayersId, base::ProcessId aOwningId)
|
|
|
|
{
|
|
|
|
LayerTreeOwnerTracker::Get()->Map(aLayersId, aOwningId);
|
|
|
|
|
|
|
|
if (mGPUChild) {
|
|
|
|
mGPUChild->SendAddLayerTreeIdMapping(
|
|
|
|
aLayersId,
|
|
|
|
aOwningId);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
GPUProcessManager::IsLayerTreeIdMapped(uint64_t aLayersId, base::ProcessId aRequestingId)
|
|
|
|
{
|
|
|
|
return LayerTreeOwnerTracker::Get()->IsMapped(aLayersId, aRequestingId);
|
|
|
|
}
|
|
|
|
|
2016-05-23 10:27:57 +03:00
|
|
|
uint64_t
|
|
|
|
GPUProcessManager::AllocateLayerTreeId()
|
|
|
|
{
|
2016-07-18 07:24:27 +03:00
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
|
|
return ++mNextLayerTreeId;
|
2016-05-23 10:27:57 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
GPUProcessManager::DeallocateLayerTreeId(uint64_t aLayersId)
|
|
|
|
{
|
2016-08-17 19:11:00 +03:00
|
|
|
if (mGPUChild) {
|
|
|
|
mGPUChild->SendDeallocateLayerTreeId(aLayersId);
|
|
|
|
return;
|
|
|
|
}
|
2016-05-23 10:27:57 +03:00
|
|
|
CompositorBridgeParent::DeallocateLayerTreeId(aLayersId);
|
|
|
|
}
|
|
|
|
|
2016-07-19 21:56:06 +03:00
|
|
|
void
|
|
|
|
GPUProcessManager::EnsureVsyncIOThread()
|
|
|
|
{
|
|
|
|
if (mVsyncIOThread) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
mVsyncIOThread = new VsyncIOThreadHolder();
|
|
|
|
MOZ_RELEASE_ASSERT(mVsyncIOThread->Start());
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
GPUProcessManager::ShutdownVsyncIOThread()
|
|
|
|
{
|
|
|
|
mVsyncIOThread = nullptr;
|
|
|
|
}
|
|
|
|
|
2016-09-20 11:16:03 +03:00
|
|
|
void
|
|
|
|
GPUProcessManager::RegisterSession(RemoteCompositorSession* aSession)
|
|
|
|
{
|
|
|
|
mRemoteSessions.AppendElement(aSession);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
GPUProcessManager::UnregisterSession(RemoteCompositorSession* aSession)
|
|
|
|
{
|
|
|
|
mRemoteSessions.RemoveElement(aSession);
|
|
|
|
}
|
|
|
|
|
2016-09-20 11:18:50 +03:00
|
|
|
void
|
|
|
|
GPUProcessManager::AddListener(GPUProcessListener* aListener)
|
|
|
|
{
|
|
|
|
mListeners.AppendElement(aListener);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
GPUProcessManager::RemoveListener(GPUProcessListener* aListener)
|
|
|
|
{
|
|
|
|
mListeners.RemoveElement(aListener);
|
|
|
|
}
|
|
|
|
|
2016-05-23 10:27:01 +03:00
|
|
|
} // namespace gfx
|
|
|
|
} // namespace mozilla
|