Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(618)

Unified Diff: components/rappor/rappor_service.h

Issue 49753002: RAPPOR implementation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: RapporMetrics StatsTest Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: components/rappor/rappor_service.h
diff --git a/components/rappor/rappor_service.h b/components/rappor/rappor_service.h
new file mode 100644
index 0000000000000000000000000000000000000000..bff8edbb47c4fc6dd1bbeb69a85870642d0f7f88
--- /dev/null
+++ b/components/rappor/rappor_service.h
@@ -0,0 +1,96 @@
+// 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_RAPPOR_RAPPOR_SERVICE_H_
+#define COMPONENTS_RAPPOR_RAPPOR_SERVICE_H_
+
+#include <string>
+#include <vector>
+
+#include "base/basictypes.h"
+#include "base/lazy_instance.h"
+#include "base/memory/weak_ptr.h"
+#include "base/prefs/pref_service.h"
+#include "base/time/time.h"
+#include "base/timer/timer.h"
+#include "components/rappor/log_uploader.h"
+#include "components/rappor/proto/rappor_metric.pb.h"
+#include "components/rappor/rappor_metric.h"
+#include "url/gurl.h"
+
+class PrefRegistrySimple;
+
+namespace rappor {
+
+// This class provides an interface for recording samples for rappor metrics,
+// and periodically generates and uploads reports based on the collected data.
+class RapporService {
+ public:
+ RapporService();
+ virtual ~RapporService();
+
+ // Starts the periodic generation of reports and upload attempts.
+ void Start(PrefService* pref_service, net::URLRequestContextGetter* context);
+
+ // Registers the names of all of the preferences used by RapporService in the
+ // provided PrefRegistry. This should be called before calling Start().
+ static void RegisterPrefs(PrefRegistrySimple* registry);
+
+ // Records a set of samples on the rappor metric specified by |parameters|.
+ // Creates and initializes the metric, if it doesn't yet exist.
+ void RecordSamples(const RapporParameters& parameters,
+ const std::vector<std::string>& samples);
+
+ // Utility method for recording a URL. Breaks the URL up into parts and
+ // records samples for each of them.
+ void RecordUrl(const RapporParameters& parameters, const GURL& url);
+
+ protected:
+ // Logs all of the collected metrics to the reports proto message. Exposed
+ // for tests.
+ void LogMetrics(RapporReports* reports);
+
+ // Records a set of samples on the rappor metric specified by |parameters|.
+ // Creates and initializes the metric, if it doesn't yet exist.
+ void RecordSamplesInternal(const RapporParameters& parameters,
+ const std::vector<std::string>& samples);
+
+ private:
+ // Retrieves the value for secret_ from preferences, generating it if doesn't
+ // already exist. The secret should be persistent, so that additional bits
+ // from the client do not get exposed over time.
+ void GetSecret(PrefService* pref_service);
+
+ // Logs a single metric's output to the report message.
+ void LogMetric(const RapporMetric& metric, RapporReports::Report* report);
+
+ // Called whenever the logging interval elapses to generate a new log of
+ // reports and pass it to the uploader.
+ void OnLogInterval();
+
+ // Finds a metric in the metrics_map_, creating it if it doesn't already
+ // exist.
+ RapporMetric* LookupMetric(const RapporParameters& parameters);
+
+ // Client-side secret used to generate fake bits.
+ std::string secret_;
+
+ // Timer which schedules calls to OnLogInterval()
+ base::OneShotTimer<RapporService> log_rotation_timer_;
+
+ // A private LogUploader instance for sending reports to the server.
+ scoped_ptr<LogUploader> uploader_;
+
+ // We keep all registered histograms in a map, from name to histogram.
+ std::map<std::string, RapporMetric*> metrics_map_;
+
+ // Lock protects access to above map.
+ base::Lock lock_;
+
+ DISALLOW_COPY_AND_ASSIGN(RapporService);
+};
+
+} // namespace rappor
+
+#endif // COMPONENTS_RAPPOR_RAPPOR_SERVICE_H_

Powered by Google App Engine
This is Rietveld 408576698