Copy as Markdown

Other Tools

//
// Automatically generated by ipdlc.
// Edit at your own risk
//
#include "mozilla/_ipdltest/PTestHangsChild.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 PTestHangsChild::ProcessingError(
Result aCode,
const char* aReason) -> void
{
}
auto PTestHangsChild::ShouldContinueFromReplyTimeout() -> bool
{
return true;
}
MOZ_IMPLICIT PTestHangsChild::PTestHangsChild() :
mozilla::ipc::IToplevelProtocol("PTestHangsChild", PTestHangsMsgStart, mozilla::ipc::ChildSide)
{
MOZ_COUNT_CTOR(PTestHangsChild);
}
PTestHangsChild::~PTestHangsChild()
{
MOZ_COUNT_DTOR(PTestHangsChild);
}
auto PTestHangsChild::ActorAlloc() -> void
{
AddRef();
}
auto PTestHangsChild::ActorDealloc() -> void
{
Release();
}
auto PTestHangsChild::AllManagedActorsCount() const -> uint32_t
{
uint32_t total = 0;
return total;
}
auto PTestHangsChild::SendHang(
const uint32_t& hangMode,
CrossProcessSemaphoreHandle&& timeout) -> bool
{
UniquePtr<IPC::Message> msg__ = PTestHangs::Msg_Hang(MSG_ROUTING_CONTROL);
IPC::MessageWriter writer__{
(*(msg__)),
this};
IPC::WriteParam((&(writer__)), hangMode);
// Sentinel = 'hangMode'
((&(writer__)))->WriteSentinel(238289700);
IPC::WriteParam((&(writer__)), std::move(timeout));
// Sentinel = 'timeout'
((&(writer__)))->WriteSentinel(201917192);
UniquePtr<Message> reply__;
if (mozilla::ipc::LoggingEnabledFor("PTestHangs", mozilla::ipc::ChildSide)) {
mozilla::ipc::LogMessageForProtocol(
"PTestHangsChild",
this->ToplevelProtocol()->OtherPidMaybeInvalid(),
"Sending ",
msg__->type(),
mozilla::ipc::MessageDirection::eSending);
}
AUTO_PROFILER_LABEL("PTestHangs::Msg_Hang", OTHER);
bool sendok__ = false;
{
AUTO_PROFILER_TRACING_MARKER("Sync IPC", "PTestHangs::Msg_Hang", IPC);
sendok__ = ChannelSend(std::move(msg__), (&(reply__)));
}
if ((!(sendok__))) {
return false;
}
if (mozilla::ipc::LoggingEnabledFor("PTestHangs", mozilla::ipc::ChildSide)) {
mozilla::ipc::LogMessageForProtocol(
"PTestHangsChild",
this->ToplevelProtocol()->OtherPidMaybeInvalid(),
"Received reply ",
reply__->type(),
mozilla::ipc::MessageDirection::eReceiving);
}
return true;
}
auto PTestHangsChild::RemoveManagee(
int32_t aProtocolId,
IProtocol* aListener) -> void
{
FatalError("unreached");
return;
}
auto PTestHangsChild::DeallocManagee(
int32_t aProtocolId,
IProtocol* aListener) -> void
{
FatalError("unreached");
return;
}
auto PTestHangsChild::OnMessageReceived(const Message& msg__) -> PTestHangsChild::Result
{
switch (msg__.type()) {
case PTestHangs::Msg_Start__ID:
{
if (mozilla::ipc::LoggingEnabledFor("PTestHangs", mozilla::ipc::ChildSide)) {
mozilla::ipc::LogMessageForProtocol(
"PTestHangsChild",
this->ToplevelProtocol()->OtherPidMaybeInvalid(),
"Received ",
(&(msg__))->type(),
mozilla::ipc::MessageDirection::eReceiving);
}
AUTO_PROFILER_LABEL("PTestHangs::Msg_Start", OTHER);
IPC::MessageReader reader__{
msg__,
this};
auto maybe__hangMode = IPC::ReadParam<uint32_t>((&(reader__)));
if (!maybe__hangMode) {
FatalError("Error deserializing 'uint32_t'");
return MsgValueError;
}
auto& hangMode = *maybe__hangMode;
// Sentinel = 'hangMode'
if ((!(((&(reader__)))->ReadSentinel(238289700)))) {
mozilla::ipc::SentinelReadError("Error deserializing 'uint32_t'");
return MsgValueError;
}
reader__.EndRead();
int32_t id__ = MSG_ROUTING_CONTROL;
UniquePtr<IPC::Message> reply__(PTestHangs::Reply_Start(id__));
reply__->set_seqno(msg__.seqno());
RefPtr<mozilla::ipc::IPDLResolverInner> resolver__ =
new mozilla::ipc::IPDLResolverInner(std::move(reply__), this);
StartResolver resolver = [resolver__ = std::move(resolver__)](const bool& aParam) {
resolver__->Resolve([&] (IPC::Message* reply__, IProtocol* self__) {
IPC::MessageWriter writer__(*reply__, self__);
IPC::WriteParam((&(writer__)), aParam);
// Sentinel = 'detectedHang'
((&(writer__)))->WriteSentinel(524551361);
if (mozilla::ipc::LoggingEnabledFor("PTestHangs", mozilla::ipc::ChildSide)) {
mozilla::ipc::LogMessageForProtocol(
"PTestHangsChild",
self__->ToplevelProtocol()->OtherPidMaybeInvalid(),
"Sending reply ",
reply__->type(),
mozilla::ipc::MessageDirection::eSending);
}
});
};
mozilla::ipc::IPCResult __ok = (this)->RecvStart(std::move(hangMode), std::move(resolver));
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 PTestHangsChild::OnMessageReceived(
const Message& msg__,
UniquePtr<Message>& reply__) -> PTestHangsChild::Result
{
return MsgNotKnown;
}
auto PTestHangsChild::DoomSubtree() -> void
{
SetDoomed();
}
auto PTestHangsChild::PeekManagedActor() -> IProtocol*
{
return nullptr;
}
} // namespace _ipdltest
} // namespace mozilla
namespace IPC {
auto ParamTraits<::mozilla::_ipdltest::PTestHangsChild*>::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::PTestHangsChild*>::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, "PTestHangs", PTestHangsMsgStart);
if (actor.isSome()) {
return static_cast<::mozilla::_ipdltest::PTestHangsChild*>(actor.ref());
}
return {};
}
} // namespace IPC