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