Copy as Markdown

Other Tools

//
// Automatically generated by ipdlc.
// Edit at your own risk
//
#include "mozilla/dom/PClientSourceParent.h"
#include "ipc/ErrorIPCUtils.h"
#include "mozilla/ProfilerLabels.h"
#include "mozilla/dom/BindingIPCUtils.h"
#include "mozilla/dom/ClientIPCUtils.h"
#include "mozilla/dom/PClientManagerParent.h"
#include "mozilla/dom/PClientSourceOpParent.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 {
MOZ_IMPLICIT PClientSourceParent::PClientSourceParent() :
mozilla::ipc::IRefCountedProtocol(PClientSourceMsgStart, mozilla::ipc::ParentSide)
{
MOZ_COUNT_CTOR(PClientSourceParent);
}
PClientSourceParent::~PClientSourceParent()
{
MOZ_COUNT_DTOR(PClientSourceParent);
}
auto PClientSourceParent::ActorAlloc() -> void
{
AddRef();
}
auto PClientSourceParent::ActorDealloc() -> void
{
Release();
}
auto PClientSourceParent::OtherPid() const -> ::base::ProcessId
{
::base::ProcessId pid =
::mozilla::ipc::IProtocol::ToplevelProtocol()->OtherPidMaybeInvalid();
MOZ_RELEASE_ASSERT(pid != ::base::kInvalidProcessId);
return pid;
}
auto PClientSourceParent::Manager() const -> PClientManagerParent*
{
return static_cast<PClientManagerParent*>(IProtocol::Manager());
}
auto PClientSourceParent::ManagedPClientSourceOpParent(nsTArray<PClientSourceOpParent*>& aArr) const -> void
{
mManagedPClientSourceOpParent.ToArray(aArr);
}
auto PClientSourceParent::ManagedPClientSourceOpParent() const -> const ManagedContainer<PClientSourceOpParent>&
{
return mManagedPClientSourceOpParent;
}
auto PClientSourceParent::AllManagedActors(nsTArray<RefPtr<mozilla::ipc::ActorLifecycleProxy>>& arr__) const -> void
{
uint32_t total = 0;
total += mManagedPClientSourceOpParent.Count();
arr__.SetCapacity(total);
for (auto* key : mManagedPClientSourceOpParent) {
arr__.AppendElement(key->GetLifecycleProxy());
}
}
auto PClientSourceParent::AllManagedActorsCount() const -> uint32_t
{
uint32_t total = 0;
total += mManagedPClientSourceOpParent.Count();
return total;
}
auto PClientSourceParent::OpenPClientSourceOpEndpoint(PClientSourceOpParent* aActor) -> ManagedEndpoint<PClientSourceOpChild>
{
if (!aActor) {
NS_WARNING("Cannot bind null PClientSourceOpParent actor");
return ManagedEndpoint<PClientSourceOpChild>();
}
aActor->SetManagerAndRegister(this);
mManagedPClientSourceOpParent.Insert(aActor);
// 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<PClientSourceOpChild>(mozilla::ipc::PrivateIPDLInterface(), aActor);
}
auto PClientSourceParent::BindPClientSourceOpEndpoint(
ManagedEndpoint<PClientSourceOpParent> aEndpoint,
PClientSourceOpParent* aActor) -> bool
{
return aEndpoint.Bind(mozilla::ipc::PrivateIPDLInterface(), aActor, this, mManagedPClientSourceOpParent);
}
auto PClientSourceParent::SendPClientSourceOpConstructor(const ClientOpConstructorArgs& aArgs) -> PClientSourceOpParent*
{
PClientSourceOpParent* actor = (this)->AllocPClientSourceOpParent(aArgs);
return SendPClientSourceOpConstructor(std::move(actor), std::move(aArgs));
}
auto PClientSourceParent::SendPClientSourceOpConstructor(
PClientSourceOpParent* actor,
const ClientOpConstructorArgs& aArgs) -> PClientSourceOpParent*
{
if (!actor) {
NS_WARNING("Cannot bind null PClientSourceOpParent actor");
return nullptr;
}
actor->SetManagerAndRegister(this);
mManagedPClientSourceOpParent.Insert(actor);
// Build our constructor message.
UniquePtr<IPC::Message> msg__ = PClientSource::Msg_PClientSourceOpConstructor(Id());
IPC::MessageWriter writer__{
(*(msg__)),
this};
IPC::WriteParam((&(writer__)), actor);
// Sentinel = 'actor'
((&(writer__)))->WriteSentinel(102892058);
IPC::WriteParam((&(writer__)), aArgs);
// Sentinel = 'aArgs'
((&(writer__)))->WriteSentinel(92602863);
// 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("PClientSource", mozilla::ipc::ParentSide)) {
mozilla::ipc::LogMessageForProtocol(
"PClientSourceParent",
this->ToplevelProtocol()->OtherPidMaybeInvalid(),
"Sending ",
msg__->type(),
mozilla::ipc::MessageDirection::eSending);
}
AUTO_PROFILER_LABEL("PClientSource::Msg_PClientSourceOpConstructor", 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 PClientSourceOpParent constructor");
IProtocol* mgr = actor->Manager();
actor->DestroySubtree(FailedConstructor);
actor->ClearSubtree();
mgr->RemoveManagee(PClientSourceOpMsgStart, actor);
return nullptr;
}
return actor;
}
auto PClientSourceParent::SendEvictFromBFCache() -> bool
{
UniquePtr<IPC::Message> msg__ = PClientSource::Msg_EvictFromBFCache(Id());
IPC::MessageWriter writer__{
(*(msg__)),
this};
if (mozilla::ipc::LoggingEnabledFor("PClientSource", mozilla::ipc::ParentSide)) {
mozilla::ipc::LogMessageForProtocol(
"PClientSourceParent",
this->ToplevelProtocol()->OtherPidMaybeInvalid(),
"Sending ",
msg__->type(),
mozilla::ipc::MessageDirection::eSending);
}
AUTO_PROFILER_LABEL("PClientSource::Msg_EvictFromBFCache", OTHER);
bool sendok__ = ChannelSend(std::move(msg__));
return sendok__;
}
auto PClientSourceParent::Send__delete__(PClientSourceParent* actor) -> bool
{
if (!actor || !actor->CanSend()) {
NS_WARNING("Attempt to __delete__ missing or closed actor");
return false;
}
UniquePtr<IPC::Message> msg__ = PClientSource::Msg___delete__((actor)->Id());
IPC::MessageWriter writer__{
(*(msg__)),
actor};
if (mozilla::ipc::LoggingEnabledFor("PClientSource", mozilla::ipc::ParentSide)) {
mozilla::ipc::LogMessageForProtocol(
"PClientSourceParent",
actor->ToplevelProtocol()->OtherPidMaybeInvalid(),
"Sending ",
msg__->type(),
mozilla::ipc::MessageDirection::eSending);
}
AUTO_PROFILER_LABEL("PClientSource::Msg___delete__", OTHER);
bool sendok__ = (actor)->ChannelSend(std::move(msg__));
IProtocol* mgr = actor->Manager();
actor->DestroySubtree(Deletion);
actor->ClearSubtree();
mgr->RemoveManagee(PClientSourceMsgStart, actor);
return sendok__;
}
auto PClientSourceParent::RemoveManagee(
int32_t aProtocolId,
IProtocol* aListener) -> void
{
switch (aProtocolId) {
case PClientSourceOpMsgStart:
{
PClientSourceOpParent* actor = static_cast<PClientSourceOpParent*>(aListener);
const bool removed = mManagedPClientSourceOpParent.EnsureRemoved(actor);
MOZ_RELEASE_ASSERT(removed, "actor not managed by this!");
auto* proxy = actor->GetLifecycleProxy();
NS_IF_RELEASE(proxy);
return;
} default:
FatalError("unreached");
return; }
}
auto PClientSourceParent::DeallocManagee(
int32_t aProtocolId,
IProtocol* aListener) -> void
{
switch (aProtocolId) {
case PClientSourceOpMsgStart:
this->DeallocPClientSourceOpParent(static_cast<PClientSourceOpParent*>(aListener));
return;
default:
FatalError("unreached");
return;
}
}
auto PClientSourceParent::OnMessageReceived(const Message& msg__) -> PClientSourceParent::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;
IProtocol* mgr = this->Manager();
this->DestroySubtree(ManagedEndpointDropped);
this->ClearSubtree();
mgr->RemoveManagee(PClientSourceMsgStart, this);
return MsgProcessed;
}
case PClientSource::Msg_Teardown__ID:
{
if (mozilla::ipc::LoggingEnabledFor("PClientSource", mozilla::ipc::ParentSide)) {
mozilla::ipc::LogMessageForProtocol(
"PClientSourceParent",
this->ToplevelProtocol()->OtherPidMaybeInvalid(),
"Received ",
(&(msg__))->type(),
mozilla::ipc::MessageDirection::eReceiving);
}
AUTO_PROFILER_LABEL("PClientSource::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 PClientSource::Msg_ExecutionReady__ID:
{
if (mozilla::ipc::LoggingEnabledFor("PClientSource", mozilla::ipc::ParentSide)) {
mozilla::ipc::LogMessageForProtocol(
"PClientSourceParent",
this->ToplevelProtocol()->OtherPidMaybeInvalid(),
"Received ",
(&(msg__))->type(),
mozilla::ipc::MessageDirection::eReceiving);
}
AUTO_PROFILER_LABEL("PClientSource::Msg_ExecutionReady", OTHER);
IPC::MessageReader reader__{
msg__,
this};
auto maybe__aArgs = IPC::ReadParam<ClientSourceExecutionReadyArgs>((&(reader__)));
if (!maybe__aArgs) {
FatalError("Error deserializing 'ClientSourceExecutionReadyArgs'");
return MsgValueError;
}
auto& aArgs = *maybe__aArgs;
// Sentinel = 'aArgs'
if ((!(((&(reader__)))->ReadSentinel(92602863)))) {
mozilla::ipc::SentinelReadError("Error deserializing 'ClientSourceExecutionReadyArgs'");
return MsgValueError;
}
reader__.EndRead();
mozilla::ipc::IPCResult __ok = (this)->RecvExecutionReady(std::move(aArgs));
if ((!(__ok))) {
mozilla::ipc::ProtocolErrorBreakpoint("Handler returned error code!");
// Error handled in mozilla::ipc::IPCResult
return MsgProcessingError;
}
return MsgProcessed;
}
case PClientSource::Msg_Freeze__ID:
{
if (mozilla::ipc::LoggingEnabledFor("PClientSource", mozilla::ipc::ParentSide)) {
mozilla::ipc::LogMessageForProtocol(
"PClientSourceParent",
this->ToplevelProtocol()->OtherPidMaybeInvalid(),
"Received ",
(&(msg__))->type(),
mozilla::ipc::MessageDirection::eReceiving);
}
AUTO_PROFILER_LABEL("PClientSource::Msg_Freeze", OTHER);
mozilla::ipc::IPCResult __ok = (this)->RecvFreeze();
if ((!(__ok))) {
mozilla::ipc::ProtocolErrorBreakpoint("Handler returned error code!");
// Error handled in mozilla::ipc::IPCResult
return MsgProcessingError;
}
return MsgProcessed;
}
case PClientSource::Msg_Thaw__ID:
{
if (mozilla::ipc::LoggingEnabledFor("PClientSource", mozilla::ipc::ParentSide)) {
mozilla::ipc::LogMessageForProtocol(
"PClientSourceParent",
this->ToplevelProtocol()->OtherPidMaybeInvalid(),
"Received ",
(&(msg__))->type(),
mozilla::ipc::MessageDirection::eReceiving);
}
AUTO_PROFILER_LABEL("PClientSource::Msg_Thaw", OTHER);
mozilla::ipc::IPCResult __ok = (this)->RecvThaw();
if ((!(__ok))) {
mozilla::ipc::ProtocolErrorBreakpoint("Handler returned error code!");
// Error handled in mozilla::ipc::IPCResult
return MsgProcessingError;
}
return MsgProcessed;
}
case PClientSource::Msg_InheritController__ID:
{
if (mozilla::ipc::LoggingEnabledFor("PClientSource", mozilla::ipc::ParentSide)) {
mozilla::ipc::LogMessageForProtocol(
"PClientSourceParent",
this->ToplevelProtocol()->OtherPidMaybeInvalid(),
"Received ",
(&(msg__))->type(),
mozilla::ipc::MessageDirection::eReceiving);
}
AUTO_PROFILER_LABEL("PClientSource::Msg_InheritController", OTHER);
IPC::MessageReader reader__{
msg__,
this};
auto maybe__aArgs = IPC::ReadParam<ClientControlledArgs>((&(reader__)));
if (!maybe__aArgs) {
FatalError("Error deserializing 'ClientControlledArgs'");
return MsgValueError;
}
auto& aArgs = *maybe__aArgs;
// Sentinel = 'aArgs'
if ((!(((&(reader__)))->ReadSentinel(92602863)))) {
mozilla::ipc::SentinelReadError("Error deserializing 'ClientControlledArgs'");
return MsgValueError;
}
reader__.EndRead();
mozilla::ipc::IPCResult __ok = (this)->RecvInheritController(std::move(aArgs));
if ((!(__ok))) {
mozilla::ipc::ProtocolErrorBreakpoint("Handler returned error code!");
// Error handled in mozilla::ipc::IPCResult
return MsgProcessingError;
}
return MsgProcessed;
}
case PClientSource::Msg_NoteDOMContentLoaded__ID:
{
if (mozilla::ipc::LoggingEnabledFor("PClientSource", mozilla::ipc::ParentSide)) {
mozilla::ipc::LogMessageForProtocol(
"PClientSourceParent",
this->ToplevelProtocol()->OtherPidMaybeInvalid(),
"Received ",
(&(msg__))->type(),
mozilla::ipc::MessageDirection::eReceiving);
}
AUTO_PROFILER_LABEL("PClientSource::Msg_NoteDOMContentLoaded", OTHER);
mozilla::ipc::IPCResult __ok = (this)->RecvNoteDOMContentLoaded();
if ((!(__ok))) {
mozilla::ipc::ProtocolErrorBreakpoint("Handler returned error code!");
// Error handled in mozilla::ipc::IPCResult
return MsgProcessingError;
}
return MsgProcessed;
}
case PClientSource::Reply_PClientSourceOpConstructor__ID:
{
return MsgProcessed;
}
case PClientSource::Reply___delete____ID:
{
return MsgProcessed;
}
default:
return MsgNotKnown;
}
}
auto PClientSourceParent::OnMessageReceived(
const Message& msg__,
UniquePtr<Message>& reply__) -> PClientSourceParent::Result
{
switch (msg__.type()) {
case PClientSource::Msg_WorkerSyncPing__ID:
{
if (mozilla::ipc::LoggingEnabledFor("PClientSource", mozilla::ipc::ParentSide)) {
mozilla::ipc::LogMessageForProtocol(
"PClientSourceParent",
this->ToplevelProtocol()->OtherPidMaybeInvalid(),
"Received ",
(&(msg__))->type(),
mozilla::ipc::MessageDirection::eReceiving);
}
AUTO_PROFILER_LABEL("PClientSource::Msg_WorkerSyncPing", OTHER);
int32_t id__ = Id();
mozilla::ipc::IPCResult __ok = (this)->RecvWorkerSyncPing();
if ((!(__ok))) {
mozilla::ipc::ProtocolErrorBreakpoint("Handler returned error code!");
// Error handled in mozilla::ipc::IPCResult
return MsgProcessingError;
}
reply__ = PClientSource::Reply_WorkerSyncPing(id__);
IPC::MessageWriter writer__{
(*(reply__)),
this};
if (mozilla::ipc::LoggingEnabledFor("PClientSource", mozilla::ipc::ParentSide)) {
mozilla::ipc::LogMessageForProtocol(
"PClientSourceParent",
this->ToplevelProtocol()->OtherPidMaybeInvalid(),
"Sending reply ",
reply__->type(),
mozilla::ipc::MessageDirection::eSending);
}
return MsgProcessed;
}
default:
return MsgNotKnown;
}
}
auto PClientSourceParent::ClearSubtree() -> void
{
for (auto* key : mManagedPClientSourceOpParent) {
key->ClearSubtree();
}
for (auto* key : mManagedPClientSourceOpParent) {
// Recursively releasing mManagedPClientSourceOpParent kids.
auto* proxy = key->GetLifecycleProxy();
NS_IF_RELEASE(proxy);
}
mManagedPClientSourceOpParent.Clear();
}
} // namespace dom
} // namespace mozilla
namespace IPC {
auto ParamTraits<::mozilla::dom::PClientSourceParent*>::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::PClientSourceParent*>::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, "PClientSource", PClientSourceMsgStart);
if (actor.isSome()) {
return static_cast<::mozilla::dom::PClientSourceParent*>(actor.ref());
}
return {};
}
} // namespace IPC