Copy as Markdown

Other Tools

//
// Automatically generated by ipdlc.
// Edit at your own risk
//
#include "mozilla/_ipdltest/PTestCrossProcessSemaphoreChild.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 PTestCrossProcessSemaphoreChild::ProcessingError(
Result aCode,
const char* aReason) -> void
{
}
auto PTestCrossProcessSemaphoreChild::ShouldContinueFromReplyTimeout() -> bool
{
return true;
}
MOZ_IMPLICIT PTestCrossProcessSemaphoreChild::PTestCrossProcessSemaphoreChild() :
mozilla::ipc::IToplevelProtocol("PTestCrossProcessSemaphoreChild", PTestCrossProcessSemaphoreMsgStart, mozilla::ipc::ChildSide)
{
MOZ_COUNT_CTOR(PTestCrossProcessSemaphoreChild);
}
PTestCrossProcessSemaphoreChild::~PTestCrossProcessSemaphoreChild()
{
MOZ_COUNT_DTOR(PTestCrossProcessSemaphoreChild);
}
auto PTestCrossProcessSemaphoreChild::ActorAlloc() -> void
{
AddRef();
}
auto PTestCrossProcessSemaphoreChild::ActorDealloc() -> void
{
Release();
}
auto PTestCrossProcessSemaphoreChild::AllManagedActorsCount() const -> uint32_t
{
uint32_t total = 0;
return total;
}
auto PTestCrossProcessSemaphoreChild::RemoveManagee(
int32_t aProtocolId,
IProtocol* aListener) -> void
{
FatalError("unreached");
return;
}
auto PTestCrossProcessSemaphoreChild::DeallocManagee(
int32_t aProtocolId,
IProtocol* aListener) -> void
{
FatalError("unreached");
return;
}
auto PTestCrossProcessSemaphoreChild::OnMessageReceived(const Message& msg__) -> PTestCrossProcessSemaphoreChild::Result
{
switch (msg__.type()) {
case PTestCrossProcessSemaphore::Msg_CrossProcessSemaphore__ID:
{
if (mozilla::ipc::LoggingEnabledFor("PTestCrossProcessSemaphore", mozilla::ipc::ChildSide)) {
mozilla::ipc::LogMessageForProtocol(
"PTestCrossProcessSemaphoreChild",
this->ToplevelProtocol()->OtherPidMaybeInvalid(),
"Received ",
(&(msg__))->type(),
mozilla::ipc::MessageDirection::eReceiving);
}
AUTO_PROFILER_LABEL("PTestCrossProcessSemaphore::Msg_CrossProcessSemaphore", OTHER);
IPC::MessageReader reader__{
msg__,
this};
auto maybe__aSem = IPC::ReadParam<CrossProcessSemaphoreHandle>((&(reader__)));
if (!maybe__aSem) {
FatalError("Error deserializing 'CrossProcessSemaphoreHandle'");
return MsgValueError;
}
auto& aSem = *maybe__aSem;
// Sentinel = 'aSem'
if ((!(((&(reader__)))->ReadSentinel(62390663)))) {
mozilla::ipc::SentinelReadError("Error deserializing 'CrossProcessSemaphoreHandle'");
return MsgValueError;
}
reader__.EndRead();
mozilla::ipc::IPCResult __ok = (this)->RecvCrossProcessSemaphore(std::move(aSem));
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 PTestCrossProcessSemaphoreChild::OnMessageReceived(
const Message& msg__,
UniquePtr<Message>& reply__) -> PTestCrossProcessSemaphoreChild::Result
{
MOZ_ASSERT_UNREACHABLE("message protocol not supported");
return MsgNotKnown;
}
auto PTestCrossProcessSemaphoreChild::DoomSubtree() -> void
{
SetDoomed();
}
auto PTestCrossProcessSemaphoreChild::PeekManagedActor() -> IProtocol*
{
return nullptr;
}
} // namespace _ipdltest
} // namespace mozilla
namespace IPC {
auto ParamTraits<::mozilla::_ipdltest::PTestCrossProcessSemaphoreChild*>::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::PTestCrossProcessSemaphoreChild*>::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, "PTestCrossProcessSemaphore", PTestCrossProcessSemaphoreMsgStart);
if (actor.isSome()) {
return static_cast<::mozilla::_ipdltest::PTestCrossProcessSemaphoreChild*>(actor.ref());
}
return {};
}
} // namespace IPC