Android media: VideoFrame should not store so many sync points.
[chromium-blink-merge.git] / content / browser / appcache / appcache_host.h
blob2201c8cbb1c9f1add90216b9b1c8fa6106d92dcb
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_HOST_H_
6 #define CONTENT_BROWSER_APPCACHE_APPCACHE_HOST_H_
8 #include "base/callback.h"
9 #include "base/gtest_prod_util.h"
10 #include "base/memory/ref_counted.h"
11 #include "base/observer_list.h"
12 #include "content/browser/appcache/appcache_group.h"
13 #include "content/browser/appcache/appcache_service_impl.h"
14 #include "content/browser/appcache/appcache_storage.h"
15 #include "content/common/appcache_interfaces.h"
16 #include "content/common/content_export.h"
17 #include "content/public/common/resource_type.h"
18 #include "url/gurl.h"
20 namespace net {
21 class URLRequest;
22 } // namespace net
24 namespace content {
25 FORWARD_DECLARE_TEST(AppCacheGroupTest, CleanupUnusedGroup);
26 FORWARD_DECLARE_TEST(AppCacheGroupTest, QueueUpdate);
27 FORWARD_DECLARE_TEST(AppCacheHostTest, Basic);
28 FORWARD_DECLARE_TEST(AppCacheHostTest, SelectNoCache);
29 FORWARD_DECLARE_TEST(AppCacheHostTest, ForeignEntry);
30 FORWARD_DECLARE_TEST(AppCacheHostTest, FailedCacheLoad);
31 FORWARD_DECLARE_TEST(AppCacheHostTest, FailedGroupLoad);
32 FORWARD_DECLARE_TEST(AppCacheHostTest, SetSwappableCache);
33 FORWARD_DECLARE_TEST(AppCacheHostTest, ForDedicatedWorker);
34 FORWARD_DECLARE_TEST(AppCacheHostTest, SelectCacheAllowed);
35 FORWARD_DECLARE_TEST(AppCacheHostTest, SelectCacheBlocked);
36 FORWARD_DECLARE_TEST(AppCacheTest, CleanupUnusedCache);
37 class AppCache;
38 class AppCacheFrontend;
39 class AppCacheGroupTest;
40 class AppCacheHostTest;
41 class AppCacheRequestHandler;
42 class AppCacheRequestHandlerTest;
43 class AppCacheStorageImplTest;
44 class AppCacheTest;
45 class AppCacheUpdateJobTest;
47 typedef base::Callback<void(AppCacheStatus, void*)> GetStatusCallback;
48 typedef base::Callback<void(bool, void*)> StartUpdateCallback;
49 typedef base::Callback<void(bool, void*)> SwapCacheCallback;
51 // Server-side representation of an application cache host.
52 class CONTENT_EXPORT AppCacheHost
53 : public AppCacheStorage::Delegate,
54 public AppCacheGroup::UpdateObserver,
55 public AppCacheServiceImpl::Observer {
56 public:
58 class CONTENT_EXPORT Observer {
59 public:
60 // Called just after the cache selection algorithm completes.
61 virtual void OnCacheSelectionComplete(AppCacheHost* host) = 0;
63 // Called just prior to the instance being deleted.
64 virtual void OnDestructionImminent(AppCacheHost* host) = 0;
66 virtual ~Observer() {}
69 AppCacheHost(int host_id, AppCacheFrontend* frontend,
70 AppCacheServiceImpl* service);
71 virtual ~AppCacheHost();
73 // Adds/removes an observer, the AppCacheHost does not take
74 // ownership of the observer.
75 void AddObserver(Observer* observer);
76 void RemoveObserver(Observer* observer);
78 // Support for cache selection and scriptable method calls.
79 void SelectCache(const GURL& document_url,
80 const int64 cache_document_was_loaded_from,
81 const GURL& manifest_url);
82 void SelectCacheForWorker(int parent_process_id,
83 int parent_host_id);
84 void SelectCacheForSharedWorker(int64 appcache_id);
85 void MarkAsForeignEntry(const GURL& document_url,
86 int64 cache_document_was_loaded_from);
87 void GetStatusWithCallback(const GetStatusCallback& callback,
88 void* callback_param);
89 void StartUpdateWithCallback(const StartUpdateCallback& callback,
90 void* callback_param);
91 void SwapCacheWithCallback(const SwapCacheCallback& callback,
92 void* callback_param);
94 // Called prior to the main resource load. When the system contains multiple
95 // candidates for a main resource load, the appcache preferred by the host
96 // that created this host is used to break ties.
97 void SetSpawningHostId(int spawning_process_id, int spawning_host_id);
99 // May return NULL if the spawning host context has been closed, or if a
100 // spawning host context was never identified.
101 const AppCacheHost* GetSpawningHost() const;
103 const GURL& preferred_manifest_url() const {
104 return preferred_manifest_url_;
106 void set_preferred_manifest_url(const GURL& url) {
107 preferred_manifest_url_ = url;
110 // Support for loading resources out of the appcache.
111 // May return NULL if the request isn't subject to retrieval from an appache.
112 AppCacheRequestHandler* CreateRequestHandler(
113 net::URLRequest* request, ResourceType::Type resource_type);
115 // Support for devtools inspecting appcache resources.
116 void GetResourceList(std::vector<AppCacheResourceInfo>* resource_infos);
118 // Breaks any existing association between this host and a cache.
119 // 'manifest_url' is sent to DevTools as the manifest url that could have
120 // been associated before or could be associated later with this host.
121 // Associations are broken either thru the cache selection algorithm
122 // implemented in this class, or by the update algorithm (see
123 // AppCacheUpdateJob).
124 void AssociateNoCache(const GURL& manifest_url);
126 // Establishes an association between this host and an incomplete cache.
127 // 'manifest_url' is manifest url of the cache group being updated.
128 // Associations with incomplete caches are established by the update algorithm
129 // (see AppCacheUpdateJob).
130 void AssociateIncompleteCache(AppCache* cache, const GURL& manifest_url);
132 // Establishes an association between this host and a complete cache.
133 // Associations with complete caches are established either thru the cache
134 // selection algorithm implemented (in this class), or by the update algorithm
135 // (see AppCacheUpdateJob).
136 void AssociateCompleteCache(AppCache* cache);
138 // Adds a reference to the newest complete cache in a group, unless it's the
139 // same as the cache that is currently associated with the host.
140 void SetSwappableCache(AppCacheGroup* group);
142 // Used to ensure that a loaded appcache survives a frame navigation.
143 void LoadMainResourceCache(int64 cache_id);
145 // Used to notify the host that a namespace resource is being delivered as
146 // the main resource of the page and to provide its url.
147 void NotifyMainResourceIsNamespaceEntry(const GURL& namespace_entry_url);
149 // Used to notify the host that the main resource was blocked by a policy. To
150 // work properly, this method needs to by invoked prior to cache selection.
151 void NotifyMainResourceBlocked(const GURL& manifest_url);
153 // Used by the update job to keep track of which hosts are associated
154 // with which pending master entries.
155 const GURL& pending_master_entry_url() const {
156 return new_master_entry_url_;
159 int host_id() const { return host_id_; }
160 AppCacheServiceImpl* service() const { return service_; }
161 AppCacheStorage* storage() const { return storage_; }
162 AppCacheFrontend* frontend() const { return frontend_; }
163 AppCache* associated_cache() const { return associated_cache_.get(); }
165 bool is_selection_pending() const {
166 return pending_selected_cache_id_ != kAppCacheNoCacheId ||
167 !pending_selected_manifest_url_.is_empty();
170 const GURL& first_party_url() const { return first_party_url_; }
172 // Methods to support cross site navigations.
173 void PrepareForTransfer();
174 void CompleteTransfer(int host_id, AppCacheFrontend* frontend);
176 private:
177 friend class content::AppCacheHostTest;
178 friend class content::AppCacheStorageImplTest;
179 friend class content::AppCacheRequestHandlerTest;
180 friend class content::AppCacheUpdateJobTest;
182 AppCacheStatus GetStatus();
183 void LoadSelectedCache(int64 cache_id);
184 void LoadOrCreateGroup(const GURL& manifest_url);
186 // See public Associate*Host() methods above.
187 void AssociateCacheHelper(AppCache* cache, const GURL& manifest_url);
189 // AppCacheStorage::Delegate impl
190 virtual void OnCacheLoaded(AppCache* cache, int64 cache_id) OVERRIDE;
191 virtual void OnGroupLoaded(AppCacheGroup* group,
192 const GURL& manifest_url) OVERRIDE;
193 // AppCacheServiceImpl::Observer impl
194 virtual void OnServiceReinitialized(
195 AppCacheStorageReference* old_storage_ref) OVERRIDE;
197 void FinishCacheSelection(AppCache* cache, AppCacheGroup* group);
198 void DoPendingGetStatus();
199 void DoPendingStartUpdate();
200 void DoPendingSwapCache();
202 void ObserveGroupBeingUpdated(AppCacheGroup* group);
204 // AppCacheGroup::UpdateObserver methods.
205 virtual void OnUpdateComplete(AppCacheGroup* group) OVERRIDE;
207 // Returns true if this host is for a dedicated worker context.
208 bool is_for_dedicated_worker() const {
209 return parent_host_id_ != kAppCacheNoHostId;
212 // Returns the parent context's host instance. This is only valid
213 // to call when this instance is_for_dedicated_worker.
214 AppCacheHost* GetParentAppCacheHost() const;
216 // Identifies the corresponding appcache host in the child process.
217 int host_id_;
219 // Information about the host that created this one; the manifest
220 // preferred by our creator influences which cache our main resource
221 // should be loaded from.
222 int spawning_host_id_;
223 int spawning_process_id_;
224 GURL preferred_manifest_url_;
226 // Hosts for dedicated workers are special cased to shunt
227 // request handling off to the dedicated worker's parent.
228 // The scriptable api is not accessible in dedicated workers
229 // so the other aspects of this class are not relevant for
230 // these special case instances.
231 int parent_host_id_;
232 int parent_process_id_;
234 // Defined prior to refs to AppCaches and Groups because destruction
235 // order matters, the disabled_storage_reference_ must outlive those
236 // objects. See additional comments for the storage_ member.
237 scoped_refptr<AppCacheStorageReference> disabled_storage_reference_;
239 // The cache associated with this host, if any.
240 scoped_refptr<AppCache> associated_cache_;
242 // Hold a reference to the newest complete cache (if associated cache is
243 // not the newest) to keep the newest cache in existence while the app cache
244 // group is in use. The newest complete cache may have no associated hosts
245 // holding any references to it and would otherwise be deleted prematurely.
246 scoped_refptr<AppCache> swappable_cache_;
248 // Keep a reference to the group being updated until the update completes.
249 scoped_refptr<AppCacheGroup> group_being_updated_;
251 // Similarly, keep a reference to the newest cache of the group until the
252 // update completes. When adding a new master entry to a cache that is not
253 // in use in any other host, this reference keeps the cache in memory.
254 scoped_refptr<AppCache> newest_cache_of_group_being_updated_;
256 // Keep a reference to the cache of the main resource so it survives frame
257 // navigations.
258 scoped_refptr<AppCache> main_resource_cache_;
259 int64 pending_main_resource_cache_id_;
261 // Cache loading is async, if we're loading a specific cache or group
262 // for the purposes of cache selection, one or the other of these will
263 // indicate which cache or group is being loaded.
264 int64 pending_selected_cache_id_;
265 GURL pending_selected_manifest_url_;
267 // A new master entry to be added to the cache, may be empty.
268 GURL new_master_entry_url_;
270 // The frontend proxy to deliver notifications to the child process.
271 AppCacheFrontend* frontend_;
273 // Our central service object.
274 AppCacheServiceImpl* service_;
276 // And the equally central storage object, with a twist. In some error
277 // conditions the storage object gets recreated and reinitialized. The
278 // disabled_storage_reference_ (defined earlier) allows for cleanup of an
279 // instance that got disabled after we had latched onto it. In normal
280 // circumstances, disabled_storage_reference_ is expected to be NULL.
281 // When non-NULL both storage_ and disabled_storage_reference_ refer to the
282 // same instance.
283 AppCacheStorage* storage_;
285 // Since these are synchronous scriptable API calls in the client, there can
286 // only be one type of callback pending. Also, we have to wait until we have a
287 // cache selection prior to responding to these calls, as cache selection
288 // involves async loading of a cache or a group from storage.
289 GetStatusCallback pending_get_status_callback_;
290 StartUpdateCallback pending_start_update_callback_;
291 SwapCacheCallback pending_swap_cache_callback_;
292 void* pending_callback_param_;
294 // True if an intercept or fallback namespace resource was
295 // delivered as the main resource.
296 bool main_resource_was_namespace_entry_;
297 GURL namespace_entry_url_;
299 // True if requests for this host were blocked by a policy.
300 bool main_resource_blocked_;
301 GURL blocked_manifest_url_;
303 // Tells if info about associated cache is pending. Info is pending
304 // when update job has not returned success yet.
305 bool associated_cache_info_pending_;
307 // List of objects observing us.
308 ObserverList<Observer> observers_;
310 // Used to inform the QuotaManager of what origins are currently in use.
311 GURL origin_in_use_;
313 // First party url to be used in policy checks.
314 GURL first_party_url_;
316 FRIEND_TEST_ALL_PREFIXES(content::AppCacheGroupTest, CleanupUnusedGroup);
317 FRIEND_TEST_ALL_PREFIXES(content::AppCacheGroupTest, QueueUpdate);
318 FRIEND_TEST_ALL_PREFIXES(content::AppCacheHostTest, Basic);
319 FRIEND_TEST_ALL_PREFIXES(content::AppCacheHostTest, SelectNoCache);
320 FRIEND_TEST_ALL_PREFIXES(content::AppCacheHostTest, ForeignEntry);
321 FRIEND_TEST_ALL_PREFIXES(content::AppCacheHostTest, FailedCacheLoad);
322 FRIEND_TEST_ALL_PREFIXES(content::AppCacheHostTest, FailedGroupLoad);
323 FRIEND_TEST_ALL_PREFIXES(content::AppCacheHostTest, SetSwappableCache);
324 FRIEND_TEST_ALL_PREFIXES(content::AppCacheHostTest, ForDedicatedWorker);
325 FRIEND_TEST_ALL_PREFIXES(content::AppCacheHostTest, SelectCacheAllowed);
326 FRIEND_TEST_ALL_PREFIXES(content::AppCacheHostTest, SelectCacheBlocked);
327 FRIEND_TEST_ALL_PREFIXES(content::AppCacheTest, CleanupUnusedCache);
329 DISALLOW_COPY_AND_ASSIGN(AppCacheHost);
332 } // namespace content
334 #endif // CONTENT_BROWSER_APPCACHE_APPCACHE_HOST_H_