Index: sync/notifier/sync_notifier_helper.h |
diff --git a/sync/notifier/sync_notifier_helper.h b/sync/notifier/sync_notifier_helper.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..b0900ecb62f06cbeaee9e775ad204229db9e5baf |
--- /dev/null |
+++ b/sync/notifier/sync_notifier_helper.h |
@@ -0,0 +1,53 @@ |
+// Copyright (c) 2012 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#ifndef SYNC_NOTIFIER_SYNC_NOTIFIER_HELPER_H_ |
+#define SYNC_NOTIFIER_SYNC_NOTIFIER_HELPER_H_ |
+ |
+#include <map> |
+ |
+#include "base/basictypes.h" |
+#include "base/observer_list.h" |
+#include "sync/notifier/invalidation_util.h" |
+#include "sync/notifier/object_id_payload_map.h" |
+#include "sync/notifier/sync_notifier_observer.h" |
+ |
+namespace syncer { |
+ |
+// A helper class for classes that want to implement the SyncNotifier interface. |
+// It helps keep track of registered handlers and which object ID registrations |
+// are associated with which handlers, so implementors can just reuse the logic |
+// here to dispatch invalidations and other interesting notifications. |
+class SyncNotifierHelper { |
+ public: |
+ SyncNotifierHelper(); |
+ |
akalin
2012/07/21 00:16:29
clang is complaining saying that you need an expli
dcheng
2012/07/21 00:20:15
Done.
|
+ // Updates the set of ObjectIds associated with a given |handler|. Passing an |
+ // empty ObjectIdSet will unregister |handler|. The return value is an |
+ // ObjectIdSet containing values for all existing handlers. |
+ ObjectIdSet UpdateRegisteredIds(SyncNotifierObserver* handler, |
+ const ObjectIdSet& ids); |
+ |
+ // Helper that sorts incoming invalidations into a bucket for each handler |
+ // and then dispatches the batched invalidations to the corresponding handler. |
+ void DispatchInvalidationsToHandlers(const ObjectIdPayloadMap& id_payloads, |
+ IncomingNotificationSource source); |
+ |
+ // Calls the given handler method for each handler that has registered IDs. |
+ void EmitOnNotificationsEnabled(); |
+ void EmitOnNotificationsDisabled(NotificationsDisabledReason reason); |
+ |
+ private: |
+ typedef std::map<invalidation::ObjectId, |
+ SyncNotifierObserver*, |
+ ObjectIdLessThan> ObjectIdHandlerMap; |
+ ObserverList<SyncNotifierObserver> handlers_; |
+ ObjectIdHandlerMap id_to_handler_map_; |
+ |
+ DISALLOW_COPY_AND_ASSIGN(SyncNotifierHelper); |
+}; |
+ |
+} // namespace syncer |
+ |
+#endif // SYNC_NOTIFIER_SYNC_NOTIFIER_HELPER_H_ |