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