Copy as Markdown

Other Tools

//
// Automatically generated by ipdlc.
// Edit at your own risk
//
#include "mozilla/dom/PJSValidatorParent.h"
#include "mozilla/ProfilerLabels.h"
#include "mozilla/dom/JSValidatorParent.h"
#include "mozilla/dom/PJSOracleParent.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 PJSValidatorParent::PJSValidatorParent() :
mozilla::ipc::IRefCountedProtocol(PJSValidatorMsgStart, mozilla::ipc::ParentSide)
{
MOZ_COUNT_CTOR(PJSValidatorParent);
}
PJSValidatorParent::~PJSValidatorParent()
{
MOZ_COUNT_DTOR(PJSValidatorParent);
}
auto PJSValidatorParent::ActorAlloc() -> void
{
AddRef();
}
auto PJSValidatorParent::ActorDealloc() -> void
{
Release();
}
auto PJSValidatorParent::Manager() const -> PJSOracleParent*
{
return static_cast<PJSOracleParent*>(IProtocol::Manager());
}
auto PJSValidatorParent::AllManagedActors(nsTArray<RefPtr<mozilla::ipc::ActorLifecycleProxy>>& arr__) const -> void
{
uint32_t total = 0;
arr__.SetCapacity(total);
}
auto PJSValidatorParent::AllManagedActorsCount() const -> uint32_t
{
uint32_t total = 0;
return total;
}
auto PJSValidatorParent::SendIsOpaqueResponseAllowed(
mozilla::ipc::ResolveCallback<std::tuple<mozilla::Maybe<Shmem>, ValidatorResult>>&& aResolve,
mozilla::ipc::RejectCallback&& aReject) -> void
{
UniquePtr<IPC::Message> msg__ = PJSValidator::Msg_IsOpaqueResponseAllowed(Id());
IPC::MessageWriter writer__{
(*(msg__)),
this};
if (mozilla::ipc::LoggingEnabledFor("PJSValidator", mozilla::ipc::ParentSide)) {
mozilla::ipc::LogMessageForProtocol(
"PJSValidatorParent",
this->ToplevelProtocol()->OtherPidMaybeInvalid(),
"Sending ",
msg__->type(),
mozilla::ipc::MessageDirection::eSending);
}
AUTO_PROFILER_LABEL("PJSValidator::Msg_IsOpaqueResponseAllowed", OTHER);
ChannelSend(std::move(msg__), PJSValidator::Reply_IsOpaqueResponseAllowed__ID, std::move(aResolve), std::move(aReject));
return;
}
auto PJSValidatorParent::SendIsOpaqueResponseAllowed() -> RefPtr<IsOpaqueResponseAllowedPromise>
{
RefPtr<MozPromise<std::tuple<mozilla::Maybe<Shmem>, ValidatorResult>, ResponseRejectReason, true>::Private> promise__ = new MozPromise<std::tuple<mozilla::Maybe<Shmem>, ValidatorResult>, ResponseRejectReason, true>::Private(__func__);
promise__->UseDirectTaskDispatch(__func__);
SendIsOpaqueResponseAllowed([promise__](std::tuple<mozilla::Maybe<Shmem>, ValidatorResult>&& aValue) {
promise__->Resolve(std::move(aValue), __func__);
}, [promise__](ResponseRejectReason&& aReason) {
promise__->Reject(std::move(aReason), __func__);
});
return promise__;
}
auto PJSValidatorParent::SendOnDataAvailable(Shmem&& aData) -> bool
{
UniquePtr<IPC::Message> msg__ = PJSValidator::Msg_OnDataAvailable(Id());
IPC::MessageWriter writer__{
(*(msg__)),
this};
IPC::WriteParam((&(writer__)), std::move(aData));
// Sentinel = 'aData'
((&(writer__)))->WriteSentinel(90571228);
if (mozilla::ipc::LoggingEnabledFor("PJSValidator", mozilla::ipc::ParentSide)) {
mozilla::ipc::LogMessageForProtocol(
"PJSValidatorParent",
this->ToplevelProtocol()->OtherPidMaybeInvalid(),
"Sending ",
msg__->type(),
mozilla::ipc::MessageDirection::eSending);
}
AUTO_PROFILER_LABEL("PJSValidator::Msg_OnDataAvailable", OTHER);
bool sendok__ = ChannelSend(std::move(msg__));
return sendok__;
}
auto PJSValidatorParent::SendOnStopRequest(
const nsresult& aReason,
const nsACString& aContentCharset,
const nsAString& aHintCharset,
const nsAString& aDocumentCharset) -> bool
{
UniquePtr<IPC::Message> msg__ = PJSValidator::Msg_OnStopRequest(Id());
IPC::MessageWriter writer__{
(*(msg__)),
this};
IPC::WriteParam((&(writer__)), aReason);
// Sentinel = 'aReason'
((&(writer__)))->WriteSentinel(180093642);
IPC::WriteParam((&(writer__)), aContentCharset);
// Sentinel = 'aContentCharset'
((&(writer__)))->WriteSentinel(791152135);
IPC::WriteParam((&(writer__)), aHintCharset);
// Sentinel = 'aHintCharset'
((&(writer__)))->WriteSentinel(500237503);
IPC::WriteParam((&(writer__)), aDocumentCharset);
// Sentinel = 'aDocumentCharset'
((&(writer__)))->WriteSentinel(895026795);
if (mozilla::ipc::LoggingEnabledFor("PJSValidator", mozilla::ipc::ParentSide)) {
mozilla::ipc::LogMessageForProtocol(
"PJSValidatorParent",
this->ToplevelProtocol()->OtherPidMaybeInvalid(),
"Sending ",
msg__->type(),
mozilla::ipc::MessageDirection::eSending);
}
AUTO_PROFILER_LABEL("PJSValidator::Msg_OnStopRequest", OTHER);
bool sendok__ = ChannelSend(std::move(msg__));
return sendok__;
}
auto PJSValidatorParent::Send__delete__(PJSValidatorParent* actor) -> bool
{
if (!actor || !actor->CanSend()) {
NS_WARNING("Attempt to __delete__ missing or closed actor");
return false;
}
UniquePtr<IPC::Message> msg__ = PJSValidator::Msg___delete__((actor)->Id());
IPC::MessageWriter writer__{
(*(msg__)),
actor};
if (mozilla::ipc::LoggingEnabledFor("PJSValidator", mozilla::ipc::ParentSide)) {
mozilla::ipc::LogMessageForProtocol(
"PJSValidatorParent",
actor->ToplevelProtocol()->OtherPidMaybeInvalid(),
"Sending ",
msg__->type(),
mozilla::ipc::MessageDirection::eSending);
}
AUTO_PROFILER_LABEL("PJSValidator::Msg___delete__", OTHER);
bool sendok__ = (actor)->ChannelSend(std::move(msg__));
IProtocol* mgr = actor->Manager();
actor->DestroySubtree(Deletion);
actor->ClearSubtree();
mgr->RemoveManagee(PJSValidatorMsgStart, actor);
return sendok__;
}
auto PJSValidatorParent::RemoveManagee(
int32_t aProtocolId,
IProtocol* aListener) -> void
{
FatalError("unreached");
return;
}
auto PJSValidatorParent::DeallocManagee(
int32_t aProtocolId,
IProtocol* aListener) -> void
{
FatalError("unreached");
return;
}
auto PJSValidatorParent::OnMessageReceived(const Message& msg__) -> PJSValidatorParent::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;
IProtocol* mgr = this->Manager();
this->DestroySubtree(ManagedEndpointDropped);
this->ClearSubtree();
mgr->RemoveManagee(PJSValidatorMsgStart, this);
return MsgProcessed;
}
case PJSValidator::Reply_IsOpaqueResponseAllowed__ID:
{
if (mozilla::ipc::LoggingEnabledFor("PJSValidator", mozilla::ipc::ParentSide)) {
mozilla::ipc::LogMessageForProtocol(
"PJSValidatorParent",
this->ToplevelProtocol()->OtherPidMaybeInvalid(),
"Received ",
(&(msg__))->type(),
mozilla::ipc::MessageDirection::eReceiving);
}
AUTO_PROFILER_LABEL("PJSValidator::Msg_IsOpaqueResponseAllowed", OTHER);
IPC::MessageReader reader__{
msg__,
this};
bool resolve__ = false;
if (!IPC::ReadParam(&reader__, &resolve__)) {
FatalError("Error deserializing bool");
return MsgValueError;
}
UniquePtr<MessageChannel::UntypedCallbackHolder> untypedCallback =
GetIPCChannel()->PopCallback(msg__, Id());
typedef MessageChannel::CallbackHolder<std::tuple<mozilla::Maybe<Shmem>, ValidatorResult>> CallbackHolder;
auto* callback = static_cast<CallbackHolder*>(untypedCallback.get());
if (!callback) {
FatalError("Error unknown callback");
return MsgProcessingError;
}
if (resolve__) {
auto maybe__aMem = IPC::ReadParam<mozilla::Maybe<Shmem>>((&(reader__)));
if (!maybe__aMem) {
FatalError("Error deserializing 'Shmem?'");
return MsgValueError;
}
auto& aMem = *maybe__aMem;
// Sentinel = 'aMem'
if ((!(((&(reader__)))->ReadSentinel(61211009)))) {
mozilla::ipc::SentinelReadError("Error deserializing 'Shmem?'");
return MsgValueError;
}
auto maybe__aResult = IPC::ReadParam<ValidatorResult>((&(reader__)));
if (!maybe__aResult) {
FatalError("Error deserializing 'ValidatorResult'");
return MsgValueError;
}
auto& aResult = *maybe__aResult;
// Sentinel = 'aResult'
if ((!(((&(reader__)))->ReadSentinel(185205473)))) {
mozilla::ipc::SentinelReadError("Error deserializing 'ValidatorResult'");
return MsgValueError;
}
reader__.EndRead();
callback->Resolve(std::make_tuple(std::move(aMem), std::move(aResult)));
} else {
ResponseRejectReason reason__{};
if (!IPC::ReadParam(&reader__, &reason__)) {
FatalError("Error deserializing ResponseRejectReason");
return MsgValueError;
}
reader__.EndRead();
callback->Reject(std::move(reason__));
}
return MsgProcessed;
}
case PJSValidator::Reply___delete____ID:
{
return MsgProcessed;
}
default:
return MsgNotKnown;
}
}
auto PJSValidatorParent::OnMessageReceived(
const Message& msg__,
UniquePtr<Message>& reply__) -> PJSValidatorParent::Result
{
MOZ_ASSERT_UNREACHABLE("message protocol not supported");
return MsgNotKnown;
}
auto PJSValidatorParent::ClearSubtree() -> void
{
}
} // namespace dom
} // namespace mozilla
namespace IPC {
auto ParamTraits<::mozilla::dom::PJSValidatorParent*>::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::PJSValidatorParent*>::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, "PJSValidator", PJSValidatorMsgStart);
if (actor.isSome()) {
return static_cast<::mozilla::dom::PJSValidatorParent*>(actor.ref());
}
return {};
}
} // namespace IPC