blob: e596f001ae21e68fa1f0066bc91295c5757186c5 [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 Olsson12046902018-12-06 11:25:14 +0100150 IceConnectionState standardized_ice_connection_state() override;
Jonas Olsson635474e2018-10-18 15:58:17 +0200151 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
Harald Alvestrandad88c882018-11-28 16:47:46 +0100197 rtc::scoped_refptr<DtlsTransportInterface> LookupDtlsTransportByMid(
198 const std::string& mid) override;
199
Elad Alon99c3fe52017-10-13 16:29:40 +0200200 RTC_DEPRECATED bool StartRtcEventLog(rtc::PlatformFile file,
201 int64_t max_size_bytes) override;
Bjorn Tereliusde939432017-11-20 17:38:14 +0100202 bool StartRtcEventLog(std::unique_ptr<RtcEventLogOutput> output,
203 int64_t output_period_ms) override;
ivoc14d5dbe2016-07-04 07:06:55 -0700204 void StopRtcEventLog() override;
205
deadbeefa67696b2015-09-29 11:56:26 -0700206 void Close() override;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000207
Steve Anton2d8609c2018-01-23 16:38:46 -0800208 // 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();
perkjd61bf802016-03-24 03:16:19 -0700217 }
deadbeefab9b2d12015-10-14 11:33:11 -0700218
Steve Antonbe5e2082018-01-24 15:29:17 -0800219 std::string session_id() const override { return session_id_; }
Steve Anton75737c02017-11-06 10:37:17 -0800220
Steve Anton2d8609c2018-01-23 16:38:46 -0800221 bool initial_offerer() const override {
Zhi Huange830e682018-03-30 10:48:35 -0700222 return transport_controller_ && transport_controller_->initial_offerer();
Steve Anton2d8609c2018-01-23 16:38:46 -0800223 }
Steve Anton75737c02017-11-06 10:37:17 -0800224
Steve Anton2d8609c2018-01-23 16:38:46 -0800225 std::vector<
226 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>>
Steve Antonb8867112018-02-13 10:07:54 -0800227 GetTransceiversInternal() const override {
Steve Anton2d8609c2018-01-23 16:38:46 -0800228 return transceivers_;
229 }
230
Steve Antona41959e2018-11-28 11:15:33 -0800231 absl::string_view GetLocalTrackIdBySsrc(uint32_t ssrc) override;
232 absl::string_view GetRemoteTrackIdBySsrc(uint32_t ssrc) override;
Steve Anton2d8609c2018-01-23 16:38:46 -0800233
234 sigslot::signal1<DataChannel*>& SignalDataChannelCreated() override {
235 return SignalDataChannelCreated_;
236 }
237
238 cricket::RtpDataChannel* rtp_data_channel() const override {
Steve Anton75737c02017-11-06 10:37:17 -0800239 return rtp_data_channel_;
Steve Anton978b8762017-09-29 12:15:02 -0700240 }
Steve Anton2d8609c2018-01-23 16:38:46 -0800241
Steve Antonbe5e2082018-01-24 15:29:17 -0800242 std::vector<rtc::scoped_refptr<DataChannel>> sctp_data_channels()
Steve Anton2d8609c2018-01-23 16:38:46 -0800243 const override {
244 return sctp_data_channels_;
245 }
246
Danil Chapovalov66cadcc2018-06-19 16:47:43 +0200247 absl::optional<std::string> sctp_content_name() const override {
Zhi Huange830e682018-03-30 10:48:35 -0700248 return sctp_mid_;
Steve Anton75737c02017-11-06 10:37:17 -0800249 }
Steve Anton2d8609c2018-01-23 16:38:46 -0800250
Danil Chapovalov66cadcc2018-06-19 16:47:43 +0200251 absl::optional<std::string> sctp_transport_name() const override;
Steve Anton75737c02017-11-06 10:37:17 -0800252
Qingsi Wang72a43a12018-02-20 16:03:18 -0800253 cricket::CandidateStatsList GetPooledCandidateStats() const override;
Steve Anton5dfde182018-02-06 10:34:40 -0800254 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 Anton2d8609c2018-01-23 16:38:46 -0800257 Call::Stats GetCallStats() override;
Steve Anton75737c02017-11-06 10:37:17 -0800258
Steve Anton2d8609c2018-01-23 16:38:46 -0800259 bool GetLocalCertificate(
260 const std::string& transport_name,
261 rtc::scoped_refptr<rtc::RTCCertificate>* certificate) override;
Taylor Brandstetterc3928662018-02-23 13:04:51 -0800262 std::unique_ptr<rtc::SSLCertChain> GetRemoteSSLCertChain(
Steve Anton2d8609c2018-01-23 16:38:46 -0800263 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 Anton7464fca2018-01-19 11:10:37 -0800267
Harald Alvestrand19793842018-06-25 12:03:50 +0200268 void ReturnHistogramVeryQuicklyForTesting() {
269 return_histogram_very_quickly_ = true;
270 }
Harald Alvestrand7a1c7f72018-08-01 10:50:16 +0200271 void RequestUsagePatternReportForTesting();
Harald Alvestrand19793842018-06-25 12:03:50 +0200272
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000273 protected:
deadbeefa67696b2015-09-29 11:56:26 -0700274 ~PeerConnection() override;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000275
276 private:
Henrik Boström31638672017-11-23 17:48:32 +0100277 class SetRemoteDescriptionObserverAdapter;
278 friend class SetRemoteDescriptionObserverAdapter;
279
Steve Anton4171afb2017-11-20 10:20:22 -0800280 struct RtpSenderInfo {
281 RtpSenderInfo() : first_ssrc(0) {}
Seth Hampson845e8782018-03-02 11:34:10 -0800282 RtpSenderInfo(const std::string& stream_id,
Steve Anton4171afb2017-11-20 10:20:22 -0800283 const std::string sender_id,
284 uint32_t ssrc)
Seth Hampson845e8782018-03-02 11:34:10 -0800285 : stream_id(stream_id), sender_id(sender_id), first_ssrc(ssrc) {}
Steve Anton4171afb2017-11-20 10:20:22 -0800286 bool operator==(const RtpSenderInfo& other) {
Seth Hampson845e8782018-03-02 11:34:10 -0800287 return this->stream_id == other.stream_id &&
Steve Anton4171afb2017-11-20 10:20:22 -0800288 this->sender_id == other.sender_id &&
289 this->first_ssrc == other.first_ssrc;
deadbeefbda7e0b2015-12-08 17:13:40 -0800290 }
Seth Hampson845e8782018-03-02 11:34:10 -0800291 std::string stream_id;
Steve Anton4171afb2017-11-20 10:20:22 -0800292 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;
deadbeefab9b2d12015-10-14 11:33:11 -0700296 };
deadbeefab9b2d12015-10-14 11:33:11 -0700297
Steve Antonad182762018-09-05 20:22:40 +0000298 // Implements MessageHandler.
299 void OnMessage(rtc::Message* msg) override;
300
Steve Antonafb0bb72018-02-20 11:35:37 -0800301 // 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 Anton60776752018-01-10 11:51:34 -0800305
Steve Anton4171afb2017-11-20 10:20:22 -0800306 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 Antonafb0bb72018-02-20 11:35:37 -0800317 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
318 GetFirstAudioTransceiver() const;
319
deadbeefab9b2d12015-10-14 11:33:11 -0700320 void CreateAudioReceiver(MediaStreamInterface* stream,
Steve Anton4171afb2017-11-20 10:20:22 -0800321 const RtpSenderInfo& remote_sender_info);
perkjf0dcfe22016-03-10 18:32:00 +0100322
deadbeefab9b2d12015-10-14 11:33:11 -0700323 void CreateVideoReceiver(MediaStreamInterface* stream,
Steve Anton4171afb2017-11-20 10:20:22 -0800324 const RtpSenderInfo& remote_sender_info);
Henrik Boström933d8b02017-10-10 10:05:16 -0700325 rtc::scoped_refptr<RtpReceiverInterface> RemoveAndStopReceiver(
Steve Anton4171afb2017-11-20 10:20:22 -0800326 const RtpSenderInfo& remote_sender_info);
korniltsev.anatolyec390b52017-07-24 17:00:25 -0700327
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.org28e20752013-07-10 00:45:36 +0000336
Steve Antonf9381f02017-12-14 10:23:57 -0800337 // AddTrack implementation when Unified Plan is specified.
338 RTCErrorOr<rtc::scoped_refptr<RtpSenderInterface>> AddTrackUnifiedPlan(
339 rtc::scoped_refptr<MediaStreamTrackInterface> track,
Seth Hampson845e8782018-03-02 11:34:10 -0800340 const std::vector<std::string>& stream_ids);
Steve Antonf9381f02017-12-14 10:23:57 -0800341 // AddTrack implementation when Plan B is specified.
342 RTCErrorOr<rtc::scoped_refptr<RtpSenderInterface>> AddTrackPlanB(
343 rtc::scoped_refptr<MediaStreamTrackInterface> track,
Seth Hampson845e8782018-03-02 11:34:10 -0800344 const std::vector<std::string>& stream_ids);
Steve Antonf9381f02017-12-14 10:23:57 -0800345
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 Antonf9381f02017-12-14 10:23:57 -0800352 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
353 FindTransceiverBySender(rtc::scoped_refptr<RtpSenderInterface> sender);
354
Steve Anton22da89f2018-01-25 13:58:07 -0800355 // Internal implementation for AddTransceiver family of methods. If
356 // |fire_callback| is set, fires OnRenegotiationNeeded callback if successful.
Steve Anton9158ef62017-11-27 13:01:52 -0800357 RTCErrorOr<rtc::scoped_refptr<RtpTransceiverInterface>> AddTransceiver(
358 cricket::MediaType media_type,
359 rtc::scoped_refptr<MediaStreamTrackInterface> track,
Steve Anton22da89f2018-01-25 13:58:07 -0800360 const RtpTransceiverInit& init,
361 bool fire_callback = true);
Steve Anton9158ef62017-11-27 13:01:52 -0800362
Steve Anton02ee47c2018-01-10 16:26:06 -0800363 rtc::scoped_refptr<RtpSenderProxyWithInternal<RtpSenderInternal>>
364 CreateSender(cricket::MediaType media_type,
Steve Anton111fdfd2018-06-25 13:03:36 -0700365 const std::string& id,
Steve Anton02ee47c2018-01-10 16:26:06 -0800366 rtc::scoped_refptr<MediaStreamTrackInterface> track,
Florent Castelli892acf02018-10-01 22:47:20 +0200367 const std::vector<std::string>& stream_ids,
368 const std::vector<RtpEncodingParameters>& send_encodings);
Steve Anton02ee47c2018-01-10 16:26:06 -0800369
370 rtc::scoped_refptr<RtpReceiverProxyWithInternal<RtpReceiverInternal>>
371 CreateReceiver(cricket::MediaType media_type, const std::string& receiver_id);
372
Steve Antonf9381f02017-12-14 10:23:57 -0800373 // Create a new RtpTransceiver of the given type and add it to the list of
374 // transceivers.
375 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
Steve Anton02ee47c2018-01-10 16:26:06 -0800376 CreateAndAddTransceiver(
377 rtc::scoped_refptr<RtpSenderProxyWithInternal<RtpSenderInternal>> sender,
378 rtc::scoped_refptr<RtpReceiverProxyWithInternal<RtpReceiverInternal>>
379 receiver);
Steve Antonf9381f02017-12-14 10:23:57 -0800380
Steve Antonba818672017-11-06 10:21:57 -0800381 void SetIceConnectionState(IceConnectionState new_state);
Jonas Olsson635474e2018-10-18 15:58:17 +0200382 void SetStandardizedIceConnectionState(
383 PeerConnectionInterface::IceConnectionState new_state);
384 void SetConnectionState(
385 PeerConnectionInterface::PeerConnectionState new_state);
386
Steve Antonba818672017-11-06 10:21:57 -0800387 // 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 Zhang7fb69db2016-03-14 11:59:18 -0700392 void OnIceCandidatesRemoved(
Steve Antonba818672017-11-06 10:21:57 -0800393 const std::vector<cricket::Candidate>& candidates);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000394
Steve Antonba818672017-11-06 10:21:57 -0800395 // Update the state, signaling if necessary.
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000396 void ChangeSignalingState(SignalingState signaling_state);
397
deadbeefeb459812015-12-15 19:24:43 -0800398 // 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öm31638672017-11-23 17:48:32 +0100408 void PostSetSessionDescriptionSuccess(
409 SetSessionDescriptionObserver* observer);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000410 void PostSetSessionDescriptionFailure(SetSessionDescriptionObserver* observer,
Steve Antonad182762018-09-05 20:22:40 +0000411 RTCError&& error);
deadbeefab9b2d12015-10-14 11:33:11 -0700412 void PostCreateSessionDescriptionFailure(
413 CreateSessionDescriptionObserver* observer,
Harald Alvestrand5081c0c2018-03-09 15:18:03 +0100414 RTCError error);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000415
Steve Anton8a006912017-12-04 15:25:56 -0800416 // 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 Antondcc3c022017-12-22 16:02:54 -0800423 // 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 Hampsonae8a90a2018-02-13 15:33:48 -0800427 const SessionDescriptionInterface& new_session,
428 const SessionDescriptionInterface* old_local_description,
429 const SessionDescriptionInterface* old_remote_description);
Steve Antondcc3c022017-12-22 16:02:54 -0800430
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 Antonfa2260d2017-12-28 16:38:23 -0800439 // 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 Antondcc3c022017-12-22 16:02:54 -0800445 // Associate the given transceiver according to the JSEP rules.
446 RTCErrorOr<
447 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>>
448 AssociateTransceiver(cricket::ContentSource source,
Seth Hampsonae8a90a2018-02-13 15:33:48 -0800449 SdpType type,
Steve Antondcc3c022017-12-22 16:02:54 -0800450 size_t mline_index,
451 const cricket::ContentInfo& content,
Seth Hampsonae8a90a2018-02-13 15:33:48 -0800452 const cricket::ContentInfo* old_local_content,
453 const cricket::ContentInfo* old_remote_content);
Steve Antondcc3c022017-12-22 16:02:54 -0800454
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 Antoned10bd92017-12-05 10:52:59 -0800469 // 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
Henrik Boströmafa07dd2018-12-20 11:06:02 +0100478 // Runs the algorithm **set the associated remote streams** specified in
479 // https://w3c.github.io/webrtc-pc/#set-associated-remote-streams.
480 void SetAssociatedRemoteStreams(
481 rtc::scoped_refptr<RtpReceiverInternal> receiver,
482 const std::vector<std::string>& stream_ids,
483 std::vector<rtc::scoped_refptr<MediaStreamInterface>>* added_streams,
484 std::vector<rtc::scoped_refptr<MediaStreamInterface>>* removed_streams);
485
Steve Anton0f5400a2018-07-17 14:25:36 -0700486 // Runs the algorithm **process the removal of a remote track** specified in
487 // the WebRTC specification.
488 // This method will update the following lists:
489 // |remove_list| is the list of transceivers for which the receiving track is
490 // being removed.
491 // |removed_streams| is the list of streams which no longer have a receiving
492 // track so should be removed.
493 // https://w3c.github.io/webrtc-pc/#process-remote-track-removal
494 void ProcessRemovalOfRemoteTrack(
495 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
496 transceiver,
497 std::vector<rtc::scoped_refptr<RtpTransceiverInterface>>* remove_list,
498 std::vector<rtc::scoped_refptr<MediaStreamInterface>>* removed_streams);
499
Henrik Boströmafa07dd2018-12-20 11:06:02 +0100500 void RemoveRemoteStreamsIfEmpty(
501 const std::vector<rtc::scoped_refptr<MediaStreamInterface>>&
502 remote_streams,
503 std::vector<rtc::scoped_refptr<MediaStreamInterface>>* removed_streams);
504
Steve Anton52d86772018-02-20 15:48:12 -0800505 void OnNegotiationNeeded();
506
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000507 bool IsClosed() const {
508 return signaling_state_ == PeerConnectionInterface::kClosed;
509 }
510
deadbeefab9b2d12015-10-14 11:33:11 -0700511 // Returns a MediaSessionOptions struct with options decided by |options|,
512 // the local MediaStreams and DataChannels.
Steve Antondcc3c022017-12-22 16:02:54 -0800513 void GetOptionsForOffer(const PeerConnectionInterface::RTCOfferAnswerOptions&
514 offer_answer_options,
515 cricket::MediaSessionOptions* session_options);
516 void GetOptionsForPlanBOffer(
517 const PeerConnectionInterface::RTCOfferAnswerOptions&
518 offer_answer_options,
519 cricket::MediaSessionOptions* session_options);
520 void GetOptionsForUnifiedPlanOffer(
521 const PeerConnectionInterface::RTCOfferAnswerOptions&
522 offer_answer_options,
deadbeefab9b2d12015-10-14 11:33:11 -0700523 cricket::MediaSessionOptions* session_options);
524
Steve Anton22da89f2018-01-25 13:58:07 -0800525 RTCError HandleLegacyOfferOptions(const RTCOfferAnswerOptions& options);
526 void RemoveRecvDirectionFromReceivingTransceiversOfType(
527 cricket::MediaType media_type);
528 void AddUpToOneReceivingTransceiverOfType(cricket::MediaType media_type);
529 std::vector<
530 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>>
531 GetReceivingTransceiversOfType(cricket::MediaType media_type);
532
deadbeefab9b2d12015-10-14 11:33:11 -0700533 // Returns a MediaSessionOptions struct with options decided by
534 // |constraints|, the local MediaStreams and DataChannels.
Steve Antondcc3c022017-12-22 16:02:54 -0800535 void GetOptionsForAnswer(const RTCOfferAnswerOptions& offer_answer_options,
zhihuang1c378ed2017-08-17 14:10:50 -0700536 cricket::MediaSessionOptions* session_options);
Steve Antondcc3c022017-12-22 16:02:54 -0800537 void GetOptionsForPlanBAnswer(
538 const PeerConnectionInterface::RTCOfferAnswerOptions&
539 offer_answer_options,
540 cricket::MediaSessionOptions* session_options);
541 void GetOptionsForUnifiedPlanAnswer(
542 const PeerConnectionInterface::RTCOfferAnswerOptions&
543 offer_answer_options,
544 cricket::MediaSessionOptions* session_options);
htaa2a49d92016-03-04 02:51:39 -0800545
zhihuang1c378ed2017-08-17 14:10:50 -0700546 // Generates MediaDescriptionOptions for the |session_opts| based on existing
547 // local description or remote description.
548 void GenerateMediaDescriptionOptions(
549 const SessionDescriptionInterface* session_desc,
Steve Anton1d03a752017-11-27 14:30:09 -0800550 RtpTransceiverDirection audio_direction,
551 RtpTransceiverDirection video_direction,
Danil Chapovalov66cadcc2018-06-19 16:47:43 +0200552 absl::optional<size_t>* audio_index,
553 absl::optional<size_t>* video_index,
554 absl::optional<size_t>* data_index,
htaa2a49d92016-03-04 02:51:39 -0800555 cricket::MediaSessionOptions* session_options);
deadbeefab9b2d12015-10-14 11:33:11 -0700556
Steve Antonfa2260d2017-12-28 16:38:23 -0800557 // Generates the active MediaDescriptionOptions for the local data channel
558 // given the specified MID.
559 cricket::MediaDescriptionOptions GetMediaDescriptionOptionsForActiveData(
560 const std::string& mid) const;
561
562 // Generates the rejected MediaDescriptionOptions for the local data channel
563 // given the specified MID.
564 cricket::MediaDescriptionOptions GetMediaDescriptionOptionsForRejectedData(
565 const std::string& mid) const;
566
567 // Returns the MID for the data section associated with either the
568 // RtpDataChannel or SCTP data channel, if it has been set. If no data
569 // channels are configured this will return nullopt.
Danil Chapovalov66cadcc2018-06-19 16:47:43 +0200570 absl::optional<std::string> GetDataMid() const;
Steve Antonfa2260d2017-12-28 16:38:23 -0800571
Steve Anton4171afb2017-11-20 10:20:22 -0800572 // Remove all local and remote senders of type |media_type|.
deadbeeffaac4972015-11-12 15:33:07 -0800573 // Called when a media type is rejected (m-line set to port 0).
Steve Anton4171afb2017-11-20 10:20:22 -0800574 void RemoveSenders(cricket::MediaType media_type);
deadbeeffaac4972015-11-12 15:33:07 -0800575
deadbeefbda7e0b2015-12-08 17:13:40 -0800576 // Makes sure a MediaStreamTrack is created for each StreamParam in |streams|,
577 // and existing MediaStreamTracks are removed if there is no corresponding
578 // StreamParam. If |default_track_needed| is true, a default MediaStreamTrack
579 // is created if it doesn't exist; if false, it's removed if it exists.
580 // |media_type| is the type of the |streams| and can be either audio or video.
deadbeefab9b2d12015-10-14 11:33:11 -0700581 // If a new MediaStream is created it is added to |new_streams|.
Steve Anton4171afb2017-11-20 10:20:22 -0800582 void UpdateRemoteSendersList(
deadbeefab9b2d12015-10-14 11:33:11 -0700583 const std::vector<cricket::StreamParams>& streams,
deadbeefbda7e0b2015-12-08 17:13:40 -0800584 bool default_track_needed,
deadbeefab9b2d12015-10-14 11:33:11 -0700585 cricket::MediaType media_type,
586 StreamCollection* new_streams);
587
Steve Anton4171afb2017-11-20 10:20:22 -0800588 // Triggered when a remote sender has been seen for the first time in a remote
deadbeefab9b2d12015-10-14 11:33:11 -0700589 // session description. It creates a remote MediaStreamTrackInterface
590 // implementation and triggers CreateAudioReceiver or CreateVideoReceiver.
Steve Anton4171afb2017-11-20 10:20:22 -0800591 void OnRemoteSenderAdded(const RtpSenderInfo& sender_info,
592 cricket::MediaType media_type);
deadbeefab9b2d12015-10-14 11:33:11 -0700593
Steve Anton4171afb2017-11-20 10:20:22 -0800594 // Triggered when a remote sender has been removed from a remote session
595 // description. It removes the remote sender with id |sender_id| from a remote
deadbeefab9b2d12015-10-14 11:33:11 -0700596 // MediaStream and triggers DestroyAudioReceiver or DestroyVideoReceiver.
Steve Anton4171afb2017-11-20 10:20:22 -0800597 void OnRemoteSenderRemoved(const RtpSenderInfo& sender_info,
598 cricket::MediaType media_type);
deadbeefab9b2d12015-10-14 11:33:11 -0700599
600 // Finds remote MediaStreams without any tracks and removes them from
601 // |remote_streams_| and notifies the observer that the MediaStreams no longer
602 // exist.
603 void UpdateEndedRemoteMediaStreams();
604
deadbeefab9b2d12015-10-14 11:33:11 -0700605 // Loops through the vector of |streams| and finds added and removed
606 // StreamParams since last time this method was called.
Steve Anton4171afb2017-11-20 10:20:22 -0800607 // For each new or removed StreamParam, OnLocalSenderSeen or
608 // OnLocalSenderRemoved is invoked.
609 void UpdateLocalSenders(const std::vector<cricket::StreamParams>& streams,
610 cricket::MediaType media_type);
deadbeefab9b2d12015-10-14 11:33:11 -0700611
Steve Anton4171afb2017-11-20 10:20:22 -0800612 // Triggered when a local sender has been seen for the first time in a local
deadbeefab9b2d12015-10-14 11:33:11 -0700613 // session description.
614 // This method triggers CreateAudioSender or CreateVideoSender if the rtp
615 // streams in the local SessionDescription can be mapped to a MediaStreamTrack
616 // in a MediaStream in |local_streams_|
Steve Anton4171afb2017-11-20 10:20:22 -0800617 void OnLocalSenderAdded(const RtpSenderInfo& sender_info,
618 cricket::MediaType media_type);
deadbeefab9b2d12015-10-14 11:33:11 -0700619
Steve Anton4171afb2017-11-20 10:20:22 -0800620 // Triggered when a local sender has been removed from a local session
deadbeefab9b2d12015-10-14 11:33:11 -0700621 // description.
622 // This method triggers DestroyAudioSender or DestroyVideoSender if a stream
623 // has been removed from the local SessionDescription and the stream can be
624 // mapped to a MediaStreamTrack in a MediaStream in |local_streams_|.
Steve Anton4171afb2017-11-20 10:20:22 -0800625 void OnLocalSenderRemoved(const RtpSenderInfo& sender_info,
626 cricket::MediaType media_type);
deadbeefab9b2d12015-10-14 11:33:11 -0700627
628 void UpdateLocalRtpDataChannels(const cricket::StreamParamsVec& streams);
629 void UpdateRemoteRtpDataChannels(const cricket::StreamParamsVec& streams);
630 void UpdateClosingRtpDataChannels(
631 const std::vector<std::string>& active_channels,
632 bool is_local_update);
633 void CreateRemoteRtpDataChannel(const std::string& label,
634 uint32_t remote_ssrc);
635
636 // Creates channel and adds it to the collection of DataChannels that will
637 // be offered in a SessionDescription.
638 rtc::scoped_refptr<DataChannel> InternalCreateDataChannel(
639 const std::string& label,
640 const InternalDataChannelInit* config);
641
642 // Checks if any data channel has been added.
643 bool HasDataChannels() const;
644
645 void AllocateSctpSids(rtc::SSLRole role);
646 void OnSctpDataChannelClosed(DataChannel* channel);
647
deadbeefab9b2d12015-10-14 11:33:11 -0700648 void OnDataChannelDestroyed();
Steve Antonba818672017-11-06 10:21:57 -0800649 // Called when a valid data channel OPEN message is received.
deadbeefab9b2d12015-10-14 11:33:11 -0700650 void OnDataChannelOpenMessage(const std::string& label,
651 const InternalDataChannelInit& config);
Bjorn Mellem175aa2e2018-11-08 11:23:22 -0800652 // Parses and handles open messages. Returns true if the message is an open
653 // message, false otherwise.
654 bool HandleOpenMessage_s(const cricket::ReceiveDataParams& params,
655 const rtc::CopyOnWriteBuffer& buffer)
656 RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700657
Steve Anton4171afb2017-11-20 10:20:22 -0800658 // Returns true if the PeerConnection is configured to use Unified Plan
659 // semantics for creating offers/answers and setting local/remote
660 // descriptions. If this is true the RtpTransceiver API will also be available
661 // to the user. If this is false, Plan B semantics are assumed.
Steve Anton79e79602017-11-20 10:25:56 -0800662 // TODO(bugs.webrtc.org/8530): Flip the default to be Unified Plan once
663 // sufficient time has passed.
664 bool IsUnifiedPlan() const {
665 return configuration_.sdp_semantics == SdpSemantics::kUnifiedPlan;
666 }
Steve Anton4171afb2017-11-20 10:20:22 -0800667
Steve Anton06817cd2018-12-18 15:55:30 -0800668 // The offer/answer machinery assumes the media section MID is present and
669 // unique. To support legacy end points that do not supply a=mid lines, this
670 // method will modify the session description to add MIDs generated according
671 // to the SDP semantics.
672 void FillInMissingRemoteMids(cricket::SessionDescription* remote_description);
673
Steve Anton4171afb2017-11-20 10:20:22 -0800674 // Is there an RtpSender of the given type?
zhihuang1c378ed2017-08-17 14:10:50 -0700675 bool HasRtpSender(cricket::MediaType type) const;
deadbeeffac06552015-11-25 11:26:01 -0800676
Steve Anton4171afb2017-11-20 10:20:22 -0800677 // Return the RtpSender with the given track attached.
678 rtc::scoped_refptr<RtpSenderProxyWithInternal<RtpSenderInternal>>
679 FindSenderForTrack(MediaStreamTrackInterface* track) const;
deadbeef70ab1a12015-09-28 16:53:55 -0700680
Steve Anton4171afb2017-11-20 10:20:22 -0800681 // Return the RtpSender with the given id, or null if none exists.
682 rtc::scoped_refptr<RtpSenderProxyWithInternal<RtpSenderInternal>>
683 FindSenderById(const std::string& sender_id) const;
684
685 // Return the RtpReceiver with the given id, or null if none exists.
686 rtc::scoped_refptr<RtpReceiverProxyWithInternal<RtpReceiverInternal>>
687 FindReceiverById(const std::string& receiver_id) const;
688
689 std::vector<RtpSenderInfo>* GetRemoteSenderInfos(
690 cricket::MediaType media_type);
691 std::vector<RtpSenderInfo>* GetLocalSenderInfos(
692 cricket::MediaType media_type);
693 const RtpSenderInfo* FindSenderInfo(const std::vector<RtpSenderInfo>& infos,
Emircan Uysalerbc609ea2018-03-27 21:57:18 +0000694 const std::string& stream_id,
Steve Anton4171afb2017-11-20 10:20:22 -0800695 const std::string sender_id) const;
deadbeefab9b2d12015-10-14 11:33:11 -0700696
697 // Returns the specified SCTP DataChannel in sctp_data_channels_,
698 // or nullptr if not found.
699 DataChannel* FindDataChannelBySid(int sid) const;
700
Taylor Brandstettera1c30352016-05-13 08:15:11 -0700701 // Called when first configuring the port allocator.
Harald Alvestrandb2a74782018-06-28 13:54:07 +0200702 bool InitializePortAllocator_n(
703 const cricket::ServerAddresses& stun_servers,
704 const std::vector<cricket::RelayServerConfig>& turn_servers,
705 const RTCConfiguration& configuration);
deadbeef293e9262017-01-11 12:28:30 -0800706 // Called when SetConfiguration is called to apply the supported subset
707 // of the configuration on the network thread.
708 bool ReconfigurePortAllocator_n(
709 const cricket::ServerAddresses& stun_servers,
710 const std::vector<cricket::RelayServerConfig>& turn_servers,
711 IceTransportsType type,
712 int candidate_pool_size,
Jonas Orelandbdcee282017-10-10 14:01:40 +0200713 bool prune_turn_ports,
Qingsi Wangdb53f8e2018-02-20 14:45:49 -0800714 webrtc::TurnCustomizer* turn_customizer,
Danil Chapovalov66cadcc2018-06-19 16:47:43 +0200715 absl::optional<int> stun_candidate_keepalive_interval);
Taylor Brandstettera1c30352016-05-13 08:15:11 -0700716
Elad Alon99c3fe52017-10-13 16:29:40 +0200717 // Starts output of an RTC event log to the given output object.
ivoc14d5dbe2016-07-04 07:06:55 -0700718 // This function should only be called from the worker thread.
Bjorn Tereliusde939432017-11-20 17:38:14 +0100719 bool StartRtcEventLog_w(std::unique_ptr<RtcEventLogOutput> output,
720 int64_t output_period_ms);
Elad Alon99c3fe52017-10-13 16:29:40 +0200721
Elad Alonacb24172017-10-06 14:32:13 +0200722 // Stops recording an RTC event log.
ivoc14d5dbe2016-07-04 07:06:55 -0700723 // This function should only be called from the worker thread.
724 void StopRtcEventLog_w();
725
Steve Anton038834f2017-07-14 15:59:59 -0700726 // Ensures the configuration doesn't have any parameters with invalid values,
727 // or values that conflict with other parameters.
728 //
729 // Returns RTCError::OK() if there are no issues.
730 RTCError ValidateConfiguration(const RTCConfiguration& config) const;
731
Steve Antonba818672017-11-06 10:21:57 -0800732 cricket::ChannelManager* channel_manager() const;
Steve Antonba818672017-11-06 10:21:57 -0800733
Steve Antonf8470812017-12-04 10:46:21 -0800734 enum class SessionError {
735 kNone, // No error.
736 kContent, // Error in BaseChannel SetLocalContent/SetRemoteContent.
737 kTransport, // Error from the underlying transport.
738 };
739
Steve Anton75737c02017-11-06 10:37:17 -0800740 // Returns the last error in the session. See the enum above for details.
Steve Antonf8470812017-12-04 10:46:21 -0800741 SessionError session_error() const { return session_error_; }
742 const std::string& session_error_desc() const { return session_error_desc_; }
Steve Anton75737c02017-11-06 10:37:17 -0800743
Amit Hilbuchdd9390c2018-11-13 16:26:05 -0800744 cricket::ChannelInterface* GetChannel(const std::string& content_name);
Steve Anton75737c02017-11-06 10:37:17 -0800745
746 // Get current SSL role used by SCTP's underlying transport.
747 bool GetSctpSslRole(rtc::SSLRole* role);
748
Steve Anton75737c02017-11-06 10:37:17 -0800749 cricket::IceConfig ParseIceConfig(
750 const PeerConnectionInterface::RTCConfiguration& config) const;
751
Steve Anton75737c02017-11-06 10:37:17 -0800752 // Implements DataChannelProviderInterface.
753 bool SendData(const cricket::SendDataParams& params,
754 const rtc::CopyOnWriteBuffer& payload,
755 cricket::SendDataResult* result) override;
756 bool ConnectDataChannel(DataChannel* webrtc_data_channel) override;
757 void DisconnectDataChannel(DataChannel* webrtc_data_channel) override;
758 void AddSctpDataStream(int sid) override;
759 void RemoveSctpDataStream(int sid) override;
760 bool ReadyToSendData() const override;
761
762 cricket::DataChannelType data_channel_type() const;
763
Bjorn Mellem175aa2e2018-11-08 11:23:22 -0800764 // Implements DataChannelSink.
765 void OnDataReceived(int channel_id,
766 DataMessageType type,
767 const rtc::CopyOnWriteBuffer& buffer) override;
768 void OnChannelClosing(int channel_id) override;
769 void OnChannelClosed(int channel_id) override;
770
Steve Anton75737c02017-11-06 10:37:17 -0800771 // Called when an RTCCertificate is generated or retrieved by
772 // WebRTCSessionDescriptionFactory. Should happen before setLocalDescription.
773 void OnCertificateReady(
774 const rtc::scoped_refptr<rtc::RTCCertificate>& certificate);
775 void OnDtlsSrtpSetupFailure(cricket::BaseChannel*, bool rtcp);
776
Steve Anton75737c02017-11-06 10:37:17 -0800777 // Non-const versions of local_description()/remote_description(), for use
778 // internally.
779 SessionDescriptionInterface* mutable_local_description() {
780 return pending_local_description_ ? pending_local_description_.get()
781 : current_local_description_.get();
782 }
783 SessionDescriptionInterface* mutable_remote_description() {
784 return pending_remote_description_ ? pending_remote_description_.get()
785 : current_remote_description_.get();
786 }
787
788 // Updates the error state, signaling if necessary.
Steve Antonf8470812017-12-04 10:46:21 -0800789 void SetSessionError(SessionError error, const std::string& error_desc);
Steve Anton75737c02017-11-06 10:37:17 -0800790
Zhi Huange830e682018-03-30 10:48:35 -0700791 RTCError UpdateSessionState(SdpType type,
792 cricket::ContentSource source,
793 const cricket::SessionDescription* description);
Steve Anton75737c02017-11-06 10:37:17 -0800794 // Push the media parts of the local or remote session description
795 // down to all of the channels.
Steve Anton3828c062017-12-06 10:34:51 -0800796 RTCError PushdownMediaDescription(SdpType type,
Steve Anton8a006912017-12-04 15:25:56 -0800797 cricket::ContentSource source);
Steve Anton75737c02017-11-06 10:37:17 -0800798 bool PushdownSctpParameters_n(cricket::ContentSource source);
799
Steve Anton8a006912017-12-04 15:25:56 -0800800 RTCError PushdownTransportDescription(cricket::ContentSource source,
Steve Anton3828c062017-12-06 10:34:51 -0800801 SdpType type);
Steve Anton75737c02017-11-06 10:37:17 -0800802
803 // Returns true and the TransportInfo of the given |content_name|
804 // from |description|. Returns false if it's not available.
805 static bool GetTransportDescription(
806 const cricket::SessionDescription* description,
807 const std::string& content_name,
808 cricket::TransportDescription* info);
809
Steve Anton75737c02017-11-06 10:37:17 -0800810 // Enables media channels to allow sending of media.
Steve Antoned10bd92017-12-05 10:52:59 -0800811 // This enables media to flow on all configured audio/video channels and the
812 // RtpDataChannel.
813 void EnableSending();
Steve Anton3fe1b152017-12-12 10:20:08 -0800814
Steve Anton8af21862017-12-15 11:20:13 -0800815 // Destroys all BaseChannels and destroys the SCTP data channel, if present.
816 void DestroyAllChannels();
Steve Anton3fe1b152017-12-12 10:20:08 -0800817
Steve Anton75737c02017-11-06 10:37:17 -0800818 // Returns the media index for a local ice candidate given the content name.
819 // Returns false if the local session description does not have a media
820 // content called |content_name|.
821 bool GetLocalCandidateMediaIndex(const std::string& content_name,
822 int* sdp_mline_index);
823 // Uses all remote candidates in |remote_desc| in this session.
824 bool UseCandidatesInSessionDescription(
825 const SessionDescriptionInterface* remote_desc);
826 // Uses |candidate| in this session.
827 bool UseCandidate(const IceCandidateInterface* candidate);
828 // Deletes the corresponding channel of contents that don't exist in |desc|.
829 // |desc| can be null. This means that all channels are deleted.
830 void RemoveUnusedChannels(const cricket::SessionDescription* desc);
831
832 // Allocates media channels based on the |desc|. If |desc| doesn't have
833 // the BUNDLE option, this method will disable BUNDLE in PortAllocator.
834 // This method will also delete any existing media channels before creating.
Steve Antondcc3c022017-12-22 16:02:54 -0800835 RTCError CreateChannels(const cricket::SessionDescription& desc);
836
837 // If the BUNDLE policy is max-bundle, then we know for sure that all
838 // transports will be bundled from the start. This method returns the BUNDLE
839 // group if that's the case, or null if BUNDLE will be negotiated later. An
840 // error is returned if max-bundle is specified but the session description
841 // does not have a BUNDLE group.
842 RTCErrorOr<const cricket::ContentGroup*> GetEarlyBundleGroup(
843 const cricket::SessionDescription& desc) const;
Steve Anton75737c02017-11-06 10:37:17 -0800844
845 // Helper methods to create media channels.
Zhi Huange830e682018-03-30 10:48:35 -0700846 cricket::VoiceChannel* CreateVoiceChannel(const std::string& mid);
847 cricket::VideoChannel* CreateVideoChannel(const std::string& mid);
848 bool CreateDataChannel(const std::string& mid);
Steve Anton75737c02017-11-06 10:37:17 -0800849
Zhi Huange830e682018-03-30 10:48:35 -0700850 bool CreateSctpTransport_n(const std::string& mid);
Steve Anton75737c02017-11-06 10:37:17 -0800851 // For bundling.
Steve Anton75737c02017-11-06 10:37:17 -0800852 void DestroySctpTransport_n();
853 // SctpTransport signal handlers. Needed to marshal signals from the network
854 // to signaling thread.
855 void OnSctpTransportReadyToSendData_n();
856 // This may be called with "false" if the direction of the m= section causes
857 // us to tear down the SCTP connection.
858 void OnSctpTransportReadyToSendData_s(bool ready);
859 void OnSctpTransportDataReceived_n(const cricket::ReceiveDataParams& params,
860 const rtc::CopyOnWriteBuffer& payload);
861 // Beyond just firing the signal to the signaling thread, listens to SCTP
862 // CONTROL messages on unused SIDs and processes them as OPEN messages.
863 void OnSctpTransportDataReceived_s(const cricket::ReceiveDataParams& params,
864 const rtc::CopyOnWriteBuffer& payload);
Taylor Brandstettercdd05f02018-05-31 13:23:32 -0700865 void OnSctpClosingProcedureStartedRemotely_n(int sid);
866 void OnSctpClosingProcedureComplete_n(int sid);
Steve Anton75737c02017-11-06 10:37:17 -0800867
Bjorn Mellem175aa2e2018-11-08 11:23:22 -0800868 bool SetupMediaTransportForDataChannels_n(const std::string& mid)
869 RTC_RUN_ON(network_thread());
870 void OnMediaTransportStateChanged_n() RTC_RUN_ON(network_thread());
871 void TeardownMediaTransportForDataChannels_n() RTC_RUN_ON(network_thread());
872
Steve Anton75737c02017-11-06 10:37:17 -0800873 bool ValidateBundleSettings(const cricket::SessionDescription* desc);
874 bool HasRtcpMuxEnabled(const cricket::ContentInfo* content);
875 // Below methods are helper methods which verifies SDP.
Steve Anton8a006912017-12-04 15:25:56 -0800876 RTCError ValidateSessionDescription(const SessionDescriptionInterface* sdesc,
877 cricket::ContentSource source);
Steve Anton75737c02017-11-06 10:37:17 -0800878
Steve Anton3828c062017-12-06 10:34:51 -0800879 // Check if a call to SetLocalDescription is acceptable with a session
880 // description of the given type.
881 bool ExpectSetLocalDescription(SdpType type);
882 // Check if a call to SetRemoteDescription is acceptable with a session
883 // description of the given type.
884 bool ExpectSetRemoteDescription(SdpType type);
Steve Anton75737c02017-11-06 10:37:17 -0800885 // Verifies a=setup attribute as per RFC 5763.
886 bool ValidateDtlsSetupAttribute(const cricket::SessionDescription* desc,
Steve Anton3828c062017-12-06 10:34:51 -0800887 SdpType type);
Steve Anton75737c02017-11-06 10:37:17 -0800888
889 // Returns true if we are ready to push down the remote candidate.
890 // |remote_desc| is the new remote description, or NULL if the current remote
891 // description should be used. Output |valid| is true if the candidate media
892 // index is valid.
893 bool ReadyToUseRemoteCandidate(const IceCandidateInterface* candidate,
894 const SessionDescriptionInterface* remote_desc,
895 bool* valid);
896
897 // Returns true if SRTP (either using DTLS-SRTP or SDES) is required by
898 // this session.
899 bool SrtpRequired() const;
900
Zhi Huange830e682018-03-30 10:48:35 -0700901 // JsepTransportController signal handlers.
Alex Loiko9289eda2018-11-23 16:18:59 +0000902 void OnTransportControllerConnectionState(cricket::IceConnectionState state);
Steve Anton75737c02017-11-06 10:37:17 -0800903 void OnTransportControllerGatheringState(cricket::IceGatheringState state);
904 void OnTransportControllerCandidatesGathered(
905 const std::string& transport_name,
906 const std::vector<cricket::Candidate>& candidates);
907 void OnTransportControllerCandidatesRemoved(
908 const std::vector<cricket::Candidate>& candidates);
909 void OnTransportControllerDtlsHandshakeError(rtc::SSLHandshakeError error);
910
Steve Antonf8470812017-12-04 10:46:21 -0800911 const char* SessionErrorToString(SessionError error) const;
Steve Anton75737c02017-11-06 10:37:17 -0800912 std::string GetSessionErrorMsg();
913
Steve Anton8e20f172018-03-06 10:55:04 -0800914 // Report the UMA metric SdpFormatReceived for the given remote offer.
915 void ReportSdpFormatReceived(const SessionDescriptionInterface& remote_offer);
916
Steve Anton0ffaaa22018-02-23 10:31:30 -0800917 // Report inferred negotiated SDP semantics from a local/remote answer to the
918 // UMA observer.
919 void ReportNegotiatedSdpSemantics(const SessionDescriptionInterface& answer);
920
Steve Anton75737c02017-11-06 10:37:17 -0800921 // Invoked when TransportController connection completion is signaled.
922 // Reports stats for all transports in use.
923 void ReportTransportStats();
924
925 // Gather the usage of IPv4/IPv6 as best connection.
926 void ReportBestConnectionState(const cricket::TransportStats& stats);
927
Steve Antonc7b964c2018-02-01 14:39:45 -0800928 void ReportNegotiatedCiphers(const cricket::TransportStats& stats,
929 const std::set<cricket::MediaType>& media_types);
Steve Anton75737c02017-11-06 10:37:17 -0800930
Harald Alvestrand8ebba742018-05-31 14:00:34 +0200931 void NoteUsageEvent(UsageEvent event);
932 void ReportUsagePattern() const;
933
Steve Anton75737c02017-11-06 10:37:17 -0800934 void OnSentPacket_w(const rtc::SentPacket& sent_packet);
935
936 const std::string GetTransportName(const std::string& content_name);
937
Steve Anton6fec8802017-12-04 10:37:29 -0800938 // Destroys and clears the BaseChannel associated with the given transceiver,
939 // if such channel is set.
940 void DestroyTransceiverChannel(
941 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
942 transceiver);
943
944 // Destroys the RTP data channel and/or the SCTP data channel and clears it.
Steve Anton75737c02017-11-06 10:37:17 -0800945 void DestroyDataChannel();
946
Amit Hilbuchdd9390c2018-11-13 16:26:05 -0800947 // Destroys the given ChannelInterface.
948 // The channel cannot be accessed after this method is called.
949 void DestroyChannelInterface(cricket::ChannelInterface* channel);
Steve Anton6fec8802017-12-04 10:37:29 -0800950
Zhi Huang365381f2018-04-13 16:44:34 -0700951 // JsepTransportController::Observer override.
Taylor Brandstettercbaa2542018-04-16 16:42:14 -0700952 //
953 // Called by |transport_controller_| when processing transport information
954 // from a session description, and the mapping from m= sections to transports
955 // changed (as a result of BUNDLE negotiation, or m= sections being
956 // rejected).
Piotr (Peter) Slatalacc8e8bb2018-11-15 08:26:19 -0800957 bool OnTransportChanged(const std::string& mid,
958 RtpTransportInternal* rtp_transport,
959 cricket::DtlsTransportInternal* dtls_transport,
960 MediaTransportInterface* media_transport) override;
Zhi Huange830e682018-03-30 10:48:35 -0700961
Harald Alvestrand7a1c7f72018-08-01 10:50:16 +0200962 // Returns the observer. Will crash on CHECK if the observer is removed.
963 PeerConnectionObserver* Observer() const;
964
Benjamin Wright8c27cca2018-10-25 10:16:44 -0700965 // Returns the CryptoOptions for this PeerConnection. This will always
966 // return the RTCConfiguration.crypto_options if set and will only default
967 // back to the PeerConnectionFactory settings if nothing was set.
968 CryptoOptions GetCryptoOptions();
969
Anton Sukhanov98a462c2018-10-17 13:15:42 -0700970 // Returns rtp transport, result can not be nullptr.
971 RtpTransportInternal* GetRtpTransport(const std::string& mid) {
972 auto rtp_transport = transport_controller_->GetRtpTransport(mid);
973 RTC_DCHECK(rtp_transport);
974 return rtp_transport;
975 }
976
977 // Returns media transport, if PeerConnection was created with configuration
978 // to use media transport. Otherwise returns nullptr.
979 MediaTransportInterface* GetMediaTransport(const std::string& mid) {
980 auto media_transport = transport_controller_->GetMediaTransport(mid);
Bjorn Mellema9bbd862018-11-02 09:07:48 -0700981 RTC_DCHECK((configuration_.use_media_transport ||
982 configuration_.use_media_transport_for_data_channels) ==
Piotr (Peter) Slatala97fc11f2018-10-18 12:57:59 -0700983 (media_transport != nullptr))
984 << "configuration_.use_media_transport="
985 << configuration_.use_media_transport
Bjorn Mellema9bbd862018-11-02 09:07:48 -0700986 << ", configuration_.use_media_transport_for_data_channels="
987 << configuration_.use_media_transport_for_data_channels
Piotr (Peter) Slatala97fc11f2018-10-18 12:57:59 -0700988 << ", (media_transport != nullptr)=" << (media_transport != nullptr);
Anton Sukhanov98a462c2018-10-17 13:15:42 -0700989 return media_transport;
990 }
991
Steve Anton2d8609c2018-01-23 16:38:46 -0800992 sigslot::signal1<DataChannel*> SignalDataChannelCreated_;
993
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000994 // Storing the factory as a scoped reference pointer ensures that the memory
995 // in the PeerConnectionFactoryImpl remains available as long as the
996 // PeerConnection is running. It is passed to PeerConnection as a raw pointer.
997 // However, since the reference counting is done in the
deadbeefab9b2d12015-10-14 11:33:11 -0700998 // PeerConnectionFactoryInterface all instances created using the raw pointer
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000999 // will refer to the same reference count.
buildbot@webrtc.orgd4e598d2014-07-29 17:36:52 +00001000 rtc::scoped_refptr<PeerConnectionFactory> factory_;
Steve Antonba818672017-11-06 10:21:57 -08001001 PeerConnectionObserver* observer_ = nullptr;
terelius33860252017-05-12 23:37:18 -07001002
1003 // The EventLog needs to outlive |call_| (and any other object that uses it).
1004 std::unique_ptr<RtcEventLog> event_log_;
1005
Steve Antonba818672017-11-06 10:21:57 -08001006 SignalingState signaling_state_ = kStable;
1007 IceConnectionState ice_connection_state_ = kIceConnectionNew;
Alex Loiko9289eda2018-11-23 16:18:59 +00001008 PeerConnectionInterface::IceConnectionState
1009 standardized_ice_connection_state_ = kIceConnectionNew;
Jonas Olsson635474e2018-10-18 15:58:17 +02001010 PeerConnectionInterface::PeerConnectionState connection_state_ =
1011 PeerConnectionState::kNew;
1012
Steve Antonba818672017-11-06 10:21:57 -08001013 IceGatheringState ice_gathering_state_ = kIceGatheringNew;
deadbeef46c73892016-11-16 19:42:04 -08001014 PeerConnectionInterface::RTCConfiguration configuration_;
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001015
Zach Steine20867f2018-08-02 13:20:15 -07001016 // TODO(zstein): |async_resolver_factory_| can currently be nullptr if it
1017 // is not injected. It should be required once chromium supplies it.
1018 std::unique_ptr<AsyncResolverFactory> async_resolver_factory_;
kwibergd1fe2812016-04-27 06:47:29 -07001019 std::unique_ptr<cricket::PortAllocator> port_allocator_;
Benjamin Wrightd6f86e82018-05-08 13:12:25 -07001020 std::unique_ptr<rtc::SSLCertificateVerifier> tls_cert_verifier_;
Qingsi Wanga2d60672018-04-11 16:57:45 -07001021 int port_allocator_flags_ = 0;
deadbeefab9b2d12015-10-14 11:33:11 -07001022
zhihuang8f65cdf2016-05-06 18:40:30 -07001023 // One PeerConnection has only one RTCP CNAME.
1024 // https://tools.ietf.org/html/draft-ietf-rtcweb-rtp-usage-26#section-4.9
1025 std::string rtcp_cname_;
1026
deadbeefab9b2d12015-10-14 11:33:11 -07001027 // Streams added via AddStream.
1028 rtc::scoped_refptr<StreamCollection> local_streams_;
1029 // Streams created as a result of SetRemoteDescription.
1030 rtc::scoped_refptr<StreamCollection> remote_streams_;
1031
kwibergd1fe2812016-04-27 06:47:29 -07001032 std::vector<std::unique_ptr<MediaStreamObserver>> stream_observers_;
deadbeefeb459812015-12-15 19:24:43 -08001033
Steve Anton4171afb2017-11-20 10:20:22 -08001034 // These lists store sender info seen in local/remote descriptions.
1035 std::vector<RtpSenderInfo> remote_audio_sender_infos_;
1036 std::vector<RtpSenderInfo> remote_video_sender_infos_;
1037 std::vector<RtpSenderInfo> local_audio_sender_infos_;
1038 std::vector<RtpSenderInfo> local_video_sender_infos_;
deadbeefab9b2d12015-10-14 11:33:11 -07001039
1040 SctpSidAllocator sid_allocator_;
1041 // label -> DataChannel
1042 std::map<std::string, rtc::scoped_refptr<DataChannel>> rtp_data_channels_;
1043 std::vector<rtc::scoped_refptr<DataChannel>> sctp_data_channels_;
deadbeefbd292462015-12-14 18:15:29 -08001044 std::vector<rtc::scoped_refptr<DataChannel>> sctp_data_channels_to_free_;
deadbeefab9b2d12015-10-14 11:33:11 -07001045
deadbeefbda7e0b2015-12-08 17:13:40 -08001046 bool remote_peer_supports_msid_ = false;
deadbeef70ab1a12015-09-28 16:53:55 -07001047
terelius33860252017-05-12 23:37:18 -07001048 std::unique_ptr<Call> call_;
terelius33860252017-05-12 23:37:18 -07001049 std::unique_ptr<StatsCollector> stats_; // A pointer is passed to senders_
1050 rtc::scoped_refptr<RTCStatsCollector> stats_collector_;
1051
deadbeefa601f5c2016-06-06 14:27:39 -07001052 std::vector<
Steve Anton4171afb2017-11-20 10:20:22 -08001053 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>>
1054 transceivers_;
Henrik Boström5b147782018-12-04 11:25:05 +01001055 // In Unified Plan, if we encounter remote SDP that does not contain an a=msid
1056 // line we create and use a stream with a random ID for our receivers. This is
1057 // to support legacy endpoints that do not support the a=msid attribute (as
1058 // opposed to streamless tracks with "a=msid:-").
1059 rtc::scoped_refptr<MediaStreamInterface> missing_msid_default_stream_;
Steve Antondcc3c022017-12-22 16:02:54 -08001060 // MIDs that have been seen either by SetLocalDescription or
1061 // SetRemoteDescription over the life of the PeerConnection.
1062 std::set<std::string> seen_mids_;
Steve Anton75737c02017-11-06 10:37:17 -08001063
Steve Antonf8470812017-12-04 10:46:21 -08001064 SessionError session_error_ = SessionError::kNone;
1065 std::string session_error_desc_;
Steve Anton75737c02017-11-06 10:37:17 -08001066
1067 std::string session_id_;
Steve Anton75737c02017-11-06 10:37:17 -08001068
Zhi Huange830e682018-03-30 10:48:35 -07001069 std::unique_ptr<JsepTransportController> transport_controller_;
Steve Anton75737c02017-11-06 10:37:17 -08001070 std::unique_ptr<cricket::SctpTransportInternalFactory> sctp_factory_;
Steve Anton75737c02017-11-06 10:37:17 -08001071 // |rtp_data_channel_| is used if in RTP data channel mode, |sctp_transport_|
1072 // when using SCTP.
1073 cricket::RtpDataChannel* rtp_data_channel_ = nullptr;
1074
1075 std::unique_ptr<cricket::SctpTransportInternal> sctp_transport_;
Zhi Huange830e682018-03-30 10:48:35 -07001076 // |sctp_mid_| is the content name (MID) in SDP.
Danil Chapovalov66cadcc2018-06-19 16:47:43 +02001077 absl::optional<std::string> sctp_mid_;
Steve Anton75737c02017-11-06 10:37:17 -08001078 // Value cached on signaling thread. Only updated when SctpReadyToSendData
1079 // fires on the signaling thread.
1080 bool sctp_ready_to_send_data_ = false;
1081 // Same as signals provided by SctpTransport, but these are guaranteed to
1082 // fire on the signaling thread, whereas SctpTransport fires on the networking
1083 // thread.
1084 // |sctp_invoker_| is used so that any signals queued on the signaling thread
1085 // from the network thread are immediately discarded if the SctpTransport is
1086 // destroyed (due to m= section being rejected).
1087 // TODO(deadbeef): Use a proxy object to ensure that method calls/signals
1088 // are marshalled to the right thread. Could almost use proxy.h for this,
1089 // but it doesn't have a mechanism for marshalling sigslot::signals
1090 std::unique_ptr<rtc::AsyncInvoker> sctp_invoker_;
1091 sigslot::signal1<bool> SignalSctpReadyToSendData;
1092 sigslot::signal2<const cricket::ReceiveDataParams&,
1093 const rtc::CopyOnWriteBuffer&>
1094 SignalSctpDataReceived;
Taylor Brandstettercdd05f02018-05-31 13:23:32 -07001095 sigslot::signal1<int> SignalSctpClosingProcedureStartedRemotely;
1096 sigslot::signal1<int> SignalSctpClosingProcedureComplete;
Steve Anton75737c02017-11-06 10:37:17 -08001097
Bjorn Mellem175aa2e2018-11-08 11:23:22 -08001098 // Whether this peer is the caller. Set when the local description is applied.
1099 absl::optional<bool> is_caller_ RTC_GUARDED_BY(signaling_thread());
1100
1101 // Content name (MID) for media transport data channels in SDP.
1102 absl::optional<std::string> media_transport_data_mid_;
1103
1104 // Media transport used for data channels. Thread-safe.
1105 MediaTransportInterface* media_transport_ = nullptr;
1106
1107 // Cached value of whether the media transport is ready to send.
1108 bool media_transport_ready_to_send_data_ RTC_GUARDED_BY(signaling_thread()) =
1109 false;
1110
1111 // Used to invoke media transport signals on the signaling thread.
1112 std::unique_ptr<rtc::AsyncInvoker> media_transport_invoker_;
1113
1114 // Identical to the signals for SCTP, but from media transport:
1115 sigslot::signal1<bool> SignalMediaTransportWritable_s
1116 RTC_GUARDED_BY(signaling_thread());
1117 sigslot::signal2<const cricket::ReceiveDataParams&,
1118 const rtc::CopyOnWriteBuffer&>
1119 SignalMediaTransportReceivedData_s RTC_GUARDED_BY(signaling_thread());
1120 sigslot::signal1<int> SignalMediaTransportChannelClosing_s
1121 RTC_GUARDED_BY(signaling_thread());
1122 sigslot::signal1<int> SignalMediaTransportChannelClosed_s
1123 RTC_GUARDED_BY(signaling_thread());
1124
Steve Anton75737c02017-11-06 10:37:17 -08001125 std::unique_ptr<SessionDescriptionInterface> current_local_description_;
1126 std::unique_ptr<SessionDescriptionInterface> pending_local_description_;
1127 std::unique_ptr<SessionDescriptionInterface> current_remote_description_;
1128 std::unique_ptr<SessionDescriptionInterface> pending_remote_description_;
1129 bool dtls_enabled_ = false;
1130 // Specifies which kind of data channel is allowed. This is controlled
1131 // by the chrome command-line flag and constraints:
1132 // 1. If chrome command-line switch 'enable-sctp-data-channels' is enabled,
1133 // constraint kEnableDtlsSrtp is true, and constaint kEnableRtpDataChannels is
1134 // not set or false, SCTP is allowed (DCT_SCTP);
1135 // 2. If constraint kEnableRtpDataChannels is true, RTP is allowed (DCT_RTP);
1136 // 3. If both 1&2 are false, data channel is not allowed (DCT_NONE).
1137 cricket::DataChannelType data_channel_type_ = cricket::DCT_NONE;
1138 // List of content names for which the remote side triggered an ICE restart.
1139 std::set<std::string> pending_ice_restarts_;
1140
1141 std::unique_ptr<WebRtcSessionDescriptionFactory> webrtc_session_desc_factory_;
1142
1143 // Member variables for caching global options.
1144 cricket::AudioOptions audio_options_;
1145 cricket::VideoOptions video_options_;
Harald Alvestrand8ebba742018-05-31 14:00:34 +02001146
1147 int usage_event_accumulator_ = 0;
Harald Alvestrand19793842018-06-25 12:03:50 +02001148 bool return_histogram_very_quickly_ = false;
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001149};
1150
1151} // namespace webrtc
1152
Mirko Bonadei92ea95e2017-09-15 06:47:31 +02001153#endif // PC_PEERCONNECTION_H_