1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CONTENT_BROWSER_APPCACHE_APPCACHE_REQUEST_HANDLER_H_
6 #define CONTENT_BROWSER_APPCACHE_APPCACHE_REQUEST_HANDLER_H_
8 #include "base/compiler_specific.h"
9 #include "base/supports_user_data.h"
10 #include "content/browser/appcache/appcache_entry.h"
11 #include "content/browser/appcache/appcache_host.h"
12 #include "content/common/content_export.h"
13 #include "content/public/common/resource_type.h"
16 class NetworkDelegate
;
22 class AppCacheRequestHandlerTest
;
23 class AppCacheURLRequestJob
;
25 // An instance is created for each net::URLRequest. The instance survives all
26 // http transactions involved in the processing of its net::URLRequest, and is
27 // given the opportunity to hijack the request along the way. Callers
28 // should use AppCacheHost::CreateRequestHandler to manufacture instances
29 // that can retrieve resources for a particular host.
30 class CONTENT_EXPORT AppCacheRequestHandler
31 : public base::SupportsUserData::Data
,
32 public AppCacheHost::Observer
,
33 public AppCacheStorage::Delegate
{
35 ~AppCacheRequestHandler() override
;
37 // These are called on each request intercept opportunity.
38 AppCacheURLRequestJob
* MaybeLoadResource(
39 net::URLRequest
* request
, net::NetworkDelegate
* network_delegate
);
40 AppCacheURLRequestJob
* MaybeLoadFallbackForRedirect(
41 net::URLRequest
* request
,
42 net::NetworkDelegate
* network_delegate
,
43 const GURL
& location
);
44 AppCacheURLRequestJob
* MaybeLoadFallbackForResponse(
45 net::URLRequest
* request
, net::NetworkDelegate
* network_delegate
);
47 void GetExtraResponseInfo(int64
* cache_id
, GURL
* manifest_url
);
49 // Methods to support cross site navigations.
50 void PrepareForCrossSiteTransfer(int old_process_id
);
51 void CompleteCrossSiteTransfer(int new_process_id
, int new_host_id
);
53 static bool IsMainResourceType(ResourceType type
) {
54 return IsResourceTypeFrame(type
) ||
55 type
== RESOURCE_TYPE_SHARED_WORKER
;
59 friend class AppCacheHost
;
61 // Callers should use AppCacheHost::CreateRequestHandler.
62 AppCacheRequestHandler(AppCacheHost
* host
, ResourceType resource_type
);
64 // AppCacheHost::Observer override
65 void OnDestructionImminent(AppCacheHost
* host
) override
;
67 // Helpers to instruct a waiting job with what response to
68 // deliver for the request we're handling.
69 void DeliverAppCachedResponse(const AppCacheEntry
& entry
, int64 cache_id
,
70 int64 group_id
, const GURL
& manifest_url
,
72 const GURL
& namespace_entry_url
);
73 void DeliverNetworkResponse();
74 void DeliverErrorResponse();
76 // Helper to retrieve a pointer to the storage object.
77 AppCacheStorage
* storage() const;
79 bool is_main_resource() const {
80 return IsMainResourceType(resource_type_
);
83 // Main-resource loading -------------------------------------
84 // Frame and SharedWorker main resources are handled here.
86 void MaybeLoadMainResource(net::URLRequest
* request
,
87 net::NetworkDelegate
* network_delegate
);
89 // AppCacheStorage::Delegate methods
90 void OnMainResponseFound(const GURL
& url
,
91 const AppCacheEntry
& entry
,
92 const GURL
& fallback_url
,
93 const AppCacheEntry
& fallback_entry
,
96 const GURL
& mainfest_url
) override
;
98 // Sub-resource loading -------------------------------------
99 // Dedicated worker and all manner of sub-resources are handled here.
101 void MaybeLoadSubResource(net::URLRequest
* request
,
102 net::NetworkDelegate
* network_delegate
);
103 void ContinueMaybeLoadSubResource();
105 // AppCacheHost::Observer override
106 void OnCacheSelectionComplete(AppCacheHost
* host
) override
;
108 // Data members -----------------------------------------------
110 // What host we're servicing a request for.
113 // Frame vs subresource vs sharedworker loads are somewhat different.
114 ResourceType resource_type_
;
116 // Subresource requests wait until after cache selection completes.
117 bool is_waiting_for_cache_selection_
;
119 // Info about the type of response we found for delivery.
120 // These are relevant for both main and subresource requests.
121 int64 found_group_id_
;
122 int64 found_cache_id_
;
123 AppCacheEntry found_entry_
;
124 AppCacheEntry found_fallback_entry_
;
125 GURL found_namespace_entry_url_
;
126 GURL found_manifest_url_
;
127 bool found_network_namespace_
;
129 // True if a cache entry this handler attempted to return was
130 // not found in the disk cache. Once set, the handler will take
131 // no action on all subsequent intercept opportunities, so the
132 // request and any redirects will be handled by the network library.
133 bool cache_entry_not_found_
;
135 // True if this->MaybeLoadResource(...) has been called in the past.
136 bool maybe_load_resource_executed_
;
138 // The job we use to deliver a response.
139 scoped_refptr
<AppCacheURLRequestJob
> job_
;
141 // During a cross site navigation, we transfer ownership the AppcacheHost
142 // from the old processes structures over to the new structures.
143 scoped_ptr
<AppCacheHost
> host_for_cross_site_transfer_
;
145 friend class content::AppCacheRequestHandlerTest
;
146 DISALLOW_COPY_AND_ASSIGN(AppCacheRequestHandler
);
149 } // namespace content
151 #endif // CONTENT_BROWSER_APPCACHE_APPCACHE_REQUEST_HANDLER_H_