OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 // A simple wrapper around invalidation::InvalidationClient that | 5 // A simple wrapper around invalidation::InvalidationClient that |
6 // handles all the startup/shutdown details and hookups. | 6 // handles all the startup/shutdown details and hookups. |
7 | 7 |
8 #ifndef SYNC_NOTIFIER_SYNC_INVALIDATION_LISTENER_H_ | 8 #ifndef SYNC_NOTIFIER_SYNC_INVALIDATION_LISTENER_H_ |
9 #define SYNC_NOTIFIER_SYNC_INVALIDATION_LISTENER_H_ | 9 #define SYNC_NOTIFIER_SYNC_INVALIDATION_LISTENER_H_ |
10 | 10 |
11 #include <string> | 11 #include <string> |
12 | 12 |
13 #include "base/basictypes.h" | 13 #include "base/basictypes.h" |
14 #include "base/callback_forward.h" | 14 #include "base/callback_forward.h" |
15 #include "base/compiler_specific.h" | 15 #include "base/compiler_specific.h" |
16 #include "base/memory/scoped_ptr.h" | 16 #include "base/memory/scoped_ptr.h" |
17 #include "base/memory/weak_ptr.h" | 17 #include "base/memory/weak_ptr.h" |
18 #include "base/threading/non_thread_safe.h" | 18 #include "base/threading/non_thread_safe.h" |
19 #include "google/cacheinvalidation/include/invalidation-listener.h" | 19 #include "google/cacheinvalidation/include/invalidation-listener.h" |
20 #include "jingle/notifier/listener/push_client_observer.h" | 20 #include "jingle/notifier/listener/push_client_observer.h" |
21 #include "sync/internal_api/public/util/weak_handle.h" | 21 #include "sync/internal_api/public/util/weak_handle.h" |
22 #include "sync/notifier/invalidation_state_tracker.h" | 22 #include "sync/notifier/invalidation_state_tracker.h" |
23 #include "sync/notifier/invalidator_state.h" | 23 #include "sync/notifier/invalidator_state.h" |
24 #include "sync/notifier/object_id_state_map.h" | 24 #include "sync/notifier/object_id_invalidation_map.h" |
25 #include "sync/notifier/state_writer.h" | 25 #include "sync/notifier/state_writer.h" |
26 #include "sync/notifier/sync_system_resources.h" | 26 #include "sync/notifier/sync_system_resources.h" |
27 | 27 |
28 namespace buzz { | 28 namespace buzz { |
29 class XmppTaskParentInterface; | 29 class XmppTaskParentInterface; |
30 } // namespace buzz | 30 } // namespace buzz |
31 | 31 |
32 namespace notifier { | 32 namespace notifier { |
33 class PushClient; | 33 class PushClient; |
34 } // namespace notifier | 34 } // namespace notifier |
(...skipping 14 matching lines...) Expand all Loading... |
49 invalidation::SystemResources*, | 49 invalidation::SystemResources*, |
50 int, | 50 int, |
51 const invalidation::string&, | 51 const invalidation::string&, |
52 const invalidation::string&, | 52 const invalidation::string&, |
53 invalidation::InvalidationListener*)> CreateInvalidationClientCallback; | 53 invalidation::InvalidationListener*)> CreateInvalidationClientCallback; |
54 | 54 |
55 class Delegate { | 55 class Delegate { |
56 public: | 56 public: |
57 virtual ~Delegate(); | 57 virtual ~Delegate(); |
58 | 58 |
59 virtual void OnInvalidate(const ObjectIdStateMap& id_state_map) = 0; | 59 virtual void OnInvalidate( |
| 60 const ObjectIdInvalidationMap& invalidation_map) = 0; |
60 | 61 |
61 virtual void OnInvalidatorStateChange(InvalidatorState state) = 0; | 62 virtual void OnInvalidatorStateChange(InvalidatorState state) = 0; |
62 }; | 63 }; |
63 | 64 |
64 explicit SyncInvalidationListener( | 65 explicit SyncInvalidationListener( |
65 scoped_ptr<notifier::PushClient> push_client); | 66 scoped_ptr<notifier::PushClient> push_client); |
66 | 67 |
67 // Calls Stop(). | 68 // Calls Stop(). |
68 virtual ~SyncInvalidationListener(); | 69 virtual ~SyncInvalidationListener(); |
69 | 70 |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
129 | 130 |
130 void DoRegistrationUpdate(); | 131 void DoRegistrationUpdate(); |
131 | 132 |
132 private: | 133 private: |
133 void Stop(); | 134 void Stop(); |
134 | 135 |
135 InvalidatorState GetState() const; | 136 InvalidatorState GetState() const; |
136 | 137 |
137 void EmitStateChange(); | 138 void EmitStateChange(); |
138 | 139 |
139 void EmitInvalidation(const ObjectIdStateMap& id_state_map); | 140 void EmitInvalidation(const ObjectIdInvalidationMap& invalidation_map); |
140 | 141 |
141 // Owned by |sync_system_resources_|. | 142 // Owned by |sync_system_resources_|. |
142 notifier::PushClient* const push_client_; | 143 notifier::PushClient* const push_client_; |
143 SyncSystemResources sync_system_resources_; | 144 SyncSystemResources sync_system_resources_; |
144 InvalidationVersionMap max_invalidation_versions_; | 145 InvalidationVersionMap max_invalidation_versions_; |
145 WeakHandle<InvalidationStateTracker> invalidation_state_tracker_; | 146 WeakHandle<InvalidationStateTracker> invalidation_state_tracker_; |
146 Delegate* delegate_; | 147 Delegate* delegate_; |
147 scoped_ptr<invalidation::InvalidationClient> invalidation_client_; | 148 scoped_ptr<invalidation::InvalidationClient> invalidation_client_; |
148 scoped_ptr<RegistrationManager> registration_manager_; | 149 scoped_ptr<RegistrationManager> registration_manager_; |
149 // Stored to pass to |registration_manager_| on start. | 150 // Stored to pass to |registration_manager_| on start. |
150 ObjectIdSet registered_ids_; | 151 ObjectIdSet registered_ids_; |
151 | 152 |
152 // The states of the ticl and the push client. | 153 // The states of the ticl and the push client. |
153 InvalidatorState ticl_state_; | 154 InvalidatorState ticl_state_; |
154 InvalidatorState push_client_state_; | 155 InvalidatorState push_client_state_; |
155 | 156 |
156 DISALLOW_COPY_AND_ASSIGN(SyncInvalidationListener); | 157 DISALLOW_COPY_AND_ASSIGN(SyncInvalidationListener); |
157 }; | 158 }; |
158 | 159 |
159 } // namespace syncer | 160 } // namespace syncer |
160 | 161 |
161 #endif // SYNC_NOTIFIER_SYNC_INVALIDATION_LISTENER_H_ | 162 #endif // SYNC_NOTIFIER_SYNC_INVALIDATION_LISTENER_H_ |
OLD | NEW |