Copy as Markdown

Other Tools

//
// Automatically generated by ipdlc.
// Edit at your own risk
//
#include "mozilla/dom/PClientHandleParent.h"
#include "ipc/ErrorIPCUtils.h"
#include "mozilla/ProfilerLabels.h"
#include "mozilla/dom/BindingIPCUtils.h"
#include "mozilla/dom/ClientIPCUtils.h"
#include "mozilla/ipc/ProtocolMessageUtils.h"
#include "mozilla/dom/PClientManagerParent.h"
#include "mozilla/dom/PClientHandleOpParent.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 dom {
auto PClientHandleParent::RecvPClientHandleOpConstructor(
PClientHandleOpParent* actor,
const ClientOpConstructorArgs& aArgs) -> mozilla::ipc::IPCResult
{
return IPC_OK();
}
MOZ_IMPLICIT PClientHandleParent::PClientHandleParent() :
mozilla::ipc::IRefCountedProtocol(PClientHandleMsgStart, mozilla::ipc::ParentSide)
{
MOZ_COUNT_CTOR(PClientHandleParent);
}
PClientHandleParent::~PClientHandleParent()
{
MOZ_COUNT_DTOR(PClientHandleParent);
}
auto PClientHandleParent::ActorAlloc() -> void
{
AddRef();
}
auto PClientHandleParent::ActorDealloc() -> void
{
Release();
}
auto PClientHandleParent::OtherPid() const -> ::base::ProcessId
{
::base::ProcessId pid =
::mozilla::ipc::IProtocol::ToplevelProtocol()->OtherPidMaybeInvalid();
MOZ_RELEASE_ASSERT(pid != ::base::kInvalidProcessId);
return pid;
}
auto PClientHandleParent::Manager() const -> PClientManagerParent*
{
return static_cast<PClientManagerParent*>(IProtocol::Manager());
}
auto PClientHandleParent::ManagedPClientHandleOpParent(nsTArray<PClientHandleOpParent*>& aArr) const -> void
{
mManagedPClientHandleOpParent.ToArray(aArr);
}
auto PClientHandleParent::ManagedPClientHandleOpParent() const -> const ManagedContainer<PClientHandleOpParent>&
{
return mManagedPClientHandleOpParent;
}
auto PClientHandleParent::AllManagedActorsCount() const -> uint32_t
{
uint32_t total = 0;
total += mManagedPClientHandleOpParent.Count();
return total;
}
auto PClientHandleParent::OpenPClientHandleOpEndpoint(PClientHandleOpParent* aActor) -> ManagedEndpoint<PClientHandleOpChild>
{
if (!aActor) {
NS_WARNING("Cannot bind null PClientHandleOpParent actor");
return ManagedEndpoint<PClientHandleOpChild>();
}
if (aActor->SetManagerAndRegister(this)) {
mManagedPClientHandleOpParent.Insert(aActor);
} else {
NS_WARNING("Failed to bind PClientHandleOpParent actor");
return ManagedEndpoint<PClientHandleOpChild>();
}
// 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<PClientHandleOpChild>(mozilla::ipc::PrivateIPDLInterface(), aActor);
}
auto PClientHandleParent::BindPClientHandleOpEndpoint(
ManagedEndpoint<PClientHandleOpParent> aEndpoint,
PClientHandleOpParent* aActor) -> bool
{
return aEndpoint.Bind(mozilla::ipc::PrivateIPDLInterface(), aActor, this, mManagedPClientHandleOpParent);
}
auto PClientHandleParent::SendExecutionReady(const IPCClientInfo& aClientInfo) -> bool
{
UniquePtr<IPC::Message> msg__ = PClientHandle::Msg_ExecutionReady(Id());
IPC::MessageWriter writer__{
(*(msg__)),
this};
IPC::WriteParam((&(writer__)), aClientInfo);
// Sentinel = 'aClientInfo'
((&(writer__)))->WriteSentinel(422315085);
if (mozilla::ipc::LoggingEnabledFor("PClientHandle", mozilla::ipc::ParentSide)) {
mozilla::ipc::LogMessageForProtocol(
"PClientHandleParent",
this->ToplevelProtocol()->OtherPidMaybeInvalid(),
"Sending ",
msg__->type(),
mozilla::ipc::MessageDirection::eSending);
}
AUTO_PROFILER_LABEL("PClientHandle::Msg_ExecutionReady", OTHER);
bool sendok__ = ChannelSend(std::move(msg__));
return sendok__;
}
auto PClientHandleParent::Send__delete__(PClientHandleParent* actor) -> bool
{
if (!actor || !actor->CanSend()) {
NS_WARNING("Attempt to __delete__ missing or closed actor");
return false;
}
UniquePtr<IPC::Message> msg__ = PClientHandle::Msg___delete__((actor)->Id());
IPC::MessageWriter writer__{
(*(msg__)),
actor};
if (mozilla::ipc::LoggingEnabledFor("PClientHandle", mozilla::ipc::ParentSide)) {
mozilla::ipc::LogMessageForProtocol(
"PClientHandleParent",
actor->ToplevelProtocol()->OtherPidMaybeInvalid(),
"Sending ",
msg__->type(),
mozilla::ipc::MessageDirection::eSending);
}
AUTO_PROFILER_LABEL("PClientHandle::Msg___delete__", OTHER);
bool sendok__ = (actor)->ChannelSend(std::move(msg__));
actor->ActorDisconnected(Deletion);
return sendok__;
}
auto PClientHandleParent::RemoveManagee(
int32_t aProtocolId,
IProtocol* aListener) -> void
{
switch (aProtocolId) {
case PClientHandleOpMsgStart:
MOZ_ALWAYS_TRUE(mManagedPClientHandleOpParent.EnsureRemoved(static_cast<PClientHandleOpParent*>(aListener)));
return;
default:
FatalError("unreached");
return; }
}
auto PClientHandleParent::DeallocManagee(
int32_t aProtocolId,
IProtocol* aListener) -> void
{
switch (aProtocolId) {
case PClientHandleOpMsgStart:
this->DeallocPClientHandleOpParent(static_cast<PClientHandleOpParent*>(aListener));
return;
default:
FatalError("unreached");
return;
}
}
auto PClientHandleParent::OnMessageReceived(const Message& msg__) -> PClientHandleParent::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 PClientHandle::Msg_Teardown__ID:
{
if (mozilla::ipc::LoggingEnabledFor("PClientHandle", mozilla::ipc::ParentSide)) {
mozilla::ipc::LogMessageForProtocol(
"PClientHandleParent",
this->ToplevelProtocol()->OtherPidMaybeInvalid(),
"Received ",
(&(msg__))->type(),
mozilla::ipc::MessageDirection::eReceiving);
}
AUTO_PROFILER_LABEL("PClientHandle::Msg_Teardown", OTHER);
mozilla::ipc::IPCResult __ok = (this)->RecvTeardown();
if ((!(__ok))) {
mozilla::ipc::ProtocolErrorBreakpoint("Handler returned error code!");
// Error handled in mozilla::ipc::IPCResult
return MsgProcessingError;
}
return MsgProcessed;
}
case PClientHandle::Msg_PClientHandleOpConstructor__ID:
{
if (mozilla::ipc::LoggingEnabledFor("PClientHandle", mozilla::ipc::ParentSide)) {
mozilla::ipc::LogMessageForProtocol(
"PClientHandleParent",
this->ToplevelProtocol()->OtherPidMaybeInvalid(),
"Received ",
(&(msg__))->type(),
mozilla::ipc::MessageDirection::eReceiving);
}
AUTO_PROFILER_LABEL("PClientHandle::Msg_PClientHandleOpConstructor", OTHER);
IPC::MessageReader reader__{
msg__,
this};
auto maybe__handle__ = IPC::ReadParam<ActorHandle>((&(reader__)));
if (!maybe__handle__) {
FatalError("Error deserializing 'ActorHandle'");
return MsgValueError;
}
auto& handle__ = *maybe__handle__;
// Sentinel = 'actor'
if ((!(((&(reader__)))->ReadSentinel(102892058)))) {
mozilla::ipc::SentinelReadError("Error deserializing 'ActorHandle'");
return MsgValueError;
}
auto maybe__aArgs = IPC::ReadParam<ClientOpConstructorArgs>((&(reader__)));
if (!maybe__aArgs) {
FatalError("Error deserializing 'ClientOpConstructorArgs'");
return MsgValueError;
}
auto& aArgs = *maybe__aArgs;
// Sentinel = 'aArgs'
if ((!(((&(reader__)))->ReadSentinel(92602863)))) {
mozilla::ipc::SentinelReadError("Error deserializing 'ClientOpConstructorArgs'");
return MsgValueError;
}
reader__.EndRead();
PClientHandleOpParent* actor = (this)->AllocPClientHandleOpParent(aArgs);
if (!actor) {
NS_WARNING("Cannot bind null PClientHandleOpParent actor");
return MsgValueError;
}
if (actor->SetManagerAndRegister(this, (handle__).mId)) {
mManagedPClientHandleOpParent.Insert(actor);
} else {
NS_WARNING("Failed to bind PClientHandleOpParent actor");
return MsgValueError;
}
mozilla::ipc::IPCResult __ok = (this)->RecvPClientHandleOpConstructor(std::move(actor), std::move(aArgs));
if ((!(__ok))) {
mozilla::ipc::ProtocolErrorBreakpoint("Handler returned error code!");
// Error handled in mozilla::ipc::IPCResult
return MsgProcessingError;
}
return MsgProcessed;
}
case PClientHandle::Reply___delete____ID:
{
return MsgProcessed;
}
default:
return MsgNotKnown;
}
}
auto PClientHandleParent::OnMessageReceived(
const Message& msg__,
UniquePtr<Message>& reply__) -> PClientHandleParent::Result
{
return MsgNotKnown;
}
auto PClientHandleParent::DoomSubtree() -> void
{
for (auto* key : mManagedPClientHandleOpParent) {
key->DoomSubtree();
}
SetDoomed();
}
auto PClientHandleParent::PeekManagedActor() -> IProtocol*
{
if (IProtocol* actor = mManagedPClientHandleOpParent.Peek()) {
return actor;
}
return nullptr;
}
} // namespace dom
} // namespace mozilla
namespace IPC {
auto ParamTraits<::mozilla::dom::PClientHandleParent*>::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::dom::PClientHandleParent*>::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, "PClientHandle", PClientHandleMsgStart);
if (actor.isSome()) {
return static_cast<::mozilla::dom::PClientHandleParent*>(actor.ref());
}
return {};
}
} // namespace IPC