Copy as Markdown

Other Tools

//
// Automatically generated by ipdlc.
// Edit at your own risk
//
#include "mozilla/dom/PWebAuthnTransactionChild.h"
#include "mozilla/ProfilerLabels.h"
#include "mozilla/dom/WebAuthnIPCUtils.h"
#include "mozilla/dom/WebAuthnTransactionChild.h"
#include "mozilla/dom/PWindowGlobalChild.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 {
auto PWebAuthnTransactionChild::Recv__delete__() -> mozilla::ipc::IPCResult
{
return IPC_OK();
}
MOZ_IMPLICIT PWebAuthnTransactionChild::PWebAuthnTransactionChild() :
mozilla::ipc::IRefCountedProtocol(kProtocolId, mozilla::ipc::ChildSide)
{
MOZ_COUNT_CTOR(PWebAuthnTransactionChild);
}
PWebAuthnTransactionChild::~PWebAuthnTransactionChild()
{
MOZ_COUNT_DTOR(PWebAuthnTransactionChild);
}
auto PWebAuthnTransactionChild::ActorAlloc() -> void
{
AddRef();
}
auto PWebAuthnTransactionChild::ActorDealloc() -> void
{
Release();
}
auto PWebAuthnTransactionChild::Manager() const -> PWindowGlobalChild*
{
return static_cast<PWindowGlobalChild*>(IProtocol::Manager());
}
auto PWebAuthnTransactionChild::ManagedProtocolIds() const -> mozilla::Span<mozilla::ipc::ProtocolId const>
{
return {};
}
auto PWebAuthnTransactionChild::GetManagedActors(mozilla::ipc::ProtocolId aProtocol) -> UntypedManagedContainer*
{
switch (aProtocol) {
default:
return nullptr;
}
}
auto PWebAuthnTransactionChild::RejectPendingResponses(ResponseRejectReason aReason) -> void
{
mAsyncCallbacks.RejectPendingResponses(aReason);
}
auto PWebAuthnTransactionChild::SendRequestRegister(
const WebAuthnMakeCredentialInfo& aTransactionInfo,
mozilla::ipc::ResolveCallback<WebAuthnMakeCredentialResponse>&& aResolve,
mozilla::ipc::RejectCallback&& aReject) -> void
{
UniquePtr<IPC::Message> msg__ = PWebAuthnTransaction::Msg_RequestRegister(Id());
IPC::MessageWriter writer__{
(*(msg__)),
this};
IPC::WriteParam((&(writer__)), aTransactionInfo);
// Sentinel = 'aTransactionInfo'
((&(writer__)))->WriteSentinel(914032244);
if (mozilla::ipc::LoggingEnabledFor("PWebAuthnTransaction", mozilla::ipc::ChildSide)) {
mozilla::ipc::LogMessageForProtocol(
"PWebAuthnTransactionChild",
this->ToplevelProtocol()->OtherPidMaybeInvalid(),
"Sending ",
msg__->type(),
mozilla::ipc::MessageDirection::eSending);
}
AUTO_PROFILER_LABEL("PWebAuthnTransaction::Msg_RequestRegister", OTHER);
IPC::Message::seqno_t seqno__ = 0;
if (ChannelSend(std::move(msg__), (&(seqno__)))) {
mAsyncCallbacks.AddCallback(seqno__, PWebAuthnTransaction::Reply_RequestRegister__ID, [resolve=std::move(aResolve)](IPC::MessageReader* aReader) mutable {
auto maybe__response = IPC::ReadParam<WebAuthnMakeCredentialResponse>(aReader);
if (!maybe__response) {
(aReader)->FatalError("Error deserializing 'WebAuthnMakeCredentialResponse'");
return MsgValueError;
}
auto& response = *maybe__response;
// Sentinel = 'response'
if ((!((aReader)->ReadSentinel(260965232)))) {
mozilla::ipc::SentinelReadError("Error deserializing 'WebAuthnMakeCredentialResponse'");
return MsgValueError;
}
aReader->EndRead();
resolve(std::move(response));
return MsgProcessed;
}, std::move(aReject));
}
else {
aReject(::mozilla::ipc::ResponseRejectReason::SendError);
}
return;
}
auto PWebAuthnTransactionChild::SendRequestRegister(const WebAuthnMakeCredentialInfo& aTransactionInfo) -> RefPtr<RequestRegisterPromise>
{
RefPtr<MozPromise<WebAuthnMakeCredentialResponse, ResponseRejectReason, true>::Private> promise__ = new MozPromise<WebAuthnMakeCredentialResponse, ResponseRejectReason, true>::Private(__func__);
promise__->UseDirectTaskDispatch(__func__);
SendRequestRegister(std::move(aTransactionInfo), [promise__](WebAuthnMakeCredentialResponse&& aValue) {
promise__->Resolve(std::move(aValue), __func__);
}, [promise__](ResponseRejectReason&& aReason) {
promise__->Reject(std::move(aReason), __func__);
});
return promise__;
}
auto PWebAuthnTransactionChild::SendRequestSign(
const WebAuthnGetAssertionInfo& aTransactionInfo,
mozilla::ipc::ResolveCallback<WebAuthnGetAssertionResponse>&& aResolve,
mozilla::ipc::RejectCallback&& aReject) -> void
{
UniquePtr<IPC::Message> msg__ = PWebAuthnTransaction::Msg_RequestSign(Id());
IPC::MessageWriter writer__{
(*(msg__)),
this};
IPC::WriteParam((&(writer__)), aTransactionInfo);
// Sentinel = 'aTransactionInfo'
((&(writer__)))->WriteSentinel(914032244);
if (mozilla::ipc::LoggingEnabledFor("PWebAuthnTransaction", mozilla::ipc::ChildSide)) {
mozilla::ipc::LogMessageForProtocol(
"PWebAuthnTransactionChild",
this->ToplevelProtocol()->OtherPidMaybeInvalid(),
"Sending ",
msg__->type(),
mozilla::ipc::MessageDirection::eSending);
}
AUTO_PROFILER_LABEL("PWebAuthnTransaction::Msg_RequestSign", OTHER);
IPC::Message::seqno_t seqno__ = 0;
if (ChannelSend(std::move(msg__), (&(seqno__)))) {
mAsyncCallbacks.AddCallback(seqno__, PWebAuthnTransaction::Reply_RequestSign__ID, [resolve=std::move(aResolve)](IPC::MessageReader* aReader) mutable {
auto maybe__response = IPC::ReadParam<WebAuthnGetAssertionResponse>(aReader);
if (!maybe__response) {
(aReader)->FatalError("Error deserializing 'WebAuthnGetAssertionResponse'");
return MsgValueError;
}
auto& response = *maybe__response;
// Sentinel = 'response'
if ((!((aReader)->ReadSentinel(260965232)))) {
mozilla::ipc::SentinelReadError("Error deserializing 'WebAuthnGetAssertionResponse'");
return MsgValueError;
}
aReader->EndRead();
resolve(std::move(response));
return MsgProcessed;
}, std::move(aReject));
}
else {
aReject(::mozilla::ipc::ResponseRejectReason::SendError);
}
return;
}
auto PWebAuthnTransactionChild::SendRequestSign(const WebAuthnGetAssertionInfo& aTransactionInfo) -> RefPtr<RequestSignPromise>
{
RefPtr<MozPromise<WebAuthnGetAssertionResponse, ResponseRejectReason, true>::Private> promise__ = new MozPromise<WebAuthnGetAssertionResponse, ResponseRejectReason, true>::Private(__func__);
promise__->UseDirectTaskDispatch(__func__);
SendRequestSign(std::move(aTransactionInfo), [promise__](WebAuthnGetAssertionResponse&& aValue) {
promise__->Resolve(std::move(aValue), __func__);
}, [promise__](ResponseRejectReason&& aReason) {
promise__->Reject(std::move(aReason), __func__);
});
return promise__;
}
auto PWebAuthnTransactionChild::SendRequestIsUVPAA(
mozilla::ipc::ResolveCallback<bool>&& aResolve,
mozilla::ipc::RejectCallback&& aReject) -> void
{
UniquePtr<IPC::Message> msg__ = PWebAuthnTransaction::Msg_RequestIsUVPAA(Id());
IPC::MessageWriter writer__{
(*(msg__)),
this};
if (mozilla::ipc::LoggingEnabledFor("PWebAuthnTransaction", mozilla::ipc::ChildSide)) {
mozilla::ipc::LogMessageForProtocol(
"PWebAuthnTransactionChild",
this->ToplevelProtocol()->OtherPidMaybeInvalid(),
"Sending ",
msg__->type(),
mozilla::ipc::MessageDirection::eSending);
}
AUTO_PROFILER_LABEL("PWebAuthnTransaction::Msg_RequestIsUVPAA", OTHER);
IPC::Message::seqno_t seqno__ = 0;
if (ChannelSend(std::move(msg__), (&(seqno__)))) {
mAsyncCallbacks.AddCallback(seqno__, PWebAuthnTransaction::Reply_RequestIsUVPAA__ID, [resolve=std::move(aResolve)](IPC::MessageReader* aReader) mutable {
auto maybe__available = IPC::ReadParam<bool>(aReader);
if (!maybe__available) {
(aReader)->FatalError("Error deserializing 'bool'");
return MsgValueError;
}
auto& available = *maybe__available;
// Sentinel = 'available'
if ((!((aReader)->ReadSentinel(306316194)))) {
mozilla::ipc::SentinelReadError("Error deserializing 'bool'");
return MsgValueError;
}
aReader->EndRead();
resolve(std::move(available));
return MsgProcessed;
}, std::move(aReject));
}
else {
aReject(::mozilla::ipc::ResponseRejectReason::SendError);
}
return;
}
auto PWebAuthnTransactionChild::SendRequestIsUVPAA() -> RefPtr<RequestIsUVPAAPromise>
{
RefPtr<MozPromise<bool, ResponseRejectReason, true>::Private> promise__ = new MozPromise<bool, ResponseRejectReason, true>::Private(__func__);
promise__->UseDirectTaskDispatch(__func__);
SendRequestIsUVPAA([promise__](bool&& aValue) {
promise__->Resolve(std::move(aValue), __func__);
}, [promise__](ResponseRejectReason&& aReason) {
promise__->Reject(std::move(aReason), __func__);
});
return promise__;
}
auto PWebAuthnTransactionChild::SendRequestCancel() -> bool
{
UniquePtr<IPC::Message> msg__ = PWebAuthnTransaction::Msg_RequestCancel(Id());
IPC::MessageWriter writer__{
(*(msg__)),
this};
if (mozilla::ipc::LoggingEnabledFor("PWebAuthnTransaction", mozilla::ipc::ChildSide)) {
mozilla::ipc::LogMessageForProtocol(
"PWebAuthnTransactionChild",
this->ToplevelProtocol()->OtherPidMaybeInvalid(),
"Sending ",
msg__->type(),
mozilla::ipc::MessageDirection::eSending);
}
AUTO_PROFILER_LABEL("PWebAuthnTransaction::Msg_RequestCancel", OTHER);
bool sendok__ = ChannelSend(std::move(msg__));
return sendok__;
}
auto PWebAuthnTransactionChild::DeallocManagee(
mozilla::ipc::ProtocolId aProtocolId,
IProtocol* aListener) -> void
{
FatalError("unreached");
return;
}
auto PWebAuthnTransactionChild::OnMessageReceived(const Message& msg__) -> PWebAuthnTransactionChild::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 PWebAuthnTransaction::Reply_RequestRegister__ID:
{
if (mozilla::ipc::LoggingEnabledFor("PWebAuthnTransaction", mozilla::ipc::ChildSide)) {
mozilla::ipc::LogMessageForProtocol(
"PWebAuthnTransactionChild",
this->ToplevelProtocol()->OtherPidMaybeInvalid(),
"Received ",
(&(msg__))->type(),
mozilla::ipc::MessageDirection::eReceiving);
}
AUTO_PROFILER_LABEL("PWebAuthnTransaction::Msg_RequestRegister", OTHER);
return mAsyncCallbacks.GotReply(this, msg__);
}
case PWebAuthnTransaction::Reply_RequestSign__ID:
{
if (mozilla::ipc::LoggingEnabledFor("PWebAuthnTransaction", mozilla::ipc::ChildSide)) {
mozilla::ipc::LogMessageForProtocol(
"PWebAuthnTransactionChild",
this->ToplevelProtocol()->OtherPidMaybeInvalid(),
"Received ",
(&(msg__))->type(),
mozilla::ipc::MessageDirection::eReceiving);
}
AUTO_PROFILER_LABEL("PWebAuthnTransaction::Msg_RequestSign", OTHER);
return mAsyncCallbacks.GotReply(this, msg__);
}
case PWebAuthnTransaction::Reply_RequestIsUVPAA__ID:
{
if (mozilla::ipc::LoggingEnabledFor("PWebAuthnTransaction", mozilla::ipc::ChildSide)) {
mozilla::ipc::LogMessageForProtocol(
"PWebAuthnTransactionChild",
this->ToplevelProtocol()->OtherPidMaybeInvalid(),
"Received ",
(&(msg__))->type(),
mozilla::ipc::MessageDirection::eReceiving);
}
AUTO_PROFILER_LABEL("PWebAuthnTransaction::Msg_RequestIsUVPAA", OTHER);
return mAsyncCallbacks.GotReply(this, msg__);
}
case PWebAuthnTransaction::Msg___delete____ID:
{
if (mozilla::ipc::LoggingEnabledFor("PWebAuthnTransaction", mozilla::ipc::ChildSide)) {
mozilla::ipc::LogMessageForProtocol(
"PWebAuthnTransactionChild",
this->ToplevelProtocol()->OtherPidMaybeInvalid(),
"Received ",
(&(msg__))->type(),
mozilla::ipc::MessageDirection::eReceiving);
}
AUTO_PROFILER_LABEL("PWebAuthnTransaction::Msg___delete__", OTHER);
mozilla::ipc::IPCResult __ok = (static_cast<WebAuthnTransactionChild*>(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 PWebAuthnTransactionChild::OnMessageReceived(
const Message& msg__,
UniquePtr<Message>& reply__) -> PWebAuthnTransactionChild::Result
{
return MsgNotKnown;
}
} // namespace dom
} // namespace mozilla
namespace IPC {
auto ParamTraits<::mozilla::dom::PWebAuthnTransactionChild*>::Write(
IPC::MessageWriter* aWriter,
const paramType& aVar) -> void
{
IPC::WriteParam(aWriter, static_cast<mozilla::ipc::IProtocol*>(aVar));
// Sentinel = 'PWebAuthnTransaction'
(aWriter)->WriteSentinel(1353844725);
}
auto ParamTraits<::mozilla::dom::PWebAuthnTransactionChild*>::Read(IPC::MessageReader* aReader) -> IPC::ReadResult<paramType>
{
auto maybe__actor = IPC::ReadParam<mozilla::ipc::IProtocol*>(aReader);
if (!maybe__actor) {
aReader->FatalError("Error deserializing managed PWebAuthnTransaction actor");
return {};
}
auto& actor = *maybe__actor;
// Sentinel = 'PWebAuthnTransaction'
if ((!((aReader)->ReadSentinel(1353844725)))) {
mozilla::ipc::SentinelReadError("Error deserializing managed PWebAuthnTransaction actor");
return {};
}
if (actor && actor->GetProtocolId() != PWebAuthnTransactionMsgStart) {
aReader->FatalError("Unexpected actor type (expected PWebAuthnTransaction)");
return {};
}
return static_cast<::mozilla::dom::PWebAuthnTransactionChild*>(actor);
}
} // namespace IPC