blob: b5ae9d2ae43852700dec232420caee6cb5e40f40 [file] [log] [blame]
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001/*
kjellanderb24317b2016-02-10 07:54:43 -08002 * Copyright 2012 The WebRTC project authors. All Rights Reserved.
henrike@webrtc.org28e20752013-07-10 00:45:36 +00003 *
kjellanderb24317b2016-02-10 07:54:43 -08004 * 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.org28e20752013-07-10 00:45:36 +00009 */
10
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020011#ifndef PC_PEERCONNECTION_H_
12#define PC_PEERCONNECTION_H_
henrike@webrtc.org28e20752013-07-10 00:45:36 +000013
perkjd61bf802016-03-24 03:16:19 -070014#include <map>
kwibergd1fe2812016-04-27 06:47:29 -070015#include <memory>
Steve Anton75737c02017-11-06 10:37:17 -080016#include <set>
17#include <string>
perkjd61bf802016-03-24 03:16:19 -070018#include <vector>
henrike@webrtc.org28e20752013-07-10 00:45:36 +000019
Piotr (Peter) Slatalae0c2e972018-10-08 09:43:21 -070020#include "api/media_transport_interface.h"
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020021#include "api/peerconnectioninterface.h"
Jonas Orelandbdcee282017-10-10 14:01:40 +020022#include "api/turncustomizer.h"
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020023#include "pc/iceserverparsing.h"
Zhi Huange830e682018-03-30 10:48:35 -070024#include "pc/jseptransportcontroller.h"
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020025#include "pc/peerconnectionfactory.h"
Steve Anton2d8609c2018-01-23 16:38:46 -080026#include "pc/peerconnectioninternal.h"
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020027#include "pc/rtcstatscollector.h"
Steve Anton4171afb2017-11-20 10:20:22 -080028#include "pc/rtptransceiver.h"
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020029#include "pc/statscollector.h"
30#include "pc/streamcollection.h"
Steve Anton75737c02017-11-06 10:37:17 -080031#include "pc/webrtcsessiondescriptionfactory.h"
henrike@webrtc.org28e20752013-07-10 00:45:36 +000032
33namespace webrtc {
henrike@webrtc.org28e20752013-07-10 00:45:36 +000034
deadbeefeb459812015-12-15 19:24:43 -080035class MediaStreamObserver;
perkjf0dcfe22016-03-10 18:32:00 +010036class VideoRtpReceiver;
skvlad11a9cbf2016-10-07 11:53:05 -070037class RtcEventLog;
deadbeefab9b2d12015-10-14 11:33:11 -070038
Steve Anton75737c02017-11-06 10:37:17 -080039// 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 Anton2d8609c2018-01-23 16:38:46 -080053class PeerConnection : public PeerConnectionInternal,
Steve Anton75737c02017-11-06 10:37:17 -080054 public DataChannelProviderInterface,
Bjorn Mellem175aa2e2018-11-08 11:23:22 -080055 public DataChannelSink,
Zhi Huang365381f2018-04-13 16:44:34 -070056 public JsepTransportController::Observer,
Steve Antonad182762018-09-05 20:22:40 +000057 public rtc::MessageHandler,
henrike@webrtc.org28e20752013-07-10 00:45:36 +000058 public sigslot::has_slots<> {
59 public:
Harald Alvestrand8ebba742018-05-31 14:00:34 +020060 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 Wang7fc821d2018-07-12 12:54:53 -070071 CLOSE_CALLED = 0x400,
Harald Alvestrand056d8112018-07-16 19:18:58 +020072 PRIVATE_CANDIDATE_COLLECTED = 0x800,
73 MAX_VALUE = 0x1000,
Harald Alvestrand8ebba742018-05-31 14:00:34 +020074 };
75
zhihuang38ede132017-06-15 12:52:32 -070076 explicit PeerConnection(PeerConnectionFactory* factory,
77 std::unique_ptr<RtcEventLog> event_log,
78 std::unique_ptr<Call> call);
henrike@webrtc.org28e20752013-07-10 00:45:36 +000079
deadbeef653b8e02015-11-11 12:55:10 -080080 bool Initialize(
81 const PeerConnectionInterface::RTCConfiguration& configuration,
Benjamin Wrightcab58882018-05-02 15:12:47 -070082 PeerConnectionDependencies dependencies);
deadbeef653b8e02015-11-11 12:55:10 -080083
deadbeefa67696b2015-09-29 11:56:26 -070084 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.org28e20752013-07-10 00:45:36 +000088
Steve Anton2d6c76a2018-01-05 17:10:52 -080089 RTCErrorOr<rtc::scoped_refptr<RtpSenderInterface>> AddTrack(
Steve Antonf9381f02017-12-14 10:23:57 -080090 rtc::scoped_refptr<MediaStreamTrackInterface> track,
Seth Hampson845e8782018-03-02 11:34:10 -080091 const std::vector<std::string>& stream_ids) override;
deadbeefe1f9d832016-01-14 15:35:42 -080092 bool RemoveTrack(RtpSenderInterface* sender) override;
Steve Anton24db5732018-07-23 10:27:33 -070093 RTCError RemoveTrackNew(
94 rtc::scoped_refptr<RtpSenderInterface> sender) override;
deadbeefe1f9d832016-01-14 15:35:42 -080095
Steve Anton9158ef62017-11-27 13:01:52 -080096 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 Anton8c0f7a72017-10-03 10:03:10 -0700107 // 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 Huang70b820f2018-01-27 14:16:15 -0800116 // Version of the above method that returns the full certificate chain.
117 std::unique_ptr<rtc::SSLCertChain> GetRemoteAudioSSLCertChain();
118
deadbeeffac06552015-11-25 11:26:01 -0800119 rtc::scoped_refptr<RtpSenderInterface> CreateSender(
deadbeefbd7d8f72015-12-18 16:58:44 -0800120 const std::string& kind,
121 const std::string& stream_id) override;
deadbeeffac06552015-11-25 11:26:01 -0800122
deadbeef70ab1a12015-09-28 16:53:55 -0700123 std::vector<rtc::scoped_refptr<RtpSenderInterface>> GetSenders()
124 const override;
125 std::vector<rtc::scoped_refptr<RtpReceiverInterface>> GetReceivers()
126 const override;
Steve Anton9158ef62017-11-27 13:01:52 -0800127 std::vector<rtc::scoped_refptr<RtpTransceiverInterface>> GetTransceivers()
128 const override;
deadbeef70ab1a12015-09-28 16:53:55 -0700129
deadbeefa67696b2015-09-29 11:56:26 -0700130 rtc::scoped_refptr<DataChannelInterface> CreateDataChannel(
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000131 const std::string& label,
deadbeefa67696b2015-09-29 11:56:26 -0700132 const DataChannelInit* config) override;
Henrik Boström1df1bf82018-03-20 13:24:20 +0100133 // WARNING: LEGACY. See peerconnectioninterface.h
deadbeefa67696b2015-09-29 11:56:26 -0700134 bool GetStats(StatsObserver* observer,
135 webrtc::MediaStreamTrackInterface* track,
136 StatsOutputLevel level) override;
Henrik Boström1df1bf82018-03-20 13:24:20 +0100137 // Spec-complaint GetStats(). See peerconnectioninterface.h
hbos74e1a4f2016-09-15 23:33:01 -0700138 void GetStats(RTCStatsCollectorCallback* callback) override;
Henrik Boström1df1bf82018-03-20 13:24:20 +0100139 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 Alvestrand89061872018-01-02 14:08:34 +0100145 void ClearStatsCache() override;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000146
deadbeefa67696b2015-09-29 11:56:26 -0700147 SignalingState signaling_state() override;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000148
deadbeefa67696b2015-09-29 11:56:26 -0700149 IceConnectionState ice_connection_state() override;
Jonas Olsson635474e2018-10-18 15:58:17 +0200150 IceConnectionState standardized_ice_connection_state();
151 PeerConnectionState peer_connection_state() override;
deadbeefa67696b2015-09-29 11:56:26 -0700152 IceGatheringState ice_gathering_state() override;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000153
deadbeefa67696b2015-09-29 11:56:26 -0700154 const SessionDescriptionInterface* local_description() const override;
155 const SessionDescriptionInterface* remote_description() const override;
deadbeeffe4a8a42016-12-20 17:56:17 -0800156 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.org28e20752013-07-10 00:45:36 +0000162
163 // JSEP01
deadbeefa67696b2015-09-29 11:56:26 -0700164 void CreateOffer(CreateSessionDescriptionObserver* observer,
165 const RTCOfferAnswerOptions& options) override;
htaa2a49d92016-03-04 02:51:39 -0800166 void CreateAnswer(CreateSessionDescriptionObserver* observer,
167 const RTCOfferAnswerOptions& options) override;
deadbeefa67696b2015-09-29 11:56:26 -0700168 void SetLocalDescription(SetSessionDescriptionObserver* observer,
169 SessionDescriptionInterface* desc) override;
Henrik Boströma4ecf552017-11-23 14:17:07 +0000170 void SetRemoteDescription(SetSessionDescriptionObserver* observer,
171 SessionDescriptionInterface* desc) override;
Henrik Boström31638672017-11-23 17:48:32 +0100172 void SetRemoteDescription(
173 std::unique_ptr<SessionDescriptionInterface> desc,
174 rtc::scoped_refptr<SetRemoteDescriptionObserverInterface> observer)
175 override;
deadbeef46c73892016-11-16 19:42:04 -0800176 PeerConnectionInterface::RTCConfiguration GetConfiguration() override;
deadbeefa67696b2015-09-29 11:56:26 -0700177 bool SetConfiguration(
deadbeef293e9262017-01-11 12:28:30 -0800178 const PeerConnectionInterface::RTCConfiguration& configuration,
179 RTCError* error) override;
180 bool SetConfiguration(
181 const PeerConnectionInterface::RTCConfiguration& configuration) override {
182 return SetConfiguration(configuration, nullptr);
183 }
deadbeefa67696b2015-09-29 11:56:26 -0700184 bool AddIceCandidate(const IceCandidateInterface* candidate) override;
Honghai Zhang7fb69db2016-03-14 11:59:18 -0700185 bool RemoveIceCandidates(
186 const std::vector<cricket::Candidate>& candidates) override;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000187
Niels Möller0c4f7be2018-05-07 14:01:37 +0200188 RTCError SetBitrate(const BitrateSettings& bitrate) override;
zstein4b979802017-06-02 14:37:37 -0700189
Alex Narest78609d52017-10-20 10:37:47 +0200190 void SetBitrateAllocationStrategy(
191 std::unique_ptr<rtc::BitrateAllocationStrategy>
192 bitrate_allocation_strategy) override;
193
henrika5f6bf242017-11-01 11:06:56 +0100194 void SetAudioPlayout(bool playout) override;
195 void SetAudioRecording(bool recording) override;
196
Elad Alon99c3fe52017-10-13 16:29:40 +0200197 RTC_DEPRECATED bool StartRtcEventLog(rtc::PlatformFile file,
198 int64_t max_size_bytes) override;
Bjorn Tereliusde939432017-11-20 17:38:14 +0100199 bool StartRtcEventLog(std::unique_ptr<RtcEventLogOutput> output,
200 int64_t output_period_ms) override;
ivoc14d5dbe2016-07-04 07:06:55 -0700201 void StopRtcEventLog() override;
202
deadbeefa67696b2015-09-29 11:56:26 -0700203 void Close() override;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000204
Steve Anton2d8609c2018-01-23 16:38:46 -0800205 // PeerConnectionInternal implementation.
206 rtc::Thread* network_thread() const override {
207 return factory_->network_thread();
208 }
209 rtc::Thread* worker_thread() const override {
210 return factory_->worker_thread();
211 }
212 rtc::Thread* signaling_thread() const override {
213 return factory_->signaling_thread();
perkjd61bf802016-03-24 03:16:19 -0700214 }
deadbeefab9b2d12015-10-14 11:33:11 -0700215
Steve Antonbe5e2082018-01-24 15:29:17 -0800216 std::string session_id() const override { return session_id_; }
Steve Anton75737c02017-11-06 10:37:17 -0800217
Steve Anton2d8609c2018-01-23 16:38:46 -0800218 bool initial_offerer() const override {
Zhi Huange830e682018-03-30 10:48:35 -0700219 return transport_controller_ && transport_controller_->initial_offerer();
Steve Anton2d8609c2018-01-23 16:38:46 -0800220 }
Steve Anton75737c02017-11-06 10:37:17 -0800221
Steve Anton2d8609c2018-01-23 16:38:46 -0800222 std::vector<
223 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>>
Steve Antonb8867112018-02-13 10:07:54 -0800224 GetTransceiversInternal() const override {
Steve Anton2d8609c2018-01-23 16:38:46 -0800225 return transceivers_;
226 }
227
228 bool GetLocalTrackIdBySsrc(uint32_t ssrc, std::string* track_id) override;
229 bool GetRemoteTrackIdBySsrc(uint32_t ssrc, std::string* track_id) override;
230
231 sigslot::signal1<DataChannel*>& SignalDataChannelCreated() override {
232 return SignalDataChannelCreated_;
233 }
234
235 cricket::RtpDataChannel* rtp_data_channel() const override {
Steve Anton75737c02017-11-06 10:37:17 -0800236 return rtp_data_channel_;
Steve Anton978b8762017-09-29 12:15:02 -0700237 }
Steve Anton2d8609c2018-01-23 16:38:46 -0800238
Steve Antonbe5e2082018-01-24 15:29:17 -0800239 std::vector<rtc::scoped_refptr<DataChannel>> sctp_data_channels()
Steve Anton2d8609c2018-01-23 16:38:46 -0800240 const override {
241 return sctp_data_channels_;
242 }
243
Danil Chapovalov66cadcc2018-06-19 16:47:43 +0200244 absl::optional<std::string> sctp_content_name() const override {
Zhi Huange830e682018-03-30 10:48:35 -0700245 return sctp_mid_;
Steve Anton75737c02017-11-06 10:37:17 -0800246 }
Steve Anton2d8609c2018-01-23 16:38:46 -0800247
Danil Chapovalov66cadcc2018-06-19 16:47:43 +0200248 absl::optional<std::string> sctp_transport_name() const override;
Steve Anton75737c02017-11-06 10:37:17 -0800249
Qingsi Wang72a43a12018-02-20 16:03:18 -0800250 cricket::CandidateStatsList GetPooledCandidateStats() const override;
Steve Anton5dfde182018-02-06 10:34:40 -0800251 std::map<std::string, std::string> GetTransportNamesByMid() const override;
252 std::map<std::string, cricket::TransportStats> GetTransportStatsByNames(
253 const std::set<std::string>& transport_names) override;
Steve Anton2d8609c2018-01-23 16:38:46 -0800254 Call::Stats GetCallStats() override;
Steve Anton75737c02017-11-06 10:37:17 -0800255
Steve Anton2d8609c2018-01-23 16:38:46 -0800256 bool GetLocalCertificate(
257 const std::string& transport_name,
258 rtc::scoped_refptr<rtc::RTCCertificate>* certificate) override;
Taylor Brandstetterc3928662018-02-23 13:04:51 -0800259 std::unique_ptr<rtc::SSLCertChain> GetRemoteSSLCertChain(
Steve Anton2d8609c2018-01-23 16:38:46 -0800260 const std::string& transport_name) override;
261 bool IceRestartPending(const std::string& content_name) const override;
262 bool NeedsIceRestart(const std::string& content_name) const override;
263 bool GetSslRole(const std::string& content_name, rtc::SSLRole* role) override;
Steve Anton7464fca2018-01-19 11:10:37 -0800264
Harald Alvestrand19793842018-06-25 12:03:50 +0200265 void ReturnHistogramVeryQuicklyForTesting() {
266 return_histogram_very_quickly_ = true;
267 }
Harald Alvestrand7a1c7f72018-08-01 10:50:16 +0200268 void RequestUsagePatternReportForTesting();
Harald Alvestrand19793842018-06-25 12:03:50 +0200269
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000270 protected:
deadbeefa67696b2015-09-29 11:56:26 -0700271 ~PeerConnection() override;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000272
273 private:
Henrik Boström31638672017-11-23 17:48:32 +0100274 class SetRemoteDescriptionObserverAdapter;
275 friend class SetRemoteDescriptionObserverAdapter;
276
Steve Anton4171afb2017-11-20 10:20:22 -0800277 struct RtpSenderInfo {
278 RtpSenderInfo() : first_ssrc(0) {}
Seth Hampson845e8782018-03-02 11:34:10 -0800279 RtpSenderInfo(const std::string& stream_id,
Steve Anton4171afb2017-11-20 10:20:22 -0800280 const std::string sender_id,
281 uint32_t ssrc)
Seth Hampson845e8782018-03-02 11:34:10 -0800282 : stream_id(stream_id), sender_id(sender_id), first_ssrc(ssrc) {}
Steve Anton4171afb2017-11-20 10:20:22 -0800283 bool operator==(const RtpSenderInfo& other) {
Seth Hampson845e8782018-03-02 11:34:10 -0800284 return this->stream_id == other.stream_id &&
Steve Anton4171afb2017-11-20 10:20:22 -0800285 this->sender_id == other.sender_id &&
286 this->first_ssrc == other.first_ssrc;
deadbeefbda7e0b2015-12-08 17:13:40 -0800287 }
Seth Hampson845e8782018-03-02 11:34:10 -0800288 std::string stream_id;
Steve Anton4171afb2017-11-20 10:20:22 -0800289 std::string sender_id;
290 // An RtpSender can have many SSRCs. The first one is used as a sort of ID
291 // for communicating with the lower layers.
292 uint32_t first_ssrc;
deadbeefab9b2d12015-10-14 11:33:11 -0700293 };
deadbeefab9b2d12015-10-14 11:33:11 -0700294
Steve Antonad182762018-09-05 20:22:40 +0000295 // Implements MessageHandler.
296 void OnMessage(rtc::Message* msg) override;
297
Steve Antonafb0bb72018-02-20 11:35:37 -0800298 // Plan B helpers for getting the voice/video media channels for the single
299 // audio/video transceiver, if it exists.
300 cricket::VoiceMediaChannel* voice_media_channel() const;
301 cricket::VideoMediaChannel* video_media_channel() const;
Steve Anton60776752018-01-10 11:51:34 -0800302
Steve Anton4171afb2017-11-20 10:20:22 -0800303 std::vector<rtc::scoped_refptr<RtpSenderProxyWithInternal<RtpSenderInternal>>>
304 GetSendersInternal() const;
305 std::vector<
306 rtc::scoped_refptr<RtpReceiverProxyWithInternal<RtpReceiverInternal>>>
307 GetReceiversInternal() const;
308
309 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
310 GetAudioTransceiver() const;
311 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
312 GetVideoTransceiver() const;
313
Steve Antonafb0bb72018-02-20 11:35:37 -0800314 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
315 GetFirstAudioTransceiver() const;
316
deadbeefab9b2d12015-10-14 11:33:11 -0700317 void CreateAudioReceiver(MediaStreamInterface* stream,
Steve Anton4171afb2017-11-20 10:20:22 -0800318 const RtpSenderInfo& remote_sender_info);
perkjf0dcfe22016-03-10 18:32:00 +0100319
deadbeefab9b2d12015-10-14 11:33:11 -0700320 void CreateVideoReceiver(MediaStreamInterface* stream,
Steve Anton4171afb2017-11-20 10:20:22 -0800321 const RtpSenderInfo& remote_sender_info);
Henrik Boström933d8b02017-10-10 10:05:16 -0700322 rtc::scoped_refptr<RtpReceiverInterface> RemoveAndStopReceiver(
Steve Anton4171afb2017-11-20 10:20:22 -0800323 const RtpSenderInfo& remote_sender_info);
korniltsev.anatolyec390b52017-07-24 17:00:25 -0700324
325 // May be called either by AddStream/RemoveStream, or when a track is
326 // added/removed from a stream previously added via AddStream.
327 void AddAudioTrack(AudioTrackInterface* track, MediaStreamInterface* stream);
328 void RemoveAudioTrack(AudioTrackInterface* track,
329 MediaStreamInterface* stream);
330 void AddVideoTrack(VideoTrackInterface* track, MediaStreamInterface* stream);
331 void RemoveVideoTrack(VideoTrackInterface* track,
332 MediaStreamInterface* stream);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000333
Steve Antonf9381f02017-12-14 10:23:57 -0800334 // AddTrack implementation when Unified Plan is specified.
335 RTCErrorOr<rtc::scoped_refptr<RtpSenderInterface>> AddTrackUnifiedPlan(
336 rtc::scoped_refptr<MediaStreamTrackInterface> track,
Seth Hampson845e8782018-03-02 11:34:10 -0800337 const std::vector<std::string>& stream_ids);
Steve Antonf9381f02017-12-14 10:23:57 -0800338 // AddTrack implementation when Plan B is specified.
339 RTCErrorOr<rtc::scoped_refptr<RtpSenderInterface>> AddTrackPlanB(
340 rtc::scoped_refptr<MediaStreamTrackInterface> track,
Seth Hampson845e8782018-03-02 11:34:10 -0800341 const std::vector<std::string>& stream_ids);
Steve Antonf9381f02017-12-14 10:23:57 -0800342
343 // Returns the first RtpTransceiver suitable for a newly added track, if such
344 // transceiver is available.
345 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
346 FindFirstTransceiverForAddedTrack(
347 rtc::scoped_refptr<MediaStreamTrackInterface> track);
348
Steve Antonf9381f02017-12-14 10:23:57 -0800349 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
350 FindTransceiverBySender(rtc::scoped_refptr<RtpSenderInterface> sender);
351
Steve Anton22da89f2018-01-25 13:58:07 -0800352 // Internal implementation for AddTransceiver family of methods. If
353 // |fire_callback| is set, fires OnRenegotiationNeeded callback if successful.
Steve Anton9158ef62017-11-27 13:01:52 -0800354 RTCErrorOr<rtc::scoped_refptr<RtpTransceiverInterface>> AddTransceiver(
355 cricket::MediaType media_type,
356 rtc::scoped_refptr<MediaStreamTrackInterface> track,
Steve Anton22da89f2018-01-25 13:58:07 -0800357 const RtpTransceiverInit& init,
358 bool fire_callback = true);
Steve Anton9158ef62017-11-27 13:01:52 -0800359
Steve Anton02ee47c2018-01-10 16:26:06 -0800360 rtc::scoped_refptr<RtpSenderProxyWithInternal<RtpSenderInternal>>
361 CreateSender(cricket::MediaType media_type,
Steve Anton111fdfd2018-06-25 13:03:36 -0700362 const std::string& id,
Steve Anton02ee47c2018-01-10 16:26:06 -0800363 rtc::scoped_refptr<MediaStreamTrackInterface> track,
Florent Castelli892acf02018-10-01 22:47:20 +0200364 const std::vector<std::string>& stream_ids,
365 const std::vector<RtpEncodingParameters>& send_encodings);
Steve Anton02ee47c2018-01-10 16:26:06 -0800366
367 rtc::scoped_refptr<RtpReceiverProxyWithInternal<RtpReceiverInternal>>
368 CreateReceiver(cricket::MediaType media_type, const std::string& receiver_id);
369
Steve Antonf9381f02017-12-14 10:23:57 -0800370 // Create a new RtpTransceiver of the given type and add it to the list of
371 // transceivers.
372 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
Steve Anton02ee47c2018-01-10 16:26:06 -0800373 CreateAndAddTransceiver(
374 rtc::scoped_refptr<RtpSenderProxyWithInternal<RtpSenderInternal>> sender,
375 rtc::scoped_refptr<RtpReceiverProxyWithInternal<RtpReceiverInternal>>
376 receiver);
Steve Antonf9381f02017-12-14 10:23:57 -0800377
Steve Antonba818672017-11-06 10:21:57 -0800378 void SetIceConnectionState(IceConnectionState new_state);
Jonas Olsson635474e2018-10-18 15:58:17 +0200379 void SetStandardizedIceConnectionState(
380 PeerConnectionInterface::IceConnectionState new_state);
381 void SetConnectionState(
382 PeerConnectionInterface::PeerConnectionState new_state);
383
Steve Antonba818672017-11-06 10:21:57 -0800384 // Called any time the IceGatheringState changes
385 void OnIceGatheringChange(IceGatheringState new_state);
386 // New ICE candidate has been gathered.
387 void OnIceCandidate(std::unique_ptr<IceCandidateInterface> candidate);
388 // Some local ICE candidates have been removed.
Honghai Zhang7fb69db2016-03-14 11:59:18 -0700389 void OnIceCandidatesRemoved(
Steve Antonba818672017-11-06 10:21:57 -0800390 const std::vector<cricket::Candidate>& candidates);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000391
Steve Antonba818672017-11-06 10:21:57 -0800392 // Update the state, signaling if necessary.
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000393 void ChangeSignalingState(SignalingState signaling_state);
394
deadbeefeb459812015-12-15 19:24:43 -0800395 // Signals from MediaStreamObserver.
396 void OnAudioTrackAdded(AudioTrackInterface* track,
397 MediaStreamInterface* stream);
398 void OnAudioTrackRemoved(AudioTrackInterface* track,
399 MediaStreamInterface* stream);
400 void OnVideoTrackAdded(VideoTrackInterface* track,
401 MediaStreamInterface* stream);
402 void OnVideoTrackRemoved(VideoTrackInterface* track,
403 MediaStreamInterface* stream);
404
Henrik Boström31638672017-11-23 17:48:32 +0100405 void PostSetSessionDescriptionSuccess(
406 SetSessionDescriptionObserver* observer);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000407 void PostSetSessionDescriptionFailure(SetSessionDescriptionObserver* observer,
Steve Antonad182762018-09-05 20:22:40 +0000408 RTCError&& error);
deadbeefab9b2d12015-10-14 11:33:11 -0700409 void PostCreateSessionDescriptionFailure(
410 CreateSessionDescriptionObserver* observer,
Harald Alvestrand5081c0c2018-03-09 15:18:03 +0100411 RTCError error);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000412
Steve Anton8a006912017-12-04 15:25:56 -0800413 // Synchronous implementations of SetLocalDescription/SetRemoteDescription
414 // that return an RTCError instead of invoking a callback.
415 RTCError ApplyLocalDescription(
416 std::unique_ptr<SessionDescriptionInterface> desc);
417 RTCError ApplyRemoteDescription(
418 std::unique_ptr<SessionDescriptionInterface> desc);
419
Steve Antondcc3c022017-12-22 16:02:54 -0800420 // Updates the local RtpTransceivers according to the JSEP rules. Called as
421 // part of setting the local/remote description.
422 RTCError UpdateTransceiversAndDataChannels(
423 cricket::ContentSource source,
Seth Hampsonae8a90a2018-02-13 15:33:48 -0800424 const SessionDescriptionInterface& new_session,
425 const SessionDescriptionInterface* old_local_description,
426 const SessionDescriptionInterface* old_remote_description);
Steve Antondcc3c022017-12-22 16:02:54 -0800427
428 // Either creates or destroys the transceiver's BaseChannel according to the
429 // given media section.
430 RTCError UpdateTransceiverChannel(
431 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
432 transceiver,
433 const cricket::ContentInfo& content,
434 const cricket::ContentGroup* bundle_group);
435
Steve Antonfa2260d2017-12-28 16:38:23 -0800436 // Either creates or destroys the local data channel according to the given
437 // media section.
438 RTCError UpdateDataChannel(cricket::ContentSource source,
439 const cricket::ContentInfo& content,
440 const cricket::ContentGroup* bundle_group);
441
Steve Antondcc3c022017-12-22 16:02:54 -0800442 // Associate the given transceiver according to the JSEP rules.
443 RTCErrorOr<
444 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>>
445 AssociateTransceiver(cricket::ContentSource source,
Seth Hampsonae8a90a2018-02-13 15:33:48 -0800446 SdpType type,
Steve Antondcc3c022017-12-22 16:02:54 -0800447 size_t mline_index,
448 const cricket::ContentInfo& content,
Seth Hampsonae8a90a2018-02-13 15:33:48 -0800449 const cricket::ContentInfo* old_local_content,
450 const cricket::ContentInfo* old_remote_content);
Steve Antondcc3c022017-12-22 16:02:54 -0800451
452 // Returns the RtpTransceiver, if found, that is associated to the given MID.
453 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
454 GetAssociatedTransceiver(const std::string& mid) const;
455
456 // Returns the RtpTransceiver, if found, that was assigned to the given mline
457 // index in CreateOffer.
458 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
459 GetTransceiverByMLineIndex(size_t mline_index) const;
460
461 // Returns an RtpTransciever, if available, that can be used to receive the
462 // given media type according to JSEP rules.
463 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
464 FindAvailableTransceiverToReceive(cricket::MediaType media_type) const;
465
Steve Antoned10bd92017-12-05 10:52:59 -0800466 // Returns the media section in the given session description that is
467 // associated with the RtpTransceiver. Returns null if none found or this
468 // RtpTransceiver is not associated. Logic varies depending on the
469 // SdpSemantics specified in the configuration.
470 const cricket::ContentInfo* FindMediaSectionForTransceiver(
471 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
472 transceiver,
473 const SessionDescriptionInterface* sdesc) const;
474
Steve Anton0f5400a2018-07-17 14:25:36 -0700475 // Runs the algorithm **process the removal of a remote track** specified in
476 // the WebRTC specification.
477 // This method will update the following lists:
478 // |remove_list| is the list of transceivers for which the receiving track is
479 // being removed.
480 // |removed_streams| is the list of streams which no longer have a receiving
481 // track so should be removed.
482 // https://w3c.github.io/webrtc-pc/#process-remote-track-removal
483 void ProcessRemovalOfRemoteTrack(
484 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
485 transceiver,
486 std::vector<rtc::scoped_refptr<RtpTransceiverInterface>>* remove_list,
487 std::vector<rtc::scoped_refptr<MediaStreamInterface>>* removed_streams);
488
Steve Anton52d86772018-02-20 15:48:12 -0800489 void OnNegotiationNeeded();
490
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000491 bool IsClosed() const {
492 return signaling_state_ == PeerConnectionInterface::kClosed;
493 }
494
deadbeefab9b2d12015-10-14 11:33:11 -0700495 // Returns a MediaSessionOptions struct with options decided by |options|,
496 // the local MediaStreams and DataChannels.
Steve Antondcc3c022017-12-22 16:02:54 -0800497 void GetOptionsForOffer(const PeerConnectionInterface::RTCOfferAnswerOptions&
498 offer_answer_options,
499 cricket::MediaSessionOptions* session_options);
500 void GetOptionsForPlanBOffer(
501 const PeerConnectionInterface::RTCOfferAnswerOptions&
502 offer_answer_options,
503 cricket::MediaSessionOptions* session_options);
504 void GetOptionsForUnifiedPlanOffer(
505 const PeerConnectionInterface::RTCOfferAnswerOptions&
506 offer_answer_options,
deadbeefab9b2d12015-10-14 11:33:11 -0700507 cricket::MediaSessionOptions* session_options);
508
Steve Anton22da89f2018-01-25 13:58:07 -0800509 RTCError HandleLegacyOfferOptions(const RTCOfferAnswerOptions& options);
510 void RemoveRecvDirectionFromReceivingTransceiversOfType(
511 cricket::MediaType media_type);
512 void AddUpToOneReceivingTransceiverOfType(cricket::MediaType media_type);
513 std::vector<
514 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>>
515 GetReceivingTransceiversOfType(cricket::MediaType media_type);
516
deadbeefab9b2d12015-10-14 11:33:11 -0700517 // Returns a MediaSessionOptions struct with options decided by
518 // |constraints|, the local MediaStreams and DataChannels.
Steve Antondcc3c022017-12-22 16:02:54 -0800519 void GetOptionsForAnswer(const RTCOfferAnswerOptions& offer_answer_options,
zhihuang1c378ed2017-08-17 14:10:50 -0700520 cricket::MediaSessionOptions* session_options);
Steve Antondcc3c022017-12-22 16:02:54 -0800521 void GetOptionsForPlanBAnswer(
522 const PeerConnectionInterface::RTCOfferAnswerOptions&
523 offer_answer_options,
524 cricket::MediaSessionOptions* session_options);
525 void GetOptionsForUnifiedPlanAnswer(
526 const PeerConnectionInterface::RTCOfferAnswerOptions&
527 offer_answer_options,
528 cricket::MediaSessionOptions* session_options);
htaa2a49d92016-03-04 02:51:39 -0800529
zhihuang1c378ed2017-08-17 14:10:50 -0700530 // Generates MediaDescriptionOptions for the |session_opts| based on existing
531 // local description or remote description.
532 void GenerateMediaDescriptionOptions(
533 const SessionDescriptionInterface* session_desc,
Steve Anton1d03a752017-11-27 14:30:09 -0800534 RtpTransceiverDirection audio_direction,
535 RtpTransceiverDirection video_direction,
Danil Chapovalov66cadcc2018-06-19 16:47:43 +0200536 absl::optional<size_t>* audio_index,
537 absl::optional<size_t>* video_index,
538 absl::optional<size_t>* data_index,
htaa2a49d92016-03-04 02:51:39 -0800539 cricket::MediaSessionOptions* session_options);
deadbeefab9b2d12015-10-14 11:33:11 -0700540
Steve Antonfa2260d2017-12-28 16:38:23 -0800541 // Generates the active MediaDescriptionOptions for the local data channel
542 // given the specified MID.
543 cricket::MediaDescriptionOptions GetMediaDescriptionOptionsForActiveData(
544 const std::string& mid) const;
545
546 // Generates the rejected MediaDescriptionOptions for the local data channel
547 // given the specified MID.
548 cricket::MediaDescriptionOptions GetMediaDescriptionOptionsForRejectedData(
549 const std::string& mid) const;
550
551 // Returns the MID for the data section associated with either the
552 // RtpDataChannel or SCTP data channel, if it has been set. If no data
553 // channels are configured this will return nullopt.
Danil Chapovalov66cadcc2018-06-19 16:47:43 +0200554 absl::optional<std::string> GetDataMid() const;
Steve Antonfa2260d2017-12-28 16:38:23 -0800555
Steve Anton4171afb2017-11-20 10:20:22 -0800556 // Remove all local and remote senders of type |media_type|.
deadbeeffaac4972015-11-12 15:33:07 -0800557 // Called when a media type is rejected (m-line set to port 0).
Steve Anton4171afb2017-11-20 10:20:22 -0800558 void RemoveSenders(cricket::MediaType media_type);
deadbeeffaac4972015-11-12 15:33:07 -0800559
deadbeefbda7e0b2015-12-08 17:13:40 -0800560 // Makes sure a MediaStreamTrack is created for each StreamParam in |streams|,
561 // and existing MediaStreamTracks are removed if there is no corresponding
562 // StreamParam. If |default_track_needed| is true, a default MediaStreamTrack
563 // is created if it doesn't exist; if false, it's removed if it exists.
564 // |media_type| is the type of the |streams| and can be either audio or video.
deadbeefab9b2d12015-10-14 11:33:11 -0700565 // If a new MediaStream is created it is added to |new_streams|.
Steve Anton4171afb2017-11-20 10:20:22 -0800566 void UpdateRemoteSendersList(
deadbeefab9b2d12015-10-14 11:33:11 -0700567 const std::vector<cricket::StreamParams>& streams,
deadbeefbda7e0b2015-12-08 17:13:40 -0800568 bool default_track_needed,
deadbeefab9b2d12015-10-14 11:33:11 -0700569 cricket::MediaType media_type,
570 StreamCollection* new_streams);
571
Steve Anton4171afb2017-11-20 10:20:22 -0800572 // Triggered when a remote sender has been seen for the first time in a remote
deadbeefab9b2d12015-10-14 11:33:11 -0700573 // session description. It creates a remote MediaStreamTrackInterface
574 // implementation and triggers CreateAudioReceiver or CreateVideoReceiver.
Steve Anton4171afb2017-11-20 10:20:22 -0800575 void OnRemoteSenderAdded(const RtpSenderInfo& sender_info,
576 cricket::MediaType media_type);
deadbeefab9b2d12015-10-14 11:33:11 -0700577
Steve Anton4171afb2017-11-20 10:20:22 -0800578 // Triggered when a remote sender has been removed from a remote session
579 // description. It removes the remote sender with id |sender_id| from a remote
deadbeefab9b2d12015-10-14 11:33:11 -0700580 // MediaStream and triggers DestroyAudioReceiver or DestroyVideoReceiver.
Steve Anton4171afb2017-11-20 10:20:22 -0800581 void OnRemoteSenderRemoved(const RtpSenderInfo& sender_info,
582 cricket::MediaType media_type);
deadbeefab9b2d12015-10-14 11:33:11 -0700583
584 // Finds remote MediaStreams without any tracks and removes them from
585 // |remote_streams_| and notifies the observer that the MediaStreams no longer
586 // exist.
587 void UpdateEndedRemoteMediaStreams();
588
deadbeefab9b2d12015-10-14 11:33:11 -0700589 // Loops through the vector of |streams| and finds added and removed
590 // StreamParams since last time this method was called.
Steve Anton4171afb2017-11-20 10:20:22 -0800591 // For each new or removed StreamParam, OnLocalSenderSeen or
592 // OnLocalSenderRemoved is invoked.
593 void UpdateLocalSenders(const std::vector<cricket::StreamParams>& streams,
594 cricket::MediaType media_type);
deadbeefab9b2d12015-10-14 11:33:11 -0700595
Steve Anton4171afb2017-11-20 10:20:22 -0800596 // Triggered when a local sender has been seen for the first time in a local
deadbeefab9b2d12015-10-14 11:33:11 -0700597 // session description.
598 // This method triggers CreateAudioSender or CreateVideoSender if the rtp
599 // streams in the local SessionDescription can be mapped to a MediaStreamTrack
600 // in a MediaStream in |local_streams_|
Steve Anton4171afb2017-11-20 10:20:22 -0800601 void OnLocalSenderAdded(const RtpSenderInfo& sender_info,
602 cricket::MediaType media_type);
deadbeefab9b2d12015-10-14 11:33:11 -0700603
Steve Anton4171afb2017-11-20 10:20:22 -0800604 // Triggered when a local sender has been removed from a local session
deadbeefab9b2d12015-10-14 11:33:11 -0700605 // description.
606 // This method triggers DestroyAudioSender or DestroyVideoSender if a stream
607 // has been removed from the local SessionDescription and the stream can be
608 // mapped to a MediaStreamTrack in a MediaStream in |local_streams_|.
Steve Anton4171afb2017-11-20 10:20:22 -0800609 void OnLocalSenderRemoved(const RtpSenderInfo& sender_info,
610 cricket::MediaType media_type);
deadbeefab9b2d12015-10-14 11:33:11 -0700611
612 void UpdateLocalRtpDataChannels(const cricket::StreamParamsVec& streams);
613 void UpdateRemoteRtpDataChannels(const cricket::StreamParamsVec& streams);
614 void UpdateClosingRtpDataChannels(
615 const std::vector<std::string>& active_channels,
616 bool is_local_update);
617 void CreateRemoteRtpDataChannel(const std::string& label,
618 uint32_t remote_ssrc);
619
620 // Creates channel and adds it to the collection of DataChannels that will
621 // be offered in a SessionDescription.
622 rtc::scoped_refptr<DataChannel> InternalCreateDataChannel(
623 const std::string& label,
624 const InternalDataChannelInit* config);
625
626 // Checks if any data channel has been added.
627 bool HasDataChannels() const;
628
629 void AllocateSctpSids(rtc::SSLRole role);
630 void OnSctpDataChannelClosed(DataChannel* channel);
631
deadbeefab9b2d12015-10-14 11:33:11 -0700632 void OnDataChannelDestroyed();
Steve Antonba818672017-11-06 10:21:57 -0800633 // Called when a valid data channel OPEN message is received.
deadbeefab9b2d12015-10-14 11:33:11 -0700634 void OnDataChannelOpenMessage(const std::string& label,
635 const InternalDataChannelInit& config);
Bjorn Mellem175aa2e2018-11-08 11:23:22 -0800636 // Parses and handles open messages. Returns true if the message is an open
637 // message, false otherwise.
638 bool HandleOpenMessage_s(const cricket::ReceiveDataParams& params,
639 const rtc::CopyOnWriteBuffer& buffer)
640 RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700641
Steve Anton4171afb2017-11-20 10:20:22 -0800642 // Returns true if the PeerConnection is configured to use Unified Plan
643 // semantics for creating offers/answers and setting local/remote
644 // descriptions. If this is true the RtpTransceiver API will also be available
645 // to the user. If this is false, Plan B semantics are assumed.
Steve Anton79e79602017-11-20 10:25:56 -0800646 // TODO(bugs.webrtc.org/8530): Flip the default to be Unified Plan once
647 // sufficient time has passed.
648 bool IsUnifiedPlan() const {
649 return configuration_.sdp_semantics == SdpSemantics::kUnifiedPlan;
650 }
Steve Anton4171afb2017-11-20 10:20:22 -0800651
652 // Is there an RtpSender of the given type?
zhihuang1c378ed2017-08-17 14:10:50 -0700653 bool HasRtpSender(cricket::MediaType type) const;
deadbeeffac06552015-11-25 11:26:01 -0800654
Steve Anton4171afb2017-11-20 10:20:22 -0800655 // Return the RtpSender with the given track attached.
656 rtc::scoped_refptr<RtpSenderProxyWithInternal<RtpSenderInternal>>
657 FindSenderForTrack(MediaStreamTrackInterface* track) const;
deadbeef70ab1a12015-09-28 16:53:55 -0700658
Steve Anton4171afb2017-11-20 10:20:22 -0800659 // Return the RtpSender with the given id, or null if none exists.
660 rtc::scoped_refptr<RtpSenderProxyWithInternal<RtpSenderInternal>>
661 FindSenderById(const std::string& sender_id) const;
662
663 // Return the RtpReceiver with the given id, or null if none exists.
664 rtc::scoped_refptr<RtpReceiverProxyWithInternal<RtpReceiverInternal>>
665 FindReceiverById(const std::string& receiver_id) const;
666
667 std::vector<RtpSenderInfo>* GetRemoteSenderInfos(
668 cricket::MediaType media_type);
669 std::vector<RtpSenderInfo>* GetLocalSenderInfos(
670 cricket::MediaType media_type);
671 const RtpSenderInfo* FindSenderInfo(const std::vector<RtpSenderInfo>& infos,
Emircan Uysalerbc609ea2018-03-27 21:57:18 +0000672 const std::string& stream_id,
Steve Anton4171afb2017-11-20 10:20:22 -0800673 const std::string sender_id) const;
deadbeefab9b2d12015-10-14 11:33:11 -0700674
675 // Returns the specified SCTP DataChannel in sctp_data_channels_,
676 // or nullptr if not found.
677 DataChannel* FindDataChannelBySid(int sid) const;
678
Taylor Brandstettera1c30352016-05-13 08:15:11 -0700679 // Called when first configuring the port allocator.
Harald Alvestrandb2a74782018-06-28 13:54:07 +0200680 bool InitializePortAllocator_n(
681 const cricket::ServerAddresses& stun_servers,
682 const std::vector<cricket::RelayServerConfig>& turn_servers,
683 const RTCConfiguration& configuration);
deadbeef293e9262017-01-11 12:28:30 -0800684 // Called when SetConfiguration is called to apply the supported subset
685 // of the configuration on the network thread.
686 bool ReconfigurePortAllocator_n(
687 const cricket::ServerAddresses& stun_servers,
688 const std::vector<cricket::RelayServerConfig>& turn_servers,
689 IceTransportsType type,
690 int candidate_pool_size,
Jonas Orelandbdcee282017-10-10 14:01:40 +0200691 bool prune_turn_ports,
Qingsi Wangdb53f8e2018-02-20 14:45:49 -0800692 webrtc::TurnCustomizer* turn_customizer,
Danil Chapovalov66cadcc2018-06-19 16:47:43 +0200693 absl::optional<int> stun_candidate_keepalive_interval);
Taylor Brandstettera1c30352016-05-13 08:15:11 -0700694
Elad Alon99c3fe52017-10-13 16:29:40 +0200695 // Starts output of an RTC event log to the given output object.
ivoc14d5dbe2016-07-04 07:06:55 -0700696 // This function should only be called from the worker thread.
Bjorn Tereliusde939432017-11-20 17:38:14 +0100697 bool StartRtcEventLog_w(std::unique_ptr<RtcEventLogOutput> output,
698 int64_t output_period_ms);
Elad Alon99c3fe52017-10-13 16:29:40 +0200699
Elad Alonacb24172017-10-06 14:32:13 +0200700 // Stops recording an RTC event log.
ivoc14d5dbe2016-07-04 07:06:55 -0700701 // This function should only be called from the worker thread.
702 void StopRtcEventLog_w();
703
Steve Anton038834f2017-07-14 15:59:59 -0700704 // Ensures the configuration doesn't have any parameters with invalid values,
705 // or values that conflict with other parameters.
706 //
707 // Returns RTCError::OK() if there are no issues.
708 RTCError ValidateConfiguration(const RTCConfiguration& config) const;
709
Steve Antonba818672017-11-06 10:21:57 -0800710 cricket::ChannelManager* channel_manager() const;
Steve Antonba818672017-11-06 10:21:57 -0800711
Steve Antonf8470812017-12-04 10:46:21 -0800712 enum class SessionError {
713 kNone, // No error.
714 kContent, // Error in BaseChannel SetLocalContent/SetRemoteContent.
715 kTransport, // Error from the underlying transport.
716 };
717
Steve Anton75737c02017-11-06 10:37:17 -0800718 // Returns the last error in the session. See the enum above for details.
Steve Antonf8470812017-12-04 10:46:21 -0800719 SessionError session_error() const { return session_error_; }
720 const std::string& session_error_desc() const { return session_error_desc_; }
Steve Anton75737c02017-11-06 10:37:17 -0800721
Amit Hilbuchdd9390c2018-11-13 16:26:05 -0800722 cricket::ChannelInterface* GetChannel(const std::string& content_name);
Steve Anton75737c02017-11-06 10:37:17 -0800723
724 // Get current SSL role used by SCTP's underlying transport.
725 bool GetSctpSslRole(rtc::SSLRole* role);
726
Steve Anton75737c02017-11-06 10:37:17 -0800727 cricket::IceConfig ParseIceConfig(
728 const PeerConnectionInterface::RTCConfiguration& config) const;
729
Steve Anton75737c02017-11-06 10:37:17 -0800730 // Implements DataChannelProviderInterface.
731 bool SendData(const cricket::SendDataParams& params,
732 const rtc::CopyOnWriteBuffer& payload,
733 cricket::SendDataResult* result) override;
734 bool ConnectDataChannel(DataChannel* webrtc_data_channel) override;
735 void DisconnectDataChannel(DataChannel* webrtc_data_channel) override;
736 void AddSctpDataStream(int sid) override;
737 void RemoveSctpDataStream(int sid) override;
738 bool ReadyToSendData() const override;
739
740 cricket::DataChannelType data_channel_type() const;
741
Bjorn Mellem175aa2e2018-11-08 11:23:22 -0800742 // Implements DataChannelSink.
743 void OnDataReceived(int channel_id,
744 DataMessageType type,
745 const rtc::CopyOnWriteBuffer& buffer) override;
746 void OnChannelClosing(int channel_id) override;
747 void OnChannelClosed(int channel_id) override;
748
Steve Anton75737c02017-11-06 10:37:17 -0800749 // Called when an RTCCertificate is generated or retrieved by
750 // WebRTCSessionDescriptionFactory. Should happen before setLocalDescription.
751 void OnCertificateReady(
752 const rtc::scoped_refptr<rtc::RTCCertificate>& certificate);
753 void OnDtlsSrtpSetupFailure(cricket::BaseChannel*, bool rtcp);
754
Steve Anton75737c02017-11-06 10:37:17 -0800755 // Non-const versions of local_description()/remote_description(), for use
756 // internally.
757 SessionDescriptionInterface* mutable_local_description() {
758 return pending_local_description_ ? pending_local_description_.get()
759 : current_local_description_.get();
760 }
761 SessionDescriptionInterface* mutable_remote_description() {
762 return pending_remote_description_ ? pending_remote_description_.get()
763 : current_remote_description_.get();
764 }
765
766 // Updates the error state, signaling if necessary.
Steve Antonf8470812017-12-04 10:46:21 -0800767 void SetSessionError(SessionError error, const std::string& error_desc);
Steve Anton75737c02017-11-06 10:37:17 -0800768
Zhi Huange830e682018-03-30 10:48:35 -0700769 RTCError UpdateSessionState(SdpType type,
770 cricket::ContentSource source,
771 const cricket::SessionDescription* description);
Steve Anton75737c02017-11-06 10:37:17 -0800772 // Push the media parts of the local or remote session description
773 // down to all of the channels.
Steve Anton3828c062017-12-06 10:34:51 -0800774 RTCError PushdownMediaDescription(SdpType type,
Steve Anton8a006912017-12-04 15:25:56 -0800775 cricket::ContentSource source);
Steve Anton75737c02017-11-06 10:37:17 -0800776 bool PushdownSctpParameters_n(cricket::ContentSource source);
777
Steve Anton8a006912017-12-04 15:25:56 -0800778 RTCError PushdownTransportDescription(cricket::ContentSource source,
Steve Anton3828c062017-12-06 10:34:51 -0800779 SdpType type);
Steve Anton75737c02017-11-06 10:37:17 -0800780
781 // Returns true and the TransportInfo of the given |content_name|
782 // from |description|. Returns false if it's not available.
783 static bool GetTransportDescription(
784 const cricket::SessionDescription* description,
785 const std::string& content_name,
786 cricket::TransportDescription* info);
787
Steve Anton75737c02017-11-06 10:37:17 -0800788 // Enables media channels to allow sending of media.
Steve Antoned10bd92017-12-05 10:52:59 -0800789 // This enables media to flow on all configured audio/video channels and the
790 // RtpDataChannel.
791 void EnableSending();
Steve Anton3fe1b152017-12-12 10:20:08 -0800792
Steve Anton8af21862017-12-15 11:20:13 -0800793 // Destroys all BaseChannels and destroys the SCTP data channel, if present.
794 void DestroyAllChannels();
Steve Anton3fe1b152017-12-12 10:20:08 -0800795
Steve Anton75737c02017-11-06 10:37:17 -0800796 // Returns the media index for a local ice candidate given the content name.
797 // Returns false if the local session description does not have a media
798 // content called |content_name|.
799 bool GetLocalCandidateMediaIndex(const std::string& content_name,
800 int* sdp_mline_index);
801 // Uses all remote candidates in |remote_desc| in this session.
802 bool UseCandidatesInSessionDescription(
803 const SessionDescriptionInterface* remote_desc);
804 // Uses |candidate| in this session.
805 bool UseCandidate(const IceCandidateInterface* candidate);
806 // Deletes the corresponding channel of contents that don't exist in |desc|.
807 // |desc| can be null. This means that all channels are deleted.
808 void RemoveUnusedChannels(const cricket::SessionDescription* desc);
809
810 // Allocates media channels based on the |desc|. If |desc| doesn't have
811 // the BUNDLE option, this method will disable BUNDLE in PortAllocator.
812 // This method will also delete any existing media channels before creating.
Steve Antondcc3c022017-12-22 16:02:54 -0800813 RTCError CreateChannels(const cricket::SessionDescription& desc);
814
815 // If the BUNDLE policy is max-bundle, then we know for sure that all
816 // transports will be bundled from the start. This method returns the BUNDLE
817 // group if that's the case, or null if BUNDLE will be negotiated later. An
818 // error is returned if max-bundle is specified but the session description
819 // does not have a BUNDLE group.
820 RTCErrorOr<const cricket::ContentGroup*> GetEarlyBundleGroup(
821 const cricket::SessionDescription& desc) const;
Steve Anton75737c02017-11-06 10:37:17 -0800822
823 // Helper methods to create media channels.
Zhi Huange830e682018-03-30 10:48:35 -0700824 cricket::VoiceChannel* CreateVoiceChannel(const std::string& mid);
825 cricket::VideoChannel* CreateVideoChannel(const std::string& mid);
826 bool CreateDataChannel(const std::string& mid);
Steve Anton75737c02017-11-06 10:37:17 -0800827
Zhi Huange830e682018-03-30 10:48:35 -0700828 bool CreateSctpTransport_n(const std::string& mid);
Steve Anton75737c02017-11-06 10:37:17 -0800829 // For bundling.
Steve Anton75737c02017-11-06 10:37:17 -0800830 void DestroySctpTransport_n();
831 // SctpTransport signal handlers. Needed to marshal signals from the network
832 // to signaling thread.
833 void OnSctpTransportReadyToSendData_n();
834 // This may be called with "false" if the direction of the m= section causes
835 // us to tear down the SCTP connection.
836 void OnSctpTransportReadyToSendData_s(bool ready);
837 void OnSctpTransportDataReceived_n(const cricket::ReceiveDataParams& params,
838 const rtc::CopyOnWriteBuffer& payload);
839 // Beyond just firing the signal to the signaling thread, listens to SCTP
840 // CONTROL messages on unused SIDs and processes them as OPEN messages.
841 void OnSctpTransportDataReceived_s(const cricket::ReceiveDataParams& params,
842 const rtc::CopyOnWriteBuffer& payload);
Taylor Brandstettercdd05f02018-05-31 13:23:32 -0700843 void OnSctpClosingProcedureStartedRemotely_n(int sid);
844 void OnSctpClosingProcedureComplete_n(int sid);
Steve Anton75737c02017-11-06 10:37:17 -0800845
Bjorn Mellem175aa2e2018-11-08 11:23:22 -0800846 bool SetupMediaTransportForDataChannels_n(const std::string& mid)
847 RTC_RUN_ON(network_thread());
848 void OnMediaTransportStateChanged_n() RTC_RUN_ON(network_thread());
849 void TeardownMediaTransportForDataChannels_n() RTC_RUN_ON(network_thread());
850
Steve Anton75737c02017-11-06 10:37:17 -0800851 bool ValidateBundleSettings(const cricket::SessionDescription* desc);
852 bool HasRtcpMuxEnabled(const cricket::ContentInfo* content);
853 // Below methods are helper methods which verifies SDP.
Steve Anton8a006912017-12-04 15:25:56 -0800854 RTCError ValidateSessionDescription(const SessionDescriptionInterface* sdesc,
855 cricket::ContentSource source);
Steve Anton75737c02017-11-06 10:37:17 -0800856
Steve Anton3828c062017-12-06 10:34:51 -0800857 // Check if a call to SetLocalDescription is acceptable with a session
858 // description of the given type.
859 bool ExpectSetLocalDescription(SdpType type);
860 // Check if a call to SetRemoteDescription is acceptable with a session
861 // description of the given type.
862 bool ExpectSetRemoteDescription(SdpType type);
Steve Anton75737c02017-11-06 10:37:17 -0800863 // Verifies a=setup attribute as per RFC 5763.
864 bool ValidateDtlsSetupAttribute(const cricket::SessionDescription* desc,
Steve Anton3828c062017-12-06 10:34:51 -0800865 SdpType type);
Steve Anton75737c02017-11-06 10:37:17 -0800866
867 // Returns true if we are ready to push down the remote candidate.
868 // |remote_desc| is the new remote description, or NULL if the current remote
869 // description should be used. Output |valid| is true if the candidate media
870 // index is valid.
871 bool ReadyToUseRemoteCandidate(const IceCandidateInterface* candidate,
872 const SessionDescriptionInterface* remote_desc,
873 bool* valid);
874
875 // Returns true if SRTP (either using DTLS-SRTP or SDES) is required by
876 // this session.
877 bool SrtpRequired() const;
878
Zhi Huange830e682018-03-30 10:48:35 -0700879 // JsepTransportController signal handlers.
Steve Anton75737c02017-11-06 10:37:17 -0800880 void OnTransportControllerConnectionState(cricket::IceConnectionState state);
881 void OnTransportControllerGatheringState(cricket::IceGatheringState state);
882 void OnTransportControllerCandidatesGathered(
883 const std::string& transport_name,
884 const std::vector<cricket::Candidate>& candidates);
885 void OnTransportControllerCandidatesRemoved(
886 const std::vector<cricket::Candidate>& candidates);
887 void OnTransportControllerDtlsHandshakeError(rtc::SSLHandshakeError error);
888
Steve Antonf8470812017-12-04 10:46:21 -0800889 const char* SessionErrorToString(SessionError error) const;
Steve Anton75737c02017-11-06 10:37:17 -0800890 std::string GetSessionErrorMsg();
891
Steve Anton8e20f172018-03-06 10:55:04 -0800892 // Report the UMA metric SdpFormatReceived for the given remote offer.
893 void ReportSdpFormatReceived(const SessionDescriptionInterface& remote_offer);
894
Steve Anton0ffaaa22018-02-23 10:31:30 -0800895 // Report inferred negotiated SDP semantics from a local/remote answer to the
896 // UMA observer.
897 void ReportNegotiatedSdpSemantics(const SessionDescriptionInterface& answer);
898
Steve Anton75737c02017-11-06 10:37:17 -0800899 // Invoked when TransportController connection completion is signaled.
900 // Reports stats for all transports in use.
901 void ReportTransportStats();
902
903 // Gather the usage of IPv4/IPv6 as best connection.
904 void ReportBestConnectionState(const cricket::TransportStats& stats);
905
Steve Antonc7b964c2018-02-01 14:39:45 -0800906 void ReportNegotiatedCiphers(const cricket::TransportStats& stats,
907 const std::set<cricket::MediaType>& media_types);
Steve Anton75737c02017-11-06 10:37:17 -0800908
Harald Alvestrand8ebba742018-05-31 14:00:34 +0200909 void NoteUsageEvent(UsageEvent event);
910 void ReportUsagePattern() const;
911
Steve Anton75737c02017-11-06 10:37:17 -0800912 void OnSentPacket_w(const rtc::SentPacket& sent_packet);
913
914 const std::string GetTransportName(const std::string& content_name);
915
Steve Anton6fec8802017-12-04 10:37:29 -0800916 // Destroys and clears the BaseChannel associated with the given transceiver,
917 // if such channel is set.
918 void DestroyTransceiverChannel(
919 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
920 transceiver);
921
922 // Destroys the RTP data channel and/or the SCTP data channel and clears it.
Steve Anton75737c02017-11-06 10:37:17 -0800923 void DestroyDataChannel();
924
Amit Hilbuchdd9390c2018-11-13 16:26:05 -0800925 // Destroys the given ChannelInterface.
926 // The channel cannot be accessed after this method is called.
927 void DestroyChannelInterface(cricket::ChannelInterface* channel);
Steve Anton6fec8802017-12-04 10:37:29 -0800928
Zhi Huang365381f2018-04-13 16:44:34 -0700929 // JsepTransportController::Observer override.
Taylor Brandstettercbaa2542018-04-16 16:42:14 -0700930 //
931 // Called by |transport_controller_| when processing transport information
932 // from a session description, and the mapping from m= sections to transports
933 // changed (as a result of BUNDLE negotiation, or m= sections being
934 // rejected).
935 bool OnTransportChanged(
Zhi Huang365381f2018-04-13 16:44:34 -0700936 const std::string& mid,
Taylor Brandstettercbaa2542018-04-16 16:42:14 -0700937 RtpTransportInternal* rtp_transport,
Zhi Huang365381f2018-04-13 16:44:34 -0700938 cricket::DtlsTransportInternal* dtls_transport) override;
Zhi Huange830e682018-03-30 10:48:35 -0700939
Harald Alvestrand7a1c7f72018-08-01 10:50:16 +0200940 // Returns the observer. Will crash on CHECK if the observer is removed.
941 PeerConnectionObserver* Observer() const;
942
Benjamin Wright8c27cca2018-10-25 10:16:44 -0700943 // Returns the CryptoOptions for this PeerConnection. This will always
944 // return the RTCConfiguration.crypto_options if set and will only default
945 // back to the PeerConnectionFactory settings if nothing was set.
946 CryptoOptions GetCryptoOptions();
947
Anton Sukhanov98a462c2018-10-17 13:15:42 -0700948 // Returns rtp transport, result can not be nullptr.
949 RtpTransportInternal* GetRtpTransport(const std::string& mid) {
950 auto rtp_transport = transport_controller_->GetRtpTransport(mid);
951 RTC_DCHECK(rtp_transport);
952 return rtp_transport;
953 }
954
955 // Returns media transport, if PeerConnection was created with configuration
956 // to use media transport. Otherwise returns nullptr.
957 MediaTransportInterface* GetMediaTransport(const std::string& mid) {
958 auto media_transport = transport_controller_->GetMediaTransport(mid);
Bjorn Mellema9bbd862018-11-02 09:07:48 -0700959 RTC_DCHECK((configuration_.use_media_transport ||
960 configuration_.use_media_transport_for_data_channels) ==
Piotr (Peter) Slatala97fc11f2018-10-18 12:57:59 -0700961 (media_transport != nullptr))
962 << "configuration_.use_media_transport="
963 << configuration_.use_media_transport
Bjorn Mellema9bbd862018-11-02 09:07:48 -0700964 << ", configuration_.use_media_transport_for_data_channels="
965 << configuration_.use_media_transport_for_data_channels
Piotr (Peter) Slatala97fc11f2018-10-18 12:57:59 -0700966 << ", (media_transport != nullptr)=" << (media_transport != nullptr);
Anton Sukhanov98a462c2018-10-17 13:15:42 -0700967 return media_transport;
968 }
969
Steve Anton2d8609c2018-01-23 16:38:46 -0800970 sigslot::signal1<DataChannel*> SignalDataChannelCreated_;
971
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000972 // Storing the factory as a scoped reference pointer ensures that the memory
973 // in the PeerConnectionFactoryImpl remains available as long as the
974 // PeerConnection is running. It is passed to PeerConnection as a raw pointer.
975 // However, since the reference counting is done in the
deadbeefab9b2d12015-10-14 11:33:11 -0700976 // PeerConnectionFactoryInterface all instances created using the raw pointer
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000977 // will refer to the same reference count.
buildbot@webrtc.orgd4e598d2014-07-29 17:36:52 +0000978 rtc::scoped_refptr<PeerConnectionFactory> factory_;
Steve Antonba818672017-11-06 10:21:57 -0800979 PeerConnectionObserver* observer_ = nullptr;
terelius33860252017-05-12 23:37:18 -0700980
981 // The EventLog needs to outlive |call_| (and any other object that uses it).
982 std::unique_ptr<RtcEventLog> event_log_;
983
Steve Antonba818672017-11-06 10:21:57 -0800984 SignalingState signaling_state_ = kStable;
985 IceConnectionState ice_connection_state_ = kIceConnectionNew;
Jonas Olsson635474e2018-10-18 15:58:17 +0200986 PeerConnectionInterface::IceConnectionState
987 standardized_ice_connection_state_ = kIceConnectionNew;
988 PeerConnectionInterface::PeerConnectionState connection_state_ =
989 PeerConnectionState::kNew;
990
Steve Antonba818672017-11-06 10:21:57 -0800991 IceGatheringState ice_gathering_state_ = kIceGatheringNew;
deadbeef46c73892016-11-16 19:42:04 -0800992 PeerConnectionInterface::RTCConfiguration configuration_;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000993
Zach Steine20867f2018-08-02 13:20:15 -0700994 // TODO(zstein): |async_resolver_factory_| can currently be nullptr if it
995 // is not injected. It should be required once chromium supplies it.
996 std::unique_ptr<AsyncResolverFactory> async_resolver_factory_;
kwibergd1fe2812016-04-27 06:47:29 -0700997 std::unique_ptr<cricket::PortAllocator> port_allocator_;
Benjamin Wrightd6f86e82018-05-08 13:12:25 -0700998 std::unique_ptr<rtc::SSLCertificateVerifier> tls_cert_verifier_;
Qingsi Wanga2d60672018-04-11 16:57:45 -0700999 int port_allocator_flags_ = 0;
deadbeefab9b2d12015-10-14 11:33:11 -07001000
zhihuang8f65cdf2016-05-06 18:40:30 -07001001 // One PeerConnection has only one RTCP CNAME.
1002 // https://tools.ietf.org/html/draft-ietf-rtcweb-rtp-usage-26#section-4.9
1003 std::string rtcp_cname_;
1004
deadbeefab9b2d12015-10-14 11:33:11 -07001005 // Streams added via AddStream.
1006 rtc::scoped_refptr<StreamCollection> local_streams_;
1007 // Streams created as a result of SetRemoteDescription.
1008 rtc::scoped_refptr<StreamCollection> remote_streams_;
1009
kwibergd1fe2812016-04-27 06:47:29 -07001010 std::vector<std::unique_ptr<MediaStreamObserver>> stream_observers_;
deadbeefeb459812015-12-15 19:24:43 -08001011
Steve Anton4171afb2017-11-20 10:20:22 -08001012 // These lists store sender info seen in local/remote descriptions.
1013 std::vector<RtpSenderInfo> remote_audio_sender_infos_;
1014 std::vector<RtpSenderInfo> remote_video_sender_infos_;
1015 std::vector<RtpSenderInfo> local_audio_sender_infos_;
1016 std::vector<RtpSenderInfo> local_video_sender_infos_;
deadbeefab9b2d12015-10-14 11:33:11 -07001017
1018 SctpSidAllocator sid_allocator_;
1019 // label -> DataChannel
1020 std::map<std::string, rtc::scoped_refptr<DataChannel>> rtp_data_channels_;
1021 std::vector<rtc::scoped_refptr<DataChannel>> sctp_data_channels_;
deadbeefbd292462015-12-14 18:15:29 -08001022 std::vector<rtc::scoped_refptr<DataChannel>> sctp_data_channels_to_free_;
deadbeefab9b2d12015-10-14 11:33:11 -07001023
deadbeefbda7e0b2015-12-08 17:13:40 -08001024 bool remote_peer_supports_msid_ = false;
deadbeef70ab1a12015-09-28 16:53:55 -07001025
terelius33860252017-05-12 23:37:18 -07001026 std::unique_ptr<Call> call_;
terelius33860252017-05-12 23:37:18 -07001027 std::unique_ptr<StatsCollector> stats_; // A pointer is passed to senders_
1028 rtc::scoped_refptr<RTCStatsCollector> stats_collector_;
1029
deadbeefa601f5c2016-06-06 14:27:39 -07001030 std::vector<
Steve Anton4171afb2017-11-20 10:20:22 -08001031 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>>
1032 transceivers_;
Steve Antondcc3c022017-12-22 16:02:54 -08001033 // MIDs that have been seen either by SetLocalDescription or
1034 // SetRemoteDescription over the life of the PeerConnection.
1035 std::set<std::string> seen_mids_;
Steve Anton75737c02017-11-06 10:37:17 -08001036
Steve Antonf8470812017-12-04 10:46:21 -08001037 SessionError session_error_ = SessionError::kNone;
1038 std::string session_error_desc_;
Steve Anton75737c02017-11-06 10:37:17 -08001039
1040 std::string session_id_;
Steve Anton75737c02017-11-06 10:37:17 -08001041
Zhi Huange830e682018-03-30 10:48:35 -07001042 std::unique_ptr<JsepTransportController> transport_controller_;
Steve Anton75737c02017-11-06 10:37:17 -08001043 std::unique_ptr<cricket::SctpTransportInternalFactory> sctp_factory_;
Steve Anton75737c02017-11-06 10:37:17 -08001044 // |rtp_data_channel_| is used if in RTP data channel mode, |sctp_transport_|
1045 // when using SCTP.
1046 cricket::RtpDataChannel* rtp_data_channel_ = nullptr;
1047
1048 std::unique_ptr<cricket::SctpTransportInternal> sctp_transport_;
Zhi Huange830e682018-03-30 10:48:35 -07001049 // |sctp_mid_| is the content name (MID) in SDP.
Danil Chapovalov66cadcc2018-06-19 16:47:43 +02001050 absl::optional<std::string> sctp_mid_;
Steve Anton75737c02017-11-06 10:37:17 -08001051 // Value cached on signaling thread. Only updated when SctpReadyToSendData
1052 // fires on the signaling thread.
1053 bool sctp_ready_to_send_data_ = false;
1054 // Same as signals provided by SctpTransport, but these are guaranteed to
1055 // fire on the signaling thread, whereas SctpTransport fires on the networking
1056 // thread.
1057 // |sctp_invoker_| is used so that any signals queued on the signaling thread
1058 // from the network thread are immediately discarded if the SctpTransport is
1059 // destroyed (due to m= section being rejected).
1060 // TODO(deadbeef): Use a proxy object to ensure that method calls/signals
1061 // are marshalled to the right thread. Could almost use proxy.h for this,
1062 // but it doesn't have a mechanism for marshalling sigslot::signals
1063 std::unique_ptr<rtc::AsyncInvoker> sctp_invoker_;
1064 sigslot::signal1<bool> SignalSctpReadyToSendData;
1065 sigslot::signal2<const cricket::ReceiveDataParams&,
1066 const rtc::CopyOnWriteBuffer&>
1067 SignalSctpDataReceived;
Taylor Brandstettercdd05f02018-05-31 13:23:32 -07001068 sigslot::signal1<int> SignalSctpClosingProcedureStartedRemotely;
1069 sigslot::signal1<int> SignalSctpClosingProcedureComplete;
Steve Anton75737c02017-11-06 10:37:17 -08001070
Bjorn Mellem175aa2e2018-11-08 11:23:22 -08001071 // Whether this peer is the caller. Set when the local description is applied.
1072 absl::optional<bool> is_caller_ RTC_GUARDED_BY(signaling_thread());
1073
1074 // Content name (MID) for media transport data channels in SDP.
1075 absl::optional<std::string> media_transport_data_mid_;
1076
1077 // Media transport used for data channels. Thread-safe.
1078 MediaTransportInterface* media_transport_ = nullptr;
1079
1080 // Cached value of whether the media transport is ready to send.
1081 bool media_transport_ready_to_send_data_ RTC_GUARDED_BY(signaling_thread()) =
1082 false;
1083
1084 // Used to invoke media transport signals on the signaling thread.
1085 std::unique_ptr<rtc::AsyncInvoker> media_transport_invoker_;
1086
1087 // Identical to the signals for SCTP, but from media transport:
1088 sigslot::signal1<bool> SignalMediaTransportWritable_s
1089 RTC_GUARDED_BY(signaling_thread());
1090 sigslot::signal2<const cricket::ReceiveDataParams&,
1091 const rtc::CopyOnWriteBuffer&>
1092 SignalMediaTransportReceivedData_s RTC_GUARDED_BY(signaling_thread());
1093 sigslot::signal1<int> SignalMediaTransportChannelClosing_s
1094 RTC_GUARDED_BY(signaling_thread());
1095 sigslot::signal1<int> SignalMediaTransportChannelClosed_s
1096 RTC_GUARDED_BY(signaling_thread());
1097
Steve Anton75737c02017-11-06 10:37:17 -08001098 std::unique_ptr<SessionDescriptionInterface> current_local_description_;
1099 std::unique_ptr<SessionDescriptionInterface> pending_local_description_;
1100 std::unique_ptr<SessionDescriptionInterface> current_remote_description_;
1101 std::unique_ptr<SessionDescriptionInterface> pending_remote_description_;
1102 bool dtls_enabled_ = false;
1103 // Specifies which kind of data channel is allowed. This is controlled
1104 // by the chrome command-line flag and constraints:
1105 // 1. If chrome command-line switch 'enable-sctp-data-channels' is enabled,
1106 // constraint kEnableDtlsSrtp is true, and constaint kEnableRtpDataChannels is
1107 // not set or false, SCTP is allowed (DCT_SCTP);
1108 // 2. If constraint kEnableRtpDataChannels is true, RTP is allowed (DCT_RTP);
1109 // 3. If both 1&2 are false, data channel is not allowed (DCT_NONE).
1110 cricket::DataChannelType data_channel_type_ = cricket::DCT_NONE;
1111 // List of content names for which the remote side triggered an ICE restart.
1112 std::set<std::string> pending_ice_restarts_;
1113
1114 std::unique_ptr<WebRtcSessionDescriptionFactory> webrtc_session_desc_factory_;
1115
1116 // Member variables for caching global options.
1117 cricket::AudioOptions audio_options_;
1118 cricket::VideoOptions video_options_;
Harald Alvestrand8ebba742018-05-31 14:00:34 +02001119
1120 int usage_event_accumulator_ = 0;
Harald Alvestrand19793842018-06-25 12:03:50 +02001121 bool return_histogram_very_quickly_ = false;
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001122};
1123
1124} // namespace webrtc
1125
Mirko Bonadei92ea95e2017-09-15 06:47:31 +02001126#endif // PC_PEERCONNECTION_H_