Copy as Markdown

Other Tools

//
// Automatically generated by ipdlc.
// Edit at your own risk
//
#include "mozilla/_ipdltest/PTestMultiMgrsParent.h"
#include "mozilla/ProfilerLabels.h"
#include "mozilla/_ipdltest/PTestMultiMgrsLeftParent.h"
#include "mozilla/_ipdltest/PTestMultiMgrsRightParent.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 PTestMultiMgrsParent::ProcessingError(
Result aCode,
const char* aReason) -> void
{
}
auto PTestMultiMgrsParent::ShouldContinueFromReplyTimeout() -> bool
{
return true;
}
MOZ_IMPLICIT PTestMultiMgrsParent::PTestMultiMgrsParent() :
mozilla::ipc::IToplevelProtocol("PTestMultiMgrsParent", PTestMultiMgrsMsgStart, mozilla::ipc::ParentSide)
{
MOZ_COUNT_CTOR(PTestMultiMgrsParent);
}
PTestMultiMgrsParent::~PTestMultiMgrsParent()
{
MOZ_COUNT_DTOR(PTestMultiMgrsParent);
}
auto PTestMultiMgrsParent::ActorAlloc() -> void
{
MOZ_RELEASE_ASSERT(XRE_IsParentProcess(), "Invalid process for `PTestMultiMgrsParent'");
AddRef();
}
auto PTestMultiMgrsParent::ActorDealloc() -> void
{
Release();
}
auto PTestMultiMgrsParent::ManagedPTestMultiMgrsLeftParent(nsTArray<PTestMultiMgrsLeftParent*>& aArr) const -> void
{
mManagedPTestMultiMgrsLeftParent.ToArray(aArr);
}
auto PTestMultiMgrsParent::ManagedPTestMultiMgrsLeftParent() const -> const ManagedContainer<PTestMultiMgrsLeftParent>&
{
return mManagedPTestMultiMgrsLeftParent;
}
auto PTestMultiMgrsParent::ManagedPTestMultiMgrsRightParent(nsTArray<PTestMultiMgrsRightParent*>& aArr) const -> void
{
mManagedPTestMultiMgrsRightParent.ToArray(aArr);
}
auto PTestMultiMgrsParent::ManagedPTestMultiMgrsRightParent() const -> const ManagedContainer<PTestMultiMgrsRightParent>&
{
return mManagedPTestMultiMgrsRightParent;
}
auto PTestMultiMgrsParent::AllManagedActorsCount() const -> uint32_t
{
uint32_t total = 0;
total += mManagedPTestMultiMgrsLeftParent.Count();
total += mManagedPTestMultiMgrsRightParent.Count();
return total;
}
auto PTestMultiMgrsParent::OpenPTestMultiMgrsLeftEndpoint(PTestMultiMgrsLeftParent* aActor) -> ManagedEndpoint<PTestMultiMgrsLeftChild>
{
if (!aActor) {
NS_WARNING("Cannot bind null PTestMultiMgrsLeftParent actor");
return ManagedEndpoint<PTestMultiMgrsLeftChild>();
}
if (aActor->SetManagerAndRegister(this)) {
mManagedPTestMultiMgrsLeftParent.Insert(aActor);
} else {
NS_WARNING("Failed to bind PTestMultiMgrsLeftParent actor");
return ManagedEndpoint<PTestMultiMgrsLeftChild>();
}
// Mark our actor as awaiting the other side to be bound. This will
// be cleared when a `MANAGED_ENDPOINT_{DROPPED,BOUND}` message is
// received.
aActor->mAwaitingManagedEndpointBind = true;
return ManagedEndpoint<PTestMultiMgrsLeftChild>(mozilla::ipc::PrivateIPDLInterface(), aActor);
}
auto PTestMultiMgrsParent::BindPTestMultiMgrsLeftEndpoint(
ManagedEndpoint<PTestMultiMgrsLeftParent> aEndpoint,
PTestMultiMgrsLeftParent* aActor) -> bool
{
return aEndpoint.Bind(mozilla::ipc::PrivateIPDLInterface(), aActor, this, mManagedPTestMultiMgrsLeftParent);
}
auto PTestMultiMgrsParent::OpenPTestMultiMgrsRightEndpoint(PTestMultiMgrsRightParent* aActor) -> ManagedEndpoint<PTestMultiMgrsRightChild>
{
if (!aActor) {
NS_WARNING("Cannot bind null PTestMultiMgrsRightParent actor");
return ManagedEndpoint<PTestMultiMgrsRightChild>();
}
if (aActor->SetManagerAndRegister(this)) {
mManagedPTestMultiMgrsRightParent.Insert(aActor);
} else {
NS_WARNING("Failed to bind PTestMultiMgrsRightParent actor");
return ManagedEndpoint<PTestMultiMgrsRightChild>();
}
// Mark our actor as awaiting the other side to be bound. This will
// be cleared when a `MANAGED_ENDPOINT_{DROPPED,BOUND}` message is
// received.
aActor->mAwaitingManagedEndpointBind = true;
return ManagedEndpoint<PTestMultiMgrsRightChild>(mozilla::ipc::PrivateIPDLInterface(), aActor);
}
auto PTestMultiMgrsParent::BindPTestMultiMgrsRightEndpoint(
ManagedEndpoint<PTestMultiMgrsRightParent> aEndpoint,
PTestMultiMgrsRightParent* aActor) -> bool
{
return aEndpoint.Bind(mozilla::ipc::PrivateIPDLInterface(), aActor, this, mManagedPTestMultiMgrsRightParent);
}
auto PTestMultiMgrsParent::SendPTestMultiMgrsLeftConstructor(PTestMultiMgrsLeftParent* actor) -> PTestMultiMgrsLeftParent*
{
if (!actor) {
NS_WARNING("Cannot bind null PTestMultiMgrsLeftParent actor");
return nullptr;
}
if (actor->SetManagerAndRegister(this)) {
mManagedPTestMultiMgrsLeftParent.Insert(actor);
} else {
NS_WARNING("Failed to bind PTestMultiMgrsLeftParent actor");
return nullptr;
}
// Build our constructor message.
UniquePtr<IPC::Message> msg__ = PTestMultiMgrs::Msg_PTestMultiMgrsLeftConstructor(MSG_ROUTING_CONTROL);
IPC::MessageWriter writer__{
(*(msg__)),
this};
IPC::WriteParam((&(writer__)), actor);
// Sentinel = 'actor'
((&(writer__)))->WriteSentinel(102892058);
// Notify the other side about the newly created actor. This can
// fail if our manager has already been destroyed.
//
// NOTE: If the send call fails due to toplevel channel teardown,
// the `IProtocol::ChannelSend` wrapper absorbs the error for us,
// so we don't tear down actors unexpectedly.
if (mozilla::ipc::LoggingEnabledFor("PTestMultiMgrs", mozilla::ipc::ParentSide)) {
mozilla::ipc::LogMessageForProtocol(
"PTestMultiMgrsParent",
this->ToplevelProtocol()->OtherPidMaybeInvalid(),
"Sending ",
msg__->type(),
mozilla::ipc::MessageDirection::eSending);
}
AUTO_PROFILER_LABEL("PTestMultiMgrs::Msg_PTestMultiMgrsLeftConstructor", OTHER);
bool sendok__ = ChannelSend(std::move(msg__));
// Warn, destroy the actor, and return null if the message failed to
// send. Otherwise, return the successfully created actor reference.
if (!sendok__) {
NS_WARNING("Error sending PTestMultiMgrsLeftParent constructor");
actor->ActorDisconnected(FailedConstructor);
return nullptr;
}
return actor;
}
auto PTestMultiMgrsParent::SendPTestMultiMgrsRightConstructor(PTestMultiMgrsRightParent* actor) -> PTestMultiMgrsRightParent*
{
if (!actor) {
NS_WARNING("Cannot bind null PTestMultiMgrsRightParent actor");
return nullptr;
}
if (actor->SetManagerAndRegister(this)) {
mManagedPTestMultiMgrsRightParent.Insert(actor);
} else {
NS_WARNING("Failed to bind PTestMultiMgrsRightParent actor");
return nullptr;
}
// Build our constructor message.
UniquePtr<IPC::Message> msg__ = PTestMultiMgrs::Msg_PTestMultiMgrsRightConstructor(MSG_ROUTING_CONTROL);
IPC::MessageWriter writer__{
(*(msg__)),
this};
IPC::WriteParam((&(writer__)), actor);
// Sentinel = 'actor'
((&(writer__)))->WriteSentinel(102892058);
// Notify the other side about the newly created actor. This can
// fail if our manager has already been destroyed.
//
// NOTE: If the send call fails due to toplevel channel teardown,
// the `IProtocol::ChannelSend` wrapper absorbs the error for us,
// so we don't tear down actors unexpectedly.
if (mozilla::ipc::LoggingEnabledFor("PTestMultiMgrs", mozilla::ipc::ParentSide)) {
mozilla::ipc::LogMessageForProtocol(
"PTestMultiMgrsParent",
this->ToplevelProtocol()->OtherPidMaybeInvalid(),
"Sending ",
msg__->type(),
mozilla::ipc::MessageDirection::eSending);
}
AUTO_PROFILER_LABEL("PTestMultiMgrs::Msg_PTestMultiMgrsRightConstructor", OTHER);
bool sendok__ = ChannelSend(std::move(msg__));
// Warn, destroy the actor, and return null if the message failed to
// send. Otherwise, return the successfully created actor reference.
if (!sendok__) {
NS_WARNING("Error sending PTestMultiMgrsRightParent constructor");
actor->ActorDisconnected(FailedConstructor);
return nullptr;
}
return actor;
}
auto PTestMultiMgrsParent::SendCheck() -> bool
{
UniquePtr<IPC::Message> msg__ = PTestMultiMgrs::Msg_Check(MSG_ROUTING_CONTROL);
IPC::MessageWriter writer__{
(*(msg__)),
this};
if (mozilla::ipc::LoggingEnabledFor("PTestMultiMgrs", mozilla::ipc::ParentSide)) {
mozilla::ipc::LogMessageForProtocol(
"PTestMultiMgrsParent",
this->ToplevelProtocol()->OtherPidMaybeInvalid(),
"Sending ",
msg__->type(),
mozilla::ipc::MessageDirection::eSending);
}
AUTO_PROFILER_LABEL("PTestMultiMgrs::Msg_Check", OTHER);
bool sendok__ = ChannelSend(std::move(msg__));
return sendok__;
}
auto PTestMultiMgrsParent::RemoveManagee(
int32_t aProtocolId,
IProtocol* aListener) -> void
{
switch (aProtocolId) {
case PTestMultiMgrsLeftMsgStart:
MOZ_ALWAYS_TRUE(mManagedPTestMultiMgrsLeftParent.EnsureRemoved(static_cast<PTestMultiMgrsLeftParent*>(aListener)));
return;
case PTestMultiMgrsRightMsgStart:
MOZ_ALWAYS_TRUE(mManagedPTestMultiMgrsRightParent.EnsureRemoved(static_cast<PTestMultiMgrsRightParent*>(aListener)));
return;
default:
FatalError("unreached");
return; }
}
auto PTestMultiMgrsParent::DeallocManagee(
int32_t aProtocolId,
IProtocol* aListener) -> void
{
switch (aProtocolId) {
default:
FatalError("unreached");
return;
}
}
auto PTestMultiMgrsParent::OnMessageReceived(const Message& msg__) -> PTestMultiMgrsParent::Result
{
int32_t route__ = msg__.routing_id();
if (MSG_ROUTING_CONTROL != route__) {
IProtocol* routed__ = Lookup(route__);
if (!routed__ || !routed__->GetLifecycleProxy()) {
if (mozilla::ipc::LoggingEnabledFor("PTestMultiMgrs", mozilla::ipc::ParentSide)) {
mozilla::ipc::LogMessageForProtocol(
"PTestMultiMgrsParent",
this->ToplevelProtocol()->OtherPidMaybeInvalid(),
"Ignored message for dead actor",
(&(msg__))->type(),
mozilla::ipc::MessageDirection::eSending);
}
return MsgProcessed;
}
RefPtr<mozilla::ipc::ActorLifecycleProxy> proxy__ =
routed__->GetLifecycleProxy();
return proxy__->Get()->OnMessageReceived(msg__);
}
switch (msg__.type()) {
case PTestMultiMgrs::Msg_OK__ID:
{
if (mozilla::ipc::LoggingEnabledFor("PTestMultiMgrs", mozilla::ipc::ParentSide)) {
mozilla::ipc::LogMessageForProtocol(
"PTestMultiMgrsParent",
this->ToplevelProtocol()->OtherPidMaybeInvalid(),
"Received ",
(&(msg__))->type(),
mozilla::ipc::MessageDirection::eReceiving);
}
AUTO_PROFILER_LABEL("PTestMultiMgrs::Msg_OK", OTHER);
mozilla::ipc::IPCResult __ok = (this)->RecvOK();
if ((!(__ok))) {
mozilla::ipc::ProtocolErrorBreakpoint("Handler returned error code!");
// Error handled in mozilla::ipc::IPCResult
return MsgProcessingError;
}
return MsgProcessed;
}
case PTestMultiMgrs::Reply_PTestMultiMgrsLeftConstructor__ID:
{
return MsgProcessed;
}
case PTestMultiMgrs::Reply_PTestMultiMgrsRightConstructor__ID:
{
return MsgProcessed;
}
case PTestMultiMgrs::Reply___delete____ID:
{
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 PTestMultiMgrsParent::OnMessageReceived(
const Message& msg__,
UniquePtr<Message>& reply__) -> PTestMultiMgrsParent::Result
{
MOZ_ASSERT_UNREACHABLE("message protocol not supported");
return MsgNotKnown;
}
auto PTestMultiMgrsParent::DoomSubtree() -> void
{
for (auto* key : mManagedPTestMultiMgrsLeftParent) {
key->DoomSubtree();
}
for (auto* key : mManagedPTestMultiMgrsRightParent) {
key->DoomSubtree();
}
SetDoomed();
}
auto PTestMultiMgrsParent::PeekManagedActor() -> IProtocol*
{
if (IProtocol* actor = mManagedPTestMultiMgrsLeftParent.Peek()) {
return actor;
}
if (IProtocol* actor = mManagedPTestMultiMgrsRightParent.Peek()) {
return actor;
}
return nullptr;
}
} // namespace _ipdltest
} // namespace mozilla
namespace IPC {
auto ParamTraits<::mozilla::_ipdltest::PTestMultiMgrsParent*>::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::PTestMultiMgrsParent*>::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, "PTestMultiMgrs", PTestMultiMgrsMsgStart);
if (actor.isSome()) {
return static_cast<::mozilla::_ipdltest::PTestMultiMgrsParent*>(actor.ref());
}
return {};
}
} // namespace IPC