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"
|
|
|
|
#include "mozilla/layers/CompositorThread.h"
|
|
|
|
|
|
|
|
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));
|
2016-07-19 21:56:06 +03:00
|
|
|
CompositorThreadHolder::Loop()->PostTask(task.forget());
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2016-11-15 06:26:00 +03:00
|
|
|
mozilla::ipc::IPCResult
|
2018-03-25 02:06:01 +03:00
|
|
|
VsyncBridgeParent::RecvNotifyVsync(const TimeStamp& aTimeStamp, const LayersId& aLayersId)
|
2016-07-19 21:56:06 +03:00
|
|
|
{
|
2016-07-19 21:56:07 +03:00
|
|
|
CompositorBridgeParent::NotifyVsync(aTimeStamp, aLayersId);
|
2016-11-15 06:26:00 +03:00
|
|
|
return IPC_OK();
|
2016-07-19 21:56:06 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
VsyncBridgeParent::Shutdown()
|
|
|
|
{
|
|
|
|
MessageLoop* ccloop = CompositorThreadHolder::Loop();
|
|
|
|
if (MessageLoop::current() != ccloop) {
|
2017-06-12 22:34:10 +03:00
|
|
|
ccloop->PostTask(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
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
VsyncBridgeParent::DeallocPVsyncBridgeParent()
|
|
|
|
{
|
|
|
|
Release();
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace gfx
|
|
|
|
} // namespace mozilla
|