1 // Copyright 2013 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 COMPONENTS_DRIVE_DRIVE_NOTIFICATION_MANAGER_H_
6 #define COMPONENTS_DRIVE_DRIVE_NOTIFICATION_MANAGER_H_
8 #include "base/memory/weak_ptr.h"
9 #include "base/observer_list.h"
10 #include "base/timer/timer.h"
11 #include "components/drive/drive_notification_observer.h"
12 #include "components/invalidation/public/invalidation_handler.h"
13 #include "components/keyed_service/core/keyed_service.h"
15 class ProfileSyncService
;
17 namespace invalidation
{
18 class InvalidationService
;
23 // Informs observers when they should check Google Drive for updates.
24 // Conditions under which updates should be searched:
25 // 1. XMPP invalidation is received from Google Drive.
26 // 2. Polling timer counts down.
27 class DriveNotificationManager
: public KeyedService
,
28 public syncer::InvalidationHandler
{
30 explicit DriveNotificationManager(
31 invalidation::InvalidationService
* invalidation_service
);
32 ~DriveNotificationManager() override
;
34 // KeyedService override.
35 void Shutdown() override
;
37 // syncer::InvalidationHandler implementation.
38 void OnInvalidatorStateChange(syncer::InvalidatorState state
) override
;
39 void OnIncomingInvalidation(
40 const syncer::ObjectIdInvalidationMap
& invalidation_map
) override
;
41 std::string
GetOwnerName() const override
;
43 void AddObserver(DriveNotificationObserver
* observer
);
44 void RemoveObserver(DriveNotificationObserver
* observer
);
46 // True when XMPP notification is currently enabled.
47 bool push_notification_enabled() const {
48 return push_notification_enabled_
;
51 // True when XMPP notification has been registered.
52 bool push_notification_registered() const {
53 return push_notification_registered_
;
57 enum NotificationSource
{
62 // Restarts the polling timer. Used for polling-based notification.
63 void RestartPollingTimer();
65 // Notifies the observers that it's time to check for updates.
66 // |source| indicates where the notification comes from.
67 void NotifyObserversToUpdate(NotificationSource source
);
69 // Registers for Google Drive invalidation notifications through XMPP.
70 void RegisterDriveNotifications();
72 // Returns a string representation of NotificationSource.
73 static std::string
NotificationSourceToString(NotificationSource source
);
75 invalidation::InvalidationService
* invalidation_service_
;
76 base::ObserverList
<DriveNotificationObserver
> observers_
;
78 // True when Drive File Sync Service is registered for Drive notifications.
79 bool push_notification_registered_
;
80 // True if the XMPP-based push notification is currently enabled.
81 bool push_notification_enabled_
;
82 // True once observers are notified for the first time.
83 bool observers_notified_
;
85 // The timer is used for polling based notification. XMPP should usually be
86 // used but notification is done per polling when XMPP is not working.
87 base::Timer polling_timer_
;
89 // Note: This should remain the last member so it'll be destroyed and
90 // invalidate its weak pointers before any other members are destroyed.
91 base::WeakPtrFactory
<DriveNotificationManager
> weak_ptr_factory_
;
93 DISALLOW_COPY_AND_ASSIGN(DriveNotificationManager
);
98 #endif // COMPONENTS_DRIVE_DRIVE_NOTIFICATION_MANAGER_H_