gecko-dev/dom/media/gmp/GMPContentParent.cpp

262 строки
8.9 KiB
C++

/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* 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 "GMPContentParent.h"
#include "GMPLog.h"
#include "GMPParent.h"
#include "GMPServiceChild.h"
#include "GMPVideoDecoderParent.h"
#include "GMPVideoEncoderParent.h"
#include "ChromiumCDMParent.h"
#include "mozIGeckoMediaPluginService.h"
#include "mozilla/Logging.h"
#include "mozilla/Unused.h"
#include "base/task.h"
namespace mozilla {
namespace gmp {
static const char* GetBoolString(bool aBool) {
return aBool ? "true" : "false";
}
GMPContentParent::GMPContentParent(GMPParent* aParent)
: mParent(aParent), mPluginId(0) {
GMP_LOG("GMPContentParent::GMPContentParent(this=%p), aParent=%p", this,
aParent);
if (mParent) {
SetDisplayName(mParent->GetDisplayName());
SetPluginId(mParent->GetPluginId());
}
}
GMPContentParent::~GMPContentParent() {
GMP_LOG(
"GMPContentParent::~GMPContentParent(this=%p) mVideoDecoders.IsEmpty=%s, "
"mVideoEncoders.IsEmpty=%s, mChromiumCDMs.IsEmpty=%s, "
"mCloseBlockerCount=%" PRIu32,
this, GetBoolString(mVideoDecoders.IsEmpty()),
GetBoolString(mVideoEncoders.IsEmpty()),
GetBoolString(mChromiumCDMs.IsEmpty()), mCloseBlockerCount);
}
class ReleaseGMPContentParent : public Runnable {
public:
explicit ReleaseGMPContentParent(GMPContentParent* aToRelease)
: Runnable("gmp::ReleaseGMPContentParent"), mToRelease(aToRelease) {}
NS_IMETHOD Run() override { return NS_OK; }
private:
RefPtr<GMPContentParent> mToRelease;
};
void GMPContentParent::ActorDestroy(ActorDestroyReason aWhy) {
GMP_LOG("GMPContentParent::ActorDestroy(this=%p, aWhy=%d)", this,
static_cast<int>(aWhy));
MOZ_ASSERT(mVideoDecoders.IsEmpty() && mVideoEncoders.IsEmpty() &&
mChromiumCDMs.IsEmpty());
NS_DispatchToCurrentThread(new ReleaseGMPContentParent(this));
}
void GMPContentParent::CheckThread() {
MOZ_ASSERT(GMPEventTarget()->IsOnCurrentThread());
}
void GMPContentParent::ChromiumCDMDestroyed(ChromiumCDMParent* aCDM) {
GMP_LOG("GMPContentParent::ChromiumCDMDestroyed(this=%p, aCDM=%p)", this,
aCDM);
MOZ_ASSERT(GMPEventTarget()->IsOnCurrentThread());
MOZ_ALWAYS_TRUE(mChromiumCDMs.RemoveElement(aCDM));
CloseIfUnused();
}
void GMPContentParent::VideoDecoderDestroyed(GMPVideoDecoderParent* aDecoder) {
GMP_LOG("GMPContentParent::VideoDecoderDestroyed(this=%p, aDecoder=%p)", this,
aDecoder);
MOZ_ASSERT(GMPEventTarget()->IsOnCurrentThread());
// If the constructor fails, we'll get called before it's added
Unused << NS_WARN_IF(!mVideoDecoders.RemoveElement(aDecoder));
CloseIfUnused();
}
void GMPContentParent::VideoEncoderDestroyed(GMPVideoEncoderParent* aEncoder) {
GMP_LOG("GMPContentParent::VideoEncoderDestroyed(this=%p, aEncoder=%p)", this,
aEncoder);
MOZ_ASSERT(GMPEventTarget()->IsOnCurrentThread());
// If the constructor fails, we'll get called before it's added
Unused << NS_WARN_IF(!mVideoEncoders.RemoveElement(aEncoder));
CloseIfUnused();
}
void GMPContentParent::AddCloseBlocker() {
MOZ_ASSERT(GMPEventTarget()->IsOnCurrentThread());
++mCloseBlockerCount;
GMP_LOG(
"GMPContentParent::AddCloseBlocker(this=%p) mCloseBlockerCount=%" PRIu32,
this, mCloseBlockerCount);
}
void GMPContentParent::RemoveCloseBlocker() {
MOZ_ASSERT(GMPEventTarget()->IsOnCurrentThread());
--mCloseBlockerCount;
GMP_LOG(
"GMPContentParent::RemoveCloseBlocker(this=%p) "
"mCloseBlockerCount=%" PRIu32,
this, mCloseBlockerCount);
CloseIfUnused();
}
void GMPContentParent::CloseIfUnused() {
GMP_LOG(
"GMPContentParent::CloseIfUnused(this=%p) mVideoDecoders.IsEmpty=%s, "
"mVideoEncoders.IsEmpty=%s, mChromiumCDMs.IsEmpty=%s, "
"mCloseBlockerCount=%" PRIu32,
this, GetBoolString(mVideoDecoders.IsEmpty()),
GetBoolString(mVideoEncoders.IsEmpty()),
GetBoolString(mChromiumCDMs.IsEmpty()), mCloseBlockerCount);
if (mVideoDecoders.IsEmpty() && mVideoEncoders.IsEmpty() &&
mChromiumCDMs.IsEmpty() && mCloseBlockerCount == 0) {
RefPtr<GMPContentParent> toClose;
if (mParent) {
toClose = mParent->ForgetGMPContentParent();
} else {
toClose = this;
RefPtr<GeckoMediaPluginServiceChild> gmp(
GeckoMediaPluginServiceChild::GetSingleton());
gmp->RemoveGMPContentParent(toClose);
}
NS_DispatchToCurrentThread(NewRunnableMethod(
"gmp::GMPContentParent::Close", toClose, &GMPContentParent::Close));
}
}
nsCOMPtr<nsISerialEventTarget> GMPContentParent::GMPEventTarget() {
if (!mGMPEventTarget) {
GMP_LOG("GMPContentParent::GMPEventTarget(this=%p)", this);
nsCOMPtr<mozIGeckoMediaPluginService> mps =
do_GetService("@mozilla.org/gecko-media-plugin-service;1");
MOZ_ASSERT(mps);
if (!mps) {
return nullptr;
}
// Not really safe if we just grab to the mGMPEventTarget, as we don't know
// what thread we're running on and other threads may be trying to
// access this without locks! However, debug only, and primary failure
// mode outside of compiler-helped TSAN is a leak. But better would be
// to use swap() under a lock.
nsCOMPtr<nsIThread> gmpThread;
mps->GetThread(getter_AddRefs(gmpThread));
MOZ_ASSERT(gmpThread);
mGMPEventTarget = gmpThread->SerialEventTarget();
}
return mGMPEventTarget;
}
already_AddRefed<ChromiumCDMParent> GMPContentParent::GetChromiumCDM() {
GMP_LOG("GMPContentParent::GetChromiumCDM(this=%p)", this);
PChromiumCDMParent* actor = SendPChromiumCDMConstructor();
if (!actor) {
return nullptr;
}
RefPtr<ChromiumCDMParent> parent = static_cast<ChromiumCDMParent*>(actor);
// TODO: Remove parent from mChromiumCDMs in ChromiumCDMParent::Destroy().
mChromiumCDMs.AppendElement(parent);
return parent.forget();
}
nsresult GMPContentParent::GetGMPVideoDecoder(GMPVideoDecoderParent** aGMPVD,
uint32_t aDecryptorId) {
GMP_LOG("GMPContentParent::GetGMPVideoDecoder(this=%p)", this);
// returned with one anonymous AddRef that locks it until Destroy
PGMPVideoDecoderParent* pvdp = SendPGMPVideoDecoderConstructor(aDecryptorId);
if (!pvdp) {
return NS_ERROR_FAILURE;
}
GMPVideoDecoderParent* vdp = static_cast<GMPVideoDecoderParent*>(pvdp);
// This addref corresponds to the Proxy pointer the consumer is returned.
// It's dropped by calling Close() on the interface.
NS_ADDREF(vdp);
*aGMPVD = vdp;
mVideoDecoders.AppendElement(vdp);
return NS_OK;
}
nsresult GMPContentParent::GetGMPVideoEncoder(GMPVideoEncoderParent** aGMPVE) {
GMP_LOG("GMPContentParent::GetGMPVideoEncoder(this=%p)", this);
// returned with one anonymous AddRef that locks it until Destroy
PGMPVideoEncoderParent* pvep = SendPGMPVideoEncoderConstructor();
if (!pvep) {
return NS_ERROR_FAILURE;
}
GMPVideoEncoderParent* vep = static_cast<GMPVideoEncoderParent*>(pvep);
// This addref corresponds to the Proxy pointer the consumer is returned.
// It's dropped by calling Close() on the interface.
NS_ADDREF(vep);
*aGMPVE = vep;
mVideoEncoders.AppendElement(vep);
return NS_OK;
}
PChromiumCDMParent* GMPContentParent::AllocPChromiumCDMParent() {
GMP_LOG("GMPContentParent::AllocPChromiumCDMParent(this=%p)", this);
ChromiumCDMParent* parent = new ChromiumCDMParent(this, GetPluginId());
NS_ADDREF(parent);
return parent;
}
PGMPVideoDecoderParent* GMPContentParent::AllocPGMPVideoDecoderParent(
const uint32_t& aDecryptorId) {
GMP_LOG("GMPContentParent::AllocPGMPVideoDecoderParent(this=%p)", this);
GMPVideoDecoderParent* vdp = new GMPVideoDecoderParent(this);
NS_ADDREF(vdp);
return vdp;
}
bool GMPContentParent::DeallocPChromiumCDMParent(PChromiumCDMParent* aActor) {
GMP_LOG("GMPContentParent::DeallocPChromiumCDMParent(this=%p, aActor=%p)",
this, aActor);
ChromiumCDMParent* parent = static_cast<ChromiumCDMParent*>(aActor);
NS_RELEASE(parent);
return true;
}
bool GMPContentParent::DeallocPGMPVideoDecoderParent(
PGMPVideoDecoderParent* aActor) {
GMP_LOG("GMPContentParent::DeallocPGMPVideoDecoderParent(this=%p, aActor=%p)",
this, aActor);
GMPVideoDecoderParent* vdp = static_cast<GMPVideoDecoderParent*>(aActor);
NS_RELEASE(vdp);
return true;
}
PGMPVideoEncoderParent* GMPContentParent::AllocPGMPVideoEncoderParent() {
GMP_LOG("GMPContentParent::AllocPGMPVideoEncoderParent(this=%p)", this);
GMPVideoEncoderParent* vep = new GMPVideoEncoderParent(this);
NS_ADDREF(vep);
return vep;
}
bool GMPContentParent::DeallocPGMPVideoEncoderParent(
PGMPVideoEncoderParent* aActor) {
GMP_LOG("GMPContentParent::DeallocPGMPVideoEncoderParent(this=%p, aActor=%p)",
this, aActor);
GMPVideoEncoderParent* vep = static_cast<GMPVideoEncoderParent*>(aActor);
NS_RELEASE(vep);
return true;
}
} // namespace gmp
} // namespace mozilla