Files
platform-external-webrtc/test/pc/e2e/stats_poller.cc
Mirko Bonadei 12ae4f4d50 Introduce possibility to poll stats and notify analyzers.
This CL introduces the possibility to poll the 2 peer connections
at constant intervals.

It also introduces a dummy AudioQualityAnalyzer that will have to
be implemented in a follow-up CL and it moves every type of the
test framework inside the webrtc::test namespace.

Bug: webrtc:10138
Change-Id: I40acf7894bd67ea5229baba2d2cf18cd8ef65e67
Reviewed-on: https://webrtc-review.googlesource.com/c/123441
Commit-Queue: Mirko Bonadei <mbonadei@webrtc.org>
Reviewed-by: Artem Titov <titovartem@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#26854}
2019-02-26 14:43:31 +00:00

48 lines
1.3 KiB
C++

/*
* Copyright (c) 2019 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 "test/pc/e2e/stats_poller.h"
#include <utility>
#include "rtc_base/logging.h"
namespace webrtc {
namespace test {
void InternalStatsObserver::PollStats() {
peer_->pc()->GetStats(this, nullptr,
webrtc::PeerConnectionInterface::StatsOutputLevel::
kStatsOutputLevelStandard);
}
void InternalStatsObserver::OnComplete(const StatsReports& reports) {
for (auto* observer : observers_) {
observer->OnStatsReports(pc_label_, reports);
}
}
StatsPoller::StatsPoller(std::vector<StatsObserverInterface*> observers,
std::map<std::string, TestPeer*> peers) {
for (auto& peer : peers) {
pollers_.push_back(new rtc::RefCountedObject<InternalStatsObserver>(
peer.first, peer.second, observers));
}
}
void StatsPoller::PollStatsAndNotifyObservers() {
for (auto& poller : pollers_) {
poller->PollStats();
}
}
} // namespace test
} // namespace webrtc