Copy as Markdown
Other Tools
//
// Automatically generated by ipdlc.
// Edit at your own risk
//
#include "mozilla/_ipdltest/PTestMultiMgrsBottomChild.h"
#include "mozilla/ProfilerLabels.h"
#include "mozilla/_ipdltest/PTestMultiMgrsLeftChild.h"
#include "mozilla/_ipdltest/PTestMultiMgrsRightChild.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 PTestMultiMgrsBottomChild::Recv__delete__() -> mozilla::ipc::IPCResult
{
return IPC_OK();
}
MOZ_IMPLICIT PTestMultiMgrsBottomChild::PTestMultiMgrsBottomChild() :
mozilla::ipc::IRefCountedProtocol(kProtocolId, mozilla::ipc::ChildSide)
{
MOZ_COUNT_CTOR(PTestMultiMgrsBottomChild);
}
PTestMultiMgrsBottomChild::~PTestMultiMgrsBottomChild()
{
MOZ_COUNT_DTOR(PTestMultiMgrsBottomChild);
}
auto PTestMultiMgrsBottomChild::ActorAlloc() -> void
{
AddRef();
}
auto PTestMultiMgrsBottomChild::ActorDealloc() -> void
{
Release();
}
auto PTestMultiMgrsBottomChild::ManagedProtocolIds() const -> mozilla::Span<mozilla::ipc::ProtocolId const>
{
return {};
}
auto PTestMultiMgrsBottomChild::GetManagedActors(mozilla::ipc::ProtocolId aProtocol) -> UntypedManagedContainer*
{
switch (aProtocol) {
default:
return nullptr;
}
}
auto PTestMultiMgrsBottomChild::DeallocManagee(
mozilla::ipc::ProtocolId aProtocolId,
IProtocol* aListener) -> void
{
FatalError("unreached");
return;
}
auto PTestMultiMgrsBottomChild::OnMessageReceived(const Message& msg__) -> PTestMultiMgrsBottomChild::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;
this->ActorDisconnected(ManagedEndpointDropped);
return MsgProcessed;
}
case PTestMultiMgrsBottom::Msg___delete____ID:
{
if (mozilla::ipc::LoggingEnabledFor("PTestMultiMgrsBottom", mozilla::ipc::ChildSide)) {
mozilla::ipc::LogMessageForProtocol(
"PTestMultiMgrsBottomChild",
this->ToplevelProtocol()->OtherPidMaybeInvalid(),
"Received ",
(&(msg__))->type(),
mozilla::ipc::MessageDirection::eReceiving);
}
AUTO_PROFILER_LABEL("PTestMultiMgrsBottom::Msg___delete__", OTHER);
mozilla::ipc::IPCResult __ok = (this)->Recv__delete__();
if ((!(__ok))) {
mozilla::ipc::ProtocolErrorBreakpoint("Handler returned error code!");
// Error handled in mozilla::ipc::IPCResult
return MsgProcessingError;
}
this->ActorDisconnected(Deletion);
return MsgProcessed;
}
default:
return MsgNotKnown;
}
}
auto PTestMultiMgrsBottomChild::OnMessageReceived(
const Message& msg__,
UniquePtr<Message>& reply__) -> PTestMultiMgrsBottomChild::Result
{
MOZ_ASSERT_UNREACHABLE("message protocol not supported");
return MsgNotKnown;
}
} // namespace _ipdltest
} // namespace mozilla
namespace IPC {
auto ParamTraits<::mozilla::_ipdltest::PTestMultiMgrsBottomChild*>::Write(
IPC::MessageWriter* aWriter,
const paramType& aVar) -> void
{
IPC::WriteParam(aWriter, static_cast<mozilla::ipc::IProtocol*>(aVar));
// Sentinel = 'PTestMultiMgrsBottom'
(aWriter)->WriteSentinel(1382615050);
}
auto ParamTraits<::mozilla::_ipdltest::PTestMultiMgrsBottomChild*>::Read(IPC::MessageReader* aReader) -> IPC::ReadResult<paramType>
{
auto maybe__actor = IPC::ReadParam<mozilla::ipc::IProtocol*>(aReader);
if (!maybe__actor) {
aReader->FatalError("Error deserializing managed PTestMultiMgrsBottom actor");
return {};
}
auto& actor = *maybe__actor;
// Sentinel = 'PTestMultiMgrsBottom'
if ((!((aReader)->ReadSentinel(1382615050)))) {
mozilla::ipc::SentinelReadError("Error deserializing managed PTestMultiMgrsBottom actor");
return {};
}
if (actor && actor->GetProtocolId() != PTestMultiMgrsBottomMsgStart) {
aReader->FatalError("Unexpected actor type (expected PTestMultiMgrsBottom)");
return {};
}
return static_cast<::mozilla::_ipdltest::PTestMultiMgrsBottomChild*>(actor);
}
} // namespace IPC