mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-16 15:20:42 +01:00

The IDs be more stable than the plot titles and could be used to identify specific graphs in scripts. Change event_log_visualizer command line interface to control which plots are generated. Old interface had one command line flag per plot as well as a set of 'profiles' that enabled of disabled sets of plots. New interface has a command line flag which takes a string of all the plot names or profiles that should be enabled. In some cases, there are also slight naming changes for the plots. For example, the former command event_log_visualizer --plot_profile=sendside_bwe --plot_incoming_packet_sizes <filename> | python is now event_log_visualizer --plot=sendside_bwe,incoming_packet_sizes <filename> | python The former command event_log_visualizer --plot_profile=none --plot_incoming_packet_sizes <filename> | python is now event_log_visualizer --plot=incoming_packet_sizes <filename> | python The former command event_log_visualizer --plot_profile=all <filename> | python is now event_log_visualizer --plot=all <filename> | python Bug: webrtc:10623 Change-Id: Ife432c1e51edfce64af565a769f1764a16655bb6 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/140886 Reviewed-by: Sebastian Jansson <srte@webrtc.org> Commit-Queue: Björn Terelius <terelius@webrtc.org> Cr-Commit-Position: refs/heads/master@{#28237}
91 lines
2.8 KiB
C++
91 lines
2.8 KiB
C++
/*
|
|
* Copyright (c) 2016 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 "rtc_tools/event_log_visualizer/plot_base.h"
|
|
|
|
#include <algorithm>
|
|
|
|
#include "rtc_base/checks.h"
|
|
|
|
namespace webrtc {
|
|
|
|
void Plot::SetXAxis(float min_value,
|
|
float max_value,
|
|
std::string label,
|
|
float left_margin,
|
|
float right_margin) {
|
|
RTC_DCHECK_LE(min_value, max_value);
|
|
xaxis_min_ = min_value - left_margin * (max_value - min_value);
|
|
xaxis_max_ = max_value + right_margin * (max_value - min_value);
|
|
xaxis_label_ = label;
|
|
}
|
|
|
|
void Plot::SetSuggestedXAxis(float min_value,
|
|
float max_value,
|
|
std::string label,
|
|
float left_margin,
|
|
float right_margin) {
|
|
for (const auto& series : series_list_) {
|
|
for (const auto& point : series.points) {
|
|
min_value = std::min(min_value, point.x);
|
|
max_value = std::max(max_value, point.x);
|
|
}
|
|
}
|
|
SetXAxis(min_value, max_value, label, left_margin, right_margin);
|
|
}
|
|
|
|
void Plot::SetYAxis(float min_value,
|
|
float max_value,
|
|
std::string label,
|
|
float bottom_margin,
|
|
float top_margin) {
|
|
RTC_DCHECK_LE(min_value, max_value);
|
|
yaxis_min_ = min_value - bottom_margin * (max_value - min_value);
|
|
yaxis_max_ = max_value + top_margin * (max_value - min_value);
|
|
yaxis_label_ = label;
|
|
}
|
|
|
|
void Plot::SetSuggestedYAxis(float min_value,
|
|
float max_value,
|
|
std::string label,
|
|
float bottom_margin,
|
|
float top_margin) {
|
|
for (const auto& series : series_list_) {
|
|
for (const auto& point : series.points) {
|
|
min_value = std::min(min_value, point.y);
|
|
max_value = std::max(max_value, point.y);
|
|
}
|
|
}
|
|
SetYAxis(min_value, max_value, label, bottom_margin, top_margin);
|
|
}
|
|
|
|
void Plot::SetTitle(const std::string& title) {
|
|
title_ = title;
|
|
}
|
|
|
|
void Plot::SetId(const std::string& id) {
|
|
id_ = id;
|
|
}
|
|
|
|
void Plot::AppendTimeSeries(TimeSeries&& time_series) {
|
|
series_list_.emplace_back(std::move(time_series));
|
|
}
|
|
|
|
void Plot::AppendIntervalSeries(IntervalSeries&& interval_series) {
|
|
interval_list_.emplace_back(std::move(interval_series));
|
|
}
|
|
|
|
void Plot::AppendTimeSeriesIfNotEmpty(TimeSeries&& time_series) {
|
|
if (time_series.points.size() > 0) {
|
|
series_list_.emplace_back(std::move(time_series));
|
|
}
|
|
}
|
|
|
|
} // namespace webrtc
|