blob: e8b5a97317612adbb586f6668ec421d86e31b1ae [file] [log] [blame]
// Copyright 2014 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 COMPONENTS_SYNC_DEVICE_INFO_DEVICE_INFO_TRACKER_H_
#define COMPONENTS_SYNC_DEVICE_INFO_DEVICE_INFO_TRACKER_H_
#include <memory>
#include <string>
#include <vector>
#include "components/sync_device_info/device_info.h"
namespace syncer {
// Interface for tracking synced DeviceInfo. This excludes sync-ing clients that
// are not chromium-based.
class DeviceInfoTracker {
public:
virtual ~DeviceInfoTracker() {}
// Observer class for listening to device info changes.
class Observer {
public:
// Called on any change in the device info list. If sync is enabled, it is
// guaranteed that the method will be called at least once after browser
// startup. There are several possible cases:
// 1. The list has been changed during remote update (initial merge or
// incremental).
// 2. The list has been cleaned up when sync is stopped.
// 3. The local device info has been changed and committed to the server.
// 4. The list has been just loaded after browser startup from the
// persistent storage. If the list is empty (e.g. due to mismatching cache
// GUID or this is the first browser startup), it will be updated later
// during the initial merge.
virtual void OnDeviceInfoChange() = 0;
};
// Returns true when DeviceInfo datatype is enabled and syncing.
virtual bool IsSyncing() const = 0;
// Gets DeviceInfo the synced device with specified client ID.
// Returns an empty unique_ptr if device with the given |client_id| hasn't
// been synced.
virtual std::unique_ptr<DeviceInfo> GetDeviceInfo(
const std::string& client_id) const = 0;
// Gets DeviceInfo for all synced devices (including the local one).
virtual std::vector<std::unique_ptr<DeviceInfo>> GetAllDeviceInfo() const = 0;
// Registers an observer to be called on syncing any updated DeviceInfo.
virtual void AddObserver(Observer* observer) = 0;
// Unregisters an observer.
virtual void RemoveObserver(Observer* observer) = 0;
// Returns the count of active devices. Deduping logic may be used internally
// to prevent double counting for devices that disable sync and reenable it,
// but callers should nevertheless consider this an upper bound.
virtual int CountActiveDevices() const = 0;
// A function to to allow tests to ensure active devices. If called when the
// local device info provider is not initialized, will force update after
// initialization.
virtual void ForcePulseForTest() = 0;
// Returns if the provided |cache_guid| is the current device cache_guid for
// the current device or was of the recently used.
virtual bool IsRecentLocalCacheGuid(const std::string& cache_guid) const = 0;
};
} // namespace syncer
#endif // COMPONENTS_SYNC_DEVICE_INFO_DEVICE_INFO_TRACKER_H_