henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 | [diff] [blame] | 1 | /* |
kjellander | b24317b | 2016-02-10 15:54:43 | [diff] [blame] | 2 | * Copyright 2012 The WebRTC project authors. All Rights Reserved. |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 | [diff] [blame] | 3 | * |
kjellander | b24317b | 2016-02-10 15:54:43 | [diff] [blame] | 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. |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 | [diff] [blame] | 9 | */ |
| 10 | |
Steve Anton | 10542f2 | 2019-01-11 17:11:00 | [diff] [blame] | 11 | #ifndef PC_PEER_CONNECTION_H_ |
| 12 | #define PC_PEER_CONNECTION_H_ |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 | [diff] [blame] | 13 | |
perkj | d61bf80 | 2016-03-24 10:16:19 | [diff] [blame] | 14 | #include <map> |
kwiberg | d1fe281 | 2016-04-27 13:47:29 | [diff] [blame] | 15 | #include <memory> |
Steve Anton | 75737c0 | 2017-11-06 18:37:17 | [diff] [blame] | 16 | #include <set> |
| 17 | #include <string> |
perkj | d61bf80 | 2016-03-24 10:16:19 | [diff] [blame] | 18 | #include <vector> |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 | [diff] [blame] | 19 | |
Piotr (Peter) Slatala | e0c2e97 | 2018-10-08 16:43:21 | [diff] [blame] | 20 | #include "api/media_transport_interface.h" |
Steve Anton | 10542f2 | 2019-01-11 17:11:00 | [diff] [blame] | 21 | #include "api/peer_connection_interface.h" |
| 22 | #include "api/turn_customizer.h" |
| 23 | #include "pc/ice_server_parsing.h" |
| 24 | #include "pc/jsep_transport_controller.h" |
| 25 | #include "pc/peer_connection_factory.h" |
| 26 | #include "pc/peer_connection_internal.h" |
| 27 | #include "pc/rtc_stats_collector.h" |
| 28 | #include "pc/rtp_transceiver.h" |
Harald Alvestrand | c85328f | 2019-02-28 06:51:00 | [diff] [blame] | 29 | #include "pc/sctp_transport.h" |
Steve Anton | 10542f2 | 2019-01-11 17:11:00 | [diff] [blame] | 30 | #include "pc/stats_collector.h" |
| 31 | #include "pc/stream_collection.h" |
Steve Anton | 10542f2 | 2019-01-11 17:11:00 | [diff] [blame] | 32 | #include "pc/webrtc_session_description_factory.h" |
Karl Wiberg | 5966c50 | 2019-02-21 22:55:09 | [diff] [blame] | 33 | #include "rtc_base/race_checker.h" |
Amit Hilbuch | dbb49df | 2019-01-23 22:54:24 | [diff] [blame] | 34 | #include "rtc_base/unique_id_generator.h" |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 | [diff] [blame] | 35 | |
| 36 | namespace webrtc { |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 | [diff] [blame] | 37 | |
deadbeef | eb45981 | 2015-12-16 03:24:43 | [diff] [blame] | 38 | class MediaStreamObserver; |
perkj | f0dcfe2 | 2016-03-10 17:32:00 | [diff] [blame] | 39 | class VideoRtpReceiver; |
skvlad | 11a9cbf | 2016-10-07 18:53:05 | [diff] [blame] | 40 | class RtcEventLog; |
deadbeef | ab9b2d1 | 2015-10-14 18:33:11 | [diff] [blame] | 41 | |
Steve Anton | 75737c0 | 2017-11-06 18:37:17 | [diff] [blame] | 42 | // PeerConnection is the implementation of the PeerConnection object as defined |
| 43 | // by the PeerConnectionInterface API surface. |
| 44 | // The class currently is solely responsible for the following: |
| 45 | // - Managing the session state machine (signaling state). |
| 46 | // - Creating and initializing lower-level objects, like PortAllocator and |
| 47 | // BaseChannels. |
| 48 | // - Owning and managing the life cycle of the RtpSender/RtpReceiver and track |
| 49 | // objects. |
| 50 | // - Tracking the current and pending local/remote session descriptions. |
| 51 | // The class currently is jointly responsible for the following: |
| 52 | // - Parsing and interpreting SDP. |
| 53 | // - Generating offers and answers based on the current state. |
| 54 | // - The ICE state machine. |
| 55 | // - Generating stats. |
Steve Anton | 2d8609c | 2018-01-24 00:38:46 | [diff] [blame] | 56 | class PeerConnection : public PeerConnectionInternal, |
Steve Anton | 75737c0 | 2017-11-06 18:37:17 | [diff] [blame] | 57 | public DataChannelProviderInterface, |
Bjorn Mellem | 175aa2e | 2018-11-08 19:23:22 | [diff] [blame] | 58 | public DataChannelSink, |
Zhi Huang | 365381f | 2018-04-13 23:44:34 | [diff] [blame] | 59 | public JsepTransportController::Observer, |
Steve Anton | ad18276 | 2018-09-05 20:22:40 | [diff] [blame] | 60 | public rtc::MessageHandler, |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 | [diff] [blame] | 61 | public sigslot::has_slots<> { |
| 62 | public: |
Harald Alvestrand | 8ebba74 | 2018-05-31 12:00:34 | [diff] [blame] | 63 | enum class UsageEvent : int { |
| 64 | TURN_SERVER_ADDED = 0x01, |
| 65 | STUN_SERVER_ADDED = 0x02, |
| 66 | DATA_ADDED = 0x04, |
| 67 | AUDIO_ADDED = 0x08, |
| 68 | VIDEO_ADDED = 0x10, |
| 69 | SET_LOCAL_DESCRIPTION_CALLED = 0x20, |
| 70 | SET_REMOTE_DESCRIPTION_CALLED = 0x40, |
| 71 | CANDIDATE_COLLECTED = 0x80, |
| 72 | REMOTE_CANDIDATE_ADDED = 0x100, |
| 73 | ICE_STATE_CONNECTED = 0x200, |
Qingsi Wang | 7fc821d | 2018-07-12 19:54:53 | [diff] [blame] | 74 | CLOSE_CALLED = 0x400, |
Harald Alvestrand | 056d811 | 2018-07-16 17:18:58 | [diff] [blame] | 75 | PRIVATE_CANDIDATE_COLLECTED = 0x800, |
| 76 | MAX_VALUE = 0x1000, |
Harald Alvestrand | 8ebba74 | 2018-05-31 12:00:34 | [diff] [blame] | 77 | }; |
| 78 | |
zhihuang | 38ede13 | 2017-06-15 19:52:32 | [diff] [blame] | 79 | explicit PeerConnection(PeerConnectionFactory* factory, |
| 80 | std::unique_ptr<RtcEventLog> event_log, |
| 81 | std::unique_ptr<Call> call); |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 | [diff] [blame] | 82 | |
deadbeef | 653b8e0 | 2015-11-11 20:55:10 | [diff] [blame] | 83 | bool Initialize( |
| 84 | const PeerConnectionInterface::RTCConfiguration& configuration, |
Benjamin Wright | cab58888 | 2018-05-02 22:12:47 | [diff] [blame] | 85 | PeerConnectionDependencies dependencies); |
deadbeef | 653b8e0 | 2015-11-11 20:55:10 | [diff] [blame] | 86 | |
deadbeef | a67696b | 2015-09-29 18:56:26 | [diff] [blame] | 87 | rtc::scoped_refptr<StreamCollectionInterface> local_streams() override; |
| 88 | rtc::scoped_refptr<StreamCollectionInterface> remote_streams() override; |
| 89 | bool AddStream(MediaStreamInterface* local_stream) override; |
| 90 | void RemoveStream(MediaStreamInterface* local_stream) override; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 | [diff] [blame] | 91 | |
Steve Anton | 2d6c76a | 2018-01-06 01:10:52 | [diff] [blame] | 92 | RTCErrorOr<rtc::scoped_refptr<RtpSenderInterface>> AddTrack( |
Steve Anton | f9381f0 | 2017-12-14 18:23:57 | [diff] [blame] | 93 | rtc::scoped_refptr<MediaStreamTrackInterface> track, |
Seth Hampson | 845e878 | 2018-03-02 19:34:10 | [diff] [blame] | 94 | const std::vector<std::string>& stream_ids) override; |
deadbeef | e1f9d83 | 2016-01-14 23:35:42 | [diff] [blame] | 95 | bool RemoveTrack(RtpSenderInterface* sender) override; |
Steve Anton | 24db573 | 2018-07-23 17:27:33 | [diff] [blame] | 96 | RTCError RemoveTrackNew( |
| 97 | rtc::scoped_refptr<RtpSenderInterface> sender) override; |
deadbeef | e1f9d83 | 2016-01-14 23:35:42 | [diff] [blame] | 98 | |
Steve Anton | 9158ef6 | 2017-11-27 21:01:52 | [diff] [blame] | 99 | RTCErrorOr<rtc::scoped_refptr<RtpTransceiverInterface>> AddTransceiver( |
| 100 | rtc::scoped_refptr<MediaStreamTrackInterface> track) override; |
| 101 | RTCErrorOr<rtc::scoped_refptr<RtpTransceiverInterface>> AddTransceiver( |
| 102 | rtc::scoped_refptr<MediaStreamTrackInterface> track, |
| 103 | const RtpTransceiverInit& init) override; |
| 104 | RTCErrorOr<rtc::scoped_refptr<RtpTransceiverInterface>> AddTransceiver( |
| 105 | cricket::MediaType media_type) override; |
| 106 | RTCErrorOr<rtc::scoped_refptr<RtpTransceiverInterface>> AddTransceiver( |
| 107 | cricket::MediaType media_type, |
| 108 | const RtpTransceiverInit& init) override; |
| 109 | |
Steve Anton | 8c0f7a7 | 2017-10-03 17:03:10 | [diff] [blame] | 110 | // Gets the DTLS SSL certificate associated with the audio transport on the |
| 111 | // remote side. This will become populated once the DTLS connection with the |
| 112 | // peer has been completed, as indicated by the ICE connection state |
| 113 | // transitioning to kIceConnectionCompleted. |
| 114 | // Note that this will be removed once we implement RTCDtlsTransport which |
| 115 | // has standardized method for getting this information. |
| 116 | // See https://www.w3.org/TR/webrtc/#rtcdtlstransport-interface |
| 117 | std::unique_ptr<rtc::SSLCertificate> GetRemoteAudioSSLCertificate(); |
| 118 | |
Zhi Huang | 70b820f | 2018-01-27 22:16:15 | [diff] [blame] | 119 | // Version of the above method that returns the full certificate chain. |
| 120 | std::unique_ptr<rtc::SSLCertChain> GetRemoteAudioSSLCertChain(); |
| 121 | |
deadbeef | fac0655 | 2015-11-25 19:26:01 | [diff] [blame] | 122 | rtc::scoped_refptr<RtpSenderInterface> CreateSender( |
deadbeef | bd7d8f7 | 2015-12-19 00:58:44 | [diff] [blame] | 123 | const std::string& kind, |
| 124 | const std::string& stream_id) override; |
deadbeef | fac0655 | 2015-11-25 19:26:01 | [diff] [blame] | 125 | |
deadbeef | 70ab1a1 | 2015-09-28 23:53:55 | [diff] [blame] | 126 | std::vector<rtc::scoped_refptr<RtpSenderInterface>> GetSenders() |
| 127 | const override; |
| 128 | std::vector<rtc::scoped_refptr<RtpReceiverInterface>> GetReceivers() |
| 129 | const override; |
Steve Anton | 9158ef6 | 2017-11-27 21:01:52 | [diff] [blame] | 130 | std::vector<rtc::scoped_refptr<RtpTransceiverInterface>> GetTransceivers() |
| 131 | const override; |
deadbeef | 70ab1a1 | 2015-09-28 23:53:55 | [diff] [blame] | 132 | |
deadbeef | a67696b | 2015-09-29 18:56:26 | [diff] [blame] | 133 | rtc::scoped_refptr<DataChannelInterface> CreateDataChannel( |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 | [diff] [blame] | 134 | const std::string& label, |
deadbeef | a67696b | 2015-09-29 18:56:26 | [diff] [blame] | 135 | const DataChannelInit* config) override; |
Henrik Boström | 1df1bf8 | 2018-03-20 12:24:20 | [diff] [blame] | 136 | // WARNING: LEGACY. See peerconnectioninterface.h |
deadbeef | a67696b | 2015-09-29 18:56:26 | [diff] [blame] | 137 | bool GetStats(StatsObserver* observer, |
| 138 | webrtc::MediaStreamTrackInterface* track, |
| 139 | StatsOutputLevel level) override; |
Henrik Boström | 1df1bf8 | 2018-03-20 12:24:20 | [diff] [blame] | 140 | // Spec-complaint GetStats(). See peerconnectioninterface.h |
hbos | 74e1a4f | 2016-09-16 06:33:01 | [diff] [blame] | 141 | void GetStats(RTCStatsCollectorCallback* callback) override; |
Henrik Boström | 1df1bf8 | 2018-03-20 12:24:20 | [diff] [blame] | 142 | void GetStats( |
| 143 | rtc::scoped_refptr<RtpSenderInterface> selector, |
| 144 | rtc::scoped_refptr<RTCStatsCollectorCallback> callback) override; |
| 145 | void GetStats( |
| 146 | rtc::scoped_refptr<RtpReceiverInterface> selector, |
| 147 | rtc::scoped_refptr<RTCStatsCollectorCallback> callback) override; |
Harald Alvestrand | 8906187 | 2018-01-02 13:08:34 | [diff] [blame] | 148 | void ClearStatsCache() override; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 | [diff] [blame] | 149 | |
deadbeef | a67696b | 2015-09-29 18:56:26 | [diff] [blame] | 150 | SignalingState signaling_state() override; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 | [diff] [blame] | 151 | |
deadbeef | a67696b | 2015-09-29 18:56:26 | [diff] [blame] | 152 | IceConnectionState ice_connection_state() override; |
Jonas Olsson | 1204690 | 2018-12-06 10:25:14 | [diff] [blame] | 153 | IceConnectionState standardized_ice_connection_state() override; |
Jonas Olsson | 635474e | 2018-10-18 13:58:17 | [diff] [blame] | 154 | PeerConnectionState peer_connection_state() override; |
deadbeef | a67696b | 2015-09-29 18:56:26 | [diff] [blame] | 155 | IceGatheringState ice_gathering_state() override; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 | [diff] [blame] | 156 | |
deadbeef | a67696b | 2015-09-29 18:56:26 | [diff] [blame] | 157 | const SessionDescriptionInterface* local_description() const override; |
| 158 | const SessionDescriptionInterface* remote_description() const override; |
deadbeef | fe4a8a4 | 2016-12-21 01:56:17 | [diff] [blame] | 159 | const SessionDescriptionInterface* current_local_description() const override; |
| 160 | const SessionDescriptionInterface* current_remote_description() |
| 161 | const override; |
| 162 | const SessionDescriptionInterface* pending_local_description() const override; |
| 163 | const SessionDescriptionInterface* pending_remote_description() |
| 164 | const override; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 | [diff] [blame] | 165 | |
| 166 | // JSEP01 |
deadbeef | a67696b | 2015-09-29 18:56:26 | [diff] [blame] | 167 | void CreateOffer(CreateSessionDescriptionObserver* observer, |
| 168 | const RTCOfferAnswerOptions& options) override; |
hta | a2a49d9 | 2016-03-04 10:51:39 | [diff] [blame] | 169 | void CreateAnswer(CreateSessionDescriptionObserver* observer, |
| 170 | const RTCOfferAnswerOptions& options) override; |
deadbeef | a67696b | 2015-09-29 18:56:26 | [diff] [blame] | 171 | void SetLocalDescription(SetSessionDescriptionObserver* observer, |
| 172 | SessionDescriptionInterface* desc) override; |
Henrik Boström | a4ecf55 | 2017-11-23 14:17:07 | [diff] [blame] | 173 | void SetRemoteDescription(SetSessionDescriptionObserver* observer, |
| 174 | SessionDescriptionInterface* desc) override; |
Henrik Boström | 3163867 | 2017-11-23 16:48:32 | [diff] [blame] | 175 | void SetRemoteDescription( |
| 176 | std::unique_ptr<SessionDescriptionInterface> desc, |
| 177 | rtc::scoped_refptr<SetRemoteDescriptionObserverInterface> observer) |
| 178 | override; |
deadbeef | 46c7389 | 2016-11-17 03:42:04 | [diff] [blame] | 179 | PeerConnectionInterface::RTCConfiguration GetConfiguration() override; |
deadbeef | a67696b | 2015-09-29 18:56:26 | [diff] [blame] | 180 | bool SetConfiguration( |
deadbeef | 293e926 | 2017-01-11 20:28:30 | [diff] [blame] | 181 | const PeerConnectionInterface::RTCConfiguration& configuration, |
| 182 | RTCError* error) override; |
| 183 | bool SetConfiguration( |
| 184 | const PeerConnectionInterface::RTCConfiguration& configuration) override { |
| 185 | return SetConfiguration(configuration, nullptr); |
| 186 | } |
deadbeef | a67696b | 2015-09-29 18:56:26 | [diff] [blame] | 187 | bool AddIceCandidate(const IceCandidateInterface* candidate) override; |
Honghai Zhang | 7fb69db | 2016-03-14 18:59:18 | [diff] [blame] | 188 | bool RemoveIceCandidates( |
| 189 | const std::vector<cricket::Candidate>& candidates) override; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 | [diff] [blame] | 190 | |
Niels Möller | 0c4f7be | 2018-05-07 12:01:37 | [diff] [blame] | 191 | RTCError SetBitrate(const BitrateSettings& bitrate) override; |
zstein | 4b97980 | 2017-06-02 21:37:37 | [diff] [blame] | 192 | |
Alex Narest | 78609d5 | 2017-10-20 08:37:47 | [diff] [blame] | 193 | void SetBitrateAllocationStrategy( |
| 194 | std::unique_ptr<rtc::BitrateAllocationStrategy> |
| 195 | bitrate_allocation_strategy) override; |
| 196 | |
henrika | 5f6bf24 | 2017-11-01 10:06:56 | [diff] [blame] | 197 | void SetAudioPlayout(bool playout) override; |
| 198 | void SetAudioRecording(bool recording) override; |
| 199 | |
Harald Alvestrand | ad88c88 | 2018-11-28 15:47:46 | [diff] [blame] | 200 | rtc::scoped_refptr<DtlsTransportInterface> LookupDtlsTransportByMid( |
| 201 | const std::string& mid) override; |
Harald Alvestrand | 4a7b3ac | 2019-01-17 09:39:40 | [diff] [blame] | 202 | rtc::scoped_refptr<DtlsTransport> LookupDtlsTransportByMidInternal( |
| 203 | const std::string& mid); |
Harald Alvestrand | ad88c88 | 2018-11-28 15:47:46 | [diff] [blame] | 204 | |
Harald Alvestrand | c85328f | 2019-02-28 06:51:00 | [diff] [blame] | 205 | rtc::scoped_refptr<SctpTransportInterface> GetSctpTransport() const override; |
| 206 | |
Elad Alon | 99c3fe5 | 2017-10-13 14:29:40 | [diff] [blame] | 207 | RTC_DEPRECATED bool StartRtcEventLog(rtc::PlatformFile file, |
| 208 | int64_t max_size_bytes) override; |
Bjorn Terelius | de93943 | 2017-11-20 16:38:14 | [diff] [blame] | 209 | bool StartRtcEventLog(std::unique_ptr<RtcEventLogOutput> output, |
| 210 | int64_t output_period_ms) override; |
ivoc | 14d5dbe | 2016-07-04 14:06:55 | [diff] [blame] | 211 | void StopRtcEventLog() override; |
| 212 | |
deadbeef | a67696b | 2015-09-29 18:56:26 | [diff] [blame] | 213 | void Close() override; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 | [diff] [blame] | 214 | |
Steve Anton | 2d8609c | 2018-01-24 00:38:46 | [diff] [blame] | 215 | // PeerConnectionInternal implementation. |
Karl Wiberg | 4ae6347 | 2019-02-21 23:57:06 | [diff] [blame] | 216 | rtc::Thread* network_thread() const final { |
Steve Anton | 2d8609c | 2018-01-24 00:38:46 | [diff] [blame] | 217 | return factory_->network_thread(); |
| 218 | } |
Karl Wiberg | 4ae6347 | 2019-02-21 23:57:06 | [diff] [blame] | 219 | rtc::Thread* worker_thread() const final { return factory_->worker_thread(); } |
| 220 | rtc::Thread* signaling_thread() const final { |
Steve Anton | 2d8609c | 2018-01-24 00:38:46 | [diff] [blame] | 221 | return factory_->signaling_thread(); |
perkj | d61bf80 | 2016-03-24 10:16:19 | [diff] [blame] | 222 | } |
deadbeef | ab9b2d1 | 2015-10-14 18:33:11 | [diff] [blame] | 223 | |
Steve Anton | be5e208 | 2018-01-24 23:29:17 | [diff] [blame] | 224 | std::string session_id() const override { return session_id_; } |
Steve Anton | 75737c0 | 2017-11-06 18:37:17 | [diff] [blame] | 225 | |
Steve Anton | 2d8609c | 2018-01-24 00:38:46 | [diff] [blame] | 226 | bool initial_offerer() const override { |
Zhi Huang | e830e68 | 2018-03-30 17:48:35 | [diff] [blame] | 227 | return transport_controller_ && transport_controller_->initial_offerer(); |
Steve Anton | 2d8609c | 2018-01-24 00:38:46 | [diff] [blame] | 228 | } |
Steve Anton | 75737c0 | 2017-11-06 18:37:17 | [diff] [blame] | 229 | |
Steve Anton | 2d8609c | 2018-01-24 00:38:46 | [diff] [blame] | 230 | std::vector< |
| 231 | rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>> |
Steve Anton | b886711 | 2018-02-13 18:07:54 | [diff] [blame] | 232 | GetTransceiversInternal() const override { |
Steve Anton | 2d8609c | 2018-01-24 00:38:46 | [diff] [blame] | 233 | return transceivers_; |
| 234 | } |
| 235 | |
Steve Anton | a41959e | 2018-11-28 19:15:33 | [diff] [blame] | 236 | absl::string_view GetLocalTrackIdBySsrc(uint32_t ssrc) override; |
| 237 | absl::string_view GetRemoteTrackIdBySsrc(uint32_t ssrc) override; |
Steve Anton | 2d8609c | 2018-01-24 00:38:46 | [diff] [blame] | 238 | |
| 239 | sigslot::signal1<DataChannel*>& SignalDataChannelCreated() override { |
| 240 | return SignalDataChannelCreated_; |
| 241 | } |
| 242 | |
| 243 | cricket::RtpDataChannel* rtp_data_channel() const override { |
Steve Anton | 75737c0 | 2017-11-06 18:37:17 | [diff] [blame] | 244 | return rtp_data_channel_; |
Steve Anton | 978b876 | 2017-09-29 19:15:02 | [diff] [blame] | 245 | } |
Steve Anton | 2d8609c | 2018-01-24 00:38:46 | [diff] [blame] | 246 | |
Steve Anton | be5e208 | 2018-01-24 23:29:17 | [diff] [blame] | 247 | std::vector<rtc::scoped_refptr<DataChannel>> sctp_data_channels() |
Steve Anton | 2d8609c | 2018-01-24 00:38:46 | [diff] [blame] | 248 | const override { |
Karl Wiberg | 85a4a93 | 2019-03-22 14:29:58 | [diff] [blame^] | 249 | RTC_DCHECK_RUN_ON(signaling_thread()); |
Steve Anton | 2d8609c | 2018-01-24 00:38:46 | [diff] [blame] | 250 | return sctp_data_channels_; |
| 251 | } |
| 252 | |
Danil Chapovalov | 66cadcc | 2018-06-19 14:47:43 | [diff] [blame] | 253 | absl::optional<std::string> sctp_content_name() const override { |
Zhi Huang | e830e68 | 2018-03-30 17:48:35 | [diff] [blame] | 254 | return sctp_mid_; |
Steve Anton | 75737c0 | 2017-11-06 18:37:17 | [diff] [blame] | 255 | } |
Steve Anton | 2d8609c | 2018-01-24 00:38:46 | [diff] [blame] | 256 | |
Danil Chapovalov | 66cadcc | 2018-06-19 14:47:43 | [diff] [blame] | 257 | absl::optional<std::string> sctp_transport_name() const override; |
Steve Anton | 75737c0 | 2017-11-06 18:37:17 | [diff] [blame] | 258 | |
Qingsi Wang | 72a43a1 | 2018-02-21 00:03:18 | [diff] [blame] | 259 | cricket::CandidateStatsList GetPooledCandidateStats() const override; |
Steve Anton | 5dfde18 | 2018-02-06 18:34:40 | [diff] [blame] | 260 | std::map<std::string, std::string> GetTransportNamesByMid() const override; |
| 261 | std::map<std::string, cricket::TransportStats> GetTransportStatsByNames( |
| 262 | const std::set<std::string>& transport_names) override; |
Steve Anton | 2d8609c | 2018-01-24 00:38:46 | [diff] [blame] | 263 | Call::Stats GetCallStats() override; |
Steve Anton | 75737c0 | 2017-11-06 18:37:17 | [diff] [blame] | 264 | |
Steve Anton | 2d8609c | 2018-01-24 00:38:46 | [diff] [blame] | 265 | bool GetLocalCertificate( |
| 266 | const std::string& transport_name, |
| 267 | rtc::scoped_refptr<rtc::RTCCertificate>* certificate) override; |
Taylor Brandstetter | c392866 | 2018-02-23 21:04:51 | [diff] [blame] | 268 | std::unique_ptr<rtc::SSLCertChain> GetRemoteSSLCertChain( |
Steve Anton | 2d8609c | 2018-01-24 00:38:46 | [diff] [blame] | 269 | const std::string& transport_name) override; |
| 270 | bool IceRestartPending(const std::string& content_name) const override; |
| 271 | bool NeedsIceRestart(const std::string& content_name) const override; |
| 272 | bool GetSslRole(const std::string& content_name, rtc::SSLRole* role) override; |
Steve Anton | 7464fca | 2018-01-19 19:10:37 | [diff] [blame] | 273 | |
Harald Alvestrand | 1979384 | 2018-06-25 10:03:50 | [diff] [blame] | 274 | void ReturnHistogramVeryQuicklyForTesting() { |
| 275 | return_histogram_very_quickly_ = true; |
| 276 | } |
Harald Alvestrand | 7a1c7f7 | 2018-08-01 08:50:16 | [diff] [blame] | 277 | void RequestUsagePatternReportForTesting(); |
Harald Alvestrand | 1979384 | 2018-06-25 10:03:50 | [diff] [blame] | 278 | |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 | [diff] [blame] | 279 | protected: |
deadbeef | a67696b | 2015-09-29 18:56:26 | [diff] [blame] | 280 | ~PeerConnection() override; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 | [diff] [blame] | 281 | |
| 282 | private: |
Henrik Boström | 3163867 | 2017-11-23 16:48:32 | [diff] [blame] | 283 | class SetRemoteDescriptionObserverAdapter; |
| 284 | friend class SetRemoteDescriptionObserverAdapter; |
| 285 | |
Steve Anton | 4171afb | 2017-11-20 18:20:22 | [diff] [blame] | 286 | struct RtpSenderInfo { |
| 287 | RtpSenderInfo() : first_ssrc(0) {} |
Seth Hampson | 845e878 | 2018-03-02 19:34:10 | [diff] [blame] | 288 | RtpSenderInfo(const std::string& stream_id, |
Steve Anton | 4171afb | 2017-11-20 18:20:22 | [diff] [blame] | 289 | const std::string sender_id, |
| 290 | uint32_t ssrc) |
Seth Hampson | 845e878 | 2018-03-02 19:34:10 | [diff] [blame] | 291 | : stream_id(stream_id), sender_id(sender_id), first_ssrc(ssrc) {} |
Steve Anton | 4171afb | 2017-11-20 18:20:22 | [diff] [blame] | 292 | bool operator==(const RtpSenderInfo& other) { |
Seth Hampson | 845e878 | 2018-03-02 19:34:10 | [diff] [blame] | 293 | return this->stream_id == other.stream_id && |
Steve Anton | 4171afb | 2017-11-20 18:20:22 | [diff] [blame] | 294 | this->sender_id == other.sender_id && |
| 295 | this->first_ssrc == other.first_ssrc; |
deadbeef | bda7e0b | 2015-12-09 01:13:40 | [diff] [blame] | 296 | } |
Seth Hampson | 845e878 | 2018-03-02 19:34:10 | [diff] [blame] | 297 | std::string stream_id; |
Steve Anton | 4171afb | 2017-11-20 18:20:22 | [diff] [blame] | 298 | std::string sender_id; |
| 299 | // An RtpSender can have many SSRCs. The first one is used as a sort of ID |
| 300 | // for communicating with the lower layers. |
| 301 | uint32_t first_ssrc; |
deadbeef | ab9b2d1 | 2015-10-14 18:33:11 | [diff] [blame] | 302 | }; |
deadbeef | ab9b2d1 | 2015-10-14 18:33:11 | [diff] [blame] | 303 | |
Steve Anton | ad18276 | 2018-09-05 20:22:40 | [diff] [blame] | 304 | // Implements MessageHandler. |
| 305 | void OnMessage(rtc::Message* msg) override; |
| 306 | |
Steve Anton | afb0bb7 | 2018-02-20 19:35:37 | [diff] [blame] | 307 | // Plan B helpers for getting the voice/video media channels for the single |
| 308 | // audio/video transceiver, if it exists. |
Karl Wiberg | 5966c50 | 2019-02-21 22:55:09 | [diff] [blame] | 309 | cricket::VoiceMediaChannel* voice_media_channel() const |
| 310 | RTC_RUN_ON(signaling_thread()); |
| 311 | cricket::VideoMediaChannel* video_media_channel() const |
| 312 | RTC_RUN_ON(signaling_thread()); |
Steve Anton | 6077675 | 2018-01-10 19:51:34 | [diff] [blame] | 313 | |
Steve Anton | 4171afb | 2017-11-20 18:20:22 | [diff] [blame] | 314 | std::vector<rtc::scoped_refptr<RtpSenderProxyWithInternal<RtpSenderInternal>>> |
| 315 | GetSendersInternal() const; |
| 316 | std::vector< |
| 317 | rtc::scoped_refptr<RtpReceiverProxyWithInternal<RtpReceiverInternal>>> |
| 318 | GetReceiversInternal() const; |
| 319 | |
| 320 | rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>> |
Karl Wiberg | 5966c50 | 2019-02-21 22:55:09 | [diff] [blame] | 321 | GetAudioTransceiver() const RTC_RUN_ON(signaling_thread()); |
Steve Anton | 4171afb | 2017-11-20 18:20:22 | [diff] [blame] | 322 | rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>> |
Karl Wiberg | 5966c50 | 2019-02-21 22:55:09 | [diff] [blame] | 323 | GetVideoTransceiver() const RTC_RUN_ON(signaling_thread()); |
Steve Anton | 4171afb | 2017-11-20 18:20:22 | [diff] [blame] | 324 | |
Steve Anton | afb0bb7 | 2018-02-20 19:35:37 | [diff] [blame] | 325 | rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>> |
| 326 | GetFirstAudioTransceiver() const; |
| 327 | |
deadbeef | ab9b2d1 | 2015-10-14 18:33:11 | [diff] [blame] | 328 | void CreateAudioReceiver(MediaStreamInterface* stream, |
Karl Wiberg | 744310f | 2019-02-14 09:18:56 | [diff] [blame] | 329 | const RtpSenderInfo& remote_sender_info) |
| 330 | RTC_RUN_ON(signaling_thread()); |
perkj | f0dcfe2 | 2016-03-10 17:32:00 | [diff] [blame] | 331 | |
deadbeef | ab9b2d1 | 2015-10-14 18:33:11 | [diff] [blame] | 332 | void CreateVideoReceiver(MediaStreamInterface* stream, |
Karl Wiberg | 744310f | 2019-02-14 09:18:56 | [diff] [blame] | 333 | const RtpSenderInfo& remote_sender_info) |
| 334 | RTC_RUN_ON(signaling_thread()); |
Henrik Boström | 933d8b0 | 2017-10-10 17:05:16 | [diff] [blame] | 335 | rtc::scoped_refptr<RtpReceiverInterface> RemoveAndStopReceiver( |
Karl Wiberg | 5966c50 | 2019-02-21 22:55:09 | [diff] [blame] | 336 | const RtpSenderInfo& remote_sender_info) RTC_RUN_ON(signaling_thread()); |
korniltsev.anatoly | ec390b5 | 2017-07-25 00:00:25 | [diff] [blame] | 337 | |
| 338 | // May be called either by AddStream/RemoveStream, or when a track is |
| 339 | // added/removed from a stream previously added via AddStream. |
Karl Wiberg | 5966c50 | 2019-02-21 22:55:09 | [diff] [blame] | 340 | void AddAudioTrack(AudioTrackInterface* track, MediaStreamInterface* stream) |
| 341 | RTC_RUN_ON(signaling_thread()); |
korniltsev.anatoly | ec390b5 | 2017-07-25 00:00:25 | [diff] [blame] | 342 | void RemoveAudioTrack(AudioTrackInterface* track, |
Karl Wiberg | 5966c50 | 2019-02-21 22:55:09 | [diff] [blame] | 343 | MediaStreamInterface* stream) |
| 344 | RTC_RUN_ON(signaling_thread()); |
| 345 | void AddVideoTrack(VideoTrackInterface* track, MediaStreamInterface* stream) |
| 346 | RTC_RUN_ON(signaling_thread()); |
korniltsev.anatoly | ec390b5 | 2017-07-25 00:00:25 | [diff] [blame] | 347 | void RemoveVideoTrack(VideoTrackInterface* track, |
Karl Wiberg | 5966c50 | 2019-02-21 22:55:09 | [diff] [blame] | 348 | MediaStreamInterface* stream) |
| 349 | RTC_RUN_ON(signaling_thread()); |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 | [diff] [blame] | 350 | |
Steve Anton | f9381f0 | 2017-12-14 18:23:57 | [diff] [blame] | 351 | // AddTrack implementation when Unified Plan is specified. |
| 352 | RTCErrorOr<rtc::scoped_refptr<RtpSenderInterface>> AddTrackUnifiedPlan( |
| 353 | rtc::scoped_refptr<MediaStreamTrackInterface> track, |
Seth Hampson | 845e878 | 2018-03-02 19:34:10 | [diff] [blame] | 354 | const std::vector<std::string>& stream_ids); |
Steve Anton | f9381f0 | 2017-12-14 18:23:57 | [diff] [blame] | 355 | // AddTrack implementation when Plan B is specified. |
| 356 | RTCErrorOr<rtc::scoped_refptr<RtpSenderInterface>> AddTrackPlanB( |
| 357 | rtc::scoped_refptr<MediaStreamTrackInterface> track, |
Karl Wiberg | 5966c50 | 2019-02-21 22:55:09 | [diff] [blame] | 358 | const std::vector<std::string>& stream_ids) |
| 359 | RTC_RUN_ON(signaling_thread()); |
Steve Anton | f9381f0 | 2017-12-14 18:23:57 | [diff] [blame] | 360 | |
| 361 | // Returns the first RtpTransceiver suitable for a newly added track, if such |
| 362 | // transceiver is available. |
| 363 | rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>> |
| 364 | FindFirstTransceiverForAddedTrack( |
| 365 | rtc::scoped_refptr<MediaStreamTrackInterface> track); |
| 366 | |
Steve Anton | f9381f0 | 2017-12-14 18:23:57 | [diff] [blame] | 367 | rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>> |
| 368 | FindTransceiverBySender(rtc::scoped_refptr<RtpSenderInterface> sender); |
| 369 | |
Steve Anton | 22da89f | 2018-01-25 21:58:07 | [diff] [blame] | 370 | // Internal implementation for AddTransceiver family of methods. If |
| 371 | // |fire_callback| is set, fires OnRenegotiationNeeded callback if successful. |
Steve Anton | 9158ef6 | 2017-11-27 21:01:52 | [diff] [blame] | 372 | RTCErrorOr<rtc::scoped_refptr<RtpTransceiverInterface>> AddTransceiver( |
| 373 | cricket::MediaType media_type, |
| 374 | rtc::scoped_refptr<MediaStreamTrackInterface> track, |
Steve Anton | 22da89f | 2018-01-25 21:58:07 | [diff] [blame] | 375 | const RtpTransceiverInit& init, |
Karl Wiberg | 744310f | 2019-02-14 09:18:56 | [diff] [blame] | 376 | bool fire_callback = true) RTC_RUN_ON(signaling_thread()); |
Steve Anton | 9158ef6 | 2017-11-27 21:01:52 | [diff] [blame] | 377 | |
Steve Anton | 02ee47c | 2018-01-11 00:26:06 | [diff] [blame] | 378 | rtc::scoped_refptr<RtpSenderProxyWithInternal<RtpSenderInternal>> |
| 379 | CreateSender(cricket::MediaType media_type, |
Steve Anton | 111fdfd | 2018-06-25 20:03:36 | [diff] [blame] | 380 | const std::string& id, |
Steve Anton | 02ee47c | 2018-01-11 00:26:06 | [diff] [blame] | 381 | rtc::scoped_refptr<MediaStreamTrackInterface> track, |
Florent Castelli | 892acf0 | 2018-10-01 20:47:20 | [diff] [blame] | 382 | const std::vector<std::string>& stream_ids, |
| 383 | const std::vector<RtpEncodingParameters>& send_encodings); |
Steve Anton | 02ee47c | 2018-01-11 00:26:06 | [diff] [blame] | 384 | |
| 385 | rtc::scoped_refptr<RtpReceiverProxyWithInternal<RtpReceiverInternal>> |
| 386 | CreateReceiver(cricket::MediaType media_type, const std::string& receiver_id); |
| 387 | |
Steve Anton | f9381f0 | 2017-12-14 18:23:57 | [diff] [blame] | 388 | // Create a new RtpTransceiver of the given type and add it to the list of |
| 389 | // transceivers. |
| 390 | rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>> |
Steve Anton | 02ee47c | 2018-01-11 00:26:06 | [diff] [blame] | 391 | CreateAndAddTransceiver( |
| 392 | rtc::scoped_refptr<RtpSenderProxyWithInternal<RtpSenderInternal>> sender, |
| 393 | rtc::scoped_refptr<RtpReceiverProxyWithInternal<RtpReceiverInternal>> |
| 394 | receiver); |
Steve Anton | f9381f0 | 2017-12-14 18:23:57 | [diff] [blame] | 395 | |
Karl Wiberg | 744310f | 2019-02-14 09:18:56 | [diff] [blame] | 396 | void SetIceConnectionState(IceConnectionState new_state) |
| 397 | RTC_RUN_ON(signaling_thread()); |
Jonas Olsson | 635474e | 2018-10-18 13:58:17 | [diff] [blame] | 398 | void SetStandardizedIceConnectionState( |
Karl Wiberg | 744310f | 2019-02-14 09:18:56 | [diff] [blame] | 399 | PeerConnectionInterface::IceConnectionState new_state) |
| 400 | RTC_RUN_ON(signaling_thread()); |
Jonas Olsson | 635474e | 2018-10-18 13:58:17 | [diff] [blame] | 401 | void SetConnectionState( |
Karl Wiberg | 744310f | 2019-02-14 09:18:56 | [diff] [blame] | 402 | PeerConnectionInterface::PeerConnectionState new_state) |
| 403 | RTC_RUN_ON(signaling_thread()); |
Jonas Olsson | 635474e | 2018-10-18 13:58:17 | [diff] [blame] | 404 | |
Steve Anton | ba81867 | 2017-11-06 18:21:57 | [diff] [blame] | 405 | // Called any time the IceGatheringState changes |
Karl Wiberg | 744310f | 2019-02-14 09:18:56 | [diff] [blame] | 406 | void OnIceGatheringChange(IceGatheringState new_state) |
| 407 | RTC_RUN_ON(signaling_thread()); |
Steve Anton | ba81867 | 2017-11-06 18:21:57 | [diff] [blame] | 408 | // New ICE candidate has been gathered. |
Karl Wiberg | 744310f | 2019-02-14 09:18:56 | [diff] [blame] | 409 | void OnIceCandidate(std::unique_ptr<IceCandidateInterface> candidate) |
| 410 | RTC_RUN_ON(signaling_thread()); |
Steve Anton | ba81867 | 2017-11-06 18:21:57 | [diff] [blame] | 411 | // Some local ICE candidates have been removed. |
Karl Wiberg | 744310f | 2019-02-14 09:18:56 | [diff] [blame] | 412 | void OnIceCandidatesRemoved(const std::vector<cricket::Candidate>& candidates) |
| 413 | RTC_RUN_ON(signaling_thread()); |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 | [diff] [blame] | 414 | |
Steve Anton | ba81867 | 2017-11-06 18:21:57 | [diff] [blame] | 415 | // Update the state, signaling if necessary. |
Karl Wiberg | 744310f | 2019-02-14 09:18:56 | [diff] [blame] | 416 | void ChangeSignalingState(SignalingState signaling_state) |
| 417 | RTC_RUN_ON(signaling_thread()); |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 | [diff] [blame] | 418 | |
deadbeef | eb45981 | 2015-12-16 03:24:43 | [diff] [blame] | 419 | // Signals from MediaStreamObserver. |
| 420 | void OnAudioTrackAdded(AudioTrackInterface* track, |
Karl Wiberg | 744310f | 2019-02-14 09:18:56 | [diff] [blame] | 421 | MediaStreamInterface* stream) |
| 422 | RTC_RUN_ON(signaling_thread()); |
deadbeef | eb45981 | 2015-12-16 03:24:43 | [diff] [blame] | 423 | void OnAudioTrackRemoved(AudioTrackInterface* track, |
Karl Wiberg | 744310f | 2019-02-14 09:18:56 | [diff] [blame] | 424 | MediaStreamInterface* stream) |
| 425 | RTC_RUN_ON(signaling_thread()); |
deadbeef | eb45981 | 2015-12-16 03:24:43 | [diff] [blame] | 426 | void OnVideoTrackAdded(VideoTrackInterface* track, |
Karl Wiberg | 744310f | 2019-02-14 09:18:56 | [diff] [blame] | 427 | MediaStreamInterface* stream) |
| 428 | RTC_RUN_ON(signaling_thread()); |
deadbeef | eb45981 | 2015-12-16 03:24:43 | [diff] [blame] | 429 | void OnVideoTrackRemoved(VideoTrackInterface* track, |
Karl Wiberg | 744310f | 2019-02-14 09:18:56 | [diff] [blame] | 430 | MediaStreamInterface* stream) |
| 431 | RTC_RUN_ON(signaling_thread()); |
deadbeef | eb45981 | 2015-12-16 03:24:43 | [diff] [blame] | 432 | |
Henrik Boström | 3163867 | 2017-11-23 16:48:32 | [diff] [blame] | 433 | void PostSetSessionDescriptionSuccess( |
| 434 | SetSessionDescriptionObserver* observer); |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 | [diff] [blame] | 435 | void PostSetSessionDescriptionFailure(SetSessionDescriptionObserver* observer, |
Steve Anton | ad18276 | 2018-09-05 20:22:40 | [diff] [blame] | 436 | RTCError&& error); |
deadbeef | ab9b2d1 | 2015-10-14 18:33:11 | [diff] [blame] | 437 | void PostCreateSessionDescriptionFailure( |
| 438 | CreateSessionDescriptionObserver* observer, |
Harald Alvestrand | 5081c0c | 2018-03-09 14:18:03 | [diff] [blame] | 439 | RTCError error); |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 | [diff] [blame] | 440 | |
Steve Anton | 8a00691 | 2017-12-04 23:25:56 | [diff] [blame] | 441 | // Synchronous implementations of SetLocalDescription/SetRemoteDescription |
| 442 | // that return an RTCError instead of invoking a callback. |
| 443 | RTCError ApplyLocalDescription( |
| 444 | std::unique_ptr<SessionDescriptionInterface> desc); |
| 445 | RTCError ApplyRemoteDescription( |
| 446 | std::unique_ptr<SessionDescriptionInterface> desc); |
| 447 | |
Steve Anton | dcc3c02 | 2017-12-23 00:02:54 | [diff] [blame] | 448 | // Updates the local RtpTransceivers according to the JSEP rules. Called as |
| 449 | // part of setting the local/remote description. |
| 450 | RTCError UpdateTransceiversAndDataChannels( |
| 451 | cricket::ContentSource source, |
Seth Hampson | ae8a90a | 2018-02-13 23:33:48 | [diff] [blame] | 452 | const SessionDescriptionInterface& new_session, |
| 453 | const SessionDescriptionInterface* old_local_description, |
Karl Wiberg | 106d92d | 2019-02-14 09:17:47 | [diff] [blame] | 454 | const SessionDescriptionInterface* old_remote_description) |
| 455 | RTC_RUN_ON(signaling_thread()); |
Steve Anton | dcc3c02 | 2017-12-23 00:02:54 | [diff] [blame] | 456 | |
| 457 | // Either creates or destroys the transceiver's BaseChannel according to the |
| 458 | // given media section. |
| 459 | RTCError UpdateTransceiverChannel( |
| 460 | rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>> |
| 461 | transceiver, |
| 462 | const cricket::ContentInfo& content, |
Karl Wiberg | 5966c50 | 2019-02-21 22:55:09 | [diff] [blame] | 463 | const cricket::ContentGroup* bundle_group) RTC_RUN_ON(signaling_thread()); |
Steve Anton | dcc3c02 | 2017-12-23 00:02:54 | [diff] [blame] | 464 | |
Steve Anton | fa2260d | 2017-12-29 00:38:23 | [diff] [blame] | 465 | // Either creates or destroys the local data channel according to the given |
| 466 | // media section. |
| 467 | RTCError UpdateDataChannel(cricket::ContentSource source, |
| 468 | const cricket::ContentInfo& content, |
Karl Wiberg | 106d92d | 2019-02-14 09:17:47 | [diff] [blame] | 469 | const cricket::ContentGroup* bundle_group) |
| 470 | RTC_RUN_ON(signaling_thread()); |
Steve Anton | fa2260d | 2017-12-29 00:38:23 | [diff] [blame] | 471 | |
Steve Anton | dcc3c02 | 2017-12-23 00:02:54 | [diff] [blame] | 472 | // Associate the given transceiver according to the JSEP rules. |
| 473 | RTCErrorOr< |
| 474 | rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>> |
| 475 | AssociateTransceiver(cricket::ContentSource source, |
Seth Hampson | ae8a90a | 2018-02-13 23:33:48 | [diff] [blame] | 476 | SdpType type, |
Steve Anton | dcc3c02 | 2017-12-23 00:02:54 | [diff] [blame] | 477 | size_t mline_index, |
| 478 | const cricket::ContentInfo& content, |
Seth Hampson | ae8a90a | 2018-02-13 23:33:48 | [diff] [blame] | 479 | const cricket::ContentInfo* old_local_content, |
Karl Wiberg | 5966c50 | 2019-02-21 22:55:09 | [diff] [blame] | 480 | const cricket::ContentInfo* old_remote_content) |
| 481 | RTC_RUN_ON(signaling_thread()); |
Steve Anton | dcc3c02 | 2017-12-23 00:02:54 | [diff] [blame] | 482 | |
| 483 | // Returns the RtpTransceiver, if found, that is associated to the given MID. |
| 484 | rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>> |
Karl Wiberg | 5966c50 | 2019-02-21 22:55:09 | [diff] [blame] | 485 | GetAssociatedTransceiver(const std::string& mid) const |
| 486 | RTC_RUN_ON(signaling_thread()); |
Steve Anton | dcc3c02 | 2017-12-23 00:02:54 | [diff] [blame] | 487 | |
| 488 | // Returns the RtpTransceiver, if found, that was assigned to the given mline |
| 489 | // index in CreateOffer. |
| 490 | rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>> |
Karl Wiberg | 5966c50 | 2019-02-21 22:55:09 | [diff] [blame] | 491 | GetTransceiverByMLineIndex(size_t mline_index) const |
| 492 | RTC_RUN_ON(signaling_thread()); |
Steve Anton | dcc3c02 | 2017-12-23 00:02:54 | [diff] [blame] | 493 | |
| 494 | // Returns an RtpTransciever, if available, that can be used to receive the |
| 495 | // given media type according to JSEP rules. |
| 496 | rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>> |
Karl Wiberg | 5966c50 | 2019-02-21 22:55:09 | [diff] [blame] | 497 | FindAvailableTransceiverToReceive(cricket::MediaType media_type) const |
| 498 | RTC_RUN_ON(signaling_thread()); |
Steve Anton | dcc3c02 | 2017-12-23 00:02:54 | [diff] [blame] | 499 | |
Steve Anton | ed10bd9 | 2017-12-05 18:52:59 | [diff] [blame] | 500 | // Returns the media section in the given session description that is |
| 501 | // associated with the RtpTransceiver. Returns null if none found or this |
| 502 | // RtpTransceiver is not associated. Logic varies depending on the |
| 503 | // SdpSemantics specified in the configuration. |
| 504 | const cricket::ContentInfo* FindMediaSectionForTransceiver( |
| 505 | rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>> |
| 506 | transceiver, |
Karl Wiberg | 5966c50 | 2019-02-21 22:55:09 | [diff] [blame] | 507 | const SessionDescriptionInterface* sdesc) const |
| 508 | RTC_RUN_ON(signaling_thread()); |
Steve Anton | ed10bd9 | 2017-12-05 18:52:59 | [diff] [blame] | 509 | |
Henrik Boström | afa07dd | 2018-12-20 10:06:02 | [diff] [blame] | 510 | // Runs the algorithm **set the associated remote streams** specified in |
| 511 | // https://w3c.github.io/webrtc-pc/#set-associated-remote-streams. |
| 512 | void SetAssociatedRemoteStreams( |
| 513 | rtc::scoped_refptr<RtpReceiverInternal> receiver, |
| 514 | const std::vector<std::string>& stream_ids, |
| 515 | std::vector<rtc::scoped_refptr<MediaStreamInterface>>* added_streams, |
Karl Wiberg | 1e1e102 | 2019-03-22 13:27:22 | [diff] [blame] | 516 | std::vector<rtc::scoped_refptr<MediaStreamInterface>>* removed_streams) |
| 517 | RTC_RUN_ON(signaling_thread()); |
Henrik Boström | afa07dd | 2018-12-20 10:06:02 | [diff] [blame] | 518 | |
Steve Anton | 0f5400a | 2018-07-17 21:25:36 | [diff] [blame] | 519 | // Runs the algorithm **process the removal of a remote track** specified in |
| 520 | // the WebRTC specification. |
| 521 | // This method will update the following lists: |
| 522 | // |remove_list| is the list of transceivers for which the receiving track is |
| 523 | // being removed. |
| 524 | // |removed_streams| is the list of streams which no longer have a receiving |
| 525 | // track so should be removed. |
| 526 | // https://w3c.github.io/webrtc-pc/#process-remote-track-removal |
| 527 | void ProcessRemovalOfRemoteTrack( |
| 528 | rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>> |
| 529 | transceiver, |
| 530 | std::vector<rtc::scoped_refptr<RtpTransceiverInterface>>* remove_list, |
Karl Wiberg | 1e1e102 | 2019-03-22 13:27:22 | [diff] [blame] | 531 | std::vector<rtc::scoped_refptr<MediaStreamInterface>>* removed_streams) |
| 532 | RTC_RUN_ON(signaling_thread()); |
Steve Anton | 0f5400a | 2018-07-17 21:25:36 | [diff] [blame] | 533 | |
Henrik Boström | afa07dd | 2018-12-20 10:06:02 | [diff] [blame] | 534 | void RemoveRemoteStreamsIfEmpty( |
| 535 | const std::vector<rtc::scoped_refptr<MediaStreamInterface>>& |
| 536 | remote_streams, |
Karl Wiberg | 1e1e102 | 2019-03-22 13:27:22 | [diff] [blame] | 537 | std::vector<rtc::scoped_refptr<MediaStreamInterface>>* removed_streams) |
| 538 | RTC_RUN_ON(signaling_thread()); |
Henrik Boström | afa07dd | 2018-12-20 10:06:02 | [diff] [blame] | 539 | |
Steve Anton | 52d8677 | 2018-02-20 23:48:12 | [diff] [blame] | 540 | void OnNegotiationNeeded(); |
| 541 | |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 | [diff] [blame] | 542 | bool IsClosed() const { |
Karl Wiberg | 8d2e228 | 2019-02-17 12:00:07 | [diff] [blame] | 543 | RTC_DCHECK_RUN_ON(signaling_thread()); |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 | [diff] [blame] | 544 | return signaling_state_ == PeerConnectionInterface::kClosed; |
| 545 | } |
| 546 | |
deadbeef | ab9b2d1 | 2015-10-14 18:33:11 | [diff] [blame] | 547 | // Returns a MediaSessionOptions struct with options decided by |options|, |
| 548 | // the local MediaStreams and DataChannels. |
Steve Anton | dcc3c02 | 2017-12-23 00:02:54 | [diff] [blame] | 549 | void GetOptionsForOffer(const PeerConnectionInterface::RTCOfferAnswerOptions& |
| 550 | offer_answer_options, |
Karl Wiberg | 5966c50 | 2019-02-21 22:55:09 | [diff] [blame] | 551 | cricket::MediaSessionOptions* session_options) |
| 552 | RTC_RUN_ON(signaling_thread()); |
Steve Anton | dcc3c02 | 2017-12-23 00:02:54 | [diff] [blame] | 553 | void GetOptionsForPlanBOffer( |
| 554 | const PeerConnectionInterface::RTCOfferAnswerOptions& |
| 555 | offer_answer_options, |
Karl Wiberg | 5966c50 | 2019-02-21 22:55:09 | [diff] [blame] | 556 | cricket::MediaSessionOptions* session_options) |
| 557 | RTC_RUN_ON(signaling_thread()); |
Steve Anton | dcc3c02 | 2017-12-23 00:02:54 | [diff] [blame] | 558 | void GetOptionsForUnifiedPlanOffer( |
| 559 | const PeerConnectionInterface::RTCOfferAnswerOptions& |
| 560 | offer_answer_options, |
Karl Wiberg | 5966c50 | 2019-02-21 22:55:09 | [diff] [blame] | 561 | cricket::MediaSessionOptions* session_options) |
| 562 | RTC_RUN_ON(signaling_thread()); |
deadbeef | ab9b2d1 | 2015-10-14 18:33:11 | [diff] [blame] | 563 | |
Karl Wiberg | 5966c50 | 2019-02-21 22:55:09 | [diff] [blame] | 564 | RTCError HandleLegacyOfferOptions(const RTCOfferAnswerOptions& options) |
| 565 | RTC_RUN_ON(signaling_thread()); |
Steve Anton | 22da89f | 2018-01-25 21:58:07 | [diff] [blame] | 566 | void RemoveRecvDirectionFromReceivingTransceiversOfType( |
| 567 | cricket::MediaType media_type); |
| 568 | void AddUpToOneReceivingTransceiverOfType(cricket::MediaType media_type); |
| 569 | std::vector< |
| 570 | rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>> |
| 571 | GetReceivingTransceiversOfType(cricket::MediaType media_type); |
| 572 | |
deadbeef | ab9b2d1 | 2015-10-14 18:33:11 | [diff] [blame] | 573 | // Returns a MediaSessionOptions struct with options decided by |
| 574 | // |constraints|, the local MediaStreams and DataChannels. |
Steve Anton | dcc3c02 | 2017-12-23 00:02:54 | [diff] [blame] | 575 | void GetOptionsForAnswer(const RTCOfferAnswerOptions& offer_answer_options, |
Karl Wiberg | 5966c50 | 2019-02-21 22:55:09 | [diff] [blame] | 576 | cricket::MediaSessionOptions* session_options) |
| 577 | RTC_RUN_ON(signaling_thread()); |
Steve Anton | dcc3c02 | 2017-12-23 00:02:54 | [diff] [blame] | 578 | void GetOptionsForPlanBAnswer( |
| 579 | const PeerConnectionInterface::RTCOfferAnswerOptions& |
| 580 | offer_answer_options, |
Karl Wiberg | 5966c50 | 2019-02-21 22:55:09 | [diff] [blame] | 581 | cricket::MediaSessionOptions* session_options) |
| 582 | RTC_RUN_ON(signaling_thread()); |
Steve Anton | dcc3c02 | 2017-12-23 00:02:54 | [diff] [blame] | 583 | void GetOptionsForUnifiedPlanAnswer( |
| 584 | const PeerConnectionInterface::RTCOfferAnswerOptions& |
| 585 | offer_answer_options, |
Karl Wiberg | 5966c50 | 2019-02-21 22:55:09 | [diff] [blame] | 586 | cricket::MediaSessionOptions* session_options) |
| 587 | RTC_RUN_ON(signaling_thread()); |
hta | a2a49d9 | 2016-03-04 10:51:39 | [diff] [blame] | 588 | |
zhihuang | 1c378ed | 2017-08-17 21:10:50 | [diff] [blame] | 589 | // Generates MediaDescriptionOptions for the |session_opts| based on existing |
| 590 | // local description or remote description. |
| 591 | void GenerateMediaDescriptionOptions( |
| 592 | const SessionDescriptionInterface* session_desc, |
Steve Anton | 1d03a75 | 2017-11-27 22:30:09 | [diff] [blame] | 593 | RtpTransceiverDirection audio_direction, |
| 594 | RtpTransceiverDirection video_direction, |
Danil Chapovalov | 66cadcc | 2018-06-19 14:47:43 | [diff] [blame] | 595 | absl::optional<size_t>* audio_index, |
| 596 | absl::optional<size_t>* video_index, |
| 597 | absl::optional<size_t>* data_index, |
Karl Wiberg | 85a4a93 | 2019-03-22 14:29:58 | [diff] [blame^] | 598 | cricket::MediaSessionOptions* session_options) |
| 599 | RTC_RUN_ON(signaling_thread()); |
deadbeef | ab9b2d1 | 2015-10-14 18:33:11 | [diff] [blame] | 600 | |
Steve Anton | fa2260d | 2017-12-29 00:38:23 | [diff] [blame] | 601 | // Generates the active MediaDescriptionOptions for the local data channel |
| 602 | // given the specified MID. |
| 603 | cricket::MediaDescriptionOptions GetMediaDescriptionOptionsForActiveData( |
Karl Wiberg | 85a4a93 | 2019-03-22 14:29:58 | [diff] [blame^] | 604 | const std::string& mid) const RTC_RUN_ON(signaling_thread()); |
Steve Anton | fa2260d | 2017-12-29 00:38:23 | [diff] [blame] | 605 | |
| 606 | // Generates the rejected MediaDescriptionOptions for the local data channel |
| 607 | // given the specified MID. |
| 608 | cricket::MediaDescriptionOptions GetMediaDescriptionOptionsForRejectedData( |
Karl Wiberg | 85a4a93 | 2019-03-22 14:29:58 | [diff] [blame^] | 609 | const std::string& mid) const RTC_RUN_ON(signaling_thread()); |
Steve Anton | fa2260d | 2017-12-29 00:38:23 | [diff] [blame] | 610 | |
| 611 | // Returns the MID for the data section associated with either the |
| 612 | // RtpDataChannel or SCTP data channel, if it has been set. If no data |
| 613 | // channels are configured this will return nullopt. |
Danil Chapovalov | 66cadcc | 2018-06-19 14:47:43 | [diff] [blame] | 614 | absl::optional<std::string> GetDataMid() const; |
Steve Anton | fa2260d | 2017-12-29 00:38:23 | [diff] [blame] | 615 | |
Steve Anton | 4171afb | 2017-11-20 18:20:22 | [diff] [blame] | 616 | // Remove all local and remote senders of type |media_type|. |
deadbeef | faac497 | 2015-11-12 23:33:07 | [diff] [blame] | 617 | // Called when a media type is rejected (m-line set to port 0). |
Karl Wiberg | 744310f | 2019-02-14 09:18:56 | [diff] [blame] | 618 | void RemoveSenders(cricket::MediaType media_type) |
| 619 | RTC_RUN_ON(signaling_thread()); |
deadbeef | faac497 | 2015-11-12 23:33:07 | [diff] [blame] | 620 | |
deadbeef | bda7e0b | 2015-12-09 01:13:40 | [diff] [blame] | 621 | // Makes sure a MediaStreamTrack is created for each StreamParam in |streams|, |
| 622 | // and existing MediaStreamTracks are removed if there is no corresponding |
| 623 | // StreamParam. If |default_track_needed| is true, a default MediaStreamTrack |
| 624 | // is created if it doesn't exist; if false, it's removed if it exists. |
| 625 | // |media_type| is the type of the |streams| and can be either audio or video. |
deadbeef | ab9b2d1 | 2015-10-14 18:33:11 | [diff] [blame] | 626 | // If a new MediaStream is created it is added to |new_streams|. |
Steve Anton | 4171afb | 2017-11-20 18:20:22 | [diff] [blame] | 627 | void UpdateRemoteSendersList( |
deadbeef | ab9b2d1 | 2015-10-14 18:33:11 | [diff] [blame] | 628 | const std::vector<cricket::StreamParams>& streams, |
deadbeef | bda7e0b | 2015-12-09 01:13:40 | [diff] [blame] | 629 | bool default_track_needed, |
deadbeef | ab9b2d1 | 2015-10-14 18:33:11 | [diff] [blame] | 630 | cricket::MediaType media_type, |
Karl Wiberg | 744310f | 2019-02-14 09:18:56 | [diff] [blame] | 631 | StreamCollection* new_streams) RTC_RUN_ON(signaling_thread()); |
deadbeef | ab9b2d1 | 2015-10-14 18:33:11 | [diff] [blame] | 632 | |
Steve Anton | 4171afb | 2017-11-20 18:20:22 | [diff] [blame] | 633 | // Triggered when a remote sender has been seen for the first time in a remote |
deadbeef | ab9b2d1 | 2015-10-14 18:33:11 | [diff] [blame] | 634 | // session description. It creates a remote MediaStreamTrackInterface |
| 635 | // implementation and triggers CreateAudioReceiver or CreateVideoReceiver. |
Steve Anton | 4171afb | 2017-11-20 18:20:22 | [diff] [blame] | 636 | void OnRemoteSenderAdded(const RtpSenderInfo& sender_info, |
Karl Wiberg | 744310f | 2019-02-14 09:18:56 | [diff] [blame] | 637 | cricket::MediaType media_type) |
| 638 | RTC_RUN_ON(signaling_thread()); |
deadbeef | ab9b2d1 | 2015-10-14 18:33:11 | [diff] [blame] | 639 | |
Steve Anton | 4171afb | 2017-11-20 18:20:22 | [diff] [blame] | 640 | // Triggered when a remote sender has been removed from a remote session |
| 641 | // description. It removes the remote sender with id |sender_id| from a remote |
deadbeef | ab9b2d1 | 2015-10-14 18:33:11 | [diff] [blame] | 642 | // MediaStream and triggers DestroyAudioReceiver or DestroyVideoReceiver. |
Steve Anton | 4171afb | 2017-11-20 18:20:22 | [diff] [blame] | 643 | void OnRemoteSenderRemoved(const RtpSenderInfo& sender_info, |
Karl Wiberg | 744310f | 2019-02-14 09:18:56 | [diff] [blame] | 644 | cricket::MediaType media_type) |
| 645 | RTC_RUN_ON(signaling_thread()); |
deadbeef | ab9b2d1 | 2015-10-14 18:33:11 | [diff] [blame] | 646 | |
| 647 | // Finds remote MediaStreams without any tracks and removes them from |
| 648 | // |remote_streams_| and notifies the observer that the MediaStreams no longer |
| 649 | // exist. |
Karl Wiberg | 744310f | 2019-02-14 09:18:56 | [diff] [blame] | 650 | void UpdateEndedRemoteMediaStreams() RTC_RUN_ON(signaling_thread()); |
deadbeef | ab9b2d1 | 2015-10-14 18:33:11 | [diff] [blame] | 651 | |
deadbeef | ab9b2d1 | 2015-10-14 18:33:11 | [diff] [blame] | 652 | // Loops through the vector of |streams| and finds added and removed |
| 653 | // StreamParams since last time this method was called. |
Steve Anton | 4171afb | 2017-11-20 18:20:22 | [diff] [blame] | 654 | // For each new or removed StreamParam, OnLocalSenderSeen or |
| 655 | // OnLocalSenderRemoved is invoked. |
| 656 | void UpdateLocalSenders(const std::vector<cricket::StreamParams>& streams, |
Karl Wiberg | 5966c50 | 2019-02-21 22:55:09 | [diff] [blame] | 657 | cricket::MediaType media_type) |
| 658 | RTC_RUN_ON(signaling_thread()); |
deadbeef | ab9b2d1 | 2015-10-14 18:33:11 | [diff] [blame] | 659 | |
Steve Anton | 4171afb | 2017-11-20 18:20:22 | [diff] [blame] | 660 | // Triggered when a local sender has been seen for the first time in a local |
deadbeef | ab9b2d1 | 2015-10-14 18:33:11 | [diff] [blame] | 661 | // session description. |
| 662 | // This method triggers CreateAudioSender or CreateVideoSender if the rtp |
| 663 | // streams in the local SessionDescription can be mapped to a MediaStreamTrack |
| 664 | // in a MediaStream in |local_streams_| |
Steve Anton | 4171afb | 2017-11-20 18:20:22 | [diff] [blame] | 665 | void OnLocalSenderAdded(const RtpSenderInfo& sender_info, |
Karl Wiberg | 5966c50 | 2019-02-21 22:55:09 | [diff] [blame] | 666 | cricket::MediaType media_type) |
| 667 | RTC_RUN_ON(signaling_thread()); |
deadbeef | ab9b2d1 | 2015-10-14 18:33:11 | [diff] [blame] | 668 | |
Steve Anton | 4171afb | 2017-11-20 18:20:22 | [diff] [blame] | 669 | // Triggered when a local sender has been removed from a local session |
deadbeef | ab9b2d1 | 2015-10-14 18:33:11 | [diff] [blame] | 670 | // description. |
| 671 | // This method triggers DestroyAudioSender or DestroyVideoSender if a stream |
| 672 | // has been removed from the local SessionDescription and the stream can be |
| 673 | // mapped to a MediaStreamTrack in a MediaStream in |local_streams_|. |
Steve Anton | 4171afb | 2017-11-20 18:20:22 | [diff] [blame] | 674 | void OnLocalSenderRemoved(const RtpSenderInfo& sender_info, |
| 675 | cricket::MediaType media_type); |
deadbeef | ab9b2d1 | 2015-10-14 18:33:11 | [diff] [blame] | 676 | |
Karl Wiberg | 85a4a93 | 2019-03-22 14:29:58 | [diff] [blame^] | 677 | void UpdateLocalRtpDataChannels(const cricket::StreamParamsVec& streams) |
| 678 | RTC_RUN_ON(signaling_thread()); |
Karl Wiberg | 106d92d | 2019-02-14 09:17:47 | [diff] [blame] | 679 | void UpdateRemoteRtpDataChannels(const cricket::StreamParamsVec& streams) |
| 680 | RTC_RUN_ON(signaling_thread()); |
deadbeef | ab9b2d1 | 2015-10-14 18:33:11 | [diff] [blame] | 681 | void UpdateClosingRtpDataChannels( |
| 682 | const std::vector<std::string>& active_channels, |
Karl Wiberg | 85a4a93 | 2019-03-22 14:29:58 | [diff] [blame^] | 683 | bool is_local_update) RTC_RUN_ON(signaling_thread()); |
deadbeef | ab9b2d1 | 2015-10-14 18:33:11 | [diff] [blame] | 684 | void CreateRemoteRtpDataChannel(const std::string& label, |
Karl Wiberg | 106d92d | 2019-02-14 09:17:47 | [diff] [blame] | 685 | uint32_t remote_ssrc) |
| 686 | RTC_RUN_ON(signaling_thread()); |
deadbeef | ab9b2d1 | 2015-10-14 18:33:11 | [diff] [blame] | 687 | |
| 688 | // Creates channel and adds it to the collection of DataChannels that will |
| 689 | // be offered in a SessionDescription. |
| 690 | rtc::scoped_refptr<DataChannel> InternalCreateDataChannel( |
| 691 | const std::string& label, |
Karl Wiberg | 106d92d | 2019-02-14 09:17:47 | [diff] [blame] | 692 | const InternalDataChannelInit* config) RTC_RUN_ON(signaling_thread()); |
deadbeef | ab9b2d1 | 2015-10-14 18:33:11 | [diff] [blame] | 693 | |
| 694 | // Checks if any data channel has been added. |
Karl Wiberg | 85a4a93 | 2019-03-22 14:29:58 | [diff] [blame^] | 695 | bool HasDataChannels() const RTC_RUN_ON(signaling_thread()); |
deadbeef | ab9b2d1 | 2015-10-14 18:33:11 | [diff] [blame] | 696 | |
Karl Wiberg | 85a4a93 | 2019-03-22 14:29:58 | [diff] [blame^] | 697 | void AllocateSctpSids(rtc::SSLRole role) RTC_RUN_ON(signaling_thread()); |
| 698 | void OnSctpDataChannelClosed(DataChannel* channel) |
| 699 | RTC_RUN_ON(signaling_thread()); |
deadbeef | ab9b2d1 | 2015-10-14 18:33:11 | [diff] [blame] | 700 | |
Karl Wiberg | 85a4a93 | 2019-03-22 14:29:58 | [diff] [blame^] | 701 | void OnDataChannelDestroyed() RTC_RUN_ON(signaling_thread()); |
Steve Anton | ba81867 | 2017-11-06 18:21:57 | [diff] [blame] | 702 | // Called when a valid data channel OPEN message is received. |
deadbeef | ab9b2d1 | 2015-10-14 18:33:11 | [diff] [blame] | 703 | void OnDataChannelOpenMessage(const std::string& label, |
Karl Wiberg | 106d92d | 2019-02-14 09:17:47 | [diff] [blame] | 704 | const InternalDataChannelInit& config) |
| 705 | RTC_RUN_ON(signaling_thread()); |
| 706 | |
Bjorn Mellem | 175aa2e | 2018-11-08 19:23:22 | [diff] [blame] | 707 | // Parses and handles open messages. Returns true if the message is an open |
| 708 | // message, false otherwise. |
| 709 | bool HandleOpenMessage_s(const cricket::ReceiveDataParams& params, |
| 710 | const rtc::CopyOnWriteBuffer& buffer) |
| 711 | RTC_RUN_ON(signaling_thread()); |
deadbeef | ab9b2d1 | 2015-10-14 18:33:11 | [diff] [blame] | 712 | |
Steve Anton | 4171afb | 2017-11-20 18:20:22 | [diff] [blame] | 713 | // Returns true if the PeerConnection is configured to use Unified Plan |
| 714 | // semantics for creating offers/answers and setting local/remote |
| 715 | // descriptions. If this is true the RtpTransceiver API will also be available |
| 716 | // to the user. If this is false, Plan B semantics are assumed. |
Steve Anton | 79e7960 | 2017-11-20 18:25:56 | [diff] [blame] | 717 | // TODO(bugs.webrtc.org/8530): Flip the default to be Unified Plan once |
| 718 | // sufficient time has passed. |
Karl Wiberg | 5966c50 | 2019-02-21 22:55:09 | [diff] [blame] | 719 | bool IsUnifiedPlan() const RTC_RUN_ON(signaling_thread()) { |
Steve Anton | 79e7960 | 2017-11-20 18:25:56 | [diff] [blame] | 720 | return configuration_.sdp_semantics == SdpSemantics::kUnifiedPlan; |
| 721 | } |
Steve Anton | 4171afb | 2017-11-20 18:20:22 | [diff] [blame] | 722 | |
Steve Anton | 06817cd | 2018-12-18 23:55:30 | [diff] [blame] | 723 | // The offer/answer machinery assumes the media section MID is present and |
| 724 | // unique. To support legacy end points that do not supply a=mid lines, this |
| 725 | // method will modify the session description to add MIDs generated according |
| 726 | // to the SDP semantics. |
Karl Wiberg | 5966c50 | 2019-02-21 22:55:09 | [diff] [blame] | 727 | void FillInMissingRemoteMids(cricket::SessionDescription* remote_description) |
| 728 | RTC_RUN_ON(signaling_thread()); |
Steve Anton | 06817cd | 2018-12-18 23:55:30 | [diff] [blame] | 729 | |
Steve Anton | 4171afb | 2017-11-20 18:20:22 | [diff] [blame] | 730 | // Is there an RtpSender of the given type? |
Karl Wiberg | 5966c50 | 2019-02-21 22:55:09 | [diff] [blame] | 731 | bool HasRtpSender(cricket::MediaType type) const |
| 732 | RTC_RUN_ON(signaling_thread()); |
deadbeef | fac0655 | 2015-11-25 19:26:01 | [diff] [blame] | 733 | |
Steve Anton | 4171afb | 2017-11-20 18:20:22 | [diff] [blame] | 734 | // Return the RtpSender with the given track attached. |
| 735 | rtc::scoped_refptr<RtpSenderProxyWithInternal<RtpSenderInternal>> |
| 736 | FindSenderForTrack(MediaStreamTrackInterface* track) const; |
deadbeef | 70ab1a1 | 2015-09-28 23:53:55 | [diff] [blame] | 737 | |
Steve Anton | 4171afb | 2017-11-20 18:20:22 | [diff] [blame] | 738 | // Return the RtpSender with the given id, or null if none exists. |
| 739 | rtc::scoped_refptr<RtpSenderProxyWithInternal<RtpSenderInternal>> |
| 740 | FindSenderById(const std::string& sender_id) const; |
| 741 | |
| 742 | // Return the RtpReceiver with the given id, or null if none exists. |
| 743 | rtc::scoped_refptr<RtpReceiverProxyWithInternal<RtpReceiverInternal>> |
| 744 | FindReceiverById(const std::string& receiver_id) const; |
| 745 | |
| 746 | std::vector<RtpSenderInfo>* GetRemoteSenderInfos( |
| 747 | cricket::MediaType media_type); |
| 748 | std::vector<RtpSenderInfo>* GetLocalSenderInfos( |
| 749 | cricket::MediaType media_type); |
| 750 | const RtpSenderInfo* FindSenderInfo(const std::vector<RtpSenderInfo>& infos, |
Emircan Uysaler | bc609eaa | 2018-03-27 21:57:18 | [diff] [blame] | 751 | const std::string& stream_id, |
Steve Anton | 4171afb | 2017-11-20 18:20:22 | [diff] [blame] | 752 | const std::string sender_id) const; |
deadbeef | ab9b2d1 | 2015-10-14 18:33:11 | [diff] [blame] | 753 | |
| 754 | // Returns the specified SCTP DataChannel in sctp_data_channels_, |
| 755 | // or nullptr if not found. |
Karl Wiberg | 85a4a93 | 2019-03-22 14:29:58 | [diff] [blame^] | 756 | DataChannel* FindDataChannelBySid(int sid) const |
| 757 | RTC_RUN_ON(signaling_thread()); |
deadbeef | ab9b2d1 | 2015-10-14 18:33:11 | [diff] [blame] | 758 | |
Taylor Brandstetter | a1c3035 | 2016-05-13 15:15:11 | [diff] [blame] | 759 | // Called when first configuring the port allocator. |
Karl Wiberg | fb3be39 | 2019-03-22 13:13:22 | [diff] [blame] | 760 | struct InitializePortAllocatorResult { |
| 761 | bool enable_ipv6; |
| 762 | }; |
| 763 | InitializePortAllocatorResult InitializePortAllocator_n( |
Harald Alvestrand | b2a7478 | 2018-06-28 11:54:07 | [diff] [blame] | 764 | const cricket::ServerAddresses& stun_servers, |
| 765 | const std::vector<cricket::RelayServerConfig>& turn_servers, |
| 766 | const RTCConfiguration& configuration); |
deadbeef | 293e926 | 2017-01-11 20:28:30 | [diff] [blame] | 767 | // Called when SetConfiguration is called to apply the supported subset |
| 768 | // of the configuration on the network thread. |
| 769 | bool ReconfigurePortAllocator_n( |
| 770 | const cricket::ServerAddresses& stun_servers, |
| 771 | const std::vector<cricket::RelayServerConfig>& turn_servers, |
| 772 | IceTransportsType type, |
| 773 | int candidate_pool_size, |
Jonas Oreland | bdcee28 | 2017-10-10 12:01:40 | [diff] [blame] | 774 | bool prune_turn_ports, |
Qingsi Wang | db53f8e | 2018-02-20 22:45:49 | [diff] [blame] | 775 | webrtc::TurnCustomizer* turn_customizer, |
Danil Chapovalov | 66cadcc | 2018-06-19 14:47:43 | [diff] [blame] | 776 | absl::optional<int> stun_candidate_keepalive_interval); |
Taylor Brandstetter | a1c3035 | 2016-05-13 15:15:11 | [diff] [blame] | 777 | |
Elad Alon | 99c3fe5 | 2017-10-13 14:29:40 | [diff] [blame] | 778 | // Starts output of an RTC event log to the given output object. |
ivoc | 14d5dbe | 2016-07-04 14:06:55 | [diff] [blame] | 779 | // This function should only be called from the worker thread. |
Bjorn Terelius | de93943 | 2017-11-20 16:38:14 | [diff] [blame] | 780 | bool StartRtcEventLog_w(std::unique_ptr<RtcEventLogOutput> output, |
| 781 | int64_t output_period_ms); |
Elad Alon | 99c3fe5 | 2017-10-13 14:29:40 | [diff] [blame] | 782 | |
Elad Alon | acb2417 | 2017-10-06 12:32:13 | [diff] [blame] | 783 | // Stops recording an RTC event log. |
ivoc | 14d5dbe | 2016-07-04 14:06:55 | [diff] [blame] | 784 | // This function should only be called from the worker thread. |
| 785 | void StopRtcEventLog_w(); |
| 786 | |
Steve Anton | 038834f | 2017-07-14 22:59:59 | [diff] [blame] | 787 | // Ensures the configuration doesn't have any parameters with invalid values, |
| 788 | // or values that conflict with other parameters. |
| 789 | // |
| 790 | // Returns RTCError::OK() if there are no issues. |
| 791 | RTCError ValidateConfiguration(const RTCConfiguration& config) const; |
| 792 | |
Steve Anton | ba81867 | 2017-11-06 18:21:57 | [diff] [blame] | 793 | cricket::ChannelManager* channel_manager() const; |
Steve Anton | ba81867 | 2017-11-06 18:21:57 | [diff] [blame] | 794 | |
Steve Anton | f847081 | 2017-12-04 18:46:21 | [diff] [blame] | 795 | enum class SessionError { |
| 796 | kNone, // No error. |
| 797 | kContent, // Error in BaseChannel SetLocalContent/SetRemoteContent. |
| 798 | kTransport, // Error from the underlying transport. |
| 799 | }; |
| 800 | |
Steve Anton | 75737c0 | 2017-11-06 18:37:17 | [diff] [blame] | 801 | // Returns the last error in the session. See the enum above for details. |
Steve Anton | f847081 | 2017-12-04 18:46:21 | [diff] [blame] | 802 | SessionError session_error() const { return session_error_; } |
| 803 | const std::string& session_error_desc() const { return session_error_desc_; } |
Steve Anton | 75737c0 | 2017-11-06 18:37:17 | [diff] [blame] | 804 | |
Amit Hilbuch | dd9390c | 2018-11-14 00:26:05 | [diff] [blame] | 805 | cricket::ChannelInterface* GetChannel(const std::string& content_name); |
Steve Anton | 75737c0 | 2017-11-06 18:37:17 | [diff] [blame] | 806 | |
| 807 | // Get current SSL role used by SCTP's underlying transport. |
| 808 | bool GetSctpSslRole(rtc::SSLRole* role); |
| 809 | |
Steve Anton | 75737c0 | 2017-11-06 18:37:17 | [diff] [blame] | 810 | cricket::IceConfig ParseIceConfig( |
| 811 | const PeerConnectionInterface::RTCConfiguration& config) const; |
| 812 | |
Steve Anton | 75737c0 | 2017-11-06 18:37:17 | [diff] [blame] | 813 | // Implements DataChannelProviderInterface. |
| 814 | bool SendData(const cricket::SendDataParams& params, |
| 815 | const rtc::CopyOnWriteBuffer& payload, |
| 816 | cricket::SendDataResult* result) override; |
| 817 | bool ConnectDataChannel(DataChannel* webrtc_data_channel) override; |
| 818 | void DisconnectDataChannel(DataChannel* webrtc_data_channel) override; |
| 819 | void AddSctpDataStream(int sid) override; |
| 820 | void RemoveSctpDataStream(int sid) override; |
| 821 | bool ReadyToSendData() const override; |
| 822 | |
| 823 | cricket::DataChannelType data_channel_type() const; |
| 824 | |
Bjorn Mellem | 175aa2e | 2018-11-08 19:23:22 | [diff] [blame] | 825 | // Implements DataChannelSink. |
| 826 | void OnDataReceived(int channel_id, |
| 827 | DataMessageType type, |
| 828 | const rtc::CopyOnWriteBuffer& buffer) override; |
| 829 | void OnChannelClosing(int channel_id) override; |
| 830 | void OnChannelClosed(int channel_id) override; |
| 831 | |
Steve Anton | 75737c0 | 2017-11-06 18:37:17 | [diff] [blame] | 832 | // Called when an RTCCertificate is generated or retrieved by |
| 833 | // WebRTCSessionDescriptionFactory. Should happen before setLocalDescription. |
| 834 | void OnCertificateReady( |
| 835 | const rtc::scoped_refptr<rtc::RTCCertificate>& certificate); |
| 836 | void OnDtlsSrtpSetupFailure(cricket::BaseChannel*, bool rtcp); |
| 837 | |
Steve Anton | 75737c0 | 2017-11-06 18:37:17 | [diff] [blame] | 838 | // Non-const versions of local_description()/remote_description(), for use |
| 839 | // internally. |
| 840 | SessionDescriptionInterface* mutable_local_description() { |
| 841 | return pending_local_description_ ? pending_local_description_.get() |
| 842 | : current_local_description_.get(); |
| 843 | } |
| 844 | SessionDescriptionInterface* mutable_remote_description() { |
| 845 | return pending_remote_description_ ? pending_remote_description_.get() |
| 846 | : current_remote_description_.get(); |
| 847 | } |
| 848 | |
| 849 | // Updates the error state, signaling if necessary. |
Steve Anton | f847081 | 2017-12-04 18:46:21 | [diff] [blame] | 850 | void SetSessionError(SessionError error, const std::string& error_desc); |
Steve Anton | 75737c0 | 2017-11-06 18:37:17 | [diff] [blame] | 851 | |
Zhi Huang | e830e68 | 2018-03-30 17:48:35 | [diff] [blame] | 852 | RTCError UpdateSessionState(SdpType type, |
| 853 | cricket::ContentSource source, |
| 854 | const cricket::SessionDescription* description); |
Steve Anton | 75737c0 | 2017-11-06 18:37:17 | [diff] [blame] | 855 | // Push the media parts of the local or remote session description |
| 856 | // down to all of the channels. |
Karl Wiberg | 5966c50 | 2019-02-21 22:55:09 | [diff] [blame] | 857 | RTCError PushdownMediaDescription(SdpType type, cricket::ContentSource source) |
| 858 | RTC_RUN_ON(signaling_thread()); |
Steve Anton | 75737c0 | 2017-11-06 18:37:17 | [diff] [blame] | 859 | bool PushdownSctpParameters_n(cricket::ContentSource source); |
| 860 | |
Steve Anton | 8a00691 | 2017-12-04 23:25:56 | [diff] [blame] | 861 | RTCError PushdownTransportDescription(cricket::ContentSource source, |
Steve Anton | 3828c06 | 2017-12-06 18:34:51 | [diff] [blame] | 862 | SdpType type); |
Steve Anton | 75737c0 | 2017-11-06 18:37:17 | [diff] [blame] | 863 | |
| 864 | // Returns true and the TransportInfo of the given |content_name| |
| 865 | // from |description|. Returns false if it's not available. |
| 866 | static bool GetTransportDescription( |
| 867 | const cricket::SessionDescription* description, |
| 868 | const std::string& content_name, |
| 869 | cricket::TransportDescription* info); |
| 870 | |
Steve Anton | 75737c0 | 2017-11-06 18:37:17 | [diff] [blame] | 871 | // Enables media channels to allow sending of media. |
Steve Anton | ed10bd9 | 2017-12-05 18:52:59 | [diff] [blame] | 872 | // This enables media to flow on all configured audio/video channels and the |
| 873 | // RtpDataChannel. |
| 874 | void EnableSending(); |
Steve Anton | 3fe1b15 | 2017-12-12 18:20:08 | [diff] [blame] | 875 | |
Steve Anton | 8af2186 | 2017-12-15 19:20:13 | [diff] [blame] | 876 | // Destroys all BaseChannels and destroys the SCTP data channel, if present. |
Karl Wiberg | 85a4a93 | 2019-03-22 14:29:58 | [diff] [blame^] | 877 | void DestroyAllChannels() RTC_RUN_ON(signaling_thread()); |
Steve Anton | 3fe1b15 | 2017-12-12 18:20:08 | [diff] [blame] | 878 | |
Steve Anton | 75737c0 | 2017-11-06 18:37:17 | [diff] [blame] | 879 | // Returns the media index for a local ice candidate given the content name. |
| 880 | // Returns false if the local session description does not have a media |
| 881 | // content called |content_name|. |
| 882 | bool GetLocalCandidateMediaIndex(const std::string& content_name, |
| 883 | int* sdp_mline_index); |
| 884 | // Uses all remote candidates in |remote_desc| in this session. |
| 885 | bool UseCandidatesInSessionDescription( |
Karl Wiberg | 744310f | 2019-02-14 09:18:56 | [diff] [blame] | 886 | const SessionDescriptionInterface* remote_desc) |
| 887 | RTC_RUN_ON(signaling_thread()); |
Steve Anton | 75737c0 | 2017-11-06 18:37:17 | [diff] [blame] | 888 | // Uses |candidate| in this session. |
Karl Wiberg | 744310f | 2019-02-14 09:18:56 | [diff] [blame] | 889 | bool UseCandidate(const IceCandidateInterface* candidate) |
| 890 | RTC_RUN_ON(signaling_thread()); |
Steve Anton | 75737c0 | 2017-11-06 18:37:17 | [diff] [blame] | 891 | // Deletes the corresponding channel of contents that don't exist in |desc|. |
| 892 | // |desc| can be null. This means that all channels are deleted. |
Karl Wiberg | 5966c50 | 2019-02-21 22:55:09 | [diff] [blame] | 893 | void RemoveUnusedChannels(const cricket::SessionDescription* desc) |
| 894 | RTC_RUN_ON(signaling_thread()); |
Steve Anton | 75737c0 | 2017-11-06 18:37:17 | [diff] [blame] | 895 | |
| 896 | // Allocates media channels based on the |desc|. If |desc| doesn't have |
| 897 | // the BUNDLE option, this method will disable BUNDLE in PortAllocator. |
| 898 | // This method will also delete any existing media channels before creating. |
Karl Wiberg | 5966c50 | 2019-02-21 22:55:09 | [diff] [blame] | 899 | RTCError CreateChannels(const cricket::SessionDescription& desc) |
| 900 | RTC_RUN_ON(signaling_thread()); |
Steve Anton | dcc3c02 | 2017-12-23 00:02:54 | [diff] [blame] | 901 | |
| 902 | // If the BUNDLE policy is max-bundle, then we know for sure that all |
| 903 | // transports will be bundled from the start. This method returns the BUNDLE |
| 904 | // group if that's the case, or null if BUNDLE will be negotiated later. An |
| 905 | // error is returned if max-bundle is specified but the session description |
| 906 | // does not have a BUNDLE group. |
| 907 | RTCErrorOr<const cricket::ContentGroup*> GetEarlyBundleGroup( |
Karl Wiberg | 5966c50 | 2019-02-21 22:55:09 | [diff] [blame] | 908 | const cricket::SessionDescription& desc) const |
| 909 | RTC_RUN_ON(signaling_thread()); |
Steve Anton | 75737c0 | 2017-11-06 18:37:17 | [diff] [blame] | 910 | |
| 911 | // Helper methods to create media channels. |
Karl Wiberg | 5966c50 | 2019-02-21 22:55:09 | [diff] [blame] | 912 | cricket::VoiceChannel* CreateVoiceChannel(const std::string& mid) |
| 913 | RTC_RUN_ON(signaling_thread()); |
| 914 | cricket::VideoChannel* CreateVideoChannel(const std::string& mid) |
| 915 | RTC_RUN_ON(signaling_thread()); |
| 916 | bool CreateDataChannel(const std::string& mid) RTC_RUN_ON(signaling_thread()); |
Steve Anton | 75737c0 | 2017-11-06 18:37:17 | [diff] [blame] | 917 | |
Zhi Huang | e830e68 | 2018-03-30 17:48:35 | [diff] [blame] | 918 | bool CreateSctpTransport_n(const std::string& mid); |
Steve Anton | 75737c0 | 2017-11-06 18:37:17 | [diff] [blame] | 919 | // For bundling. |
Steve Anton | 75737c0 | 2017-11-06 18:37:17 | [diff] [blame] | 920 | void DestroySctpTransport_n(); |
| 921 | // SctpTransport signal handlers. Needed to marshal signals from the network |
| 922 | // to signaling thread. |
| 923 | void OnSctpTransportReadyToSendData_n(); |
| 924 | // This may be called with "false" if the direction of the m= section causes |
| 925 | // us to tear down the SCTP connection. |
| 926 | void OnSctpTransportReadyToSendData_s(bool ready); |
| 927 | void OnSctpTransportDataReceived_n(const cricket::ReceiveDataParams& params, |
| 928 | const rtc::CopyOnWriteBuffer& payload); |
| 929 | // Beyond just firing the signal to the signaling thread, listens to SCTP |
| 930 | // CONTROL messages on unused SIDs and processes them as OPEN messages. |
| 931 | void OnSctpTransportDataReceived_s(const cricket::ReceiveDataParams& params, |
| 932 | const rtc::CopyOnWriteBuffer& payload); |
Taylor Brandstetter | cdd05f0 | 2018-05-31 20:23:32 | [diff] [blame] | 933 | void OnSctpClosingProcedureStartedRemotely_n(int sid); |
| 934 | void OnSctpClosingProcedureComplete_n(int sid); |
Steve Anton | 75737c0 | 2017-11-06 18:37:17 | [diff] [blame] | 935 | |
Bjorn Mellem | 175aa2e | 2018-11-08 19:23:22 | [diff] [blame] | 936 | bool SetupMediaTransportForDataChannels_n(const std::string& mid) |
| 937 | RTC_RUN_ON(network_thread()); |
| 938 | void OnMediaTransportStateChanged_n() RTC_RUN_ON(network_thread()); |
| 939 | void TeardownMediaTransportForDataChannels_n() RTC_RUN_ON(network_thread()); |
| 940 | |
Steve Anton | 75737c0 | 2017-11-06 18:37:17 | [diff] [blame] | 941 | bool ValidateBundleSettings(const cricket::SessionDescription* desc); |
| 942 | bool HasRtcpMuxEnabled(const cricket::ContentInfo* content); |
| 943 | // Below methods are helper methods which verifies SDP. |
Steve Anton | 8a00691 | 2017-12-04 23:25:56 | [diff] [blame] | 944 | RTCError ValidateSessionDescription(const SessionDescriptionInterface* sdesc, |
Karl Wiberg | 5966c50 | 2019-02-21 22:55:09 | [diff] [blame] | 945 | cricket::ContentSource source) |
| 946 | RTC_RUN_ON(signaling_thread()); |
Steve Anton | 75737c0 | 2017-11-06 18:37:17 | [diff] [blame] | 947 | |
Steve Anton | 3828c06 | 2017-12-06 18:34:51 | [diff] [blame] | 948 | // Check if a call to SetLocalDescription is acceptable with a session |
| 949 | // description of the given type. |
| 950 | bool ExpectSetLocalDescription(SdpType type); |
| 951 | // Check if a call to SetRemoteDescription is acceptable with a session |
| 952 | // description of the given type. |
| 953 | bool ExpectSetRemoteDescription(SdpType type); |
Steve Anton | 75737c0 | 2017-11-06 18:37:17 | [diff] [blame] | 954 | // Verifies a=setup attribute as per RFC 5763. |
| 955 | bool ValidateDtlsSetupAttribute(const cricket::SessionDescription* desc, |
Steve Anton | 3828c06 | 2017-12-06 18:34:51 | [diff] [blame] | 956 | SdpType type); |
Steve Anton | 75737c0 | 2017-11-06 18:37:17 | [diff] [blame] | 957 | |
| 958 | // Returns true if we are ready to push down the remote candidate. |
| 959 | // |remote_desc| is the new remote description, or NULL if the current remote |
| 960 | // description should be used. Output |valid| is true if the candidate media |
| 961 | // index is valid. |
| 962 | bool ReadyToUseRemoteCandidate(const IceCandidateInterface* candidate, |
| 963 | const SessionDescriptionInterface* remote_desc, |
| 964 | bool* valid); |
| 965 | |
| 966 | // Returns true if SRTP (either using DTLS-SRTP or SDES) is required by |
| 967 | // this session. |
| 968 | bool SrtpRequired() const; |
| 969 | |
Zhi Huang | e830e68 | 2018-03-30 17:48:35 | [diff] [blame] | 970 | // JsepTransportController signal handlers. |
Karl Wiberg | 744310f | 2019-02-14 09:18:56 | [diff] [blame] | 971 | void OnTransportControllerConnectionState(cricket::IceConnectionState state) |
| 972 | RTC_RUN_ON(signaling_thread()); |
| 973 | void OnTransportControllerGatheringState(cricket::IceGatheringState state) |
| 974 | RTC_RUN_ON(signaling_thread()); |
Steve Anton | 75737c0 | 2017-11-06 18:37:17 | [diff] [blame] | 975 | void OnTransportControllerCandidatesGathered( |
| 976 | const std::string& transport_name, |
Karl Wiberg | 744310f | 2019-02-14 09:18:56 | [diff] [blame] | 977 | const std::vector<cricket::Candidate>& candidates) |
| 978 | RTC_RUN_ON(signaling_thread()); |
Steve Anton | 75737c0 | 2017-11-06 18:37:17 | [diff] [blame] | 979 | void OnTransportControllerCandidatesRemoved( |
Karl Wiberg | 744310f | 2019-02-14 09:18:56 | [diff] [blame] | 980 | const std::vector<cricket::Candidate>& candidates) |
| 981 | RTC_RUN_ON(signaling_thread()); |
Steve Anton | 75737c0 | 2017-11-06 18:37:17 | [diff] [blame] | 982 | void OnTransportControllerDtlsHandshakeError(rtc::SSLHandshakeError error); |
| 983 | |
Steve Anton | f847081 | 2017-12-04 18:46:21 | [diff] [blame] | 984 | const char* SessionErrorToString(SessionError error) const; |
Steve Anton | 75737c0 | 2017-11-06 18:37:17 | [diff] [blame] | 985 | std::string GetSessionErrorMsg(); |
| 986 | |
Steve Anton | 8e20f17 | 2018-03-06 18:55:04 | [diff] [blame] | 987 | // Report the UMA metric SdpFormatReceived for the given remote offer. |
| 988 | void ReportSdpFormatReceived(const SessionDescriptionInterface& remote_offer); |
| 989 | |
Steve Anton | 0ffaaa2 | 2018-02-23 18:31:30 | [diff] [blame] | 990 | // Report inferred negotiated SDP semantics from a local/remote answer to the |
| 991 | // UMA observer. |
| 992 | void ReportNegotiatedSdpSemantics(const SessionDescriptionInterface& answer); |
| 993 | |
Steve Anton | 75737c0 | 2017-11-06 18:37:17 | [diff] [blame] | 994 | // Invoked when TransportController connection completion is signaled. |
| 995 | // Reports stats for all transports in use. |
| 996 | void ReportTransportStats(); |
| 997 | |
| 998 | // Gather the usage of IPv4/IPv6 as best connection. |
| 999 | void ReportBestConnectionState(const cricket::TransportStats& stats); |
| 1000 | |
Steve Anton | c7b964c | 2018-02-01 22:39:45 | [diff] [blame] | 1001 | void ReportNegotiatedCiphers(const cricket::TransportStats& stats, |
| 1002 | const std::set<cricket::MediaType>& media_types); |
Steve Anton | 75737c0 | 2017-11-06 18:37:17 | [diff] [blame] | 1003 | |
Harald Alvestrand | 8ebba74 | 2018-05-31 12:00:34 | [diff] [blame] | 1004 | void NoteUsageEvent(UsageEvent event); |
Karl Wiberg | 744310f | 2019-02-14 09:18:56 | [diff] [blame] | 1005 | void ReportUsagePattern() const RTC_RUN_ON(signaling_thread()); |
Harald Alvestrand | 8ebba74 | 2018-05-31 12:00:34 | [diff] [blame] | 1006 | |
Steve Anton | 75737c0 | 2017-11-06 18:37:17 | [diff] [blame] | 1007 | void OnSentPacket_w(const rtc::SentPacket& sent_packet); |
| 1008 | |
| 1009 | const std::string GetTransportName(const std::string& content_name); |
| 1010 | |
Steve Anton | 6fec880 | 2017-12-04 18:37:29 | [diff] [blame] | 1011 | // Destroys and clears the BaseChannel associated with the given transceiver, |
| 1012 | // if such channel is set. |
| 1013 | void DestroyTransceiverChannel( |
| 1014 | rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>> |
| 1015 | transceiver); |
| 1016 | |
| 1017 | // Destroys the RTP data channel and/or the SCTP data channel and clears it. |
Karl Wiberg | 85a4a93 | 2019-03-22 14:29:58 | [diff] [blame^] | 1018 | void DestroyDataChannel() RTC_RUN_ON(signaling_thread()); |
Steve Anton | 75737c0 | 2017-11-06 18:37:17 | [diff] [blame] | 1019 | |
Amit Hilbuch | dd9390c | 2018-11-14 00:26:05 | [diff] [blame] | 1020 | // Destroys the given ChannelInterface. |
| 1021 | // The channel cannot be accessed after this method is called. |
| 1022 | void DestroyChannelInterface(cricket::ChannelInterface* channel); |
Steve Anton | 6fec880 | 2017-12-04 18:37:29 | [diff] [blame] | 1023 | |
Zhi Huang | 365381f | 2018-04-13 23:44:34 | [diff] [blame] | 1024 | // JsepTransportController::Observer override. |
Taylor Brandstetter | cbaa254 | 2018-04-16 23:42:14 | [diff] [blame] | 1025 | // |
| 1026 | // Called by |transport_controller_| when processing transport information |
| 1027 | // from a session description, and the mapping from m= sections to transports |
| 1028 | // changed (as a result of BUNDLE negotiation, or m= sections being |
| 1029 | // rejected). |
Piotr (Peter) Slatala | cc8e8bb | 2018-11-15 16:26:19 | [diff] [blame] | 1030 | bool OnTransportChanged(const std::string& mid, |
| 1031 | RtpTransportInternal* rtp_transport, |
Harald Alvestrand | c85328f | 2019-02-28 06:51:00 | [diff] [blame] | 1032 | rtc::scoped_refptr<DtlsTransport> dtls_transport, |
Piotr (Peter) Slatala | cc8e8bb | 2018-11-15 16:26:19 | [diff] [blame] | 1033 | MediaTransportInterface* media_transport) override; |
Zhi Huang | e830e68 | 2018-03-30 17:48:35 | [diff] [blame] | 1034 | |
Harald Alvestrand | 7a1c7f7 | 2018-08-01 08:50:16 | [diff] [blame] | 1035 | // Returns the observer. Will crash on CHECK if the observer is removed. |
Karl Wiberg | 744310f | 2019-02-14 09:18:56 | [diff] [blame] | 1036 | PeerConnectionObserver* Observer() const RTC_RUN_ON(signaling_thread()); |
Harald Alvestrand | 7a1c7f7 | 2018-08-01 08:50:16 | [diff] [blame] | 1037 | |
Benjamin Wright | 8c27cca | 2018-10-25 17:16:44 | [diff] [blame] | 1038 | // Returns the CryptoOptions for this PeerConnection. This will always |
| 1039 | // return the RTCConfiguration.crypto_options if set and will only default |
| 1040 | // back to the PeerConnectionFactory settings if nothing was set. |
Karl Wiberg | 5966c50 | 2019-02-21 22:55:09 | [diff] [blame] | 1041 | CryptoOptions GetCryptoOptions() RTC_RUN_ON(signaling_thread()); |
Benjamin Wright | 8c27cca | 2018-10-25 17:16:44 | [diff] [blame] | 1042 | |
Anton Sukhanov | 98a462c | 2018-10-17 20:15:42 | [diff] [blame] | 1043 | // Returns rtp transport, result can not be nullptr. |
| 1044 | RtpTransportInternal* GetRtpTransport(const std::string& mid) { |
| 1045 | auto rtp_transport = transport_controller_->GetRtpTransport(mid); |
| 1046 | RTC_DCHECK(rtp_transport); |
| 1047 | return rtp_transport; |
| 1048 | } |
| 1049 | |
| 1050 | // Returns media transport, if PeerConnection was created with configuration |
| 1051 | // to use media transport. Otherwise returns nullptr. |
Karl Wiberg | 5966c50 | 2019-02-21 22:55:09 | [diff] [blame] | 1052 | MediaTransportInterface* GetMediaTransport(const std::string& mid) |
| 1053 | RTC_RUN_ON(signaling_thread()) { |
Anton Sukhanov | 98a462c | 2018-10-17 20:15:42 | [diff] [blame] | 1054 | auto media_transport = transport_controller_->GetMediaTransport(mid); |
Bjorn Mellem | a9bbd86 | 2018-11-02 16:07:48 | [diff] [blame] | 1055 | RTC_DCHECK((configuration_.use_media_transport || |
| 1056 | configuration_.use_media_transport_for_data_channels) == |
Piotr (Peter) Slatala | 97fc11f | 2018-10-18 19:57:59 | [diff] [blame] | 1057 | (media_transport != nullptr)) |
| 1058 | << "configuration_.use_media_transport=" |
| 1059 | << configuration_.use_media_transport |
Bjorn Mellem | a9bbd86 | 2018-11-02 16:07:48 | [diff] [blame] | 1060 | << ", configuration_.use_media_transport_for_data_channels=" |
| 1061 | << configuration_.use_media_transport_for_data_channels |
Piotr (Peter) Slatala | 97fc11f | 2018-10-18 19:57:59 | [diff] [blame] | 1062 | << ", (media_transport != nullptr)=" << (media_transport != nullptr); |
Anton Sukhanov | 98a462c | 2018-10-17 20:15:42 | [diff] [blame] | 1063 | return media_transport; |
| 1064 | } |
| 1065 | |
Karl Wiberg | 106d92d | 2019-02-14 09:17:47 | [diff] [blame] | 1066 | sigslot::signal1<DataChannel*> SignalDataChannelCreated_ |
| 1067 | RTC_GUARDED_BY(signaling_thread()); |
Steve Anton | 2d8609c | 2018-01-24 00:38:46 | [diff] [blame] | 1068 | |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 | [diff] [blame] | 1069 | // Storing the factory as a scoped reference pointer ensures that the memory |
| 1070 | // in the PeerConnectionFactoryImpl remains available as long as the |
| 1071 | // PeerConnection is running. It is passed to PeerConnection as a raw pointer. |
| 1072 | // However, since the reference counting is done in the |
deadbeef | ab9b2d1 | 2015-10-14 18:33:11 | [diff] [blame] | 1073 | // PeerConnectionFactoryInterface all instances created using the raw pointer |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 | [diff] [blame] | 1074 | // will refer to the same reference count. |
Karl Wiberg | 744310f | 2019-02-14 09:18:56 | [diff] [blame] | 1075 | const rtc::scoped_refptr<PeerConnectionFactory> factory_; |
| 1076 | PeerConnectionObserver* observer_ RTC_GUARDED_BY(signaling_thread()) = |
| 1077 | nullptr; |
terelius | 3386025 | 2017-05-13 06:37:18 | [diff] [blame] | 1078 | |
| 1079 | // The EventLog needs to outlive |call_| (and any other object that uses it). |
Karl Wiberg | b03ab71 | 2019-02-14 10:59:57 | [diff] [blame] | 1080 | std::unique_ptr<RtcEventLog> event_log_ RTC_GUARDED_BY(worker_thread()); |
| 1081 | |
| 1082 | // Points to the same thing as `event_log_`. Since it's const, we may read the |
| 1083 | // pointer (but not touch the object) from any thread. |
| 1084 | RtcEventLog* const event_log_ptr_ RTC_PT_GUARDED_BY(worker_thread()); |
terelius | 3386025 | 2017-05-13 06:37:18 | [diff] [blame] | 1085 | |
Karl Wiberg | 8d2e228 | 2019-02-17 12:00:07 | [diff] [blame] | 1086 | SignalingState signaling_state_ RTC_GUARDED_BY(signaling_thread()) = kStable; |
| 1087 | IceConnectionState ice_connection_state_ RTC_GUARDED_BY(signaling_thread()) = |
| 1088 | kIceConnectionNew; |
| 1089 | PeerConnectionInterface::IceConnectionState standardized_ice_connection_state_ |
| 1090 | RTC_GUARDED_BY(signaling_thread()) = kIceConnectionNew; |
| 1091 | PeerConnectionInterface::PeerConnectionState connection_state_ |
| 1092 | RTC_GUARDED_BY(signaling_thread()) = PeerConnectionState::kNew; |
Jonas Olsson | 635474e | 2018-10-18 13:58:17 | [diff] [blame] | 1093 | |
Karl Wiberg | 8d2e228 | 2019-02-17 12:00:07 | [diff] [blame] | 1094 | IceGatheringState ice_gathering_state_ RTC_GUARDED_BY(signaling_thread()) = |
| 1095 | kIceGatheringNew; |
Karl Wiberg | 5966c50 | 2019-02-21 22:55:09 | [diff] [blame] | 1096 | PeerConnectionInterface::RTCConfiguration configuration_ |
| 1097 | RTC_GUARDED_BY(signaling_thread()); |
| 1098 | |
| 1099 | // Cache configuration_.use_media_transport so that we can access it from |
| 1100 | // other threads. |
| 1101 | // TODO(bugs.webrtc.org/9987): Caching just this bool and allowing the data |
| 1102 | // it's derived from to change is not necessarily sound. Stop doing it. |
| 1103 | rtc::RaceChecker use_media_transport_race_checker_; |
| 1104 | bool use_media_transport_ RTC_GUARDED_BY(use_media_transport_race_checker_) = |
| 1105 | configuration_.use_media_transport; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 | [diff] [blame] | 1106 | |
Zach Stein | e20867f | 2018-08-02 20:20:15 | [diff] [blame] | 1107 | // TODO(zstein): |async_resolver_factory_| can currently be nullptr if it |
| 1108 | // is not injected. It should be required once chromium supplies it. |
Karl Wiberg | fb3be39 | 2019-03-22 13:13:22 | [diff] [blame] | 1109 | std::unique_ptr<AsyncResolverFactory> async_resolver_factory_ |
| 1110 | RTC_GUARDED_BY(signaling_thread()); |
| 1111 | std::unique_ptr<cricket::PortAllocator> |
| 1112 | port_allocator_; // TODO(bugs.webrtc.org/9987): Accessed on both |
| 1113 | // signaling and network thread. |
| 1114 | std::unique_ptr<rtc::SSLCertificateVerifier> |
| 1115 | tls_cert_verifier_; // TODO(bugs.webrtc.org/9987): Accessed on both |
| 1116 | // signaling and network thread. |
deadbeef | ab9b2d1 | 2015-10-14 18:33:11 | [diff] [blame] | 1117 | |
zhihuang | 8f65cdf | 2016-05-07 01:40:30 | [diff] [blame] | 1118 | // One PeerConnection has only one RTCP CNAME. |
| 1119 | // https://tools.ietf.org/html/draft-ietf-rtcweb-rtp-usage-26#section-4.9 |
Karl Wiberg | fb3be39 | 2019-03-22 13:13:22 | [diff] [blame] | 1120 | const std::string rtcp_cname_; |
zhihuang | 8f65cdf | 2016-05-07 01:40:30 | [diff] [blame] | 1121 | |
deadbeef | ab9b2d1 | 2015-10-14 18:33:11 | [diff] [blame] | 1122 | // Streams added via AddStream. |
Karl Wiberg | 1e1e102 | 2019-03-22 13:27:22 | [diff] [blame] | 1123 | const rtc::scoped_refptr<StreamCollection> local_streams_ |
| 1124 | RTC_GUARDED_BY(signaling_thread()); |
deadbeef | ab9b2d1 | 2015-10-14 18:33:11 | [diff] [blame] | 1125 | // Streams created as a result of SetRemoteDescription. |
Karl Wiberg | 1e1e102 | 2019-03-22 13:27:22 | [diff] [blame] | 1126 | const rtc::scoped_refptr<StreamCollection> remote_streams_ |
| 1127 | RTC_GUARDED_BY(signaling_thread()); |
deadbeef | ab9b2d1 | 2015-10-14 18:33:11 | [diff] [blame] | 1128 | |
Karl Wiberg | 1e1e102 | 2019-03-22 13:27:22 | [diff] [blame] | 1129 | std::vector<std::unique_ptr<MediaStreamObserver>> stream_observers_ |
| 1130 | RTC_GUARDED_BY(signaling_thread()); |
deadbeef | eb45981 | 2015-12-16 03:24:43 | [diff] [blame] | 1131 | |
Steve Anton | 4171afb | 2017-11-20 18:20:22 | [diff] [blame] | 1132 | // These lists store sender info seen in local/remote descriptions. |
Karl Wiberg | c70999e | 2019-03-22 14:14:27 | [diff] [blame] | 1133 | std::vector<RtpSenderInfo> remote_audio_sender_infos_ |
| 1134 | RTC_GUARDED_BY(signaling_thread()); |
| 1135 | std::vector<RtpSenderInfo> remote_video_sender_infos_ |
| 1136 | RTC_GUARDED_BY(signaling_thread()); |
| 1137 | std::vector<RtpSenderInfo> local_audio_sender_infos_ |
| 1138 | RTC_GUARDED_BY(signaling_thread()); |
| 1139 | std::vector<RtpSenderInfo> local_video_sender_infos_ |
| 1140 | RTC_GUARDED_BY(signaling_thread()); |
deadbeef | ab9b2d1 | 2015-10-14 18:33:11 | [diff] [blame] | 1141 | |
Karl Wiberg | 85a4a93 | 2019-03-22 14:29:58 | [diff] [blame^] | 1142 | SctpSidAllocator sid_allocator_ RTC_GUARDED_BY(signaling_thread()); |
deadbeef | ab9b2d1 | 2015-10-14 18:33:11 | [diff] [blame] | 1143 | // label -> DataChannel |
Karl Wiberg | 85a4a93 | 2019-03-22 14:29:58 | [diff] [blame^] | 1144 | std::map<std::string, rtc::scoped_refptr<DataChannel>> rtp_data_channels_ |
| 1145 | RTC_GUARDED_BY(signaling_thread()); |
| 1146 | std::vector<rtc::scoped_refptr<DataChannel>> sctp_data_channels_ |
| 1147 | RTC_GUARDED_BY(signaling_thread()); |
| 1148 | std::vector<rtc::scoped_refptr<DataChannel>> sctp_data_channels_to_free_ |
| 1149 | RTC_GUARDED_BY(signaling_thread()); |
deadbeef | ab9b2d1 | 2015-10-14 18:33:11 | [diff] [blame] | 1150 | |
Karl Wiberg | 85a4a93 | 2019-03-22 14:29:58 | [diff] [blame^] | 1151 | bool remote_peer_supports_msid_ RTC_GUARDED_BY(signaling_thread()) = false; |
deadbeef | 70ab1a1 | 2015-09-28 23:53:55 | [diff] [blame] | 1152 | |
terelius | 3386025 | 2017-05-13 06:37:18 | [diff] [blame] | 1153 | std::unique_ptr<Call> call_; |
terelius | 3386025 | 2017-05-13 06:37:18 | [diff] [blame] | 1154 | std::unique_ptr<StatsCollector> stats_; // A pointer is passed to senders_ |
| 1155 | rtc::scoped_refptr<RTCStatsCollector> stats_collector_; |
| 1156 | |
deadbeef | a601f5c | 2016-06-06 21:27:39 | [diff] [blame] | 1157 | std::vector< |
Steve Anton | 4171afb | 2017-11-20 18:20:22 | [diff] [blame] | 1158 | rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>> |
| 1159 | transceivers_; |
Henrik Boström | 5b14778 | 2018-12-04 10:25:05 | [diff] [blame] | 1160 | // In Unified Plan, if we encounter remote SDP that does not contain an a=msid |
| 1161 | // line we create and use a stream with a random ID for our receivers. This is |
| 1162 | // to support legacy endpoints that do not support the a=msid attribute (as |
| 1163 | // opposed to streamless tracks with "a=msid:-"). |
| 1164 | rtc::scoped_refptr<MediaStreamInterface> missing_msid_default_stream_; |
Amit Hilbuch | ae3df54 | 2019-01-07 20:13:08 | [diff] [blame] | 1165 | // MIDs will be generated using this generator which will keep track of |
| 1166 | // all the MIDs that have been seen over the life of the PeerConnection. |
Amit Hilbuch | dbb49df | 2019-01-23 22:54:24 | [diff] [blame] | 1167 | rtc::UniqueStringGenerator mid_generator_; |
Steve Anton | 75737c0 | 2017-11-06 18:37:17 | [diff] [blame] | 1168 | |
Steve Anton | f847081 | 2017-12-04 18:46:21 | [diff] [blame] | 1169 | SessionError session_error_ = SessionError::kNone; |
| 1170 | std::string session_error_desc_; |
Steve Anton | 75737c0 | 2017-11-06 18:37:17 | [diff] [blame] | 1171 | |
| 1172 | std::string session_id_; |
Steve Anton | 75737c0 | 2017-11-06 18:37:17 | [diff] [blame] | 1173 | |
Zhi Huang | e830e68 | 2018-03-30 17:48:35 | [diff] [blame] | 1174 | std::unique_ptr<JsepTransportController> transport_controller_; |
Steve Anton | 75737c0 | 2017-11-06 18:37:17 | [diff] [blame] | 1175 | std::unique_ptr<cricket::SctpTransportInternalFactory> sctp_factory_; |
Steve Anton | 75737c0 | 2017-11-06 18:37:17 | [diff] [blame] | 1176 | // |rtp_data_channel_| is used if in RTP data channel mode, |sctp_transport_| |
| 1177 | // when using SCTP. |
| 1178 | cricket::RtpDataChannel* rtp_data_channel_ = nullptr; |
| 1179 | |
Harald Alvestrand | c85328f | 2019-02-28 06:51:00 | [diff] [blame] | 1180 | cricket::SctpTransportInternal* cricket_sctp_transport() { |
| 1181 | return sctp_transport_->internal(); |
| 1182 | } |
| 1183 | rtc::scoped_refptr<SctpTransport> sctp_transport_; |
Zhi Huang | e830e68 | 2018-03-30 17:48:35 | [diff] [blame] | 1184 | // |sctp_mid_| is the content name (MID) in SDP. |
Danil Chapovalov | 66cadcc | 2018-06-19 14:47:43 | [diff] [blame] | 1185 | absl::optional<std::string> sctp_mid_; |
Steve Anton | 75737c0 | 2017-11-06 18:37:17 | [diff] [blame] | 1186 | // Value cached on signaling thread. Only updated when SctpReadyToSendData |
| 1187 | // fires on the signaling thread. |
| 1188 | bool sctp_ready_to_send_data_ = false; |
| 1189 | // Same as signals provided by SctpTransport, but these are guaranteed to |
| 1190 | // fire on the signaling thread, whereas SctpTransport fires on the networking |
| 1191 | // thread. |
| 1192 | // |sctp_invoker_| is used so that any signals queued on the signaling thread |
| 1193 | // from the network thread are immediately discarded if the SctpTransport is |
| 1194 | // destroyed (due to m= section being rejected). |
| 1195 | // TODO(deadbeef): Use a proxy object to ensure that method calls/signals |
| 1196 | // are marshalled to the right thread. Could almost use proxy.h for this, |
| 1197 | // but it doesn't have a mechanism for marshalling sigslot::signals |
| 1198 | std::unique_ptr<rtc::AsyncInvoker> sctp_invoker_; |
| 1199 | sigslot::signal1<bool> SignalSctpReadyToSendData; |
| 1200 | sigslot::signal2<const cricket::ReceiveDataParams&, |
| 1201 | const rtc::CopyOnWriteBuffer&> |
| 1202 | SignalSctpDataReceived; |
Taylor Brandstetter | cdd05f0 | 2018-05-31 20:23:32 | [diff] [blame] | 1203 | sigslot::signal1<int> SignalSctpClosingProcedureStartedRemotely; |
| 1204 | sigslot::signal1<int> SignalSctpClosingProcedureComplete; |
Steve Anton | 75737c0 | 2017-11-06 18:37:17 | [diff] [blame] | 1205 | |
Bjorn Mellem | 175aa2e | 2018-11-08 19:23:22 | [diff] [blame] | 1206 | // Whether this peer is the caller. Set when the local description is applied. |
| 1207 | absl::optional<bool> is_caller_ RTC_GUARDED_BY(signaling_thread()); |
| 1208 | |
| 1209 | // Content name (MID) for media transport data channels in SDP. |
| 1210 | absl::optional<std::string> media_transport_data_mid_; |
| 1211 | |
| 1212 | // Media transport used for data channels. Thread-safe. |
| 1213 | MediaTransportInterface* media_transport_ = nullptr; |
| 1214 | |
| 1215 | // Cached value of whether the media transport is ready to send. |
| 1216 | bool media_transport_ready_to_send_data_ RTC_GUARDED_BY(signaling_thread()) = |
| 1217 | false; |
| 1218 | |
| 1219 | // Used to invoke media transport signals on the signaling thread. |
| 1220 | std::unique_ptr<rtc::AsyncInvoker> media_transport_invoker_; |
| 1221 | |
| 1222 | // Identical to the signals for SCTP, but from media transport: |
| 1223 | sigslot::signal1<bool> SignalMediaTransportWritable_s |
| 1224 | RTC_GUARDED_BY(signaling_thread()); |
| 1225 | sigslot::signal2<const cricket::ReceiveDataParams&, |
| 1226 | const rtc::CopyOnWriteBuffer&> |
| 1227 | SignalMediaTransportReceivedData_s RTC_GUARDED_BY(signaling_thread()); |
| 1228 | sigslot::signal1<int> SignalMediaTransportChannelClosing_s |
| 1229 | RTC_GUARDED_BY(signaling_thread()); |
| 1230 | sigslot::signal1<int> SignalMediaTransportChannelClosed_s |
| 1231 | RTC_GUARDED_BY(signaling_thread()); |
| 1232 | |
Steve Anton | 75737c0 | 2017-11-06 18:37:17 | [diff] [blame] | 1233 | std::unique_ptr<SessionDescriptionInterface> current_local_description_; |
| 1234 | std::unique_ptr<SessionDescriptionInterface> pending_local_description_; |
| 1235 | std::unique_ptr<SessionDescriptionInterface> current_remote_description_; |
| 1236 | std::unique_ptr<SessionDescriptionInterface> pending_remote_description_; |
| 1237 | bool dtls_enabled_ = false; |
| 1238 | // Specifies which kind of data channel is allowed. This is controlled |
| 1239 | // by the chrome command-line flag and constraints: |
| 1240 | // 1. If chrome command-line switch 'enable-sctp-data-channels' is enabled, |
| 1241 | // constraint kEnableDtlsSrtp is true, and constaint kEnableRtpDataChannels is |
| 1242 | // not set or false, SCTP is allowed (DCT_SCTP); |
| 1243 | // 2. If constraint kEnableRtpDataChannels is true, RTP is allowed (DCT_RTP); |
| 1244 | // 3. If both 1&2 are false, data channel is not allowed (DCT_NONE). |
| 1245 | cricket::DataChannelType data_channel_type_ = cricket::DCT_NONE; |
| 1246 | // List of content names for which the remote side triggered an ICE restart. |
| 1247 | std::set<std::string> pending_ice_restarts_; |
| 1248 | |
| 1249 | std::unique_ptr<WebRtcSessionDescriptionFactory> webrtc_session_desc_factory_; |
| 1250 | |
| 1251 | // Member variables for caching global options. |
| 1252 | cricket::AudioOptions audio_options_; |
| 1253 | cricket::VideoOptions video_options_; |
Harald Alvestrand | 8ebba74 | 2018-05-31 12:00:34 | [diff] [blame] | 1254 | |
| 1255 | int usage_event_accumulator_ = 0; |
Harald Alvestrand | 1979384 | 2018-06-25 10:03:50 | [diff] [blame] | 1256 | bool return_histogram_very_quickly_ = false; |
Amit Hilbuch | bcd39d4 | 2019-01-26 01:13:56 | [diff] [blame] | 1257 | |
| 1258 | // This object should be used to generate any SSRC that is not explicitly |
| 1259 | // specified by the user (or by the remote party). |
| 1260 | // The generator is not used directly, instead it is passed on to the |
| 1261 | // channel manager and the session description factory. |
| 1262 | rtc::UniqueRandomIdGenerator ssrc_generator_; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 | [diff] [blame] | 1263 | }; |
| 1264 | |
| 1265 | } // namespace webrtc |
| 1266 | |
Steve Anton | 10542f2 | 2019-01-11 17:11:00 | [diff] [blame] | 1267 | #endif // PC_PEER_CONNECTION_H_ |