зеркало из https://github.com/mozilla/gecko-dev.git
102 строки
3.2 KiB
C++
102 строки
3.2 KiB
C++
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* vim: set sw=2 ts=8 et tw=80 : */
|
|
|
|
/* 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/. */
|
|
|
|
#ifndef mozilla_net_DocumentChannel_h
|
|
#define mozilla_net_DocumentChannel_h
|
|
|
|
#include "mozilla/net/PDocumentChannelChild.h"
|
|
#include "nsDOMNavigationTiming.h"
|
|
#include "nsIChannel.h"
|
|
#include "nsIChildChannel.h"
|
|
#include "nsITraceableChannel.h"
|
|
#include "mozilla/dom/ClientInfo.h"
|
|
|
|
#define DOCUMENT_CHANNEL_IID \
|
|
{ \
|
|
0x6977bc44, 0xb1db, 0x41b7, { \
|
|
0xb5, 0xc5, 0xe2, 0x13, 0x68, 0x22, 0xc9, 0x8f \
|
|
} \
|
|
}
|
|
|
|
namespace mozilla {
|
|
namespace net {
|
|
|
|
/**
|
|
* DocumentChannel is a protocol agnostic placeholder nsIChannel implementation
|
|
* that we use so that nsDocShell knows about a connecting load. It transfers
|
|
* all data into a DocumentLoadListener (running in the parent process), which
|
|
* will create the real channel for the connection, and decide which process to
|
|
* load the resulting document in. If the document is to be loaded in the
|
|
* current process, then we'll synthesize a redirect replacing this placeholder
|
|
* channel with the real one, otherwise the originating docshell will be removed
|
|
* during the process switch.
|
|
*/
|
|
class DocumentChannel : public nsIIdentChannel, public nsITraceableChannel {
|
|
public:
|
|
NS_DECL_ISUPPORTS
|
|
NS_DECL_NSIREQUEST
|
|
NS_DECL_NSICHANNEL
|
|
NS_DECL_NSIIDENTCHANNEL
|
|
NS_DECL_NSITRACEABLECHANNEL
|
|
|
|
NS_DECLARE_STATIC_IID_ACCESSOR(DOCUMENT_CHANNEL_IID)
|
|
|
|
DocumentChannel(nsDocShellLoadState* aLoadState, class LoadInfo* aLoadInfo,
|
|
nsLoadFlags aLoadFlags, uint32_t aCacheKey);
|
|
|
|
const nsTArray<DocumentChannelRedirect>& GetRedirectChain() const {
|
|
return mRedirects;
|
|
}
|
|
|
|
void GetLastVisit(nsIURI** aURI, uint32_t* aChannelRedirectFlags) const {
|
|
*aURI = do_AddRef(mLastVisitInfo.uri()).take();
|
|
*aChannelRedirectFlags = mLastVisitInfo.previousFlags();
|
|
}
|
|
|
|
void SetNavigationTiming(nsDOMNavigationTiming* aTiming) {
|
|
mTiming = aTiming;
|
|
}
|
|
|
|
void SetInitialClientInfo(const Maybe<dom::ClientInfo>& aInfo) {
|
|
mInitialClientInfo = aInfo;
|
|
}
|
|
|
|
protected:
|
|
nsDocShell* GetDocShell();
|
|
|
|
virtual ~DocumentChannel() = default;
|
|
|
|
LastVisitInfo mLastVisitInfo;
|
|
nsTArray<DocumentChannelRedirect> mRedirects;
|
|
|
|
const TimeStamp mAsyncOpenTime;
|
|
const RefPtr<nsDocShellLoadState> mLoadState;
|
|
const uint32_t mCacheKey;
|
|
|
|
nsresult mStatus = NS_OK;
|
|
bool mCanceled = false;
|
|
bool mIsPending = false;
|
|
bool mWasOpened = false;
|
|
uint64_t mChannelId;
|
|
uint32_t mLoadFlags = LOAD_NORMAL;
|
|
const nsCOMPtr<nsIURI> mURI;
|
|
nsCOMPtr<nsILoadGroup> mLoadGroup;
|
|
nsCOMPtr<nsILoadInfo> mLoadInfo;
|
|
nsCOMPtr<nsIInterfaceRequestor> mCallbacks;
|
|
nsCOMPtr<nsIStreamListener> mListener;
|
|
nsCOMPtr<nsISupports> mOwner;
|
|
RefPtr<nsDOMNavigationTiming> mTiming;
|
|
Maybe<dom::ClientInfo> mInitialClientInfo;
|
|
};
|
|
|
|
NS_DEFINE_STATIC_IID_ACCESSOR(DocumentChannel, DOCUMENT_CHANNEL_IID)
|
|
|
|
} // namespace net
|
|
} // namespace mozilla
|
|
|
|
#endif // mozilla_net_DocumentChannel_h
|