summaryrefslogtreecommitdiff
path: root/chromium/services/device/geolocation/position_cache.h
blob: f9b526f617a3f2e34c25f9eff2bd9c26135a31e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
// Copyright 2018 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 SERVICES_DEVICE_GEOLOCATION_POSITION_CACHE_H_
#define SERVICES_DEVICE_GEOLOCATION_POSITION_CACHE_H_

namespace device {
namespace mojom {
class Geoposition;
}  // namespace mojom

struct WifiData;

// Cache of recently resolved locations, keyed by the set of unique WiFi APs
// used in the network query.
class PositionCache {
 public:
  virtual ~PositionCache() = default;

  // Caches the current position response for the current set of cell ID and
  // WiFi data. In the case of the cache exceeding an implementation-defined
  // maximum size this will evict old entries in FIFO orderer of being added.
  virtual void CachePosition(const WifiData& wifi_data,
                             const mojom::Geoposition& position) = 0;

  // Searches for a cached position response for the current set of data.
  // Returns nullptr if the position is not in the cache, or the cached
  // position if available. Ownership remains with the cache. Do not store
  // the pointer, treat it as an iterator into the cache's internals.
  virtual const mojom::Geoposition* FindPosition(
      const WifiData& wifi_data) const = 0;

  // Returns the number of cached position responses stored in the cache.
  virtual size_t GetPositionCacheSize() const = 0;

  // Returns most recently used position, or an invalid Geoposition if
  // SetLastUsedNetworkPosition wasn't called yet.
  virtual const mojom::Geoposition& GetLastUsedNetworkPosition() const = 0;

  // Stores the most recently used position.
  virtual void SetLastUsedNetworkPosition(
      const mojom::Geoposition& position) = 0;
};

}  // namespace device

#endif  // SERVICES_DEVICE_GEOLOCATION_POSITION_CACHE_H_