blob: 06404588d22f60667495af95a724f9dc2c3113db [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
Steve Anton10542f22019-01-11 09:11:00 -080011#ifndef PC_PEER_CONNECTION_H_
12#define PC_PEER_CONNECTION_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"
Steve Anton10542f22019-01-11 09:11:00 -080021#include "api/peer_connection_interface.h"
22#include "api/turn_customizer.h"
23#include "pc/ice_server_parsing.h"
24#include "pc/jsep_transport_controller.h"
25#include "pc/peer_connection_factory.h"
26#include "pc/peer_connection_internal.h"
27#include "pc/rtc_stats_collector.h"
28#include "pc/rtp_transceiver.h"
29#include "pc/stats_collector.h"
30#include "pc/stream_collection.h"
Steve Anton10542f22019-01-11 09:11:00 -080031#include "pc/webrtc_session_description_factory.h"
Amit Hilbuchdbb49df2019-01-23 14:54:24 -080032#include "rtc_base/unique_id_generator.h"
henrike@webrtc.org28e20752013-07-10 00:45:36 +000033
34namespace webrtc {
henrike@webrtc.org28e20752013-07-10 00:45:36 +000035
deadbeefeb459812015-12-15 19:24:43 -080036class MediaStreamObserver;
perkjf0dcfe22016-03-10 18:32:00 +010037class VideoRtpReceiver;
skvlad11a9cbf2016-10-07 11:53:05 -070038class RtcEventLog;
deadbeefab9b2d12015-10-14 11:33:11 -070039
Steve Anton75737c02017-11-06 10:37:17 -080040// PeerConnection is the implementation of the PeerConnection object as defined
41// by the PeerConnectionInterface API surface.
42// The class currently is solely responsible for the following:
43// - Managing the session state machine (signaling state).
44// - Creating and initializing lower-level objects, like PortAllocator and
45// BaseChannels.
46// - Owning and managing the life cycle of the RtpSender/RtpReceiver and track
47// objects.
48// - Tracking the current and pending local/remote session descriptions.
49// The class currently is jointly responsible for the following:
50// - Parsing and interpreting SDP.
51// - Generating offers and answers based on the current state.
52// - The ICE state machine.
53// - Generating stats.
Steve Anton2d8609c2018-01-23 16:38:46 -080054class PeerConnection : public PeerConnectionInternal,
Steve Anton75737c02017-11-06 10:37:17 -080055 public DataChannelProviderInterface,
Bjorn Mellem175aa2e2018-11-08 11:23:22 -080056 public DataChannelSink,
Zhi Huang365381f2018-04-13 16:44:34 -070057 public JsepTransportController::Observer,
Steve Antonad182762018-09-05 20:22:40 +000058 public rtc::MessageHandler,
henrike@webrtc.org28e20752013-07-10 00:45:36 +000059 public sigslot::has_slots<> {
60 public:
Harald Alvestrand8ebba742018-05-31 14:00:34 +020061 enum class UsageEvent : int {
62 TURN_SERVER_ADDED = 0x01,
63 STUN_SERVER_ADDED = 0x02,
64 DATA_ADDED = 0x04,
65 AUDIO_ADDED = 0x08,
66 VIDEO_ADDED = 0x10,
67 SET_LOCAL_DESCRIPTION_CALLED = 0x20,
68 SET_REMOTE_DESCRIPTION_CALLED = 0x40,
69 CANDIDATE_COLLECTED = 0x80,
70 REMOTE_CANDIDATE_ADDED = 0x100,
71 ICE_STATE_CONNECTED = 0x200,
Qingsi Wang7fc821d2018-07-12 12:54:53 -070072 CLOSE_CALLED = 0x400,
Harald Alvestrand056d8112018-07-16 19:18:58 +020073 PRIVATE_CANDIDATE_COLLECTED = 0x800,
74 MAX_VALUE = 0x1000,
Harald Alvestrand8ebba742018-05-31 14:00:34 +020075 };
76
zhihuang38ede132017-06-15 12:52:32 -070077 explicit PeerConnection(PeerConnectionFactory* factory,
78 std::unique_ptr<RtcEventLog> event_log,
79 std::unique_ptr<Call> call);
henrike@webrtc.org28e20752013-07-10 00:45:36 +000080
deadbeef653b8e02015-11-11 12:55:10 -080081 bool Initialize(
82 const PeerConnectionInterface::RTCConfiguration& configuration,
Benjamin Wrightcab58882018-05-02 15:12:47 -070083 PeerConnectionDependencies dependencies);
deadbeef653b8e02015-11-11 12:55:10 -080084
deadbeefa67696b2015-09-29 11:56:26 -070085 rtc::scoped_refptr<StreamCollectionInterface> local_streams() override;
86 rtc::scoped_refptr<StreamCollectionInterface> remote_streams() override;
87 bool AddStream(MediaStreamInterface* local_stream) override;
88 void RemoveStream(MediaStreamInterface* local_stream) override;
henrike@webrtc.org28e20752013-07-10 00:45:36 +000089
Steve Anton2d6c76a2018-01-05 17:10:52 -080090 RTCErrorOr<rtc::scoped_refptr<RtpSenderInterface>> AddTrack(
Steve Antonf9381f02017-12-14 10:23:57 -080091 rtc::scoped_refptr<MediaStreamTrackInterface> track,
Seth Hampson845e8782018-03-02 11:34:10 -080092 const std::vector<std::string>& stream_ids) override;
deadbeefe1f9d832016-01-14 15:35:42 -080093 bool RemoveTrack(RtpSenderInterface* sender) override;
Steve Anton24db5732018-07-23 10:27:33 -070094 RTCError RemoveTrackNew(
95 rtc::scoped_refptr<RtpSenderInterface> sender) override;
deadbeefe1f9d832016-01-14 15:35:42 -080096
Steve Anton9158ef62017-11-27 13:01:52 -080097 RTCErrorOr<rtc::scoped_refptr<RtpTransceiverInterface>> AddTransceiver(
98 rtc::scoped_refptr<MediaStreamTrackInterface> track) override;
99 RTCErrorOr<rtc::scoped_refptr<RtpTransceiverInterface>> AddTransceiver(
100 rtc::scoped_refptr<MediaStreamTrackInterface> track,
101 const RtpTransceiverInit& init) override;
102 RTCErrorOr<rtc::scoped_refptr<RtpTransceiverInterface>> AddTransceiver(
103 cricket::MediaType media_type) override;
104 RTCErrorOr<rtc::scoped_refptr<RtpTransceiverInterface>> AddTransceiver(
105 cricket::MediaType media_type,
106 const RtpTransceiverInit& init) override;
107
Steve Anton8c0f7a72017-10-03 10:03:10 -0700108 // Gets the DTLS SSL certificate associated with the audio transport on the
109 // remote side. This will become populated once the DTLS connection with the
110 // peer has been completed, as indicated by the ICE connection state
111 // transitioning to kIceConnectionCompleted.
112 // Note that this will be removed once we implement RTCDtlsTransport which
113 // has standardized method for getting this information.
114 // See https://www.w3.org/TR/webrtc/#rtcdtlstransport-interface
115 std::unique_ptr<rtc::SSLCertificate> GetRemoteAudioSSLCertificate();
116
Zhi Huang70b820f2018-01-27 14:16:15 -0800117 // Version of the above method that returns the full certificate chain.
118 std::unique_ptr<rtc::SSLCertChain> GetRemoteAudioSSLCertChain();
119
deadbeeffac06552015-11-25 11:26:01 -0800120 rtc::scoped_refptr<RtpSenderInterface> CreateSender(
deadbeefbd7d8f72015-12-18 16:58:44 -0800121 const std::string& kind,
122 const std::string& stream_id) override;
deadbeeffac06552015-11-25 11:26:01 -0800123
deadbeef70ab1a12015-09-28 16:53:55 -0700124 std::vector<rtc::scoped_refptr<RtpSenderInterface>> GetSenders()
125 const override;
126 std::vector<rtc::scoped_refptr<RtpReceiverInterface>> GetReceivers()
127 const override;
Steve Anton9158ef62017-11-27 13:01:52 -0800128 std::vector<rtc::scoped_refptr<RtpTransceiverInterface>> GetTransceivers()
129 const override;
deadbeef70ab1a12015-09-28 16:53:55 -0700130
deadbeefa67696b2015-09-29 11:56:26 -0700131 rtc::scoped_refptr<DataChannelInterface> CreateDataChannel(
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000132 const std::string& label,
deadbeefa67696b2015-09-29 11:56:26 -0700133 const DataChannelInit* config) override;
Henrik Boström1df1bf82018-03-20 13:24:20 +0100134 // WARNING: LEGACY. See peerconnectioninterface.h
deadbeefa67696b2015-09-29 11:56:26 -0700135 bool GetStats(StatsObserver* observer,
136 webrtc::MediaStreamTrackInterface* track,
137 StatsOutputLevel level) override;
Henrik Boström1df1bf82018-03-20 13:24:20 +0100138 // Spec-complaint GetStats(). See peerconnectioninterface.h
hbos74e1a4f2016-09-15 23:33:01 -0700139 void GetStats(RTCStatsCollectorCallback* callback) override;
Henrik Boström1df1bf82018-03-20 13:24:20 +0100140 void GetStats(
141 rtc::scoped_refptr<RtpSenderInterface> selector,
142 rtc::scoped_refptr<RTCStatsCollectorCallback> callback) override;
143 void GetStats(
144 rtc::scoped_refptr<RtpReceiverInterface> selector,
145 rtc::scoped_refptr<RTCStatsCollectorCallback> callback) override;
Harald Alvestrand89061872018-01-02 14:08:34 +0100146 void ClearStatsCache() override;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000147
deadbeefa67696b2015-09-29 11:56:26 -0700148 SignalingState signaling_state() override;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000149
deadbeefa67696b2015-09-29 11:56:26 -0700150 IceConnectionState ice_connection_state() override;
Jonas Olsson12046902018-12-06 11:25:14 +0100151 IceConnectionState standardized_ice_connection_state() override;
Jonas Olsson635474e2018-10-18 15:58:17 +0200152 PeerConnectionState peer_connection_state() override;
deadbeefa67696b2015-09-29 11:56:26 -0700153 IceGatheringState ice_gathering_state() override;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000154
deadbeefa67696b2015-09-29 11:56:26 -0700155 const SessionDescriptionInterface* local_description() const override;
156 const SessionDescriptionInterface* remote_description() const override;
deadbeeffe4a8a42016-12-20 17:56:17 -0800157 const SessionDescriptionInterface* current_local_description() const override;
158 const SessionDescriptionInterface* current_remote_description()
159 const override;
160 const SessionDescriptionInterface* pending_local_description() const override;
161 const SessionDescriptionInterface* pending_remote_description()
162 const override;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000163
164 // JSEP01
deadbeefa67696b2015-09-29 11:56:26 -0700165 void CreateOffer(CreateSessionDescriptionObserver* observer,
166 const RTCOfferAnswerOptions& options) override;
htaa2a49d92016-03-04 02:51:39 -0800167 void CreateAnswer(CreateSessionDescriptionObserver* observer,
168 const RTCOfferAnswerOptions& options) override;
deadbeefa67696b2015-09-29 11:56:26 -0700169 void SetLocalDescription(SetSessionDescriptionObserver* observer,
170 SessionDescriptionInterface* desc) override;
Henrik Boströma4ecf552017-11-23 14:17:07 +0000171 void SetRemoteDescription(SetSessionDescriptionObserver* observer,
172 SessionDescriptionInterface* desc) override;
Henrik Boström31638672017-11-23 17:48:32 +0100173 void SetRemoteDescription(
174 std::unique_ptr<SessionDescriptionInterface> desc,
175 rtc::scoped_refptr<SetRemoteDescriptionObserverInterface> observer)
176 override;
deadbeef46c73892016-11-16 19:42:04 -0800177 PeerConnectionInterface::RTCConfiguration GetConfiguration() override;
deadbeefa67696b2015-09-29 11:56:26 -0700178 bool SetConfiguration(
deadbeef293e9262017-01-11 12:28:30 -0800179 const PeerConnectionInterface::RTCConfiguration& configuration,
180 RTCError* error) override;
181 bool SetConfiguration(
182 const PeerConnectionInterface::RTCConfiguration& configuration) override {
183 return SetConfiguration(configuration, nullptr);
184 }
deadbeefa67696b2015-09-29 11:56:26 -0700185 bool AddIceCandidate(const IceCandidateInterface* candidate) override;
Honghai Zhang7fb69db2016-03-14 11:59:18 -0700186 bool RemoveIceCandidates(
187 const std::vector<cricket::Candidate>& candidates) override;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000188
Niels Möller0c4f7be2018-05-07 14:01:37 +0200189 RTCError SetBitrate(const BitrateSettings& bitrate) override;
zstein4b979802017-06-02 14:37:37 -0700190
Alex Narest78609d52017-10-20 10:37:47 +0200191 void SetBitrateAllocationStrategy(
192 std::unique_ptr<rtc::BitrateAllocationStrategy>
193 bitrate_allocation_strategy) override;
194
henrika5f6bf242017-11-01 11:06:56 +0100195 void SetAudioPlayout(bool playout) override;
196 void SetAudioRecording(bool recording) override;
197
Harald Alvestrandad88c882018-11-28 16:47:46 +0100198 rtc::scoped_refptr<DtlsTransportInterface> LookupDtlsTransportByMid(
199 const std::string& mid) override;
Harald Alvestrand4a7b3ac2019-01-17 10:39:40 +0100200 rtc::scoped_refptr<DtlsTransport> LookupDtlsTransportByMidInternal(
201 const std::string& mid);
Harald Alvestrandad88c882018-11-28 16:47:46 +0100202
Elad Alon99c3fe52017-10-13 16:29:40 +0200203 RTC_DEPRECATED bool StartRtcEventLog(rtc::PlatformFile file,
204 int64_t max_size_bytes) override;
Bjorn Tereliusde939432017-11-20 17:38:14 +0100205 bool StartRtcEventLog(std::unique_ptr<RtcEventLogOutput> output,
206 int64_t output_period_ms) override;
ivoc14d5dbe2016-07-04 07:06:55 -0700207 void StopRtcEventLog() override;
208
deadbeefa67696b2015-09-29 11:56:26 -0700209 void Close() override;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000210
Steve Anton2d8609c2018-01-23 16:38:46 -0800211 // PeerConnectionInternal implementation.
212 rtc::Thread* network_thread() const override {
213 return factory_->network_thread();
214 }
215 rtc::Thread* worker_thread() const override {
216 return factory_->worker_thread();
217 }
218 rtc::Thread* signaling_thread() const override {
219 return factory_->signaling_thread();
perkjd61bf802016-03-24 03:16:19 -0700220 }
deadbeefab9b2d12015-10-14 11:33:11 -0700221
Steve Antonbe5e2082018-01-24 15:29:17 -0800222 std::string session_id() const override { return session_id_; }
Steve Anton75737c02017-11-06 10:37:17 -0800223
Steve Anton2d8609c2018-01-23 16:38:46 -0800224 bool initial_offerer() const override {
Zhi Huange830e682018-03-30 10:48:35 -0700225 return transport_controller_ && transport_controller_->initial_offerer();
Steve Anton2d8609c2018-01-23 16:38:46 -0800226 }
Steve Anton75737c02017-11-06 10:37:17 -0800227
Steve Anton2d8609c2018-01-23 16:38:46 -0800228 std::vector<
229 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>>
Steve Antonb8867112018-02-13 10:07:54 -0800230 GetTransceiversInternal() const override {
Steve Anton2d8609c2018-01-23 16:38:46 -0800231 return transceivers_;
232 }
233
Steve Antona41959e2018-11-28 11:15:33 -0800234 absl::string_view GetLocalTrackIdBySsrc(uint32_t ssrc) override;
235 absl::string_view GetRemoteTrackIdBySsrc(uint32_t ssrc) override;
Steve Anton2d8609c2018-01-23 16:38:46 -0800236
237 sigslot::signal1<DataChannel*>& SignalDataChannelCreated() override {
238 return SignalDataChannelCreated_;
239 }
240
241 cricket::RtpDataChannel* rtp_data_channel() const override {
Steve Anton75737c02017-11-06 10:37:17 -0800242 return rtp_data_channel_;
Steve Anton978b8762017-09-29 12:15:02 -0700243 }
Steve Anton2d8609c2018-01-23 16:38:46 -0800244
Steve Antonbe5e2082018-01-24 15:29:17 -0800245 std::vector<rtc::scoped_refptr<DataChannel>> sctp_data_channels()
Steve Anton2d8609c2018-01-23 16:38:46 -0800246 const override {
247 return sctp_data_channels_;
248 }
249
Danil Chapovalov66cadcc2018-06-19 16:47:43 +0200250 absl::optional<std::string> sctp_content_name() const override {
Zhi Huange830e682018-03-30 10:48:35 -0700251 return sctp_mid_;
Steve Anton75737c02017-11-06 10:37:17 -0800252 }
Steve Anton2d8609c2018-01-23 16:38:46 -0800253
Danil Chapovalov66cadcc2018-06-19 16:47:43 +0200254 absl::optional<std::string> sctp_transport_name() const override;
Steve Anton75737c02017-11-06 10:37:17 -0800255
Qingsi Wang72a43a12018-02-20 16:03:18 -0800256 cricket::CandidateStatsList GetPooledCandidateStats() const override;
Steve Anton5dfde182018-02-06 10:34:40 -0800257 std::map<std::string, std::string> GetTransportNamesByMid() const override;
258 std::map<std::string, cricket::TransportStats> GetTransportStatsByNames(
259 const std::set<std::string>& transport_names) override;
Steve Anton2d8609c2018-01-23 16:38:46 -0800260 Call::Stats GetCallStats() override;
Steve Anton75737c02017-11-06 10:37:17 -0800261
Steve Anton2d8609c2018-01-23 16:38:46 -0800262 bool GetLocalCertificate(
263 const std::string& transport_name,
264 rtc::scoped_refptr<rtc::RTCCertificate>* certificate) override;
Taylor Brandstetterc3928662018-02-23 13:04:51 -0800265 std::unique_ptr<rtc::SSLCertChain> GetRemoteSSLCertChain(
Steve Anton2d8609c2018-01-23 16:38:46 -0800266 const std::string& transport_name) override;
267 bool IceRestartPending(const std::string& content_name) const override;
268 bool NeedsIceRestart(const std::string& content_name) const override;
269 bool GetSslRole(const std::string& content_name, rtc::SSLRole* role) override;
Steve Anton7464fca2018-01-19 11:10:37 -0800270
Harald Alvestrand19793842018-06-25 12:03:50 +0200271 void ReturnHistogramVeryQuicklyForTesting() {
272 return_histogram_very_quickly_ = true;
273 }
Harald Alvestrand7a1c7f72018-08-01 10:50:16 +0200274 void RequestUsagePatternReportForTesting();
Harald Alvestrand19793842018-06-25 12:03:50 +0200275
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000276 protected:
deadbeefa67696b2015-09-29 11:56:26 -0700277 ~PeerConnection() override;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000278
279 private:
Henrik Boström31638672017-11-23 17:48:32 +0100280 class SetRemoteDescriptionObserverAdapter;
281 friend class SetRemoteDescriptionObserverAdapter;
282
Steve Anton4171afb2017-11-20 10:20:22 -0800283 struct RtpSenderInfo {
284 RtpSenderInfo() : first_ssrc(0) {}
Seth Hampson845e8782018-03-02 11:34:10 -0800285 RtpSenderInfo(const std::string& stream_id,
Steve Anton4171afb2017-11-20 10:20:22 -0800286 const std::string sender_id,
287 uint32_t ssrc)
Seth Hampson845e8782018-03-02 11:34:10 -0800288 : stream_id(stream_id), sender_id(sender_id), first_ssrc(ssrc) {}
Steve Anton4171afb2017-11-20 10:20:22 -0800289 bool operator==(const RtpSenderInfo& other) {
Seth Hampson845e8782018-03-02 11:34:10 -0800290 return this->stream_id == other.stream_id &&
Steve Anton4171afb2017-11-20 10:20:22 -0800291 this->sender_id == other.sender_id &&
292 this->first_ssrc == other.first_ssrc;
deadbeefbda7e0b2015-12-08 17:13:40 -0800293 }
Seth Hampson845e8782018-03-02 11:34:10 -0800294 std::string stream_id;
Steve Anton4171afb2017-11-20 10:20:22 -0800295 std::string sender_id;
296 // An RtpSender can have many SSRCs. The first one is used as a sort of ID
297 // for communicating with the lower layers.
298 uint32_t first_ssrc;
deadbeefab9b2d12015-10-14 11:33:11 -0700299 };
deadbeefab9b2d12015-10-14 11:33:11 -0700300
Steve Antonad182762018-09-05 20:22:40 +0000301 // Implements MessageHandler.
302 void OnMessage(rtc::Message* msg) override;
303
Steve Antonafb0bb72018-02-20 11:35:37 -0800304 // Plan B helpers for getting the voice/video media channels for the single
305 // audio/video transceiver, if it exists.
306 cricket::VoiceMediaChannel* voice_media_channel() const;
307 cricket::VideoMediaChannel* video_media_channel() const;
Steve Anton60776752018-01-10 11:51:34 -0800308
Steve Anton4171afb2017-11-20 10:20:22 -0800309 std::vector<rtc::scoped_refptr<RtpSenderProxyWithInternal<RtpSenderInternal>>>
310 GetSendersInternal() const;
311 std::vector<
312 rtc::scoped_refptr<RtpReceiverProxyWithInternal<RtpReceiverInternal>>>
313 GetReceiversInternal() const;
314
315 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
316 GetAudioTransceiver() const;
317 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
318 GetVideoTransceiver() const;
319
Steve Antonafb0bb72018-02-20 11:35:37 -0800320 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
321 GetFirstAudioTransceiver() const;
322
deadbeefab9b2d12015-10-14 11:33:11 -0700323 void CreateAudioReceiver(MediaStreamInterface* stream,
Karl Wiberg744310f2019-02-14 10:18:56 +0100324 const RtpSenderInfo& remote_sender_info)
325 RTC_RUN_ON(signaling_thread());
perkjf0dcfe22016-03-10 18:32:00 +0100326
deadbeefab9b2d12015-10-14 11:33:11 -0700327 void CreateVideoReceiver(MediaStreamInterface* stream,
Karl Wiberg744310f2019-02-14 10:18:56 +0100328 const RtpSenderInfo& remote_sender_info)
329 RTC_RUN_ON(signaling_thread());
Henrik Boström933d8b02017-10-10 10:05:16 -0700330 rtc::scoped_refptr<RtpReceiverInterface> RemoveAndStopReceiver(
Steve Anton4171afb2017-11-20 10:20:22 -0800331 const RtpSenderInfo& remote_sender_info);
korniltsev.anatolyec390b52017-07-24 17:00:25 -0700332
333 // May be called either by AddStream/RemoveStream, or when a track is
334 // added/removed from a stream previously added via AddStream.
335 void AddAudioTrack(AudioTrackInterface* track, MediaStreamInterface* stream);
336 void RemoveAudioTrack(AudioTrackInterface* track,
337 MediaStreamInterface* stream);
338 void AddVideoTrack(VideoTrackInterface* track, MediaStreamInterface* stream);
339 void RemoveVideoTrack(VideoTrackInterface* track,
340 MediaStreamInterface* stream);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000341
Steve Antonf9381f02017-12-14 10:23:57 -0800342 // AddTrack implementation when Unified Plan is specified.
343 RTCErrorOr<rtc::scoped_refptr<RtpSenderInterface>> AddTrackUnifiedPlan(
344 rtc::scoped_refptr<MediaStreamTrackInterface> track,
Seth Hampson845e8782018-03-02 11:34:10 -0800345 const std::vector<std::string>& stream_ids);
Steve Antonf9381f02017-12-14 10:23:57 -0800346 // AddTrack implementation when Plan B is specified.
347 RTCErrorOr<rtc::scoped_refptr<RtpSenderInterface>> AddTrackPlanB(
348 rtc::scoped_refptr<MediaStreamTrackInterface> track,
Seth Hampson845e8782018-03-02 11:34:10 -0800349 const std::vector<std::string>& stream_ids);
Steve Antonf9381f02017-12-14 10:23:57 -0800350
351 // Returns the first RtpTransceiver suitable for a newly added track, if such
352 // transceiver is available.
353 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
354 FindFirstTransceiverForAddedTrack(
355 rtc::scoped_refptr<MediaStreamTrackInterface> track);
356
Steve Antonf9381f02017-12-14 10:23:57 -0800357 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
358 FindTransceiverBySender(rtc::scoped_refptr<RtpSenderInterface> sender);
359
Steve Anton22da89f2018-01-25 13:58:07 -0800360 // Internal implementation for AddTransceiver family of methods. If
361 // |fire_callback| is set, fires OnRenegotiationNeeded callback if successful.
Steve Anton9158ef62017-11-27 13:01:52 -0800362 RTCErrorOr<rtc::scoped_refptr<RtpTransceiverInterface>> AddTransceiver(
363 cricket::MediaType media_type,
364 rtc::scoped_refptr<MediaStreamTrackInterface> track,
Steve Anton22da89f2018-01-25 13:58:07 -0800365 const RtpTransceiverInit& init,
Karl Wiberg744310f2019-02-14 10:18:56 +0100366 bool fire_callback = true) RTC_RUN_ON(signaling_thread());
Steve Anton9158ef62017-11-27 13:01:52 -0800367
Steve Anton02ee47c2018-01-10 16:26:06 -0800368 rtc::scoped_refptr<RtpSenderProxyWithInternal<RtpSenderInternal>>
369 CreateSender(cricket::MediaType media_type,
Steve Anton111fdfd2018-06-25 13:03:36 -0700370 const std::string& id,
Steve Anton02ee47c2018-01-10 16:26:06 -0800371 rtc::scoped_refptr<MediaStreamTrackInterface> track,
Florent Castelli892acf02018-10-01 22:47:20 +0200372 const std::vector<std::string>& stream_ids,
373 const std::vector<RtpEncodingParameters>& send_encodings);
Steve Anton02ee47c2018-01-10 16:26:06 -0800374
375 rtc::scoped_refptr<RtpReceiverProxyWithInternal<RtpReceiverInternal>>
376 CreateReceiver(cricket::MediaType media_type, const std::string& receiver_id);
377
Steve Antonf9381f02017-12-14 10:23:57 -0800378 // Create a new RtpTransceiver of the given type and add it to the list of
379 // transceivers.
380 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
Steve Anton02ee47c2018-01-10 16:26:06 -0800381 CreateAndAddTransceiver(
382 rtc::scoped_refptr<RtpSenderProxyWithInternal<RtpSenderInternal>> sender,
383 rtc::scoped_refptr<RtpReceiverProxyWithInternal<RtpReceiverInternal>>
384 receiver);
Steve Antonf9381f02017-12-14 10:23:57 -0800385
Karl Wiberg744310f2019-02-14 10:18:56 +0100386 void SetIceConnectionState(IceConnectionState new_state)
387 RTC_RUN_ON(signaling_thread());
Jonas Olsson635474e2018-10-18 15:58:17 +0200388 void SetStandardizedIceConnectionState(
Karl Wiberg744310f2019-02-14 10:18:56 +0100389 PeerConnectionInterface::IceConnectionState new_state)
390 RTC_RUN_ON(signaling_thread());
Jonas Olsson635474e2018-10-18 15:58:17 +0200391 void SetConnectionState(
Karl Wiberg744310f2019-02-14 10:18:56 +0100392 PeerConnectionInterface::PeerConnectionState new_state)
393 RTC_RUN_ON(signaling_thread());
Jonas Olsson635474e2018-10-18 15:58:17 +0200394
Steve Antonba818672017-11-06 10:21:57 -0800395 // Called any time the IceGatheringState changes
Karl Wiberg744310f2019-02-14 10:18:56 +0100396 void OnIceGatheringChange(IceGatheringState new_state)
397 RTC_RUN_ON(signaling_thread());
Steve Antonba818672017-11-06 10:21:57 -0800398 // New ICE candidate has been gathered.
Karl Wiberg744310f2019-02-14 10:18:56 +0100399 void OnIceCandidate(std::unique_ptr<IceCandidateInterface> candidate)
400 RTC_RUN_ON(signaling_thread());
Steve Antonba818672017-11-06 10:21:57 -0800401 // Some local ICE candidates have been removed.
Karl Wiberg744310f2019-02-14 10:18:56 +0100402 void OnIceCandidatesRemoved(const std::vector<cricket::Candidate>& candidates)
403 RTC_RUN_ON(signaling_thread());
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000404
Steve Antonba818672017-11-06 10:21:57 -0800405 // Update the state, signaling if necessary.
Karl Wiberg744310f2019-02-14 10:18:56 +0100406 void ChangeSignalingState(SignalingState signaling_state)
407 RTC_RUN_ON(signaling_thread());
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000408
deadbeefeb459812015-12-15 19:24:43 -0800409 // Signals from MediaStreamObserver.
410 void OnAudioTrackAdded(AudioTrackInterface* track,
Karl Wiberg744310f2019-02-14 10:18:56 +0100411 MediaStreamInterface* stream)
412 RTC_RUN_ON(signaling_thread());
deadbeefeb459812015-12-15 19:24:43 -0800413 void OnAudioTrackRemoved(AudioTrackInterface* track,
Karl Wiberg744310f2019-02-14 10:18:56 +0100414 MediaStreamInterface* stream)
415 RTC_RUN_ON(signaling_thread());
deadbeefeb459812015-12-15 19:24:43 -0800416 void OnVideoTrackAdded(VideoTrackInterface* track,
Karl Wiberg744310f2019-02-14 10:18:56 +0100417 MediaStreamInterface* stream)
418 RTC_RUN_ON(signaling_thread());
deadbeefeb459812015-12-15 19:24:43 -0800419 void OnVideoTrackRemoved(VideoTrackInterface* track,
Karl Wiberg744310f2019-02-14 10:18:56 +0100420 MediaStreamInterface* stream)
421 RTC_RUN_ON(signaling_thread());
deadbeefeb459812015-12-15 19:24:43 -0800422
Henrik Boström31638672017-11-23 17:48:32 +0100423 void PostSetSessionDescriptionSuccess(
424 SetSessionDescriptionObserver* observer);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000425 void PostSetSessionDescriptionFailure(SetSessionDescriptionObserver* observer,
Steve Antonad182762018-09-05 20:22:40 +0000426 RTCError&& error);
deadbeefab9b2d12015-10-14 11:33:11 -0700427 void PostCreateSessionDescriptionFailure(
428 CreateSessionDescriptionObserver* observer,
Harald Alvestrand5081c0c2018-03-09 15:18:03 +0100429 RTCError error);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000430
Steve Anton8a006912017-12-04 15:25:56 -0800431 // Synchronous implementations of SetLocalDescription/SetRemoteDescription
432 // that return an RTCError instead of invoking a callback.
433 RTCError ApplyLocalDescription(
434 std::unique_ptr<SessionDescriptionInterface> desc);
435 RTCError ApplyRemoteDescription(
436 std::unique_ptr<SessionDescriptionInterface> desc);
437
Steve Antondcc3c022017-12-22 16:02:54 -0800438 // Updates the local RtpTransceivers according to the JSEP rules. Called as
439 // part of setting the local/remote description.
440 RTCError UpdateTransceiversAndDataChannels(
441 cricket::ContentSource source,
Seth Hampsonae8a90a2018-02-13 15:33:48 -0800442 const SessionDescriptionInterface& new_session,
443 const SessionDescriptionInterface* old_local_description,
Karl Wiberg106d92d2019-02-14 10:17:47 +0100444 const SessionDescriptionInterface* old_remote_description)
445 RTC_RUN_ON(signaling_thread());
Steve Antondcc3c022017-12-22 16:02:54 -0800446
447 // Either creates or destroys the transceiver's BaseChannel according to the
448 // given media section.
449 RTCError UpdateTransceiverChannel(
450 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
451 transceiver,
452 const cricket::ContentInfo& content,
453 const cricket::ContentGroup* bundle_group);
454
Steve Antonfa2260d2017-12-28 16:38:23 -0800455 // Either creates or destroys the local data channel according to the given
456 // media section.
457 RTCError UpdateDataChannel(cricket::ContentSource source,
458 const cricket::ContentInfo& content,
Karl Wiberg106d92d2019-02-14 10:17:47 +0100459 const cricket::ContentGroup* bundle_group)
460 RTC_RUN_ON(signaling_thread());
Steve Antonfa2260d2017-12-28 16:38:23 -0800461
Steve Antondcc3c022017-12-22 16:02:54 -0800462 // Associate the given transceiver according to the JSEP rules.
463 RTCErrorOr<
464 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>>
465 AssociateTransceiver(cricket::ContentSource source,
Seth Hampsonae8a90a2018-02-13 15:33:48 -0800466 SdpType type,
Steve Antondcc3c022017-12-22 16:02:54 -0800467 size_t mline_index,
468 const cricket::ContentInfo& content,
Seth Hampsonae8a90a2018-02-13 15:33:48 -0800469 const cricket::ContentInfo* old_local_content,
470 const cricket::ContentInfo* old_remote_content);
Steve Antondcc3c022017-12-22 16:02:54 -0800471
472 // Returns the RtpTransceiver, if found, that is associated to the given MID.
473 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
474 GetAssociatedTransceiver(const std::string& mid) const;
475
476 // Returns the RtpTransceiver, if found, that was assigned to the given mline
477 // index in CreateOffer.
478 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
479 GetTransceiverByMLineIndex(size_t mline_index) const;
480
481 // Returns an RtpTransciever, if available, that can be used to receive the
482 // given media type according to JSEP rules.
483 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
484 FindAvailableTransceiverToReceive(cricket::MediaType media_type) const;
485
Steve Antoned10bd92017-12-05 10:52:59 -0800486 // Returns the media section in the given session description that is
487 // associated with the RtpTransceiver. Returns null if none found or this
488 // RtpTransceiver is not associated. Logic varies depending on the
489 // SdpSemantics specified in the configuration.
490 const cricket::ContentInfo* FindMediaSectionForTransceiver(
491 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
492 transceiver,
493 const SessionDescriptionInterface* sdesc) const;
494
Henrik Boströmafa07dd2018-12-20 11:06:02 +0100495 // Runs the algorithm **set the associated remote streams** specified in
496 // https://w3c.github.io/webrtc-pc/#set-associated-remote-streams.
497 void SetAssociatedRemoteStreams(
498 rtc::scoped_refptr<RtpReceiverInternal> receiver,
499 const std::vector<std::string>& stream_ids,
500 std::vector<rtc::scoped_refptr<MediaStreamInterface>>* added_streams,
501 std::vector<rtc::scoped_refptr<MediaStreamInterface>>* removed_streams);
502
Steve Anton0f5400a2018-07-17 14:25:36 -0700503 // Runs the algorithm **process the removal of a remote track** specified in
504 // the WebRTC specification.
505 // This method will update the following lists:
506 // |remove_list| is the list of transceivers for which the receiving track is
507 // being removed.
508 // |removed_streams| is the list of streams which no longer have a receiving
509 // track so should be removed.
510 // https://w3c.github.io/webrtc-pc/#process-remote-track-removal
511 void ProcessRemovalOfRemoteTrack(
512 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
513 transceiver,
514 std::vector<rtc::scoped_refptr<RtpTransceiverInterface>>* remove_list,
515 std::vector<rtc::scoped_refptr<MediaStreamInterface>>* removed_streams);
516
Henrik Boströmafa07dd2018-12-20 11:06:02 +0100517 void RemoveRemoteStreamsIfEmpty(
518 const std::vector<rtc::scoped_refptr<MediaStreamInterface>>&
519 remote_streams,
520 std::vector<rtc::scoped_refptr<MediaStreamInterface>>* removed_streams);
521
Steve Anton52d86772018-02-20 15:48:12 -0800522 void OnNegotiationNeeded();
523
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000524 bool IsClosed() const {
Karl Wiberg8d2e2282019-02-17 13:00:07 +0100525 RTC_DCHECK_RUN_ON(signaling_thread());
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000526 return signaling_state_ == PeerConnectionInterface::kClosed;
527 }
528
deadbeefab9b2d12015-10-14 11:33:11 -0700529 // Returns a MediaSessionOptions struct with options decided by |options|,
530 // the local MediaStreams and DataChannels.
Steve Antondcc3c022017-12-22 16:02:54 -0800531 void GetOptionsForOffer(const PeerConnectionInterface::RTCOfferAnswerOptions&
532 offer_answer_options,
533 cricket::MediaSessionOptions* session_options);
534 void GetOptionsForPlanBOffer(
535 const PeerConnectionInterface::RTCOfferAnswerOptions&
536 offer_answer_options,
537 cricket::MediaSessionOptions* session_options);
538 void GetOptionsForUnifiedPlanOffer(
539 const PeerConnectionInterface::RTCOfferAnswerOptions&
540 offer_answer_options,
deadbeefab9b2d12015-10-14 11:33:11 -0700541 cricket::MediaSessionOptions* session_options);
542
Steve Anton22da89f2018-01-25 13:58:07 -0800543 RTCError HandleLegacyOfferOptions(const RTCOfferAnswerOptions& options);
544 void RemoveRecvDirectionFromReceivingTransceiversOfType(
545 cricket::MediaType media_type);
546 void AddUpToOneReceivingTransceiverOfType(cricket::MediaType media_type);
547 std::vector<
548 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>>
549 GetReceivingTransceiversOfType(cricket::MediaType media_type);
550
deadbeefab9b2d12015-10-14 11:33:11 -0700551 // Returns a MediaSessionOptions struct with options decided by
552 // |constraints|, the local MediaStreams and DataChannels.
Steve Antondcc3c022017-12-22 16:02:54 -0800553 void GetOptionsForAnswer(const RTCOfferAnswerOptions& offer_answer_options,
zhihuang1c378ed2017-08-17 14:10:50 -0700554 cricket::MediaSessionOptions* session_options);
Steve Antondcc3c022017-12-22 16:02:54 -0800555 void GetOptionsForPlanBAnswer(
556 const PeerConnectionInterface::RTCOfferAnswerOptions&
557 offer_answer_options,
558 cricket::MediaSessionOptions* session_options);
559 void GetOptionsForUnifiedPlanAnswer(
560 const PeerConnectionInterface::RTCOfferAnswerOptions&
561 offer_answer_options,
562 cricket::MediaSessionOptions* session_options);
htaa2a49d92016-03-04 02:51:39 -0800563
zhihuang1c378ed2017-08-17 14:10:50 -0700564 // Generates MediaDescriptionOptions for the |session_opts| based on existing
565 // local description or remote description.
566 void GenerateMediaDescriptionOptions(
567 const SessionDescriptionInterface* session_desc,
Steve Anton1d03a752017-11-27 14:30:09 -0800568 RtpTransceiverDirection audio_direction,
569 RtpTransceiverDirection video_direction,
Danil Chapovalov66cadcc2018-06-19 16:47:43 +0200570 absl::optional<size_t>* audio_index,
571 absl::optional<size_t>* video_index,
572 absl::optional<size_t>* data_index,
htaa2a49d92016-03-04 02:51:39 -0800573 cricket::MediaSessionOptions* session_options);
deadbeefab9b2d12015-10-14 11:33:11 -0700574
Steve Antonfa2260d2017-12-28 16:38:23 -0800575 // Generates the active MediaDescriptionOptions for the local data channel
576 // given the specified MID.
577 cricket::MediaDescriptionOptions GetMediaDescriptionOptionsForActiveData(
578 const std::string& mid) const;
579
580 // Generates the rejected MediaDescriptionOptions for the local data channel
581 // given the specified MID.
582 cricket::MediaDescriptionOptions GetMediaDescriptionOptionsForRejectedData(
583 const std::string& mid) const;
584
585 // Returns the MID for the data section associated with either the
586 // RtpDataChannel or SCTP data channel, if it has been set. If no data
587 // channels are configured this will return nullopt.
Danil Chapovalov66cadcc2018-06-19 16:47:43 +0200588 absl::optional<std::string> GetDataMid() const;
Steve Antonfa2260d2017-12-28 16:38:23 -0800589
Steve Anton4171afb2017-11-20 10:20:22 -0800590 // Remove all local and remote senders of type |media_type|.
deadbeeffaac4972015-11-12 15:33:07 -0800591 // Called when a media type is rejected (m-line set to port 0).
Karl Wiberg744310f2019-02-14 10:18:56 +0100592 void RemoveSenders(cricket::MediaType media_type)
593 RTC_RUN_ON(signaling_thread());
deadbeeffaac4972015-11-12 15:33:07 -0800594
deadbeefbda7e0b2015-12-08 17:13:40 -0800595 // Makes sure a MediaStreamTrack is created for each StreamParam in |streams|,
596 // and existing MediaStreamTracks are removed if there is no corresponding
597 // StreamParam. If |default_track_needed| is true, a default MediaStreamTrack
598 // is created if it doesn't exist; if false, it's removed if it exists.
599 // |media_type| is the type of the |streams| and can be either audio or video.
deadbeefab9b2d12015-10-14 11:33:11 -0700600 // If a new MediaStream is created it is added to |new_streams|.
Steve Anton4171afb2017-11-20 10:20:22 -0800601 void UpdateRemoteSendersList(
deadbeefab9b2d12015-10-14 11:33:11 -0700602 const std::vector<cricket::StreamParams>& streams,
deadbeefbda7e0b2015-12-08 17:13:40 -0800603 bool default_track_needed,
deadbeefab9b2d12015-10-14 11:33:11 -0700604 cricket::MediaType media_type,
Karl Wiberg744310f2019-02-14 10:18:56 +0100605 StreamCollection* new_streams) RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700606
Steve Anton4171afb2017-11-20 10:20:22 -0800607 // Triggered when a remote sender has been seen for the first time in a remote
deadbeefab9b2d12015-10-14 11:33:11 -0700608 // session description. It creates a remote MediaStreamTrackInterface
609 // implementation and triggers CreateAudioReceiver or CreateVideoReceiver.
Steve Anton4171afb2017-11-20 10:20:22 -0800610 void OnRemoteSenderAdded(const RtpSenderInfo& sender_info,
Karl Wiberg744310f2019-02-14 10:18:56 +0100611 cricket::MediaType media_type)
612 RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700613
Steve Anton4171afb2017-11-20 10:20:22 -0800614 // Triggered when a remote sender has been removed from a remote session
615 // description. It removes the remote sender with id |sender_id| from a remote
deadbeefab9b2d12015-10-14 11:33:11 -0700616 // MediaStream and triggers DestroyAudioReceiver or DestroyVideoReceiver.
Steve Anton4171afb2017-11-20 10:20:22 -0800617 void OnRemoteSenderRemoved(const RtpSenderInfo& sender_info,
Karl Wiberg744310f2019-02-14 10:18:56 +0100618 cricket::MediaType media_type)
619 RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700620
621 // Finds remote MediaStreams without any tracks and removes them from
622 // |remote_streams_| and notifies the observer that the MediaStreams no longer
623 // exist.
Karl Wiberg744310f2019-02-14 10:18:56 +0100624 void UpdateEndedRemoteMediaStreams() RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700625
deadbeefab9b2d12015-10-14 11:33:11 -0700626 // Loops through the vector of |streams| and finds added and removed
627 // StreamParams since last time this method was called.
Steve Anton4171afb2017-11-20 10:20:22 -0800628 // For each new or removed StreamParam, OnLocalSenderSeen or
629 // OnLocalSenderRemoved is invoked.
630 void UpdateLocalSenders(const std::vector<cricket::StreamParams>& streams,
631 cricket::MediaType media_type);
deadbeefab9b2d12015-10-14 11:33:11 -0700632
Steve Anton4171afb2017-11-20 10:20:22 -0800633 // Triggered when a local sender has been seen for the first time in a local
deadbeefab9b2d12015-10-14 11:33:11 -0700634 // session description.
635 // This method triggers CreateAudioSender or CreateVideoSender if the rtp
636 // streams in the local SessionDescription can be mapped to a MediaStreamTrack
637 // in a MediaStream in |local_streams_|
Steve Anton4171afb2017-11-20 10:20:22 -0800638 void OnLocalSenderAdded(const RtpSenderInfo& sender_info,
639 cricket::MediaType media_type);
deadbeefab9b2d12015-10-14 11:33:11 -0700640
Steve Anton4171afb2017-11-20 10:20:22 -0800641 // Triggered when a local sender has been removed from a local session
deadbeefab9b2d12015-10-14 11:33:11 -0700642 // description.
643 // This method triggers DestroyAudioSender or DestroyVideoSender if a stream
644 // has been removed from the local SessionDescription and the stream can be
645 // mapped to a MediaStreamTrack in a MediaStream in |local_streams_|.
Steve Anton4171afb2017-11-20 10:20:22 -0800646 void OnLocalSenderRemoved(const RtpSenderInfo& sender_info,
647 cricket::MediaType media_type);
deadbeefab9b2d12015-10-14 11:33:11 -0700648
649 void UpdateLocalRtpDataChannels(const cricket::StreamParamsVec& streams);
Karl Wiberg106d92d2019-02-14 10:17:47 +0100650 void UpdateRemoteRtpDataChannels(const cricket::StreamParamsVec& streams)
651 RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700652 void UpdateClosingRtpDataChannels(
653 const std::vector<std::string>& active_channels,
654 bool is_local_update);
655 void CreateRemoteRtpDataChannel(const std::string& label,
Karl Wiberg106d92d2019-02-14 10:17:47 +0100656 uint32_t remote_ssrc)
657 RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700658
659 // Creates channel and adds it to the collection of DataChannels that will
660 // be offered in a SessionDescription.
661 rtc::scoped_refptr<DataChannel> InternalCreateDataChannel(
662 const std::string& label,
Karl Wiberg106d92d2019-02-14 10:17:47 +0100663 const InternalDataChannelInit* config) RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700664
665 // Checks if any data channel has been added.
666 bool HasDataChannels() const;
667
668 void AllocateSctpSids(rtc::SSLRole role);
669 void OnSctpDataChannelClosed(DataChannel* channel);
670
deadbeefab9b2d12015-10-14 11:33:11 -0700671 void OnDataChannelDestroyed();
Steve Antonba818672017-11-06 10:21:57 -0800672 // Called when a valid data channel OPEN message is received.
deadbeefab9b2d12015-10-14 11:33:11 -0700673 void OnDataChannelOpenMessage(const std::string& label,
Karl Wiberg106d92d2019-02-14 10:17:47 +0100674 const InternalDataChannelInit& config)
675 RTC_RUN_ON(signaling_thread());
676
Bjorn Mellem175aa2e2018-11-08 11:23:22 -0800677 // Parses and handles open messages. Returns true if the message is an open
678 // message, false otherwise.
679 bool HandleOpenMessage_s(const cricket::ReceiveDataParams& params,
680 const rtc::CopyOnWriteBuffer& buffer)
681 RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700682
Steve Anton4171afb2017-11-20 10:20:22 -0800683 // Returns true if the PeerConnection is configured to use Unified Plan
684 // semantics for creating offers/answers and setting local/remote
685 // descriptions. If this is true the RtpTransceiver API will also be available
686 // to the user. If this is false, Plan B semantics are assumed.
Steve Anton79e79602017-11-20 10:25:56 -0800687 // TODO(bugs.webrtc.org/8530): Flip the default to be Unified Plan once
688 // sufficient time has passed.
689 bool IsUnifiedPlan() const {
690 return configuration_.sdp_semantics == SdpSemantics::kUnifiedPlan;
691 }
Steve Anton4171afb2017-11-20 10:20:22 -0800692
Steve Anton06817cd2018-12-18 15:55:30 -0800693 // The offer/answer machinery assumes the media section MID is present and
694 // unique. To support legacy end points that do not supply a=mid lines, this
695 // method will modify the session description to add MIDs generated according
696 // to the SDP semantics.
697 void FillInMissingRemoteMids(cricket::SessionDescription* remote_description);
698
Steve Anton4171afb2017-11-20 10:20:22 -0800699 // Is there an RtpSender of the given type?
zhihuang1c378ed2017-08-17 14:10:50 -0700700 bool HasRtpSender(cricket::MediaType type) const;
deadbeeffac06552015-11-25 11:26:01 -0800701
Steve Anton4171afb2017-11-20 10:20:22 -0800702 // Return the RtpSender with the given track attached.
703 rtc::scoped_refptr<RtpSenderProxyWithInternal<RtpSenderInternal>>
704 FindSenderForTrack(MediaStreamTrackInterface* track) const;
deadbeef70ab1a12015-09-28 16:53:55 -0700705
Steve Anton4171afb2017-11-20 10:20:22 -0800706 // Return the RtpSender with the given id, or null if none exists.
707 rtc::scoped_refptr<RtpSenderProxyWithInternal<RtpSenderInternal>>
708 FindSenderById(const std::string& sender_id) const;
709
710 // Return the RtpReceiver with the given id, or null if none exists.
711 rtc::scoped_refptr<RtpReceiverProxyWithInternal<RtpReceiverInternal>>
712 FindReceiverById(const std::string& receiver_id) const;
713
714 std::vector<RtpSenderInfo>* GetRemoteSenderInfos(
715 cricket::MediaType media_type);
716 std::vector<RtpSenderInfo>* GetLocalSenderInfos(
717 cricket::MediaType media_type);
718 const RtpSenderInfo* FindSenderInfo(const std::vector<RtpSenderInfo>& infos,
Emircan Uysalerbc609ea2018-03-27 21:57:18 +0000719 const std::string& stream_id,
Steve Anton4171afb2017-11-20 10:20:22 -0800720 const std::string sender_id) const;
deadbeefab9b2d12015-10-14 11:33:11 -0700721
722 // Returns the specified SCTP DataChannel in sctp_data_channels_,
723 // or nullptr if not found.
724 DataChannel* FindDataChannelBySid(int sid) const;
725
Taylor Brandstettera1c30352016-05-13 08:15:11 -0700726 // Called when first configuring the port allocator.
Harald Alvestrandb2a74782018-06-28 13:54:07 +0200727 bool InitializePortAllocator_n(
728 const cricket::ServerAddresses& stun_servers,
729 const std::vector<cricket::RelayServerConfig>& turn_servers,
730 const RTCConfiguration& configuration);
deadbeef293e9262017-01-11 12:28:30 -0800731 // Called when SetConfiguration is called to apply the supported subset
732 // of the configuration on the network thread.
733 bool ReconfigurePortAllocator_n(
734 const cricket::ServerAddresses& stun_servers,
735 const std::vector<cricket::RelayServerConfig>& turn_servers,
736 IceTransportsType type,
737 int candidate_pool_size,
Jonas Orelandbdcee282017-10-10 14:01:40 +0200738 bool prune_turn_ports,
Qingsi Wangdb53f8e2018-02-20 14:45:49 -0800739 webrtc::TurnCustomizer* turn_customizer,
Danil Chapovalov66cadcc2018-06-19 16:47:43 +0200740 absl::optional<int> stun_candidate_keepalive_interval);
Taylor Brandstettera1c30352016-05-13 08:15:11 -0700741
Elad Alon99c3fe52017-10-13 16:29:40 +0200742 // Starts output of an RTC event log to the given output object.
ivoc14d5dbe2016-07-04 07:06:55 -0700743 // This function should only be called from the worker thread.
Bjorn Tereliusde939432017-11-20 17:38:14 +0100744 bool StartRtcEventLog_w(std::unique_ptr<RtcEventLogOutput> output,
745 int64_t output_period_ms);
Elad Alon99c3fe52017-10-13 16:29:40 +0200746
Elad Alonacb24172017-10-06 14:32:13 +0200747 // Stops recording an RTC event log.
ivoc14d5dbe2016-07-04 07:06:55 -0700748 // This function should only be called from the worker thread.
749 void StopRtcEventLog_w();
750
Steve Anton038834f2017-07-14 15:59:59 -0700751 // Ensures the configuration doesn't have any parameters with invalid values,
752 // or values that conflict with other parameters.
753 //
754 // Returns RTCError::OK() if there are no issues.
755 RTCError ValidateConfiguration(const RTCConfiguration& config) const;
756
Steve Antonba818672017-11-06 10:21:57 -0800757 cricket::ChannelManager* channel_manager() const;
Steve Antonba818672017-11-06 10:21:57 -0800758
Steve Antonf8470812017-12-04 10:46:21 -0800759 enum class SessionError {
760 kNone, // No error.
761 kContent, // Error in BaseChannel SetLocalContent/SetRemoteContent.
762 kTransport, // Error from the underlying transport.
763 };
764
Steve Anton75737c02017-11-06 10:37:17 -0800765 // Returns the last error in the session. See the enum above for details.
Steve Antonf8470812017-12-04 10:46:21 -0800766 SessionError session_error() const { return session_error_; }
767 const std::string& session_error_desc() const { return session_error_desc_; }
Steve Anton75737c02017-11-06 10:37:17 -0800768
Amit Hilbuchdd9390c2018-11-13 16:26:05 -0800769 cricket::ChannelInterface* GetChannel(const std::string& content_name);
Steve Anton75737c02017-11-06 10:37:17 -0800770
771 // Get current SSL role used by SCTP's underlying transport.
772 bool GetSctpSslRole(rtc::SSLRole* role);
773
Steve Anton75737c02017-11-06 10:37:17 -0800774 cricket::IceConfig ParseIceConfig(
775 const PeerConnectionInterface::RTCConfiguration& config) const;
776
Steve Anton75737c02017-11-06 10:37:17 -0800777 // Implements DataChannelProviderInterface.
778 bool SendData(const cricket::SendDataParams& params,
779 const rtc::CopyOnWriteBuffer& payload,
780 cricket::SendDataResult* result) override;
781 bool ConnectDataChannel(DataChannel* webrtc_data_channel) override;
782 void DisconnectDataChannel(DataChannel* webrtc_data_channel) override;
783 void AddSctpDataStream(int sid) override;
784 void RemoveSctpDataStream(int sid) override;
785 bool ReadyToSendData() const override;
786
787 cricket::DataChannelType data_channel_type() const;
788
Bjorn Mellem175aa2e2018-11-08 11:23:22 -0800789 // Implements DataChannelSink.
790 void OnDataReceived(int channel_id,
791 DataMessageType type,
792 const rtc::CopyOnWriteBuffer& buffer) override;
793 void OnChannelClosing(int channel_id) override;
794 void OnChannelClosed(int channel_id) override;
795
Steve Anton75737c02017-11-06 10:37:17 -0800796 // Called when an RTCCertificate is generated or retrieved by
797 // WebRTCSessionDescriptionFactory. Should happen before setLocalDescription.
798 void OnCertificateReady(
799 const rtc::scoped_refptr<rtc::RTCCertificate>& certificate);
800 void OnDtlsSrtpSetupFailure(cricket::BaseChannel*, bool rtcp);
801
Steve Anton75737c02017-11-06 10:37:17 -0800802 // Non-const versions of local_description()/remote_description(), for use
803 // internally.
804 SessionDescriptionInterface* mutable_local_description() {
805 return pending_local_description_ ? pending_local_description_.get()
806 : current_local_description_.get();
807 }
808 SessionDescriptionInterface* mutable_remote_description() {
809 return pending_remote_description_ ? pending_remote_description_.get()
810 : current_remote_description_.get();
811 }
812
813 // Updates the error state, signaling if necessary.
Steve Antonf8470812017-12-04 10:46:21 -0800814 void SetSessionError(SessionError error, const std::string& error_desc);
Steve Anton75737c02017-11-06 10:37:17 -0800815
Zhi Huange830e682018-03-30 10:48:35 -0700816 RTCError UpdateSessionState(SdpType type,
817 cricket::ContentSource source,
818 const cricket::SessionDescription* description);
Steve Anton75737c02017-11-06 10:37:17 -0800819 // Push the media parts of the local or remote session description
820 // down to all of the channels.
Steve Anton3828c062017-12-06 10:34:51 -0800821 RTCError PushdownMediaDescription(SdpType type,
Steve Anton8a006912017-12-04 15:25:56 -0800822 cricket::ContentSource source);
Steve Anton75737c02017-11-06 10:37:17 -0800823 bool PushdownSctpParameters_n(cricket::ContentSource source);
824
Steve Anton8a006912017-12-04 15:25:56 -0800825 RTCError PushdownTransportDescription(cricket::ContentSource source,
Steve Anton3828c062017-12-06 10:34:51 -0800826 SdpType type);
Steve Anton75737c02017-11-06 10:37:17 -0800827
828 // Returns true and the TransportInfo of the given |content_name|
829 // from |description|. Returns false if it's not available.
830 static bool GetTransportDescription(
831 const cricket::SessionDescription* description,
832 const std::string& content_name,
833 cricket::TransportDescription* info);
834
Steve Anton75737c02017-11-06 10:37:17 -0800835 // Enables media channels to allow sending of media.
Steve Antoned10bd92017-12-05 10:52:59 -0800836 // This enables media to flow on all configured audio/video channels and the
837 // RtpDataChannel.
838 void EnableSending();
Steve Anton3fe1b152017-12-12 10:20:08 -0800839
Steve Anton8af21862017-12-15 11:20:13 -0800840 // Destroys all BaseChannels and destroys the SCTP data channel, if present.
841 void DestroyAllChannels();
Steve Anton3fe1b152017-12-12 10:20:08 -0800842
Steve Anton75737c02017-11-06 10:37:17 -0800843 // Returns the media index for a local ice candidate given the content name.
844 // Returns false if the local session description does not have a media
845 // content called |content_name|.
846 bool GetLocalCandidateMediaIndex(const std::string& content_name,
847 int* sdp_mline_index);
848 // Uses all remote candidates in |remote_desc| in this session.
849 bool UseCandidatesInSessionDescription(
Karl Wiberg744310f2019-02-14 10:18:56 +0100850 const SessionDescriptionInterface* remote_desc)
851 RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -0800852 // Uses |candidate| in this session.
Karl Wiberg744310f2019-02-14 10:18:56 +0100853 bool UseCandidate(const IceCandidateInterface* candidate)
854 RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -0800855 // Deletes the corresponding channel of contents that don't exist in |desc|.
856 // |desc| can be null. This means that all channels are deleted.
857 void RemoveUnusedChannels(const cricket::SessionDescription* desc);
858
859 // Allocates media channels based on the |desc|. If |desc| doesn't have
860 // the BUNDLE option, this method will disable BUNDLE in PortAllocator.
861 // This method will also delete any existing media channels before creating.
Steve Antondcc3c022017-12-22 16:02:54 -0800862 RTCError CreateChannels(const cricket::SessionDescription& desc);
863
864 // If the BUNDLE policy is max-bundle, then we know for sure that all
865 // transports will be bundled from the start. This method returns the BUNDLE
866 // group if that's the case, or null if BUNDLE will be negotiated later. An
867 // error is returned if max-bundle is specified but the session description
868 // does not have a BUNDLE group.
869 RTCErrorOr<const cricket::ContentGroup*> GetEarlyBundleGroup(
870 const cricket::SessionDescription& desc) const;
Steve Anton75737c02017-11-06 10:37:17 -0800871
872 // Helper methods to create media channels.
Zhi Huange830e682018-03-30 10:48:35 -0700873 cricket::VoiceChannel* CreateVoiceChannel(const std::string& mid);
874 cricket::VideoChannel* CreateVideoChannel(const std::string& mid);
875 bool CreateDataChannel(const std::string& mid);
Steve Anton75737c02017-11-06 10:37:17 -0800876
Zhi Huange830e682018-03-30 10:48:35 -0700877 bool CreateSctpTransport_n(const std::string& mid);
Steve Anton75737c02017-11-06 10:37:17 -0800878 // For bundling.
Steve Anton75737c02017-11-06 10:37:17 -0800879 void DestroySctpTransport_n();
880 // SctpTransport signal handlers. Needed to marshal signals from the network
881 // to signaling thread.
882 void OnSctpTransportReadyToSendData_n();
883 // This may be called with "false" if the direction of the m= section causes
884 // us to tear down the SCTP connection.
885 void OnSctpTransportReadyToSendData_s(bool ready);
886 void OnSctpTransportDataReceived_n(const cricket::ReceiveDataParams& params,
887 const rtc::CopyOnWriteBuffer& payload);
888 // Beyond just firing the signal to the signaling thread, listens to SCTP
889 // CONTROL messages on unused SIDs and processes them as OPEN messages.
890 void OnSctpTransportDataReceived_s(const cricket::ReceiveDataParams& params,
891 const rtc::CopyOnWriteBuffer& payload);
Taylor Brandstettercdd05f02018-05-31 13:23:32 -0700892 void OnSctpClosingProcedureStartedRemotely_n(int sid);
893 void OnSctpClosingProcedureComplete_n(int sid);
Steve Anton75737c02017-11-06 10:37:17 -0800894
Bjorn Mellem175aa2e2018-11-08 11:23:22 -0800895 bool SetupMediaTransportForDataChannels_n(const std::string& mid)
896 RTC_RUN_ON(network_thread());
897 void OnMediaTransportStateChanged_n() RTC_RUN_ON(network_thread());
898 void TeardownMediaTransportForDataChannels_n() RTC_RUN_ON(network_thread());
899
Steve Anton75737c02017-11-06 10:37:17 -0800900 bool ValidateBundleSettings(const cricket::SessionDescription* desc);
901 bool HasRtcpMuxEnabled(const cricket::ContentInfo* content);
902 // Below methods are helper methods which verifies SDP.
Steve Anton8a006912017-12-04 15:25:56 -0800903 RTCError ValidateSessionDescription(const SessionDescriptionInterface* sdesc,
904 cricket::ContentSource source);
Steve Anton75737c02017-11-06 10:37:17 -0800905
Steve Anton3828c062017-12-06 10:34:51 -0800906 // Check if a call to SetLocalDescription is acceptable with a session
907 // description of the given type.
908 bool ExpectSetLocalDescription(SdpType type);
909 // Check if a call to SetRemoteDescription is acceptable with a session
910 // description of the given type.
911 bool ExpectSetRemoteDescription(SdpType type);
Steve Anton75737c02017-11-06 10:37:17 -0800912 // Verifies a=setup attribute as per RFC 5763.
913 bool ValidateDtlsSetupAttribute(const cricket::SessionDescription* desc,
Steve Anton3828c062017-12-06 10:34:51 -0800914 SdpType type);
Steve Anton75737c02017-11-06 10:37:17 -0800915
916 // Returns true if we are ready to push down the remote candidate.
917 // |remote_desc| is the new remote description, or NULL if the current remote
918 // description should be used. Output |valid| is true if the candidate media
919 // index is valid.
920 bool ReadyToUseRemoteCandidate(const IceCandidateInterface* candidate,
921 const SessionDescriptionInterface* remote_desc,
922 bool* valid);
923
924 // Returns true if SRTP (either using DTLS-SRTP or SDES) is required by
925 // this session.
926 bool SrtpRequired() const;
927
Zhi Huange830e682018-03-30 10:48:35 -0700928 // JsepTransportController signal handlers.
Karl Wiberg744310f2019-02-14 10:18:56 +0100929 void OnTransportControllerConnectionState(cricket::IceConnectionState state)
930 RTC_RUN_ON(signaling_thread());
931 void OnTransportControllerGatheringState(cricket::IceGatheringState state)
932 RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -0800933 void OnTransportControllerCandidatesGathered(
934 const std::string& transport_name,
Karl Wiberg744310f2019-02-14 10:18:56 +0100935 const std::vector<cricket::Candidate>& candidates)
936 RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -0800937 void OnTransportControllerCandidatesRemoved(
Karl Wiberg744310f2019-02-14 10:18:56 +0100938 const std::vector<cricket::Candidate>& candidates)
939 RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -0800940 void OnTransportControllerDtlsHandshakeError(rtc::SSLHandshakeError error);
941
Steve Antonf8470812017-12-04 10:46:21 -0800942 const char* SessionErrorToString(SessionError error) const;
Steve Anton75737c02017-11-06 10:37:17 -0800943 std::string GetSessionErrorMsg();
944
Steve Anton8e20f172018-03-06 10:55:04 -0800945 // Report the UMA metric SdpFormatReceived for the given remote offer.
946 void ReportSdpFormatReceived(const SessionDescriptionInterface& remote_offer);
947
Steve Anton0ffaaa22018-02-23 10:31:30 -0800948 // Report inferred negotiated SDP semantics from a local/remote answer to the
949 // UMA observer.
950 void ReportNegotiatedSdpSemantics(const SessionDescriptionInterface& answer);
951
Steve Anton75737c02017-11-06 10:37:17 -0800952 // Invoked when TransportController connection completion is signaled.
953 // Reports stats for all transports in use.
954 void ReportTransportStats();
955
956 // Gather the usage of IPv4/IPv6 as best connection.
957 void ReportBestConnectionState(const cricket::TransportStats& stats);
958
Steve Antonc7b964c2018-02-01 14:39:45 -0800959 void ReportNegotiatedCiphers(const cricket::TransportStats& stats,
960 const std::set<cricket::MediaType>& media_types);
Steve Anton75737c02017-11-06 10:37:17 -0800961
Harald Alvestrand8ebba742018-05-31 14:00:34 +0200962 void NoteUsageEvent(UsageEvent event);
Karl Wiberg744310f2019-02-14 10:18:56 +0100963 void ReportUsagePattern() const RTC_RUN_ON(signaling_thread());
Harald Alvestrand8ebba742018-05-31 14:00:34 +0200964
Steve Anton75737c02017-11-06 10:37:17 -0800965 void OnSentPacket_w(const rtc::SentPacket& sent_packet);
966
967 const std::string GetTransportName(const std::string& content_name);
968
Steve Anton6fec8802017-12-04 10:37:29 -0800969 // Destroys and clears the BaseChannel associated with the given transceiver,
970 // if such channel is set.
971 void DestroyTransceiverChannel(
972 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
973 transceiver);
974
975 // Destroys the RTP data channel and/or the SCTP data channel and clears it.
Steve Anton75737c02017-11-06 10:37:17 -0800976 void DestroyDataChannel();
977
Amit Hilbuchdd9390c2018-11-13 16:26:05 -0800978 // Destroys the given ChannelInterface.
979 // The channel cannot be accessed after this method is called.
980 void DestroyChannelInterface(cricket::ChannelInterface* channel);
Steve Anton6fec8802017-12-04 10:37:29 -0800981
Zhi Huang365381f2018-04-13 16:44:34 -0700982 // JsepTransportController::Observer override.
Taylor Brandstettercbaa2542018-04-16 16:42:14 -0700983 //
984 // Called by |transport_controller_| when processing transport information
985 // from a session description, and the mapping from m= sections to transports
986 // changed (as a result of BUNDLE negotiation, or m= sections being
987 // rejected).
Piotr (Peter) Slatalacc8e8bb2018-11-15 08:26:19 -0800988 bool OnTransportChanged(const std::string& mid,
989 RtpTransportInternal* rtp_transport,
990 cricket::DtlsTransportInternal* dtls_transport,
991 MediaTransportInterface* media_transport) override;
Zhi Huange830e682018-03-30 10:48:35 -0700992
Harald Alvestrand7a1c7f72018-08-01 10:50:16 +0200993 // Returns the observer. Will crash on CHECK if the observer is removed.
Karl Wiberg744310f2019-02-14 10:18:56 +0100994 PeerConnectionObserver* Observer() const RTC_RUN_ON(signaling_thread());
Harald Alvestrand7a1c7f72018-08-01 10:50:16 +0200995
Benjamin Wright8c27cca2018-10-25 10:16:44 -0700996 // Returns the CryptoOptions for this PeerConnection. This will always
997 // return the RTCConfiguration.crypto_options if set and will only default
998 // back to the PeerConnectionFactory settings if nothing was set.
999 CryptoOptions GetCryptoOptions();
1000
Anton Sukhanov98a462c2018-10-17 13:15:42 -07001001 // Returns rtp transport, result can not be nullptr.
1002 RtpTransportInternal* GetRtpTransport(const std::string& mid) {
1003 auto rtp_transport = transport_controller_->GetRtpTransport(mid);
1004 RTC_DCHECK(rtp_transport);
1005 return rtp_transport;
1006 }
1007
1008 // Returns media transport, if PeerConnection was created with configuration
1009 // to use media transport. Otherwise returns nullptr.
1010 MediaTransportInterface* GetMediaTransport(const std::string& mid) {
1011 auto media_transport = transport_controller_->GetMediaTransport(mid);
Bjorn Mellema9bbd862018-11-02 09:07:48 -07001012 RTC_DCHECK((configuration_.use_media_transport ||
1013 configuration_.use_media_transport_for_data_channels) ==
Piotr (Peter) Slatala97fc11f2018-10-18 12:57:59 -07001014 (media_transport != nullptr))
1015 << "configuration_.use_media_transport="
1016 << configuration_.use_media_transport
Bjorn Mellema9bbd862018-11-02 09:07:48 -07001017 << ", configuration_.use_media_transport_for_data_channels="
1018 << configuration_.use_media_transport_for_data_channels
Piotr (Peter) Slatala97fc11f2018-10-18 12:57:59 -07001019 << ", (media_transport != nullptr)=" << (media_transport != nullptr);
Anton Sukhanov98a462c2018-10-17 13:15:42 -07001020 return media_transport;
1021 }
1022
Karl Wiberg106d92d2019-02-14 10:17:47 +01001023 sigslot::signal1<DataChannel*> SignalDataChannelCreated_
1024 RTC_GUARDED_BY(signaling_thread());
Steve Anton2d8609c2018-01-23 16:38:46 -08001025
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001026 // Storing the factory as a scoped reference pointer ensures that the memory
1027 // in the PeerConnectionFactoryImpl remains available as long as the
1028 // PeerConnection is running. It is passed to PeerConnection as a raw pointer.
1029 // However, since the reference counting is done in the
deadbeefab9b2d12015-10-14 11:33:11 -07001030 // PeerConnectionFactoryInterface all instances created using the raw pointer
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001031 // will refer to the same reference count.
Karl Wiberg744310f2019-02-14 10:18:56 +01001032 const rtc::scoped_refptr<PeerConnectionFactory> factory_;
1033 PeerConnectionObserver* observer_ RTC_GUARDED_BY(signaling_thread()) =
1034 nullptr;
terelius33860252017-05-12 23:37:18 -07001035
1036 // The EventLog needs to outlive |call_| (and any other object that uses it).
Karl Wibergb03ab712019-02-14 11:59:57 +01001037 std::unique_ptr<RtcEventLog> event_log_ RTC_GUARDED_BY(worker_thread());
1038
1039 // Points to the same thing as `event_log_`. Since it's const, we may read the
1040 // pointer (but not touch the object) from any thread.
1041 RtcEventLog* const event_log_ptr_ RTC_PT_GUARDED_BY(worker_thread());
terelius33860252017-05-12 23:37:18 -07001042
Karl Wiberg8d2e2282019-02-17 13:00:07 +01001043 SignalingState signaling_state_ RTC_GUARDED_BY(signaling_thread()) = kStable;
1044 IceConnectionState ice_connection_state_ RTC_GUARDED_BY(signaling_thread()) =
1045 kIceConnectionNew;
1046 PeerConnectionInterface::IceConnectionState standardized_ice_connection_state_
1047 RTC_GUARDED_BY(signaling_thread()) = kIceConnectionNew;
1048 PeerConnectionInterface::PeerConnectionState connection_state_
1049 RTC_GUARDED_BY(signaling_thread()) = PeerConnectionState::kNew;
Jonas Olsson635474e2018-10-18 15:58:17 +02001050
Karl Wiberg8d2e2282019-02-17 13:00:07 +01001051 IceGatheringState ice_gathering_state_ RTC_GUARDED_BY(signaling_thread()) =
1052 kIceGatheringNew;
deadbeef46c73892016-11-16 19:42:04 -08001053 PeerConnectionInterface::RTCConfiguration configuration_;
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001054
Zach Steine20867f2018-08-02 13:20:15 -07001055 // TODO(zstein): |async_resolver_factory_| can currently be nullptr if it
1056 // is not injected. It should be required once chromium supplies it.
1057 std::unique_ptr<AsyncResolverFactory> async_resolver_factory_;
kwibergd1fe2812016-04-27 06:47:29 -07001058 std::unique_ptr<cricket::PortAllocator> port_allocator_;
Benjamin Wrightd6f86e82018-05-08 13:12:25 -07001059 std::unique_ptr<rtc::SSLCertificateVerifier> tls_cert_verifier_;
Qingsi Wanga2d60672018-04-11 16:57:45 -07001060 int port_allocator_flags_ = 0;
deadbeefab9b2d12015-10-14 11:33:11 -07001061
zhihuang8f65cdf2016-05-06 18:40:30 -07001062 // One PeerConnection has only one RTCP CNAME.
1063 // https://tools.ietf.org/html/draft-ietf-rtcweb-rtp-usage-26#section-4.9
1064 std::string rtcp_cname_;
1065
deadbeefab9b2d12015-10-14 11:33:11 -07001066 // Streams added via AddStream.
1067 rtc::scoped_refptr<StreamCollection> local_streams_;
1068 // Streams created as a result of SetRemoteDescription.
1069 rtc::scoped_refptr<StreamCollection> remote_streams_;
1070
kwibergd1fe2812016-04-27 06:47:29 -07001071 std::vector<std::unique_ptr<MediaStreamObserver>> stream_observers_;
deadbeefeb459812015-12-15 19:24:43 -08001072
Steve Anton4171afb2017-11-20 10:20:22 -08001073 // These lists store sender info seen in local/remote descriptions.
1074 std::vector<RtpSenderInfo> remote_audio_sender_infos_;
1075 std::vector<RtpSenderInfo> remote_video_sender_infos_;
1076 std::vector<RtpSenderInfo> local_audio_sender_infos_;
1077 std::vector<RtpSenderInfo> local_video_sender_infos_;
deadbeefab9b2d12015-10-14 11:33:11 -07001078
1079 SctpSidAllocator sid_allocator_;
1080 // label -> DataChannel
1081 std::map<std::string, rtc::scoped_refptr<DataChannel>> rtp_data_channels_;
1082 std::vector<rtc::scoped_refptr<DataChannel>> sctp_data_channels_;
deadbeefbd292462015-12-14 18:15:29 -08001083 std::vector<rtc::scoped_refptr<DataChannel>> sctp_data_channels_to_free_;
deadbeefab9b2d12015-10-14 11:33:11 -07001084
deadbeefbda7e0b2015-12-08 17:13:40 -08001085 bool remote_peer_supports_msid_ = false;
deadbeef70ab1a12015-09-28 16:53:55 -07001086
terelius33860252017-05-12 23:37:18 -07001087 std::unique_ptr<Call> call_;
terelius33860252017-05-12 23:37:18 -07001088 std::unique_ptr<StatsCollector> stats_; // A pointer is passed to senders_
1089 rtc::scoped_refptr<RTCStatsCollector> stats_collector_;
1090
deadbeefa601f5c2016-06-06 14:27:39 -07001091 std::vector<
Steve Anton4171afb2017-11-20 10:20:22 -08001092 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>>
1093 transceivers_;
Henrik Boström5b147782018-12-04 11:25:05 +01001094 // In Unified Plan, if we encounter remote SDP that does not contain an a=msid
1095 // line we create and use a stream with a random ID for our receivers. This is
1096 // to support legacy endpoints that do not support the a=msid attribute (as
1097 // opposed to streamless tracks with "a=msid:-").
1098 rtc::scoped_refptr<MediaStreamInterface> missing_msid_default_stream_;
Amit Hilbuchae3df542019-01-07 12:13:08 -08001099 // MIDs will be generated using this generator which will keep track of
1100 // all the MIDs that have been seen over the life of the PeerConnection.
Amit Hilbuchdbb49df2019-01-23 14:54:24 -08001101 rtc::UniqueStringGenerator mid_generator_;
Steve Anton75737c02017-11-06 10:37:17 -08001102
Steve Antonf8470812017-12-04 10:46:21 -08001103 SessionError session_error_ = SessionError::kNone;
1104 std::string session_error_desc_;
Steve Anton75737c02017-11-06 10:37:17 -08001105
1106 std::string session_id_;
Steve Anton75737c02017-11-06 10:37:17 -08001107
Zhi Huange830e682018-03-30 10:48:35 -07001108 std::unique_ptr<JsepTransportController> transport_controller_;
Steve Anton75737c02017-11-06 10:37:17 -08001109 std::unique_ptr<cricket::SctpTransportInternalFactory> sctp_factory_;
Steve Anton75737c02017-11-06 10:37:17 -08001110 // |rtp_data_channel_| is used if in RTP data channel mode, |sctp_transport_|
1111 // when using SCTP.
1112 cricket::RtpDataChannel* rtp_data_channel_ = nullptr;
1113
1114 std::unique_ptr<cricket::SctpTransportInternal> sctp_transport_;
Zhi Huange830e682018-03-30 10:48:35 -07001115 // |sctp_mid_| is the content name (MID) in SDP.
Danil Chapovalov66cadcc2018-06-19 16:47:43 +02001116 absl::optional<std::string> sctp_mid_;
Steve Anton75737c02017-11-06 10:37:17 -08001117 // Value cached on signaling thread. Only updated when SctpReadyToSendData
1118 // fires on the signaling thread.
1119 bool sctp_ready_to_send_data_ = false;
1120 // Same as signals provided by SctpTransport, but these are guaranteed to
1121 // fire on the signaling thread, whereas SctpTransport fires on the networking
1122 // thread.
1123 // |sctp_invoker_| is used so that any signals queued on the signaling thread
1124 // from the network thread are immediately discarded if the SctpTransport is
1125 // destroyed (due to m= section being rejected).
1126 // TODO(deadbeef): Use a proxy object to ensure that method calls/signals
1127 // are marshalled to the right thread. Could almost use proxy.h for this,
1128 // but it doesn't have a mechanism for marshalling sigslot::signals
1129 std::unique_ptr<rtc::AsyncInvoker> sctp_invoker_;
1130 sigslot::signal1<bool> SignalSctpReadyToSendData;
1131 sigslot::signal2<const cricket::ReceiveDataParams&,
1132 const rtc::CopyOnWriteBuffer&>
1133 SignalSctpDataReceived;
Taylor Brandstettercdd05f02018-05-31 13:23:32 -07001134 sigslot::signal1<int> SignalSctpClosingProcedureStartedRemotely;
1135 sigslot::signal1<int> SignalSctpClosingProcedureComplete;
Steve Anton75737c02017-11-06 10:37:17 -08001136
Bjorn Mellem175aa2e2018-11-08 11:23:22 -08001137 // Whether this peer is the caller. Set when the local description is applied.
1138 absl::optional<bool> is_caller_ RTC_GUARDED_BY(signaling_thread());
1139
1140 // Content name (MID) for media transport data channels in SDP.
1141 absl::optional<std::string> media_transport_data_mid_;
1142
1143 // Media transport used for data channels. Thread-safe.
1144 MediaTransportInterface* media_transport_ = nullptr;
1145
1146 // Cached value of whether the media transport is ready to send.
1147 bool media_transport_ready_to_send_data_ RTC_GUARDED_BY(signaling_thread()) =
1148 false;
1149
1150 // Used to invoke media transport signals on the signaling thread.
1151 std::unique_ptr<rtc::AsyncInvoker> media_transport_invoker_;
1152
1153 // Identical to the signals for SCTP, but from media transport:
1154 sigslot::signal1<bool> SignalMediaTransportWritable_s
1155 RTC_GUARDED_BY(signaling_thread());
1156 sigslot::signal2<const cricket::ReceiveDataParams&,
1157 const rtc::CopyOnWriteBuffer&>
1158 SignalMediaTransportReceivedData_s RTC_GUARDED_BY(signaling_thread());
1159 sigslot::signal1<int> SignalMediaTransportChannelClosing_s
1160 RTC_GUARDED_BY(signaling_thread());
1161 sigslot::signal1<int> SignalMediaTransportChannelClosed_s
1162 RTC_GUARDED_BY(signaling_thread());
1163
Steve Anton75737c02017-11-06 10:37:17 -08001164 std::unique_ptr<SessionDescriptionInterface> current_local_description_;
1165 std::unique_ptr<SessionDescriptionInterface> pending_local_description_;
1166 std::unique_ptr<SessionDescriptionInterface> current_remote_description_;
1167 std::unique_ptr<SessionDescriptionInterface> pending_remote_description_;
1168 bool dtls_enabled_ = false;
1169 // Specifies which kind of data channel is allowed. This is controlled
1170 // by the chrome command-line flag and constraints:
1171 // 1. If chrome command-line switch 'enable-sctp-data-channels' is enabled,
1172 // constraint kEnableDtlsSrtp is true, and constaint kEnableRtpDataChannels is
1173 // not set or false, SCTP is allowed (DCT_SCTP);
1174 // 2. If constraint kEnableRtpDataChannels is true, RTP is allowed (DCT_RTP);
1175 // 3. If both 1&2 are false, data channel is not allowed (DCT_NONE).
1176 cricket::DataChannelType data_channel_type_ = cricket::DCT_NONE;
1177 // List of content names for which the remote side triggered an ICE restart.
1178 std::set<std::string> pending_ice_restarts_;
1179
1180 std::unique_ptr<WebRtcSessionDescriptionFactory> webrtc_session_desc_factory_;
1181
1182 // Member variables for caching global options.
1183 cricket::AudioOptions audio_options_;
1184 cricket::VideoOptions video_options_;
Harald Alvestrand8ebba742018-05-31 14:00:34 +02001185
1186 int usage_event_accumulator_ = 0;
Harald Alvestrand19793842018-06-25 12:03:50 +02001187 bool return_histogram_very_quickly_ = false;
Amit Hilbuchbcd39d42019-01-25 17:13:56 -08001188
1189 // This object should be used to generate any SSRC that is not explicitly
1190 // specified by the user (or by the remote party).
1191 // The generator is not used directly, instead it is passed on to the
1192 // channel manager and the session description factory.
1193 rtc::UniqueRandomIdGenerator ssrc_generator_;
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001194};
1195
1196} // namespace webrtc
1197
Steve Anton10542f22019-01-11 09:11:00 -08001198#endif // PC_PEER_CONNECTION_H_