tenfourfox/netwerk/protocol/websocket/WebSocketEventListenerChild.cpp
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

118 lines
3.4 KiB
C++

/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
* You can obtain one at http://mozilla.org/MPL/2.0/. */
#include "WebSocketEventListenerChild.h"
#include "WebSocketEventService.h"
#include "WebSocketFrame.h"
namespace mozilla {
namespace net {
WebSocketEventListenerChild::WebSocketEventListenerChild(uint64_t aInnerWindowID)
: mService(WebSocketEventService::GetOrCreate())
, mInnerWindowID(aInnerWindowID)
{}
WebSocketEventListenerChild::~WebSocketEventListenerChild()
{
MOZ_ASSERT(!mService);
}
bool
WebSocketEventListenerChild::RecvWebSocketCreated(const uint32_t& aWebSocketSerialID,
const nsString& aURI,
const nsCString& aProtocols)
{
if (mService) {
mService->WebSocketCreated(aWebSocketSerialID, mInnerWindowID, aURI,
aProtocols);
}
return true;
}
bool
WebSocketEventListenerChild::RecvWebSocketOpened(const uint32_t& aWebSocketSerialID,
const nsString& aEffectiveURI,
const nsCString& aProtocols,
const nsCString& aExtensions)
{
if (mService) {
mService->WebSocketOpened(aWebSocketSerialID, mInnerWindowID,
aEffectiveURI, aProtocols, aExtensions);
}
return true;
}
bool
WebSocketEventListenerChild::RecvWebSocketMessageAvailable(const uint32_t& aWebSocketSerialID,
const nsCString& aData,
const uint16_t& aMessageType)
{
if (mService) {
mService->WebSocketMessageAvailable(aWebSocketSerialID, mInnerWindowID,
aData, aMessageType);
}
return true;
}
bool
WebSocketEventListenerChild::RecvWebSocketClosed(const uint32_t& aWebSocketSerialID,
const bool& aWasClean,
const uint16_t& aCode,
const nsString& aReason)
{
if (mService) {
mService->WebSocketClosed(aWebSocketSerialID, mInnerWindowID,
aWasClean, aCode, aReason);
}
return true;
}
bool
WebSocketEventListenerChild::RecvFrameReceived(const uint32_t& aWebSocketSerialID,
const WebSocketFrameData& aFrameData)
{
if (mService) {
RefPtr<WebSocketFrame> frame = new WebSocketFrame(aFrameData);
mService->FrameReceived(aWebSocketSerialID, mInnerWindowID, frame.forget());
}
return true;
}
bool
WebSocketEventListenerChild::RecvFrameSent(const uint32_t& aWebSocketSerialID,
const WebSocketFrameData& aFrameData)
{
if (mService) {
RefPtr<WebSocketFrame> frame = new WebSocketFrame(aFrameData);
mService->FrameSent(aWebSocketSerialID, mInnerWindowID, frame.forget());
}
return true;
}
void
WebSocketEventListenerChild::Close()
{
mService = nullptr;
SendClose();
}
void
WebSocketEventListenerChild::ActorDestroy(ActorDestroyReason aWhy)
{
mService = nullptr;
}
} // namespace net
} // namespace mozilla