| OLD | NEW |
| 1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 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 // An implementation of Invalidator that wraps an invalidation | 5 // An implementation of Invalidator that wraps an invalidation |
| 6 // client. Handles the details of connecting to XMPP and hooking it | 6 // client. Handles the details of connecting to XMPP and hooking it |
| 7 // up to the invalidation client. | 7 // up to the invalidation client. |
| 8 // | 8 // |
| 9 // You probably don't want to use this directly; use | 9 // You probably don't want to use this directly; use |
| 10 // NonBlockingInvalidator. | 10 // NonBlockingInvalidator. |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 #include "sync/notifier/invalidator_registrar.h" | 27 #include "sync/notifier/invalidator_registrar.h" |
| 28 #include "sync/notifier/sync_invalidation_listener.h" | 28 #include "sync/notifier/sync_invalidation_listener.h" |
| 29 | 29 |
| 30 namespace notifier { | 30 namespace notifier { |
| 31 class PushClient; | 31 class PushClient; |
| 32 } // namespace notifier | 32 } // namespace notifier |
| 33 | 33 |
| 34 namespace syncer { | 34 namespace syncer { |
| 35 | 35 |
| 36 // This class must live on the IO thread. | 36 // This class must live on the IO thread. |
| 37 // TODO(dcheng): Think of a name better than InvalidationInvalidator. | |
| 38 class SYNC_EXPORT_PRIVATE InvalidationNotifier | 37 class SYNC_EXPORT_PRIVATE InvalidationNotifier |
| 39 : public Invalidator, | 38 : public Invalidator, |
| 40 public SyncInvalidationListener::Delegate, | 39 public SyncInvalidationListener::Delegate, |
| 41 public base::NonThreadSafe { | 40 public base::NonThreadSafe { |
| 42 public: | 41 public: |
| 43 // |invalidation_state_tracker| must be initialized. | 42 // |invalidation_state_tracker| must be initialized. |
| 44 InvalidationNotifier( | 43 InvalidationNotifier( |
| 45 scoped_ptr<notifier::PushClient> push_client, | 44 scoped_ptr<notifier::PushClient> push_client, |
| 46 const std::string& invalidator_client_id, | 45 const std::string& invalidator_client_id, |
| 47 const InvalidationStateMap& initial_invalidation_state_map, | 46 const UnackedInvalidationStorageMap& saved_invalidations, |
| 48 const std::string& invalidation_bootstrap_data, | 47 const std::string& invalidation_bootstrap_data, |
| 49 const WeakHandle<InvalidationStateTracker>& | 48 const WeakHandle<InvalidationStateTracker>& |
| 50 invalidation_state_tracker, | 49 invalidation_state_tracker, |
| 51 const std::string& client_info); | 50 const std::string& client_info); |
| 52 | 51 |
| 53 virtual ~InvalidationNotifier(); | 52 virtual ~InvalidationNotifier(); |
| 54 | 53 |
| 55 // Invalidator implementation. | 54 // Invalidator implementation. |
| 56 virtual void RegisterHandler(InvalidationHandler* handler) OVERRIDE; | 55 virtual void RegisterHandler(InvalidationHandler* handler) OVERRIDE; |
| 57 virtual void UpdateRegisteredIds(InvalidationHandler* handler, | 56 virtual void UpdateRegisteredIds(InvalidationHandler* handler, |
| 58 const ObjectIdSet& ids) OVERRIDE; | 57 const ObjectIdSet& ids) OVERRIDE; |
| 59 virtual void UnregisterHandler(InvalidationHandler* handler) OVERRIDE; | 58 virtual void UnregisterHandler(InvalidationHandler* handler) OVERRIDE; |
| 60 virtual void Acknowledge(const invalidation::ObjectId& id, | |
| 61 const AckHandle& ack_handle) OVERRIDE; | |
| 62 virtual InvalidatorState GetInvalidatorState() const OVERRIDE; | 59 virtual InvalidatorState GetInvalidatorState() const OVERRIDE; |
| 63 virtual void UpdateCredentials( | 60 virtual void UpdateCredentials( |
| 64 const std::string& email, const std::string& token) OVERRIDE; | 61 const std::string& email, const std::string& token) OVERRIDE; |
| 65 | 62 |
| 66 // SyncInvalidationListener::Delegate implementation. | 63 // SyncInvalidationListener::Delegate implementation. |
| 67 virtual void OnInvalidate( | 64 virtual void OnInvalidate( |
| 68 const ObjectIdInvalidationMap& invalidation_map) OVERRIDE; | 65 const ObjectIdInvalidationMap& invalidation_map) OVERRIDE; |
| 69 virtual void OnInvalidatorStateChange(InvalidatorState state) OVERRIDE; | 66 virtual void OnInvalidatorStateChange(InvalidatorState state) OVERRIDE; |
| 70 | 67 |
| 71 private: | 68 private: |
| 72 // We start off in the STOPPED state. When we get our initial | 69 // We start off in the STOPPED state. When we get our initial |
| 73 // credentials, we connect and move to the CONNECTING state. When | 70 // credentials, we connect and move to the CONNECTING state. When |
| 74 // we're connected we start the invalidation client and move to the | 71 // we're connected we start the invalidation client and move to the |
| 75 // STARTED state. We never go back to a previous state. | 72 // STARTED state. We never go back to a previous state. |
| 76 enum State { | 73 enum State { |
| 77 STOPPED, | 74 STOPPED, |
| 78 CONNECTING, | 75 CONNECTING, |
| 79 STARTED | 76 STARTED |
| 80 }; | 77 }; |
| 81 State state_; | 78 State state_; |
| 82 | 79 |
| 83 InvalidatorRegistrar registrar_; | 80 InvalidatorRegistrar registrar_; |
| 84 | 81 |
| 85 // Passed to |invalidation_listener_|. | 82 // Passed to |invalidation_listener_|. |
| 86 const InvalidationStateMap initial_invalidation_state_map_; | 83 const UnackedInvalidationStorageMap saved_invalidations_; |
| 87 | 84 |
| 88 // Passed to |invalidation_listener_|. | 85 // Passed to |invalidation_listener_|. |
| 89 const WeakHandle<InvalidationStateTracker> | 86 const WeakHandle<InvalidationStateTracker> |
| 90 invalidation_state_tracker_; | 87 invalidation_state_tracker_; |
| 91 | 88 |
| 92 // Passed to |invalidation_listener_|. | 89 // Passed to |invalidation_listener_|. |
| 93 const std::string client_info_; | 90 const std::string client_info_; |
| 94 | 91 |
| 95 // The client ID to pass to |invalidation_listener_|. | 92 // The client ID to pass to |invalidation_listener_|. |
| 96 const std::string invalidator_client_id_; | 93 const std::string invalidator_client_id_; |
| 97 | 94 |
| 98 // The initial bootstrap data to pass to |invalidation_listener_|. | 95 // The initial bootstrap data to pass to |invalidation_listener_|. |
| 99 const std::string invalidation_bootstrap_data_; | 96 const std::string invalidation_bootstrap_data_; |
| 100 | 97 |
| 101 // TODO(akalin): Clean up this reference to DefaultTickClock. Ideally, we | |
| 102 // should simply be using TaskRunner's tick clock. See http://crbug.com/179211 | |
| 103 base::DefaultTickClock tick_clock_; | |
| 104 | |
| 105 // The invalidation listener. | 98 // The invalidation listener. |
| 106 SyncInvalidationListener invalidation_listener_; | 99 SyncInvalidationListener invalidation_listener_; |
| 107 | 100 |
| 108 DISALLOW_COPY_AND_ASSIGN(InvalidationNotifier); | 101 DISALLOW_COPY_AND_ASSIGN(InvalidationNotifier); |
| 109 }; | 102 }; |
| 110 | 103 |
| 111 } // namespace syncer | 104 } // namespace syncer |
| 112 | 105 |
| 113 #endif // SYNC_NOTIFIER_INVALIDATION_NOTIFIER_H_ | 106 #endif // SYNC_NOTIFIER_INVALIDATION_NOTIFIER_H_ |
| OLD | NEW |