Copy as Markdown

Other Tools

//
// Automatically generated by ipdlc.
// Edit at your own risk
//
#include "mozilla/dom/cache/PBoundStorageKeyParent.h"
#include "mozilla/ProfilerLabels.h"
#include "mozilla/dom/DomSecurityIPCUtils.h"
#include "mozilla/dom/cache/BoundStorageKeyParent.h"
#include "mozilla/dom/cache/IPCUtils.h"
#include "mozilla/ipc/IPCCore.h"
#include "mozilla/dom/cache/PCacheParent.h"
#include "mozilla/dom/cache/PCacheStorageParent.h"
#include "mozilla/dom/cache/PCacheStreamControlParent.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 cache {
auto PBoundStorageKeyParent::RecvPCacheStorageConstructor(
PCacheStorageParent* actor,
const Namespace& aNamespace,
const PrincipalInfo& aPrincipalInfo) -> mozilla::ipc::IPCResult
{
return IPC_OK();
}
auto PBoundStorageKeyParent::ProcessingError(
Result aCode,
const char* aReason) -> void
{
}
auto PBoundStorageKeyParent::ShouldContinueFromReplyTimeout() -> bool
{
return true;
}
MOZ_IMPLICIT PBoundStorageKeyParent::PBoundStorageKeyParent() :
mozilla::ipc::IToplevelProtocol("PBoundStorageKeyParent", kProtocolId, mozilla::ipc::ParentSide)
{
MOZ_COUNT_CTOR(PBoundStorageKeyParent);
}
PBoundStorageKeyParent::~PBoundStorageKeyParent()
{
MOZ_COUNT_DTOR(PBoundStorageKeyParent);
}
auto PBoundStorageKeyParent::ActorAlloc() -> void
{
MOZ_RELEASE_ASSERT(XRE_IsParentProcess(), "Invalid process for `PBoundStorageKeyParent'");
AddRef();
}
auto PBoundStorageKeyParent::ActorDealloc() -> void
{
Release();
}
auto PBoundStorageKeyParent::ManagedPCacheStorageParent(nsTArray<PCacheStorageParent*>& aArr) const -> void
{
mManagedPCacheStorageParent.ToArray(aArr);
}
auto PBoundStorageKeyParent::ManagedPCacheStorageParent() const -> const ManagedContainer<PCacheStorageParent>&
{
return mManagedPCacheStorageParent;
}
auto PBoundStorageKeyParent::ManagedPCacheParent(nsTArray<PCacheParent*>& aArr) const -> void
{
mManagedPCacheParent.ToArray(aArr);
}
auto PBoundStorageKeyParent::ManagedPCacheParent() const -> const ManagedContainer<PCacheParent>&
{
return mManagedPCacheParent;
}
auto PBoundStorageKeyParent::ManagedPCacheStreamControlParent(nsTArray<PCacheStreamControlParent*>& aArr) const -> void
{
mManagedPCacheStreamControlParent.ToArray(aArr);
}
auto PBoundStorageKeyParent::ManagedPCacheStreamControlParent() const -> const ManagedContainer<PCacheStreamControlParent>&
{
return mManagedPCacheStreamControlParent;
}
auto PBoundStorageKeyParent::ManagedProtocolIds() const -> mozilla::Span<mozilla::ipc::ProtocolId const>
{
static constexpr ::mozilla::ipc::ProtocolId sIds[] = {
PCacheStorageMsgStart,
PCacheMsgStart,
PCacheStreamControlMsgStart
};
return sIds;
}
auto PBoundStorageKeyParent::GetManagedActors(mozilla::ipc::ProtocolId aProtocol) -> UntypedManagedContainer*
{
switch (aProtocol) {
case PCacheStorageMsgStart:
return (&(mManagedPCacheStorageParent));
case PCacheMsgStart:
return (&(mManagedPCacheParent));
case PCacheStreamControlMsgStart:
return (&(mManagedPCacheStreamControlParent));
default:
return nullptr;
}
}
auto PBoundStorageKeyParent::OpenPCacheStorageEndpoint(PCacheStorageParent* aActor) -> ManagedEndpoint<PCacheStorageChild>
{
if (!aActor) {
NS_WARNING("Cannot bind null PCacheStorageParent actor");
return ManagedEndpoint<PCacheStorageChild>();
}
if (!aActor->SetManagerAndRegister(this)) {
NS_WARNING("Failed to bind PCacheStorageParent actor");
return ManagedEndpoint<PCacheStorageChild>();
}
// 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<PCacheStorageChild>(mozilla::ipc::PrivateIPDLInterface(), aActor);
}
auto PBoundStorageKeyParent::BindPCacheStorageEndpoint(
ManagedEndpoint<PCacheStorageParent> aEndpoint,
PCacheStorageParent* aActor) -> bool
{
return aEndpoint.Bind(mozilla::ipc::PrivateIPDLInterface(), aActor, this);
}
auto PBoundStorageKeyParent::OpenPCacheEndpoint(PCacheParent* aActor) -> ManagedEndpoint<PCacheChild>
{
if (!aActor) {
NS_WARNING("Cannot bind null PCacheParent actor");
return ManagedEndpoint<PCacheChild>();
}
if (!aActor->SetManagerAndRegister(this)) {
NS_WARNING("Failed to bind PCacheParent actor");
return ManagedEndpoint<PCacheChild>();
}
// 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<PCacheChild>(mozilla::ipc::PrivateIPDLInterface(), aActor);
}
auto PBoundStorageKeyParent::BindPCacheEndpoint(
ManagedEndpoint<PCacheParent> aEndpoint,
PCacheParent* aActor) -> bool
{
return aEndpoint.Bind(mozilla::ipc::PrivateIPDLInterface(), aActor, this);
}
auto PBoundStorageKeyParent::OpenPCacheStreamControlEndpoint(PCacheStreamControlParent* aActor) -> ManagedEndpoint<PCacheStreamControlChild>
{
if (!aActor) {
NS_WARNING("Cannot bind null PCacheStreamControlParent actor");
return ManagedEndpoint<PCacheStreamControlChild>();
}
if (!aActor->SetManagerAndRegister(this)) {
NS_WARNING("Failed to bind PCacheStreamControlParent actor");
return ManagedEndpoint<PCacheStreamControlChild>();
}
// 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<PCacheStreamControlChild>(mozilla::ipc::PrivateIPDLInterface(), aActor);
}
auto PBoundStorageKeyParent::BindPCacheStreamControlEndpoint(
ManagedEndpoint<PCacheStreamControlParent> aEndpoint,
PCacheStreamControlParent* aActor) -> bool
{
return aEndpoint.Bind(mozilla::ipc::PrivateIPDLInterface(), aActor, this);
}
auto PBoundStorageKeyParent::SendPCacheConstructor(PCacheParent* actor) -> PCacheParent*
{
if (!actor) {
NS_WARNING("Cannot bind null PCacheParent actor");
return nullptr;
}
if (!actor->SetManagerAndRegister(this)) {
NS_WARNING("Failed to bind PCacheParent actor");
return nullptr;
}
// Build our constructor message.
UniquePtr<IPC::Message> msg__ = PBoundStorageKey::Msg_PCacheConstructor(MSG_ROUTING_CONTROL);
IPC::MessageWriter writer__{
(*(msg__)),
this};
IPC::WriteParam((&(writer__)), (actor)->Id());
// Sentinel = 'actorid'
((&(writer__)))->WriteSentinel(193725159);
// 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("PBoundStorageKey", mozilla::ipc::ParentSide)) {
mozilla::ipc::LogMessageForProtocol(
"PBoundStorageKeyParent",
this->ToplevelProtocol()->OtherPidMaybeInvalid(),
"Sending ",
msg__->type(),
mozilla::ipc::MessageDirection::eSending);
}
AUTO_PROFILER_LABEL("PBoundStorageKey::Msg_PCacheConstructor", 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 PCacheParent constructor");
actor->ActorDisconnected(FailedConstructor);
return nullptr;
}
return actor;
}
auto PBoundStorageKeyParent::SendPCacheStreamControlConstructor(PCacheStreamControlParent* actor) -> PCacheStreamControlParent*
{
if (!actor) {
NS_WARNING("Cannot bind null PCacheStreamControlParent actor");
return nullptr;
}
if (!actor->SetManagerAndRegister(this)) {
NS_WARNING("Failed to bind PCacheStreamControlParent actor");
return nullptr;
}
// Build our constructor message.
UniquePtr<IPC::Message> msg__ = PBoundStorageKey::Msg_PCacheStreamControlConstructor(MSG_ROUTING_CONTROL);
IPC::MessageWriter writer__{
(*(msg__)),
this};
IPC::WriteParam((&(writer__)), (actor)->Id());
// Sentinel = 'actorid'
((&(writer__)))->WriteSentinel(193725159);
// 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("PBoundStorageKey", mozilla::ipc::ParentSide)) {
mozilla::ipc::LogMessageForProtocol(
"PBoundStorageKeyParent",
this->ToplevelProtocol()->OtherPidMaybeInvalid(),
"Sending ",
msg__->type(),
mozilla::ipc::MessageDirection::eSending);
}
AUTO_PROFILER_LABEL("PBoundStorageKey::Msg_PCacheStreamControlConstructor", 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 PCacheStreamControlParent constructor");
actor->ActorDisconnected(FailedConstructor);
return nullptr;
}
return actor;
}
auto PBoundStorageKeyParent::DeallocManagee(
mozilla::ipc::ProtocolId aProtocolId,
IProtocol* aListener) -> void
{
switch (aProtocolId) {
default:
FatalError("unreached");
return;
}
}
auto PBoundStorageKeyParent::OnMessageReceived(const Message& msg__) -> PBoundStorageKeyParent::Result
{
IPC::Message::routeid_t route__ = msg__.routing_id();
if (MSG_ROUTING_CONTROL != route__) {
IProtocol* routed__ = Lookup(route__);
if (!routed__ || !routed__->GetLifecycleProxy()) {
if (mozilla::ipc::LoggingEnabledFor("PBoundStorageKey", mozilla::ipc::ParentSide)) {
mozilla::ipc::LogMessageForProtocol(
"PBoundStorageKeyParent",
this->ToplevelProtocol()->OtherPidMaybeInvalid(),
"Ignored message for dead actor",
(&(msg__))->type(),
mozilla::ipc::MessageDirection::eSending);
}
return MsgProcessed;
}
RefPtr<mozilla::ipc::ActorLifecycleProxy> proxy__ =
routed__->GetLifecycleProxy();
return proxy__->Get()->OnMessageReceived(msg__);
}
switch (msg__.type()) {
case PBoundStorageKey::Msg_PCacheStorageConstructor__ID:
{
if (mozilla::ipc::LoggingEnabledFor("PBoundStorageKey", mozilla::ipc::ParentSide)) {
mozilla::ipc::LogMessageForProtocol(
"PBoundStorageKeyParent",
this->ToplevelProtocol()->OtherPidMaybeInvalid(),
"Received ",
(&(msg__))->type(),
mozilla::ipc::MessageDirection::eReceiving);
}
AUTO_PROFILER_LABEL("PBoundStorageKey::Msg_PCacheStorageConstructor", OTHER);
IPC::MessageReader reader__{
msg__,
this};
auto maybe__actorid__ = IPC::ReadParam<mozilla::ipc::ActorId>((&(reader__)));
if (!maybe__actorid__) {
FatalError("Error deserializing 'mozilla::ipc::ActorId'");
return MsgValueError;
}
auto& actorid__ = *maybe__actorid__;
// Sentinel = 'actorid'
if ((!(((&(reader__)))->ReadSentinel(193725159)))) {
mozilla::ipc::SentinelReadError("Error deserializing 'mozilla::ipc::ActorId'");
return MsgValueError;
}
auto maybe__aNamespace = IPC::ReadParam<Namespace>((&(reader__)));
if (!maybe__aNamespace) {
FatalError("Error deserializing 'Namespace'");
return MsgValueError;
}
auto& aNamespace = *maybe__aNamespace;
// Sentinel = 'aNamespace'
if ((!(((&(reader__)))->ReadSentinel(356516847)))) {
mozilla::ipc::SentinelReadError("Error deserializing 'Namespace'");
return MsgValueError;
}
auto maybe__aPrincipalInfo = IPC::ReadParam<PrincipalInfo>((&(reader__)));
if (!maybe__aPrincipalInfo) {
FatalError("Error deserializing 'PrincipalInfo'");
return MsgValueError;
}
auto& aPrincipalInfo = *maybe__aPrincipalInfo;
// Sentinel = 'aPrincipalInfo'
if ((!(((&(reader__)))->ReadSentinel(695272848)))) {
mozilla::ipc::SentinelReadError("Error deserializing 'PrincipalInfo'");
return MsgValueError;
}
reader__.EndRead();
RefPtr<PCacheStorageParent> actor = (static_cast<BoundStorageKeyParent*>(this))->AllocPCacheStorageParent(aNamespace, aPrincipalInfo);
if (!actor) {
NS_WARNING("Cannot bind null PCacheStorageParent actor");
return MsgValueError;
}
if (!actor->SetManagerAndRegister(this, actorid__)) {
NS_WARNING("Failed to bind PCacheStorageParent actor");
return MsgValueError;
}
mozilla::ipc::IPCResult __ok = (static_cast<BoundStorageKeyParent*>(this))->RecvPCacheStorageConstructor(actor, std::move(aNamespace), std::move(aPrincipalInfo));
if ((!(__ok))) {
mozilla::ipc::ProtocolErrorBreakpoint("Handler returned error code!");
// Error handled in mozilla::ipc::IPCResult
return MsgProcessingError;
}
return MsgProcessed;
}
case PBoundStorageKey::Reply_PCacheConstructor__ID:
{
return MsgProcessed;
}
case PBoundStorageKey::Reply_PCacheStreamControlConstructor__ID:
{
return MsgProcessed;
}
default:
return MsgNotKnown;
case SHMEM_CREATED_MESSAGE_TYPE:
{
if (!ShmemCreated(msg__)) {
return MsgPayloadError;
}
return MsgProcessed;
}
case SHMEM_DESTROYED_MESSAGE_TYPE:
{
if (!ShmemDestroyed(msg__)) {
return MsgPayloadError;
}
return MsgProcessed;
}
}
}
auto PBoundStorageKeyParent::OnMessageReceived(
const Message& msg__,
UniquePtr<Message>& reply__) -> PBoundStorageKeyParent::Result
{
MOZ_ASSERT_UNREACHABLE("message protocol not supported");
return MsgNotKnown;
}
} // namespace cache
} // namespace dom
} // namespace mozilla
namespace IPC {
auto ParamTraits<::mozilla::dom::cache::PBoundStorageKeyParent*>::Write(
IPC::MessageWriter* aWriter,
const paramType& aVar) -> void
{
IPC::WriteParam(aWriter, static_cast<mozilla::ipc::IProtocol*>(aVar));
// Sentinel = 'PBoundStorageKey'
(aWriter)->WriteSentinel(877528647);
}
auto ParamTraits<::mozilla::dom::cache::PBoundStorageKeyParent*>::Read(IPC::MessageReader* aReader) -> IPC::ReadResult<paramType>
{
auto maybe__actor = IPC::ReadParam<mozilla::ipc::IProtocol*>(aReader);
if (!maybe__actor) {
aReader->FatalError("Error deserializing managed PBoundStorageKey actor");
return {};
}
auto& actor = *maybe__actor;
// Sentinel = 'PBoundStorageKey'
if ((!((aReader)->ReadSentinel(877528647)))) {
mozilla::ipc::SentinelReadError("Error deserializing managed PBoundStorageKey actor");
return {};
}
if (actor && actor->GetProtocolId() != PBoundStorageKeyMsgStart) {
aReader->FatalError("Unexpected actor type (expected PBoundStorageKey)");
return {};
}
return static_cast<::mozilla::dom::cache::PBoundStorageKeyParent*>(actor);
}
} // namespace IPC