2015-02-10 13:48:42 +03:00
|
|
|
/* -*- 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/. */
|
|
|
|
|
|
|
|
#ifndef GMPContentParent_h_
|
|
|
|
#define GMPContentParent_h_
|
|
|
|
|
|
|
|
#include "mozilla/gmp/PGMPContentParent.h"
|
2015-05-29 05:07:22 +03:00
|
|
|
#include "GMPSharedMemManager.h"
|
2015-02-10 13:48:42 +03:00
|
|
|
#include "nsISupportsImpl.h"
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace gmp {
|
|
|
|
|
|
|
|
class GMPParent;
|
|
|
|
class GMPVideoDecoderParent;
|
|
|
|
class GMPVideoEncoderParent;
|
2017-02-23 01:51:00 +03:00
|
|
|
class ChromiumCDMParent;
|
2015-02-10 13:48:42 +03:00
|
|
|
|
|
|
|
class GMPContentParent final : public PGMPContentParent,
|
|
|
|
public GMPSharedMem
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_INLINE_DECL_THREADSAFE_REFCOUNTING(GMPContentParent)
|
|
|
|
|
2015-02-10 13:49:03 +03:00
|
|
|
explicit GMPContentParent(GMPParent* aParent = nullptr);
|
2015-02-10 13:48:42 +03:00
|
|
|
|
2016-11-14 01:07:02 +03:00
|
|
|
nsresult GetGMPVideoDecoder(GMPVideoDecoderParent** aGMPVD,
|
|
|
|
uint32_t aDecryptorId);
|
2015-02-10 13:48:42 +03:00
|
|
|
void VideoDecoderDestroyed(GMPVideoDecoderParent* aDecoder);
|
|
|
|
|
|
|
|
nsresult GetGMPVideoEncoder(GMPVideoEncoderParent** aGMPVE);
|
|
|
|
void VideoEncoderDestroyed(GMPVideoEncoderParent* aEncoder);
|
|
|
|
|
2017-02-23 01:51:00 +03:00
|
|
|
already_AddRefed<ChromiumCDMParent> GetChromiumCDM();
|
|
|
|
void ChromiumCDMDestroyed(ChromiumCDMParent* aCDM);
|
|
|
|
|
2017-06-01 23:41:18 +03:00
|
|
|
nsCOMPtr<nsISerialEventTarget> GMPEventTarget();
|
2015-02-10 13:48:42 +03:00
|
|
|
|
|
|
|
// GMPSharedMem
|
2016-01-18 06:40:49 +03:00
|
|
|
void CheckThread() override;
|
2015-02-10 13:48:42 +03:00
|
|
|
|
|
|
|
void SetDisplayName(const nsCString& aDisplayName)
|
|
|
|
{
|
|
|
|
mDisplayName = aDisplayName;
|
|
|
|
}
|
|
|
|
const nsCString& GetDisplayName()
|
|
|
|
{
|
|
|
|
return mDisplayName;
|
|
|
|
}
|
2015-05-04 22:40:29 +03:00
|
|
|
void SetPluginId(const uint32_t aPluginId)
|
2015-02-10 13:48:42 +03:00
|
|
|
{
|
|
|
|
mPluginId = aPluginId;
|
|
|
|
}
|
2016-01-08 02:43:37 +03:00
|
|
|
uint32_t GetPluginId() const
|
2015-02-10 13:48:42 +03:00
|
|
|
{
|
|
|
|
return mPluginId;
|
|
|
|
}
|
|
|
|
|
2016-11-16 00:59:08 +03:00
|
|
|
class CloseBlocker {
|
|
|
|
public:
|
|
|
|
NS_INLINE_DECL_THREADSAFE_REFCOUNTING(CloseBlocker)
|
|
|
|
|
|
|
|
explicit CloseBlocker(GMPContentParent* aParent)
|
|
|
|
: mParent(aParent)
|
|
|
|
{
|
|
|
|
mParent->AddCloseBlocker();
|
|
|
|
}
|
|
|
|
RefPtr<GMPContentParent> mParent;
|
|
|
|
private:
|
|
|
|
~CloseBlocker() {
|
|
|
|
mParent->RemoveCloseBlocker();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2015-02-10 13:48:42 +03:00
|
|
|
private:
|
2016-11-16 00:59:08 +03:00
|
|
|
|
|
|
|
void AddCloseBlocker();
|
|
|
|
void RemoveCloseBlocker();
|
|
|
|
|
2015-02-10 13:48:42 +03:00
|
|
|
~GMPContentParent();
|
|
|
|
|
2016-01-18 06:40:49 +03:00
|
|
|
void ActorDestroy(ActorDestroyReason aWhy) override;
|
2015-02-10 13:48:42 +03:00
|
|
|
|
2016-11-14 01:07:02 +03:00
|
|
|
PGMPVideoDecoderParent* AllocPGMPVideoDecoderParent(const uint32_t& aDecryptorId) override;
|
2016-01-18 06:40:49 +03:00
|
|
|
bool DeallocPGMPVideoDecoderParent(PGMPVideoDecoderParent* aActor) override;
|
2015-02-10 13:48:42 +03:00
|
|
|
|
2016-01-18 06:40:49 +03:00
|
|
|
PGMPVideoEncoderParent* AllocPGMPVideoEncoderParent() override;
|
|
|
|
bool DeallocPGMPVideoEncoderParent(PGMPVideoEncoderParent* aActor) override;
|
2015-02-10 13:48:42 +03:00
|
|
|
|
2017-02-23 01:51:00 +03:00
|
|
|
PChromiumCDMParent* AllocPChromiumCDMParent() override;
|
|
|
|
bool DeallocPChromiumCDMParent(PChromiumCDMParent* aActor) override;
|
|
|
|
|
2015-02-10 13:48:42 +03:00
|
|
|
void CloseIfUnused();
|
2016-05-05 11:45:00 +03:00
|
|
|
// Needed because NewRunnableMethod tried to use the class that the method
|
2015-02-10 13:48:42 +03:00
|
|
|
// lives on to store the receiver, but PGMPContentParent isn't refcounted.
|
|
|
|
void Close()
|
|
|
|
{
|
|
|
|
PGMPContentParent::Close();
|
|
|
|
}
|
|
|
|
|
2015-10-18 08:24:48 +03:00
|
|
|
nsTArray<RefPtr<GMPVideoDecoderParent>> mVideoDecoders;
|
|
|
|
nsTArray<RefPtr<GMPVideoEncoderParent>> mVideoEncoders;
|
2017-02-23 01:51:00 +03:00
|
|
|
nsTArray<RefPtr<ChromiumCDMParent>> mChromiumCDMs;
|
2017-06-01 23:41:18 +03:00
|
|
|
nsCOMPtr<nsISerialEventTarget> mGMPEventTarget;
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<GMPParent> mParent;
|
2015-02-10 13:48:42 +03:00
|
|
|
nsCString mDisplayName;
|
2015-05-04 22:40:29 +03:00
|
|
|
uint32_t mPluginId;
|
2016-11-16 00:59:08 +03:00
|
|
|
uint32_t mCloseBlockerCount = 0;
|
2015-02-10 13:48:42 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace gmp
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // GMPParent_h_
|