blob: ec4d51cc527a890870d0ebac8ec11a2d5016b89a [file] [log] [blame]
Henrik Boströmb6199362018-03-12 09:27:551/*
2 * Copyright 2018 The WebRTC Project Authors. All rights reserved.
3 *
4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10
Steve Anton10542f22019-01-11 17:11:0011#ifndef PC_RTC_STATS_TRAVERSAL_H_
12#define PC_RTC_STATS_TRAVERSAL_H_
Henrik Boströmb6199362018-03-12 09:27:5513
14#include <string>
15#include <vector>
16
Mirko Bonadeid9708072019-01-25 19:26:4817#include "api/scoped_refptr.h"
Steve Anton10542f22019-01-11 17:11:0018#include "api/stats/rtc_stats.h"
19#include "api/stats/rtc_stats_report.h"
Henrik Boströmb6199362018-03-12 09:27:5520
21namespace webrtc {
22
23// Traverses the stats graph, taking all stats objects that are directly or
24// indirectly accessible from and including the stats objects identified by
Artem Titov880fa812021-07-30 20:30:2325// `ids`, returning them as a new stats report.
Henrik Boströmb6199362018-03-12 09:27:5526// This is meant to be used to implement the stats selection algorithm.
27// https://w3c.github.io/webrtc-pc/#dfn-stats-selection-algorithm
28rtc::scoped_refptr<RTCStatsReport> TakeReferencedStats(
29 rtc::scoped_refptr<RTCStatsReport> report,
30 const std::vector<std::string>& ids);
31
Artem Titov880fa812021-07-30 20:30:2332// Gets pointers to the string values of any members in `stats` that are used as
Henrik Boströmb6199362018-03-12 09:27:5533// references for looking up other stats objects in the same report by ID. The
Artem Titov880fa812021-07-30 20:30:2334// pointers are valid for the lifetime of `stats` assumings its members are not
Henrik Boströmb6199362018-03-12 09:27:5535// modified.
36//
37// For example, RTCCodecStats contains "transportId"
38// (RTCCodecStats::transport_id) referencing an RTCTransportStats.
39// https://w3c.github.io/webrtc-stats/#dom-rtccodecstats-transportid
40std::vector<const std::string*> GetStatsReferencedIds(const RTCStats& stats);
41
42} // namespace webrtc
43
Steve Anton10542f22019-01-11 17:11:0044#endif // PC_RTC_STATS_TRAVERSAL_H_