Hook the WebThreadImplForMessageLoop up to post taks through the blink
[chromium-blink-merge.git] / components / rappor / rappor_service.h
blob7dd02cd4990090335a40f8add3c2d25797bd6b48
1 // 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.
5 #ifndef COMPONENTS_RAPPOR_RAPPOR_SERVICE_H_
6 #define COMPONENTS_RAPPOR_RAPPOR_SERVICE_H_
8 #include <map>
9 #include <string>
11 #include "base/basictypes.h"
12 #include "base/macros.h"
13 #include "base/memory/scoped_ptr.h"
14 #include "base/timer/timer.h"
15 #include "components/metrics/daily_event.h"
16 #include "components/rappor/rappor_parameters.h"
18 class PrefRegistrySimple;
19 class PrefService;
21 namespace net {
22 class URLRequestContextGetter;
25 namespace rappor {
27 class LogUploader;
28 class RapporMetric;
29 class RapporReports;
31 // The type of data stored in a metric.
32 enum RapporType {
33 // For sampling the eTLD+1 of a URL.
34 ETLD_PLUS_ONE_RAPPOR_TYPE = 0,
35 COARSE_RAPPOR_TYPE,
36 NUM_RAPPOR_TYPES
39 // This class provides an interface for recording samples for rappor metrics,
40 // and periodically generates and uploads reports based on the collected data.
41 class RapporService {
42 public:
43 // Constructs a RapporService.
44 // Calling code is responsible for ensuring that the lifetime of
45 // |pref_service| is longer than the lifetime of RapporService.
46 explicit RapporService(PrefService* pref_service);
47 virtual ~RapporService();
49 // Add an observer for collecting daily metrics.
50 void AddDailyObserver(scoped_ptr<metrics::DailyEvent::Observer> observer);
52 // Starts the periodic generation of reports and upload attempts.
53 // |metrics enabled| should be true if UMA users have opted in.
54 void Start(net::URLRequestContextGetter* context,
55 bool metrics_enabled);
57 // Records a sample of the rappor metric specified by |metric_name|.
58 // Creates and initializes the metric, if it doesn't yet exist.
59 void RecordSample(const std::string& metric_name,
60 RapporType type,
61 const std::string& sample);
63 // Registers the names of all of the preferences used by RapporService in the
64 // provided PrefRegistry. This should be called before calling Start().
65 static void RegisterPrefs(PrefRegistrySimple* registry);
67 protected:
68 // Initializes the state of the RapporService.
69 void Initialize(int32_t cohort,
70 const std::string& secret,
71 const ReportingLevel& reporting_level);
73 // Retrieves the cohort number this client was assigned to, generating it if
74 // doesn't already exist. The cohort should be persistent.
75 int32_t LoadCohort();
77 // Retrieves the value for secret_ from preferences, generating it if doesn't
78 // already exist. The secret should be persistent, so that additional bits
79 // from the client do not get exposed over time.
80 std::string LoadSecret();
82 // Logs all of the collected metrics to the reports proto message and clears
83 // the internal map. Exposed for tests. Returns true if any metrics were
84 // recorded.
85 bool ExportMetrics(RapporReports* reports);
87 // Records a sample of the rappor metric specified by |parameters|.
88 // Creates and initializes the metric, if it doesn't yet exist.
89 // Exposed for tests.
90 void RecordSampleInternal(const std::string& metric_name,
91 const RapporParameters& parameters,
92 const std::string& sample);
94 private:
95 // Check if the service has been started successfully.
96 bool IsInitialized() const;
98 // Called whenever the logging interval elapses to generate a new log of
99 // reports and pass it to the uploader.
100 void OnLogInterval();
102 // Finds a metric in the metrics_map_, creating it if it doesn't already
103 // exist.
104 RapporMetric* LookUpMetric(const std::string& metric_name,
105 const RapporParameters& parameters);
107 // A weak pointer to the PrefService used to read and write preferences.
108 PrefService* pref_service_;
110 // Client-side secret used to generate fake bits.
111 std::string secret_;
113 // The cohort this client is assigned to. -1 is uninitialized.
114 int32_t cohort_;
116 // Timer which schedules calls to OnLogInterval().
117 base::OneShotTimer<RapporService> log_rotation_timer_;
119 // A daily event for collecting metrics once a day.
120 metrics::DailyEvent daily_event_;
122 // A private LogUploader instance for sending reports to the server.
123 scoped_ptr<LogUploader> uploader_;
125 // What reporting level of metrics are being reported.
126 ReportingLevel reporting_level_;
128 // We keep all registered metrics in a map, from name to metric.
129 // The map owns the metrics it contains.
130 std::map<std::string, RapporMetric*> metrics_map_;
132 DISALLOW_COPY_AND_ASSIGN(RapporService);
135 } // namespace rappor
137 #endif // COMPONENTS_RAPPOR_RAPPOR_SERVICE_H_