| OLD | NEW |
| 1 /* | 1 /* |
| 2 * libjingle | 2 * libjingle |
| 3 * Copyright 2015 Google Inc. | 3 * Copyright 2015 Google Inc. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions are met: | 6 * modification, are permitted provided that the following conditions are met: |
| 7 * | 7 * |
| 8 * 1. Redistributions of source code must retain the above copyright notice, | 8 * 1. Redistributions of source code must retain the above copyright notice, |
| 9 * this list of conditions and the following disclaimer. | 9 * this list of conditions and the following disclaimer. |
| 10 * 2. Redistributions in binary form must reproduce the above copyright notice, | 10 * 2. Redistributions in binary form must reproduce the above copyright notice, |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 #include "talk/app/webrtc/fakemetricsobserver.h" | 28 #include "talk/app/webrtc/fakemetricsobserver.h" |
| 29 #include "webrtc/base/checks.h" | 29 #include "webrtc/base/checks.h" |
| 30 | 30 |
| 31 namespace webrtc { | 31 namespace webrtc { |
| 32 | 32 |
| 33 FakeMetricsObserver::FakeMetricsObserver() { | 33 FakeMetricsObserver::FakeMetricsObserver() { |
| 34 Reset(); | 34 Reset(); |
| 35 } | 35 } |
| 36 | 36 |
| 37 void FakeMetricsObserver::Reset() { | 37 void FakeMetricsObserver::Reset() { |
| 38 DCHECK(thread_checker_.CalledOnValidThread()); | 38 RTC_DCHECK(thread_checker_.CalledOnValidThread()); |
| 39 counters_.clear(); | 39 counters_.clear(); |
| 40 memset(int_histogram_samples_, 0, sizeof(int_histogram_samples_)); | 40 memset(int_histogram_samples_, 0, sizeof(int_histogram_samples_)); |
| 41 for (std::string& type : string_histogram_samples_) { | 41 for (std::string& type : string_histogram_samples_) { |
| 42 type.clear(); | 42 type.clear(); |
| 43 } | 43 } |
| 44 } | 44 } |
| 45 | 45 |
| 46 void FakeMetricsObserver::IncrementEnumCounter( | 46 void FakeMetricsObserver::IncrementEnumCounter( |
| 47 PeerConnectionEnumCounterType type, | 47 PeerConnectionEnumCounterType type, |
| 48 int counter, | 48 int counter, |
| 49 int counter_max) { | 49 int counter_max) { |
| 50 DCHECK(thread_checker_.CalledOnValidThread()); | 50 RTC_DCHECK(thread_checker_.CalledOnValidThread()); |
| 51 if (counters_.size() <= static_cast<size_t>(type)) { | 51 if (counters_.size() <= static_cast<size_t>(type)) { |
| 52 counters_.resize(type + 1); | 52 counters_.resize(type + 1); |
| 53 } | 53 } |
| 54 auto& counters = counters_[type]; | 54 auto& counters = counters_[type]; |
| 55 if (counters.size() < static_cast<size_t>(counter_max)) { | 55 if (counters.size() < static_cast<size_t>(counter_max)) { |
| 56 counters.resize(counter_max); | 56 counters.resize(counter_max); |
| 57 } | 57 } |
| 58 ++counters[counter]; | 58 ++counters[counter]; |
| 59 } | 59 } |
| 60 | 60 |
| 61 void FakeMetricsObserver::AddHistogramSample(PeerConnectionMetricsName type, | 61 void FakeMetricsObserver::AddHistogramSample(PeerConnectionMetricsName type, |
| 62 int value) { | 62 int value) { |
| 63 DCHECK(thread_checker_.CalledOnValidThread()); | 63 RTC_DCHECK(thread_checker_.CalledOnValidThread()); |
| 64 DCHECK_EQ(int_histogram_samples_[type], 0); | 64 RTC_DCHECK_EQ(int_histogram_samples_[type], 0); |
| 65 int_histogram_samples_[type] = value; | 65 int_histogram_samples_[type] = value; |
| 66 } | 66 } |
| 67 | 67 |
| 68 void FakeMetricsObserver::AddHistogramSample(PeerConnectionMetricsName type, | 68 void FakeMetricsObserver::AddHistogramSample(PeerConnectionMetricsName type, |
| 69 const std::string& value) { | 69 const std::string& value) { |
| 70 DCHECK(thread_checker_.CalledOnValidThread()); | 70 RTC_DCHECK(thread_checker_.CalledOnValidThread()); |
| 71 string_histogram_samples_[type].assign(value); | 71 string_histogram_samples_[type].assign(value); |
| 72 } | 72 } |
| 73 | 73 |
| 74 int FakeMetricsObserver::GetEnumCounter(PeerConnectionEnumCounterType type, | 74 int FakeMetricsObserver::GetEnumCounter(PeerConnectionEnumCounterType type, |
| 75 int counter) const { | 75 int counter) const { |
| 76 DCHECK(thread_checker_.CalledOnValidThread()); | 76 RTC_DCHECK(thread_checker_.CalledOnValidThread()); |
| 77 CHECK(counters_.size() > static_cast<size_t>(type) && | 77 RTC_CHECK(counters_.size() > static_cast<size_t>(type) && |
| 78 counters_[type].size() > static_cast<size_t>(counter)); | 78 counters_[type].size() > static_cast<size_t>(counter)); |
| 79 return counters_[type][counter]; | 79 return counters_[type][counter]; |
| 80 } | 80 } |
| 81 | 81 |
| 82 int FakeMetricsObserver::GetIntHistogramSample( | 82 int FakeMetricsObserver::GetIntHistogramSample( |
| 83 PeerConnectionMetricsName type) const { | 83 PeerConnectionMetricsName type) const { |
| 84 DCHECK(thread_checker_.CalledOnValidThread()); | 84 RTC_DCHECK(thread_checker_.CalledOnValidThread()); |
| 85 return int_histogram_samples_[type]; | 85 return int_histogram_samples_[type]; |
| 86 } | 86 } |
| 87 | 87 |
| 88 const std::string& FakeMetricsObserver::GetStringHistogramSample( | 88 const std::string& FakeMetricsObserver::GetStringHistogramSample( |
| 89 PeerConnectionMetricsName type) const { | 89 PeerConnectionMetricsName type) const { |
| 90 DCHECK(thread_checker_.CalledOnValidThread()); | 90 RTC_DCHECK(thread_checker_.CalledOnValidThread()); |
| 91 return string_histogram_samples_[type]; | 91 return string_histogram_samples_[type]; |
| 92 } | 92 } |
| 93 | 93 |
| 94 } // namespace webrtc | 94 } // namespace webrtc |
| OLD | NEW |