Copy as Markdown

Other Tools

//
// Automatically generated by ipdlc.
// Edit at your own risk
//
#include "mozilla/_ipdltest/PTestUniquePtrIPCParent.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 PTestUniquePtrIPCParent::ProcessingError(
Result aCode,
const char* aReason) -> void
{
}
auto PTestUniquePtrIPCParent::ShouldContinueFromReplyTimeout() -> bool
{
return true;
}
MOZ_IMPLICIT PTestUniquePtrIPCParent::PTestUniquePtrIPCParent() :
mozilla::ipc::IToplevelProtocol("PTestUniquePtrIPCParent", PTestUniquePtrIPCMsgStart, mozilla::ipc::ParentSide)
{
MOZ_COUNT_CTOR(PTestUniquePtrIPCParent);
}
PTestUniquePtrIPCParent::~PTestUniquePtrIPCParent()
{
MOZ_COUNT_DTOR(PTestUniquePtrIPCParent);
}
auto PTestUniquePtrIPCParent::ActorAlloc() -> void
{
MOZ_RELEASE_ASSERT(XRE_IsParentProcess(), "Invalid process for `PTestUniquePtrIPCParent'");
AddRef();
}
auto PTestUniquePtrIPCParent::ActorDealloc() -> void
{
Release();
}
auto PTestUniquePtrIPCParent::AllManagedActorsCount() const -> uint32_t
{
uint32_t total = 0;
return total;
}
auto PTestUniquePtrIPCParent::SendTestMessage(
const UniquePtr<string>& a1,
const UniquePtr<DummyStruct>& a2,
const DummyStruct& a3,
const UniquePtr<string>& a4,
const DummyUnion& a5) -> bool
{
UniquePtr<IPC::Message> msg__ = PTestUniquePtrIPC::Msg_TestMessage(MSG_ROUTING_CONTROL);
IPC::MessageWriter writer__{
(*(msg__)),
this};
IPC::WriteParam((&(writer__)), a1);
// Sentinel = 'a1'
((&(writer__)))->WriteSentinel(16056467);
IPC::WriteParam((&(writer__)), a2);
// Sentinel = 'a2'
((&(writer__)))->WriteSentinel(16122004);
IPC::WriteParam((&(writer__)), a3);
// Sentinel = 'a3'
((&(writer__)))->WriteSentinel(16187541);
IPC::WriteParam((&(writer__)), a4);
// Sentinel = 'a4'
((&(writer__)))->WriteSentinel(16253078);
IPC::WriteParam((&(writer__)), a5);
// Sentinel = 'a5'
((&(writer__)))->WriteSentinel(16318615);
if (mozilla::ipc::LoggingEnabledFor("PTestUniquePtrIPC", mozilla::ipc::ParentSide)) {
mozilla::ipc::LogMessageForProtocol(
"PTestUniquePtrIPCParent",
this->ToplevelProtocol()->OtherPidMaybeInvalid(),
"Sending ",
msg__->type(),
mozilla::ipc::MessageDirection::eSending);
}
AUTO_PROFILER_LABEL("PTestUniquePtrIPC::Msg_TestMessage", OTHER);
bool sendok__ = ChannelSend(std::move(msg__));
return sendok__;
}
auto PTestUniquePtrIPCParent::SendTestSendReference(const UniquePtr<DummyStruct>& a) -> bool
{
UniquePtr<IPC::Message> msg__ = PTestUniquePtrIPC::Msg_TestSendReference(MSG_ROUTING_CONTROL);
IPC::MessageWriter writer__{
(*(msg__)),
this};
IPC::WriteParam((&(writer__)), a);
// Sentinel = 'a'
((&(writer__)))->WriteSentinel(6422626);
if (mozilla::ipc::LoggingEnabledFor("PTestUniquePtrIPC", mozilla::ipc::ParentSide)) {
mozilla::ipc::LogMessageForProtocol(
"PTestUniquePtrIPCParent",
this->ToplevelProtocol()->OtherPidMaybeInvalid(),
"Sending ",
msg__->type(),
mozilla::ipc::MessageDirection::eSending);
}
AUTO_PROFILER_LABEL("PTestUniquePtrIPC::Msg_TestSendReference", OTHER);
bool sendok__ = ChannelSend(std::move(msg__));
return sendok__;
}
auto PTestUniquePtrIPCParent::RemoveManagee(
int32_t aProtocolId,
IProtocol* aListener) -> void
{
FatalError("unreached");
return;
}
auto PTestUniquePtrIPCParent::DeallocManagee(
int32_t aProtocolId,
IProtocol* aListener) -> void
{
FatalError("unreached");
return;
}
auto PTestUniquePtrIPCParent::OnMessageReceived(const Message& msg__) -> PTestUniquePtrIPCParent::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 PTestUniquePtrIPCParent::OnMessageReceived(
const Message& msg__,
UniquePtr<Message>& reply__) -> PTestUniquePtrIPCParent::Result
{
MOZ_ASSERT_UNREACHABLE("message protocol not supported");
return MsgNotKnown;
}
auto PTestUniquePtrIPCParent::DoomSubtree() -> void
{
SetDoomed();
}
auto PTestUniquePtrIPCParent::PeekManagedActor() -> IProtocol*
{
return nullptr;
}
} // namespace _ipdltest
} // namespace mozilla
namespace IPC {
auto ParamTraits<::mozilla::_ipdltest::PTestUniquePtrIPCParent*>::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::PTestUniquePtrIPCParent*>::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, "PTestUniquePtrIPC", PTestUniquePtrIPCMsgStart);
if (actor.isSome()) {
return static_cast<::mozilla::_ipdltest::PTestUniquePtrIPCParent*>(actor.ref());
}
return {};
}
} // namespace IPC