Generated file

Copy as Markdown

Other Tools

//
// Automatically generated by ipdlc.
// Edit at your own risk
//
#include "mozilla/glean/PFOGTransportParent.h"
#include "mozilla/ProfilerLabels.h"
#include "mozilla/glean/FOGTransportParent.h"
#include "mozilla/ipc/ByteBufUtils.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 glean {
auto PFOGTransportParent::ProcessingError(
Result aCode,
const char* aReason) -> void
{
}
auto PFOGTransportParent::ShouldContinueFromReplyTimeout() -> bool
{
return true;
}
MOZ_IMPLICIT PFOGTransportParent::PFOGTransportParent() :
mozilla::ipc::IToplevelProtocol("PFOGTransportParent", kProtocolId, mozilla::ipc::ParentSide)
{
MOZ_COUNT_CTOR(PFOGTransportParent);
}
PFOGTransportParent::~PFOGTransportParent()
{
MOZ_COUNT_DTOR(PFOGTransportParent);
}
auto PFOGTransportParent::ActorAlloc() -> void
{
MOZ_RELEASE_ASSERT(XRE_IsParentProcess(), "Invalid process for `PFOGTransportParent'");
AddRef();
}
auto PFOGTransportParent::ActorDealloc() -> void
{
Release();
}
auto PFOGTransportParent::ManagedProtocolIds() const -> mozilla::Span<mozilla::ipc::ProtocolId const>
{
return {};
}
auto PFOGTransportParent::GetManagedActors(mozilla::ipc::ProtocolId aProtocol) -> UntypedManagedContainer*
{
switch (aProtocol) {
default:
return nullptr;
}
}
auto PFOGTransportParent::RejectPendingResponses(ResponseRejectReason aReason) -> void
{
mAsyncCallbacks.RejectPendingResponses(aReason);
}
auto PFOGTransportParent::SendFlushFOGData(
mozilla::ipc::ResolveCallback<ByteBuf>&& aResolve,
mozilla::ipc::RejectCallback&& aReject) -> void
{
UniquePtr<IPC::Message> msg__ = PFOGTransport::Msg_FlushFOGData(MSG_ROUTING_CONTROL);
IPC::MessageWriter writer__{
(*(msg__)),
this};
if (mozilla::ipc::LoggingEnabledFor("PFOGTransport", mozilla::ipc::ParentSide)) {
mozilla::ipc::LogMessageForProtocol(
"PFOGTransportParent",
this->ToplevelProtocol()->OtherPidMaybeInvalid(),
"Sending ",
msg__->type(),
mozilla::ipc::MessageDirection::eSending);
}
AUTO_PROFILER_LABEL("PFOGTransport::Msg_FlushFOGData", OTHER);
IPC::Message::seqno_t seqno__ = 0;
if (ChannelSend(std::move(msg__), (&(seqno__)))) {
mAsyncCallbacks.AddCallback(seqno__, PFOGTransport::Reply_FlushFOGData__ID, [resolve=std::move(aResolve)](IPC::MessageReader* aReader) mutable {
auto maybe__buf = IPC::ReadParam<ByteBuf>(aReader);
if (!maybe__buf) {
(aReader)->FatalError("Error deserializing 'ByteBuf'");
return MsgValueError;
}
auto& buf = *maybe__buf;
// Sentinel = 'buf'
if ((!((aReader)->ReadSentinel(41484606)))) {
mozilla::ipc::SentinelReadError("Error deserializing 'ByteBuf'");
return MsgValueError;
}
aReader->EndRead();
resolve(std::move(buf));
return MsgProcessed;
}, std::move(aReject));
}
else {
aReject(::mozilla::ipc::ResponseRejectReason::SendError);
}
return;
}
auto PFOGTransportParent::SendFlushFOGData() -> RefPtr<FlushFOGDataPromise>
{
RefPtr<MozPromise<ByteBuf, ResponseRejectReason, true>::Private> promise__ = new MozPromise<ByteBuf, ResponseRejectReason, true>::Private(__func__);
promise__->UseDirectTaskDispatch(__func__);
SendFlushFOGData([promise__](ByteBuf&& aValue) {
promise__->Resolve(std::move(aValue), __func__);
}, [promise__](ResponseRejectReason&& aReason) {
promise__->Reject(std::move(aReason), __func__);
});
return promise__;
}
auto PFOGTransportParent::DeallocManagee(
mozilla::ipc::ProtocolId aProtocolId,
IProtocol* aListener) -> void
{
FatalError("unreached");
return;
}
auto PFOGTransportParent::OnMessageReceived(const Message& msg__) -> PFOGTransportParent::Result
{
if (!CanSend()) {
if (mozilla::ipc::LoggingEnabledFor("PFOGTransport", mozilla::ipc::ParentSide)) {
mozilla::ipc::LogMessageForProtocol(
"PFOGTransportParent",
this->ToplevelProtocol()->OtherPidMaybeInvalid(),
"Ignored message for dead actor",
(&(msg__))->type(),
mozilla::ipc::MessageDirection::eSending);
}
return MsgProcessed;
}
switch (msg__.type()) {
case PFOGTransport::Msg_FOGData__ID:
{
if (mozilla::ipc::LoggingEnabledFor("PFOGTransport", mozilla::ipc::ParentSide)) {
mozilla::ipc::LogMessageForProtocol(
"PFOGTransportParent",
this->ToplevelProtocol()->OtherPidMaybeInvalid(),
"Received ",
(&(msg__))->type(),
mozilla::ipc::MessageDirection::eReceiving);
}
AUTO_PROFILER_LABEL("PFOGTransport::Msg_FOGData", OTHER);
IPC::MessageReader reader__{
msg__,
this};
auto maybe__buf = IPC::ReadParam<ByteBuf>((&(reader__)));
if (!maybe__buf) {
FatalError("Error deserializing 'ByteBuf'");
return MsgValueError;
}
auto& buf = *maybe__buf;
// Sentinel = 'buf'
if ((!(((&(reader__)))->ReadSentinel(41484606)))) {
mozilla::ipc::SentinelReadError("Error deserializing 'ByteBuf'");
return MsgValueError;
}
reader__.EndRead();
mozilla::ipc::IPCResult __ok = (static_cast<FOGTransportParent*>(this))->RecvFOGData(std::move(buf));
if ((!(__ok))) {
mozilla::ipc::ProtocolErrorBreakpoint("Handler returned error code!");
// Error handled in mozilla::ipc::IPCResult
return MsgProcessingError;
}
return MsgProcessed;
}
case PFOGTransport::Reply_FlushFOGData__ID:
{
if (mozilla::ipc::LoggingEnabledFor("PFOGTransport", mozilla::ipc::ParentSide)) {
mozilla::ipc::LogMessageForProtocol(
"PFOGTransportParent",
this->ToplevelProtocol()->OtherPidMaybeInvalid(),
"Received ",
(&(msg__))->type(),
mozilla::ipc::MessageDirection::eReceiving);
}
AUTO_PROFILER_LABEL("PFOGTransport::Msg_FlushFOGData", OTHER);
return mAsyncCallbacks.GotReply(this, msg__);
}
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 PFOGTransportParent::OnMessageReceived(
const Message& msg__,
UniquePtr<Message>& reply__) -> PFOGTransportParent::Result
{
if (!CanSend()) {
return MsgDropped;
}
MOZ_ASSERT_UNREACHABLE("message protocol not supported");
return MsgNotKnown;
}
} // namespace glean
} // namespace mozilla
namespace IPC {
auto ParamTraits<::mozilla::glean::PFOGTransportParent*>::Write(
IPC::MessageWriter* aWriter,
const paramType& aVar) -> void
{
IPC::WriteParam(aWriter, static_cast<mozilla::ipc::IProtocol*>(aVar));
// Sentinel = 'PFOGTransport'
(aWriter)->WriteSentinel(536020218);
}
auto ParamTraits<::mozilla::glean::PFOGTransportParent*>::Read(IPC::MessageReader* aReader) -> IPC::ReadResult<paramType>
{
auto maybe__actor = IPC::ReadParam<mozilla::ipc::IProtocol*>(aReader);
if (!maybe__actor) {
aReader->FatalError("Error deserializing managed PFOGTransport actor");
return {};
}
auto& actor = *maybe__actor;
// Sentinel = 'PFOGTransport'
if ((!((aReader)->ReadSentinel(536020218)))) {
mozilla::ipc::SentinelReadError("Error deserializing managed PFOGTransport actor");
return {};
}
if (actor && actor->GetProtocolId() != PFOGTransportMsgStart) {
aReader->FatalError("Unexpected actor type (expected PFOGTransport)");
return {};
}
return static_cast<::mozilla::glean::PFOGTransportParent*>(actor);
}
} // namespace IPC