mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-08 20:47:44 +00:00
362 lines
8.5 KiB
C++
362 lines
8.5 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 "GMPStorageChild.h"
|
|
#include "GMPChild.h"
|
|
#include "gmp-storage.h"
|
|
|
|
namespace mozilla {
|
|
namespace gmp {
|
|
|
|
GMPRecordImpl::GMPRecordImpl(GMPStorageChild* aOwner,
|
|
const nsCString& aName,
|
|
GMPRecordClient* aClient)
|
|
: mName(aName)
|
|
, mClient(aClient)
|
|
, mOwner(aOwner)
|
|
, mIsClosed(true)
|
|
{
|
|
}
|
|
|
|
GMPErr
|
|
GMPRecordImpl::Open()
|
|
{
|
|
if (!mIsClosed) {
|
|
return GMPRecordInUse;
|
|
}
|
|
return mOwner->Open(this);
|
|
}
|
|
|
|
void
|
|
GMPRecordImpl::OpenComplete(GMPErr aStatus)
|
|
{
|
|
mIsClosed = false;
|
|
mClient->OpenComplete(aStatus);
|
|
}
|
|
|
|
GMPErr
|
|
GMPRecordImpl::Read()
|
|
{
|
|
if (mIsClosed) {
|
|
return GMPClosedErr;
|
|
}
|
|
return mOwner->Read(this);
|
|
}
|
|
|
|
void
|
|
GMPRecordImpl::ReadComplete(GMPErr aStatus,
|
|
const uint8_t* aBytes,
|
|
uint32_t aLength)
|
|
{
|
|
mClient->ReadComplete(aStatus, aBytes, aLength);
|
|
}
|
|
|
|
GMPErr
|
|
GMPRecordImpl::Write(const uint8_t* aData, uint32_t aDataSize)
|
|
{
|
|
if (mIsClosed) {
|
|
return GMPClosedErr;
|
|
}
|
|
return mOwner->Write(this, aData, aDataSize);
|
|
}
|
|
|
|
void
|
|
GMPRecordImpl::WriteComplete(GMPErr aStatus)
|
|
{
|
|
mClient->WriteComplete(aStatus);
|
|
}
|
|
|
|
GMPErr
|
|
GMPRecordImpl::Close()
|
|
{
|
|
nsRefPtr<GMPRecordImpl> kungfuDeathGrip(this);
|
|
|
|
if (!mIsClosed) {
|
|
// Delete the storage child's reference to us.
|
|
mOwner->Close(this);
|
|
// Owner should callback MarkClosed().
|
|
MOZ_ASSERT(mIsClosed);
|
|
}
|
|
|
|
// Delete our self reference.
|
|
Release();
|
|
|
|
return GMPNoErr;
|
|
}
|
|
|
|
void
|
|
GMPRecordImpl::MarkClosed()
|
|
{
|
|
mIsClosed = true;
|
|
}
|
|
|
|
GMPStorageChild::GMPStorageChild(GMPChild* aPlugin)
|
|
: mPlugin(aPlugin)
|
|
, mShutdown(false)
|
|
{
|
|
MOZ_ASSERT(mPlugin->GMPMessageLoop() == MessageLoop::current());
|
|
}
|
|
|
|
GMPErr
|
|
GMPStorageChild::CreateRecord(const nsCString& aRecordName,
|
|
GMPRecord** aOutRecord,
|
|
GMPRecordClient* aClient)
|
|
{
|
|
if (mPlugin->GMPMessageLoop() != MessageLoop::current()) {
|
|
NS_WARNING("GMP used GMPStorage on non-main thread.");
|
|
return GMPGenericErr;
|
|
}
|
|
if (mShutdown) {
|
|
NS_WARNING("GMPStorage used after it's been shutdown!");
|
|
return GMPClosedErr;
|
|
}
|
|
MOZ_ASSERT(aRecordName.Length() && aOutRecord);
|
|
nsRefPtr<GMPRecordImpl> record(new GMPRecordImpl(this, aRecordName, aClient));
|
|
mRecords.Put(aRecordName, record); // Addrefs
|
|
|
|
// The GMPRecord holds a self reference until the GMP calls Close() on
|
|
// it. This means the object is always valid (even if neutered) while
|
|
// the GMP expects it to be.
|
|
record.forget(aOutRecord);
|
|
|
|
return GMPNoErr;
|
|
}
|
|
|
|
GMPErr
|
|
GMPStorageChild::Open(GMPRecordImpl* aRecord)
|
|
{
|
|
if (mPlugin->GMPMessageLoop() != MessageLoop::current()) {
|
|
NS_WARNING("GMP used GMPStorage on non-main thread.");
|
|
return GMPGenericErr;
|
|
}
|
|
if (mShutdown) {
|
|
NS_WARNING("GMPStorage used after it's been shutdown!");
|
|
return GMPClosedErr;
|
|
}
|
|
if (!SendOpen(aRecord->Name())) {
|
|
Close(aRecord);
|
|
return GMPClosedErr;
|
|
}
|
|
return GMPNoErr;
|
|
}
|
|
|
|
GMPErr
|
|
GMPStorageChild::Read(GMPRecordImpl* aRecord)
|
|
{
|
|
if (mPlugin->GMPMessageLoop() != MessageLoop::current()) {
|
|
NS_WARNING("GMP used GMPStorage on non-main thread.");
|
|
return GMPGenericErr;
|
|
}
|
|
if (mShutdown) {
|
|
NS_WARNING("GMPStorage used after it's been shutdown!");
|
|
return GMPClosedErr;
|
|
}
|
|
if (!SendRead(aRecord->Name())) {
|
|
Close(aRecord);
|
|
return GMPClosedErr;
|
|
}
|
|
return GMPNoErr;
|
|
}
|
|
|
|
GMPErr
|
|
GMPStorageChild::Write(GMPRecordImpl* aRecord,
|
|
const uint8_t* aData,
|
|
uint32_t aDataSize)
|
|
{
|
|
if (mPlugin->GMPMessageLoop() != MessageLoop::current()) {
|
|
NS_WARNING("GMP used GMPStorage on non-main thread.");
|
|
return GMPGenericErr;
|
|
}
|
|
if (mShutdown) {
|
|
NS_WARNING("GMPStorage used after it's been shutdown!");
|
|
return GMPClosedErr;
|
|
}
|
|
if (aDataSize > GMP_MAX_RECORD_SIZE) {
|
|
return GMPQuotaExceededErr;
|
|
}
|
|
nsTArray<uint8_t> data;
|
|
data.AppendElements(aData, aDataSize);
|
|
if (!SendWrite(aRecord->Name(), data)) {
|
|
Close(aRecord);
|
|
return GMPClosedErr;
|
|
}
|
|
return GMPNoErr;
|
|
}
|
|
|
|
GMPErr
|
|
GMPStorageChild::Close(GMPRecordImpl* aRecord)
|
|
{
|
|
if (mPlugin->GMPMessageLoop() != MessageLoop::current()) {
|
|
NS_WARNING("GMP used GMPStorage on non-main thread.");
|
|
return GMPGenericErr;
|
|
}
|
|
if (!mRecords.Contains(aRecord->Name())) {
|
|
// Already closed.
|
|
return GMPClosedErr;
|
|
}
|
|
|
|
GMPErr rv = GMPNoErr;
|
|
if (!mShutdown && !SendClose(aRecord->Name())) {
|
|
rv = GMPGenericErr;
|
|
}
|
|
|
|
aRecord->MarkClosed();
|
|
mRecords.Remove(aRecord->Name());
|
|
|
|
return rv;
|
|
}
|
|
|
|
bool
|
|
GMPStorageChild::RecvOpenComplete(const nsCString& aRecordName,
|
|
const GMPErr& aStatus)
|
|
{
|
|
if (mShutdown) {
|
|
return true;
|
|
}
|
|
nsRefPtr<GMPRecordImpl> record;
|
|
if (!mRecords.Get(aRecordName, getter_AddRefs(record)) || !record) {
|
|
// Not fatal.
|
|
return true;
|
|
}
|
|
record->OpenComplete(aStatus);
|
|
if (GMP_FAILED(aStatus)) {
|
|
Close(record);
|
|
}
|
|
return true;
|
|
}
|
|
|
|
bool
|
|
GMPStorageChild::RecvReadComplete(const nsCString& aRecordName,
|
|
const GMPErr& aStatus,
|
|
const InfallibleTArray<uint8_t>& aBytes)
|
|
{
|
|
if (mShutdown) {
|
|
return true;
|
|
}
|
|
nsRefPtr<GMPRecordImpl> record;
|
|
if (!mRecords.Get(aRecordName, getter_AddRefs(record)) || !record) {
|
|
// Not fatal.
|
|
return true;
|
|
}
|
|
record->ReadComplete(aStatus,
|
|
aBytes.Elements(),
|
|
aBytes.Length());
|
|
if (GMP_FAILED(aStatus)) {
|
|
Close(record);
|
|
}
|
|
return true;
|
|
}
|
|
|
|
bool
|
|
GMPStorageChild::RecvWriteComplete(const nsCString& aRecordName,
|
|
const GMPErr& aStatus)
|
|
{
|
|
if (mShutdown) {
|
|
return true;
|
|
}
|
|
nsRefPtr<GMPRecordImpl> record;
|
|
if (!mRecords.Get(aRecordName, getter_AddRefs(record)) || !record) {
|
|
// Not fatal.
|
|
return true;
|
|
}
|
|
record->WriteComplete(aStatus);
|
|
if (GMP_FAILED(aStatus)) {
|
|
Close(record);
|
|
}
|
|
return true;
|
|
}
|
|
|
|
GMPErr
|
|
GMPStorageChild::EnumerateRecords(RecvGMPRecordIteratorPtr aRecvIteratorFunc,
|
|
void* aUserArg)
|
|
{
|
|
if (mPlugin->GMPMessageLoop() != MessageLoop::current()) {
|
|
MOZ_ASSERT(false, "GMP used GMPStorage on non-main thread.");
|
|
return GMPGenericErr;
|
|
}
|
|
if (mShutdown) {
|
|
NS_WARNING("GMPStorage used after it's been shutdown!");
|
|
return GMPClosedErr;
|
|
}
|
|
if (!SendGetRecordNames()) {
|
|
return GMPGenericErr;
|
|
}
|
|
MOZ_ASSERT(aRecvIteratorFunc);
|
|
mPendingRecordIterators.push(RecordIteratorContext(aRecvIteratorFunc, aUserArg));
|
|
return GMPNoErr;
|
|
}
|
|
|
|
class GMPRecordIteratorImpl : public GMPRecordIterator {
|
|
public:
|
|
GMPRecordIteratorImpl(const InfallibleTArray<nsCString>& aRecordNames)
|
|
: mRecordNames(aRecordNames)
|
|
, mIndex(0)
|
|
{
|
|
mRecordNames.Sort();
|
|
}
|
|
|
|
virtual GMPErr GetName(const char** aOutName, uint32_t* aOutNameLength) MOZ_OVERRIDE {
|
|
if (!aOutName || !aOutNameLength) {
|
|
return GMPInvalidArgErr;
|
|
}
|
|
if (mIndex == mRecordNames.Length()) {
|
|
return GMPEndOfEnumeration;
|
|
}
|
|
*aOutName = mRecordNames[mIndex].get();
|
|
*aOutNameLength = mRecordNames[mIndex].Length();
|
|
return GMPNoErr;
|
|
}
|
|
|
|
virtual GMPErr NextRecord() MOZ_OVERRIDE {
|
|
if (mIndex < mRecordNames.Length()) {
|
|
mIndex++;
|
|
}
|
|
return (mIndex < mRecordNames.Length()) ? GMPNoErr
|
|
: GMPEndOfEnumeration;
|
|
}
|
|
|
|
virtual void Close() MOZ_OVERRIDE {
|
|
delete this;
|
|
}
|
|
|
|
private:
|
|
nsTArray<nsCString> mRecordNames;
|
|
size_t mIndex;
|
|
};
|
|
|
|
bool
|
|
GMPStorageChild::RecvRecordNames(const InfallibleTArray<nsCString>& aRecordNames,
|
|
const GMPErr& aStatus)
|
|
{
|
|
if (mShutdown || mPendingRecordIterators.empty()) {
|
|
return true;
|
|
}
|
|
RecordIteratorContext ctx = mPendingRecordIterators.front();
|
|
mPendingRecordIterators.pop();
|
|
|
|
if (GMP_FAILED(aStatus)) {
|
|
ctx.mFunc(nullptr, ctx.mUserArg, aStatus);
|
|
} else {
|
|
ctx.mFunc(new GMPRecordIteratorImpl(aRecordNames), ctx.mUserArg, GMPNoErr);
|
|
}
|
|
return true;
|
|
}
|
|
|
|
bool
|
|
GMPStorageChild::RecvShutdown()
|
|
{
|
|
// Block any new storage requests, and thus any messages back to the
|
|
// parent. We don't delete any objects here, as that may invalidate
|
|
// GMPRecord pointers held by the GMP.
|
|
mShutdown = true;
|
|
while (!mPendingRecordIterators.empty()) {
|
|
mPendingRecordIterators.pop();
|
|
}
|
|
return true;
|
|
}
|
|
|
|
} // namespace gmp
|
|
} // namespace mozilla
|