blob: 39cb8674061de58b1d982bfaf1dc3df8bd2852ca [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"
Harald Alvestrandc85328f2019-02-28 07:51:00 +010029#include "pc/sctp_transport.h"
Steve Anton10542f22019-01-11 09:11:00 -080030#include "pc/stats_collector.h"
31#include "pc/stream_collection.h"
Steve Anton10542f22019-01-11 09:11:00 -080032#include "pc/webrtc_session_description_factory.h"
Karl Wiberg5966c502019-02-21 23:55:09 +010033#include "rtc_base/race_checker.h"
Amit Hilbuchdbb49df2019-01-23 14:54:24 -080034#include "rtc_base/unique_id_generator.h"
henrike@webrtc.org28e20752013-07-10 00:45:36 +000035
36namespace webrtc {
henrike@webrtc.org28e20752013-07-10 00:45:36 +000037
deadbeefeb459812015-12-15 19:24:43 -080038class MediaStreamObserver;
perkjf0dcfe22016-03-10 18:32:00 +010039class VideoRtpReceiver;
skvlad11a9cbf2016-10-07 11:53:05 -070040class RtcEventLog;
deadbeefab9b2d12015-10-14 11:33:11 -070041
Steve Anton75737c02017-11-06 10:37:17 -080042// PeerConnection is the implementation of the PeerConnection object as defined
43// by the PeerConnectionInterface API surface.
44// The class currently is solely responsible for the following:
45// - Managing the session state machine (signaling state).
46// - Creating and initializing lower-level objects, like PortAllocator and
47// BaseChannels.
48// - Owning and managing the life cycle of the RtpSender/RtpReceiver and track
49// objects.
50// - Tracking the current and pending local/remote session descriptions.
51// The class currently is jointly responsible for the following:
52// - Parsing and interpreting SDP.
53// - Generating offers and answers based on the current state.
54// - The ICE state machine.
55// - Generating stats.
Steve Anton2d8609c2018-01-23 16:38:46 -080056class PeerConnection : public PeerConnectionInternal,
Steve Anton75737c02017-11-06 10:37:17 -080057 public DataChannelProviderInterface,
Bjorn Mellem175aa2e2018-11-08 11:23:22 -080058 public DataChannelSink,
Zhi Huang365381f2018-04-13 16:44:34 -070059 public JsepTransportController::Observer,
Steve Antonad182762018-09-05 20:22:40 +000060 public rtc::MessageHandler,
henrike@webrtc.org28e20752013-07-10 00:45:36 +000061 public sigslot::has_slots<> {
62 public:
Harald Alvestrand8ebba742018-05-31 14:00:34 +020063 enum class UsageEvent : int {
64 TURN_SERVER_ADDED = 0x01,
65 STUN_SERVER_ADDED = 0x02,
66 DATA_ADDED = 0x04,
67 AUDIO_ADDED = 0x08,
68 VIDEO_ADDED = 0x10,
69 SET_LOCAL_DESCRIPTION_CALLED = 0x20,
70 SET_REMOTE_DESCRIPTION_CALLED = 0x40,
71 CANDIDATE_COLLECTED = 0x80,
72 REMOTE_CANDIDATE_ADDED = 0x100,
73 ICE_STATE_CONNECTED = 0x200,
Qingsi Wang7fc821d2018-07-12 12:54:53 -070074 CLOSE_CALLED = 0x400,
Harald Alvestrand056d8112018-07-16 19:18:58 +020075 PRIVATE_CANDIDATE_COLLECTED = 0x800,
Jeroen de Borstaf242c82019-04-24 13:13:48 -070076 REMOTE_PRIVATE_CANDIDATE_ADDED = 0x1000,
77 MDNS_CANDIDATE_COLLECTED = 0x2000,
78 REMOTE_MDNS_CANDIDATE_ADDED = 0x4000,
79 MAX_VALUE = 0x8000,
Harald Alvestrand8ebba742018-05-31 14:00:34 +020080 };
81
zhihuang38ede132017-06-15 12:52:32 -070082 explicit PeerConnection(PeerConnectionFactory* factory,
83 std::unique_ptr<RtcEventLog> event_log,
84 std::unique_ptr<Call> call);
henrike@webrtc.org28e20752013-07-10 00:45:36 +000085
deadbeef653b8e02015-11-11 12:55:10 -080086 bool Initialize(
87 const PeerConnectionInterface::RTCConfiguration& configuration,
Benjamin Wrightcab58882018-05-02 15:12:47 -070088 PeerConnectionDependencies dependencies);
deadbeef653b8e02015-11-11 12:55:10 -080089
deadbeefa67696b2015-09-29 11:56:26 -070090 rtc::scoped_refptr<StreamCollectionInterface> local_streams() override;
91 rtc::scoped_refptr<StreamCollectionInterface> remote_streams() override;
92 bool AddStream(MediaStreamInterface* local_stream) override;
93 void RemoveStream(MediaStreamInterface* local_stream) override;
henrike@webrtc.org28e20752013-07-10 00:45:36 +000094
Steve Anton2d6c76a2018-01-05 17:10:52 -080095 RTCErrorOr<rtc::scoped_refptr<RtpSenderInterface>> AddTrack(
Steve Antonf9381f02017-12-14 10:23:57 -080096 rtc::scoped_refptr<MediaStreamTrackInterface> track,
Seth Hampson845e8782018-03-02 11:34:10 -080097 const std::vector<std::string>& stream_ids) override;
deadbeefe1f9d832016-01-14 15:35:42 -080098 bool RemoveTrack(RtpSenderInterface* sender) override;
Steve Anton24db5732018-07-23 10:27:33 -070099 RTCError RemoveTrackNew(
100 rtc::scoped_refptr<RtpSenderInterface> sender) override;
deadbeefe1f9d832016-01-14 15:35:42 -0800101
Steve Anton9158ef62017-11-27 13:01:52 -0800102 RTCErrorOr<rtc::scoped_refptr<RtpTransceiverInterface>> AddTransceiver(
103 rtc::scoped_refptr<MediaStreamTrackInterface> track) override;
104 RTCErrorOr<rtc::scoped_refptr<RtpTransceiverInterface>> AddTransceiver(
105 rtc::scoped_refptr<MediaStreamTrackInterface> track,
106 const RtpTransceiverInit& init) override;
107 RTCErrorOr<rtc::scoped_refptr<RtpTransceiverInterface>> AddTransceiver(
108 cricket::MediaType media_type) override;
109 RTCErrorOr<rtc::scoped_refptr<RtpTransceiverInterface>> AddTransceiver(
110 cricket::MediaType media_type,
111 const RtpTransceiverInit& init) override;
112
Steve Anton8c0f7a72017-10-03 10:03:10 -0700113 // Gets the DTLS SSL certificate associated with the audio transport on the
114 // remote side. This will become populated once the DTLS connection with the
115 // peer has been completed, as indicated by the ICE connection state
116 // transitioning to kIceConnectionCompleted.
117 // Note that this will be removed once we implement RTCDtlsTransport which
118 // has standardized method for getting this information.
119 // See https://www.w3.org/TR/webrtc/#rtcdtlstransport-interface
120 std::unique_ptr<rtc::SSLCertificate> GetRemoteAudioSSLCertificate();
121
Zhi Huang70b820f2018-01-27 14:16:15 -0800122 // Version of the above method that returns the full certificate chain.
123 std::unique_ptr<rtc::SSLCertChain> GetRemoteAudioSSLCertChain();
124
deadbeeffac06552015-11-25 11:26:01 -0800125 rtc::scoped_refptr<RtpSenderInterface> CreateSender(
deadbeefbd7d8f72015-12-18 16:58:44 -0800126 const std::string& kind,
127 const std::string& stream_id) override;
deadbeeffac06552015-11-25 11:26:01 -0800128
deadbeef70ab1a12015-09-28 16:53:55 -0700129 std::vector<rtc::scoped_refptr<RtpSenderInterface>> GetSenders()
130 const override;
131 std::vector<rtc::scoped_refptr<RtpReceiverInterface>> GetReceivers()
132 const override;
Steve Anton9158ef62017-11-27 13:01:52 -0800133 std::vector<rtc::scoped_refptr<RtpTransceiverInterface>> GetTransceivers()
134 const override;
deadbeef70ab1a12015-09-28 16:53:55 -0700135
deadbeefa67696b2015-09-29 11:56:26 -0700136 rtc::scoped_refptr<DataChannelInterface> CreateDataChannel(
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000137 const std::string& label,
deadbeefa67696b2015-09-29 11:56:26 -0700138 const DataChannelInit* config) override;
Henrik Boström1df1bf82018-03-20 13:24:20 +0100139 // WARNING: LEGACY. See peerconnectioninterface.h
deadbeefa67696b2015-09-29 11:56:26 -0700140 bool GetStats(StatsObserver* observer,
141 webrtc::MediaStreamTrackInterface* track,
142 StatsOutputLevel level) override;
Henrik Boström1df1bf82018-03-20 13:24:20 +0100143 // Spec-complaint GetStats(). See peerconnectioninterface.h
hbos74e1a4f2016-09-15 23:33:01 -0700144 void GetStats(RTCStatsCollectorCallback* callback) override;
Henrik Boström1df1bf82018-03-20 13:24:20 +0100145 void GetStats(
146 rtc::scoped_refptr<RtpSenderInterface> selector,
147 rtc::scoped_refptr<RTCStatsCollectorCallback> callback) override;
148 void GetStats(
149 rtc::scoped_refptr<RtpReceiverInterface> selector,
150 rtc::scoped_refptr<RTCStatsCollectorCallback> callback) override;
Harald Alvestrand89061872018-01-02 14:08:34 +0100151 void ClearStatsCache() override;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000152
deadbeefa67696b2015-09-29 11:56:26 -0700153 SignalingState signaling_state() override;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000154
deadbeefa67696b2015-09-29 11:56:26 -0700155 IceConnectionState ice_connection_state() override;
Jonas Olsson12046902018-12-06 11:25:14 +0100156 IceConnectionState standardized_ice_connection_state() override;
Jonas Olsson635474e2018-10-18 15:58:17 +0200157 PeerConnectionState peer_connection_state() override;
deadbeefa67696b2015-09-29 11:56:26 -0700158 IceGatheringState ice_gathering_state() override;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000159
deadbeefa67696b2015-09-29 11:56:26 -0700160 const SessionDescriptionInterface* local_description() const override;
161 const SessionDescriptionInterface* remote_description() const override;
deadbeeffe4a8a42016-12-20 17:56:17 -0800162 const SessionDescriptionInterface* current_local_description() const override;
163 const SessionDescriptionInterface* current_remote_description()
164 const override;
165 const SessionDescriptionInterface* pending_local_description() const override;
166 const SessionDescriptionInterface* pending_remote_description()
167 const override;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000168
169 // JSEP01
deadbeefa67696b2015-09-29 11:56:26 -0700170 void CreateOffer(CreateSessionDescriptionObserver* observer,
171 const RTCOfferAnswerOptions& options) override;
htaa2a49d92016-03-04 02:51:39 -0800172 void CreateAnswer(CreateSessionDescriptionObserver* observer,
173 const RTCOfferAnswerOptions& options) override;
deadbeefa67696b2015-09-29 11:56:26 -0700174 void SetLocalDescription(SetSessionDescriptionObserver* observer,
175 SessionDescriptionInterface* desc) override;
Henrik Boströma4ecf552017-11-23 14:17:07 +0000176 void SetRemoteDescription(SetSessionDescriptionObserver* observer,
177 SessionDescriptionInterface* desc) override;
Henrik Boström31638672017-11-23 17:48:32 +0100178 void SetRemoteDescription(
179 std::unique_ptr<SessionDescriptionInterface> desc,
180 rtc::scoped_refptr<SetRemoteDescriptionObserverInterface> observer)
181 override;
deadbeef46c73892016-11-16 19:42:04 -0800182 PeerConnectionInterface::RTCConfiguration GetConfiguration() override;
deadbeefa67696b2015-09-29 11:56:26 -0700183 bool SetConfiguration(
deadbeef293e9262017-01-11 12:28:30 -0800184 const PeerConnectionInterface::RTCConfiguration& configuration,
185 RTCError* error) override;
186 bool SetConfiguration(
187 const PeerConnectionInterface::RTCConfiguration& configuration) override {
188 return SetConfiguration(configuration, nullptr);
189 }
deadbeefa67696b2015-09-29 11:56:26 -0700190 bool AddIceCandidate(const IceCandidateInterface* candidate) override;
Honghai Zhang7fb69db2016-03-14 11:59:18 -0700191 bool RemoveIceCandidates(
192 const std::vector<cricket::Candidate>& candidates) override;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000193
Niels Möller0c4f7be2018-05-07 14:01:37 +0200194 RTCError SetBitrate(const BitrateSettings& bitrate) override;
zstein4b979802017-06-02 14:37:37 -0700195
Alex Narest78609d52017-10-20 10:37:47 +0200196 void SetBitrateAllocationStrategy(
197 std::unique_ptr<rtc::BitrateAllocationStrategy>
198 bitrate_allocation_strategy) override;
199
henrika5f6bf242017-11-01 11:06:56 +0100200 void SetAudioPlayout(bool playout) override;
201 void SetAudioRecording(bool recording) override;
202
Harald Alvestrandad88c882018-11-28 16:47:46 +0100203 rtc::scoped_refptr<DtlsTransportInterface> LookupDtlsTransportByMid(
204 const std::string& mid) override;
Harald Alvestrand4a7b3ac2019-01-17 10:39:40 +0100205 rtc::scoped_refptr<DtlsTransport> LookupDtlsTransportByMidInternal(
206 const std::string& mid);
Harald Alvestrandad88c882018-11-28 16:47:46 +0100207
Harald Alvestrandc85328f2019-02-28 07:51:00 +0100208 rtc::scoped_refptr<SctpTransportInterface> GetSctpTransport() const override;
209
Elad Alon99c3fe52017-10-13 16:29:40 +0200210 RTC_DEPRECATED bool StartRtcEventLog(rtc::PlatformFile file,
211 int64_t max_size_bytes) override;
Bjorn Tereliusde939432017-11-20 17:38:14 +0100212 bool StartRtcEventLog(std::unique_ptr<RtcEventLogOutput> output,
213 int64_t output_period_ms) override;
ivoc14d5dbe2016-07-04 07:06:55 -0700214 void StopRtcEventLog() override;
215
deadbeefa67696b2015-09-29 11:56:26 -0700216 void Close() override;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000217
Steve Anton2d8609c2018-01-23 16:38:46 -0800218 // PeerConnectionInternal implementation.
Karl Wiberg4ae63472019-02-22 00:57:06 +0100219 rtc::Thread* network_thread() const final {
Steve Anton2d8609c2018-01-23 16:38:46 -0800220 return factory_->network_thread();
221 }
Karl Wiberg4ae63472019-02-22 00:57:06 +0100222 rtc::Thread* worker_thread() const final { return factory_->worker_thread(); }
223 rtc::Thread* signaling_thread() const final {
Steve Anton2d8609c2018-01-23 16:38:46 -0800224 return factory_->signaling_thread();
perkjd61bf802016-03-24 03:16:19 -0700225 }
deadbeefab9b2d12015-10-14 11:33:11 -0700226
Karl Wiberga58e1692019-03-26 13:33:43 +0100227 std::string session_id() const override {
228 RTC_DCHECK_RUN_ON(signaling_thread());
229 return session_id_;
230 }
Steve Anton75737c02017-11-06 10:37:17 -0800231
Steve Anton2d8609c2018-01-23 16:38:46 -0800232 bool initial_offerer() const override {
Karl Wiberg2cc368f2019-04-02 11:31:56 +0200233 RTC_DCHECK_RUN_ON(signaling_thread());
Zhi Huange830e682018-03-30 10:48:35 -0700234 return transport_controller_ && transport_controller_->initial_offerer();
Steve Anton2d8609c2018-01-23 16:38:46 -0800235 }
Steve Anton75737c02017-11-06 10:37:17 -0800236
Steve Anton2d8609c2018-01-23 16:38:46 -0800237 std::vector<
238 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>>
Steve Antonb8867112018-02-13 10:07:54 -0800239 GetTransceiversInternal() const override {
Karl Wiberga58e1692019-03-26 13:33:43 +0100240 RTC_DCHECK_RUN_ON(signaling_thread());
Steve Anton2d8609c2018-01-23 16:38:46 -0800241 return transceivers_;
242 }
243
Steve Anton2d8609c2018-01-23 16:38:46 -0800244 sigslot::signal1<DataChannel*>& SignalDataChannelCreated() override {
245 return SignalDataChannelCreated_;
246 }
247
248 cricket::RtpDataChannel* rtp_data_channel() const override {
Steve Anton75737c02017-11-06 10:37:17 -0800249 return rtp_data_channel_;
Steve Anton978b8762017-09-29 12:15:02 -0700250 }
Steve Anton2d8609c2018-01-23 16:38:46 -0800251
Steve Antonbe5e2082018-01-24 15:29:17 -0800252 std::vector<rtc::scoped_refptr<DataChannel>> sctp_data_channels()
Steve Anton2d8609c2018-01-23 16:38:46 -0800253 const override {
Karl Wiberg85a4a932019-03-22 15:29:58 +0100254 RTC_DCHECK_RUN_ON(signaling_thread());
Steve Anton2d8609c2018-01-23 16:38:46 -0800255 return sctp_data_channels_;
256 }
257
Danil Chapovalov66cadcc2018-06-19 16:47:43 +0200258 absl::optional<std::string> sctp_content_name() const override {
Karl Wiberg2cc368f2019-04-02 11:31:56 +0200259 RTC_DCHECK_RUN_ON(signaling_thread());
Zhi Huange830e682018-03-30 10:48:35 -0700260 return sctp_mid_;
Steve Anton75737c02017-11-06 10:37:17 -0800261 }
Steve Anton2d8609c2018-01-23 16:38:46 -0800262
Danil Chapovalov66cadcc2018-06-19 16:47:43 +0200263 absl::optional<std::string> sctp_transport_name() const override;
Steve Anton75737c02017-11-06 10:37:17 -0800264
Qingsi Wang72a43a12018-02-20 16:03:18 -0800265 cricket::CandidateStatsList GetPooledCandidateStats() const override;
Steve Anton5dfde182018-02-06 10:34:40 -0800266 std::map<std::string, std::string> GetTransportNamesByMid() const override;
267 std::map<std::string, cricket::TransportStats> GetTransportStatsByNames(
268 const std::set<std::string>& transport_names) override;
Steve Anton2d8609c2018-01-23 16:38:46 -0800269 Call::Stats GetCallStats() override;
Steve Anton75737c02017-11-06 10:37:17 -0800270
Steve Anton2d8609c2018-01-23 16:38:46 -0800271 bool GetLocalCertificate(
272 const std::string& transport_name,
273 rtc::scoped_refptr<rtc::RTCCertificate>* certificate) override;
Taylor Brandstetterc3928662018-02-23 13:04:51 -0800274 std::unique_ptr<rtc::SSLCertChain> GetRemoteSSLCertChain(
Steve Anton2d8609c2018-01-23 16:38:46 -0800275 const std::string& transport_name) override;
276 bool IceRestartPending(const std::string& content_name) const override;
277 bool NeedsIceRestart(const std::string& content_name) const override;
278 bool GetSslRole(const std::string& content_name, rtc::SSLRole* role) override;
Steve Anton7464fca2018-01-19 11:10:37 -0800279
Harald Alvestrand19793842018-06-25 12:03:50 +0200280 void ReturnHistogramVeryQuicklyForTesting() {
Karl Wibergf73f7d62019-04-08 15:36:53 +0200281 RTC_DCHECK_RUN_ON(signaling_thread());
Harald Alvestrand19793842018-06-25 12:03:50 +0200282 return_histogram_very_quickly_ = true;
283 }
Harald Alvestrand7a1c7f72018-08-01 10:50:16 +0200284 void RequestUsagePatternReportForTesting();
Harald Alvestrand19793842018-06-25 12:03:50 +0200285
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000286 protected:
deadbeefa67696b2015-09-29 11:56:26 -0700287 ~PeerConnection() override;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000288
289 private:
Henrik Boström31638672017-11-23 17:48:32 +0100290 class SetRemoteDescriptionObserverAdapter;
291 friend class SetRemoteDescriptionObserverAdapter;
292
Steve Anton4171afb2017-11-20 10:20:22 -0800293 struct RtpSenderInfo {
294 RtpSenderInfo() : first_ssrc(0) {}
Seth Hampson845e8782018-03-02 11:34:10 -0800295 RtpSenderInfo(const std::string& stream_id,
Steve Anton4171afb2017-11-20 10:20:22 -0800296 const std::string sender_id,
297 uint32_t ssrc)
Seth Hampson845e8782018-03-02 11:34:10 -0800298 : stream_id(stream_id), sender_id(sender_id), first_ssrc(ssrc) {}
Steve Anton4171afb2017-11-20 10:20:22 -0800299 bool operator==(const RtpSenderInfo& other) {
Seth Hampson845e8782018-03-02 11:34:10 -0800300 return this->stream_id == other.stream_id &&
Steve Anton4171afb2017-11-20 10:20:22 -0800301 this->sender_id == other.sender_id &&
302 this->first_ssrc == other.first_ssrc;
deadbeefbda7e0b2015-12-08 17:13:40 -0800303 }
Seth Hampson845e8782018-03-02 11:34:10 -0800304 std::string stream_id;
Steve Anton4171afb2017-11-20 10:20:22 -0800305 std::string sender_id;
306 // An RtpSender can have many SSRCs. The first one is used as a sort of ID
307 // for communicating with the lower layers.
308 uint32_t first_ssrc;
deadbeefab9b2d12015-10-14 11:33:11 -0700309 };
deadbeefab9b2d12015-10-14 11:33:11 -0700310
Steve Antonad182762018-09-05 20:22:40 +0000311 // Implements MessageHandler.
312 void OnMessage(rtc::Message* msg) override;
313
Steve Antonafb0bb72018-02-20 11:35:37 -0800314 // Plan B helpers for getting the voice/video media channels for the single
315 // audio/video transceiver, if it exists.
Karl Wiberg5966c502019-02-21 23:55:09 +0100316 cricket::VoiceMediaChannel* voice_media_channel() const
317 RTC_RUN_ON(signaling_thread());
318 cricket::VideoMediaChannel* video_media_channel() const
319 RTC_RUN_ON(signaling_thread());
Steve Anton60776752018-01-10 11:51:34 -0800320
Steve Anton4171afb2017-11-20 10:20:22 -0800321 std::vector<rtc::scoped_refptr<RtpSenderProxyWithInternal<RtpSenderInternal>>>
Karl Wiberga58e1692019-03-26 13:33:43 +0100322 GetSendersInternal() const RTC_RUN_ON(signaling_thread());
Steve Anton4171afb2017-11-20 10:20:22 -0800323 std::vector<
324 rtc::scoped_refptr<RtpReceiverProxyWithInternal<RtpReceiverInternal>>>
Karl Wiberga58e1692019-03-26 13:33:43 +0100325 GetReceiversInternal() const RTC_RUN_ON(signaling_thread());
Steve Anton4171afb2017-11-20 10:20:22 -0800326
327 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
Karl Wiberg5966c502019-02-21 23:55:09 +0100328 GetAudioTransceiver() const RTC_RUN_ON(signaling_thread());
Steve Anton4171afb2017-11-20 10:20:22 -0800329 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
Karl Wiberg5966c502019-02-21 23:55:09 +0100330 GetVideoTransceiver() const RTC_RUN_ON(signaling_thread());
Steve Anton4171afb2017-11-20 10:20:22 -0800331
Steve Antonafb0bb72018-02-20 11:35:37 -0800332 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
Karl Wiberga58e1692019-03-26 13:33:43 +0100333 GetFirstAudioTransceiver() const RTC_RUN_ON(signaling_thread());
Steve Antonafb0bb72018-02-20 11:35:37 -0800334
deadbeefab9b2d12015-10-14 11:33:11 -0700335 void CreateAudioReceiver(MediaStreamInterface* stream,
Karl Wiberg744310f2019-02-14 10:18:56 +0100336 const RtpSenderInfo& remote_sender_info)
337 RTC_RUN_ON(signaling_thread());
perkjf0dcfe22016-03-10 18:32:00 +0100338
deadbeefab9b2d12015-10-14 11:33:11 -0700339 void CreateVideoReceiver(MediaStreamInterface* stream,
Karl Wiberg744310f2019-02-14 10:18:56 +0100340 const RtpSenderInfo& remote_sender_info)
341 RTC_RUN_ON(signaling_thread());
Henrik Boström933d8b02017-10-10 10:05:16 -0700342 rtc::scoped_refptr<RtpReceiverInterface> RemoveAndStopReceiver(
Karl Wiberg5966c502019-02-21 23:55:09 +0100343 const RtpSenderInfo& remote_sender_info) RTC_RUN_ON(signaling_thread());
korniltsev.anatolyec390b52017-07-24 17:00:25 -0700344
345 // May be called either by AddStream/RemoveStream, or when a track is
346 // added/removed from a stream previously added via AddStream.
Karl Wiberg5966c502019-02-21 23:55:09 +0100347 void AddAudioTrack(AudioTrackInterface* track, MediaStreamInterface* stream)
348 RTC_RUN_ON(signaling_thread());
korniltsev.anatolyec390b52017-07-24 17:00:25 -0700349 void RemoveAudioTrack(AudioTrackInterface* track,
Karl Wiberg5966c502019-02-21 23:55:09 +0100350 MediaStreamInterface* stream)
351 RTC_RUN_ON(signaling_thread());
352 void AddVideoTrack(VideoTrackInterface* track, MediaStreamInterface* stream)
353 RTC_RUN_ON(signaling_thread());
korniltsev.anatolyec390b52017-07-24 17:00:25 -0700354 void RemoveVideoTrack(VideoTrackInterface* track,
Karl Wiberg5966c502019-02-21 23:55:09 +0100355 MediaStreamInterface* stream)
356 RTC_RUN_ON(signaling_thread());
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000357
Steve Antonf9381f02017-12-14 10:23:57 -0800358 // AddTrack implementation when Unified Plan is specified.
359 RTCErrorOr<rtc::scoped_refptr<RtpSenderInterface>> AddTrackUnifiedPlan(
360 rtc::scoped_refptr<MediaStreamTrackInterface> track,
Karl Wiberga58e1692019-03-26 13:33:43 +0100361 const std::vector<std::string>& stream_ids)
362 RTC_RUN_ON(signaling_thread());
Steve Antonf9381f02017-12-14 10:23:57 -0800363 // AddTrack implementation when Plan B is specified.
364 RTCErrorOr<rtc::scoped_refptr<RtpSenderInterface>> AddTrackPlanB(
365 rtc::scoped_refptr<MediaStreamTrackInterface> track,
Karl Wiberg5966c502019-02-21 23:55:09 +0100366 const std::vector<std::string>& stream_ids)
367 RTC_RUN_ON(signaling_thread());
Steve Antonf9381f02017-12-14 10:23:57 -0800368
369 // Returns the first RtpTransceiver suitable for a newly added track, if such
370 // transceiver is available.
371 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
372 FindFirstTransceiverForAddedTrack(
Karl Wiberga58e1692019-03-26 13:33:43 +0100373 rtc::scoped_refptr<MediaStreamTrackInterface> track)
374 RTC_RUN_ON(signaling_thread());
Steve Antonf9381f02017-12-14 10:23:57 -0800375
Steve Antonf9381f02017-12-14 10:23:57 -0800376 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
Karl Wiberga58e1692019-03-26 13:33:43 +0100377 FindTransceiverBySender(rtc::scoped_refptr<RtpSenderInterface> sender)
378 RTC_RUN_ON(signaling_thread());
Steve Antonf9381f02017-12-14 10:23:57 -0800379
Steve Anton22da89f2018-01-25 13:58:07 -0800380 // Internal implementation for AddTransceiver family of methods. If
381 // |fire_callback| is set, fires OnRenegotiationNeeded callback if successful.
Steve Anton9158ef62017-11-27 13:01:52 -0800382 RTCErrorOr<rtc::scoped_refptr<RtpTransceiverInterface>> AddTransceiver(
383 cricket::MediaType media_type,
384 rtc::scoped_refptr<MediaStreamTrackInterface> track,
Steve Anton22da89f2018-01-25 13:58:07 -0800385 const RtpTransceiverInit& init,
Karl Wiberg744310f2019-02-14 10:18:56 +0100386 bool fire_callback = true) RTC_RUN_ON(signaling_thread());
Steve Anton9158ef62017-11-27 13:01:52 -0800387
Steve Anton02ee47c2018-01-10 16:26:06 -0800388 rtc::scoped_refptr<RtpSenderProxyWithInternal<RtpSenderInternal>>
389 CreateSender(cricket::MediaType media_type,
Steve Anton111fdfd2018-06-25 13:03:36 -0700390 const std::string& id,
Steve Anton02ee47c2018-01-10 16:26:06 -0800391 rtc::scoped_refptr<MediaStreamTrackInterface> track,
Florent Castelli892acf02018-10-01 22:47:20 +0200392 const std::vector<std::string>& stream_ids,
393 const std::vector<RtpEncodingParameters>& send_encodings);
Steve Anton02ee47c2018-01-10 16:26:06 -0800394
395 rtc::scoped_refptr<RtpReceiverProxyWithInternal<RtpReceiverInternal>>
396 CreateReceiver(cricket::MediaType media_type, const std::string& receiver_id);
397
Steve Antonf9381f02017-12-14 10:23:57 -0800398 // Create a new RtpTransceiver of the given type and add it to the list of
399 // transceivers.
400 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
Steve Anton02ee47c2018-01-10 16:26:06 -0800401 CreateAndAddTransceiver(
402 rtc::scoped_refptr<RtpSenderProxyWithInternal<RtpSenderInternal>> sender,
403 rtc::scoped_refptr<RtpReceiverProxyWithInternal<RtpReceiverInternal>>
Karl Wiberga58e1692019-03-26 13:33:43 +0100404 receiver) RTC_RUN_ON(signaling_thread());
Steve Antonf9381f02017-12-14 10:23:57 -0800405
Karl Wiberg744310f2019-02-14 10:18:56 +0100406 void SetIceConnectionState(IceConnectionState new_state)
407 RTC_RUN_ON(signaling_thread());
Jonas Olsson635474e2018-10-18 15:58:17 +0200408 void SetStandardizedIceConnectionState(
Karl Wiberg744310f2019-02-14 10:18:56 +0100409 PeerConnectionInterface::IceConnectionState new_state)
410 RTC_RUN_ON(signaling_thread());
Jonas Olsson635474e2018-10-18 15:58:17 +0200411 void SetConnectionState(
Karl Wiberg744310f2019-02-14 10:18:56 +0100412 PeerConnectionInterface::PeerConnectionState new_state)
413 RTC_RUN_ON(signaling_thread());
Jonas Olsson635474e2018-10-18 15:58:17 +0200414
Steve Antonba818672017-11-06 10:21:57 -0800415 // Called any time the IceGatheringState changes
Karl Wiberg744310f2019-02-14 10:18:56 +0100416 void OnIceGatheringChange(IceGatheringState new_state)
417 RTC_RUN_ON(signaling_thread());
Steve Antonba818672017-11-06 10:21:57 -0800418 // New ICE candidate has been gathered.
Karl Wiberg744310f2019-02-14 10:18:56 +0100419 void OnIceCandidate(std::unique_ptr<IceCandidateInterface> candidate)
420 RTC_RUN_ON(signaling_thread());
Steve Antonba818672017-11-06 10:21:57 -0800421 // Some local ICE candidates have been removed.
Karl Wiberg744310f2019-02-14 10:18:56 +0100422 void OnIceCandidatesRemoved(const std::vector<cricket::Candidate>& candidates)
423 RTC_RUN_ON(signaling_thread());
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000424
Steve Antonba818672017-11-06 10:21:57 -0800425 // Update the state, signaling if necessary.
Karl Wiberg744310f2019-02-14 10:18:56 +0100426 void ChangeSignalingState(SignalingState signaling_state)
427 RTC_RUN_ON(signaling_thread());
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000428
deadbeefeb459812015-12-15 19:24:43 -0800429 // Signals from MediaStreamObserver.
430 void OnAudioTrackAdded(AudioTrackInterface* track,
Karl Wiberg744310f2019-02-14 10:18:56 +0100431 MediaStreamInterface* stream)
432 RTC_RUN_ON(signaling_thread());
deadbeefeb459812015-12-15 19:24:43 -0800433 void OnAudioTrackRemoved(AudioTrackInterface* track,
Karl Wiberg744310f2019-02-14 10:18:56 +0100434 MediaStreamInterface* stream)
435 RTC_RUN_ON(signaling_thread());
deadbeefeb459812015-12-15 19:24:43 -0800436 void OnVideoTrackAdded(VideoTrackInterface* track,
Karl Wiberg744310f2019-02-14 10:18:56 +0100437 MediaStreamInterface* stream)
438 RTC_RUN_ON(signaling_thread());
deadbeefeb459812015-12-15 19:24:43 -0800439 void OnVideoTrackRemoved(VideoTrackInterface* track,
Karl Wiberg744310f2019-02-14 10:18:56 +0100440 MediaStreamInterface* stream)
441 RTC_RUN_ON(signaling_thread());
deadbeefeb459812015-12-15 19:24:43 -0800442
Henrik Boström31638672017-11-23 17:48:32 +0100443 void PostSetSessionDescriptionSuccess(
444 SetSessionDescriptionObserver* observer);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000445 void PostSetSessionDescriptionFailure(SetSessionDescriptionObserver* observer,
Steve Antonad182762018-09-05 20:22:40 +0000446 RTCError&& error);
deadbeefab9b2d12015-10-14 11:33:11 -0700447 void PostCreateSessionDescriptionFailure(
448 CreateSessionDescriptionObserver* observer,
Harald Alvestrand5081c0c2018-03-09 15:18:03 +0100449 RTCError error);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000450
Steve Anton8a006912017-12-04 15:25:56 -0800451 // Synchronous implementations of SetLocalDescription/SetRemoteDescription
452 // that return an RTCError instead of invoking a callback.
453 RTCError ApplyLocalDescription(
454 std::unique_ptr<SessionDescriptionInterface> desc);
455 RTCError ApplyRemoteDescription(
456 std::unique_ptr<SessionDescriptionInterface> desc);
457
Steve Antondcc3c022017-12-22 16:02:54 -0800458 // Updates the local RtpTransceivers according to the JSEP rules. Called as
459 // part of setting the local/remote description.
460 RTCError UpdateTransceiversAndDataChannels(
461 cricket::ContentSource source,
Seth Hampsonae8a90a2018-02-13 15:33:48 -0800462 const SessionDescriptionInterface& new_session,
463 const SessionDescriptionInterface* old_local_description,
Karl Wiberg106d92d2019-02-14 10:17:47 +0100464 const SessionDescriptionInterface* old_remote_description)
465 RTC_RUN_ON(signaling_thread());
Steve Antondcc3c022017-12-22 16:02:54 -0800466
467 // Either creates or destroys the transceiver's BaseChannel according to the
468 // given media section.
469 RTCError UpdateTransceiverChannel(
470 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
471 transceiver,
472 const cricket::ContentInfo& content,
Karl Wiberg5966c502019-02-21 23:55:09 +0100473 const cricket::ContentGroup* bundle_group) RTC_RUN_ON(signaling_thread());
Steve Antondcc3c022017-12-22 16:02:54 -0800474
Steve Antonfa2260d2017-12-28 16:38:23 -0800475 // Either creates or destroys the local data channel according to the given
476 // media section.
477 RTCError UpdateDataChannel(cricket::ContentSource source,
478 const cricket::ContentInfo& content,
Karl Wiberg106d92d2019-02-14 10:17:47 +0100479 const cricket::ContentGroup* bundle_group)
480 RTC_RUN_ON(signaling_thread());
Steve Antonfa2260d2017-12-28 16:38:23 -0800481
Steve Antondcc3c022017-12-22 16:02:54 -0800482 // Associate the given transceiver according to the JSEP rules.
483 RTCErrorOr<
484 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>>
485 AssociateTransceiver(cricket::ContentSource source,
Seth Hampsonae8a90a2018-02-13 15:33:48 -0800486 SdpType type,
Steve Antondcc3c022017-12-22 16:02:54 -0800487 size_t mline_index,
488 const cricket::ContentInfo& content,
Seth Hampsonae8a90a2018-02-13 15:33:48 -0800489 const cricket::ContentInfo* old_local_content,
Karl Wiberg5966c502019-02-21 23:55:09 +0100490 const cricket::ContentInfo* old_remote_content)
491 RTC_RUN_ON(signaling_thread());
Steve Antondcc3c022017-12-22 16:02:54 -0800492
493 // Returns the RtpTransceiver, if found, that is associated to the given MID.
494 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
Karl Wiberg5966c502019-02-21 23:55:09 +0100495 GetAssociatedTransceiver(const std::string& mid) const
496 RTC_RUN_ON(signaling_thread());
Steve Antondcc3c022017-12-22 16:02:54 -0800497
498 // Returns the RtpTransceiver, if found, that was assigned to the given mline
499 // index in CreateOffer.
500 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
Karl Wiberg5966c502019-02-21 23:55:09 +0100501 GetTransceiverByMLineIndex(size_t mline_index) const
502 RTC_RUN_ON(signaling_thread());
Steve Antondcc3c022017-12-22 16:02:54 -0800503
504 // Returns an RtpTransciever, if available, that can be used to receive the
505 // given media type according to JSEP rules.
506 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
Karl Wiberg5966c502019-02-21 23:55:09 +0100507 FindAvailableTransceiverToReceive(cricket::MediaType media_type) const
508 RTC_RUN_ON(signaling_thread());
Steve Antondcc3c022017-12-22 16:02:54 -0800509
Steve Antoned10bd92017-12-05 10:52:59 -0800510 // Returns the media section in the given session description that is
511 // associated with the RtpTransceiver. Returns null if none found or this
512 // RtpTransceiver is not associated. Logic varies depending on the
513 // SdpSemantics specified in the configuration.
514 const cricket::ContentInfo* FindMediaSectionForTransceiver(
515 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
516 transceiver,
Karl Wiberg5966c502019-02-21 23:55:09 +0100517 const SessionDescriptionInterface* sdesc) const
518 RTC_RUN_ON(signaling_thread());
Steve Antoned10bd92017-12-05 10:52:59 -0800519
Henrik Boströmafa07dd2018-12-20 11:06:02 +0100520 // Runs the algorithm **set the associated remote streams** specified in
521 // https://w3c.github.io/webrtc-pc/#set-associated-remote-streams.
522 void SetAssociatedRemoteStreams(
523 rtc::scoped_refptr<RtpReceiverInternal> receiver,
524 const std::vector<std::string>& stream_ids,
525 std::vector<rtc::scoped_refptr<MediaStreamInterface>>* added_streams,
Karl Wiberg1e1e1022019-03-22 14:27:22 +0100526 std::vector<rtc::scoped_refptr<MediaStreamInterface>>* removed_streams)
527 RTC_RUN_ON(signaling_thread());
Henrik Boströmafa07dd2018-12-20 11:06:02 +0100528
Steve Anton0f5400a2018-07-17 14:25:36 -0700529 // Runs the algorithm **process the removal of a remote track** specified in
530 // the WebRTC specification.
531 // This method will update the following lists:
532 // |remove_list| is the list of transceivers for which the receiving track is
533 // being removed.
534 // |removed_streams| is the list of streams which no longer have a receiving
535 // track so should be removed.
536 // https://w3c.github.io/webrtc-pc/#process-remote-track-removal
537 void ProcessRemovalOfRemoteTrack(
538 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
539 transceiver,
540 std::vector<rtc::scoped_refptr<RtpTransceiverInterface>>* remove_list,
Karl Wiberg1e1e1022019-03-22 14:27:22 +0100541 std::vector<rtc::scoped_refptr<MediaStreamInterface>>* removed_streams)
542 RTC_RUN_ON(signaling_thread());
Steve Anton0f5400a2018-07-17 14:25:36 -0700543
Henrik Boströmafa07dd2018-12-20 11:06:02 +0100544 void RemoveRemoteStreamsIfEmpty(
545 const std::vector<rtc::scoped_refptr<MediaStreamInterface>>&
546 remote_streams,
Karl Wiberg1e1e1022019-03-22 14:27:22 +0100547 std::vector<rtc::scoped_refptr<MediaStreamInterface>>* removed_streams)
548 RTC_RUN_ON(signaling_thread());
Henrik Boströmafa07dd2018-12-20 11:06:02 +0100549
Steve Anton52d86772018-02-20 15:48:12 -0800550 void OnNegotiationNeeded();
551
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000552 bool IsClosed() const {
Karl Wiberg8d2e2282019-02-17 13:00:07 +0100553 RTC_DCHECK_RUN_ON(signaling_thread());
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000554 return signaling_state_ == PeerConnectionInterface::kClosed;
555 }
556
deadbeefab9b2d12015-10-14 11:33:11 -0700557 // Returns a MediaSessionOptions struct with options decided by |options|,
558 // the local MediaStreams and DataChannels.
Steve Antondcc3c022017-12-22 16:02:54 -0800559 void GetOptionsForOffer(const PeerConnectionInterface::RTCOfferAnswerOptions&
560 offer_answer_options,
Karl Wiberg5966c502019-02-21 23:55:09 +0100561 cricket::MediaSessionOptions* session_options)
562 RTC_RUN_ON(signaling_thread());
Steve Antondcc3c022017-12-22 16:02:54 -0800563 void GetOptionsForPlanBOffer(
564 const PeerConnectionInterface::RTCOfferAnswerOptions&
565 offer_answer_options,
Karl Wiberg5966c502019-02-21 23:55:09 +0100566 cricket::MediaSessionOptions* session_options)
567 RTC_RUN_ON(signaling_thread());
Steve Antondcc3c022017-12-22 16:02:54 -0800568 void GetOptionsForUnifiedPlanOffer(
569 const PeerConnectionInterface::RTCOfferAnswerOptions&
570 offer_answer_options,
Karl Wiberg5966c502019-02-21 23:55:09 +0100571 cricket::MediaSessionOptions* session_options)
572 RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700573
Karl Wiberg5966c502019-02-21 23:55:09 +0100574 RTCError HandleLegacyOfferOptions(const RTCOfferAnswerOptions& options)
575 RTC_RUN_ON(signaling_thread());
Steve Anton22da89f2018-01-25 13:58:07 -0800576 void RemoveRecvDirectionFromReceivingTransceiversOfType(
Karl Wiberga58e1692019-03-26 13:33:43 +0100577 cricket::MediaType media_type) RTC_RUN_ON(signaling_thread());
Steve Anton22da89f2018-01-25 13:58:07 -0800578 void AddUpToOneReceivingTransceiverOfType(cricket::MediaType media_type);
579 std::vector<
580 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>>
Karl Wiberga58e1692019-03-26 13:33:43 +0100581 GetReceivingTransceiversOfType(cricket::MediaType media_type)
582 RTC_RUN_ON(signaling_thread());
Steve Anton22da89f2018-01-25 13:58:07 -0800583
deadbeefab9b2d12015-10-14 11:33:11 -0700584 // Returns a MediaSessionOptions struct with options decided by
585 // |constraints|, the local MediaStreams and DataChannels.
Steve Antondcc3c022017-12-22 16:02:54 -0800586 void GetOptionsForAnswer(const RTCOfferAnswerOptions& offer_answer_options,
Karl Wiberg5966c502019-02-21 23:55:09 +0100587 cricket::MediaSessionOptions* session_options)
588 RTC_RUN_ON(signaling_thread());
Steve Antondcc3c022017-12-22 16:02:54 -0800589 void GetOptionsForPlanBAnswer(
590 const PeerConnectionInterface::RTCOfferAnswerOptions&
591 offer_answer_options,
Karl Wiberg5966c502019-02-21 23:55:09 +0100592 cricket::MediaSessionOptions* session_options)
593 RTC_RUN_ON(signaling_thread());
Steve Antondcc3c022017-12-22 16:02:54 -0800594 void GetOptionsForUnifiedPlanAnswer(
595 const PeerConnectionInterface::RTCOfferAnswerOptions&
596 offer_answer_options,
Karl Wiberg5966c502019-02-21 23:55:09 +0100597 cricket::MediaSessionOptions* session_options)
598 RTC_RUN_ON(signaling_thread());
htaa2a49d92016-03-04 02:51:39 -0800599
zhihuang1c378ed2017-08-17 14:10:50 -0700600 // Generates MediaDescriptionOptions for the |session_opts| based on existing
601 // local description or remote description.
602 void GenerateMediaDescriptionOptions(
603 const SessionDescriptionInterface* session_desc,
Steve Anton1d03a752017-11-27 14:30:09 -0800604 RtpTransceiverDirection audio_direction,
605 RtpTransceiverDirection video_direction,
Danil Chapovalov66cadcc2018-06-19 16:47:43 +0200606 absl::optional<size_t>* audio_index,
607 absl::optional<size_t>* video_index,
608 absl::optional<size_t>* data_index,
Karl Wiberg85a4a932019-03-22 15:29:58 +0100609 cricket::MediaSessionOptions* session_options)
610 RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700611
Steve Antonfa2260d2017-12-28 16:38:23 -0800612 // Generates the active MediaDescriptionOptions for the local data channel
613 // given the specified MID.
614 cricket::MediaDescriptionOptions GetMediaDescriptionOptionsForActiveData(
Karl Wiberg85a4a932019-03-22 15:29:58 +0100615 const std::string& mid) const RTC_RUN_ON(signaling_thread());
Steve Antonfa2260d2017-12-28 16:38:23 -0800616
617 // Generates the rejected MediaDescriptionOptions for the local data channel
618 // given the specified MID.
619 cricket::MediaDescriptionOptions GetMediaDescriptionOptionsForRejectedData(
Karl Wiberg85a4a932019-03-22 15:29:58 +0100620 const std::string& mid) const RTC_RUN_ON(signaling_thread());
Steve Antonfa2260d2017-12-28 16:38:23 -0800621
622 // Returns the MID for the data section associated with either the
623 // RtpDataChannel or SCTP data channel, if it has been set. If no data
624 // channels are configured this will return nullopt.
Karl Wiberg2cc368f2019-04-02 11:31:56 +0200625 absl::optional<std::string> GetDataMid() const RTC_RUN_ON(signaling_thread());
Steve Antonfa2260d2017-12-28 16:38:23 -0800626
Steve Anton4171afb2017-11-20 10:20:22 -0800627 // Remove all local and remote senders of type |media_type|.
deadbeeffaac4972015-11-12 15:33:07 -0800628 // Called when a media type is rejected (m-line set to port 0).
Karl Wiberg744310f2019-02-14 10:18:56 +0100629 void RemoveSenders(cricket::MediaType media_type)
630 RTC_RUN_ON(signaling_thread());
deadbeeffaac4972015-11-12 15:33:07 -0800631
deadbeefbda7e0b2015-12-08 17:13:40 -0800632 // Makes sure a MediaStreamTrack is created for each StreamParam in |streams|,
633 // and existing MediaStreamTracks are removed if there is no corresponding
634 // StreamParam. If |default_track_needed| is true, a default MediaStreamTrack
635 // is created if it doesn't exist; if false, it's removed if it exists.
636 // |media_type| is the type of the |streams| and can be either audio or video.
deadbeefab9b2d12015-10-14 11:33:11 -0700637 // If a new MediaStream is created it is added to |new_streams|.
Steve Anton4171afb2017-11-20 10:20:22 -0800638 void UpdateRemoteSendersList(
deadbeefab9b2d12015-10-14 11:33:11 -0700639 const std::vector<cricket::StreamParams>& streams,
deadbeefbda7e0b2015-12-08 17:13:40 -0800640 bool default_track_needed,
deadbeefab9b2d12015-10-14 11:33:11 -0700641 cricket::MediaType media_type,
Karl Wiberg744310f2019-02-14 10:18:56 +0100642 StreamCollection* new_streams) RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700643
Steve Anton4171afb2017-11-20 10:20:22 -0800644 // Triggered when a remote sender has been seen for the first time in a remote
deadbeefab9b2d12015-10-14 11:33:11 -0700645 // session description. It creates a remote MediaStreamTrackInterface
646 // implementation and triggers CreateAudioReceiver or CreateVideoReceiver.
Steve Anton4171afb2017-11-20 10:20:22 -0800647 void OnRemoteSenderAdded(const RtpSenderInfo& sender_info,
Karl Wiberg744310f2019-02-14 10:18:56 +0100648 cricket::MediaType media_type)
649 RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700650
Steve Anton4171afb2017-11-20 10:20:22 -0800651 // Triggered when a remote sender has been removed from a remote session
652 // description. It removes the remote sender with id |sender_id| from a remote
deadbeefab9b2d12015-10-14 11:33:11 -0700653 // MediaStream and triggers DestroyAudioReceiver or DestroyVideoReceiver.
Steve Anton4171afb2017-11-20 10:20:22 -0800654 void OnRemoteSenderRemoved(const RtpSenderInfo& sender_info,
Karl Wiberg744310f2019-02-14 10:18:56 +0100655 cricket::MediaType media_type)
656 RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700657
658 // Finds remote MediaStreams without any tracks and removes them from
659 // |remote_streams_| and notifies the observer that the MediaStreams no longer
660 // exist.
Karl Wiberg744310f2019-02-14 10:18:56 +0100661 void UpdateEndedRemoteMediaStreams() RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700662
deadbeefab9b2d12015-10-14 11:33:11 -0700663 // Loops through the vector of |streams| and finds added and removed
664 // StreamParams since last time this method was called.
Steve Anton4171afb2017-11-20 10:20:22 -0800665 // For each new or removed StreamParam, OnLocalSenderSeen or
666 // OnLocalSenderRemoved is invoked.
667 void UpdateLocalSenders(const std::vector<cricket::StreamParams>& streams,
Karl Wiberg5966c502019-02-21 23:55:09 +0100668 cricket::MediaType media_type)
669 RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700670
Steve Anton4171afb2017-11-20 10:20:22 -0800671 // Triggered when a local sender has been seen for the first time in a local
deadbeefab9b2d12015-10-14 11:33:11 -0700672 // session description.
673 // This method triggers CreateAudioSender or CreateVideoSender if the rtp
674 // streams in the local SessionDescription can be mapped to a MediaStreamTrack
675 // in a MediaStream in |local_streams_|
Steve Anton4171afb2017-11-20 10:20:22 -0800676 void OnLocalSenderAdded(const RtpSenderInfo& sender_info,
Karl Wiberg5966c502019-02-21 23:55:09 +0100677 cricket::MediaType media_type)
678 RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700679
Steve Anton4171afb2017-11-20 10:20:22 -0800680 // Triggered when a local sender has been removed from a local session
deadbeefab9b2d12015-10-14 11:33:11 -0700681 // description.
682 // This method triggers DestroyAudioSender or DestroyVideoSender if a stream
683 // has been removed from the local SessionDescription and the stream can be
684 // mapped to a MediaStreamTrack in a MediaStream in |local_streams_|.
Steve Anton4171afb2017-11-20 10:20:22 -0800685 void OnLocalSenderRemoved(const RtpSenderInfo& sender_info,
Karl Wiberga58e1692019-03-26 13:33:43 +0100686 cricket::MediaType media_type)
687 RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700688
Karl Wiberg85a4a932019-03-22 15:29:58 +0100689 void UpdateLocalRtpDataChannels(const cricket::StreamParamsVec& streams)
690 RTC_RUN_ON(signaling_thread());
Karl Wiberg106d92d2019-02-14 10:17:47 +0100691 void UpdateRemoteRtpDataChannels(const cricket::StreamParamsVec& streams)
692 RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700693 void UpdateClosingRtpDataChannels(
694 const std::vector<std::string>& active_channels,
Karl Wiberg85a4a932019-03-22 15:29:58 +0100695 bool is_local_update) RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700696 void CreateRemoteRtpDataChannel(const std::string& label,
Karl Wiberg106d92d2019-02-14 10:17:47 +0100697 uint32_t remote_ssrc)
698 RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700699
700 // Creates channel and adds it to the collection of DataChannels that will
701 // be offered in a SessionDescription.
702 rtc::scoped_refptr<DataChannel> InternalCreateDataChannel(
703 const std::string& label,
Karl Wiberg106d92d2019-02-14 10:17:47 +0100704 const InternalDataChannelInit* config) RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700705
706 // Checks if any data channel has been added.
Karl Wiberg85a4a932019-03-22 15:29:58 +0100707 bool HasDataChannels() const RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700708
Karl Wiberg85a4a932019-03-22 15:29:58 +0100709 void AllocateSctpSids(rtc::SSLRole role) RTC_RUN_ON(signaling_thread());
710 void OnSctpDataChannelClosed(DataChannel* channel)
711 RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700712
Karl Wiberg85a4a932019-03-22 15:29:58 +0100713 void OnDataChannelDestroyed() RTC_RUN_ON(signaling_thread());
Steve Antonba818672017-11-06 10:21:57 -0800714 // Called when a valid data channel OPEN message is received.
deadbeefab9b2d12015-10-14 11:33:11 -0700715 void OnDataChannelOpenMessage(const std::string& label,
Karl Wiberg106d92d2019-02-14 10:17:47 +0100716 const InternalDataChannelInit& config)
717 RTC_RUN_ON(signaling_thread());
718
Bjorn Mellem175aa2e2018-11-08 11:23:22 -0800719 // Parses and handles open messages. Returns true if the message is an open
720 // message, false otherwise.
721 bool HandleOpenMessage_s(const cricket::ReceiveDataParams& params,
722 const rtc::CopyOnWriteBuffer& buffer)
723 RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700724
Steve Anton4171afb2017-11-20 10:20:22 -0800725 // Returns true if the PeerConnection is configured to use Unified Plan
726 // semantics for creating offers/answers and setting local/remote
727 // descriptions. If this is true the RtpTransceiver API will also be available
728 // to the user. If this is false, Plan B semantics are assumed.
Steve Anton79e79602017-11-20 10:25:56 -0800729 // TODO(bugs.webrtc.org/8530): Flip the default to be Unified Plan once
730 // sufficient time has passed.
Karl Wiberg5966c502019-02-21 23:55:09 +0100731 bool IsUnifiedPlan() const RTC_RUN_ON(signaling_thread()) {
Steve Anton79e79602017-11-20 10:25:56 -0800732 return configuration_.sdp_semantics == SdpSemantics::kUnifiedPlan;
733 }
Steve Anton4171afb2017-11-20 10:20:22 -0800734
Steve Anton06817cd2018-12-18 15:55:30 -0800735 // The offer/answer machinery assumes the media section MID is present and
736 // unique. To support legacy end points that do not supply a=mid lines, this
737 // method will modify the session description to add MIDs generated according
738 // to the SDP semantics.
Karl Wiberg5966c502019-02-21 23:55:09 +0100739 void FillInMissingRemoteMids(cricket::SessionDescription* remote_description)
740 RTC_RUN_ON(signaling_thread());
Steve Anton06817cd2018-12-18 15:55:30 -0800741
Steve Anton4171afb2017-11-20 10:20:22 -0800742 // Is there an RtpSender of the given type?
Karl Wiberg5966c502019-02-21 23:55:09 +0100743 bool HasRtpSender(cricket::MediaType type) const
744 RTC_RUN_ON(signaling_thread());
deadbeeffac06552015-11-25 11:26:01 -0800745
Steve Anton4171afb2017-11-20 10:20:22 -0800746 // Return the RtpSender with the given track attached.
747 rtc::scoped_refptr<RtpSenderProxyWithInternal<RtpSenderInternal>>
Karl Wiberga58e1692019-03-26 13:33:43 +0100748 FindSenderForTrack(MediaStreamTrackInterface* track) const
749 RTC_RUN_ON(signaling_thread());
deadbeef70ab1a12015-09-28 16:53:55 -0700750
Steve Anton4171afb2017-11-20 10:20:22 -0800751 // Return the RtpSender with the given id, or null if none exists.
752 rtc::scoped_refptr<RtpSenderProxyWithInternal<RtpSenderInternal>>
Karl Wiberga58e1692019-03-26 13:33:43 +0100753 FindSenderById(const std::string& sender_id) const
754 RTC_RUN_ON(signaling_thread());
Steve Anton4171afb2017-11-20 10:20:22 -0800755
756 // Return the RtpReceiver with the given id, or null if none exists.
757 rtc::scoped_refptr<RtpReceiverProxyWithInternal<RtpReceiverInternal>>
Karl Wiberga58e1692019-03-26 13:33:43 +0100758 FindReceiverById(const std::string& receiver_id) const
759 RTC_RUN_ON(signaling_thread());
Steve Anton4171afb2017-11-20 10:20:22 -0800760
761 std::vector<RtpSenderInfo>* GetRemoteSenderInfos(
762 cricket::MediaType media_type);
763 std::vector<RtpSenderInfo>* GetLocalSenderInfos(
764 cricket::MediaType media_type);
765 const RtpSenderInfo* FindSenderInfo(const std::vector<RtpSenderInfo>& infos,
Emircan Uysalerbc609ea2018-03-27 21:57:18 +0000766 const std::string& stream_id,
Steve Anton4171afb2017-11-20 10:20:22 -0800767 const std::string sender_id) const;
deadbeefab9b2d12015-10-14 11:33:11 -0700768
769 // Returns the specified SCTP DataChannel in sctp_data_channels_,
770 // or nullptr if not found.
Karl Wiberg85a4a932019-03-22 15:29:58 +0100771 DataChannel* FindDataChannelBySid(int sid) const
772 RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700773
Taylor Brandstettera1c30352016-05-13 08:15:11 -0700774 // Called when first configuring the port allocator.
Karl Wibergfb3be392019-03-22 14:13:22 +0100775 struct InitializePortAllocatorResult {
776 bool enable_ipv6;
777 };
778 InitializePortAllocatorResult InitializePortAllocator_n(
Harald Alvestrandb2a74782018-06-28 13:54:07 +0200779 const cricket::ServerAddresses& stun_servers,
780 const std::vector<cricket::RelayServerConfig>& turn_servers,
781 const RTCConfiguration& configuration);
deadbeef293e9262017-01-11 12:28:30 -0800782 // Called when SetConfiguration is called to apply the supported subset
783 // of the configuration on the network thread.
784 bool ReconfigurePortAllocator_n(
785 const cricket::ServerAddresses& stun_servers,
786 const std::vector<cricket::RelayServerConfig>& turn_servers,
787 IceTransportsType type,
788 int candidate_pool_size,
Jonas Orelandbdcee282017-10-10 14:01:40 +0200789 bool prune_turn_ports,
Qingsi Wangdb53f8e2018-02-20 14:45:49 -0800790 webrtc::TurnCustomizer* turn_customizer,
Karl Wiberg739506e2019-04-03 11:37:28 +0200791 absl::optional<int> stun_candidate_keepalive_interval,
792 bool have_local_description);
Taylor Brandstettera1c30352016-05-13 08:15:11 -0700793
Elad Alon99c3fe52017-10-13 16:29:40 +0200794 // Starts output of an RTC event log to the given output object.
ivoc14d5dbe2016-07-04 07:06:55 -0700795 // This function should only be called from the worker thread.
Bjorn Tereliusde939432017-11-20 17:38:14 +0100796 bool StartRtcEventLog_w(std::unique_ptr<RtcEventLogOutput> output,
797 int64_t output_period_ms);
Elad Alon99c3fe52017-10-13 16:29:40 +0200798
Elad Alonacb24172017-10-06 14:32:13 +0200799 // Stops recording an RTC event log.
ivoc14d5dbe2016-07-04 07:06:55 -0700800 // This function should only be called from the worker thread.
801 void StopRtcEventLog_w();
802
Steve Anton038834f2017-07-14 15:59:59 -0700803 // Ensures the configuration doesn't have any parameters with invalid values,
804 // or values that conflict with other parameters.
805 //
806 // Returns RTCError::OK() if there are no issues.
807 RTCError ValidateConfiguration(const RTCConfiguration& config) const;
808
Steve Antonba818672017-11-06 10:21:57 -0800809 cricket::ChannelManager* channel_manager() const;
Steve Antonba818672017-11-06 10:21:57 -0800810
Steve Antonf8470812017-12-04 10:46:21 -0800811 enum class SessionError {
812 kNone, // No error.
813 kContent, // Error in BaseChannel SetLocalContent/SetRemoteContent.
814 kTransport, // Error from the underlying transport.
815 };
816
Steve Anton75737c02017-11-06 10:37:17 -0800817 // Returns the last error in the session. See the enum above for details.
Karl Wiberga58e1692019-03-26 13:33:43 +0100818 SessionError session_error() const RTC_RUN_ON(signaling_thread()) {
819 return session_error_;
820 }
Steve Antonf8470812017-12-04 10:46:21 -0800821 const std::string& session_error_desc() const { return session_error_desc_; }
Steve Anton75737c02017-11-06 10:37:17 -0800822
Amit Hilbuchdd9390c2018-11-13 16:26:05 -0800823 cricket::ChannelInterface* GetChannel(const std::string& content_name);
Steve Anton75737c02017-11-06 10:37:17 -0800824
825 // Get current SSL role used by SCTP's underlying transport.
826 bool GetSctpSslRole(rtc::SSLRole* role);
827
Steve Anton75737c02017-11-06 10:37:17 -0800828 cricket::IceConfig ParseIceConfig(
829 const PeerConnectionInterface::RTCConfiguration& config) const;
830
Steve Anton75737c02017-11-06 10:37:17 -0800831 // Implements DataChannelProviderInterface.
832 bool SendData(const cricket::SendDataParams& params,
833 const rtc::CopyOnWriteBuffer& payload,
834 cricket::SendDataResult* result) override;
835 bool ConnectDataChannel(DataChannel* webrtc_data_channel) override;
836 void DisconnectDataChannel(DataChannel* webrtc_data_channel) override;
837 void AddSctpDataStream(int sid) override;
838 void RemoveSctpDataStream(int sid) override;
839 bool ReadyToSendData() const override;
840
841 cricket::DataChannelType data_channel_type() const;
842
Bjorn Mellem175aa2e2018-11-08 11:23:22 -0800843 // Implements DataChannelSink.
844 void OnDataReceived(int channel_id,
845 DataMessageType type,
846 const rtc::CopyOnWriteBuffer& buffer) override;
847 void OnChannelClosing(int channel_id) override;
848 void OnChannelClosed(int channel_id) override;
849
Steve Anton75737c02017-11-06 10:37:17 -0800850 // Called when an RTCCertificate is generated or retrieved by
851 // WebRTCSessionDescriptionFactory. Should happen before setLocalDescription.
852 void OnCertificateReady(
853 const rtc::scoped_refptr<rtc::RTCCertificate>& certificate);
854 void OnDtlsSrtpSetupFailure(cricket::BaseChannel*, bool rtcp);
855
Steve Anton75737c02017-11-06 10:37:17 -0800856 // Non-const versions of local_description()/remote_description(), for use
857 // internally.
Karl Wiberg739506e2019-04-03 11:37:28 +0200858 SessionDescriptionInterface* mutable_local_description()
859 RTC_RUN_ON(signaling_thread()) {
Steve Anton75737c02017-11-06 10:37:17 -0800860 return pending_local_description_ ? pending_local_description_.get()
861 : current_local_description_.get();
862 }
Karl Wiberg739506e2019-04-03 11:37:28 +0200863 SessionDescriptionInterface* mutable_remote_description()
864 RTC_RUN_ON(signaling_thread()) {
Steve Anton75737c02017-11-06 10:37:17 -0800865 return pending_remote_description_ ? pending_remote_description_.get()
866 : current_remote_description_.get();
867 }
868
869 // Updates the error state, signaling if necessary.
Steve Antonf8470812017-12-04 10:46:21 -0800870 void SetSessionError(SessionError error, const std::string& error_desc);
Steve Anton75737c02017-11-06 10:37:17 -0800871
Zhi Huange830e682018-03-30 10:48:35 -0700872 RTCError UpdateSessionState(SdpType type,
873 cricket::ContentSource source,
874 const cricket::SessionDescription* description);
Steve Anton75737c02017-11-06 10:37:17 -0800875 // Push the media parts of the local or remote session description
876 // down to all of the channels.
Karl Wiberg5966c502019-02-21 23:55:09 +0100877 RTCError PushdownMediaDescription(SdpType type, cricket::ContentSource source)
878 RTC_RUN_ON(signaling_thread());
Karl Wiberg739506e2019-04-03 11:37:28 +0200879 bool PushdownSctpParameters_n(cricket::ContentSource source,
880 int local_sctp_port,
881 int remote_sctp_port);
Steve Anton75737c02017-11-06 10:37:17 -0800882
Steve Anton8a006912017-12-04 15:25:56 -0800883 RTCError PushdownTransportDescription(cricket::ContentSource source,
Steve Anton3828c062017-12-06 10:34:51 -0800884 SdpType type);
Steve Anton75737c02017-11-06 10:37:17 -0800885
886 // Returns true and the TransportInfo of the given |content_name|
887 // from |description|. Returns false if it's not available.
888 static bool GetTransportDescription(
889 const cricket::SessionDescription* description,
890 const std::string& content_name,
891 cricket::TransportDescription* info);
892
Steve Anton75737c02017-11-06 10:37:17 -0800893 // Enables media channels to allow sending of media.
Steve Antoned10bd92017-12-05 10:52:59 -0800894 // This enables media to flow on all configured audio/video channels and the
895 // RtpDataChannel.
Karl Wiberga58e1692019-03-26 13:33:43 +0100896 void EnableSending() RTC_RUN_ON(signaling_thread());
Steve Anton3fe1b152017-12-12 10:20:08 -0800897
Steve Anton8af21862017-12-15 11:20:13 -0800898 // Destroys all BaseChannels and destroys the SCTP data channel, if present.
Karl Wiberg85a4a932019-03-22 15:29:58 +0100899 void DestroyAllChannels() RTC_RUN_ON(signaling_thread());
Steve Anton3fe1b152017-12-12 10:20:08 -0800900
Steve Anton75737c02017-11-06 10:37:17 -0800901 // Returns the media index for a local ice candidate given the content name.
902 // Returns false if the local session description does not have a media
903 // content called |content_name|.
904 bool GetLocalCandidateMediaIndex(const std::string& content_name,
Karl Wiberg739506e2019-04-03 11:37:28 +0200905 int* sdp_mline_index)
906 RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -0800907 // Uses all remote candidates in |remote_desc| in this session.
908 bool UseCandidatesInSessionDescription(
Karl Wiberg744310f2019-02-14 10:18:56 +0100909 const SessionDescriptionInterface* remote_desc)
910 RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -0800911 // Uses |candidate| in this session.
Karl Wiberg744310f2019-02-14 10:18:56 +0100912 bool UseCandidate(const IceCandidateInterface* candidate)
913 RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -0800914 // Deletes the corresponding channel of contents that don't exist in |desc|.
915 // |desc| can be null. This means that all channels are deleted.
Karl Wiberg5966c502019-02-21 23:55:09 +0100916 void RemoveUnusedChannels(const cricket::SessionDescription* desc)
917 RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -0800918
919 // Allocates media channels based on the |desc|. If |desc| doesn't have
920 // the BUNDLE option, this method will disable BUNDLE in PortAllocator.
921 // This method will also delete any existing media channels before creating.
Karl Wiberg5966c502019-02-21 23:55:09 +0100922 RTCError CreateChannels(const cricket::SessionDescription& desc)
923 RTC_RUN_ON(signaling_thread());
Steve Antondcc3c022017-12-22 16:02:54 -0800924
925 // If the BUNDLE policy is max-bundle, then we know for sure that all
926 // transports will be bundled from the start. This method returns the BUNDLE
927 // group if that's the case, or null if BUNDLE will be negotiated later. An
928 // error is returned if max-bundle is specified but the session description
929 // does not have a BUNDLE group.
930 RTCErrorOr<const cricket::ContentGroup*> GetEarlyBundleGroup(
Karl Wiberg5966c502019-02-21 23:55:09 +0100931 const cricket::SessionDescription& desc) const
932 RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -0800933
934 // Helper methods to create media channels.
Karl Wiberg5966c502019-02-21 23:55:09 +0100935 cricket::VoiceChannel* CreateVoiceChannel(const std::string& mid)
936 RTC_RUN_ON(signaling_thread());
937 cricket::VideoChannel* CreateVideoChannel(const std::string& mid)
938 RTC_RUN_ON(signaling_thread());
939 bool CreateDataChannel(const std::string& mid) RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -0800940
Zhi Huange830e682018-03-30 10:48:35 -0700941 bool CreateSctpTransport_n(const std::string& mid);
Steve Anton75737c02017-11-06 10:37:17 -0800942 // For bundling.
Steve Anton75737c02017-11-06 10:37:17 -0800943 void DestroySctpTransport_n();
944 // SctpTransport signal handlers. Needed to marshal signals from the network
945 // to signaling thread.
946 void OnSctpTransportReadyToSendData_n();
947 // This may be called with "false" if the direction of the m= section causes
948 // us to tear down the SCTP connection.
949 void OnSctpTransportReadyToSendData_s(bool ready);
950 void OnSctpTransportDataReceived_n(const cricket::ReceiveDataParams& params,
951 const rtc::CopyOnWriteBuffer& payload);
952 // Beyond just firing the signal to the signaling thread, listens to SCTP
953 // CONTROL messages on unused SIDs and processes them as OPEN messages.
954 void OnSctpTransportDataReceived_s(const cricket::ReceiveDataParams& params,
955 const rtc::CopyOnWriteBuffer& payload);
Taylor Brandstettercdd05f02018-05-31 13:23:32 -0700956 void OnSctpClosingProcedureStartedRemotely_n(int sid);
957 void OnSctpClosingProcedureComplete_n(int sid);
Steve Anton75737c02017-11-06 10:37:17 -0800958
Bjorn Mellem175aa2e2018-11-08 11:23:22 -0800959 bool SetupMediaTransportForDataChannels_n(const std::string& mid)
960 RTC_RUN_ON(network_thread());
961 void OnMediaTransportStateChanged_n() RTC_RUN_ON(network_thread());
962 void TeardownMediaTransportForDataChannels_n() RTC_RUN_ON(network_thread());
963
Steve Anton75737c02017-11-06 10:37:17 -0800964 bool ValidateBundleSettings(const cricket::SessionDescription* desc);
965 bool HasRtcpMuxEnabled(const cricket::ContentInfo* content);
966 // Below methods are helper methods which verifies SDP.
Steve Anton8a006912017-12-04 15:25:56 -0800967 RTCError ValidateSessionDescription(const SessionDescriptionInterface* sdesc,
Karl Wiberg5966c502019-02-21 23:55:09 +0100968 cricket::ContentSource source)
969 RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -0800970
Steve Anton3828c062017-12-06 10:34:51 -0800971 // Check if a call to SetLocalDescription is acceptable with a session
972 // description of the given type.
973 bool ExpectSetLocalDescription(SdpType type);
974 // Check if a call to SetRemoteDescription is acceptable with a session
975 // description of the given type.
976 bool ExpectSetRemoteDescription(SdpType type);
Steve Anton75737c02017-11-06 10:37:17 -0800977 // Verifies a=setup attribute as per RFC 5763.
978 bool ValidateDtlsSetupAttribute(const cricket::SessionDescription* desc,
Steve Anton3828c062017-12-06 10:34:51 -0800979 SdpType type);
Steve Anton75737c02017-11-06 10:37:17 -0800980
981 // Returns true if we are ready to push down the remote candidate.
982 // |remote_desc| is the new remote description, or NULL if the current remote
983 // description should be used. Output |valid| is true if the candidate media
984 // index is valid.
985 bool ReadyToUseRemoteCandidate(const IceCandidateInterface* candidate,
986 const SessionDescriptionInterface* remote_desc,
Karl Wiberga58e1692019-03-26 13:33:43 +0100987 bool* valid) RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -0800988
989 // Returns true if SRTP (either using DTLS-SRTP or SDES) is required by
990 // this session.
Karl Wiberg739506e2019-04-03 11:37:28 +0200991 bool SrtpRequired() const RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -0800992
Zhi Huange830e682018-03-30 10:48:35 -0700993 // JsepTransportController signal handlers.
Karl Wiberg744310f2019-02-14 10:18:56 +0100994 void OnTransportControllerConnectionState(cricket::IceConnectionState state)
995 RTC_RUN_ON(signaling_thread());
996 void OnTransportControllerGatheringState(cricket::IceGatheringState state)
997 RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -0800998 void OnTransportControllerCandidatesGathered(
999 const std::string& transport_name,
Karl Wiberg744310f2019-02-14 10:18:56 +01001000 const std::vector<cricket::Candidate>& candidates)
1001 RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -08001002 void OnTransportControllerCandidatesRemoved(
Karl Wiberg744310f2019-02-14 10:18:56 +01001003 const std::vector<cricket::Candidate>& candidates)
1004 RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -08001005 void OnTransportControllerDtlsHandshakeError(rtc::SSLHandshakeError error);
1006
Steve Antonf8470812017-12-04 10:46:21 -08001007 const char* SessionErrorToString(SessionError error) const;
Karl Wiberga58e1692019-03-26 13:33:43 +01001008 std::string GetSessionErrorMsg() RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -08001009
Steve Anton8e20f172018-03-06 10:55:04 -08001010 // Report the UMA metric SdpFormatReceived for the given remote offer.
1011 void ReportSdpFormatReceived(const SessionDescriptionInterface& remote_offer);
1012
Steve Anton0ffaaa22018-02-23 10:31:30 -08001013 // Report inferred negotiated SDP semantics from a local/remote answer to the
1014 // UMA observer.
1015 void ReportNegotiatedSdpSemantics(const SessionDescriptionInterface& answer);
1016
Steve Anton75737c02017-11-06 10:37:17 -08001017 // Invoked when TransportController connection completion is signaled.
1018 // Reports stats for all transports in use.
Karl Wiberga58e1692019-03-26 13:33:43 +01001019 void ReportTransportStats() RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -08001020
1021 // Gather the usage of IPv4/IPv6 as best connection.
1022 void ReportBestConnectionState(const cricket::TransportStats& stats);
1023
Steve Antonc7b964c2018-02-01 14:39:45 -08001024 void ReportNegotiatedCiphers(const cricket::TransportStats& stats,
Karl Wiberg739506e2019-04-03 11:37:28 +02001025 const std::set<cricket::MediaType>& media_types)
1026 RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -08001027
Harald Alvestrand8ebba742018-05-31 14:00:34 +02001028 void NoteUsageEvent(UsageEvent event);
Karl Wiberg744310f2019-02-14 10:18:56 +01001029 void ReportUsagePattern() const RTC_RUN_ON(signaling_thread());
Harald Alvestrand8ebba742018-05-31 14:00:34 +02001030
Steve Anton75737c02017-11-06 10:37:17 -08001031 void OnSentPacket_w(const rtc::SentPacket& sent_packet);
1032
Karl Wiberga58e1692019-03-26 13:33:43 +01001033 const std::string GetTransportName(const std::string& content_name)
1034 RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -08001035
Steve Anton6fec8802017-12-04 10:37:29 -08001036 // Destroys and clears the BaseChannel associated with the given transceiver,
1037 // if such channel is set.
1038 void DestroyTransceiverChannel(
1039 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
1040 transceiver);
1041
1042 // Destroys the RTP data channel and/or the SCTP data channel and clears it.
Karl Wiberg85a4a932019-03-22 15:29:58 +01001043 void DestroyDataChannel() RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -08001044
Amit Hilbuchdd9390c2018-11-13 16:26:05 -08001045 // Destroys the given ChannelInterface.
1046 // The channel cannot be accessed after this method is called.
1047 void DestroyChannelInterface(cricket::ChannelInterface* channel);
Steve Anton6fec8802017-12-04 10:37:29 -08001048
Zhi Huang365381f2018-04-13 16:44:34 -07001049 // JsepTransportController::Observer override.
Taylor Brandstettercbaa2542018-04-16 16:42:14 -07001050 //
1051 // Called by |transport_controller_| when processing transport information
1052 // from a session description, and the mapping from m= sections to transports
1053 // changed (as a result of BUNDLE negotiation, or m= sections being
1054 // rejected).
Piotr (Peter) Slatalacc8e8bb2018-11-15 08:26:19 -08001055 bool OnTransportChanged(const std::string& mid,
1056 RtpTransportInternal* rtp_transport,
Harald Alvestrandc85328f2019-02-28 07:51:00 +01001057 rtc::scoped_refptr<DtlsTransport> dtls_transport,
Karl Wibergac025892019-03-26 13:08:37 +01001058 MediaTransportInterface* media_transport) override;
Zhi Huange830e682018-03-30 10:48:35 -07001059
Harald Alvestrand7a1c7f72018-08-01 10:50:16 +02001060 // Returns the observer. Will crash on CHECK if the observer is removed.
Karl Wiberg744310f2019-02-14 10:18:56 +01001061 PeerConnectionObserver* Observer() const RTC_RUN_ON(signaling_thread());
Harald Alvestrand7a1c7f72018-08-01 10:50:16 +02001062
Benjamin Wright8c27cca2018-10-25 10:16:44 -07001063 // Returns the CryptoOptions for this PeerConnection. This will always
1064 // return the RTCConfiguration.crypto_options if set and will only default
1065 // back to the PeerConnectionFactory settings if nothing was set.
Karl Wiberg5966c502019-02-21 23:55:09 +01001066 CryptoOptions GetCryptoOptions() RTC_RUN_ON(signaling_thread());
Benjamin Wright8c27cca2018-10-25 10:16:44 -07001067
Anton Sukhanov98a462c2018-10-17 13:15:42 -07001068 // Returns rtp transport, result can not be nullptr.
Karl Wiberg2cc368f2019-04-02 11:31:56 +02001069 RtpTransportInternal* GetRtpTransport(const std::string& mid)
1070 RTC_RUN_ON(signaling_thread()) {
Anton Sukhanov98a462c2018-10-17 13:15:42 -07001071 auto rtp_transport = transport_controller_->GetRtpTransport(mid);
1072 RTC_DCHECK(rtp_transport);
1073 return rtp_transport;
1074 }
1075
1076 // Returns media transport, if PeerConnection was created with configuration
1077 // to use media transport. Otherwise returns nullptr.
Karl Wiberg5966c502019-02-21 23:55:09 +01001078 MediaTransportInterface* GetMediaTransport(const std::string& mid)
1079 RTC_RUN_ON(signaling_thread()) {
Anton Sukhanov98a462c2018-10-17 13:15:42 -07001080 auto media_transport = transport_controller_->GetMediaTransport(mid);
Bjorn Mellema9bbd862018-11-02 09:07:48 -07001081 RTC_DCHECK((configuration_.use_media_transport ||
1082 configuration_.use_media_transport_for_data_channels) ==
Piotr (Peter) Slatala97fc11f2018-10-18 12:57:59 -07001083 (media_transport != nullptr))
1084 << "configuration_.use_media_transport="
1085 << configuration_.use_media_transport
Bjorn Mellema9bbd862018-11-02 09:07:48 -07001086 << ", configuration_.use_media_transport_for_data_channels="
1087 << configuration_.use_media_transport_for_data_channels
Piotr (Peter) Slatala97fc11f2018-10-18 12:57:59 -07001088 << ", (media_transport != nullptr)=" << (media_transport != nullptr);
Anton Sukhanov98a462c2018-10-17 13:15:42 -07001089 return media_transport;
1090 }
1091
Guido Urdaneta70c2db12019-04-16 12:24:14 +02001092 void UpdateNegotiationNeeded();
1093 bool CheckIfNegotiationIsNeeded();
1094
Karl Wiberg106d92d2019-02-14 10:17:47 +01001095 sigslot::signal1<DataChannel*> SignalDataChannelCreated_
1096 RTC_GUARDED_BY(signaling_thread());
Steve Anton2d8609c2018-01-23 16:38:46 -08001097
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001098 // Storing the factory as a scoped reference pointer ensures that the memory
1099 // in the PeerConnectionFactoryImpl remains available as long as the
1100 // PeerConnection is running. It is passed to PeerConnection as a raw pointer.
1101 // However, since the reference counting is done in the
deadbeefab9b2d12015-10-14 11:33:11 -07001102 // PeerConnectionFactoryInterface all instances created using the raw pointer
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001103 // will refer to the same reference count.
Karl Wiberg744310f2019-02-14 10:18:56 +01001104 const rtc::scoped_refptr<PeerConnectionFactory> factory_;
1105 PeerConnectionObserver* observer_ RTC_GUARDED_BY(signaling_thread()) =
1106 nullptr;
terelius33860252017-05-12 23:37:18 -07001107
1108 // The EventLog needs to outlive |call_| (and any other object that uses it).
Karl Wibergb03ab712019-02-14 11:59:57 +01001109 std::unique_ptr<RtcEventLog> event_log_ RTC_GUARDED_BY(worker_thread());
1110
1111 // Points to the same thing as `event_log_`. Since it's const, we may read the
1112 // pointer (but not touch the object) from any thread.
1113 RtcEventLog* const event_log_ptr_ RTC_PT_GUARDED_BY(worker_thread());
terelius33860252017-05-12 23:37:18 -07001114
Karl Wiberg8d2e2282019-02-17 13:00:07 +01001115 SignalingState signaling_state_ RTC_GUARDED_BY(signaling_thread()) = kStable;
1116 IceConnectionState ice_connection_state_ RTC_GUARDED_BY(signaling_thread()) =
1117 kIceConnectionNew;
1118 PeerConnectionInterface::IceConnectionState standardized_ice_connection_state_
1119 RTC_GUARDED_BY(signaling_thread()) = kIceConnectionNew;
1120 PeerConnectionInterface::PeerConnectionState connection_state_
1121 RTC_GUARDED_BY(signaling_thread()) = PeerConnectionState::kNew;
Jonas Olsson635474e2018-10-18 15:58:17 +02001122
Karl Wiberg8d2e2282019-02-17 13:00:07 +01001123 IceGatheringState ice_gathering_state_ RTC_GUARDED_BY(signaling_thread()) =
1124 kIceGatheringNew;
Karl Wiberg5966c502019-02-21 23:55:09 +01001125 PeerConnectionInterface::RTCConfiguration configuration_
1126 RTC_GUARDED_BY(signaling_thread());
1127
1128 // Cache configuration_.use_media_transport so that we can access it from
1129 // other threads.
1130 // TODO(bugs.webrtc.org/9987): Caching just this bool and allowing the data
1131 // it's derived from to change is not necessarily sound. Stop doing it.
1132 rtc::RaceChecker use_media_transport_race_checker_;
1133 bool use_media_transport_ RTC_GUARDED_BY(use_media_transport_race_checker_) =
1134 configuration_.use_media_transport;
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001135
Zach Steine20867f2018-08-02 13:20:15 -07001136 // TODO(zstein): |async_resolver_factory_| can currently be nullptr if it
1137 // is not injected. It should be required once chromium supplies it.
Karl Wibergfb3be392019-03-22 14:13:22 +01001138 std::unique_ptr<AsyncResolverFactory> async_resolver_factory_
1139 RTC_GUARDED_BY(signaling_thread());
1140 std::unique_ptr<cricket::PortAllocator>
1141 port_allocator_; // TODO(bugs.webrtc.org/9987): Accessed on both
1142 // signaling and network thread.
1143 std::unique_ptr<rtc::SSLCertificateVerifier>
1144 tls_cert_verifier_; // TODO(bugs.webrtc.org/9987): Accessed on both
1145 // signaling and network thread.
deadbeefab9b2d12015-10-14 11:33:11 -07001146
zhihuang8f65cdf2016-05-06 18:40:30 -07001147 // One PeerConnection has only one RTCP CNAME.
1148 // https://tools.ietf.org/html/draft-ietf-rtcweb-rtp-usage-26#section-4.9
Karl Wibergfb3be392019-03-22 14:13:22 +01001149 const std::string rtcp_cname_;
zhihuang8f65cdf2016-05-06 18:40:30 -07001150
deadbeefab9b2d12015-10-14 11:33:11 -07001151 // Streams added via AddStream.
Karl Wiberg1e1e1022019-03-22 14:27:22 +01001152 const rtc::scoped_refptr<StreamCollection> local_streams_
1153 RTC_GUARDED_BY(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -07001154 // Streams created as a result of SetRemoteDescription.
Karl Wiberg1e1e1022019-03-22 14:27:22 +01001155 const rtc::scoped_refptr<StreamCollection> remote_streams_
1156 RTC_GUARDED_BY(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -07001157
Karl Wiberg1e1e1022019-03-22 14:27:22 +01001158 std::vector<std::unique_ptr<MediaStreamObserver>> stream_observers_
1159 RTC_GUARDED_BY(signaling_thread());
deadbeefeb459812015-12-15 19:24:43 -08001160
Steve Anton4171afb2017-11-20 10:20:22 -08001161 // These lists store sender info seen in local/remote descriptions.
Karl Wibergc70999e2019-03-22 15:14:27 +01001162 std::vector<RtpSenderInfo> remote_audio_sender_infos_
1163 RTC_GUARDED_BY(signaling_thread());
1164 std::vector<RtpSenderInfo> remote_video_sender_infos_
1165 RTC_GUARDED_BY(signaling_thread());
1166 std::vector<RtpSenderInfo> local_audio_sender_infos_
1167 RTC_GUARDED_BY(signaling_thread());
1168 std::vector<RtpSenderInfo> local_video_sender_infos_
1169 RTC_GUARDED_BY(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -07001170
Karl Wiberg85a4a932019-03-22 15:29:58 +01001171 SctpSidAllocator sid_allocator_ RTC_GUARDED_BY(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -07001172 // label -> DataChannel
Karl Wiberg85a4a932019-03-22 15:29:58 +01001173 std::map<std::string, rtc::scoped_refptr<DataChannel>> rtp_data_channels_
1174 RTC_GUARDED_BY(signaling_thread());
1175 std::vector<rtc::scoped_refptr<DataChannel>> sctp_data_channels_
1176 RTC_GUARDED_BY(signaling_thread());
1177 std::vector<rtc::scoped_refptr<DataChannel>> sctp_data_channels_to_free_
1178 RTC_GUARDED_BY(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -07001179
Karl Wiberg85a4a932019-03-22 15:29:58 +01001180 bool remote_peer_supports_msid_ RTC_GUARDED_BY(signaling_thread()) = false;
deadbeef70ab1a12015-09-28 16:53:55 -07001181
Karl Wibergac025892019-03-26 13:08:37 +01001182 // The unique_ptr belongs to the worker thread, but the Call object manages
1183 // its own thread safety.
Karl Wiberg6cab5c82019-03-26 09:57:01 +01001184 std::unique_ptr<Call> call_ RTC_GUARDED_BY(worker_thread());
1185
1186 // Points to the same thing as `call_`. Since it's const, we may read the
Karl Wibergac025892019-03-26 13:08:37 +01001187 // pointer from any thread.
1188 Call* const call_ptr_;
Karl Wiberg6cab5c82019-03-26 09:57:01 +01001189
1190 std::unique_ptr<StatsCollector> stats_
1191 RTC_GUARDED_BY(signaling_thread()); // A pointer is passed to senders_
1192 rtc::scoped_refptr<RTCStatsCollector> stats_collector_
1193 RTC_GUARDED_BY(signaling_thread());
terelius33860252017-05-12 23:37:18 -07001194
deadbeefa601f5c2016-06-06 14:27:39 -07001195 std::vector<
Steve Anton4171afb2017-11-20 10:20:22 -08001196 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>>
Karl Wiberg2cc368f2019-04-02 11:31:56 +02001197 transceivers_; // TODO(bugs.webrtc.org/9987): Accessed on both signaling
1198 // and network thread.
1199
Henrik Boström5b147782018-12-04 11:25:05 +01001200 // In Unified Plan, if we encounter remote SDP that does not contain an a=msid
1201 // line we create and use a stream with a random ID for our receivers. This is
1202 // to support legacy endpoints that do not support the a=msid attribute (as
1203 // opposed to streamless tracks with "a=msid:-").
Karl Wiberga58e1692019-03-26 13:33:43 +01001204 rtc::scoped_refptr<MediaStreamInterface> missing_msid_default_stream_
1205 RTC_GUARDED_BY(signaling_thread());
Amit Hilbuchae3df542019-01-07 12:13:08 -08001206 // MIDs will be generated using this generator which will keep track of
1207 // all the MIDs that have been seen over the life of the PeerConnection.
Karl Wiberga58e1692019-03-26 13:33:43 +01001208 rtc::UniqueStringGenerator mid_generator_ RTC_GUARDED_BY(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -08001209
Karl Wiberga58e1692019-03-26 13:33:43 +01001210 SessionError session_error_ RTC_GUARDED_BY(signaling_thread()) =
1211 SessionError::kNone;
1212 std::string session_error_desc_ RTC_GUARDED_BY(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -08001213
Karl Wiberga58e1692019-03-26 13:33:43 +01001214 std::string session_id_ RTC_GUARDED_BY(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -08001215
Karl Wiberg2cc368f2019-04-02 11:31:56 +02001216 std::unique_ptr<JsepTransportController>
1217 transport_controller_; // TODO(bugs.webrtc.org/9987): Accessed on both
1218 // signaling and network thread.
1219 std::unique_ptr<cricket::SctpTransportInternalFactory>
1220 sctp_factory_; // TODO(bugs.webrtc.org/9987): Accessed on both
1221 // signaling and network thread.
Steve Anton75737c02017-11-06 10:37:17 -08001222 // |rtp_data_channel_| is used if in RTP data channel mode, |sctp_transport_|
1223 // when using SCTP.
Karl Wiberg2cc368f2019-04-02 11:31:56 +02001224 cricket::RtpDataChannel* rtp_data_channel_ =
1225 nullptr; // TODO(bugs.webrtc.org/9987): Accessed on both
1226 // signaling and some other thread.
Steve Anton75737c02017-11-06 10:37:17 -08001227
Harald Alvestrandc85328f2019-02-28 07:51:00 +01001228 cricket::SctpTransportInternal* cricket_sctp_transport() {
1229 return sctp_transport_->internal();
1230 }
Karl Wiberg2cc368f2019-04-02 11:31:56 +02001231 rtc::scoped_refptr<SctpTransport>
1232 sctp_transport_; // TODO(bugs.webrtc.org/9987): Accessed on both
1233 // signaling and network thread.
1234
Zhi Huange830e682018-03-30 10:48:35 -07001235 // |sctp_mid_| is the content name (MID) in SDP.
Karl Wiberg2cc368f2019-04-02 11:31:56 +02001236 absl::optional<std::string>
1237 sctp_mid_; // TODO(bugs.webrtc.org/9987): Accessed on both signaling
1238 // and network thread.
1239
Steve Anton75737c02017-11-06 10:37:17 -08001240 // Value cached on signaling thread. Only updated when SctpReadyToSendData
1241 // fires on the signaling thread.
Karl Wiberg2cc368f2019-04-02 11:31:56 +02001242 bool sctp_ready_to_send_data_ RTC_GUARDED_BY(signaling_thread()) = false;
1243
Steve Anton75737c02017-11-06 10:37:17 -08001244 // Same as signals provided by SctpTransport, but these are guaranteed to
1245 // fire on the signaling thread, whereas SctpTransport fires on the networking
1246 // thread.
1247 // |sctp_invoker_| is used so that any signals queued on the signaling thread
1248 // from the network thread are immediately discarded if the SctpTransport is
1249 // destroyed (due to m= section being rejected).
1250 // TODO(deadbeef): Use a proxy object to ensure that method calls/signals
1251 // are marshalled to the right thread. Could almost use proxy.h for this,
1252 // but it doesn't have a mechanism for marshalling sigslot::signals
Karl Wiberg7a651c6e2019-04-02 13:00:46 +02001253 std::unique_ptr<rtc::AsyncInvoker> sctp_invoker_
1254 RTC_GUARDED_BY(network_thread());
1255 sigslot::signal1<bool> SignalSctpReadyToSendData
1256 RTC_GUARDED_BY(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -08001257 sigslot::signal2<const cricket::ReceiveDataParams&,
1258 const rtc::CopyOnWriteBuffer&>
Karl Wiberg7a651c6e2019-04-02 13:00:46 +02001259 SignalSctpDataReceived RTC_GUARDED_BY(signaling_thread());
1260 sigslot::signal1<int> SignalSctpClosingProcedureStartedRemotely
1261 RTC_GUARDED_BY(signaling_thread());
1262 sigslot::signal1<int> SignalSctpClosingProcedureComplete
1263 RTC_GUARDED_BY(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -08001264
Bjorn Mellem175aa2e2018-11-08 11:23:22 -08001265 // Whether this peer is the caller. Set when the local description is applied.
1266 absl::optional<bool> is_caller_ RTC_GUARDED_BY(signaling_thread());
1267
1268 // Content name (MID) for media transport data channels in SDP.
Karl Wibergd9bf7202019-04-02 19:36:24 +02001269 absl::optional<std::string>
1270 media_transport_data_mid_; // TODO(bugs.webrtc.org/9987): Accessed on
1271 // both signaling and network thread.
Bjorn Mellem175aa2e2018-11-08 11:23:22 -08001272
1273 // Media transport used for data channels. Thread-safe.
Karl Wibergd9bf7202019-04-02 19:36:24 +02001274 MediaTransportInterface* media_transport_ =
1275 nullptr; // TODO(bugs.webrtc.org/9987): Object is thread safe, but
1276 // pointer accessed on both signaling and network thread.
Bjorn Mellem175aa2e2018-11-08 11:23:22 -08001277
1278 // Cached value of whether the media transport is ready to send.
1279 bool media_transport_ready_to_send_data_ RTC_GUARDED_BY(signaling_thread()) =
1280 false;
1281
1282 // Used to invoke media transport signals on the signaling thread.
Karl Wiberg739506e2019-04-03 11:37:28 +02001283 std::unique_ptr<rtc::AsyncInvoker> media_transport_invoker_
1284 RTC_GUARDED_BY(network_thread());
Bjorn Mellem175aa2e2018-11-08 11:23:22 -08001285
1286 // Identical to the signals for SCTP, but from media transport:
1287 sigslot::signal1<bool> SignalMediaTransportWritable_s
1288 RTC_GUARDED_BY(signaling_thread());
1289 sigslot::signal2<const cricket::ReceiveDataParams&,
1290 const rtc::CopyOnWriteBuffer&>
1291 SignalMediaTransportReceivedData_s RTC_GUARDED_BY(signaling_thread());
1292 sigslot::signal1<int> SignalMediaTransportChannelClosing_s
1293 RTC_GUARDED_BY(signaling_thread());
1294 sigslot::signal1<int> SignalMediaTransportChannelClosed_s
1295 RTC_GUARDED_BY(signaling_thread());
1296
Karl Wiberg739506e2019-04-03 11:37:28 +02001297 std::unique_ptr<SessionDescriptionInterface> current_local_description_
1298 RTC_GUARDED_BY(signaling_thread());
1299 std::unique_ptr<SessionDescriptionInterface> pending_local_description_
1300 RTC_GUARDED_BY(signaling_thread());
1301 std::unique_ptr<SessionDescriptionInterface> current_remote_description_
1302 RTC_GUARDED_BY(signaling_thread());
1303 std::unique_ptr<SessionDescriptionInterface> pending_remote_description_
1304 RTC_GUARDED_BY(signaling_thread());
1305 bool dtls_enabled_ RTC_GUARDED_BY(signaling_thread()) = false;
Steve Anton75737c02017-11-06 10:37:17 -08001306 // Specifies which kind of data channel is allowed. This is controlled
1307 // by the chrome command-line flag and constraints:
1308 // 1. If chrome command-line switch 'enable-sctp-data-channels' is enabled,
1309 // constraint kEnableDtlsSrtp is true, and constaint kEnableRtpDataChannels is
1310 // not set or false, SCTP is allowed (DCT_SCTP);
1311 // 2. If constraint kEnableRtpDataChannels is true, RTP is allowed (DCT_RTP);
1312 // 3. If both 1&2 are false, data channel is not allowed (DCT_NONE).
Karl Wibergf73f7d62019-04-08 15:36:53 +02001313 cricket::DataChannelType data_channel_type_ =
1314 cricket::DCT_NONE; // TODO(bugs.webrtc.org/9987): Accessed on both
1315 // signaling and network thread.
Steve Anton75737c02017-11-06 10:37:17 -08001316
Karl Wibergf73f7d62019-04-08 15:36:53 +02001317 // List of content names for which the remote side triggered an ICE restart.
1318 std::set<std::string> pending_ice_restarts_
1319 RTC_GUARDED_BY(signaling_thread());
1320
1321 std::unique_ptr<WebRtcSessionDescriptionFactory> webrtc_session_desc_factory_
1322 RTC_GUARDED_BY(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -08001323
1324 // Member variables for caching global options.
Karl Wibergf73f7d62019-04-08 15:36:53 +02001325 cricket::AudioOptions audio_options_ RTC_GUARDED_BY(signaling_thread());
1326 cricket::VideoOptions video_options_ RTC_GUARDED_BY(signaling_thread());
Harald Alvestrand8ebba742018-05-31 14:00:34 +02001327
Karl Wibergf73f7d62019-04-08 15:36:53 +02001328 int usage_event_accumulator_ RTC_GUARDED_BY(signaling_thread()) = 0;
1329 bool return_histogram_very_quickly_ RTC_GUARDED_BY(signaling_thread()) =
1330 false;
Amit Hilbuchbcd39d42019-01-25 17:13:56 -08001331
1332 // This object should be used to generate any SSRC that is not explicitly
1333 // specified by the user (or by the remote party).
1334 // The generator is not used directly, instead it is passed on to the
1335 // channel manager and the session description factory.
Karl Wibergf73f7d62019-04-08 15:36:53 +02001336 rtc::UniqueRandomIdGenerator ssrc_generator_
1337 RTC_GUARDED_BY(signaling_thread());
Jonas Orelanda3aa9bd2019-04-17 07:38:40 +02001338
1339 // A video bitrate allocator factory.
1340 // This can injected using the PeerConnectionDependencies,
1341 // or else the CreateBuiltinVideoBitrateAllocatorFactory() will be called.
1342 // Note that one can still choose to override this in a MediaEngine
1343 // if one wants too.
1344 std::unique_ptr<webrtc::VideoBitrateAllocatorFactory>
1345 video_bitrate_allocator_factory_;
1346
Guido Urdaneta70c2db12019-04-16 12:24:14 +02001347 bool is_negotiation_needed_ RTC_GUARDED_BY(signaling_thread()) = false;
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001348};
1349
1350} // namespace webrtc
1351
Steve Anton10542f22019-01-11 09:11:00 -08001352#endif // PC_PEER_CONNECTION_H_