Copy as Markdown

Other Tools

//
// Automatically generated by ipdlc.
// Edit at your own risk
//
#include "mozilla/_ipdltest/PTestDestroyNestedSubParent.h"
#include "mozilla/ProfilerLabels.h"
#include "mozilla/_ipdltest/PTestDestroyNestedParent.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 {
MOZ_IMPLICIT PTestDestroyNestedSubParent::PTestDestroyNestedSubParent() :
mozilla::ipc::IRefCountedProtocol(kProtocolId, mozilla::ipc::ParentSide)
{
MOZ_COUNT_CTOR(PTestDestroyNestedSubParent);
}
PTestDestroyNestedSubParent::~PTestDestroyNestedSubParent()
{
MOZ_COUNT_DTOR(PTestDestroyNestedSubParent);
}
auto PTestDestroyNestedSubParent::ActorAlloc() -> void
{
AddRef();
}
auto PTestDestroyNestedSubParent::ActorDealloc() -> void
{
Release();
}
auto PTestDestroyNestedSubParent::Manager() const -> PTestDestroyNestedParent*
{
return static_cast<PTestDestroyNestedParent*>(IProtocol::Manager());
}
auto PTestDestroyNestedSubParent::ManagedProtocolIds() const -> mozilla::Span<mozilla::ipc::ProtocolId const>
{
return {};
}
auto PTestDestroyNestedSubParent::GetManagedActors(mozilla::ipc::ProtocolId aProtocol) -> UntypedManagedContainer*
{
switch (aProtocol) {
default:
return nullptr;
}
}
auto PTestDestroyNestedSubParent::Send__delete__(PTestDestroyNestedSubParent* actor) -> bool
{
if (!actor || !actor->CanSend()) {
NS_WARNING("Attempt to __delete__ missing or closed actor");
return false;
}
UniquePtr<IPC::Message> msg__ = PTestDestroyNestedSub::Msg___delete__((actor)->Id());
IPC::MessageWriter writer__{
(*(msg__)),
actor};
if (mozilla::ipc::LoggingEnabledFor("PTestDestroyNestedSub", mozilla::ipc::ParentSide)) {
mozilla::ipc::LogMessageForProtocol(
"PTestDestroyNestedSubParent",
actor->ToplevelProtocol()->OtherPidMaybeInvalid(),
"Sending ",
msg__->type(),
mozilla::ipc::MessageDirection::eSending);
}
AUTO_PROFILER_LABEL("PTestDestroyNestedSub::Msg___delete__", OTHER);
bool sendok__ = (actor)->ChannelSend(std::move(msg__));
actor->ActorDisconnected(Deletion);
return sendok__;
}
auto PTestDestroyNestedSubParent::DeallocManagee(
mozilla::ipc::ProtocolId aProtocolId,
IProtocol* aListener) -> void
{
FatalError("unreached");
return;
}
auto PTestDestroyNestedSubParent::OnMessageReceived(const Message& msg__) -> PTestDestroyNestedSubParent::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 PTestDestroyNestedSub::Reply___delete____ID:
{
return MsgProcessed;
}
default:
return MsgNotKnown;
}
}
auto PTestDestroyNestedSubParent::OnMessageReceived(
const Message& msg__,
UniquePtr<Message>& reply__) -> PTestDestroyNestedSubParent::Result
{
MOZ_ASSERT_UNREACHABLE("message protocol not supported");
return MsgNotKnown;
}
} // namespace _ipdltest
} // namespace mozilla
namespace IPC {
auto ParamTraits<::mozilla::_ipdltest::PTestDestroyNestedSubParent*>::Write(
IPC::MessageWriter* aWriter,
const paramType& aVar) -> void
{
IPC::WriteParam(aWriter, static_cast<mozilla::ipc::IProtocol*>(aVar));
// Sentinel = 'PTestDestroyNestedSub'
(aWriter)->WriteSentinel(1530857576);
}
auto ParamTraits<::mozilla::_ipdltest::PTestDestroyNestedSubParent*>::Read(IPC::MessageReader* aReader) -> IPC::ReadResult<paramType>
{
auto maybe__actor = IPC::ReadParam<mozilla::ipc::IProtocol*>(aReader);
if (!maybe__actor) {
aReader->FatalError("Error deserializing managed PTestDestroyNestedSub actor");
return {};
}
auto& actor = *maybe__actor;
// Sentinel = 'PTestDestroyNestedSub'
if ((!((aReader)->ReadSentinel(1530857576)))) {
mozilla::ipc::SentinelReadError("Error deserializing managed PTestDestroyNestedSub actor");
return {};
}
if (actor && actor->GetProtocolId() != PTestDestroyNestedSubMsgStart) {
aReader->FatalError("Unexpected actor type (expected PTestDestroyNestedSub)");
return {};
}
return static_cast<::mozilla::_ipdltest::PTestDestroyNestedSubParent*>(actor);
}
} // namespace IPC