Copy as Markdown

Other Tools

//
// Automatically generated by ipdlc.
// Edit at your own risk
//
#include "mozilla/dom/indexedDB/PBackgroundIDBFactoryParent.h"
#include "mozilla/ProfilerLabels.h"
#include "mozilla/dom/indexedDB/ActorsChild.h"
#include "mozilla/dom/indexedDB/Key.h"
#include "mozilla/dom/indexedDB/KeyPath.h"
#include "mozilla/dom/indexedDB/SerializationHelpers.h"
#include "mozilla/dom/quota/SerializationHelpers.h"
#include "mozilla/ipc/IPCCore.h"
#include "mozilla/ipc/PBackgroundParent.h"
#include "mozilla/dom/indexedDB/PBackgroundIDBDatabaseParent.h"
#include "mozilla/dom/indexedDB/PBackgroundIDBFactoryRequestParent.h"
#include "ipc/IPCMessageUtils.h"
#include "ipc/IPCMessageUtilsSpecializations.h"
#include "nsIFile.h"
#include "mozilla/ipc/Endpoint.h"
#include "mozilla/ipc/ProtocolMessageUtils.h"
#include "mozilla/ipc/ProtocolUtils.h"
#include "mozilla/ipc/ShmemMessageUtils.h"
#include "mozilla/ipc/TaintingIPCUtils.h"
namespace mozilla {
namespace dom {
namespace indexedDB {
auto PBackgroundIDBFactoryParent::RecvPBackgroundIDBFactoryRequestConstructor(
PBackgroundIDBFactoryRequestParent* actor,
const FactoryRequestParams& params) -> mozilla::ipc::IPCResult
{
return IPC_OK();
}
MOZ_IMPLICIT PBackgroundIDBFactoryParent::PBackgroundIDBFactoryParent() :
mozilla::ipc::IRefCountedProtocol(PBackgroundIDBFactoryMsgStart, mozilla::ipc::ParentSide)
{
MOZ_COUNT_CTOR(PBackgroundIDBFactoryParent);
}
PBackgroundIDBFactoryParent::~PBackgroundIDBFactoryParent()
{
MOZ_COUNT_DTOR(PBackgroundIDBFactoryParent);
}
auto PBackgroundIDBFactoryParent::ActorAlloc() -> void
{
AddRef();
}
auto PBackgroundIDBFactoryParent::ActorDealloc() -> void
{
Release();
}
auto PBackgroundIDBFactoryParent::OtherPid() const -> ::base::ProcessId
{
::base::ProcessId pid =
::mozilla::ipc::IProtocol::ToplevelProtocol()->OtherPidMaybeInvalid();
MOZ_RELEASE_ASSERT(pid != ::base::kInvalidProcessId);
return pid;
}
auto PBackgroundIDBFactoryParent::Manager() const -> PBackgroundParent*
{
return static_cast<PBackgroundParent*>(IProtocol::Manager());
}
auto PBackgroundIDBFactoryParent::ManagedPBackgroundIDBDatabaseParent(nsTArray<PBackgroundIDBDatabaseParent*>& aArr) const -> void
{
mManagedPBackgroundIDBDatabaseParent.ToArray(aArr);
}
auto PBackgroundIDBFactoryParent::ManagedPBackgroundIDBDatabaseParent() const -> const ManagedContainer<PBackgroundIDBDatabaseParent>&
{
return mManagedPBackgroundIDBDatabaseParent;
}
auto PBackgroundIDBFactoryParent::ManagedPBackgroundIDBFactoryRequestParent(nsTArray<PBackgroundIDBFactoryRequestParent*>& aArr) const -> void
{
mManagedPBackgroundIDBFactoryRequestParent.ToArray(aArr);
}
auto PBackgroundIDBFactoryParent::ManagedPBackgroundIDBFactoryRequestParent() const -> const ManagedContainer<PBackgroundIDBFactoryRequestParent>&
{
return mManagedPBackgroundIDBFactoryRequestParent;
}
auto PBackgroundIDBFactoryParent::AllManagedActors(nsTArray<RefPtr<mozilla::ipc::ActorLifecycleProxy>>& arr__) const -> void
{
uint32_t total = 0;
total += mManagedPBackgroundIDBDatabaseParent.Count();
total += mManagedPBackgroundIDBFactoryRequestParent.Count();
arr__.SetCapacity(total);
for (auto* key : mManagedPBackgroundIDBDatabaseParent) {
arr__.AppendElement(key->GetLifecycleProxy());
}
for (auto* key : mManagedPBackgroundIDBFactoryRequestParent) {
arr__.AppendElement(key->GetLifecycleProxy());
}
}
auto PBackgroundIDBFactoryParent::AllManagedActorsCount() const -> uint32_t
{
uint32_t total = 0;
total += mManagedPBackgroundIDBDatabaseParent.Count();
total += mManagedPBackgroundIDBFactoryRequestParent.Count();
return total;
}
auto PBackgroundIDBFactoryParent::OpenPBackgroundIDBDatabaseEndpoint(PBackgroundIDBDatabaseParent* aActor) -> ManagedEndpoint<PBackgroundIDBDatabaseChild>
{
if (!aActor) {
NS_WARNING("Cannot bind null PBackgroundIDBDatabaseParent actor");
return ManagedEndpoint<PBackgroundIDBDatabaseChild>();
}
aActor->SetManagerAndRegister(this);
mManagedPBackgroundIDBDatabaseParent.Insert(aActor);
// Mark our actor as awaiting the other side to be bound. This will
// be cleared when a `MANAGED_ENDPOINT_{DROPPED,BOUND}` message is
// received.
aActor->mAwaitingManagedEndpointBind = true;
return ManagedEndpoint<PBackgroundIDBDatabaseChild>(mozilla::ipc::PrivateIPDLInterface(), aActor);
}
auto PBackgroundIDBFactoryParent::BindPBackgroundIDBDatabaseEndpoint(
ManagedEndpoint<PBackgroundIDBDatabaseParent> aEndpoint,
PBackgroundIDBDatabaseParent* aActor) -> bool
{
return aEndpoint.Bind(mozilla::ipc::PrivateIPDLInterface(), aActor, this, mManagedPBackgroundIDBDatabaseParent);
}
auto PBackgroundIDBFactoryParent::OpenPBackgroundIDBFactoryRequestEndpoint(PBackgroundIDBFactoryRequestParent* aActor) -> ManagedEndpoint<PBackgroundIDBFactoryRequestChild>
{
if (!aActor) {
NS_WARNING("Cannot bind null PBackgroundIDBFactoryRequestParent actor");
return ManagedEndpoint<PBackgroundIDBFactoryRequestChild>();
}
aActor->SetManagerAndRegister(this);
mManagedPBackgroundIDBFactoryRequestParent.Insert(aActor);
// Mark our actor as awaiting the other side to be bound. This will
// be cleared when a `MANAGED_ENDPOINT_{DROPPED,BOUND}` message is
// received.
aActor->mAwaitingManagedEndpointBind = true;
return ManagedEndpoint<PBackgroundIDBFactoryRequestChild>(mozilla::ipc::PrivateIPDLInterface(), aActor);
}
auto PBackgroundIDBFactoryParent::BindPBackgroundIDBFactoryRequestEndpoint(
ManagedEndpoint<PBackgroundIDBFactoryRequestParent> aEndpoint,
PBackgroundIDBFactoryRequestParent* aActor) -> bool
{
return aEndpoint.Bind(mozilla::ipc::PrivateIPDLInterface(), aActor, this, mManagedPBackgroundIDBFactoryRequestParent);
}
auto PBackgroundIDBFactoryParent::Send__delete__(PBackgroundIDBFactoryParent* actor) -> bool
{
if (!actor || !actor->CanSend()) {
NS_WARNING("Attempt to __delete__ missing or closed actor");
return false;
}
UniquePtr<IPC::Message> msg__ = PBackgroundIDBFactory::Msg___delete__((actor)->Id());
IPC::MessageWriter writer__{
(*(msg__)),
actor};
if (mozilla::ipc::LoggingEnabledFor("PBackgroundIDBFactory", mozilla::ipc::ParentSide)) {
mozilla::ipc::LogMessageForProtocol(
"PBackgroundIDBFactoryParent",
actor->ToplevelProtocol()->OtherPidMaybeInvalid(),
"Sending ",
msg__->type(),
mozilla::ipc::MessageDirection::eSending);
}
AUTO_PROFILER_LABEL("PBackgroundIDBFactory::Msg___delete__", OTHER);
bool sendok__ = (actor)->ChannelSend(std::move(msg__));
IProtocol* mgr = actor->Manager();
actor->DestroySubtree(Deletion);
actor->ClearSubtree();
mgr->RemoveManagee(PBackgroundIDBFactoryMsgStart, actor);
return sendok__;
}
auto PBackgroundIDBFactoryParent::SendPBackgroundIDBDatabaseConstructor(
PBackgroundIDBDatabaseParent* actor,
const DatabaseSpec& spec,
mozilla::NotNull<PBackgroundIDBFactoryRequestParent*> request) -> PBackgroundIDBDatabaseParent*
{
if (!actor) {
NS_WARNING("Cannot bind null PBackgroundIDBDatabaseParent actor");
return nullptr;
}
actor->SetManagerAndRegister(this);
mManagedPBackgroundIDBDatabaseParent.Insert(actor);
// Build our constructor message.
UniquePtr<IPC::Message> msg__ = PBackgroundIDBFactory::Msg_PBackgroundIDBDatabaseConstructor(Id());
IPC::MessageWriter writer__{
(*(msg__)),
this};
IPC::WriteParam((&(writer__)), actor);
// Sentinel = 'actor'
((&(writer__)))->WriteSentinel(102892058);
IPC::WriteParam((&(writer__)), spec);
// Sentinel = 'spec'
((&(writer__)))->WriteSentinel(72155564);
IPC::WriteParam((&(writer__)), request);
// Sentinel = 'request'
((&(writer__)))->WriteSentinel(202703626);
// Notify the other side about the newly created actor. This can
// fail if our manager has already been destroyed.
//
// NOTE: If the send call fails due to toplevel channel teardown,
// the `IProtocol::ChannelSend` wrapper absorbs the error for us,
// so we don't tear down actors unexpectedly.
if (mozilla::ipc::LoggingEnabledFor("PBackgroundIDBFactory", mozilla::ipc::ParentSide)) {
mozilla::ipc::LogMessageForProtocol(
"PBackgroundIDBFactoryParent",
this->ToplevelProtocol()->OtherPidMaybeInvalid(),
"Sending ",
msg__->type(),
mozilla::ipc::MessageDirection::eSending);
}
AUTO_PROFILER_LABEL("PBackgroundIDBFactory::Msg_PBackgroundIDBDatabaseConstructor", OTHER);
bool sendok__ = ChannelSend(std::move(msg__));
// Warn, destroy the actor, and return null if the message failed to
// send. Otherwise, return the successfully created actor reference.
if (!sendok__) {
NS_WARNING("Error sending PBackgroundIDBDatabaseParent constructor");
IProtocol* mgr = actor->Manager();
actor->DestroySubtree(FailedConstructor);
actor->ClearSubtree();
mgr->RemoveManagee(PBackgroundIDBDatabaseMsgStart, actor);
return nullptr;
}
return actor;
}
auto PBackgroundIDBFactoryParent::RemoveManagee(
int32_t aProtocolId,
IProtocol* aListener) -> void
{
switch (aProtocolId) {
case PBackgroundIDBDatabaseMsgStart:
{
PBackgroundIDBDatabaseParent* actor = static_cast<PBackgroundIDBDatabaseParent*>(aListener);
const bool removed = mManagedPBackgroundIDBDatabaseParent.EnsureRemoved(actor);
MOZ_RELEASE_ASSERT(removed, "actor not managed by this!");
auto* proxy = actor->GetLifecycleProxy();
NS_IF_RELEASE(proxy);
return;
} case PBackgroundIDBFactoryRequestMsgStart:
{
PBackgroundIDBFactoryRequestParent* actor = static_cast<PBackgroundIDBFactoryRequestParent*>(aListener);
const bool removed = mManagedPBackgroundIDBFactoryRequestParent.EnsureRemoved(actor);
MOZ_RELEASE_ASSERT(removed, "actor not managed by this!");
auto* proxy = actor->GetLifecycleProxy();
NS_IF_RELEASE(proxy);
return;
} default:
FatalError("unreached");
return; }
}
auto PBackgroundIDBFactoryParent::DeallocManagee(
int32_t aProtocolId,
IProtocol* aListener) -> void
{
switch (aProtocolId) {
case PBackgroundIDBFactoryRequestMsgStart:
this->DeallocPBackgroundIDBFactoryRequestParent(static_cast<PBackgroundIDBFactoryRequestParent*>(aListener));
return;
default:
FatalError("unreached");
return;
}
}
auto PBackgroundIDBFactoryParent::OnMessageReceived(const Message& msg__) -> PBackgroundIDBFactoryParent::Result
{
switch (msg__.type()) {
case MANAGED_ENDPOINT_BOUND_MESSAGE_TYPE:
{
if (!mAwaitingManagedEndpointBind) {
NS_WARNING("Unexpected managed endpoint lifecycle message after actor bound!");
return MsgNotAllowed;
}
mAwaitingManagedEndpointBind = false;
return MsgProcessed;
}
case MANAGED_ENDPOINT_DROPPED_MESSAGE_TYPE:
{
if (!mAwaitingManagedEndpointBind) {
NS_WARNING("Unexpected managed endpoint lifecycle message after actor bound!");
return MsgNotAllowed;
}
mAwaitingManagedEndpointBind = false;
IProtocol* mgr = this->Manager();
this->DestroySubtree(ManagedEndpointDropped);
this->ClearSubtree();
mgr->RemoveManagee(PBackgroundIDBFactoryMsgStart, this);
return MsgProcessed;
}
case PBackgroundIDBFactory::Msg_DeleteMe__ID:
{
if (mozilla::ipc::LoggingEnabledFor("PBackgroundIDBFactory", mozilla::ipc::ParentSide)) {
mozilla::ipc::LogMessageForProtocol(
"PBackgroundIDBFactoryParent",
this->ToplevelProtocol()->OtherPidMaybeInvalid(),
"Received ",
(&(msg__))->type(),
mozilla::ipc::MessageDirection::eReceiving);
}
AUTO_PROFILER_LABEL("PBackgroundIDBFactory::Msg_DeleteMe", OTHER);
mozilla::ipc::IPCResult __ok = (this)->RecvDeleteMe();
if ((!(__ok))) {
mozilla::ipc::ProtocolErrorBreakpoint("Handler returned error code!");
// Error handled in mozilla::ipc::IPCResult
return MsgProcessingError;
}
return MsgProcessed;
}
case PBackgroundIDBFactory::Msg_PBackgroundIDBFactoryRequestConstructor__ID:
{
if (mozilla::ipc::LoggingEnabledFor("PBackgroundIDBFactory", mozilla::ipc::ParentSide)) {
mozilla::ipc::LogMessageForProtocol(
"PBackgroundIDBFactoryParent",
this->ToplevelProtocol()->OtherPidMaybeInvalid(),
"Received ",
(&(msg__))->type(),
mozilla::ipc::MessageDirection::eReceiving);
}
AUTO_PROFILER_LABEL("PBackgroundIDBFactory::Msg_PBackgroundIDBFactoryRequestConstructor", OTHER);
IPC::MessageReader reader__{
msg__,
this};
auto maybe__handle__ = IPC::ReadParam<ActorHandle>((&(reader__)));
if (!maybe__handle__) {
FatalError("Error deserializing 'ActorHandle'");
return MsgValueError;
}
auto& handle__ = *maybe__handle__;
// Sentinel = 'actor'
if ((!(((&(reader__)))->ReadSentinel(102892058)))) {
mozilla::ipc::SentinelReadError("Error deserializing 'ActorHandle'");
return MsgValueError;
}
auto maybe__params = IPC::ReadParam<FactoryRequestParams>((&(reader__)));
if (!maybe__params) {
FatalError("Error deserializing 'FactoryRequestParams'");
return MsgValueError;
}
auto& params = *maybe__params;
// Sentinel = 'params'
if ((!(((&(reader__)))->ReadSentinel(146997893)))) {
mozilla::ipc::SentinelReadError("Error deserializing 'FactoryRequestParams'");
return MsgValueError;
}
reader__.EndRead();
PBackgroundIDBFactoryRequestParent* actor = (this)->AllocPBackgroundIDBFactoryRequestParent(params);
if (!actor) {
NS_WARNING("Cannot bind null PBackgroundIDBFactoryRequestParent actor");
return MsgValueError;
}
actor->SetManagerAndRegister(this, (handle__).mId);
mManagedPBackgroundIDBFactoryRequestParent.Insert(actor);
mozilla::ipc::IPCResult __ok = (this)->RecvPBackgroundIDBFactoryRequestConstructor(std::move(actor), std::move(params));
if ((!(__ok))) {
mozilla::ipc::ProtocolErrorBreakpoint("Handler returned error code!");
// Error handled in mozilla::ipc::IPCResult
return MsgProcessingError;
}
return MsgProcessed;
}
case PBackgroundIDBFactory::Msg_GetDatabases__ID:
{
if (mozilla::ipc::LoggingEnabledFor("PBackgroundIDBFactory", mozilla::ipc::ParentSide)) {
mozilla::ipc::LogMessageForProtocol(
"PBackgroundIDBFactoryParent",
this->ToplevelProtocol()->OtherPidMaybeInvalid(),
"Received ",
(&(msg__))->type(),
mozilla::ipc::MessageDirection::eReceiving);
}
AUTO_PROFILER_LABEL("PBackgroundIDBFactory::Msg_GetDatabases", OTHER);
IPC::MessageReader reader__{
msg__,
this};
auto maybe__persistenceType = IPC::ReadParam<PersistenceType>((&(reader__)));
if (!maybe__persistenceType) {
FatalError("Error deserializing 'PersistenceType'");
return MsgValueError;
}
auto& persistenceType = *maybe__persistenceType;
// Sentinel = 'persistenceType'
if ((!(((&(reader__)))->ReadSentinel(853345864)))) {
mozilla::ipc::SentinelReadError("Error deserializing 'PersistenceType'");
return MsgValueError;
}
auto maybe__principalInfo = IPC::ReadParam<PrincipalInfo>((&(reader__)));
if (!maybe__principalInfo) {
FatalError("Error deserializing 'PrincipalInfo'");
return MsgValueError;
}
auto& principalInfo = *maybe__principalInfo;
// Sentinel = 'principalInfo'
if ((!(((&(reader__)))->ReadSentinel(633472335)))) {
mozilla::ipc::SentinelReadError("Error deserializing 'PrincipalInfo'");
return MsgValueError;
}
reader__.EndRead();
int32_t id__ = Id();
UniquePtr<IPC::Message> reply__(PBackgroundIDBFactory::Reply_GetDatabases(id__));
reply__->set_seqno(msg__.seqno());
RefPtr<mozilla::ipc::IPDLResolverInner> resolver__ =
new mozilla::ipc::IPDLResolverInner(std::move(reply__), this);
GetDatabasesResolver resolver = [resolver__ = std::move(resolver__)](const GetDatabasesResponse& aParam) {
resolver__->Resolve([&] (IPC::Message* reply__, IProtocol* self__) {
IPC::MessageWriter writer__(*reply__, self__);
IPC::WriteParam((&(writer__)), aParam);
// Sentinel = 'response'
((&(writer__)))->WriteSentinel(260965232);
if (mozilla::ipc::LoggingEnabledFor("PBackgroundIDBFactory", mozilla::ipc::ParentSide)) {
mozilla::ipc::LogMessageForProtocol(
"PBackgroundIDBFactoryParent",
self__->ToplevelProtocol()->OtherPidMaybeInvalid(),
"Sending reply ",
reply__->type(),
mozilla::ipc::MessageDirection::eSending);
}
});
};
mozilla::ipc::IPCResult __ok = (this)->RecvGetDatabases(std::move(persistenceType), std::move(principalInfo), std::move(resolver));
if ((!(__ok))) {
mozilla::ipc::ProtocolErrorBreakpoint("Handler returned error code!");
// Error handled in mozilla::ipc::IPCResult
return MsgProcessingError;
}
return MsgProcessed;
}
case PBackgroundIDBFactory::Reply___delete____ID:
{
return MsgProcessed;
}
case PBackgroundIDBFactory::Reply_PBackgroundIDBDatabaseConstructor__ID:
{
return MsgProcessed;
}
default:
return MsgNotKnown;
}
}
auto PBackgroundIDBFactoryParent::OnMessageReceived(
const Message& msg__,
UniquePtr<Message>& reply__) -> PBackgroundIDBFactoryParent::Result
{
return MsgNotKnown;
}
auto PBackgroundIDBFactoryParent::ClearSubtree() -> void
{
for (auto* key : mManagedPBackgroundIDBDatabaseParent) {
key->ClearSubtree();
}
for (auto* key : mManagedPBackgroundIDBDatabaseParent) {
// Recursively releasing mManagedPBackgroundIDBDatabaseParent kids.
auto* proxy = key->GetLifecycleProxy();
NS_IF_RELEASE(proxy);
}
mManagedPBackgroundIDBDatabaseParent.Clear();
for (auto* key : mManagedPBackgroundIDBFactoryRequestParent) {
key->ClearSubtree();
}
for (auto* key : mManagedPBackgroundIDBFactoryRequestParent) {
// Recursively releasing mManagedPBackgroundIDBFactoryRequestParent kids.
auto* proxy = key->GetLifecycleProxy();
NS_IF_RELEASE(proxy);
}
mManagedPBackgroundIDBFactoryRequestParent.Clear();
}
} // namespace indexedDB
} // namespace dom
} // namespace mozilla
namespace IPC {
auto ParamTraits<::mozilla::dom::indexedDB::PBackgroundIDBFactoryParent*>::Write(
IPC::MessageWriter* aWriter,
const paramType& aVar) -> void
{
MOZ_RELEASE_ASSERT(
aWriter->GetActor(),
"Cannot serialize managed actors without an actor");
int32_t id;
if (!aVar) {
id = 0; // kNullActorId
} else {
id = aVar->Id();
if (id == 1) { // kFreedActorId
aVar->FatalError("Actor has been |delete|d");
}
MOZ_RELEASE_ASSERT(
aWriter->GetActor()->GetIPCChannel() == aVar->GetIPCChannel(),
"Actor must be from the same channel as the"
" actor it's being sent over");
MOZ_RELEASE_ASSERT(
aVar->CanSend(),
"Actor must still be open when sending");
}
IPC::WriteParam(aWriter, id);
}
auto ParamTraits<::mozilla::dom::indexedDB::PBackgroundIDBFactoryParent*>::Read(IPC::MessageReader* aReader) -> IPC::ReadResult<paramType>
{
MOZ_RELEASE_ASSERT(
aReader->GetActor(),
"Cannot deserialize managed actors without an actor");
mozilla::Maybe<mozilla::ipc::IProtocol*> actor = aReader->GetActor()
->ReadActor(aReader, true, "PBackgroundIDBFactory", PBackgroundIDBFactoryMsgStart);
if (actor.isSome()) {
return static_cast<::mozilla::dom::indexedDB::PBackgroundIDBFactoryParent*>(actor.ref());
}
return {};
}
} // namespace IPC