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