blob: 0716e80572d4e314e537a7400e9f8fab294f32e1 [file] [log] [blame]
kaiwang@chromium.org3c57dc62012-07-14 06:48:29 +09001// Copyright (c) 2012 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
kaiwang@chromium.orga97a5ae2012-08-02 06:34:08 +09005// StatisticsRecorder holds all Histograms and BucketRanges that are used by
6// Histograms in the system. It provides a general place for
7// Histograms/BucketRanges to register, and supports a global API for accessing
8// (i.e., dumping, or graphing) the data.
kaiwang@chromium.org3c57dc62012-07-14 06:48:29 +09009
10#ifndef BASE_METRICS_STATISTICS_RECORDER_H_
11#define BASE_METRICS_STATISTICS_RECORDER_H_
12
13#include <list>
14#include <map>
15#include <string>
16#include <vector>
17
18#include "base/base_export.h"
19#include "base/basictypes.h"
rtenneti@chromium.org00491d42012-07-20 04:17:32 +090020#include "base/gtest_prod_util.h"
21#include "base/lazy_instance.h"
kaiwang@chromium.org3c57dc62012-07-14 06:48:29 +090022
23namespace base {
24
kaiwang@chromium.org7c4acad2012-07-26 05:02:48 +090025class BucketRanges;
kaiwang@chromium.org7881e422013-03-01 12:53:25 +090026class HistogramBase;
kaiwang@chromium.org3c57dc62012-07-14 06:48:29 +090027class Lock;
28
29class BASE_EXPORT StatisticsRecorder {
30 public:
kaiwang@chromium.org7881e422013-03-01 12:53:25 +090031 typedef std::vector<HistogramBase*> Histograms;
kaiwang@chromium.org3c57dc62012-07-14 06:48:29 +090032
rtenneti@chromium.org00491d42012-07-20 04:17:32 +090033 // Initializes the StatisticsRecorder system.
34 static void Initialize();
kaiwang@chromium.org3c57dc62012-07-14 06:48:29 +090035
36 // Find out if histograms can now be registered into our list.
37 static bool IsActive();
38
39 // Register, or add a new histogram to the collection of statistics. If an
40 // identically named histogram is already registered, then the argument
41 // |histogram| will deleted. The returned value is always the registered
42 // histogram (either the argument, or the pre-existing registered histogram).
kaiwang@chromium.org7881e422013-03-01 12:53:25 +090043 static HistogramBase* RegisterOrDeleteDuplicate(HistogramBase* histogram);
kaiwang@chromium.org3c57dc62012-07-14 06:48:29 +090044
kaiwang@chromium.orga97a5ae2012-08-02 06:34:08 +090045 // Register, or add a new BucketRanges. If an identically BucketRanges is
46 // already registered, then the argument |ranges| will deleted. The returned
47 // value is always the registered BucketRanges (either the argument, or the
48 // pre-existing one).
49 static const BucketRanges* RegisterOrDeleteDuplicateRanges(
50 const BucketRanges* ranges);
kaiwang@chromium.org3c57dc62012-07-14 06:48:29 +090051
grt@chromium.orge29d3e52013-11-15 03:33:53 +090052 // Methods for appending histogram data to a string. Only histograms which
53 // have |query| as a substring are written to |output| (an empty string will
54 // process all registered histograms).
kaiwang@chromium.org3c57dc62012-07-14 06:48:29 +090055 static void WriteHTMLGraph(const std::string& query, std::string* output);
56 static void WriteGraph(const std::string& query, std::string* output);
57
grt@chromium.orge29d3e52013-11-15 03:33:53 +090058 // Returns the histograms with |query| as a substring as JSON text (an empty
59 // |query| will process all registered histograms).
60 static std::string ToJSON(const std::string& query);
61
kaiwang@chromium.org3c57dc62012-07-14 06:48:29 +090062 // Method for extracting histograms which were marked for use by UMA.
63 static void GetHistograms(Histograms* output);
64
kaiwang@chromium.orga97a5ae2012-08-02 06:34:08 +090065 // Method for extracting BucketRanges used by all histograms registered.
66 static void GetBucketRanges(std::vector<const BucketRanges*>* output);
67
kaiwang@chromium.org3c57dc62012-07-14 06:48:29 +090068 // Find a histogram by name. It matches the exact name. This method is thread
kaiwang@chromium.org6fa08892012-07-19 03:06:30 +090069 // safe. It returns NULL if a matching histogram is not found.
kaiwang@chromium.org7881e422013-03-01 12:53:25 +090070 static HistogramBase* FindHistogram(const std::string& name);
kaiwang@chromium.org3c57dc62012-07-14 06:48:29 +090071
kaiwang@chromium.org3c57dc62012-07-14 06:48:29 +090072 // GetSnapshot copies some of the pointers to registered histograms into the
rnk@chromium.org1706cb42013-07-19 05:42:40 +090073 // caller supplied vector (Histograms). Only histograms with names matching
74 // query are returned. The query must be a substring of histogram name for its
75 // pointer to be copied.
kaiwang@chromium.org3c57dc62012-07-14 06:48:29 +090076 static void GetSnapshot(const std::string& query, Histograms* snapshot);
77
kaiwang@chromium.org3c57dc62012-07-14 06:48:29 +090078 private:
79 // We keep all registered histograms in a map, from name to histogram.
kaiwang@chromium.org7881e422013-03-01 12:53:25 +090080 typedef std::map<std::string, HistogramBase*> HistogramMap;
kaiwang@chromium.org3c57dc62012-07-14 06:48:29 +090081
kaiwang@chromium.org7c4acad2012-07-26 05:02:48 +090082 // We keep all |bucket_ranges_| in a map, from checksum to a list of
83 // |bucket_ranges_|. Checksum is calculated from the |ranges_| in
84 // |bucket_ranges_|.
kaiwang@chromium.orga97a5ae2012-08-02 06:34:08 +090085 typedef std::map<uint32, std::list<const BucketRanges*>*> RangesMap;
kaiwang@chromium.org3c57dc62012-07-14 06:48:29 +090086
rtenneti@chromium.org00491d42012-07-20 04:17:32 +090087 friend struct DefaultLazyInstanceTraits<StatisticsRecorder>;
kaiwang@chromium.orge4e800c2013-01-12 06:52:44 +090088 friend class HistogramBaseTest;
gavinp@chromium.org3831bf42012-10-27 21:44:07 +090089 friend class HistogramTest;
kaiwang@chromium.org8ef1a412013-03-16 18:15:54 +090090 friend class SparseHistogramTest;
kaiwang@chromium.orga97a5ae2012-08-02 06:34:08 +090091 friend class StatisticsRecorderTest;
vitalybuka@chromium.org47ca9d82013-10-23 10:16:04 +090092 FRIEND_TEST_ALL_PREFIXES(HistogramDeltaSerializationTest,
93 DeserializeHistogramAndAddSamples);
rtenneti@chromium.org00491d42012-07-20 04:17:32 +090094
kaiwang@chromium.orga97a5ae2012-08-02 06:34:08 +090095 // The constructor just initializes static members. Usually client code should
96 // use Initialize to do this. But in test code, you can friend this class and
97 // call destructor/constructor to get a clean StatisticsRecorder.
rtenneti@chromium.org00491d42012-07-20 04:17:32 +090098 StatisticsRecorder();
rtenneti@chromium.org00491d42012-07-20 04:17:32 +090099 ~StatisticsRecorder();
100
tonyg@chromium.org4af92962013-05-02 12:09:25 +0900101 static void DumpHistogramsToVlog(void* instance);
102
kaiwang@chromium.org3c57dc62012-07-14 06:48:29 +0900103 static HistogramMap* histograms_;
kaiwang@chromium.org3c57dc62012-07-14 06:48:29 +0900104 static RangesMap* ranges_;
105
kaiwang@chromium.orga97a5ae2012-08-02 06:34:08 +0900106 // Lock protects access to above maps.
kaiwang@chromium.org3c57dc62012-07-14 06:48:29 +0900107 static base::Lock* lock_;
108
kaiwang@chromium.org3c57dc62012-07-14 06:48:29 +0900109 DISALLOW_COPY_AND_ASSIGN(StatisticsRecorder);
110};
111
112} // namespace base
113
114#endif // BASE_METRICS_STATISTICS_RECORDER_H_