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/. */
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
#ifndef nsPrefetchService_h__
|
|
|
|
#define nsPrefetchService_h__
|
|
|
|
|
|
|
|
#include "nsCPrefetchService.h"
|
|
|
|
#include "nsIObserver.h"
|
|
|
|
#include "nsIInterfaceRequestor.h"
|
|
|
|
#include "nsIChannelEventSink.h"
|
2012-07-31 11:59:17 -07:00
|
|
|
#include "nsIRedirectResultListener.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsIWebProgressListener.h"
|
|
|
|
#include "nsIStreamListener.h"
|
|
|
|
#include "nsIChannel.h"
|
|
|
|
#include "nsIURI.h"
|
|
|
|
#include "nsWeakReference.h"
|
|
|
|
#include "nsCOMPtr.h"
|
2007-07-08 23:19:27 -07:00
|
|
|
#include "nsAutoPtr.h"
|
2012-06-12 20:53:09 -07:00
|
|
|
#include "mozilla/Attributes.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
class nsPrefetchService;
|
|
|
|
class nsPrefetchListener;
|
|
|
|
class nsPrefetchNode;
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// nsPrefetchService
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
2012-06-12 20:53:09 -07:00
|
|
|
class nsPrefetchService MOZ_FINAL : public nsIPrefetchService
|
|
|
|
, public nsIWebProgressListener
|
|
|
|
, public nsIObserver
|
|
|
|
, public nsSupportsWeakReference
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSIPREFETCHSERVICE
|
|
|
|
NS_DECL_NSIWEBPROGRESSLISTENER
|
|
|
|
NS_DECL_NSIOBSERVER
|
|
|
|
|
|
|
|
nsPrefetchService();
|
|
|
|
|
|
|
|
nsresult Init();
|
|
|
|
void ProcessNextURI();
|
2007-07-08 23:19:27 -07:00
|
|
|
|
|
|
|
nsPrefetchNode *GetCurrentNode() { return mCurrentNode.get(); }
|
|
|
|
nsPrefetchNode *GetQueueHead() { return mQueueHead; }
|
|
|
|
|
|
|
|
void NotifyLoadRequested(nsPrefetchNode *node);
|
|
|
|
void NotifyLoadCompleted(nsPrefetchNode *node);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
private:
|
|
|
|
~nsPrefetchService();
|
|
|
|
|
|
|
|
nsresult Prefetch(nsIURI *aURI,
|
|
|
|
nsIURI *aReferrerURI,
|
2007-07-08 23:19:27 -07:00
|
|
|
nsIDOMNode *aSource,
|
2011-09-28 23:19:26 -07:00
|
|
|
bool aExplicit);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
void AddProgressListener();
|
|
|
|
void RemoveProgressListener();
|
2007-07-08 23:19:27 -07:00
|
|
|
nsresult EnqueueURI(nsIURI *aURI, nsIURI *aReferrerURI,
|
2008-08-24 20:37:10 -07:00
|
|
|
nsIDOMNode *aSource, nsPrefetchNode **node);
|
2007-07-08 23:19:27 -07:00
|
|
|
nsresult EnqueueNode(nsPrefetchNode *node);
|
|
|
|
nsresult DequeueNode(nsPrefetchNode **node);
|
2008-08-24 20:37:10 -07:00
|
|
|
void EmptyQueue();
|
2007-05-14 13:09:20 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
void StartPrefetching();
|
|
|
|
void StopPrefetching();
|
|
|
|
|
2007-05-14 13:09:20 -07:00
|
|
|
nsPrefetchNode *mQueueHead;
|
|
|
|
nsPrefetchNode *mQueueTail;
|
2007-07-08 23:19:27 -07:00
|
|
|
nsRefPtr<nsPrefetchNode> mCurrentNode;
|
2012-08-22 08:56:38 -07:00
|
|
|
int32_t mStopCount;
|
2007-05-29 02:45:30 -07:00
|
|
|
// true if pending document loads have ever reached zero.
|
2012-08-22 08:56:38 -07:00
|
|
|
int32_t mHaveProcessed;
|
2011-09-28 23:19:26 -07:00
|
|
|
bool mDisabled;
|
2007-03-22 10:30:00 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
2007-07-08 23:19:27 -07:00
|
|
|
// nsPrefetchNode
|
2007-03-22 10:30:00 -07:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
2013-12-18 07:11:54 -08:00
|
|
|
class nsPrefetchNode MOZ_FINAL : public nsIStreamListener
|
2012-06-12 20:53:09 -07:00
|
|
|
, public nsIInterfaceRequestor
|
|
|
|
, public nsIChannelEventSink
|
2012-07-31 11:59:17 -07:00
|
|
|
, public nsIRedirectResultListener
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSIREQUESTOBSERVER
|
|
|
|
NS_DECL_NSISTREAMLISTENER
|
|
|
|
NS_DECL_NSIINTERFACEREQUESTOR
|
|
|
|
NS_DECL_NSICHANNELEVENTSINK
|
2012-07-31 11:59:17 -07:00
|
|
|
NS_DECL_NSIREDIRECTRESULTLISTENER
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2007-07-08 23:19:27 -07:00
|
|
|
nsPrefetchNode(nsPrefetchService *aPrefetchService,
|
|
|
|
nsIURI *aURI,
|
|
|
|
nsIURI *aReferrerURI,
|
2008-08-24 20:37:10 -07:00
|
|
|
nsIDOMNode *aSource);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2007-07-08 23:19:27 -07:00
|
|
|
nsresult OpenChannel();
|
|
|
|
nsresult CancelChannel(nsresult error);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2007-07-08 23:19:27 -07:00
|
|
|
nsPrefetchNode *mNext;
|
|
|
|
nsCOMPtr<nsIURI> mURI;
|
|
|
|
nsCOMPtr<nsIURI> mReferrerURI;
|
|
|
|
nsCOMPtr<nsIWeakReference> mSource;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2007-07-08 23:19:27 -07:00
|
|
|
private:
|
2014-06-23 11:49:09 -07:00
|
|
|
~nsPrefetchNode() {}
|
|
|
|
|
2007-07-08 23:19:27 -07:00
|
|
|
nsRefPtr<nsPrefetchService> mService;
|
|
|
|
nsCOMPtr<nsIChannel> mChannel;
|
2012-07-31 11:59:17 -07:00
|
|
|
nsCOMPtr<nsIChannel> mRedirectChannel;
|
2012-10-22 10:51:07 -07:00
|
|
|
int64_t mBytesRead;
|
2007-03-22 10:30:00 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // !nsPrefetchService_h__
|