Copy as Markdown

Other Tools

//
// Automatically generated by ipdlc.
// Edit at your own risk
//
#include "mozilla/dom/PWindowsUtilsParent.h"
#include "mozilla/ProfilerLabels.h"
#include "mozilla/dom/WindowsUtilsParent.h"
#include "mozilla/dom/PWindowsLocationParent.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 PWindowsUtilsParent::ProcessingError(
Result aCode,
const char* aReason) -> void
{
}
auto PWindowsUtilsParent::ShouldContinueFromReplyTimeout() -> bool
{
return true;
}
MOZ_IMPLICIT PWindowsUtilsParent::PWindowsUtilsParent() :
mozilla::ipc::IToplevelProtocol("PWindowsUtilsParent", PWindowsUtilsMsgStart, mozilla::ipc::ParentSide)
{
MOZ_COUNT_CTOR(PWindowsUtilsParent);
}
PWindowsUtilsParent::~PWindowsUtilsParent()
{
MOZ_COUNT_DTOR(PWindowsUtilsParent);
}
auto PWindowsUtilsParent::ActorAlloc() -> void
{
MOZ_RELEASE_ASSERT(XRE_IsParentProcess(), "Invalid process for `PWindowsUtilsParent'");
AddRef();
}
auto PWindowsUtilsParent::ActorDealloc() -> void
{
Release();
}
auto PWindowsUtilsParent::ManagedPWindowsLocationParent(nsTArray<PWindowsLocationParent*>& aArr) const -> void
{
mManagedPWindowsLocationParent.ToArray(aArr);
}
auto PWindowsUtilsParent::ManagedPWindowsLocationParent() const -> const ManagedContainer<PWindowsLocationParent>&
{
return mManagedPWindowsLocationParent;
}
auto PWindowsUtilsParent::AllManagedActors(nsTArray<RefPtr<mozilla::ipc::ActorLifecycleProxy>>& arr__) const -> void
{
uint32_t total = 0;
total += mManagedPWindowsLocationParent.Count();
arr__.SetCapacity(total);
for (auto* key : mManagedPWindowsLocationParent) {
arr__.AppendElement(key->GetLifecycleProxy());
}
}
auto PWindowsUtilsParent::AllManagedActorsCount() const -> uint32_t
{
uint32_t total = 0;
total += mManagedPWindowsLocationParent.Count();
return total;
}
auto PWindowsUtilsParent::OpenPWindowsLocationEndpoint(PWindowsLocationParent* aActor) -> ManagedEndpoint<PWindowsLocationChild>
{
if (!aActor) {
NS_WARNING("Cannot bind null PWindowsLocationParent actor");
return ManagedEndpoint<PWindowsLocationChild>();
}
aActor->SetManagerAndRegister(this);
mManagedPWindowsLocationParent.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<PWindowsLocationChild>(mozilla::ipc::PrivateIPDLInterface(), aActor);
}
auto PWindowsUtilsParent::BindPWindowsLocationEndpoint(
ManagedEndpoint<PWindowsLocationParent> aEndpoint,
PWindowsLocationParent* aActor) -> bool
{
return aEndpoint.Bind(mozilla::ipc::PrivateIPDLInterface(), aActor, this, mManagedPWindowsLocationParent);
}
auto PWindowsUtilsParent::SendPWindowsLocationConstructor(PWindowsLocationParent* actor) -> PWindowsLocationParent*
{
if (!actor) {
NS_WARNING("Cannot bind null PWindowsLocationParent actor");
return nullptr;
}
actor->SetManagerAndRegister(this);
mManagedPWindowsLocationParent.Insert(actor);
// Build our constructor message.
UniquePtr<IPC::Message> msg__ = PWindowsUtils::Msg_PWindowsLocationConstructor(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("PWindowsUtils", mozilla::ipc::ParentSide)) {
mozilla::ipc::LogMessageForProtocol(
"PWindowsUtilsParent",
this->ToplevelProtocol()->OtherPidMaybeInvalid(),
"Sending ",
msg__->type(),
mozilla::ipc::MessageDirection::eSending);
}
AUTO_PROFILER_LABEL("PWindowsUtils::Msg_PWindowsLocationConstructor", 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 PWindowsLocationParent constructor");
IProtocol* mgr = actor->Manager();
actor->DestroySubtree(FailedConstructor);
actor->ClearSubtree();
mgr->RemoveManagee(PWindowsLocationMsgStart, actor);
return nullptr;
}
return actor;
}
auto PWindowsUtilsParent::RemoveManagee(
int32_t aProtocolId,
IProtocol* aListener) -> void
{
switch (aProtocolId) {
case PWindowsLocationMsgStart:
{
PWindowsLocationParent* actor = static_cast<PWindowsLocationParent*>(aListener);
const bool removed = mManagedPWindowsLocationParent.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 PWindowsUtilsParent::DeallocManagee(
int32_t aProtocolId,
IProtocol* aListener) -> void
{
switch (aProtocolId) {
default:
FatalError("unreached");
return;
}
}
auto PWindowsUtilsParent::OnMessageReceived(const Message& msg__) -> PWindowsUtilsParent::Result
{
int32_t route__ = msg__.routing_id();
if (MSG_ROUTING_CONTROL != route__) {
IProtocol* routed__ = Lookup(route__);
if (!routed__ || !routed__->GetLifecycleProxy()) {
if (mozilla::ipc::LoggingEnabledFor("PWindowsUtils", mozilla::ipc::ParentSide)) {
mozilla::ipc::LogMessageForProtocol(
"PWindowsUtilsParent",
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 PWindowsUtils::Reply_PWindowsLocationConstructor__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 PWindowsUtilsParent::OnMessageReceived(
const Message& msg__,
UniquePtr<Message>& reply__) -> PWindowsUtilsParent::Result
{
MOZ_ASSERT_UNREACHABLE("message protocol not supported");
return MsgNotKnown;
}
auto PWindowsUtilsParent::OnChannelClose() -> void
{
DestroySubtree(NormalShutdown);
ClearSubtree();
DeallocShmems();
if (GetLifecycleProxy()) {
GetLifecycleProxy()->Release();
}
}
auto PWindowsUtilsParent::OnChannelError() -> void
{
DestroySubtree(AbnormalShutdown);
ClearSubtree();
DeallocShmems();
if (GetLifecycleProxy()) {
GetLifecycleProxy()->Release();
}
}
auto PWindowsUtilsParent::ClearSubtree() -> void
{
for (auto* key : mManagedPWindowsLocationParent) {
key->ClearSubtree();
}
for (auto* key : mManagedPWindowsLocationParent) {
// Recursively releasing mManagedPWindowsLocationParent kids.
auto* proxy = key->GetLifecycleProxy();
NS_IF_RELEASE(proxy);
}
mManagedPWindowsLocationParent.Clear();
}
} // namespace dom
} // namespace mozilla
namespace IPC {
auto ParamTraits<::mozilla::dom::PWindowsUtilsParent*>::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::PWindowsUtilsParent*>::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, "PWindowsUtils", PWindowsUtilsMsgStart);
if (actor.isSome()) {
return static_cast<::mozilla::dom::PWindowsUtilsParent*>(actor.ref());
}
return {};
}
} // namespace IPC