OLD | NEW |
---|---|
(Empty) | |
1 // 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 | |
5 // SampleMap implements HistogramSamples interface. It is used by the | |
6 // SparseHistogram class to store samples. | |
7 | |
8 #ifndef BASE_METRICS_SAMPLE_MAP_H_ | |
9 #define BASE_METRICS_SAMPLE_MAP_H_ | |
10 | |
11 #include <map> | |
12 | |
13 #include "base/compiler_specific.h" | |
14 #include "base/memory/scoped_ptr.h" | |
15 #include "base/metrics/histogram_base.h" | |
16 #include "base/metrics/histogram_samples.h" | |
17 | |
18 namespace base { | |
19 | |
20 class BASE_EXPORT_PRIVATE SampleMap : public HistogramSamples { | |
21 public: | |
22 SampleMap(); | |
23 virtual ~SampleMap(); | |
24 | |
25 // HistogramSamples implementation: | |
26 virtual void Accumulate(HistogramBase::Sample value, | |
27 HistogramBase::Count count) OVERRIDE; | |
28 virtual HistogramBase::Count GetCount( | |
29 HistogramBase::Sample value) const OVERRIDE; | |
30 virtual HistogramBase::Count TotalCount() const OVERRIDE; | |
31 virtual scoped_ptr<SampleCountIterator> Iterator() const OVERRIDE; | |
32 | |
33 void ResetRedundantCount(HistogramBase::Count count); | |
34 | |
35 protected: | |
36 virtual bool AddSubtractImpl( | |
37 SampleCountIterator* iter, | |
38 HistogramSamples::Operator op) OVERRIDE; // |op| is ADD or SUBTRACT. | |
39 | |
40 private: | |
41 std::map<HistogramBase::Sample, HistogramBase::Count> sample_counts_; | |
42 | |
43 DISALLOW_COPY_AND_ASSIGN(SampleMap); | |
44 }; | |
45 | |
46 class BASE_EXPORT_PRIVATE SampleMapIterator : public SampleCountIterator { | |
47 public: | |
48 typedef std::map<HistogramBase::Sample, HistogramBase::Count> | |
49 SampleToCountMap; | |
Ilya Sherman
2012/10/05 03:29:24
nit: Do we really want a public typedef? If we mo
kaiwang
2012/10/05 04:02:38
This is exactly what I suggested to Jim
jar (doing other things)
2012/10/05 16:55:19
I agree the "rightish" thing is to indeed create a
| |
50 | |
51 SampleMapIterator(const SampleToCountMap& sample_counts); | |
52 virtual ~SampleMapIterator(); | |
53 | |
54 // SampleCountIterator implementation: | |
55 virtual bool Done() const OVERRIDE; | |
56 virtual void Next() OVERRIDE; | |
57 virtual void Get(HistogramBase::Sample* min, | |
58 HistogramBase::Sample* max, | |
59 HistogramBase::Count* count) const OVERRIDE; | |
60 private: | |
61 SampleToCountMap::const_iterator iter_; | |
62 const SampleToCountMap::const_iterator end_; | |
63 }; | |
64 | |
65 } // namespace base | |
66 | |
67 #endif // BASE_METRICS_SAMPLE_MAP_H_ | |
OLD | NEW |