Copy as Markdown

Other Tools

//
// Automatically generated by ipdlc.
// Edit at your own risk
//
#include "mozilla/_ipdltest/PTestMostNestedParent.h"
#include "mozilla/ProfilerLabels.h"
#include "mozilla/ProfilerMarkers.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 _ipdltest {
auto PTestMostNestedParent::ProcessingError(
Result aCode,
const char* aReason) -> void
{
}
auto PTestMostNestedParent::ShouldContinueFromReplyTimeout() -> bool
{
return true;
}
MOZ_IMPLICIT PTestMostNestedParent::PTestMostNestedParent() :
mozilla::ipc::IToplevelProtocol("PTestMostNestedParent", PTestMostNestedMsgStart, mozilla::ipc::ParentSide)
{
MOZ_COUNT_CTOR(PTestMostNestedParent);
}
PTestMostNestedParent::~PTestMostNestedParent()
{
MOZ_COUNT_DTOR(PTestMostNestedParent);
}
auto PTestMostNestedParent::ActorAlloc() -> void
{
MOZ_RELEASE_ASSERT(XRE_IsParentProcess(), "Invalid process for `PTestMostNestedParent'");
AddRef();
}
auto PTestMostNestedParent::ActorDealloc() -> void
{
Release();
}
auto PTestMostNestedParent::AllManagedActorsCount() const -> uint32_t
{
uint32_t total = 0;
return total;
}
auto PTestMostNestedParent::SendStart() -> bool
{
UniquePtr<IPC::Message> msg__ = PTestMostNested::Msg_Start(MSG_ROUTING_CONTROL);
IPC::MessageWriter writer__{
(*(msg__)),
this};
if (mozilla::ipc::LoggingEnabledFor("PTestMostNested", mozilla::ipc::ParentSide)) {
mozilla::ipc::LogMessageForProtocol(
"PTestMostNestedParent",
this->ToplevelProtocol()->OtherPidMaybeInvalid(),
"Sending ",
msg__->type(),
mozilla::ipc::MessageDirection::eSending);
}
AUTO_PROFILER_LABEL("PTestMostNested::Msg_Start", OTHER);
bool sendok__ = ChannelSend(std::move(msg__));
return sendok__;
}
auto PTestMostNestedParent::SendStartInner() -> bool
{
UniquePtr<IPC::Message> msg__ = PTestMostNested::Msg_StartInner(MSG_ROUTING_CONTROL);
IPC::MessageWriter writer__{
(*(msg__)),
this};
UniquePtr<Message> reply__;
if (mozilla::ipc::LoggingEnabledFor("PTestMostNested", mozilla::ipc::ParentSide)) {
mozilla::ipc::LogMessageForProtocol(
"PTestMostNestedParent",
this->ToplevelProtocol()->OtherPidMaybeInvalid(),
"Sending ",
msg__->type(),
mozilla::ipc::MessageDirection::eSending);
}
AUTO_PROFILER_LABEL("PTestMostNested::Msg_StartInner", OTHER);
bool sendok__ = false;
{
AUTO_PROFILER_TRACING_MARKER("Sync IPC", "PTestMostNested::Msg_StartInner", IPC);
sendok__ = ChannelSend(std::move(msg__), (&(reply__)));
}
if ((!(sendok__))) {
return false;
}
if (mozilla::ipc::LoggingEnabledFor("PTestMostNested", mozilla::ipc::ParentSide)) {
mozilla::ipc::LogMessageForProtocol(
"PTestMostNestedParent",
this->ToplevelProtocol()->OtherPidMaybeInvalid(),
"Received reply ",
reply__->type(),
mozilla::ipc::MessageDirection::eReceiving);
}
return true;
}
auto PTestMostNestedParent::RemoveManagee(
int32_t aProtocolId,
IProtocol* aListener) -> void
{
FatalError("unreached");
return;
}
auto PTestMostNestedParent::DeallocManagee(
int32_t aProtocolId,
IProtocol* aListener) -> void
{
FatalError("unreached");
return;
}
auto PTestMostNestedParent::OnMessageReceived(const Message& msg__) -> PTestMostNestedParent::Result
{
switch (msg__.type()) {
case PTestMostNested::Msg_Msg1__ID:
{
if (mozilla::ipc::LoggingEnabledFor("PTestMostNested", mozilla::ipc::ParentSide)) {
mozilla::ipc::LogMessageForProtocol(
"PTestMostNestedParent",
this->ToplevelProtocol()->OtherPidMaybeInvalid(),
"Received ",
(&(msg__))->type(),
mozilla::ipc::MessageDirection::eReceiving);
}
AUTO_PROFILER_LABEL("PTestMostNested::Msg_Msg1", OTHER);
mozilla::ipc::IPCResult __ok = (this)->RecvMsg1();
if ((!(__ok))) {
mozilla::ipc::ProtocolErrorBreakpoint("Handler returned error code!");
// Error handled in mozilla::ipc::IPCResult
return MsgProcessingError;
}
return MsgProcessed;
}
case PTestMostNested::Msg_Msg3__ID:
{
if (mozilla::ipc::LoggingEnabledFor("PTestMostNested", mozilla::ipc::ParentSide)) {
mozilla::ipc::LogMessageForProtocol(
"PTestMostNestedParent",
this->ToplevelProtocol()->OtherPidMaybeInvalid(),
"Received ",
(&(msg__))->type(),
mozilla::ipc::MessageDirection::eReceiving);
}
AUTO_PROFILER_LABEL("PTestMostNested::Msg_Msg3", OTHER);
mozilla::ipc::IPCResult __ok = (this)->RecvMsg3();
if ((!(__ok))) {
mozilla::ipc::ProtocolErrorBreakpoint("Handler returned error code!");
// Error handled in mozilla::ipc::IPCResult
return MsgProcessingError;
}
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 PTestMostNestedParent::OnMessageReceived(
const Message& msg__,
UniquePtr<Message>& reply__) -> PTestMostNestedParent::Result
{
switch (msg__.type()) {
case PTestMostNested::Msg_Msg2__ID:
{
if (mozilla::ipc::LoggingEnabledFor("PTestMostNested", mozilla::ipc::ParentSide)) {
mozilla::ipc::LogMessageForProtocol(
"PTestMostNestedParent",
this->ToplevelProtocol()->OtherPidMaybeInvalid(),
"Received ",
(&(msg__))->type(),
mozilla::ipc::MessageDirection::eReceiving);
}
AUTO_PROFILER_LABEL("PTestMostNested::Msg_Msg2", OTHER);
int32_t id__ = MSG_ROUTING_CONTROL;
mozilla::ipc::IPCResult __ok = (this)->RecvMsg2();
if ((!(__ok))) {
mozilla::ipc::ProtocolErrorBreakpoint("Handler returned error code!");
// Error handled in mozilla::ipc::IPCResult
return MsgProcessingError;
}
reply__ = PTestMostNested::Reply_Msg2(id__);
IPC::MessageWriter writer__{
(*(reply__)),
this};
if (mozilla::ipc::LoggingEnabledFor("PTestMostNested", mozilla::ipc::ParentSide)) {
mozilla::ipc::LogMessageForProtocol(
"PTestMostNestedParent",
this->ToplevelProtocol()->OtherPidMaybeInvalid(),
"Sending reply ",
reply__->type(),
mozilla::ipc::MessageDirection::eSending);
}
return MsgProcessed;
}
case PTestMostNested::Msg_Msg4__ID:
{
if (mozilla::ipc::LoggingEnabledFor("PTestMostNested", mozilla::ipc::ParentSide)) {
mozilla::ipc::LogMessageForProtocol(
"PTestMostNestedParent",
this->ToplevelProtocol()->OtherPidMaybeInvalid(),
"Received ",
(&(msg__))->type(),
mozilla::ipc::MessageDirection::eReceiving);
}
AUTO_PROFILER_LABEL("PTestMostNested::Msg_Msg4", OTHER);
int32_t id__ = MSG_ROUTING_CONTROL;
mozilla::ipc::IPCResult __ok = (this)->RecvMsg4();
if ((!(__ok))) {
mozilla::ipc::ProtocolErrorBreakpoint("Handler returned error code!");
// Error handled in mozilla::ipc::IPCResult
return MsgProcessingError;
}
reply__ = PTestMostNested::Reply_Msg4(id__);
IPC::MessageWriter writer__{
(*(reply__)),
this};
if (mozilla::ipc::LoggingEnabledFor("PTestMostNested", mozilla::ipc::ParentSide)) {
mozilla::ipc::LogMessageForProtocol(
"PTestMostNestedParent",
this->ToplevelProtocol()->OtherPidMaybeInvalid(),
"Sending reply ",
reply__->type(),
mozilla::ipc::MessageDirection::eSending);
}
return MsgProcessed;
}
default:
return MsgNotKnown;
}
}
auto PTestMostNestedParent::DoomSubtree() -> void
{
SetDoomed();
}
auto PTestMostNestedParent::PeekManagedActor() -> IProtocol*
{
return nullptr;
}
} // namespace _ipdltest
} // namespace mozilla
namespace IPC {
auto ParamTraits<::mozilla::_ipdltest::PTestMostNestedParent*>::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::_ipdltest::PTestMostNestedParent*>::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, "PTestMostNested", PTestMostNestedMsgStart);
if (actor.isSome()) {
return static_cast<::mozilla::_ipdltest::PTestMostNestedParent*>(actor.ref());
}
return {};
}
} // namespace IPC