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_HOST_H_ | 5 #ifndef WEBKIT_APPCACHE_APPCACHE_HOST_H_ |
6 #define WEBKIT_APPCACHE_APPCACHE_HOST_H_ | 6 #define WEBKIT_APPCACHE_APPCACHE_HOST_H_ |
7 | 7 |
| 8 #include "base/observer_list.h" |
8 #include "base/ref_counted.h" | 9 #include "base/ref_counted.h" |
9 #include "base/task.h" | 10 #include "base/task.h" |
10 #include "base/weak_ptr.h" | 11 #include "base/weak_ptr.h" |
11 #include "googleurl/src/gurl.h" | 12 #include "googleurl/src/gurl.h" |
12 #include "testing/gtest/include/gtest/gtest_prod.h" | 13 #include "testing/gtest/include/gtest/gtest_prod.h" |
13 #include "webkit/appcache/appcache.h" | 14 #include "webkit/appcache/appcache.h" |
14 #include "webkit/appcache/appcache_interfaces.h" | 15 #include "webkit/appcache/appcache_interfaces.h" |
15 #include "webkit/appcache/appcache_service.h" | 16 #include "webkit/appcache/appcache_service.h" |
16 | 17 |
17 class URLRequest; | 18 class URLRequest; |
18 | 19 |
19 namespace appcache { | 20 namespace appcache { |
20 | 21 |
21 class AppCache; | 22 class AppCache; |
22 class AppCacheFrontend; | 23 class AppCacheFrontend; |
23 class AppCacheGroup; | 24 class AppCacheGroup; |
24 class AppCacheRequestHandler; | 25 class AppCacheRequestHandler; |
25 | 26 |
26 typedef Callback2<Status, void*>::Type GetStatusCallback; | 27 typedef Callback2<Status, void*>::Type GetStatusCallback; |
27 typedef Callback2<bool, void*>::Type StartUpdateCallback; | 28 typedef Callback2<bool, void*>::Type StartUpdateCallback; |
28 typedef Callback2<bool, void*>::Type SwapCacheCallback; | 29 typedef Callback2<bool, void*>::Type SwapCacheCallback; |
29 | 30 |
30 // Server-side representation of an application cache host. | 31 // Server-side representation of an application cache host. |
31 class AppCacheHost : public base::SupportsWeakPtr<AppCacheHost>, | 32 class AppCacheHost : public base::SupportsWeakPtr<AppCacheHost>, |
32 public AppCacheService::LoadClient { | 33 public AppCacheService::LoadClient { |
33 public: | 34 public: |
| 35 |
| 36 class Observer { |
| 37 public: |
| 38 // Called just after the cache selection algorithm completes. |
| 39 virtual void OnCacheSelectionComplete(AppCacheHost* host) = 0; |
| 40 |
| 41 // Called just prior to the instance being deleted. |
| 42 virtual void OnDestructionImminent(AppCacheHost* host) = 0; |
| 43 |
| 44 virtual ~Observer() {} |
| 45 }; |
| 46 |
34 AppCacheHost(int host_id, AppCacheFrontend* frontend, | 47 AppCacheHost(int host_id, AppCacheFrontend* frontend, |
35 AppCacheService* service); | 48 AppCacheService* service); |
36 ~AppCacheHost(); | 49 ~AppCacheHost(); |
37 | 50 |
| 51 // Adds/removes an observer, the AppCacheHost does not take |
| 52 // ownership of the observer. |
| 53 void AddObserver(Observer* observer); |
| 54 void RemoveObserver(Observer* observer); |
| 55 |
38 // Support for cache selection and scriptable method calls. | 56 // Support for cache selection and scriptable method calls. |
39 void SelectCache(const GURL& document_url, | 57 void SelectCache(const GURL& document_url, |
40 const int64 cache_document_was_loaded_from, | 58 const int64 cache_document_was_loaded_from, |
41 const GURL& manifest_url); | 59 const GURL& manifest_url); |
42 void MarkAsForeignEntry(const GURL& document_url, | 60 void MarkAsForeignEntry(const GURL& document_url, |
43 int64 cache_document_was_loaded_from); | 61 int64 cache_document_was_loaded_from); |
44 void GetStatusWithCallback(GetStatusCallback* callback, | 62 void GetStatusWithCallback(GetStatusCallback* callback, |
45 void* callback_param); | 63 void* callback_param); |
46 void StartUpdateWithCallback(StartUpdateCallback* callback, | 64 void StartUpdateWithCallback(StartUpdateCallback* callback, |
47 void* callback_param); | 65 void* callback_param); |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
111 // Since these are synchronous scriptable api calls in the client, | 129 // Since these are synchronous scriptable api calls in the client, |
112 // there can only be one type of callback pending. | 130 // there can only be one type of callback pending. |
113 // Also, we have to wait until we have a cache selection prior | 131 // Also, we have to wait until we have a cache selection prior |
114 // to responding to these calls, as cache selection involves | 132 // to responding to these calls, as cache selection involves |
115 // async loading of a cache or a group from storage. | 133 // async loading of a cache or a group from storage. |
116 GetStatusCallback* pending_get_status_callback_; | 134 GetStatusCallback* pending_get_status_callback_; |
117 StartUpdateCallback* pending_start_update_callback_; | 135 StartUpdateCallback* pending_start_update_callback_; |
118 SwapCacheCallback* pending_swap_cache_callback_; | 136 SwapCacheCallback* pending_swap_cache_callback_; |
119 void* pending_callback_param_; | 137 void* pending_callback_param_; |
120 | 138 |
| 139 // List of objects observing us. |
| 140 ObserverList<Observer> observers_; |
| 141 |
121 FRIEND_TEST(AppCacheTest, CleanupUnusedCache); | 142 FRIEND_TEST(AppCacheTest, CleanupUnusedCache); |
122 FRIEND_TEST(AppCacheGroupTest, CleanupUnusedGroup); | 143 FRIEND_TEST(AppCacheGroupTest, CleanupUnusedGroup); |
123 FRIEND_TEST(AppCacheHostTest, Basic); | 144 FRIEND_TEST(AppCacheHostTest, Basic); |
124 FRIEND_TEST(AppCacheHostTest, SelectNoCache); | 145 FRIEND_TEST(AppCacheHostTest, SelectNoCache); |
125 FRIEND_TEST(AppCacheHostTest, ForeignEntry); | 146 FRIEND_TEST(AppCacheHostTest, ForeignEntry); |
126 FRIEND_TEST(AppCacheHostTest, FailedCacheLoad); | 147 FRIEND_TEST(AppCacheHostTest, FailedCacheLoad); |
127 FRIEND_TEST(AppCacheHostTest, FailedGroupLoad); | 148 FRIEND_TEST(AppCacheHostTest, FailedGroupLoad); |
128 DISALLOW_COPY_AND_ASSIGN(AppCacheHost); | 149 DISALLOW_COPY_AND_ASSIGN(AppCacheHost); |
129 }; | 150 }; |
130 | 151 |
131 } // namespace appcache | 152 } // namespace appcache |
132 | 153 |
133 #endif // WEBKIT_APPCACHE_APPCACHE_HOST_H_ | 154 #endif // WEBKIT_APPCACHE_APPCACHE_HOST_H_ |
OLD | NEW |