1 /* ***** BEGIN LICENSE BLOCK *****
2 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
4 * The contents of this file are subject to the Mozilla Public License Version
5 * 1.1 (the "License"); you may not use this file except in compliance with
6 * the License. You may obtain a copy of the License at
7 * http://www.mozilla.org/MPL/
9 * Software distributed under the License is distributed on an "AS IS" basis,
10 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
11 * for the specific language governing rights and limitations under the
14 * The Original Code is Mozilla.
16 * The Initial Developer of the Original Code is
17 * Netscape Communications Corporation.
18 * Portions created by the Initial Developer are Copyright (C) 2002
19 * the Initial Developer. All Rights Reserved.
22 * Darin Fisher <darin@netscape.com> (original author)
24 * Alternatively, the contents of this file may be used under the terms of
25 * either the GNU General Public License Version 2 or later (the "GPL"), or
26 * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
27 * in which case the provisions of the GPL or the LGPL are applicable instead
28 * of those above. If you wish to allow use of your version of this file only
29 * under the terms of either the GPL or the LGPL, and not to allow others to
30 * use your version of this file under the terms of the MPL, indicate your
31 * decision by deleting the provisions above and replace them with the notice
32 * and other provisions required by the GPL or the LGPL. If you do not delete
33 * the provisions above, a recipient may use your version of this file under
34 * the terms of any one of the MPL, the GPL or the LGPL.
36 * ***** END LICENSE BLOCK ***** */
38 #ifndef nsPrefetchService_h__
39 #define nsPrefetchService_h__
41 #include "nsCPrefetchService.h"
42 #include "nsIGenericFactory.h"
43 #include "nsIObserver.h"
44 #include "nsIInterfaceRequestor.h"
45 #include "nsIChannelEventSink.h"
46 #include "nsIWebProgressListener.h"
47 #include "nsIStreamListener.h"
48 #include "nsIChannel.h"
50 #include "nsIDOMDocument.h"
51 #include "nsIDOMLoadStatus.h"
52 #include "nsWeakReference.h"
54 #include "nsAutoPtr.h"
56 class nsPrefetchService
;
57 class nsPrefetchListener
;
60 //-----------------------------------------------------------------------------
62 //-----------------------------------------------------------------------------
64 class nsPrefetchService
: public nsIPrefetchService
65 , public nsIWebProgressListener
67 , public nsSupportsWeakReference
71 NS_DECL_NSIPREFETCHSERVICE
72 NS_DECL_NSIWEBPROGRESSLISTENER
78 void ProcessNextURI();
80 nsPrefetchNode
*GetCurrentNode() { return mCurrentNode
.get(); }
81 nsPrefetchNode
*GetQueueHead() { return mQueueHead
; }
83 void NotifyLoadRequested(nsPrefetchNode
*node
);
84 void NotifyLoadCompleted(nsPrefetchNode
*node
);
89 nsresult
Prefetch(nsIURI
*aURI
,
94 void AddProgressListener();
95 void RemoveProgressListener();
96 nsresult
EnqueueURI(nsIURI
*aURI
, nsIURI
*aReferrerURI
,
97 nsIDOMNode
*aSource
, nsPrefetchNode
**node
);
98 nsresult
EnqueueNode(nsPrefetchNode
*node
);
99 nsresult
DequeueNode(nsPrefetchNode
**node
);
102 void StartPrefetching();
103 void StopPrefetching();
105 nsPrefetchNode
*mQueueHead
;
106 nsPrefetchNode
*mQueueTail
;
107 nsRefPtr
<nsPrefetchNode
> mCurrentNode
;
109 // true if pending document loads have ever reached zero.
110 PRInt32 mHaveProcessed
;
114 //-----------------------------------------------------------------------------
116 //-----------------------------------------------------------------------------
118 class nsPrefetchNode
: public nsIDOMLoadStatus
119 , public nsIStreamListener
120 , public nsIInterfaceRequestor
121 , public nsIChannelEventSink
125 NS_DECL_NSIDOMLOADSTATUS
126 NS_DECL_NSIREQUESTOBSERVER
127 NS_DECL_NSISTREAMLISTENER
128 NS_DECL_NSIINTERFACEREQUESTOR
129 NS_DECL_NSICHANNELEVENTSINK
131 nsPrefetchNode(nsPrefetchService
*aPrefetchService
,
133 nsIURI
*aReferrerURI
,
134 nsIDOMNode
*aSource
);
138 nsresult
OpenChannel();
139 nsresult
CancelChannel(nsresult error
);
141 nsPrefetchNode
*mNext
;
142 nsCOMPtr
<nsIURI
> mURI
;
143 nsCOMPtr
<nsIURI
> mReferrerURI
;
144 nsCOMPtr
<nsIWeakReference
> mSource
;
147 nsRefPtr
<nsPrefetchService
> mService
;
148 nsCOMPtr
<nsIChannel
> mChannel
;
153 #endif // !nsPrefetchService_h__