2017-10-28 02:10:06 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2016-07-19 21:56:06 +03: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/. */
|
|
|
|
#include "VsyncBridgeParent.h"
|
2018-11-14 21:05:00 +03:00
|
|
|
#include "mozilla/layers/CompositorBridgeParent.h"
|
2016-07-19 21:56:06 +03:00
|
|
|
#include "mozilla/layers/CompositorThread.h"
|
|
|
|
|
2018-11-14 21:05:00 +03:00
|
|
|
using mozilla::layers::CompositorBridgeParent;
|
|
|
|
using mozilla::layers::CompositorThreadHolder;
|
|
|
|
|
2016-07-19 21:56:06 +03:00
|
|
|
namespace mozilla {
|
|
|
|
namespace gfx {
|
|
|
|
|
|
|
|
RefPtr<VsyncBridgeParent> VsyncBridgeParent::Start(
|
|
|
|
Endpoint<PVsyncBridgeParent>&& aEndpoint) {
|
|
|
|
RefPtr<VsyncBridgeParent> parent = new VsyncBridgeParent();
|
|
|
|
|
|
|
|
RefPtr<Runnable> task = NewRunnableMethod<Endpoint<PVsyncBridgeParent>&&>(
|
2017-06-12 22:34:10 +03:00
|
|
|
"gfx::VsyncBridgeParent::Open", parent, &VsyncBridgeParent::Open,
|
2018-05-30 22:15:35 +03:00
|
|
|
std::move(aEndpoint));
|
2020-05-08 23:20:44 +03:00
|
|
|
CompositorThread()->Dispatch(task.forget());
|
2016-07-19 21:56:06 +03:00
|
|
|
|
|
|
|
return parent;
|
|
|
|
}
|
|
|
|
|
|
|
|
VsyncBridgeParent::VsyncBridgeParent() : mOpen(false) {
|
|
|
|
MOZ_COUNT_CTOR(VsyncBridgeParent);
|
2017-11-01 20:34:43 +03:00
|
|
|
mCompositorThreadRef = CompositorThreadHolder::GetSingleton();
|
2016-07-19 21:56:06 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
VsyncBridgeParent::~VsyncBridgeParent() { MOZ_COUNT_DTOR(VsyncBridgeParent); }
|
|
|
|
|
|
|
|
void VsyncBridgeParent::Open(Endpoint<PVsyncBridgeParent>&& aEndpoint) {
|
2016-09-02 23:13:50 +03:00
|
|
|
if (!aEndpoint.Bind(this)) {
|
2016-07-19 21:56:06 +03:00
|
|
|
// We can't recover from this.
|
|
|
|
MOZ_CRASH("Failed to bind VsyncBridgeParent to endpoint");
|
|
|
|
}
|
|
|
|
AddRef();
|
|
|
|
mOpen = true;
|
|
|
|
}
|
|
|
|
|
2018-03-25 02:06:01 +03:00
|
|
|
mozilla::ipc::IPCResult VsyncBridgeParent::RecvNotifyVsync(
|
2018-12-08 02:27:28 +03:00
|
|
|
const VsyncEvent& aVsync, const LayersId& aLayersId) {
|
|
|
|
CompositorBridgeParent::NotifyVsync(aVsync, aLayersId);
|
2016-11-15 06:26:00 +03:00
|
|
|
return IPC_OK();
|
2016-07-19 21:56:06 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void VsyncBridgeParent::Shutdown() {
|
2020-05-08 23:20:44 +03:00
|
|
|
if (!CompositorThreadHolder::IsInCompositorThread()) {
|
|
|
|
CompositorThread()->Dispatch(
|
|
|
|
NewRunnableMethod("gfx::VsyncBridgeParent::ShutdownImpl", this,
|
|
|
|
&VsyncBridgeParent::ShutdownImpl));
|
2016-07-19 21:56:06 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-10-12 10:08:36 +03:00
|
|
|
ShutdownImpl();
|
|
|
|
}
|
|
|
|
|
|
|
|
void VsyncBridgeParent::ShutdownImpl() {
|
2016-07-19 21:56:06 +03:00
|
|
|
if (mOpen) {
|
|
|
|
Close();
|
|
|
|
mOpen = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void VsyncBridgeParent::ActorDestroy(ActorDestroyReason aWhy) {
|
|
|
|
mOpen = false;
|
2017-04-21 05:32:48 +03:00
|
|
|
mCompositorThreadRef = nullptr;
|
2016-07-19 21:56:06 +03:00
|
|
|
}
|
|
|
|
|
2019-05-21 20:04:21 +03:00
|
|
|
void VsyncBridgeParent::ActorDealloc() { Release(); }
|
2016-07-19 21:56:06 +03:00
|
|
|
|
|
|
|
} // namespace gfx
|
|
|
|
} // namespace mozilla
|