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