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