Files
platform-external-webrtc/webrtc/test/histogram.cc
Åsa Persson 352b2d7a19 Fix for sent/received RTCP packet counters returned by GetRtcpPacketTypeCounters. The returned counters are incorrect: sent_packets returns stats from a sent stream (and received_packets returns stats from a receive stream).
Add separate functions for returning stats from send/receive stream and updated how functions are used.

Add test implementation for histogram methods in system_wrappers/interface/metrics.h.

BUG=4519
R=pbos@webrtc.org, stefan@webrtc.org

Review URL: https://webrtc-codereview.appspot.com/49639004

Cr-Commit-Position: refs/heads/master@{#9009}
2015-04-15 16:00:37 +00:00

50 lines
1.4 KiB
C++

/*
* Copyright (c) 2015 The WebRTC project authors. All Rights Reserved.
*
* Use of this source code is governed by a BSD-style license
* that can be found in the LICENSE file in the root of the source
* tree. An additional intellectual property rights grant can be found
* in the file PATENTS. All contributing project authors may
* be found in the AUTHORS file in the root of the source tree.
*/
#include "webrtc/test/histogram.h"
#include <map>
#include "webrtc/system_wrappers/interface/metrics.h"
// Test implementation of histogram methods in
// webrtc/system_wrappers/interface/metrics.h.
namespace webrtc {
namespace {
// Map holding the last added sample to a histogram (mapped by histogram name).
std::map<std::string, int> histograms_;
} // namespace
namespace metrics {
Histogram* HistogramFactoryGetCounts(const std::string& name, int min, int max,
int bucket_count) { return NULL; }
Histogram* HistogramFactoryGetEnumeration(const std::string& name,
int boundary) { return NULL; }
void HistogramAdd(
Histogram* histogram_pointer, const std::string& name, int sample) {
histograms_[name] = sample;
}
} // namespace metrics
namespace test {
int LastHistogramSample(const std::string& name) {
std::map<std::string, int>::const_iterator it = histograms_.find(name);
if (it == histograms_.end()) {
return -1;
}
return it->second;
}
} // namespace test
} // namespace webrtc