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 ft=cpp : */
|
|
|
|
|
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
|
|
|
|
2010-04-27 07:12:38 +00:00
|
|
|
include protocol PNecko;
|
2012-08-23 19:33:46 +00:00
|
|
|
include InputStreamParams;
|
|
|
|
include URIParams;
|
2009-08-18 19:05:15 +00:00
|
|
|
|
2012-09-21 17:26:13 +00:00
|
|
|
include protocol PBlob; //FIXME: bug #792908
|
|
|
|
|
2010-03-23 15:14:36 +00:00
|
|
|
include "mozilla/net/PHttpChannelParams.h";
|
2010-04-26 15:24:21 +00:00
|
|
|
include "mozilla/net/NeckoMessageUtils.h";
|
2011-05-05 15:45:59 +00:00
|
|
|
include "prio.h";
|
2012-08-23 19:33:46 +00:00
|
|
|
include "SerializedLoadContext.h";
|
2012-08-23 02:13:54 +00:00
|
|
|
|
2010-03-23 15:14:36 +00:00
|
|
|
using RequestHeaderTuples;
|
2012-01-19 22:26:43 +00:00
|
|
|
using nsHttpHeaderArray;
|
2010-03-23 15:14:36 +00:00
|
|
|
using nsHttpResponseHead;
|
2011-09-22 14:43:11 +00:00
|
|
|
using nsHttpAtom;
|
2012-08-07 04:47:48 +00:00
|
|
|
using IPC::SerializedLoadContext;
|
2011-05-05 15:45:59 +00:00
|
|
|
using PRNetAddr;
|
2010-03-23 15:14:36 +00:00
|
|
|
|
2009-08-18 19:05:15 +00:00
|
|
|
namespace mozilla {
|
|
|
|
namespace net {
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------
|
|
|
|
protocol PHttpChannel
|
|
|
|
{
|
|
|
|
manager PNecko;
|
|
|
|
|
|
|
|
parent:
|
2012-08-23 19:33:46 +00:00
|
|
|
AsyncOpen(URIParams uri,
|
2010-06-10 03:19:28 +00:00
|
|
|
// - TODO: bug 571161: unclear if any HTTP channel clients ever
|
|
|
|
// set originalURI != uri (about:credits?); also not clear if
|
|
|
|
// chrome channel would ever need to know. Get rid of next arg?
|
2012-08-23 19:33:46 +00:00
|
|
|
OptionalURIParams original,
|
|
|
|
OptionalURIParams doc,
|
|
|
|
OptionalURIParams referrer,
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t loadFlags,
|
2010-04-07 08:43:09 +00:00
|
|
|
RequestHeaderTuples requestHeaders,
|
2011-09-22 14:43:11 +00:00
|
|
|
nsHttpAtom requestMethod,
|
2012-08-23 02:13:54 +00:00
|
|
|
OptionalInputStreamParams uploadStream,
|
2011-09-29 06:19:26 +00:00
|
|
|
bool uploadStreamHasHeaders,
|
2012-08-22 15:56:38 +00:00
|
|
|
uint16_t priority,
|
|
|
|
uint8_t redirectionLimit,
|
2011-09-29 06:19:26 +00:00
|
|
|
bool allowPipelining,
|
|
|
|
bool forceAllowThirdPartyCookie,
|
2010-08-11 03:07:09 +00:00
|
|
|
bool resumeAt,
|
2012-08-22 15:56:38 +00:00
|
|
|
uint64_t startPos,
|
2010-10-20 17:12:32 +00:00
|
|
|
nsCString entityID,
|
|
|
|
bool chooseApplicationCache,
|
2011-12-13 15:55:50 +00:00
|
|
|
nsCString appCacheClientID,
|
2012-05-24 15:31:53 +00:00
|
|
|
bool allowSpdy,
|
2012-08-07 04:47:48 +00:00
|
|
|
SerializedLoadContext loadContext);
|
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
|
|
|
|
2011-04-10 03:42:05 +00:00
|
|
|
// Used to connect redirected-to channel on the parent with redirected-to
|
|
|
|
// channel on the child.
|
2012-08-22 15:56:38 +00:00
|
|
|
ConnectChannel(uint32_t channelId);
|
2010-11-23 22:56:06 +00:00
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
SetPriority(uint16_t priority);
|
2010-04-11 04:53:35 +00:00
|
|
|
|
2010-06-24 06:55:19 +00:00
|
|
|
SetCacheTokenCachedCharset(nsCString charset);
|
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
UpdateAssociatedContentSecurity(int32_t high,
|
|
|
|
int32_t low,
|
|
|
|
int32_t broken,
|
|
|
|
int32_t no);
|
2010-08-11 03:07:09 +00:00
|
|
|
Suspend();
|
|
|
|
Resume();
|
|
|
|
|
2010-08-12 09:05:16 +00:00
|
|
|
Cancel(nsresult status);
|
|
|
|
|
2010-08-11 03:11:57 +00:00
|
|
|
// Reports approval/veto of redirect by child process redirect observers
|
2010-10-09 05:07:58 +00:00
|
|
|
Redirect2Verify(nsresult result, RequestHeaderTuples changedHeaders);
|
2010-08-11 03:11:57 +00:00
|
|
|
|
2010-08-17 22:17:00 +00:00
|
|
|
// For document loads we keep this protocol open after child's
|
|
|
|
// OnStopRequest, and send this msg (instead of __delete__) to allow
|
|
|
|
// partial cleanup on parent.
|
|
|
|
DocumentChannelCleanup();
|
|
|
|
|
2010-10-20 17:12:32 +00:00
|
|
|
// This might have to be sync. If this fails we must fail the document load
|
|
|
|
// to avoid endless loop.
|
|
|
|
//
|
|
|
|
// Explanation: the document loaded was loaded from the offline cache. But
|
|
|
|
// the cache group id (the manifest URL) of the cache group it was loaded
|
|
|
|
// from is different then the manifest the document refers to in the html
|
|
|
|
// tag. If we detect this during the cache selection algorithm, we must not
|
|
|
|
// load this document from the offline cache group it was just loaded from.
|
|
|
|
// Marking the cache entry as foreign in its cache group will prevent
|
|
|
|
// the document to load from the bad offline cache group. After it is marked,
|
|
|
|
// we reload the document to take the effect. If we fail to mark the entry
|
|
|
|
// as foreign, we will end up in the same situation and reload again and
|
|
|
|
// again, indefinitely.
|
|
|
|
MarkOfflineCacheEntryAsForeign();
|
|
|
|
|
2010-09-15 19:26:15 +00:00
|
|
|
__delete__();
|
|
|
|
|
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
|
|
|
child:
|
2010-10-02 04:17:23 +00:00
|
|
|
OnStartRequest(nsHttpResponseHead responseHead,
|
2011-09-29 06:19:26 +00:00
|
|
|
bool useResponseHead,
|
2012-01-19 22:26:43 +00:00
|
|
|
nsHttpHeaderArray requestHeaders,
|
2011-09-29 06:19:26 +00:00
|
|
|
bool isFromCache,
|
|
|
|
bool cacheEntryAvailable,
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t cacheExpirationTime,
|
2010-10-02 04:17:23 +00:00
|
|
|
nsCString cachedCharset,
|
2011-05-05 15:45:59 +00:00
|
|
|
nsCString securityInfoSerialization,
|
|
|
|
PRNetAddr selfAddr,
|
|
|
|
PRNetAddr peerAddr);
|
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
|
|
|
|
2011-04-10 03:42:05 +00:00
|
|
|
// Combines a single OnDataAvailable and its associated OnProgress &
|
|
|
|
// OnStatus calls into one IPDL message
|
|
|
|
OnTransportAndData(nsresult status,
|
2012-08-22 15:56:38 +00:00
|
|
|
uint64_t progress,
|
|
|
|
uint64_t progressMax,
|
2011-04-10 03:42:05 +00:00
|
|
|
nsCString data,
|
2012-09-06 02:41:02 +00:00
|
|
|
uint64_t offset,
|
2012-08-22 15:56:38 +00:00
|
|
|
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 18:55:33 +00:00
|
|
|
|
|
|
|
OnStopRequest(nsresult statusCode);
|
2010-05-13 17:28:51 +00:00
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
OnProgress(uint64_t progress, uint64_t progressMax);
|
2010-05-13 17:28:51 +00:00
|
|
|
|
2011-04-10 03:42:05 +00:00
|
|
|
OnStatus(nsresult status);
|
2010-08-11 03:11:57 +00:00
|
|
|
|
2010-08-12 09:05:16 +00:00
|
|
|
// Used to cancel child channel if we hit errors during creating and
|
|
|
|
// AsyncOpen of nsHttpChannel on the parent.
|
2011-06-12 01:37:03 +00:00
|
|
|
FailedAsyncOpen(nsresult status);
|
2010-08-12 09:05:16 +00:00
|
|
|
|
2010-08-11 03:11:57 +00:00
|
|
|
// Called to initiate content channel redirect, starts talking to sinks
|
2010-10-09 05:07:58 +00:00
|
|
|
// on the content process and reports result via Redirect2Verify above
|
2012-08-22 15:56:38 +00:00
|
|
|
Redirect1Begin(uint32_t newChannelId,
|
2012-08-23 19:33:46 +00:00
|
|
|
URIParams newUri,
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t redirectFlags,
|
2010-08-11 03:11:57 +00:00
|
|
|
nsHttpResponseHead responseHead);
|
2010-10-09 05:07:58 +00:00
|
|
|
|
2010-08-11 03:11:57 +00:00
|
|
|
// Called if redirect successful so that child can complete setup.
|
|
|
|
Redirect3Complete();
|
|
|
|
|
2010-10-20 17:12:32 +00:00
|
|
|
// Associte the child with an application ids
|
|
|
|
AssociateApplicationCache(nsCString groupID,
|
|
|
|
nsCString clientID);
|
|
|
|
|
2010-10-09 05:07:58 +00:00
|
|
|
// Tell child to delete channel (all IPDL deletes must be done from child to
|
|
|
|
// avoid races: see bug 591708).
|
2010-09-15 19:26:15 +00:00
|
|
|
DeleteSelf();
|
2009-08-18 19:05:15 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
} // namespace net
|
|
|
|
} // namespace mozilla
|
|
|
|
|