Copy as Markdown
Other Tools
//
// Automatically generated by ipdlc.
// Edit at your own risk
//
#include "mozilla/_ipdltest/PTestJSONHandleChild.h"
#include "mozilla/ProfilerLabels.h"
#include "mozilla/_ipdltest/PTestJSONChild.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 PTestJSONHandleChild::Recv__delete__() -> mozilla::ipc::IPCResult
{
return IPC_OK();
}
MOZ_IMPLICIT PTestJSONHandleChild::PTestJSONHandleChild() :
mozilla::ipc::IRefCountedProtocol(kProtocolId, mozilla::ipc::ChildSide)
{
MOZ_COUNT_CTOR(PTestJSONHandleChild);
}
PTestJSONHandleChild::~PTestJSONHandleChild()
{
MOZ_COUNT_DTOR(PTestJSONHandleChild);
}
auto PTestJSONHandleChild::ActorAlloc() -> void
{
AddRef();
}
auto PTestJSONHandleChild::ActorDealloc() -> void
{
Release();
}
auto PTestJSONHandleChild::Manager() const -> PTestJSONChild*
{
return static_cast<PTestJSONChild*>(IProtocol::Manager());
}
auto PTestJSONHandleChild::ManagedProtocolIds() const -> mozilla::Span<mozilla::ipc::ProtocolId const>
{
return {};
}
auto PTestJSONHandleChild::GetManagedActors(mozilla::ipc::ProtocolId aProtocol) -> UntypedManagedContainer*
{
switch (aProtocol) {
default:
return nullptr;
}
}
auto PTestJSONHandleChild::DeallocManagee(
mozilla::ipc::ProtocolId aProtocolId,
IProtocol* aListener) -> void
{
FatalError("unreached");
return;
}
auto PTestJSONHandleChild::OnMessageReceived(const Message& msg__) -> PTestJSONHandleChild::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 PTestJSONHandle::Msg___delete____ID:
{
if (mozilla::ipc::LoggingEnabledFor("PTestJSONHandle", mozilla::ipc::ChildSide)) {
mozilla::ipc::LogMessageForProtocol(
"PTestJSONHandleChild",
this->ToplevelProtocol()->OtherPidMaybeInvalid(),
"Received ",
(&(msg__))->type(),
mozilla::ipc::MessageDirection::eReceiving);
}
AUTO_PROFILER_LABEL("PTestJSONHandle::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 PTestJSONHandleChild::OnMessageReceived(
const Message& msg__,
UniquePtr<Message>& reply__) -> PTestJSONHandleChild::Result
{
return MsgNotKnown;
}
} // namespace _ipdltest
} // namespace mozilla
namespace IPC {
auto ParamTraits<::mozilla::_ipdltest::PTestJSONHandleChild*>::Write(
IPC::MessageWriter* aWriter,
const paramType& aVar) -> void
{
IPC::WriteParam(aWriter, static_cast<mozilla::ipc::IProtocol*>(aVar));
// Sentinel = 'PTestJSONHandle'
(aWriter)->WriteSentinel(720831863);
}
auto ParamTraits<::mozilla::_ipdltest::PTestJSONHandleChild*>::Read(IPC::MessageReader* aReader) -> IPC::ReadResult<paramType>
{
auto maybe__actor = IPC::ReadParam<mozilla::ipc::IProtocol*>(aReader);
if (!maybe__actor) {
aReader->FatalError("Error deserializing managed PTestJSONHandle actor");
return {};
}
auto& actor = *maybe__actor;
// Sentinel = 'PTestJSONHandle'
if ((!((aReader)->ReadSentinel(720831863)))) {
mozilla::ipc::SentinelReadError("Error deserializing managed PTestJSONHandle actor");
return {};
}
if (actor && actor->GetProtocolId() != PTestJSONHandleMsgStart) {
aReader->FatalError("Unexpected actor type (expected PTestJSONHandle)");
return {};
}
return static_cast<::mozilla::_ipdltest::PTestJSONHandleChild*>(actor);
}
} // namespace IPC