2009-08-18 12:05:15 -07: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 04:12:37 -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/. */
|
2009-08-18 12:05:15 -07:00
|
|
|
|
|
|
|
#ifndef mozilla_net_HttpChannelChild_h
|
|
|
|
#define mozilla_net_HttpChannelChild_h
|
|
|
|
|
2010-04-07 01:43:09 -07:00
|
|
|
#include "mozilla/net/HttpBaseChannel.h"
|
2009-08-18 12:05:15 -07:00
|
|
|
#include "mozilla/net/PHttpChannelChild.h"
|
2010-09-20 11:37:13 -07:00
|
|
|
#include "mozilla/net/ChannelEventQueue.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 11:55:33 -07:00
|
|
|
|
|
|
|
#include "nsIStreamListener.h"
|
|
|
|
#include "nsILoadGroup.h"
|
|
|
|
#include "nsIInterfaceRequestor.h"
|
|
|
|
#include "nsIInterfaceRequestorUtils.h"
|
|
|
|
#include "nsIProgressEventSink.h"
|
2010-06-23 23:55:19 -07:00
|
|
|
#include "nsICacheInfoChannel.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 11:55:33 -07:00
|
|
|
#include "nsIApplicationCache.h"
|
|
|
|
#include "nsIApplicationCacheChannel.h"
|
|
|
|
#include "nsIUploadChannel2.h"
|
|
|
|
#include "nsIResumableChannel.h"
|
|
|
|
#include "nsIProxiedChannel.h"
|
2010-08-10 20:11:57 -07:00
|
|
|
#include "nsIAsyncVerifyRedirectCallback.h"
|
2010-08-13 01:06:40 -07:00
|
|
|
#include "nsIAssociatedContentSecurity.h"
|
2010-11-23 14:56:06 -08:00
|
|
|
#include "nsIChildChannel.h"
|
|
|
|
#include "nsIHttpChannelChild.h"
|
2012-12-23 13:08:43 -08:00
|
|
|
#include "mozilla/net/DNS.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 11:55:33 -07:00
|
|
|
|
2009-08-18 12:05:15 -07:00
|
|
|
namespace mozilla {
|
|
|
|
namespace net {
|
|
|
|
|
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 11:55:33 -07:00
|
|
|
class HttpChannelChild : public PHttpChannelChild
|
2010-04-07 01:43:09 -07:00
|
|
|
, public HttpBaseChannel
|
2011-06-11 18:37:03 -07:00
|
|
|
, public HttpAsyncAborter<HttpChannelChild>
|
2010-06-23 23:55:19 -07:00
|
|
|
, public nsICacheInfoChannel
|
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 11:55:33 -07:00
|
|
|
, public nsIProxiedChannel
|
|
|
|
, public nsIApplicationCacheChannel
|
2010-08-10 20:11:57 -07:00
|
|
|
, public nsIAsyncVerifyRedirectCallback
|
2010-08-13 01:06:40 -07:00
|
|
|
, public nsIAssociatedContentSecurity
|
2010-11-23 14:56:06 -08:00
|
|
|
, public nsIChildChannel
|
|
|
|
, public nsIHttpChannelChild
|
2009-08-18 12:05:15 -07:00
|
|
|
{
|
|
|
|
public:
|
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 11:55:33 -07:00
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
2010-06-23 23:55:19 -07:00
|
|
|
NS_DECL_NSICACHEINFOCHANNEL
|
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 11:55:33 -07:00
|
|
|
NS_DECL_NSIPROXIEDCHANNEL
|
|
|
|
NS_DECL_NSIAPPLICATIONCACHECONTAINER
|
|
|
|
NS_DECL_NSIAPPLICATIONCACHECHANNEL
|
2010-08-10 20:11:57 -07:00
|
|
|
NS_DECL_NSIASYNCVERIFYREDIRECTCALLBACK
|
2010-08-13 01:06:40 -07:00
|
|
|
NS_DECL_NSIASSOCIATEDCONTENTSECURITY
|
2010-11-23 14:56:06 -08:00
|
|
|
NS_DECL_NSICHILDCHANNEL
|
|
|
|
NS_DECL_NSIHTTPCHANNELCHILD
|
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 11:55:33 -07:00
|
|
|
|
2009-08-18 12:05:15 -07:00
|
|
|
HttpChannelChild();
|
|
|
|
virtual ~HttpChannelChild();
|
|
|
|
|
2010-04-07 01:43:09 -07:00
|
|
|
// Methods HttpBaseChannel didn't implement for us or that we override.
|
|
|
|
//
|
|
|
|
// nsIRequest
|
|
|
|
NS_IMETHOD Cancel(nsresult status);
|
|
|
|
NS_IMETHOD Suspend();
|
|
|
|
NS_IMETHOD Resume();
|
|
|
|
// nsIChannel
|
|
|
|
NS_IMETHOD GetSecurityInfo(nsISupports **aSecurityInfo);
|
|
|
|
NS_IMETHOD AsyncOpen(nsIStreamListener *listener, nsISupports *aContext);
|
|
|
|
// HttpBaseChannel::nsIHttpChannel
|
2013-05-16 06:30:42 -07:00
|
|
|
NS_IMETHOD SetRequestHeader(const nsACString& aHeader,
|
|
|
|
const nsACString& aValue,
|
2011-09-28 23:19:26 -07:00
|
|
|
bool aMerge);
|
2013-01-11 15:46:00 -08:00
|
|
|
NS_IMETHOD RedirectTo(nsIURI *newURI);
|
2010-04-07 01:43:09 -07:00
|
|
|
// nsIHttpChannelInternal
|
|
|
|
NS_IMETHOD SetupFallbackChannel(const char *aFallbackKey);
|
2012-03-15 20:55:44 -07:00
|
|
|
NS_IMETHOD GetLocalAddress(nsACString& addr);
|
2012-08-22 08:56:38 -07:00
|
|
|
NS_IMETHOD GetLocalPort(int32_t* port);
|
2012-03-15 20:55:44 -07:00
|
|
|
NS_IMETHOD GetRemoteAddress(nsACString& addr);
|
2012-08-22 08:56:38 -07:00
|
|
|
NS_IMETHOD GetRemotePort(int32_t* port);
|
2010-04-10 21:53:35 -07:00
|
|
|
// nsISupportsPriority
|
2012-08-22 08:56:38 -07:00
|
|
|
NS_IMETHOD SetPriority(int32_t value);
|
2010-08-10 20:07:09 -07:00
|
|
|
// nsIResumableChannel
|
2012-08-22 08:56:38 -07:00
|
|
|
NS_IMETHOD ResumeAt(uint64_t startPos, const nsACString& entityID);
|
2010-04-07 01:43:09 -07:00
|
|
|
|
2010-06-27 09:44:15 -07:00
|
|
|
// IPDL holds a reference while the PHttpChannel protocol is live (starting at
|
|
|
|
// AsyncOpen, and ending at either OnStopRequest or any IPDL error, either of
|
2013-07-08 08:48:39 -07:00
|
|
|
// which call NeckoChild::DeallocPHttpChannelChild()).
|
2010-06-27 09:44:15 -07:00
|
|
|
void AddIPDLReference();
|
|
|
|
void ReleaseIPDLReference();
|
|
|
|
|
2010-10-15 22:26:14 -07:00
|
|
|
bool IsSuspended();
|
|
|
|
|
2009-08-18 12:05:15 -07:00
|
|
|
protected:
|
2010-06-18 03:32:00 -07:00
|
|
|
bool RecvOnStartRequest(const nsHttpResponseHead& responseHead,
|
2011-09-28 23:19:26 -07:00
|
|
|
const bool& useResponseHead,
|
2012-01-19 14:26:43 -08:00
|
|
|
const nsHttpHeaderArray& requestHeaders,
|
2011-09-28 23:19:26 -07:00
|
|
|
const bool& isFromCache,
|
|
|
|
const bool& cacheEntryAvailable,
|
2012-08-22 08:56:38 -07:00
|
|
|
const uint32_t& cacheExpirationTime,
|
2010-08-13 01:06:40 -07:00
|
|
|
const nsCString& cachedCharset,
|
2011-05-05 08:45:59 -07:00
|
|
|
const nsCString& securityInfoSerialization,
|
2012-12-23 13:08:43 -08:00
|
|
|
const mozilla::net::NetAddr& selfAddr,
|
|
|
|
const mozilla::net::NetAddr& peerAddr);
|
2011-04-09 20:42:05 -07:00
|
|
|
bool RecvOnTransportAndData(const nsresult& status,
|
2012-08-22 08:56:38 -07:00
|
|
|
const uint64_t& progress,
|
|
|
|
const uint64_t& progressMax,
|
2011-04-09 20:42:05 -07:00
|
|
|
const nsCString& data,
|
2012-09-05 19:41:02 -07:00
|
|
|
const uint64_t& offset,
|
2012-08-22 08:56:38 -07:00
|
|
|
const uint32_t& count);
|
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 11:55:33 -07:00
|
|
|
bool RecvOnStopRequest(const nsresult& statusCode);
|
2012-08-22 08:56:38 -07:00
|
|
|
bool RecvOnProgress(const uint64_t& progress, const uint64_t& progressMax);
|
2011-04-09 20:42:05 -07:00
|
|
|
bool RecvOnStatus(const nsresult& status);
|
2011-06-11 18:37:03 -07:00
|
|
|
bool RecvFailedAsyncOpen(const nsresult& status);
|
2012-08-22 08:56:38 -07:00
|
|
|
bool RecvRedirect1Begin(const uint32_t& newChannel,
|
2012-08-23 12:33:46 -07:00
|
|
|
const URIParams& newURI,
|
2012-08-22 08:56:38 -07:00
|
|
|
const uint32_t& redirectFlags,
|
2010-08-10 20:11:57 -07:00
|
|
|
const nsHttpResponseHead& responseHead);
|
|
|
|
bool RecvRedirect3Complete();
|
2010-10-20 10:12:32 -07:00
|
|
|
bool RecvAssociateApplicationCache(const nsCString& groupID,
|
|
|
|
const nsCString& clientID);
|
2010-09-15 12:26:15 -07:00
|
|
|
bool RecvDeleteSelf();
|
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 11:55:33 -07:00
|
|
|
|
2012-07-30 07:20:58 -07:00
|
|
|
bool GetAssociatedContentSecurity(nsIAssociatedContentSecurity** res = nullptr);
|
2011-06-11 18:37:03 -07:00
|
|
|
virtual void DoNotifyListenerCleanup();
|
2010-08-13 01:06:40 -07:00
|
|
|
|
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 11:55:33 -07:00
|
|
|
private:
|
2012-01-19 14:26:43 -08:00
|
|
|
RequestHeaderTuples mClientSetRequestHeaders;
|
2010-11-23 14:56:06 -08:00
|
|
|
nsCOMPtr<nsIChildChannel> mRedirectChannelChild;
|
2010-08-13 01:06:40 -07:00
|
|
|
nsCOMPtr<nsISupports> mSecurityInfo;
|
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 11:55:33 -07:00
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool mIsFromCache;
|
|
|
|
bool mCacheEntryAvailable;
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t mCacheExpirationTime;
|
2010-06-23 23:55:19 -07:00
|
|
|
nsCString mCachedCharset;
|
|
|
|
|
2010-08-10 20:07:09 -07:00
|
|
|
// If ResumeAt is called before AsyncOpen, we need to send extra data upstream
|
|
|
|
bool mSendResumeAt;
|
|
|
|
|
2010-06-27 09:44:15 -07:00
|
|
|
bool mIPCOpen;
|
2011-09-02 13:03:42 -07:00
|
|
|
bool mKeptAlive; // IPC kept open, but only for security info
|
2013-06-04 16:10:55 -07:00
|
|
|
nsRefPtr<ChannelEventQueue> mEventQ;
|
2010-04-20 20:16:50 -07:00
|
|
|
|
2011-09-02 13:03:42 -07:00
|
|
|
// true after successful AsyncOpen until OnStopRequest completes.
|
|
|
|
bool RemoteChannelExists() { return mIPCOpen && !mKeptAlive; }
|
|
|
|
|
2011-08-22 14:17:14 -07:00
|
|
|
void AssociateApplicationCache(const nsCString &groupID,
|
|
|
|
const nsCString &clientID);
|
2010-08-05 21:59:37 -07:00
|
|
|
void OnStartRequest(const nsHttpResponseHead& responseHead,
|
2011-09-28 23:19:26 -07:00
|
|
|
const bool& useResponseHead,
|
2012-01-19 14:26:43 -08:00
|
|
|
const nsHttpHeaderArray& requestHeaders,
|
2011-09-28 23:19:26 -07:00
|
|
|
const bool& isFromCache,
|
|
|
|
const bool& cacheEntryAvailable,
|
2012-08-22 08:56:38 -07:00
|
|
|
const uint32_t& cacheExpirationTime,
|
2011-04-09 20:42:05 -07:00
|
|
|
const nsCString& cachedCharset,
|
2011-05-05 08:45:59 -07:00
|
|
|
const nsCString& securityInfoSerialization,
|
2012-12-23 13:08:43 -08:00
|
|
|
const mozilla::net::NetAddr& selfAddr,
|
|
|
|
const mozilla::net::NetAddr& peerAddr);
|
2011-04-09 20:42:05 -07:00
|
|
|
void OnTransportAndData(const nsresult& status,
|
2012-08-22 08:56:38 -07:00
|
|
|
const uint64_t progress,
|
|
|
|
const uint64_t& progressMax,
|
2011-04-09 20:42:05 -07:00
|
|
|
const nsCString& data,
|
2012-09-05 19:41:02 -07:00
|
|
|
const uint64_t& offset,
|
2012-08-22 08:56:38 -07:00
|
|
|
const uint32_t& count);
|
2010-08-05 21:59:37 -07:00
|
|
|
void OnStopRequest(const nsresult& statusCode);
|
2012-08-22 08:56:38 -07:00
|
|
|
void OnProgress(const uint64_t& progress, const uint64_t& progressMax);
|
2011-04-09 20:42:05 -07:00
|
|
|
void OnStatus(const nsresult& status);
|
2011-06-11 18:37:03 -07:00
|
|
|
void FailedAsyncOpen(const nsresult& status);
|
|
|
|
void HandleAsyncAbort();
|
2012-08-22 08:56:38 -07:00
|
|
|
void Redirect1Begin(const uint32_t& newChannelId,
|
2012-08-23 12:33:46 -07:00
|
|
|
const URIParams& newUri,
|
2012-08-22 08:56:38 -07:00
|
|
|
const uint32_t& redirectFlags,
|
2010-08-10 20:11:57 -07:00
|
|
|
const nsHttpResponseHead& responseHead);
|
|
|
|
void Redirect3Complete();
|
2010-09-15 12:26:15 -07:00
|
|
|
void DeleteSelf();
|
2010-04-20 20:16:50 -07:00
|
|
|
|
2011-08-22 14:17:14 -07:00
|
|
|
friend class AssociateApplicationCacheEvent;
|
2010-08-05 21:59:37 -07:00
|
|
|
friend class StartRequestEvent;
|
2010-04-20 20:16:50 -07:00
|
|
|
friend class StopRequestEvent;
|
2011-04-09 20:42:05 -07:00
|
|
|
friend class TransportAndDataEvent;
|
2010-04-20 20:16:50 -07:00
|
|
|
friend class ProgressEvent;
|
|
|
|
friend class StatusEvent;
|
2011-06-11 18:37:03 -07:00
|
|
|
friend class FailedAsyncOpenEvent;
|
2010-08-10 20:11:57 -07:00
|
|
|
friend class Redirect1Event;
|
|
|
|
friend class Redirect3Event;
|
2010-09-15 12:26:15 -07:00
|
|
|
friend class DeleteSelfEvent;
|
2011-06-11 18:37:03 -07:00
|
|
|
friend class HttpAsyncAborter<HttpChannelChild>;
|
2009-08-18 12:05:15 -07:00
|
|
|
};
|
|
|
|
|
2010-08-05 21:59:37 -07:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// inline functions
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
inline bool
|
2010-10-15 22:26:14 -07:00
|
|
|
HttpChannelChild::IsSuspended()
|
2010-08-05 21:59:37 -07:00
|
|
|
{
|
2010-10-15 22:26:14 -07:00
|
|
|
return mSuspendCount != 0;
|
2010-08-05 21:59:37 -07:00
|
|
|
}
|
|
|
|
|
2009-08-18 12:05:15 -07:00
|
|
|
} // namespace net
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_net_HttpChannelChild_h
|