Copy as Markdown

Other Tools

//
// Automatically generated by ipdlc.
// Edit at your own risk
//
#include "mozilla/dom/quota/PQuotaRequestChild.h"
#include "mozilla/ProfilerLabels.h"
#include "mozilla/dom/quota/SerializationHelpers.h"
#include "mozilla/dom/quota/PQuotaChild.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 {
namespace quota {
MOZ_IMPLICIT PQuotaRequestChild::PQuotaRequestChild() :
mozilla::ipc::IProtocol(kProtocolId, mozilla::ipc::ChildSide)
{
MOZ_COUNT_CTOR(PQuotaRequestChild);
}
PQuotaRequestChild::~PQuotaRequestChild()
{
MOZ_COUNT_DTOR(PQuotaRequestChild);
}
auto PQuotaRequestChild::ActorAlloc() -> void
{
}
auto PQuotaRequestChild::ActorDealloc() -> void
{
if (Manager()) {
Manager()->DeallocManagee(kProtocolId, this);
}
}
auto PQuotaRequestChild::OtherPid() const -> ::base::ProcessId
{
::base::ProcessId pid =
::mozilla::ipc::IProtocol::ToplevelProtocol()->OtherPidMaybeInvalid();
MOZ_RELEASE_ASSERT(pid != ::base::kInvalidProcessId);
return pid;
}
auto PQuotaRequestChild::OtherChildID() const -> ::GeckoChildID
{
::GeckoChildID childID =
::mozilla::ipc::IProtocol::ToplevelProtocol()->OtherChildIDMaybeInvalid();
MOZ_RELEASE_ASSERT(childID != -1);
return childID;
}
auto PQuotaRequestChild::OtherEndpointProcInfo() const -> ::mozilla::ipc::EndpointProcInfo
{
return ::mozilla::ipc::EndpointProcInfo{OtherPid(), OtherChildID()};
}
auto PQuotaRequestChild::Manager() const -> PQuotaChild*
{
return static_cast<PQuotaChild*>(IProtocol::Manager());
}
auto PQuotaRequestChild::ManagedProtocolIds() const -> mozilla::Span<mozilla::ipc::ProtocolId const>
{
return {};
}
auto PQuotaRequestChild::GetManagedActors(mozilla::ipc::ProtocolId aProtocol) -> UntypedManagedContainer*
{
switch (aProtocol) {
default:
return nullptr;
}
}
auto PQuotaRequestChild::DeallocManagee(
mozilla::ipc::ProtocolId aProtocolId,
IProtocol* aListener) -> void
{
FatalError("unreached");
return;
}
auto PQuotaRequestChild::OnMessageReceived(const Message& msg__) -> PQuotaRequestChild::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;
this->ActorDisconnected(ManagedEndpointDropped);
return MsgProcessed;
}
case PQuotaRequest::Msg___delete____ID:
{
if (mozilla::ipc::LoggingEnabledFor("PQuotaRequest", mozilla::ipc::ChildSide)) {
mozilla::ipc::LogMessageForProtocol(
"PQuotaRequestChild",
this->ToplevelProtocol()->OtherPidMaybeInvalid(),
"Received ",
(&(msg__))->type(),
mozilla::ipc::MessageDirection::eReceiving);
}
AUTO_PROFILER_LABEL("PQuotaRequest::Msg___delete__", OTHER);
IPC::MessageReader reader__{
msg__,
this};
auto maybe__response = IPC::ReadParam<RequestResponse>((&(reader__)));
if (!maybe__response) {
FatalError("Error deserializing 'RequestResponse'");
return MsgValueError;
}
auto& response = *maybe__response;
// Sentinel = 'response'
if ((!(((&(reader__)))->ReadSentinel(260965232)))) {
mozilla::ipc::SentinelReadError("Error deserializing 'RequestResponse'");
return MsgValueError;
}
reader__.EndRead();
mozilla::ipc::IPCResult __ok = (this)->Recv__delete__(std::move(response));
if ((!(__ok))) {
mozilla::ipc::ProtocolErrorBreakpoint("Handler returned error code!");
// Error handled in mozilla::ipc::IPCResult
return MsgProcessingError;
}
this->ActorDisconnected(Deletion);
return MsgProcessed;
}
default:
return MsgNotKnown;
}
}
auto PQuotaRequestChild::OnMessageReceived(
const Message& msg__,
UniquePtr<Message>& reply__) -> PQuotaRequestChild::Result
{
return MsgNotKnown;
}
} // namespace quota
} // namespace dom
} // namespace mozilla
namespace IPC {
auto ParamTraits<::mozilla::dom::quota::PQuotaRequestChild*>::Write(
IPC::MessageWriter* aWriter,
const paramType& aVar) -> void
{
IPC::WriteParam(aWriter, static_cast<mozilla::ipc::IProtocol*>(aVar));
// Sentinel = 'PQuotaRequest'
(aWriter)->WriteSentinel(596641092);
}
auto ParamTraits<::mozilla::dom::quota::PQuotaRequestChild*>::Read(IPC::MessageReader* aReader) -> IPC::ReadResult<paramType>
{
auto maybe__actor = IPC::ReadParam<mozilla::ipc::IProtocol*>(aReader);
if (!maybe__actor) {
aReader->FatalError("Error deserializing managed PQuotaRequest actor");
return {};
}
auto& actor = *maybe__actor;
// Sentinel = 'PQuotaRequest'
if ((!((aReader)->ReadSentinel(596641092)))) {
mozilla::ipc::SentinelReadError("Error deserializing managed PQuotaRequest actor");
return {};
}
if (actor && actor->GetProtocolId() != PQuotaRequestMsgStart) {
aReader->FatalError("Unexpected actor type (expected PQuotaRequest)");
return {};
}
return static_cast<::mozilla::dom::quota::PQuotaRequestChild*>(actor);
}
} // namespace IPC