Copy as Markdown

Other Tools

//
// Automatically generated by ipdlc.
// Edit at your own risk
//
#include "mozilla/dom/PURLClassifierLocalByNameParent.h"
#include "mozilla/ProfilerLabels.h"
#include "mozilla/dom/URLClassifierChild.h"
#include "mozilla/dom/URLClassifierParent.h"
#include "mozilla/ipc/URIUtils.h"
#include "nsIURI.h"
#include "mozilla/dom/PContentParent.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 {
MOZ_IMPLICIT PURLClassifierLocalByNameParent::PURLClassifierLocalByNameParent() :
mozilla::ipc::IProtocol(kProtocolId, mozilla::ipc::ParentSide)
{
MOZ_COUNT_CTOR(PURLClassifierLocalByNameParent);
}
PURLClassifierLocalByNameParent::~PURLClassifierLocalByNameParent()
{
MOZ_COUNT_DTOR(PURLClassifierLocalByNameParent);
}
auto PURLClassifierLocalByNameParent::ActorAlloc() -> void
{
}
auto PURLClassifierLocalByNameParent::ActorDealloc() -> void
{
if (Manager()) {
Manager()->DeallocManagee(kProtocolId, this);
}
}
auto PURLClassifierLocalByNameParent::OtherPid() const -> ::base::ProcessId
{
::base::ProcessId pid =
::mozilla::ipc::IProtocol::ToplevelProtocol()->OtherPidMaybeInvalid();
MOZ_RELEASE_ASSERT(pid != ::base::kInvalidProcessId);
return pid;
}
auto PURLClassifierLocalByNameParent::OtherChildID() const -> ::GeckoChildID
{
::GeckoChildID childID =
::mozilla::ipc::IProtocol::ToplevelProtocol()->OtherChildIDMaybeInvalid();
MOZ_RELEASE_ASSERT(childID != -1);
return childID;
}
auto PURLClassifierLocalByNameParent::OtherEndpointProcInfo() const -> ::mozilla::ipc::EndpointProcInfo
{
return ::mozilla::ipc::EndpointProcInfo{OtherPid(), OtherChildID()};
}
auto PURLClassifierLocalByNameParent::Manager() const -> PContentParent*
{
return static_cast<PContentParent*>(IProtocol::Manager());
}
auto PURLClassifierLocalByNameParent::ManagedProtocolIds() const -> mozilla::Span<mozilla::ipc::ProtocolId const>
{
return {};
}
auto PURLClassifierLocalByNameParent::GetManagedActors(mozilla::ipc::ProtocolId aProtocol) -> UntypedManagedContainer*
{
switch (aProtocol) {
default:
return nullptr;
}
}
auto PURLClassifierLocalByNameParent::Send__delete__(
PURLClassifierLocalByNameParent* actor,
mozilla::Span<URLClassifierLocalResult const> results) -> bool
{
if (!actor || !actor->CanSend()) {
NS_WARNING("Attempt to __delete__ missing or closed actor");
return false;
}
UniquePtr<IPC::Message> msg__ = PURLClassifierLocalByName::Msg___delete__((actor)->Id());
IPC::MessageWriter writer__{
(*(msg__)),
actor};
IPC::WriteParam((&(writer__)), results);
// Sentinel = 'results'
((&(writer__)))->WriteSentinel(204800787);
if (mozilla::ipc::LoggingEnabledFor("PURLClassifierLocalByName", mozilla::ipc::ParentSide)) {
mozilla::ipc::LogMessageForProtocol(
"PURLClassifierLocalByNameParent",
actor->ToplevelProtocol()->OtherPidMaybeInvalid(),
"Sending ",
msg__->type(),
mozilla::ipc::MessageDirection::eSending);
}
AUTO_PROFILER_LABEL("PURLClassifierLocalByName::Msg___delete__", OTHER);
bool sendok__ = (actor)->ChannelSend(std::move(msg__));
actor->ActorDisconnected(Deletion);
return sendok__;
}
auto PURLClassifierLocalByNameParent::DeallocManagee(
mozilla::ipc::ProtocolId aProtocolId,
IProtocol* aListener) -> void
{
FatalError("unreached");
return;
}
auto PURLClassifierLocalByNameParent::OnMessageReceived(const Message& msg__) -> PURLClassifierLocalByNameParent::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 PURLClassifierLocalByName::Reply___delete____ID:
{
return MsgProcessed;
}
default:
return MsgNotKnown;
}
}
auto PURLClassifierLocalByNameParent::OnMessageReceived(
const Message& msg__,
UniquePtr<Message>& reply__) -> PURLClassifierLocalByNameParent::Result
{
return MsgNotKnown;
}
} // namespace dom
} // namespace mozilla
namespace IPC {
auto ParamTraits<::mozilla::dom::PURLClassifierLocalByNameParent*>::Write(
IPC::MessageWriter* aWriter,
const paramType& aVar) -> void
{
IPC::WriteParam(aWriter, static_cast<mozilla::ipc::IProtocol*>(aVar));
// Sentinel = 'PURLClassifierLocalByName'
(aWriter)->WriteSentinel(2012678512);
}
auto ParamTraits<::mozilla::dom::PURLClassifierLocalByNameParent*>::Read(IPC::MessageReader* aReader) -> IPC::ReadResult<paramType>
{
auto maybe__actor = IPC::ReadParam<mozilla::ipc::IProtocol*>(aReader);
if (!maybe__actor) {
aReader->FatalError("Error deserializing managed PURLClassifierLocalByName actor");
return {};
}
auto& actor = *maybe__actor;
// Sentinel = 'PURLClassifierLocalByName'
if ((!((aReader)->ReadSentinel(2012678512)))) {
mozilla::ipc::SentinelReadError("Error deserializing managed PURLClassifierLocalByName actor");
return {};
}
if (actor && actor->GetProtocolId() != PURLClassifierLocalByNameMsgStart) {
aReader->FatalError("Unexpected actor type (expected PURLClassifierLocalByName)");
return {};
}
return static_cast<::mozilla::dom::PURLClassifierLocalByNameParent*>(actor);
}
} // namespace IPC