blob: 30b6285a6a3f1e8efa2ffd3e420ff75120355ad1 [file] [log] [blame]
miu@chromium.org39076642014-05-05 20:32:551// Copyright 2014 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.
4
blundell@chromium.org16a30912014-06-04 00:20:045#ifndef COMPONENTS_METRICS_METRICS_STATE_MANAGER_H_
6#define COMPONENTS_METRICS_METRICS_STATE_MANAGER_H_
miu@chromium.org39076642014-05-05 20:32:557
8#include <string>
9
10#include "base/basictypes.h"
isherman@chromium.org3c70256f2014-05-22 03:02:1211#include "base/callback.h"
miu@chromium.org39076642014-05-05 20:32:5512#include "base/gtest_prod_util.h"
gab@chromium.org8e885de2014-07-22 23:36:5313#include "base/macros.h"
miu@chromium.org39076642014-05-05 20:32:5514#include "base/memory/scoped_ptr.h"
15#include "base/metrics/field_trial.h"
gab@chromium.org8e885de2014-07-22 23:36:5316#include "components/metrics/client_info.h"
miu@chromium.org39076642014-05-05 20:32:5517
18class PrefService;
19class PrefRegistrySimple;
20
21namespace metrics {
22
23class ClonedInstallDetector;
24
25// Responsible for managing MetricsService state prefs, specifically the UMA
26// client id and low entropy source. Code outside the metrics directory should
27// not be instantiating or using this class directly.
28class MetricsStateManager {
29 public:
gab@chromium.org8e885de2014-07-22 23:36:5330 // A callback that can be invoked to store client info to persistent storage.
31 // Storing an empty client_id will resulted in the backup being voided.
32 typedef base::Callback<void(const ClientInfo& client_info)>
33 StoreClientInfoCallback;
34
35 // A callback that can be invoked to load client info stored through the
36 // StoreClientInfoCallback.
37 typedef base::Callback<scoped_ptr<ClientInfo>(void)> LoadClientInfoCallback;
38
miu@chromium.org39076642014-05-05 20:32:5539 virtual ~MetricsStateManager();
40
41 // Returns true if the user opted in to sending metric reports.
miu@chromium.org39076642014-05-05 20:32:5542 bool IsMetricsReportingEnabled();
43
44 // Returns the client ID for this client, or the empty string if the user is
45 // not opted in to metrics reporting.
46 const std::string& client_id() const { return client_id_; }
47
48 // Forces the client ID to be generated. This is useful in case it's needed
49 // before recording.
50 void ForceClientIdCreation();
51
52 // Checks if this install was cloned or imaged from another machine. If a
53 // clone is detected, resets the client id and low entropy source. This
54 // should not be called more than once.
blundell@chromium.org61b0d482014-05-20 14:49:1055 void CheckForClonedInstall(
56 scoped_refptr<base::SingleThreadTaskRunner> task_runner);
miu@chromium.org39076642014-05-05 20:32:5557
58 // Returns the preferred entropy provider used to seed persistent activities
59 // based on whether or not metrics reporting is permitted on this client.
60 //
61 // If metrics reporting is enabled, this method returns an entropy provider
62 // that has a high source of entropy, partially based on the client ID.
63 // Otherwise, it returns an entropy provider that is based on a low entropy
64 // source.
65 scoped_ptr<const base::FieldTrial::EntropyProvider> CreateEntropyProvider();
66
67 // Creates the MetricsStateManager, enforcing that only a single instance
68 // of the class exists at a time. Returns NULL if an instance exists already.
isherman@chromium.org3c70256f2014-05-22 03:02:1269 static scoped_ptr<MetricsStateManager> Create(
70 PrefService* local_state,
gab@chromium.org8e885de2014-07-22 23:36:5371 const base::Callback<bool(void)>& is_reporting_enabled_callback,
72 const StoreClientInfoCallback& store_client_info,
73 const LoadClientInfoCallback& load_client_info);
miu@chromium.org39076642014-05-05 20:32:5574
75 // Registers local state prefs used by this class.
76 static void RegisterPrefs(PrefRegistrySimple* registry);
77
78 private:
79 FRIEND_TEST_ALL_PREFIXES(MetricsStateManagerTest, EntropySourceUsed_Low);
80 FRIEND_TEST_ALL_PREFIXES(MetricsStateManagerTest, EntropySourceUsed_High);
81 FRIEND_TEST_ALL_PREFIXES(MetricsStateManagerTest, LowEntropySource0NotReset);
82 FRIEND_TEST_ALL_PREFIXES(MetricsStateManagerTest,
83 PermutedEntropyCacheClearedWhenLowEntropyReset);
84 FRIEND_TEST_ALL_PREFIXES(MetricsStateManagerTest, ResetMetricsIDs);
85
86 // Designates which entropy source was returned from this class.
87 // This is used for testing to validate that we return the correct source
88 // depending on the state of the service.
89 enum EntropySourceType {
90 ENTROPY_SOURCE_NONE,
91 ENTROPY_SOURCE_LOW,
92 ENTROPY_SOURCE_HIGH,
93 };
94
isherman@chromium.org3c70256f2014-05-22 03:02:1295 // Creates the MetricsStateManager with the given |local_state|. Calls
96 // |is_reporting_enabled_callback| to query whether metrics reporting is
gab@chromium.org8e885de2014-07-22 23:36:5397 // enabled. Clients should instead use Create(), which enforces that a single
98 // instance of this class be alive at any given time.
99 // |store_client_info| should back up client info to persistent storage such
100 // that it is later retrievable by |load_client_info|.
isherman@chromium.org3c70256f2014-05-22 03:02:12101 MetricsStateManager(
102 PrefService* local_state,
gab@chromium.org8e885de2014-07-22 23:36:53103 const base::Callback<bool(void)>& is_reporting_enabled_callback,
104 const StoreClientInfoCallback& store_client_info,
105 const LoadClientInfoCallback& load_client_info);
106
107 // Backs up the current client info via |store_client_info_|.
108 void BackUpCurrentClientInfo();
109
110 // Loads the client info via |load_client_info_| and potentially migrates it
111 // before returning it if it comes back in its old form.
112 scoped_ptr<ClientInfo> LoadClientInfoAndMaybeMigrate();
miu@chromium.org39076642014-05-05 20:32:55113
114 // Returns the low entropy source for this client. This is a random value
115 // that is non-identifying amongst browser clients. This method will
116 // generate the entropy source value if it has not been called before.
117 int GetLowEntropySource();
118
119 // Returns the first entropy source that was returned by this service since
120 // start up, or NONE if neither was returned yet. This is exposed for testing
121 // only.
122 EntropySourceType entropy_source_returned() const {
123 return entropy_source_returned_;
124 }
125
126 // Reset the client id and low entropy source if the kMetricsResetMetricIDs
127 // pref is true.
128 void ResetMetricsIDsIfNecessary();
129
130 // Whether an instance of this class exists. Used to enforce that there aren't
131 // multiple instances of this class at a given time.
132 static bool instance_exists_;
133
134 // Weak pointer to the local state prefs store.
isherman@chromium.org3c70256f2014-05-22 03:02:12135 PrefService* const local_state_;
136
gab@chromium.org8e885de2014-07-22 23:36:53137 // A callback run by this MetricsStateManager to know whether reporting is
138 // enabled.
isherman@chromium.org3c70256f2014-05-22 03:02:12139 const base::Callback<bool(void)> is_reporting_enabled_callback_;
miu@chromium.org39076642014-05-05 20:32:55140
gab@chromium.org8e885de2014-07-22 23:36:53141 // A callback run during client id creation so this MetricsStateManager can
142 // store a backup of the newly generated ID.
143 const StoreClientInfoCallback store_client_info_;
144
145 // A callback run if this MetricsStateManager can't get the client id from
146 // its typical location and wants to attempt loading it from this backup.
147 const LoadClientInfoCallback load_client_info_;
148
miu@chromium.org39076642014-05-05 20:32:55149 // The identifier that's sent to the server with the log reports.
150 std::string client_id_;
151
152 // The non-identifying low entropy source value.
153 int low_entropy_source_;
154
155 // The last entropy source returned by this service, used for testing.
156 EntropySourceType entropy_source_returned_;
157
158 scoped_ptr<ClonedInstallDetector> cloned_install_detector_;
159
160 DISALLOW_COPY_AND_ASSIGN(MetricsStateManager);
161};
162
163} // namespace metrics
164
blundell@chromium.org16a30912014-06-04 00:20:04165#endif // COMPONENTS_METRICS_METRICS_STATE_MANAGER_H_