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 ft=cpp : */
|
|
|
|
|
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
|
|
|
|
2010-04-27 00:12:38 -07:00
|
|
|
include protocol PNecko;
|
2012-08-23 12:33:46 -07:00
|
|
|
include InputStreamParams;
|
|
|
|
include URIParams;
|
2009-08-18 12:05:15 -07:00
|
|
|
|
2012-09-21 10:26:13 -07:00
|
|
|
include protocol PBlob; //FIXME: bug #792908
|
|
|
|
|
2010-03-23 08:14:36 -07:00
|
|
|
include "mozilla/net/PHttpChannelParams.h";
|
2010-04-26 08:24:21 -07:00
|
|
|
include "mozilla/net/NeckoMessageUtils.h";
|
2012-12-23 13:08:43 -08:00
|
|
|
include "mozilla/net/DNS.h";
|
2011-05-05 08:45:59 -07:00
|
|
|
include "prio.h";
|
2012-08-22 19:13:54 -07:00
|
|
|
|
2010-03-23 08:14:36 -07:00
|
|
|
using RequestHeaderTuples;
|
2012-01-19 14:26:43 -08:00
|
|
|
using nsHttpHeaderArray;
|
2010-03-23 08:14:36 -07:00
|
|
|
using nsHttpResponseHead;
|
2011-09-22 07:43:11 -07:00
|
|
|
using nsHttpAtom;
|
2012-12-23 13:08:43 -08:00
|
|
|
using mozilla::net::NetAddr;
|
2010-03-23 08:14:36 -07:00
|
|
|
|
2009-08-18 12:05:15 -07:00
|
|
|
namespace mozilla {
|
|
|
|
namespace net {
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------
|
|
|
|
protocol PHttpChannel
|
|
|
|
{
|
|
|
|
manager PNecko;
|
|
|
|
|
|
|
|
parent:
|
2012-08-23 12:33:46 -07:00
|
|
|
AsyncOpen(URIParams uri,
|
2010-06-09 20:19:28 -07: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 12:33:46 -07:00
|
|
|
OptionalURIParams original,
|
|
|
|
OptionalURIParams doc,
|
|
|
|
OptionalURIParams referrer,
|
2013-01-11 15:46:00 -08:00
|
|
|
OptionalURIParams apiRedirectTo,
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t loadFlags,
|
2010-04-07 01:43:09 -07:00
|
|
|
RequestHeaderTuples requestHeaders,
|
2011-09-22 07:43:11 -07:00
|
|
|
nsHttpAtom requestMethod,
|
2012-08-22 19:13:54 -07:00
|
|
|
OptionalInputStreamParams uploadStream,
|
2011-09-28 23:19:26 -07:00
|
|
|
bool uploadStreamHasHeaders,
|
2012-08-22 08:56:38 -07:00
|
|
|
uint16_t priority,
|
|
|
|
uint8_t redirectionLimit,
|
2011-09-28 23:19:26 -07:00
|
|
|
bool allowPipelining,
|
|
|
|
bool forceAllowThirdPartyCookie,
|
2010-08-10 20:07:09 -07:00
|
|
|
bool resumeAt,
|
2012-08-22 08:56:38 -07:00
|
|
|
uint64_t startPos,
|
2010-10-20 10:12:32 -07:00
|
|
|
nsCString entityID,
|
|
|
|
bool chooseApplicationCache,
|
2011-12-13 07:55:50 -08:00
|
|
|
nsCString appCacheClientID,
|
2012-10-09 16:46:24 -07:00
|
|
|
bool allowSpdy);
|
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-04-09 20:42:05 -07:00
|
|
|
// Used to connect redirected-to channel on the parent with redirected-to
|
|
|
|
// channel on the child.
|
2012-08-22 08:56:38 -07:00
|
|
|
ConnectChannel(uint32_t channelId);
|
2010-11-23 14:56:06 -08:00
|
|
|
|
2012-08-22 08:56:38 -07:00
|
|
|
SetPriority(uint16_t priority);
|
2010-04-10 21:53:35 -07:00
|
|
|
|
2010-06-23 23:55:19 -07:00
|
|
|
SetCacheTokenCachedCharset(nsCString charset);
|
|
|
|
|
2012-11-10 20:49:29 -08:00
|
|
|
UpdateAssociatedContentSecurity(int32_t broken,
|
2012-08-22 08:56:38 -07:00
|
|
|
int32_t no);
|
2010-08-10 20:07:09 -07:00
|
|
|
Suspend();
|
|
|
|
Resume();
|
|
|
|
|
2010-08-12 02:05:16 -07:00
|
|
|
Cancel(nsresult status);
|
|
|
|
|
2010-08-10 20:11:57 -07:00
|
|
|
// Reports approval/veto of redirect by child process redirect observers
|
2013-01-11 15:46:00 -08:00
|
|
|
Redirect2Verify(nsresult result, RequestHeaderTuples changedHeaders,
|
|
|
|
OptionalURIParams apiRedirectTo);
|
2010-08-10 20:11:57 -07:00
|
|
|
|
2010-08-17 15:17:00 -07: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 10:12:32 -07: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 12:26:15 -07: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 11:55:33 -07:00
|
|
|
child:
|
2010-10-01 21:17:23 -07:00
|
|
|
OnStartRequest(nsHttpResponseHead responseHead,
|
2011-09-28 23:19:26 -07:00
|
|
|
bool useResponseHead,
|
2012-01-19 14:26:43 -08:00
|
|
|
nsHttpHeaderArray requestHeaders,
|
2011-09-28 23:19:26 -07:00
|
|
|
bool isFromCache,
|
|
|
|
bool cacheEntryAvailable,
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t cacheExpirationTime,
|
2010-10-01 21:17:23 -07:00
|
|
|
nsCString cachedCharset,
|
2011-05-05 08:45:59 -07:00
|
|
|
nsCString securityInfoSerialization,
|
2012-12-23 13:08:43 -08:00
|
|
|
NetAddr selfAddr,
|
|
|
|
NetAddr 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 11:55:33 -07:00
|
|
|
|
2011-04-09 20:42:05 -07:00
|
|
|
// Combines a single OnDataAvailable and its associated OnProgress &
|
|
|
|
// OnStatus calls into one IPDL message
|
|
|
|
OnTransportAndData(nsresult status,
|
2012-08-22 08:56:38 -07:00
|
|
|
uint64_t progress,
|
|
|
|
uint64_t progressMax,
|
2011-04-09 20:42:05 -07:00
|
|
|
nsCString data,
|
2012-09-05 19:41:02 -07:00
|
|
|
uint64_t offset,
|
2012-08-22 08:56:38 -07: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 11:55:33 -07:00
|
|
|
|
|
|
|
OnStopRequest(nsresult statusCode);
|
2010-05-13 10:28:51 -07:00
|
|
|
|
2012-08-22 08:56:38 -07:00
|
|
|
OnProgress(uint64_t progress, uint64_t progressMax);
|
2010-05-13 10:28:51 -07:00
|
|
|
|
2011-04-09 20:42:05 -07:00
|
|
|
OnStatus(nsresult status);
|
2010-08-10 20:11:57 -07:00
|
|
|
|
2010-08-12 02:05:16 -07:00
|
|
|
// Used to cancel child channel if we hit errors during creating and
|
|
|
|
// AsyncOpen of nsHttpChannel on the parent.
|
2011-06-11 18:37:03 -07:00
|
|
|
FailedAsyncOpen(nsresult status);
|
2010-08-12 02:05:16 -07:00
|
|
|
|
2010-08-10 20:11:57 -07:00
|
|
|
// Called to initiate content channel redirect, starts talking to sinks
|
2010-10-08 22:07:58 -07:00
|
|
|
// on the content process and reports result via Redirect2Verify above
|
2012-08-22 08:56:38 -07:00
|
|
|
Redirect1Begin(uint32_t newChannelId,
|
2012-08-23 12:33:46 -07:00
|
|
|
URIParams newUri,
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t redirectFlags,
|
2010-08-10 20:11:57 -07:00
|
|
|
nsHttpResponseHead responseHead);
|
2010-10-08 22:07:58 -07:00
|
|
|
|
2010-08-10 20:11:57 -07:00
|
|
|
// Called if redirect successful so that child can complete setup.
|
|
|
|
Redirect3Complete();
|
|
|
|
|
2010-10-20 10:12:32 -07:00
|
|
|
// Associte the child with an application ids
|
|
|
|
AssociateApplicationCache(nsCString groupID,
|
|
|
|
nsCString clientID);
|
|
|
|
|
2010-10-08 22:07:58 -07:00
|
|
|
// Tell child to delete channel (all IPDL deletes must be done from child to
|
|
|
|
// avoid races: see bug 591708).
|
2010-09-15 12:26:15 -07:00
|
|
|
DeleteSelf();
|
2009-08-18 12:05:15 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
} // namespace net
|
|
|
|
} // namespace mozilla
|
|
|
|
|