2009-08-18 19:05:15 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set sw=2 ts=8 et tw=80 : */
|
|
|
|
|
2012-05-21 11:12:37 +00: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/. */
|
2009-08-18 19:05:15 +00:00
|
|
|
|
|
|
|
#include "mozilla/net/PNeckoParent.h"
|
Bug 530952: Electrolysis HTTP Channel implementation. author=jduell, r=bsmedberg, sr=bz
- Supports only primitive xpcshell HTTP requests which don't set/get HTTP
headers, don't do redirects, observers, load groups, or anything else other
than basic things like looking at the reply body, Content-type, Content-length, etc.
- Tested with network/test/unit_ipc/test_simple_wrap.js (patch @ bug 521922)
- Only used if "NECKO_E10S_HTTP" set in environment.
- Force http.h to get #included before any IPDL files, to centralize #define
handling of LOG and to make sure FORCE_PR_LOGGING is set if needed (bug
545995)
2009-09-22 18:55:33 +00:00
|
|
|
#include "mozilla/net/NeckoCommon.h"
|
2009-08-18 19:05:15 +00:00
|
|
|
|
|
|
|
#ifndef mozilla_net_NeckoParent_h
|
|
|
|
#define mozilla_net_NeckoParent_h
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace net {
|
|
|
|
|
2012-12-29 09:02:16 +00:00
|
|
|
// Used to override channel Private Browsing status if needed.
|
|
|
|
enum PBOverrideStatus {
|
|
|
|
kPBOverride_Unset = 0,
|
|
|
|
kPBOverride_Private,
|
|
|
|
kPBOverride_NotPrivate
|
|
|
|
};
|
|
|
|
|
2009-08-18 19:05:15 +00:00
|
|
|
// Header file contents
|
|
|
|
class NeckoParent :
|
|
|
|
public PNeckoParent
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
NeckoParent();
|
|
|
|
virtual ~NeckoParent();
|
|
|
|
|
2012-12-29 09:02:16 +00:00
|
|
|
MOZ_WARN_UNUSED_RESULT
|
|
|
|
static const char *
|
|
|
|
GetValidatedAppInfo(const SerializedLoadContext& aSerialized,
|
|
|
|
PBrowserParent* aBrowser,
|
|
|
|
uint32_t* aAppId,
|
|
|
|
bool* aInBrowserElement);
|
|
|
|
|
2013-08-21 06:49:41 +00:00
|
|
|
MOZ_WARN_UNUSED_RESULT
|
|
|
|
static const char *
|
|
|
|
GetValidatedAppInfo(const SerializedLoadContext& aSerialized,
|
|
|
|
PContentParent* aBrowser,
|
|
|
|
uint32_t* aAppId,
|
|
|
|
bool* aInBrowserElement);
|
|
|
|
|
2012-12-29 09:02:16 +00:00
|
|
|
/*
|
|
|
|
* Creates LoadContext for parent-side of an e10s channel.
|
|
|
|
*
|
2013-08-21 06:49:44 +00:00
|
|
|
* PContentParent corresponds to the process that is requesting the load.
|
2012-12-29 09:02:16 +00:00
|
|
|
*
|
|
|
|
* Returns null if successful, or an error string if failed.
|
|
|
|
*/
|
|
|
|
MOZ_WARN_UNUSED_RESULT
|
|
|
|
static const char*
|
|
|
|
CreateChannelLoadContext(PBrowserParent* aBrowser,
|
2013-08-21 06:49:44 +00:00
|
|
|
PContentParent* aContent,
|
2012-12-29 09:02:16 +00:00
|
|
|
const SerializedLoadContext& aSerialized,
|
|
|
|
nsCOMPtr<nsILoadContext> &aResult);
|
|
|
|
|
2013-06-03 10:14:37 +00:00
|
|
|
virtual void
|
|
|
|
CloneManagees(ProtocolBase* aSource,
|
|
|
|
mozilla::ipc::ProtocolCloneContext* aCtx) MOZ_OVERRIDE;
|
|
|
|
virtual PCookieServiceParent* AllocPCookieServiceParent() MOZ_OVERRIDE;
|
|
|
|
virtual bool
|
|
|
|
RecvPCookieServiceConstructor(PCookieServiceParent* aActor) MOZ_OVERRIDE
|
|
|
|
{
|
|
|
|
return PNeckoParent::RecvPCookieServiceConstructor(aActor);
|
|
|
|
}
|
|
|
|
|
2009-08-18 19:05:15 +00:00
|
|
|
protected:
|
2013-06-22 16:09:19 +00:00
|
|
|
virtual PHttpChannelParent*
|
2013-07-08 15:48:39 +00:00
|
|
|
AllocPHttpChannelParent(PBrowserParent*, const SerializedLoadContext&,
|
|
|
|
const HttpChannelCreationArgs& aOpenArgs);
|
2013-06-22 16:09:19 +00:00
|
|
|
virtual bool
|
|
|
|
RecvPHttpChannelConstructor(
|
|
|
|
PHttpChannelParent* aActor,
|
|
|
|
PBrowserParent* aBrowser,
|
|
|
|
const SerializedLoadContext& aSerialized,
|
|
|
|
const HttpChannelCreationArgs& aOpenArgs);
|
2013-07-08 15:48:39 +00:00
|
|
|
virtual bool DeallocPHttpChannelParent(PHttpChannelParent*);
|
|
|
|
virtual bool DeallocPCookieServiceParent(PCookieServiceParent*);
|
|
|
|
virtual PWyciwygChannelParent* AllocPWyciwygChannelParent();
|
|
|
|
virtual bool DeallocPWyciwygChannelParent(PWyciwygChannelParent*);
|
2013-06-22 16:09:19 +00:00
|
|
|
virtual PFTPChannelParent*
|
2013-07-08 15:48:39 +00:00
|
|
|
AllocPFTPChannelParent(PBrowserParent* aBrowser,
|
|
|
|
const SerializedLoadContext& aSerialized,
|
|
|
|
const FTPChannelCreationArgs& aOpenArgs);
|
2013-06-22 16:09:19 +00:00
|
|
|
virtual bool
|
|
|
|
RecvPFTPChannelConstructor(
|
|
|
|
PFTPChannelParent* aActor,
|
|
|
|
PBrowserParent* aBrowser,
|
|
|
|
const SerializedLoadContext& aSerialized,
|
|
|
|
const FTPChannelCreationArgs& aOpenArgs);
|
2013-07-08 15:48:39 +00:00
|
|
|
virtual bool DeallocPFTPChannelParent(PFTPChannelParent*);
|
|
|
|
virtual PWebSocketParent* AllocPWebSocketParent(PBrowserParent* browser,
|
|
|
|
const SerializedLoadContext& aSerialized);
|
|
|
|
virtual bool DeallocPWebSocketParent(PWebSocketParent*);
|
2013-08-21 06:49:42 +00:00
|
|
|
virtual PTCPSocketParent* AllocPTCPSocketParent();
|
2013-02-07 13:06:58 +00:00
|
|
|
|
2013-09-18 23:55:56 +00:00
|
|
|
virtual PRemoteOpenFileParent* AllocPRemoteOpenFileParent(const URIParams& aFileURI,
|
|
|
|
const OptionalURIParams& aAppURI)
|
2013-07-08 15:48:39 +00:00
|
|
|
MOZ_OVERRIDE;
|
2013-02-07 13:06:58 +00:00
|
|
|
virtual bool RecvPRemoteOpenFileConstructor(PRemoteOpenFileParent* aActor,
|
2013-09-18 23:55:56 +00:00
|
|
|
const URIParams& aFileURI,
|
|
|
|
const OptionalURIParams& aAppURI)
|
2013-02-07 13:06:58 +00:00
|
|
|
MOZ_OVERRIDE;
|
2013-07-08 15:48:39 +00:00
|
|
|
virtual bool DeallocPRemoteOpenFileParent(PRemoteOpenFileParent* aActor)
|
|
|
|
MOZ_OVERRIDE;
|
2012-12-22 13:56:21 +00:00
|
|
|
|
2013-07-08 15:48:39 +00:00
|
|
|
virtual bool DeallocPTCPSocketParent(PTCPSocketParent*);
|
2013-07-29 17:36:43 +00:00
|
|
|
virtual PTCPServerSocketParent* AllocPTCPServerSocketParent(const uint16_t& aLocalPort,
|
|
|
|
const uint16_t& aBacklog,
|
|
|
|
const nsString& aBinaryType);
|
|
|
|
virtual bool RecvPTCPServerSocketConstructor(PTCPServerSocketParent*,
|
|
|
|
const uint16_t& aLocalPort,
|
|
|
|
const uint16_t& aBacklog,
|
|
|
|
const nsString& aBinaryType);
|
|
|
|
virtual bool DeallocPTCPServerSocketParent(PTCPServerSocketParent*);
|
2013-05-10 12:00:28 +00:00
|
|
|
virtual PUDPSocketParent* AllocPUDPSocketParent(const nsCString& aHost,
|
|
|
|
const uint16_t& aPort);
|
|
|
|
virtual bool RecvPUDPSocketConstructor(PUDPSocketParent*,
|
|
|
|
const nsCString& aHost,
|
|
|
|
const uint16_t& aPort);
|
|
|
|
virtual bool DeallocPUDPSocketParent(PUDPSocketParent*);
|
2010-07-26 18:49:09 +00:00
|
|
|
virtual bool RecvHTMLDNSPrefetch(const nsString& hostname,
|
2012-08-22 15:56:38 +00:00
|
|
|
const uint16_t& flags);
|
2012-01-20 23:14:46 +00:00
|
|
|
virtual bool RecvCancelHTMLDNSPrefetch(const nsString& hostname,
|
2012-08-22 15:56:38 +00:00
|
|
|
const uint16_t& flags,
|
2012-01-20 23:14:46 +00:00
|
|
|
const nsresult& reason);
|
2013-06-03 10:14:37 +00:00
|
|
|
|
|
|
|
virtual mozilla::ipc::IProtocol*
|
|
|
|
CloneProtocol(Channel* aChannel,
|
|
|
|
mozilla::ipc::ProtocolCloneContext* aCtx) MOZ_OVERRIDE;
|
2013-09-23 10:12:11 +00:00
|
|
|
virtual PRtspControllerParent* AllocPRtspControllerParent();
|
|
|
|
virtual bool DeallocPRtspControllerParent(PRtspControllerParent*);
|
2013-06-03 10:14:37 +00:00
|
|
|
|
2012-12-22 13:56:21 +00:00
|
|
|
private:
|
|
|
|
nsCString mCoreAppsBasePath;
|
|
|
|
nsCString mWebAppsBasePath;
|
2009-08-18 19:05:15 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace net
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_net_NeckoParent_h
|