blob: 4c11cca13dab8bea58e767a7ea57a144e346b914 [file] [log] [blame]
// Copyright 2017 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 CHROMEOS_COMPONENTS_TETHER_PERSISTENT_HOST_SCAN_CACHE_IMPL_H_
#define CHROMEOS_COMPONENTS_TETHER_PERSISTENT_HOST_SCAN_CACHE_IMPL_H_
#include <string>
#include <unordered_map>
#include <unordered_set>
#include "base/macros.h"
#include "base/values.h"
#include "chromeos/components/tether/persistent_host_scan_cache.h"
class PrefRegistrySimple;
class PrefService;
namespace chromeos {
namespace tether {
// HostScanCache implementation which stores scan results in persistent user
// prefs.
class PersistentHostScanCacheImpl : public PersistentHostScanCache {
public:
// Registers the prefs used by this class to the given |registry|.
static void RegisterPrefs(PrefRegistrySimple* registry);
PersistentHostScanCacheImpl(PrefService* pref_service);
~PersistentHostScanCacheImpl() override;
// HostScanCache:
void SetHostScanResult(const HostScanCacheEntry& entry) override;
bool ExistsInCache(const std::string& tether_network_guid) override;
std::unordered_set<std::string> GetTetherGuidsInCache() override;
bool DoesHostRequireSetup(const std::string& tether_network_guid) override;
// PersistentHostScanCache:
std::unordered_map<std::string, HostScanCacheEntry> GetStoredCacheEntries()
override;
protected:
bool RemoveHostScanResultImpl(
const std::string& tether_network_guid) override;
private:
void StoreCacheEntriesToPrefs(
const std::unordered_map<std::string, HostScanCacheEntry>& entries);
PrefService* pref_service_;
DISALLOW_COPY_AND_ASSIGN(PersistentHostScanCacheImpl);
};
} // namespace tether
} // namespace chromeos
#endif // CHROMEOS_COMPONENTS_TETHER_PERSISTENT_HOST_SCAN_CACHE_IMPL_H_