2015-05-03 22:32:37 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2012-09-24 22:53:49 +04:00
|
|
|
/* 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/. */
|
|
|
|
|
2013-11-26 20:38:52 +04:00
|
|
|
#ifndef mozilla_dom_TCPSocketParent_h
|
|
|
|
#define mozilla_dom_TCPSocketParent_h
|
|
|
|
|
2015-03-25 17:36:56 +03:00
|
|
|
#include "mozilla/dom/TCPSocketBinding.h"
|
2012-09-24 22:53:49 +04:00
|
|
|
#include "mozilla/net/PTCPSocketParent.h"
|
|
|
|
#include "nsCycleCollectionParticipant.h"
|
|
|
|
#include "nsCOMPtr.h"
|
2013-08-28 06:59:14 +04:00
|
|
|
#include "js/TypeDecls.h"
|
2014-08-23 03:15:36 +04:00
|
|
|
#include "mozilla/net/OfflineObserver.h"
|
2012-09-24 22:53:49 +04:00
|
|
|
|
2013-07-29 21:36:43 +04:00
|
|
|
#define TCPSOCKETPARENT_CID \
|
|
|
|
{ 0x4e7246c6, 0xa8b3, 0x426d, { 0x9c, 0x17, 0x76, 0xda, 0xb1, 0xe1, 0xe1, 0x4a } }
|
|
|
|
|
2012-09-24 22:53:49 +04:00
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2015-03-25 17:36:56 +03:00
|
|
|
class TCPSocket;
|
|
|
|
|
|
|
|
class TCPSocketParentBase : public nsISupports
|
2014-08-23 03:15:36 +04:00
|
|
|
, public mozilla::net::DisconnectableParent
|
2012-09-24 22:53:49 +04:00
|
|
|
{
|
|
|
|
public:
|
2015-03-25 17:36:56 +03:00
|
|
|
NS_DECL_CYCLE_COLLECTION_CLASS(TCPSocketParentBase)
|
2012-09-24 22:53:49 +04:00
|
|
|
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
|
2013-07-29 21:36:43 +04:00
|
|
|
|
|
|
|
void AddIPDLReference();
|
|
|
|
void ReleaseIPDLReference();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
TCPSocketParentBase();
|
|
|
|
virtual ~TCPSocketParentBase();
|
|
|
|
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<TCPSocket> mSocket;
|
|
|
|
RefPtr<mozilla::net::OfflineObserver> mObserver;
|
2013-07-29 21:36:43 +04:00
|
|
|
bool mIPCOpen;
|
|
|
|
};
|
|
|
|
|
|
|
|
class TCPSocketParent : public mozilla::net::PTCPSocketParent
|
|
|
|
, public TCPSocketParentBase
|
|
|
|
{
|
|
|
|
public:
|
2015-03-21 19:28:04 +03:00
|
|
|
NS_IMETHOD_(MozExternalRefCountType) Release() override;
|
2012-09-24 22:53:49 +04:00
|
|
|
|
2014-09-23 23:19:19 +04:00
|
|
|
TCPSocketParent() {}
|
2012-09-24 22:53:49 +04:00
|
|
|
|
2013-07-29 21:36:43 +04:00
|
|
|
virtual bool RecvOpen(const nsString& aHost, const uint16_t& aPort,
|
2015-03-25 17:36:56 +03:00
|
|
|
const bool& useSSL, const bool& aUseArrayBuffers) override;
|
2012-09-24 22:53:49 +04:00
|
|
|
|
2015-01-05 10:49:24 +03:00
|
|
|
virtual bool RecvOpenBind(const nsCString& aRemoteHost,
|
|
|
|
const uint16_t& aRemotePort,
|
|
|
|
const nsCString& aLocalAddr,
|
|
|
|
const uint16_t& aLocalPort,
|
|
|
|
const bool& aUseSSL,
|
2015-09-21 06:05:20 +03:00
|
|
|
const bool& aUseArrayBuffers) override;
|
2015-01-05 10:49:24 +03:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual bool RecvStartTLS() override;
|
|
|
|
virtual bool RecvSuspend() override;
|
|
|
|
virtual bool RecvResume() override;
|
|
|
|
virtual bool RecvClose() override;
|
2013-11-14 12:00:28 +04:00
|
|
|
virtual bool RecvData(const SendableData& aData,
|
2015-03-21 19:28:04 +03:00
|
|
|
const uint32_t& aTrackingNumber) override;
|
|
|
|
virtual bool RecvRequestDelete() override;
|
|
|
|
virtual nsresult OfflineNotification(nsISupports *) override;
|
|
|
|
virtual uint32_t GetAppId() override;
|
2014-12-29 11:12:17 +03:00
|
|
|
bool GetInBrowser();
|
2012-09-24 22:53:49 +04:00
|
|
|
|
2015-03-25 17:36:56 +03:00
|
|
|
void FireErrorEvent(const nsAString& aName, const nsAString& aType, TCPReadyState aReadyState);
|
|
|
|
void FireEvent(const nsAString& aType, TCPReadyState aReadyState);
|
|
|
|
void FireArrayBufferDataEvent(nsTArray<uint8_t>& aBuffer, TCPReadyState aReadyState);
|
|
|
|
void FireStringDataEvent(const nsACString& aData, TCPReadyState aReadyState);
|
|
|
|
|
|
|
|
void SetSocket(TCPSocket *socket);
|
|
|
|
nsresult GetHost(nsAString& aHost);
|
|
|
|
nsresult GetPort(uint16_t* aPort);
|
|
|
|
|
2012-09-24 22:53:49 +04:00
|
|
|
private:
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual void ActorDestroy(ActorDestroyReason why) override;
|
2015-03-25 17:36:56 +03:00
|
|
|
void SendEvent(const nsAString& aType, CallbackData aData, TCPReadyState aReadyState);
|
2012-09-24 22:53:49 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
2013-11-26 20:38:52 +04:00
|
|
|
|
|
|
|
#endif
|