Copy as Markdown

Other Tools

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