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