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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
base / metrics / statistics_recorder.h [blame]
// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// StatisticsRecorder holds all Histograms and BucketRanges that are used by
// Histograms in the system. It provides a general place for
// Histograms/BucketRanges to register, and supports a global API for accessing
// (i.e., dumping, or graphing) the data.
#ifndef BASE_METRICS_STATISTICS_RECORDER_H_
#define BASE_METRICS_STATISTICS_RECORDER_H_
#include <stdint.h>
#include <atomic> // For std::memory_order_*.
#include <memory>
#include <string>
#include <string_view>
#include <unordered_map>
#include <vector>
#include "base/base_export.h"
#include "base/functional/callback.h"
#include "base/gtest_prod_util.h"
#include "base/lazy_instance.h"
#include "base/memory/raw_ptr.h"
#include "base/memory/weak_ptr.h"
#include "base/metrics/histogram_base.h"
#include "base/metrics/ranges_manager.h"
#include "base/metrics/record_histogram_checker.h"
#include "base/observer_list_threadsafe.h"
#include "base/synchronization/lock.h"
#include "base/thread_annotations.h"
#include "base/types/pass_key.h"
namespace base {
class BucketRanges;
class HistogramSnapshotManager;
// In-memory recorder of usage statistics (aka metrics, aka histograms).
//
// All the public methods are static and act on a global recorder. This global
// recorder is internally synchronized and all the static methods are thread
// safe. This is intended to only be run/used in the browser process.
//
// StatisticsRecorder doesn't have any public constructor. For testing purpose,
// you can create a temporary recorder using the factory method
// CreateTemporaryForTesting(). This temporary recorder becomes the global one
// until deleted. When this temporary recorder is deleted, it restores the
// previous global one.
class BASE_EXPORT StatisticsRecorder {
public:
// An interface class that allows the StatisticsRecorder to forcibly merge
// histograms from providers when necessary.
class HistogramProvider {
public:
// Merges all histogram information into the global versions. If |async| is
// true, the work may be done asynchronously (though this is not mandatory).
// If false, the work must be done ASAP/synchronously (e.g., because the
// browser is shutting down). |done_callback| should be called on the
// calling thread when all work is finished, regardless of the value of
// |async|.
//
// NOTE: It is possible for this to be called with |async| set to false
// even before a previous call with |async| set to true has finished. Hence,
// if the implementation allows for asynchronous work, ensure that it is
// done in a thread-safe way.
virtual void MergeHistogramDeltas(bool async,
OnceClosure done_callback) = 0;
};
// OnSampleCallback is a convenient callback type that provides information
// about a histogram sample. This is used in conjunction with
// ScopedHistogramSampleObserver to get notified when a sample is collected.
using OnSampleCallback =
base::RepeatingCallback<void(const char* /*=histogram_name*/,
uint64_t /*=name_hash*/,
HistogramBase::Sample)>;
// An observer that gets notified whenever a new sample is recorded for a
// particular histogram. Clients only need to construct it with the histogram
// name and the callback to be invoked. The class starts observing on
// construction and removes itself from the observer list on destruction. The
// clients are always notified on the same sequence in which they were
// registered. This will not get a notification if created while sending out
// that notification.
class BASE_EXPORT ScopedHistogramSampleObserver {
public:
// Constructor. Called with the desired histogram name and the callback to
// be invoked when a sample is recorded.
explicit ScopedHistogramSampleObserver(const std::string& histogram_name,
OnSampleCallback callback);
~ScopedHistogramSampleObserver();
private:
friend class StatisticsRecorder;
// Runs the callback.
void RunCallback(const char* histogram_name,
uint64_t name_hash,
HistogramBase::Sample sample);
// The name of the histogram to observe.
const std::string histogram_name_;
// The client supplied callback that is invoked when the histogram sample is
// collected.
const OnSampleCallback callback_;
};
typedef std::vector<HistogramBase*> Histograms;
StatisticsRecorder(const StatisticsRecorder&) = delete;
StatisticsRecorder& operator=(const StatisticsRecorder&) = delete;
// Restores the previous global recorder.
//
// When several temporary recorders are created using
// CreateTemporaryForTesting(), these recorders must be deleted in reverse
// order of creation.
//
// This method is thread safe.
//
// Precondition: The recorder being deleted is the current global recorder.
~StatisticsRecorder();
// Registers a provider of histograms that can be called to merge those into
// the global recorder. Calls to ImportProvidedHistograms() will fetch from
// registered providers.
//
// This method is thread safe.
static void RegisterHistogramProvider(
const WeakPtr<HistogramProvider>& provider);
// Registers or adds a new histogram to the collection of statistics. If an
// identically named histogram is already registered, then the argument
// |histogram| will be deleted. The returned value is always the registered
// histogram (either the argument, or the pre-existing registered histogram).
//
// This method is thread safe.
static HistogramBase* RegisterOrDeleteDuplicate(HistogramBase* histogram);
// Registers or adds a new BucketRanges. If an equivalent BucketRanges is
// already registered, then the argument |ranges| will be deleted. The
// returned value is always the registered BucketRanges (either the argument,
// or the pre-existing one).
//
// This method is thread safe.
static const BucketRanges* RegisterOrDeleteDuplicateRanges(
const BucketRanges* ranges);
// A method for appending histogram data to a string. Only histograms which
// have |query| as a substring are written to |output| (an empty string will
// process all registered histograms).
//
// This method is thread safe.
static void WriteGraph(const std::string& query, std::string* output);
// Returns the histograms with |verbosity_level| as the serialization
// verbosity.
//
// This method is thread safe.
static std::string ToJSON(JSONVerbosityLevel verbosity_level);
// Gets existing histograms. |include_persistent| determines whether
// histograms held in persistent storage are included.
//
// The order of returned histograms is not guaranteed.
//
// Ownership of the individual histograms remains with the StatisticsRecorder.
//
// This method is thread safe.
static Histograms GetHistograms(bool include_persistent = true)
LOCKS_EXCLUDED(GetLock());
// Gets BucketRanges used by all histograms registered. The order of returned
// BucketRanges is not guaranteed.
//
// This method is thread safe.
static std::vector<const BucketRanges*> GetBucketRanges();
// Finds a histogram by name. Matches the exact name. Returns a null pointer
// if a matching histogram is not found.
//
// This method is thread safe.
static HistogramBase* FindHistogram(std::string_view name);
// Imports histograms from providers. If |async| is true, the providers may do
// the work asynchronously (though this is not guaranteed and it is up to the
// providers to decide). If false, the work will be done synchronously.
// |done_callback| is called on the calling thread when all providers have
// finished.
//
// This method must be called on the UI thread.
static void ImportProvidedHistograms(bool async, OnceClosure done_callback);
// Convenience function that calls ImportProvidedHistograms() with |async|
// set to false, and with a no-op |done_callback|.
static void ImportProvidedHistogramsSync();
// Snapshots all histogram deltas via |snapshot_manager|. This marks the
// deltas as logged. |include_persistent| determines whether histograms held
// in persistent storage are snapshotted. |flags_to_set| is used to set flags
// for each histogram. |required_flags| is used to select which histograms to
// record. Only histograms with all required flags are selected. If all
// histograms should be recorded, use |Histogram::kNoFlags| as the required
// flag. Thread-safe.
static void PrepareDeltas(bool include_persistent,
HistogramBase::Flags flags_to_set,
HistogramBase::Flags required_flags,
HistogramSnapshotManager* snapshot_manager);
// Retrieves and runs the list of callbacks for the histogram referred to by
// |histogram_name|, if any.
//
// This method is thread safe.
static void FindAndRunHistogramCallbacks(base::PassKey<HistogramBase>,
const char* histogram_name,
uint64_t name_hash,
HistogramBase::Sample sample);
// Returns the number of known histograms.
//
// This method is thread safe.
static size_t GetHistogramCount();
// Initializes logging histograms with --v=1. Safe to call multiple times.
// Is called from ctor but for browser it seems that it is more useful to
// start logging after statistics recorder, so we need to init log-on-shutdown
// later.
//
// This method is thread safe.
static void InitLogOnShutdown();
// Removes a histogram from the internal set of known ones. This can be
// necessary during testing persistent histograms where the underlying
// memory is being released.
//
// This method is thread safe.
static void ForgetHistogramForTesting(std::string_view name);
// Creates a temporary StatisticsRecorder object for testing purposes. All new
// histograms will be registered in it until it is destructed or pushed aside
// for the lifetime of yet another StatisticsRecorder object. The destruction
// of the returned object will re-activate the previous one.
// StatisticsRecorder objects must be deleted in the opposite order to which
// they're created.
//
// This method is thread safe.
[[nodiscard]] static std::unique_ptr<StatisticsRecorder>
CreateTemporaryForTesting();
// Sets the record checker for determining if a histogram should be recorded.
// Record checker doesn't affect any already recorded histograms, so this
// method must be called very early, before any threads have started.
// Record checker methods can be called on any thread, so they shouldn't
// mutate any state.
static void SetRecordChecker(
std::unique_ptr<RecordHistogramChecker> record_checker);
// Checks if the given histogram should be recorded based on the
// ShouldRecord() method of the record checker. If the record checker is not
// set, returns true.
// |histogram_hash| corresponds to the result of HashMetricNameAs32Bits().
//
// This method is thread safe.
static bool ShouldRecordHistogram(uint32_t histogram_hash);
// Sorts histograms by name.
static Histograms Sort(Histograms histograms);
// Filters histograms by name. Only histograms which have |query| as a
// substring in their name are kept. An empty query keeps all histograms.
// |case_sensitive| determines whether the matching should be done in a
// case sensitive way.
static Histograms WithName(Histograms histograms,
const std::string& query,
bool case_sensitive = true);
using GlobalSampleCallback = void (*)(const char* /*=histogram_name*/,
uint64_t /*=name_hash*/,
HistogramBase::Sample);
// Installs a global callback which will be called for every added
// histogram sample. The given callback is a raw function pointer in order
// to be accessed lock-free and can be called on any thread.
static void SetGlobalSampleCallback(
const GlobalSampleCallback& global_sample_callback);
// Returns the global callback, if any, that should be called every time a
// histogram sample is added.
static GlobalSampleCallback global_sample_callback() {
return global_sample_callback_.load(std::memory_order_relaxed);
}
// Returns whether there's either a global histogram callback set,
// or if any individual histograms have callbacks set. Used for early return
// when histogram samples are added.
static bool have_active_callbacks() {
return have_active_callbacks_.load(std::memory_order_relaxed);
}
private:
static Lock& GetLock() { return lock_.Get(); }
static void AssertLockHeld() { lock_.Get().AssertAcquired(); }
// Returns the histogram registered with |hash|, if there is one. Returns
// nullptr otherwise.
// Note: |name| is only used in DCHECK builds to assert that there was no
// collision (i.e. different histograms with the same hash).
HistogramBase* FindHistogramByHashInternal(uint64_t hash,
std::string_view name) const
EXCLUSIVE_LOCKS_REQUIRED(GetLock());
// Adds an observer to be notified when a new sample is recorded on
// the histogram referred to by |histogram_name|. Observers added
// while sending out notification are not notified. Can be called
// before or after the histogram is created.
//
// This method is thread safe.
static void AddHistogramSampleObserver(
const std::string& histogram_name,
ScopedHistogramSampleObserver* observer);
// Clears the given |observer| set on the histogram referred to by
// |histogram_name|.
//
// This method is thread safe.
static void RemoveHistogramSampleObserver(
const std::string& histogram_name,
ScopedHistogramSampleObserver* observer);
typedef std::vector<WeakPtr<HistogramProvider>> HistogramProviders;
// A map of histogram name hash (see HashMetricName()) to histogram object.
typedef std::unordered_map<uint64_t, HistogramBase*> HistogramMap;
// A map of histogram name hash (see HashMetricName()) to registered observers
// If the histogram isn't created yet, the observers will be added after
// creation.
using HistogramSampleObserverList =
base::ObserverListThreadSafe<ScopedHistogramSampleObserver>;
typedef std::unordered_map<uint64_t,
scoped_refptr<HistogramSampleObserverList>>
ObserverMap;
friend class StatisticsRecorderTest;
FRIEND_TEST_ALL_PREFIXES(StatisticsRecorderTest, IterationTest);
// Initializes the global recorder if it doesn't already exist. Safe to call
// multiple times.
static void EnsureGlobalRecorderWhileLocked()
EXCLUSIVE_LOCKS_REQUIRED(GetLock());
// Gets histogram providers.
//
// This method is thread safe.
static HistogramProviders GetHistogramProviders();
// Imports histograms from global persistent memory.
static void ImportGlobalPersistentHistograms() LOCKS_EXCLUDED(GetLock());
// Constructs a new StatisticsRecorder and sets it as the current global
// recorder.
//
// This singleton instance should be started during the single-threaded
// portion of startup and hence it is not thread safe. It initializes globals
// to provide support for all future calls.
StatisticsRecorder() EXCLUSIVE_LOCKS_REQUIRED(GetLock());
// Initialize implementation but without lock. Caller should guard
// StatisticsRecorder by itself if needed (it isn't in unit tests).
static void InitLogOnShutdownWhileLocked()
EXCLUSIVE_LOCKS_REQUIRED(GetLock());
HistogramMap histograms_;
ObserverMap observers_;
HistogramProviders providers_;
RangesManager ranges_manager_;
std::unique_ptr<RecordHistogramChecker> record_checker_;
// Previous global recorder that existed when this one was created.
raw_ptr<StatisticsRecorder> previous_ = nullptr;
// Global lock for internal synchronization.
// Note: Care must be taken to not read or write anything to persistent memory
// while holding this lock, as that could cause a file I/O stall.
static LazyInstance<Lock>::Leaky lock_;
// Current global recorder. This recorder is used by static methods. When a
// new global recorder is created by CreateTemporaryForTesting(), then the
// previous global recorder is referenced by top_->previous_.
static StatisticsRecorder* top_ GUARDED_BY(GetLock());
// Tracks whether InitLogOnShutdownWhileLocked() has registered a logging
// function that will be called when the program finishes.
static bool is_vlog_initialized_;
// Track whether there are active histogram callbacks present.
static std::atomic<bool> have_active_callbacks_;
// Stores a raw callback which should be called on any every histogram sample
// which gets added.
static std::atomic<GlobalSampleCallback> global_sample_callback_;
};
} // namespace base
#endif // BASE_METRICS_STATISTICS_RECORDER_H_