2012-09-24 11:53:49 -07: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 08:38:52 -08:00
|
|
|
#ifndef mozilla_dom_TCPSocketParent_h
|
|
|
|
#define mozilla_dom_TCPSocketParent_h
|
|
|
|
|
2012-09-24 11:53:49 -07:00
|
|
|
#include "mozilla/net/PTCPSocketParent.h"
|
|
|
|
#include "nsITCPSocketParent.h"
|
|
|
|
#include "nsCycleCollectionParticipant.h"
|
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsIDOMTCPSocket.h"
|
2013-08-27 19:59:14 -07:00
|
|
|
#include "js/TypeDecls.h"
|
2014-08-22 16:15:36 -07:00
|
|
|
#include "mozilla/net/OfflineObserver.h"
|
2012-09-24 11:53:49 -07:00
|
|
|
|
2013-07-29 10:36:43 -07:00
|
|
|
#define TCPSOCKETPARENT_CID \
|
|
|
|
{ 0x4e7246c6, 0xa8b3, 0x426d, { 0x9c, 0x17, 0x76, 0xda, 0xb1, 0xe1, 0xe1, 0x4a } }
|
|
|
|
|
2012-09-24 11:53:49 -07:00
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
|
|
|
class PBrowserParent;
|
|
|
|
|
2013-07-29 10:36:43 -07:00
|
|
|
class TCPSocketParentBase : public nsITCPSocketParent
|
2014-08-22 16:15:36 -07:00
|
|
|
, public mozilla::net::DisconnectableParent
|
2012-09-24 11:53:49 -07:00
|
|
|
{
|
|
|
|
public:
|
2014-09-23 12:19:19 -07:00
|
|
|
NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_CLASS(TCPSocketParentBase)
|
2012-09-24 11:53:49 -07:00
|
|
|
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
|
2013-07-29 10:36:43 -07:00
|
|
|
|
|
|
|
void AddIPDLReference();
|
|
|
|
void ReleaseIPDLReference();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
TCPSocketParentBase();
|
|
|
|
virtual ~TCPSocketParentBase();
|
|
|
|
|
2014-09-23 12:19:19 -07:00
|
|
|
JS::Heap<JSObject*> mIntermediaryObj;
|
2013-07-29 10:36:43 -07:00
|
|
|
nsCOMPtr<nsITCPSocketIntermediary> mIntermediary;
|
|
|
|
nsCOMPtr<nsIDOMTCPSocket> mSocket;
|
2014-08-22 16:15:36 -07:00
|
|
|
nsRefPtr<mozilla::net::OfflineObserver> mObserver;
|
2013-07-29 10:36:43 -07:00
|
|
|
bool mIPCOpen;
|
|
|
|
};
|
|
|
|
|
|
|
|
class TCPSocketParent : public mozilla::net::PTCPSocketParent
|
|
|
|
, public TCPSocketParentBase
|
|
|
|
{
|
|
|
|
public:
|
2012-09-24 11:53:49 -07:00
|
|
|
NS_DECL_NSITCPSOCKETPARENT
|
2014-03-27 13:38:33 -07:00
|
|
|
NS_IMETHOD_(MozExternalRefCountType) Release() MOZ_OVERRIDE;
|
2012-09-24 11:53:49 -07:00
|
|
|
|
2014-09-23 12:19:19 -07:00
|
|
|
TCPSocketParent() {}
|
2012-09-24 11:53:49 -07:00
|
|
|
|
2013-07-29 10:36:43 -07:00
|
|
|
virtual bool RecvOpen(const nsString& aHost, const uint16_t& aPort,
|
2013-08-20 23:49:42 -07:00
|
|
|
const bool& useSSL, const nsString& aBinaryType);
|
2012-09-24 11:53:49 -07:00
|
|
|
|
2013-08-31 12:09:17 -07:00
|
|
|
virtual bool RecvStartTLS() MOZ_OVERRIDE;
|
2012-09-24 11:53:49 -07:00
|
|
|
virtual bool RecvSuspend() MOZ_OVERRIDE;
|
|
|
|
virtual bool RecvResume() MOZ_OVERRIDE;
|
|
|
|
virtual bool RecvClose() MOZ_OVERRIDE;
|
2013-11-14 00:00:28 -08:00
|
|
|
virtual bool RecvData(const SendableData& aData,
|
|
|
|
const uint32_t& aTrackingNumber) MOZ_OVERRIDE;
|
2012-09-24 11:53:49 -07:00
|
|
|
virtual bool RecvRequestDelete() MOZ_OVERRIDE;
|
2014-08-22 16:15:36 -07:00
|
|
|
virtual nsresult OfflineNotification(nsISupports *) MOZ_OVERRIDE;
|
2014-08-22 10:15:00 -07:00
|
|
|
virtual uint32_t GetAppId() MOZ_OVERRIDE;
|
2012-09-24 11:53:49 -07:00
|
|
|
|
|
|
|
private:
|
|
|
|
virtual void ActorDestroy(ActorDestroyReason why) MOZ_OVERRIDE;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
2013-11-26 08:38:52 -08:00
|
|
|
|
|
|
|
#endif
|