Copy as Markdown
Other Tools
//
// Automatically generated by ipdlc.
// Edit at your own risk
//
#include "mozilla/dom/PRemoteWorkerDebuggerManagerParent.h"
#include "mozilla/ProfilerLabels.h"
#include "mozilla/dom/ClientIPCUtils.h"
#include "mozilla/dom/ReferrerInfoUtils.h"
#include "mozilla/dom/RemoteWorkerDebuggerManagerParent.h"
#include "mozilla/dom/WorkerIPCUtils.h"
#include "mozilla/ipc/IPCCore.h"
#include "nsIPrincipal.h"
#include "mozilla/dom/PRemoteWorkerDebuggerParent.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 PRemoteWorkerDebuggerManagerParent::ProcessingError(
Result aCode,
const char* aReason) -> void
{
}
auto PRemoteWorkerDebuggerManagerParent::ShouldContinueFromReplyTimeout() -> bool
{
return true;
}
MOZ_IMPLICIT PRemoteWorkerDebuggerManagerParent::PRemoteWorkerDebuggerManagerParent() :
mozilla::ipc::IToplevelProtocol("PRemoteWorkerDebuggerManagerParent", kProtocolId, mozilla::ipc::ParentSide)
{
MOZ_COUNT_CTOR(PRemoteWorkerDebuggerManagerParent);
}
PRemoteWorkerDebuggerManagerParent::~PRemoteWorkerDebuggerManagerParent()
{
MOZ_COUNT_DTOR(PRemoteWorkerDebuggerManagerParent);
}
auto PRemoteWorkerDebuggerManagerParent::ActorAlloc() -> void
{
MOZ_RELEASE_ASSERT(XRE_IsParentProcess(), "Invalid process for `PRemoteWorkerDebuggerManagerParent'");
AddRef();
}
auto PRemoteWorkerDebuggerManagerParent::ActorDealloc() -> void
{
Release();
}
auto PRemoteWorkerDebuggerManagerParent::ManagedProtocolIds() const -> mozilla::Span<mozilla::ipc::ProtocolId const>
{
return {};
}
auto PRemoteWorkerDebuggerManagerParent::GetManagedActors(mozilla::ipc::ProtocolId aProtocol) -> UntypedManagedContainer*
{
switch (aProtocol) {
default:
return nullptr;
}
}
auto PRemoteWorkerDebuggerManagerParent::DeallocManagee(
int32_t aProtocolId,
IProtocol* aListener) -> void
{
FatalError("unreached");
return;
}
auto PRemoteWorkerDebuggerManagerParent::OnMessageReceived(const Message& msg__) -> PRemoteWorkerDebuggerManagerParent::Result
{
switch (msg__.type()) {
case PRemoteWorkerDebuggerManager::Msg_Register__ID:
{
if (mozilla::ipc::LoggingEnabledFor("PRemoteWorkerDebuggerManager", mozilla::ipc::ParentSide)) {
mozilla::ipc::LogMessageForProtocol(
"PRemoteWorkerDebuggerManagerParent",
this->ToplevelProtocol()->OtherPidMaybeInvalid(),
"Received ",
(&(msg__))->type(),
mozilla::ipc::MessageDirection::eReceiving);
}
AUTO_PROFILER_LABEL("PRemoteWorkerDebuggerManager::Msg_Register", OTHER);
IPC::MessageReader reader__{
msg__,
this};
auto maybe__aDebuggerInfo = IPC::ReadParam<RemoteWorkerDebuggerInfo>((&(reader__)));
if (!maybe__aDebuggerInfo) {
FatalError("Error deserializing 'RemoteWorkerDebuggerInfo'");
return MsgValueError;
}
auto& aDebuggerInfo = *maybe__aDebuggerInfo;
// Sentinel = 'aDebuggerInfo'
if ((!(((&(reader__)))->ReadSentinel(582747411)))) {
mozilla::ipc::SentinelReadError("Error deserializing 'RemoteWorkerDebuggerInfo'");
return MsgValueError;
}
auto maybe__aParentEp = IPC::ReadParam<Endpoint<::mozilla::dom::PRemoteWorkerDebuggerParent>>((&(reader__)));
if (!maybe__aParentEp) {
FatalError("Error deserializing 'Endpoint<::mozilla::dom::PRemoteWorkerDebuggerParent>'");
return MsgValueError;
}
auto& aParentEp = *maybe__aParentEp;
// Sentinel = 'aParentEp'
if ((!(((&(reader__)))->ReadSentinel(290194305)))) {
mozilla::ipc::SentinelReadError("Error deserializing 'Endpoint<::mozilla::dom::PRemoteWorkerDebuggerParent>'");
return MsgValueError;
}
reader__.EndRead();
mozilla::ipc::IPCResult __ok = (static_cast<RemoteWorkerDebuggerManagerParent*>(this))->RecvRegister(std::move(aDebuggerInfo), std::move(aParentEp));
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 PRemoteWorkerDebuggerManagerParent::OnMessageReceived(
const Message& msg__,
UniquePtr<Message>& reply__) -> PRemoteWorkerDebuggerManagerParent::Result
{
MOZ_ASSERT_UNREACHABLE("message protocol not supported");
return MsgNotKnown;
}
} // namespace dom
} // namespace mozilla
namespace IPC {
auto ParamTraits<::mozilla::dom::PRemoteWorkerDebuggerManagerParent*>::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::PRemoteWorkerDebuggerManagerParent*>::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, "PRemoteWorkerDebuggerManager", PRemoteWorkerDebuggerManagerMsgStart);
if (actor.isSome()) {
return static_cast<::mozilla::dom::PRemoteWorkerDebuggerManagerParent*>(actor.ref());
}
return {};
}
} // namespace IPC