Copy as Markdown
Other Tools
//
// Automatically generated by ipdlc.
// Edit at your own risk
//
#include "mozilla/dom/indexedDB/PBackgroundIDBDatabaseFileParent.h"
#include "mozilla/ProfilerLabels.h"
#include "mozilla/dom/indexedDB/PBackgroundIDBDatabaseParent.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 indexedDB {
auto PBackgroundIDBDatabaseFileParent::Recv__delete__() -> mozilla::ipc::IPCResult
{
return IPC_OK();
}
MOZ_IMPLICIT PBackgroundIDBDatabaseFileParent::PBackgroundIDBDatabaseFileParent() :
mozilla::ipc::IProtocol(kProtocolId, mozilla::ipc::ParentSide)
{
MOZ_COUNT_CTOR(PBackgroundIDBDatabaseFileParent);
}
PBackgroundIDBDatabaseFileParent::~PBackgroundIDBDatabaseFileParent()
{
MOZ_COUNT_DTOR(PBackgroundIDBDatabaseFileParent);
}
auto PBackgroundIDBDatabaseFileParent::ActorAlloc() -> void
{
}
auto PBackgroundIDBDatabaseFileParent::ActorDealloc() -> void
{
if (Manager()) {
Manager()->DeallocManagee(kProtocolId, this);
}
}
auto PBackgroundIDBDatabaseFileParent::OtherPid() const -> ::base::ProcessId
{
::base::ProcessId pid =
::mozilla::ipc::IProtocol::ToplevelProtocol()->OtherPidMaybeInvalid();
MOZ_RELEASE_ASSERT(pid != ::base::kInvalidProcessId);
return pid;
}
auto PBackgroundIDBDatabaseFileParent::OtherChildID() const -> ::GeckoChildID
{
::GeckoChildID childID =
::mozilla::ipc::IProtocol::ToplevelProtocol()->OtherChildIDMaybeInvalid();
MOZ_RELEASE_ASSERT(childID != -1);
return childID;
}
auto PBackgroundIDBDatabaseFileParent::OtherEndpointProcInfo() const -> ::mozilla::ipc::EndpointProcInfo
{
return ::mozilla::ipc::EndpointProcInfo{OtherPid(), OtherChildID()};
}
auto PBackgroundIDBDatabaseFileParent::Manager() const -> PBackgroundIDBDatabaseParent*
{
return static_cast<PBackgroundIDBDatabaseParent*>(IProtocol::Manager());
}
auto PBackgroundIDBDatabaseFileParent::ManagedProtocolIds() const -> mozilla::Span<mozilla::ipc::ProtocolId const>
{
return {};
}
auto PBackgroundIDBDatabaseFileParent::GetManagedActors(mozilla::ipc::ProtocolId aProtocol) -> UntypedManagedContainer*
{
switch (aProtocol) {
default:
return nullptr;
}
}
auto PBackgroundIDBDatabaseFileParent::DeallocManagee(
mozilla::ipc::ProtocolId aProtocolId,
IProtocol* aListener) -> void
{
FatalError("unreached");
return;
}
auto PBackgroundIDBDatabaseFileParent::OnMessageReceived(const Message& msg__) -> PBackgroundIDBDatabaseFileParent::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 PBackgroundIDBDatabaseFile::Msg___delete____ID:
{
if (mozilla::ipc::LoggingEnabledFor("PBackgroundIDBDatabaseFile", mozilla::ipc::ParentSide)) {
mozilla::ipc::LogMessageForProtocol(
"PBackgroundIDBDatabaseFileParent",
this->ToplevelProtocol()->OtherPidMaybeInvalid(),
"Received ",
(&(msg__))->type(),
mozilla::ipc::MessageDirection::eReceiving);
}
AUTO_PROFILER_LABEL("PBackgroundIDBDatabaseFile::Msg___delete__", OTHER);
mozilla::ipc::IPCResult __ok = (this)->Recv__delete__();
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 PBackgroundIDBDatabaseFileParent::OnMessageReceived(
const Message& msg__,
UniquePtr<Message>& reply__) -> PBackgroundIDBDatabaseFileParent::Result
{
return MsgNotKnown;
}
} // namespace indexedDB
} // namespace dom
} // namespace mozilla
namespace IPC {
auto ParamTraits<::mozilla::dom::indexedDB::PBackgroundIDBDatabaseFileParent*>::Write(
IPC::MessageWriter* aWriter,
const paramType& aVar) -> void
{
IPC::WriteParam(aWriter, static_cast<mozilla::ipc::IProtocol*>(aVar));
// Sentinel = 'PBackgroundIDBDatabaseFile'
(aWriter)->WriteSentinel(2178025909);
}
auto ParamTraits<::mozilla::dom::indexedDB::PBackgroundIDBDatabaseFileParent*>::Read(IPC::MessageReader* aReader) -> IPC::ReadResult<paramType>
{
auto maybe__actor = IPC::ReadParam<mozilla::ipc::IProtocol*>(aReader);
if (!maybe__actor) {
aReader->FatalError("Error deserializing managed PBackgroundIDBDatabaseFile actor");
return {};
}
auto& actor = *maybe__actor;
// Sentinel = 'PBackgroundIDBDatabaseFile'
if ((!((aReader)->ReadSentinel(2178025909)))) {
mozilla::ipc::SentinelReadError("Error deserializing managed PBackgroundIDBDatabaseFile actor");
return {};
}
if (actor && actor->GetProtocolId() != PBackgroundIDBDatabaseFileMsgStart) {
aReader->FatalError("Unexpected actor type (expected PBackgroundIDBDatabaseFile)");
return {};
}
return static_cast<::mozilla::dom::indexedDB::PBackgroundIDBDatabaseFileParent*>(actor);
}
} // namespace IPC