OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef WEBKIT_APPCACHE_APPCACHE_REQUEST_HANDLER_H_ | 5 #ifndef WEBKIT_APPCACHE_APPCACHE_REQUEST_HANDLER_H_ |
6 #define WEBKIT_APPCACHE_APPCACHE_REQUEST_HANDLER_H_ | 6 #define WEBKIT_APPCACHE_APPCACHE_REQUEST_HANDLER_H_ |
7 | 7 |
8 #include "net/url_request/url_request.h" | 8 #include "net/url_request/url_request.h" |
9 #include "webkit/appcache/appcache_host.h" | 9 #include "webkit/appcache/appcache_host.h" |
10 | 10 |
11 class URLRequest; | 11 class URLRequest; |
12 class URLRequestJob; | 12 class URLRequestJob; |
13 | 13 |
14 namespace appcache { | 14 namespace appcache { |
15 | 15 |
16 // An instance is created for each URLRequest. The instance survives all | 16 // An instance is created for each URLRequest. The instance survives all |
17 // http transactions involved in the processing of its URLRequest, and is | 17 // http transactions involved in the processing of its URLRequest, and is |
18 // given the opportunity to hijack the request along the way. Callers | 18 // given the opportunity to hijack the request along the way. Callers |
19 // should use AppCacheHost::CreateRequestHandler to manufacture instances | 19 // should use AppCacheHost::CreateRequestHandler to manufacture instances |
20 // that can retrieve resources for a particular host. | 20 // that can retrieve resources for a particular host. |
21 class AppCacheRequestHandler : public URLRequest::UserData { | 21 class AppCacheRequestHandler : public URLRequest::UserData, |
| 22 public AppCacheHost::Observer { |
22 public: | 23 public: |
| 24 virtual ~AppCacheRequestHandler(); |
| 25 |
23 // Should be called on each request intercept opportunity. | 26 // Should be called on each request intercept opportunity. |
24 URLRequestJob* MaybeLoadResource(URLRequest* request); | 27 URLRequestJob* MaybeLoadResource(URLRequest* request); |
25 URLRequestJob* MaybeLoadFallbackForRedirect(URLRequest* request, | 28 URLRequestJob* MaybeLoadFallbackForRedirect(URLRequest* request, |
26 const GURL& location); | 29 const GURL& location); |
27 URLRequestJob* MaybeLoadFallbackForResponse(URLRequest* request); | 30 URLRequestJob* MaybeLoadFallbackForResponse(URLRequest* request); |
28 | 31 |
29 void GetExtraResponseInfo(int64* cache_id, GURL* manifest_url); | 32 void GetExtraResponseInfo(int64* cache_id, GURL* manifest_url); |
30 | 33 |
31 private: | 34 private: |
32 friend class AppCacheHost; | 35 friend class AppCacheHost; |
33 | 36 |
34 // Ctor for main resource loads. | 37 // Callers should use AppCacheHost::CreateRequestHandler. |
35 explicit AppCacheRequestHandler(AppCacheHost* host); | 38 AppCacheRequestHandler(AppCacheHost* host, bool is_main_resource); |
36 | 39 |
37 // Ctor for subresource loads when the cache is loaded. | 40 // AppCacheHost::Observer methods |
38 explicit AppCacheRequestHandler(AppCache* cache); | 41 virtual void OnCacheSelectionComplete(AppCacheHost* host); |
| 42 virtual void OnDestructionImminent(AppCacheHost* host); |
39 | 43 |
40 // Main vs subresource loads are very different. | 44 // Main vs subresource loads are very different. |
41 // TODO(michaeln): maybe have two derived classes? | 45 // TODO(michaeln): maybe have two derived classes? |
42 bool is_main_request_; | 46 bool is_main_request_; |
43 int64 cache_id_; | 47 AppCacheHost* host_; |
44 scoped_refptr<AppCache> cache_; | 48 scoped_refptr<AppCache> cache_; |
45 base::WeakPtr<AppCacheHost> host_; | |
46 scoped_refptr<URLRequestJob> job_; | 49 scoped_refptr<URLRequestJob> job_; |
47 AppCacheService* service_; | |
48 }; | 50 }; |
49 | 51 |
50 } // namespace appcache | 52 } // namespace appcache |
51 | 53 |
52 #endif // WEBKIT_APPCACHE_APPCACHE_REQUEST_HANDLER_H_ | 54 #endif // WEBKIT_APPCACHE_APPCACHE_REQUEST_HANDLER_H_ |
53 | 55 |
OLD | NEW |