blob: c427c47998efdfa502f01de0d489cb55c1e9ce2c [file] [log] [blame]
hbos1f8239c2017-01-16 04:24:10 -08001/*
2 * Copyright 2016 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
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020011#ifndef PC_TRACKMEDIAINFOMAP_H_
12#define PC_TRACKMEDIAINFOMAP_H_
hbos1f8239c2017-01-16 04:24:10 -080013
14#include <map>
15#include <memory>
16#include <vector>
17
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020018#include "api/mediastreaminterface.h"
19#include "api/rtpreceiverinterface.h"
20#include "api/rtpsenderinterface.h"
21#include "media/base/mediachannel.h"
22#include "rtc_base/refcount.h"
hbos1f8239c2017-01-16 04:24:10 -080023
24namespace webrtc {
25
26// Audio/video tracks and sender/receiver statistical information are associated
27// with each other based on attachments to RTP senders/receivers. This class
28// maps that relationship, in both directions, so that stats about a track can
29// be retrieved on a per-attachment basis.
30//
31// An RTP sender/receiver sends or receives media for a set of SSRCs. The media
32// comes from an audio/video track that is attached to it.
33// |[Voice/Video][Sender/Receiver]Info| has statistical information for a set of
34// SSRCs. Looking at the RTP senders and receivers uncovers the track <-> info
35// relationships, which this class does.
36class TrackMediaInfoMap {
37 public:
38 TrackMediaInfoMap(
39 std::unique_ptr<cricket::VoiceMediaInfo> voice_media_info,
40 std::unique_ptr<cricket::VideoMediaInfo> video_media_info,
41 const std::vector<rtc::scoped_refptr<RtpSenderInterface>>& rtp_senders,
42 const std::vector<rtc::scoped_refptr<RtpReceiverInterface>>&
43 rtp_receivers);
44
45 const cricket::VoiceMediaInfo* voice_media_info() const {
46 return voice_media_info_.get();
47 }
48 const cricket::VideoMediaInfo* video_media_info() const {
49 return video_media_info_.get();
50 }
51
52 const std::vector<cricket::VoiceSenderInfo*>* GetVoiceSenderInfos(
53 const AudioTrackInterface& local_audio_track) const;
54 const cricket::VoiceReceiverInfo* GetVoiceReceiverInfo(
55 const AudioTrackInterface& remote_audio_track) const;
56 const std::vector<cricket::VideoSenderInfo*>* GetVideoSenderInfos(
57 const VideoTrackInterface& local_video_track) const;
58 const cricket::VideoReceiverInfo* GetVideoReceiverInfo(
59 const VideoTrackInterface& remote_video_track) const;
60
Harald Alvestrand89061872018-01-02 14:08:34 +010061 const cricket::VoiceSenderInfo* GetVoiceSenderInfoBySsrc(uint32_t ssrc) const;
62 const cricket::VoiceReceiverInfo* GetVoiceReceiverInfoBySsrc(
63 uint32_t ssrc) const;
64 const cricket::VideoSenderInfo* GetVideoSenderInfoBySsrc(uint32_t ssrc) const;
65 const cricket::VideoReceiverInfo* GetVideoReceiverInfoBySsrc(
66 uint32_t ssrc) const;
67
hbos1f8239c2017-01-16 04:24:10 -080068 rtc::scoped_refptr<AudioTrackInterface> GetAudioTrack(
69 const cricket::VoiceSenderInfo& voice_sender_info) const;
70 rtc::scoped_refptr<AudioTrackInterface> GetAudioTrack(
71 const cricket::VoiceReceiverInfo& voice_receiver_info) const;
72 rtc::scoped_refptr<VideoTrackInterface> GetVideoTrack(
73 const cricket::VideoSenderInfo& video_sender_info) const;
74 rtc::scoped_refptr<VideoTrackInterface> GetVideoTrack(
75 const cricket::VideoReceiverInfo& video_receiver_info) const;
76
Harald Alvestrandc72af932018-01-11 17:18:19 +010077 // TODO(hta): Remove this function, and redesign the callers not to need it.
78 // It is not going to work if a track is attached multiple times, and
79 // it is not going to work if a received track is attached as a sending
80 // track (loopback).
81 rtc::Optional<int> GetAttachmentIdByTrack(
82 const MediaStreamTrackInterface* track) const;
83
hbos1f8239c2017-01-16 04:24:10 -080084 private:
85 std::unique_ptr<cricket::VoiceMediaInfo> voice_media_info_;
86 std::unique_ptr<cricket::VideoMediaInfo> video_media_info_;
87 // These maps map tracks (identified by a pointer) to their corresponding info
88 // object of the correct kind. One track can map to multiple info objects.
89 std::map<const AudioTrackInterface*, std::vector<cricket::VoiceSenderInfo*>>
90 voice_infos_by_local_track_;
91 std::map<const AudioTrackInterface*, cricket::VoiceReceiverInfo*>
92 voice_info_by_remote_track_;
93 std::map<const VideoTrackInterface*, std::vector<cricket::VideoSenderInfo*>>
94 video_infos_by_local_track_;
95 std::map<const VideoTrackInterface*, cricket::VideoReceiverInfo*>
96 video_info_by_remote_track_;
97 // These maps map info objects to their corresponding tracks. They are always
98 // the inverse of the maps above. One info object always maps to only one
99 // track.
100 std::map<const cricket::VoiceSenderInfo*,
deadbeef804c1af2017-02-11 19:07:31 -0800101 rtc::scoped_refptr<AudioTrackInterface>>
102 audio_track_by_sender_info_;
hbos1f8239c2017-01-16 04:24:10 -0800103 std::map<const cricket::VoiceReceiverInfo*,
deadbeef804c1af2017-02-11 19:07:31 -0800104 rtc::scoped_refptr<AudioTrackInterface>>
105 audio_track_by_receiver_info_;
hbos1f8239c2017-01-16 04:24:10 -0800106 std::map<const cricket::VideoSenderInfo*,
deadbeef804c1af2017-02-11 19:07:31 -0800107 rtc::scoped_refptr<VideoTrackInterface>>
108 video_track_by_sender_info_;
hbos1f8239c2017-01-16 04:24:10 -0800109 std::map<const cricket::VideoReceiverInfo*,
deadbeef804c1af2017-02-11 19:07:31 -0800110 rtc::scoped_refptr<VideoTrackInterface>>
111 video_track_by_receiver_info_;
Harald Alvestrandc72af932018-01-11 17:18:19 +0100112 // Map of tracks to attachment IDs.
113 // Necessary because senders and receivers live on the signaling thread,
114 // but the attachment IDs are needed while building stats on the networking
115 // thread, so we can't look them up in the senders/receivers without
116 // thread jumping.
117 std::map<const MediaStreamTrackInterface*, int> attachment_id_by_track_;
Harald Alvestrand89061872018-01-02 14:08:34 +0100118 // These maps map SSRCs to the corresponding voice or video info objects.
119 std::map<uint32_t, cricket::VoiceSenderInfo*> voice_info_by_sender_ssrc_;
120 std::map<uint32_t, cricket::VoiceReceiverInfo*> voice_info_by_receiver_ssrc_;
121 std::map<uint32_t, cricket::VideoSenderInfo*> video_info_by_sender_ssrc_;
122 std::map<uint32_t, cricket::VideoReceiverInfo*> video_info_by_receiver_ssrc_;
hbos1f8239c2017-01-16 04:24:10 -0800123};
124
125} // namespace webrtc
126
Mirko Bonadei92ea95e2017-09-15 06:47:31 +0200127#endif // PC_TRACKMEDIAINFOMAP_H_