Copy as Markdown

Other Tools

//
// Automatically generated by ipdlc.
// Edit at your own risk
//
#include "mozilla/dom/PInProcessChild.h"
#include "mozilla/GfxMessageUtils.h"
#include "mozilla/RemoteLazyInputStream.h"
#include "mozilla/dom/CSPMessageUtils.h"
#include "mozilla/dom/DocShellMessageUtils.h"
#include "mozilla/dom/InProcessChild.h"
#include "mozilla/dom/PermissionMessageUtils.h"
#include "mozilla/dom/PropertyBagUtils.h"
#include "mozilla/dom/ReferrerInfoUtils.h"
#include "mozilla/dom/SessionHistoryEntry.h"
#include "mozilla/dom/TabMessageUtils.h"
#include "mozilla/ipc/BigBuffer.h"
#include "mozilla/ipc/IPCCore.h"
#include "mozilla/ipc/IPCStreamUtils.h"
#include "mozilla/ipc/SerializedStructuredCloneBuffer.h"
#include "mozilla/ipc/URIUtils.h"
#include "mozilla/layers/LayersMessageUtils.h"
#include "mozilla/net/ClassOfService.h"
#include "nsIContentSecurityPolicy.h"
#include "nsIPrincipal.h"
#include "nsIReferrerInfo.h"
#include "nsIURI.h"
#include "nsIVariant.h"
#include "mozilla/extensions/PExtensionsChild.h"
#include "mozilla/dom/PSessionStoreChild.h"
#include "mozilla/dom/PWindowGlobalChild.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 PInProcessChild::ProcessingError(
Result aCode,
const char* aReason) -> void
{
}
auto PInProcessChild::ShouldContinueFromReplyTimeout() -> bool
{
return true;
}
MOZ_IMPLICIT PInProcessChild::PInProcessChild() :
mozilla::ipc::IToplevelProtocol("PInProcessChild", PInProcessMsgStart, mozilla::ipc::ChildSide)
{
MOZ_COUNT_CTOR(PInProcessChild);
}
PInProcessChild::~PInProcessChild()
{
MOZ_COUNT_DTOR(PInProcessChild);
}
auto PInProcessChild::ActorAlloc() -> void
{
MOZ_RELEASE_ASSERT(XRE_IsParentProcess(), "Invalid process for `PInProcessChild'");
AddRef();
}
auto PInProcessChild::ActorDealloc() -> void
{
Release();
}
auto PInProcessChild::ManagedPExtensionsChild(nsTArray<PExtensionsChild*>& aArr) const -> void
{
mManagedPExtensionsChild.ToArray(aArr);
}
auto PInProcessChild::ManagedPExtensionsChild() const -> const ManagedContainer<PExtensionsChild>&
{
return mManagedPExtensionsChild;
}
auto PInProcessChild::ManagedPSessionStoreChild(nsTArray<PSessionStoreChild*>& aArr) const -> void
{
mManagedPSessionStoreChild.ToArray(aArr);
}
auto PInProcessChild::ManagedPSessionStoreChild() const -> const ManagedContainer<PSessionStoreChild>&
{
return mManagedPSessionStoreChild;
}
auto PInProcessChild::ManagedPWindowGlobalChild(nsTArray<PWindowGlobalChild*>& aArr) const -> void
{
mManagedPWindowGlobalChild.ToArray(aArr);
}
auto PInProcessChild::ManagedPWindowGlobalChild() const -> const ManagedContainer<PWindowGlobalChild>&
{
return mManagedPWindowGlobalChild;
}
auto PInProcessChild::AllManagedActorsCount() const -> uint32_t
{
uint32_t total = 0;
total += mManagedPExtensionsChild.Count();
total += mManagedPSessionStoreChild.Count();
total += mManagedPWindowGlobalChild.Count();
return total;
}
auto PInProcessChild::OpenPExtensionsEndpoint(PExtensionsChild* aActor) -> ManagedEndpoint<PExtensionsParent>
{
if (!aActor) {
NS_WARNING("Cannot bind null PExtensionsChild actor");
return ManagedEndpoint<PExtensionsParent>();
}
if (aActor->SetManagerAndRegister(this)) {
mManagedPExtensionsChild.Insert(aActor);
} else {
NS_WARNING("Failed to bind PExtensionsChild actor");
return ManagedEndpoint<PExtensionsParent>();
}
// 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<PExtensionsParent>(mozilla::ipc::PrivateIPDLInterface(), aActor);
}
auto PInProcessChild::BindPExtensionsEndpoint(
ManagedEndpoint<PExtensionsChild> aEndpoint,
PExtensionsChild* aActor) -> bool
{
return aEndpoint.Bind(mozilla::ipc::PrivateIPDLInterface(), aActor, this, mManagedPExtensionsChild);
}
auto PInProcessChild::OpenPSessionStoreEndpoint(PSessionStoreChild* aActor) -> ManagedEndpoint<PSessionStoreParent>
{
if (!aActor) {
NS_WARNING("Cannot bind null PSessionStoreChild actor");
return ManagedEndpoint<PSessionStoreParent>();
}
if (aActor->SetManagerAndRegister(this)) {
mManagedPSessionStoreChild.Insert(aActor);
} else {
NS_WARNING("Failed to bind PSessionStoreChild actor");
return ManagedEndpoint<PSessionStoreParent>();
}
// 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<PSessionStoreParent>(mozilla::ipc::PrivateIPDLInterface(), aActor);
}
auto PInProcessChild::BindPSessionStoreEndpoint(
ManagedEndpoint<PSessionStoreChild> aEndpoint,
PSessionStoreChild* aActor) -> bool
{
return aEndpoint.Bind(mozilla::ipc::PrivateIPDLInterface(), aActor, this, mManagedPSessionStoreChild);
}
auto PInProcessChild::OpenPWindowGlobalEndpoint(PWindowGlobalChild* aActor) -> ManagedEndpoint<PWindowGlobalParent>
{
if (!aActor) {
NS_WARNING("Cannot bind null PWindowGlobalChild actor");
return ManagedEndpoint<PWindowGlobalParent>();
}
if (aActor->SetManagerAndRegister(this)) {
mManagedPWindowGlobalChild.Insert(aActor);
} else {
NS_WARNING("Failed to bind PWindowGlobalChild actor");
return ManagedEndpoint<PWindowGlobalParent>();
}
// 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<PWindowGlobalParent>(mozilla::ipc::PrivateIPDLInterface(), aActor);
}
auto PInProcessChild::BindPWindowGlobalEndpoint(
ManagedEndpoint<PWindowGlobalChild> aEndpoint,
PWindowGlobalChild* aActor) -> bool
{
return aEndpoint.Bind(mozilla::ipc::PrivateIPDLInterface(), aActor, this, mManagedPWindowGlobalChild);
}
auto PInProcessChild::RemoveManagee(
int32_t aProtocolId,
IProtocol* aListener) -> void
{
switch (aProtocolId) {
case PExtensionsMsgStart:
MOZ_ALWAYS_TRUE(mManagedPExtensionsChild.EnsureRemoved(static_cast<PExtensionsChild*>(aListener)));
return;
case PSessionStoreMsgStart:
MOZ_ALWAYS_TRUE(mManagedPSessionStoreChild.EnsureRemoved(static_cast<PSessionStoreChild*>(aListener)));
return;
case PWindowGlobalMsgStart:
MOZ_ALWAYS_TRUE(mManagedPWindowGlobalChild.EnsureRemoved(static_cast<PWindowGlobalChild*>(aListener)));
return;
default:
FatalError("unreached");
return; }
}
auto PInProcessChild::DeallocManagee(
int32_t aProtocolId,
IProtocol* aListener) -> void
{
switch (aProtocolId) {
default:
FatalError("unreached");
return;
}
}
auto PInProcessChild::OnMessageReceived(const Message& msg__) -> PInProcessChild::Result
{
int32_t route__ = msg__.routing_id();
if (MSG_ROUTING_CONTROL != route__) {
IProtocol* routed__ = Lookup(route__);
if (!routed__ || !routed__->GetLifecycleProxy()) {
if (mozilla::ipc::LoggingEnabledFor("PInProcess", mozilla::ipc::ChildSide)) {
mozilla::ipc::LogMessageForProtocol(
"PInProcessChild",
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()) {
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 PInProcessChild::OnMessageReceived(
const Message& msg__,
UniquePtr<Message>& reply__) -> PInProcessChild::Result
{
MOZ_ASSERT_UNREACHABLE("message protocol not supported");
return MsgNotKnown;
}
auto PInProcessChild::DoomSubtree() -> void
{
for (auto* key : mManagedPExtensionsChild) {
key->DoomSubtree();
}
for (auto* key : mManagedPSessionStoreChild) {
key->DoomSubtree();
}
for (auto* key : mManagedPWindowGlobalChild) {
key->DoomSubtree();
}
SetDoomed();
}
auto PInProcessChild::PeekManagedActor() -> IProtocol*
{
if (IProtocol* actor = mManagedPExtensionsChild.Peek()) {
return actor;
}
if (IProtocol* actor = mManagedPSessionStoreChild.Peek()) {
return actor;
}
if (IProtocol* actor = mManagedPWindowGlobalChild.Peek()) {
return actor;
}
return nullptr;
}
} // namespace dom
} // namespace mozilla
namespace IPC {
auto ParamTraits<::mozilla::dom::PInProcessChild*>::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::PInProcessChild*>::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, "PInProcess", PInProcessMsgStart);
if (actor.isSome()) {
return static_cast<::mozilla::dom::PInProcessChild*>(actor.ref());
}
return {};
}
} // namespace IPC