Copy as Markdown

Other Tools

//
// Automatically generated by ipdlc.
// Edit at your own risk
//
#include "mozilla/dom/PWindowsUtilsChild.h"
#include "mozilla/ProfilerLabels.h"
#include "mozilla/dom/WindowsUtilsChild.h"
#include "mozilla/dom/PWindowsLocationChild.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 PWindowsUtilsChild::RecvPWindowsLocationConstructor(PWindowsLocationChild* actor) -> mozilla::ipc::IPCResult
{
return IPC_OK();
}
auto PWindowsUtilsChild::ProcessingError(
Result aCode,
const char* aReason) -> void
{
}
auto PWindowsUtilsChild::ShouldContinueFromReplyTimeout() -> bool
{
return true;
}
MOZ_IMPLICIT PWindowsUtilsChild::PWindowsUtilsChild() :
mozilla::ipc::IToplevelProtocol("PWindowsUtilsChild", PWindowsUtilsMsgStart, mozilla::ipc::ChildSide)
{
MOZ_COUNT_CTOR(PWindowsUtilsChild);
}
PWindowsUtilsChild::~PWindowsUtilsChild()
{
MOZ_COUNT_DTOR(PWindowsUtilsChild);
}
auto PWindowsUtilsChild::ActorAlloc() -> void
{
MOZ_RELEASE_ASSERT(XRE_IsUtilityProcess(), "Invalid process for `PWindowsUtilsChild'");
AddRef();
}
auto PWindowsUtilsChild::ActorDealloc() -> void
{
Release();
}
auto PWindowsUtilsChild::ManagedPWindowsLocationChild(nsTArray<PWindowsLocationChild*>& aArr) const -> void
{
mManagedPWindowsLocationChild.ToArray(aArr);
}
auto PWindowsUtilsChild::ManagedPWindowsLocationChild() const -> const ManagedContainer<PWindowsLocationChild>&
{
return mManagedPWindowsLocationChild;
}
auto PWindowsUtilsChild::AllManagedActorsCount() const -> uint32_t
{
uint32_t total = 0;
total += mManagedPWindowsLocationChild.Count();
return total;
}
auto PWindowsUtilsChild::OpenPWindowsLocationEndpoint(PWindowsLocationChild* aActor) -> ManagedEndpoint<PWindowsLocationParent>
{
if (!aActor) {
NS_WARNING("Cannot bind null PWindowsLocationChild actor");
return ManagedEndpoint<PWindowsLocationParent>();
}
if (aActor->SetManagerAndRegister(this)) {
mManagedPWindowsLocationChild.Insert(aActor);
} else {
NS_WARNING("Failed to bind PWindowsLocationChild actor");
return ManagedEndpoint<PWindowsLocationParent>();
}
// 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<PWindowsLocationParent>(mozilla::ipc::PrivateIPDLInterface(), aActor);
}
auto PWindowsUtilsChild::BindPWindowsLocationEndpoint(
ManagedEndpoint<PWindowsLocationChild> aEndpoint,
PWindowsLocationChild* aActor) -> bool
{
return aEndpoint.Bind(mozilla::ipc::PrivateIPDLInterface(), aActor, this, mManagedPWindowsLocationChild);
}
auto PWindowsUtilsChild::RemoveManagee(
int32_t aProtocolId,
IProtocol* aListener) -> void
{
switch (aProtocolId) {
case PWindowsLocationMsgStart:
MOZ_ALWAYS_TRUE(mManagedPWindowsLocationChild.EnsureRemoved(static_cast<PWindowsLocationChild*>(aListener)));
return;
default:
FatalError("unreached");
return; }
}
auto PWindowsUtilsChild::DeallocManagee(
int32_t aProtocolId,
IProtocol* aListener) -> void
{
switch (aProtocolId) {
default:
FatalError("unreached");
return;
}
}
auto PWindowsUtilsChild::OnMessageReceived(const Message& msg__) -> PWindowsUtilsChild::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::ChildSide)) {
mozilla::ipc::LogMessageForProtocol(
"PWindowsUtilsChild",
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::Msg_PWindowsLocationConstructor__ID:
{
if (mozilla::ipc::LoggingEnabledFor("PWindowsUtils", mozilla::ipc::ChildSide)) {
mozilla::ipc::LogMessageForProtocol(
"PWindowsUtilsChild",
this->ToplevelProtocol()->OtherPidMaybeInvalid(),
"Received ",
(&(msg__))->type(),
mozilla::ipc::MessageDirection::eReceiving);
}
AUTO_PROFILER_LABEL("PWindowsUtils::Msg_PWindowsLocationConstructor", 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;
}
reader__.EndRead();
RefPtr<PWindowsLocationChild> actor = (static_cast<WindowsUtilsChild*>(this))->AllocPWindowsLocationChild();
if (!actor) {
NS_WARNING("Cannot bind null PWindowsLocationChild actor");
return MsgValueError;
}
if (actor->SetManagerAndRegister(this, (handle__).mId)) {
mManagedPWindowsLocationChild.Insert(actor);
} else {
NS_WARNING("Failed to bind PWindowsLocationChild actor");
return MsgValueError;
}
mozilla::ipc::IPCResult __ok = (static_cast<WindowsUtilsChild*>(this))->RecvPWindowsLocationConstructor(actor);
if ((!(__ok))) {
mozilla::ipc::ProtocolErrorBreakpoint("Handler returned error code!");
// Error handled in mozilla::ipc::IPCResult
return MsgProcessingError;
}
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 PWindowsUtilsChild::OnMessageReceived(
const Message& msg__,
UniquePtr<Message>& reply__) -> PWindowsUtilsChild::Result
{
MOZ_ASSERT_UNREACHABLE("message protocol not supported");
return MsgNotKnown;
}
auto PWindowsUtilsChild::DoomSubtree() -> void
{
for (auto* key : mManagedPWindowsLocationChild) {
key->DoomSubtree();
}
SetDoomed();
}
auto PWindowsUtilsChild::PeekManagedActor() -> IProtocol*
{
if (IProtocol* actor = mManagedPWindowsLocationChild.Peek()) {
return actor;
}
return nullptr;
}
} // namespace dom
} // namespace mozilla
namespace IPC {
auto ParamTraits<::mozilla::dom::PWindowsUtilsChild*>::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::PWindowsUtilsChild*>::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::PWindowsUtilsChild*>(actor.ref());
}
return {};
}
} // namespace IPC