Copy as Markdown

Other Tools

//
// Automatically generated by ipdlc.
// Edit at your own risk
//
#include "mozilla/net/PWebSocketEventListenerParent.h"
#include "mozilla/ProfilerLabels.h"
#include "mozilla/net/WebSocketEventListenerParent.h"
#include "mozilla/net/WebSocketFrame.h"
#include "mozilla/net/PNeckoParent.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 net {
MOZ_IMPLICIT PWebSocketEventListenerParent::PWebSocketEventListenerParent() :
mozilla::ipc::IProtocol(PWebSocketEventListenerMsgStart, mozilla::ipc::ParentSide)
{
MOZ_COUNT_CTOR(PWebSocketEventListenerParent);
}
PWebSocketEventListenerParent::~PWebSocketEventListenerParent()
{
MOZ_COUNT_DTOR(PWebSocketEventListenerParent);
}
auto PWebSocketEventListenerParent::ActorAlloc() -> void
{
}
auto PWebSocketEventListenerParent::ActorDealloc() -> void
{
if (Manager()) {
Manager()->DeallocManagee(PWebSocketEventListenerMsgStart, this);
}
}
auto PWebSocketEventListenerParent::OtherPid() const -> ::base::ProcessId
{
::base::ProcessId pid =
::mozilla::ipc::IProtocol::ToplevelProtocol()->OtherPidMaybeInvalid();
MOZ_RELEASE_ASSERT(pid != ::base::kInvalidProcessId);
return pid;
}
auto PWebSocketEventListenerParent::Manager() const -> PNeckoParent*
{
return static_cast<PNeckoParent*>(IProtocol::Manager());
}
auto PWebSocketEventListenerParent::AllManagedActorsCount() const -> uint32_t
{
uint32_t total = 0;
return total;
}
auto PWebSocketEventListenerParent::SendWebSocketCreated(
const uint32_t& awebSocketSerialID,
const nsAString& aURI,
const nsACString& aProtocols) -> bool
{
UniquePtr<IPC::Message> msg__ = PWebSocketEventListener::Msg_WebSocketCreated(Id());
IPC::MessageWriter writer__{
(*(msg__)),
this};
IPC::WriteParam((&(writer__)), awebSocketSerialID);
// Sentinel = 'awebSocketSerialID'
((&(writer__)))->WriteSentinel(1140524790);
IPC::WriteParam((&(writer__)), aURI);
// Sentinel = 'aURI'
((&(writer__)))->WriteSentinel(57934162);
IPC::WriteParam((&(writer__)), aProtocols);
// Sentinel = 'aProtocols'
((&(writer__)))->WriteSentinel(373556263);
if (mozilla::ipc::LoggingEnabledFor("PWebSocketEventListener", mozilla::ipc::ParentSide)) {
mozilla::ipc::LogMessageForProtocol(
"PWebSocketEventListenerParent",
this->ToplevelProtocol()->OtherPidMaybeInvalid(),
"Sending ",
msg__->type(),
mozilla::ipc::MessageDirection::eSending);
}
AUTO_PROFILER_LABEL("PWebSocketEventListener::Msg_WebSocketCreated", OTHER);
bool sendok__ = ChannelSend(std::move(msg__));
return sendok__;
}
auto PWebSocketEventListenerParent::SendWebSocketOpened(
const uint32_t& awebSocketSerialID,
const nsAString& aEffectiveURI,
const nsACString& aProtocols,
const nsACString& aExtensions,
const uint64_t& aHttpChannelId) -> bool
{
UniquePtr<IPC::Message> msg__ = PWebSocketEventListener::Msg_WebSocketOpened(Id());
IPC::MessageWriter writer__{
(*(msg__)),
this};
IPC::WriteParam((&(writer__)), awebSocketSerialID);
// Sentinel = 'awebSocketSerialID'
((&(writer__)))->WriteSentinel(1140524790);
IPC::WriteParam((&(writer__)), aEffectiveURI);
// Sentinel = 'aEffectiveURI'
((&(writer__)))->WriteSentinel(581502179);
IPC::WriteParam((&(writer__)), aProtocols);
// Sentinel = 'aProtocols'
((&(writer__)))->WriteSentinel(373556263);
IPC::WriteParam((&(writer__)), aExtensions);
// Sentinel = 'aExtensions'
((&(writer__)))->WriteSentinel(446039186);
IPC::WriteParam((&(writer__)), aHttpChannelId);
// Sentinel = 'aHttpChannelId'
((&(writer__)))->WriteSentinel(681182568);
if (mozilla::ipc::LoggingEnabledFor("PWebSocketEventListener", mozilla::ipc::ParentSide)) {
mozilla::ipc::LogMessageForProtocol(
"PWebSocketEventListenerParent",
this->ToplevelProtocol()->OtherPidMaybeInvalid(),
"Sending ",
msg__->type(),
mozilla::ipc::MessageDirection::eSending);
}
AUTO_PROFILER_LABEL("PWebSocketEventListener::Msg_WebSocketOpened", OTHER);
bool sendok__ = ChannelSend(std::move(msg__));
return sendok__;
}
auto PWebSocketEventListenerParent::SendWebSocketMessageAvailable(
const uint32_t& awebSocketSerialID,
const nsACString& aData,
const uint16_t& aMessageType) -> bool
{
UniquePtr<IPC::Message> msg__ = PWebSocketEventListener::Msg_WebSocketMessageAvailable(Id());
IPC::MessageWriter writer__{
(*(msg__)),
this};
IPC::WriteParam((&(writer__)), awebSocketSerialID);
// Sentinel = 'awebSocketSerialID'
((&(writer__)))->WriteSentinel(1140524790);
IPC::WriteParam((&(writer__)), aData);
// Sentinel = 'aData'
((&(writer__)))->WriteSentinel(90571228);
IPC::WriteParam((&(writer__)), aMessageType);
// Sentinel = 'aMessageType'
((&(writer__)))->WriteSentinel(512099529);
if (mozilla::ipc::LoggingEnabledFor("PWebSocketEventListener", mozilla::ipc::ParentSide)) {
mozilla::ipc::LogMessageForProtocol(
"PWebSocketEventListenerParent",
this->ToplevelProtocol()->OtherPidMaybeInvalid(),
"Sending ",
msg__->type(),
mozilla::ipc::MessageDirection::eSending);
}
AUTO_PROFILER_LABEL("PWebSocketEventListener::Msg_WebSocketMessageAvailable", OTHER);
bool sendok__ = ChannelSend(std::move(msg__));
return sendok__;
}
auto PWebSocketEventListenerParent::SendWebSocketClosed(
const uint32_t& awebSocketSerialID,
const bool& aWasClean,
const uint16_t& aCode,
const nsAString& aReason) -> bool
{
UniquePtr<IPC::Message> msg__ = PWebSocketEventListener::Msg_WebSocketClosed(Id());
IPC::MessageWriter writer__{
(*(msg__)),
this};
IPC::WriteParam((&(writer__)), awebSocketSerialID);
// Sentinel = 'awebSocketSerialID'
((&(writer__)))->WriteSentinel(1140524790);
IPC::WriteParam((&(writer__)), aWasClean);
// Sentinel = 'aWasClean'
((&(writer__)))->WriteSentinel(283181936);
IPC::WriteParam((&(writer__)), aCode);
// Sentinel = 'aCode'
((&(writer__)))->WriteSentinel(91226589);
IPC::WriteParam((&(writer__)), aReason);
// Sentinel = 'aReason'
((&(writer__)))->WriteSentinel(180093642);
if (mozilla::ipc::LoggingEnabledFor("PWebSocketEventListener", mozilla::ipc::ParentSide)) {
mozilla::ipc::LogMessageForProtocol(
"PWebSocketEventListenerParent",
this->ToplevelProtocol()->OtherPidMaybeInvalid(),
"Sending ",
msg__->type(),
mozilla::ipc::MessageDirection::eSending);
}
AUTO_PROFILER_LABEL("PWebSocketEventListener::Msg_WebSocketClosed", OTHER);
bool sendok__ = ChannelSend(std::move(msg__));
return sendok__;
}
auto PWebSocketEventListenerParent::SendFrameReceived(
const uint32_t& aWebSocketSerialID,
const WebSocketFrameData& aFrameData) -> bool
{
UniquePtr<IPC::Message> msg__ = PWebSocketEventListener::Msg_FrameReceived(Id());
IPC::MessageWriter writer__{
(*(msg__)),
this};
IPC::WriteParam((&(writer__)), aWebSocketSerialID);
// Sentinel = 'aWebSocketSerialID'
((&(writer__)))->WriteSentinel(1104873174);
IPC::WriteParam((&(writer__)), aFrameData);
// Sentinel = 'aFrameData'
((&(writer__)))->WriteSentinel(344196039);
if (mozilla::ipc::LoggingEnabledFor("PWebSocketEventListener", mozilla::ipc::ParentSide)) {
mozilla::ipc::LogMessageForProtocol(
"PWebSocketEventListenerParent",
this->ToplevelProtocol()->OtherPidMaybeInvalid(),
"Sending ",
msg__->type(),
mozilla::ipc::MessageDirection::eSending);
}
AUTO_PROFILER_LABEL("PWebSocketEventListener::Msg_FrameReceived", OTHER);
bool sendok__ = ChannelSend(std::move(msg__));
return sendok__;
}
auto PWebSocketEventListenerParent::SendFrameSent(
const uint32_t& aWebSocketSerialID,
const WebSocketFrameData& aFrameData) -> bool
{
UniquePtr<IPC::Message> msg__ = PWebSocketEventListener::Msg_FrameSent(Id());
IPC::MessageWriter writer__{
(*(msg__)),
this};
IPC::WriteParam((&(writer__)), aWebSocketSerialID);
// Sentinel = 'aWebSocketSerialID'
((&(writer__)))->WriteSentinel(1104873174);
IPC::WriteParam((&(writer__)), aFrameData);
// Sentinel = 'aFrameData'
((&(writer__)))->WriteSentinel(344196039);
if (mozilla::ipc::LoggingEnabledFor("PWebSocketEventListener", mozilla::ipc::ParentSide)) {
mozilla::ipc::LogMessageForProtocol(
"PWebSocketEventListenerParent",
this->ToplevelProtocol()->OtherPidMaybeInvalid(),
"Sending ",
msg__->type(),
mozilla::ipc::MessageDirection::eSending);
}
AUTO_PROFILER_LABEL("PWebSocketEventListener::Msg_FrameSent", OTHER);
bool sendok__ = ChannelSend(std::move(msg__));
return sendok__;
}
auto PWebSocketEventListenerParent::Send__delete__(PWebSocketEventListenerParent* actor) -> bool
{
if (!actor || !actor->CanSend()) {
NS_WARNING("Attempt to __delete__ missing or closed actor");
return false;
}
UniquePtr<IPC::Message> msg__ = PWebSocketEventListener::Msg___delete__((actor)->Id());
IPC::MessageWriter writer__{
(*(msg__)),
actor};
if (mozilla::ipc::LoggingEnabledFor("PWebSocketEventListener", mozilla::ipc::ParentSide)) {
mozilla::ipc::LogMessageForProtocol(
"PWebSocketEventListenerParent",
actor->ToplevelProtocol()->OtherPidMaybeInvalid(),
"Sending ",
msg__->type(),
mozilla::ipc::MessageDirection::eSending);
}
AUTO_PROFILER_LABEL("PWebSocketEventListener::Msg___delete__", OTHER);
bool sendok__ = (actor)->ChannelSend(std::move(msg__));
actor->ActorDisconnected(Deletion);
return sendok__;
}
auto PWebSocketEventListenerParent::RemoveManagee(
int32_t aProtocolId,
IProtocol* aListener) -> void
{
FatalError("unreached");
return;
}
auto PWebSocketEventListenerParent::DeallocManagee(
int32_t aProtocolId,
IProtocol* aListener) -> void
{
FatalError("unreached");
return;
}
auto PWebSocketEventListenerParent::OnMessageReceived(const Message& msg__) -> PWebSocketEventListenerParent::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 PWebSocketEventListener::Reply___delete____ID:
{
return MsgProcessed;
}
case PWebSocketEventListener::Msg_Close__ID:
{
if (mozilla::ipc::LoggingEnabledFor("PWebSocketEventListener", mozilla::ipc::ParentSide)) {
mozilla::ipc::LogMessageForProtocol(
"PWebSocketEventListenerParent",
this->ToplevelProtocol()->OtherPidMaybeInvalid(),
"Received ",
(&(msg__))->type(),
mozilla::ipc::MessageDirection::eReceiving);
}
AUTO_PROFILER_LABEL("PWebSocketEventListener::Msg_Close", OTHER);
mozilla::ipc::IPCResult __ok = (static_cast<WebSocketEventListenerParent*>(this))->RecvClose();
if ((!(__ok))) {
mozilla::ipc::ProtocolErrorBreakpoint("Handler returned error code!");
// Error handled in mozilla::ipc::IPCResult
return MsgProcessingError;
}
return MsgProcessed;
}
default:
return MsgNotKnown;
}
}
auto PWebSocketEventListenerParent::OnMessageReceived(
const Message& msg__,
UniquePtr<Message>& reply__) -> PWebSocketEventListenerParent::Result
{
return MsgNotKnown;
}
auto PWebSocketEventListenerParent::DoomSubtree() -> void
{
SetDoomed();
}
auto PWebSocketEventListenerParent::PeekManagedActor() -> IProtocol*
{
return nullptr;
}
} // namespace net
} // namespace mozilla
namespace IPC {
auto ParamTraits<::mozilla::net::PWebSocketEventListenerParent*>::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::net::PWebSocketEventListenerParent*>::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, "PWebSocketEventListener", PWebSocketEventListenerMsgStart);
if (actor.isSome()) {
return static_cast<::mozilla::net::PWebSocketEventListenerParent*>(actor.ref());
}
return {};
}
} // namespace IPC