blob: eb5c8092442efdb4838b96e7657281747e7ad52e [file] [log] [blame]
Henrik Boströmb6199362018-03-12 10:27:55 +01001/*
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
11#ifndef PC_RTCSTATSTRAVERSAL_H_
12#define PC_RTCSTATSTRAVERSAL_H_
13
14#include <string>
15#include <vector>
16
Yves Gerey3e707812018-11-28 16:47:49 +010017#include "api/stats/rtcstats.h"
Henrik Boströmb6199362018-03-12 10:27:55 +010018#include "api/stats/rtcstatsreport.h"
19#include "rtc_base/scoped_ref_ptr.h"
20
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
25// |ids|, returning them as a new stats report.
26// 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
32// Gets pointers to the string values of any members in |stats| that are used as
33// references for looking up other stats objects in the same report by ID. The
34// pointers are valid for the lifetime of |stats| assumings its members are not
35// 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
44#endif // PC_RTCSTATSTRAVERSAL_H_