blob: d2fb768a338219068eeee3d52345e82359922ffd [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"
Guido Urdaneta1ff16c82019-05-20 19:31:53 +020028#include "pc/rtp_sender.h"
Steve Anton10542f22019-01-11 09:11:00 -080029#include "pc/rtp_transceiver.h"
Harald Alvestrandc85328f2019-02-28 07:51:00 +010030#include "pc/sctp_transport.h"
Steve Anton10542f22019-01-11 09:11:00 -080031#include "pc/stats_collector.h"
32#include "pc/stream_collection.h"
Steve Anton10542f22019-01-11 09:11:00 -080033#include "pc/webrtc_session_description_factory.h"
Karl Wiberg5966c502019-02-21 23:55:09 +010034#include "rtc_base/race_checker.h"
Amit Hilbuchdbb49df2019-01-23 14:54:24 -080035#include "rtc_base/unique_id_generator.h"
henrike@webrtc.org28e20752013-07-10 00:45:36 +000036
37namespace webrtc {
henrike@webrtc.org28e20752013-07-10 00:45:36 +000038
deadbeefeb459812015-12-15 19:24:43 -080039class MediaStreamObserver;
perkjf0dcfe22016-03-10 18:32:00 +010040class VideoRtpReceiver;
skvlad11a9cbf2016-10-07 11:53:05 -070041class RtcEventLog;
deadbeefab9b2d12015-10-14 11:33:11 -070042
Steve Anton75737c02017-11-06 10:37:17 -080043// PeerConnection is the implementation of the PeerConnection object as defined
44// by the PeerConnectionInterface API surface.
45// The class currently is solely responsible for the following:
46// - Managing the session state machine (signaling state).
47// - Creating and initializing lower-level objects, like PortAllocator and
48// BaseChannels.
49// - Owning and managing the life cycle of the RtpSender/RtpReceiver and track
50// objects.
51// - Tracking the current and pending local/remote session descriptions.
52// The class currently is jointly responsible for the following:
53// - Parsing and interpreting SDP.
54// - Generating offers and answers based on the current state.
55// - The ICE state machine.
56// - Generating stats.
Steve Anton2d8609c2018-01-23 16:38:46 -080057class PeerConnection : public PeerConnectionInternal,
Steve Anton75737c02017-11-06 10:37:17 -080058 public DataChannelProviderInterface,
Bjorn Mellem175aa2e2018-11-08 11:23:22 -080059 public DataChannelSink,
Zhi Huang365381f2018-04-13 16:44:34 -070060 public JsepTransportController::Observer,
Guido Urdaneta1ff16c82019-05-20 19:31:53 +020061 public RtpSenderBase::SetStreamsObserver,
Steve Antonad182762018-09-05 20:22:40 +000062 public rtc::MessageHandler,
henrike@webrtc.org28e20752013-07-10 00:45:36 +000063 public sigslot::has_slots<> {
64 public:
Harald Alvestrand8ebba742018-05-31 14:00:34 +020065 enum class UsageEvent : int {
66 TURN_SERVER_ADDED = 0x01,
67 STUN_SERVER_ADDED = 0x02,
68 DATA_ADDED = 0x04,
69 AUDIO_ADDED = 0x08,
70 VIDEO_ADDED = 0x10,
71 SET_LOCAL_DESCRIPTION_CALLED = 0x20,
72 SET_REMOTE_DESCRIPTION_CALLED = 0x40,
73 CANDIDATE_COLLECTED = 0x80,
74 REMOTE_CANDIDATE_ADDED = 0x100,
75 ICE_STATE_CONNECTED = 0x200,
Qingsi Wang7fc821d2018-07-12 12:54:53 -070076 CLOSE_CALLED = 0x400,
Harald Alvestrand056d8112018-07-16 19:18:58 +020077 PRIVATE_CANDIDATE_COLLECTED = 0x800,
Jeroen de Borstaf242c82019-04-24 13:13:48 -070078 REMOTE_PRIVATE_CANDIDATE_ADDED = 0x1000,
79 MDNS_CANDIDATE_COLLECTED = 0x2000,
80 REMOTE_MDNS_CANDIDATE_ADDED = 0x4000,
81 MAX_VALUE = 0x8000,
Harald Alvestrand8ebba742018-05-31 14:00:34 +020082 };
83
zhihuang38ede132017-06-15 12:52:32 -070084 explicit PeerConnection(PeerConnectionFactory* factory,
85 std::unique_ptr<RtcEventLog> event_log,
86 std::unique_ptr<Call> call);
henrike@webrtc.org28e20752013-07-10 00:45:36 +000087
deadbeef653b8e02015-11-11 12:55:10 -080088 bool Initialize(
89 const PeerConnectionInterface::RTCConfiguration& configuration,
Benjamin Wrightcab58882018-05-02 15:12:47 -070090 PeerConnectionDependencies dependencies);
deadbeef653b8e02015-11-11 12:55:10 -080091
deadbeefa67696b2015-09-29 11:56:26 -070092 rtc::scoped_refptr<StreamCollectionInterface> local_streams() override;
93 rtc::scoped_refptr<StreamCollectionInterface> remote_streams() override;
94 bool AddStream(MediaStreamInterface* local_stream) override;
95 void RemoveStream(MediaStreamInterface* local_stream) override;
henrike@webrtc.org28e20752013-07-10 00:45:36 +000096
Steve Anton2d6c76a2018-01-05 17:10:52 -080097 RTCErrorOr<rtc::scoped_refptr<RtpSenderInterface>> AddTrack(
Steve Antonf9381f02017-12-14 10:23:57 -080098 rtc::scoped_refptr<MediaStreamTrackInterface> track,
Seth Hampson845e8782018-03-02 11:34:10 -080099 const std::vector<std::string>& stream_ids) override;
deadbeefe1f9d832016-01-14 15:35:42 -0800100 bool RemoveTrack(RtpSenderInterface* sender) override;
Steve Anton24db5732018-07-23 10:27:33 -0700101 RTCError RemoveTrackNew(
102 rtc::scoped_refptr<RtpSenderInterface> sender) override;
deadbeefe1f9d832016-01-14 15:35:42 -0800103
Steve Anton9158ef62017-11-27 13:01:52 -0800104 RTCErrorOr<rtc::scoped_refptr<RtpTransceiverInterface>> AddTransceiver(
105 rtc::scoped_refptr<MediaStreamTrackInterface> track) override;
106 RTCErrorOr<rtc::scoped_refptr<RtpTransceiverInterface>> AddTransceiver(
107 rtc::scoped_refptr<MediaStreamTrackInterface> track,
108 const RtpTransceiverInit& init) override;
109 RTCErrorOr<rtc::scoped_refptr<RtpTransceiverInterface>> AddTransceiver(
110 cricket::MediaType media_type) override;
111 RTCErrorOr<rtc::scoped_refptr<RtpTransceiverInterface>> AddTransceiver(
112 cricket::MediaType media_type,
113 const RtpTransceiverInit& init) override;
114
Steve Anton8c0f7a72017-10-03 10:03:10 -0700115 // Gets the DTLS SSL certificate associated with the audio transport on the
116 // remote side. This will become populated once the DTLS connection with the
117 // peer has been completed, as indicated by the ICE connection state
118 // transitioning to kIceConnectionCompleted.
119 // Note that this will be removed once we implement RTCDtlsTransport which
120 // has standardized method for getting this information.
121 // See https://www.w3.org/TR/webrtc/#rtcdtlstransport-interface
122 std::unique_ptr<rtc::SSLCertificate> GetRemoteAudioSSLCertificate();
123
Zhi Huang70b820f2018-01-27 14:16:15 -0800124 // Version of the above method that returns the full certificate chain.
125 std::unique_ptr<rtc::SSLCertChain> GetRemoteAudioSSLCertChain();
126
deadbeeffac06552015-11-25 11:26:01 -0800127 rtc::scoped_refptr<RtpSenderInterface> CreateSender(
deadbeefbd7d8f72015-12-18 16:58:44 -0800128 const std::string& kind,
129 const std::string& stream_id) override;
deadbeeffac06552015-11-25 11:26:01 -0800130
deadbeef70ab1a12015-09-28 16:53:55 -0700131 std::vector<rtc::scoped_refptr<RtpSenderInterface>> GetSenders()
132 const override;
133 std::vector<rtc::scoped_refptr<RtpReceiverInterface>> GetReceivers()
134 const override;
Steve Anton9158ef62017-11-27 13:01:52 -0800135 std::vector<rtc::scoped_refptr<RtpTransceiverInterface>> GetTransceivers()
136 const override;
deadbeef70ab1a12015-09-28 16:53:55 -0700137
deadbeefa67696b2015-09-29 11:56:26 -0700138 rtc::scoped_refptr<DataChannelInterface> CreateDataChannel(
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000139 const std::string& label,
deadbeefa67696b2015-09-29 11:56:26 -0700140 const DataChannelInit* config) override;
Henrik Boström1df1bf82018-03-20 13:24:20 +0100141 // WARNING: LEGACY. See peerconnectioninterface.h
deadbeefa67696b2015-09-29 11:56:26 -0700142 bool GetStats(StatsObserver* observer,
143 webrtc::MediaStreamTrackInterface* track,
144 StatsOutputLevel level) override;
Henrik Boström1df1bf82018-03-20 13:24:20 +0100145 // Spec-complaint GetStats(). See peerconnectioninterface.h
hbos74e1a4f2016-09-15 23:33:01 -0700146 void GetStats(RTCStatsCollectorCallback* callback) override;
Henrik Boström1df1bf82018-03-20 13:24:20 +0100147 void GetStats(
148 rtc::scoped_refptr<RtpSenderInterface> selector,
149 rtc::scoped_refptr<RTCStatsCollectorCallback> callback) override;
150 void GetStats(
151 rtc::scoped_refptr<RtpReceiverInterface> selector,
152 rtc::scoped_refptr<RTCStatsCollectorCallback> callback) override;
Harald Alvestrand89061872018-01-02 14:08:34 +0100153 void ClearStatsCache() override;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000154
deadbeefa67696b2015-09-29 11:56:26 -0700155 SignalingState signaling_state() override;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000156
deadbeefa67696b2015-09-29 11:56:26 -0700157 IceConnectionState ice_connection_state() override;
Jonas Olsson12046902018-12-06 11:25:14 +0100158 IceConnectionState standardized_ice_connection_state() override;
Jonas Olsson635474e2018-10-18 15:58:17 +0200159 PeerConnectionState peer_connection_state() override;
deadbeefa67696b2015-09-29 11:56:26 -0700160 IceGatheringState ice_gathering_state() override;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000161
deadbeefa67696b2015-09-29 11:56:26 -0700162 const SessionDescriptionInterface* local_description() const override;
163 const SessionDescriptionInterface* remote_description() const override;
deadbeeffe4a8a42016-12-20 17:56:17 -0800164 const SessionDescriptionInterface* current_local_description() const override;
165 const SessionDescriptionInterface* current_remote_description()
166 const override;
167 const SessionDescriptionInterface* pending_local_description() const override;
168 const SessionDescriptionInterface* pending_remote_description()
169 const override;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000170
171 // JSEP01
deadbeefa67696b2015-09-29 11:56:26 -0700172 void CreateOffer(CreateSessionDescriptionObserver* observer,
173 const RTCOfferAnswerOptions& options) override;
htaa2a49d92016-03-04 02:51:39 -0800174 void CreateAnswer(CreateSessionDescriptionObserver* observer,
175 const RTCOfferAnswerOptions& options) override;
deadbeefa67696b2015-09-29 11:56:26 -0700176 void SetLocalDescription(SetSessionDescriptionObserver* observer,
177 SessionDescriptionInterface* desc) override;
Henrik Boströma4ecf552017-11-23 14:17:07 +0000178 void SetRemoteDescription(SetSessionDescriptionObserver* observer,
179 SessionDescriptionInterface* desc) override;
Henrik Boström31638672017-11-23 17:48:32 +0100180 void SetRemoteDescription(
181 std::unique_ptr<SessionDescriptionInterface> desc,
182 rtc::scoped_refptr<SetRemoteDescriptionObserverInterface> observer)
183 override;
deadbeef46c73892016-11-16 19:42:04 -0800184 PeerConnectionInterface::RTCConfiguration GetConfiguration() override;
deadbeefa67696b2015-09-29 11:56:26 -0700185 bool SetConfiguration(
deadbeef293e9262017-01-11 12:28:30 -0800186 const PeerConnectionInterface::RTCConfiguration& configuration,
187 RTCError* error) override;
188 bool SetConfiguration(
189 const PeerConnectionInterface::RTCConfiguration& configuration) override {
190 return SetConfiguration(configuration, nullptr);
191 }
deadbeefa67696b2015-09-29 11:56:26 -0700192 bool AddIceCandidate(const IceCandidateInterface* candidate) override;
Honghai Zhang7fb69db2016-03-14 11:59:18 -0700193 bool RemoveIceCandidates(
194 const std::vector<cricket::Candidate>& candidates) override;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000195
Niels Möller0c4f7be2018-05-07 14:01:37 +0200196 RTCError SetBitrate(const BitrateSettings& bitrate) override;
zstein4b979802017-06-02 14:37:37 -0700197
Alex Narest78609d52017-10-20 10:37:47 +0200198 void SetBitrateAllocationStrategy(
199 std::unique_ptr<rtc::BitrateAllocationStrategy>
200 bitrate_allocation_strategy) override;
201
henrika5f6bf242017-11-01 11:06:56 +0100202 void SetAudioPlayout(bool playout) override;
203 void SetAudioRecording(bool recording) override;
204
Harald Alvestrandad88c882018-11-28 16:47:46 +0100205 rtc::scoped_refptr<DtlsTransportInterface> LookupDtlsTransportByMid(
206 const std::string& mid) override;
Harald Alvestrand4a7b3ac2019-01-17 10:39:40 +0100207 rtc::scoped_refptr<DtlsTransport> LookupDtlsTransportByMidInternal(
208 const std::string& mid);
Harald Alvestrandad88c882018-11-28 16:47:46 +0100209
Harald Alvestrandc85328f2019-02-28 07:51:00 +0100210 rtc::scoped_refptr<SctpTransportInterface> GetSctpTransport() const override;
211
Bjorn Tereliusde939432017-11-20 17:38:14 +0100212 bool StartRtcEventLog(std::unique_ptr<RtcEventLogOutput> output,
213 int64_t output_period_ms) override;
Niels Möllerf00ca1a2019-05-10 11:33:12 +0200214 bool StartRtcEventLog(std::unique_ptr<RtcEventLogOutput> output) override;
ivoc14d5dbe2016-07-04 07:06:55 -0700215 void StopRtcEventLog() override;
216
deadbeefa67696b2015-09-29 11:56:26 -0700217 void Close() override;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000218
Steve Anton2d8609c2018-01-23 16:38:46 -0800219 // PeerConnectionInternal implementation.
Karl Wiberg4ae63472019-02-22 00:57:06 +0100220 rtc::Thread* network_thread() const final {
Steve Anton2d8609c2018-01-23 16:38:46 -0800221 return factory_->network_thread();
222 }
Karl Wiberg4ae63472019-02-22 00:57:06 +0100223 rtc::Thread* worker_thread() const final { return factory_->worker_thread(); }
224 rtc::Thread* signaling_thread() const final {
Steve Anton2d8609c2018-01-23 16:38:46 -0800225 return factory_->signaling_thread();
perkjd61bf802016-03-24 03:16:19 -0700226 }
deadbeefab9b2d12015-10-14 11:33:11 -0700227
Karl Wiberga58e1692019-03-26 13:33:43 +0100228 std::string session_id() const override {
229 RTC_DCHECK_RUN_ON(signaling_thread());
230 return session_id_;
231 }
Steve Anton75737c02017-11-06 10:37:17 -0800232
Steve Anton2d8609c2018-01-23 16:38:46 -0800233 bool initial_offerer() const override {
Karl Wiberg2cc368f2019-04-02 11:31:56 +0200234 RTC_DCHECK_RUN_ON(signaling_thread());
Zhi Huange830e682018-03-30 10:48:35 -0700235 return transport_controller_ && transport_controller_->initial_offerer();
Steve Anton2d8609c2018-01-23 16:38:46 -0800236 }
Steve Anton75737c02017-11-06 10:37:17 -0800237
Steve Anton2d8609c2018-01-23 16:38:46 -0800238 std::vector<
239 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>>
Steve Antonb8867112018-02-13 10:07:54 -0800240 GetTransceiversInternal() const override {
Karl Wiberga58e1692019-03-26 13:33:43 +0100241 RTC_DCHECK_RUN_ON(signaling_thread());
Steve Anton2d8609c2018-01-23 16:38:46 -0800242 return transceivers_;
243 }
244
Steve Anton2d8609c2018-01-23 16:38:46 -0800245 sigslot::signal1<DataChannel*>& SignalDataChannelCreated() override {
246 return SignalDataChannelCreated_;
247 }
248
249 cricket::RtpDataChannel* rtp_data_channel() const override {
Steve Anton75737c02017-11-06 10:37:17 -0800250 return rtp_data_channel_;
Steve Anton978b8762017-09-29 12:15:02 -0700251 }
Steve Anton2d8609c2018-01-23 16:38:46 -0800252
Steve Antonbe5e2082018-01-24 15:29:17 -0800253 std::vector<rtc::scoped_refptr<DataChannel>> sctp_data_channels()
Steve Anton2d8609c2018-01-23 16:38:46 -0800254 const override {
Karl Wiberg85a4a932019-03-22 15:29:58 +0100255 RTC_DCHECK_RUN_ON(signaling_thread());
Steve Anton2d8609c2018-01-23 16:38:46 -0800256 return sctp_data_channels_;
257 }
258
Danil Chapovalov66cadcc2018-06-19 16:47:43 +0200259 absl::optional<std::string> sctp_content_name() const override {
Karl Wiberg2cc368f2019-04-02 11:31:56 +0200260 RTC_DCHECK_RUN_ON(signaling_thread());
Zhi Huange830e682018-03-30 10:48:35 -0700261 return sctp_mid_;
Steve Anton75737c02017-11-06 10:37:17 -0800262 }
Steve Anton2d8609c2018-01-23 16:38:46 -0800263
Danil Chapovalov66cadcc2018-06-19 16:47:43 +0200264 absl::optional<std::string> sctp_transport_name() const override;
Steve Anton75737c02017-11-06 10:37:17 -0800265
Qingsi Wang72a43a12018-02-20 16:03:18 -0800266 cricket::CandidateStatsList GetPooledCandidateStats() const override;
Steve Anton5dfde182018-02-06 10:34:40 -0800267 std::map<std::string, std::string> GetTransportNamesByMid() const override;
268 std::map<std::string, cricket::TransportStats> GetTransportStatsByNames(
269 const std::set<std::string>& transport_names) override;
Steve Anton2d8609c2018-01-23 16:38:46 -0800270 Call::Stats GetCallStats() override;
Steve Anton75737c02017-11-06 10:37:17 -0800271
Steve Anton2d8609c2018-01-23 16:38:46 -0800272 bool GetLocalCertificate(
273 const std::string& transport_name,
274 rtc::scoped_refptr<rtc::RTCCertificate>* certificate) override;
Taylor Brandstetterc3928662018-02-23 13:04:51 -0800275 std::unique_ptr<rtc::SSLCertChain> GetRemoteSSLCertChain(
Steve Anton2d8609c2018-01-23 16:38:46 -0800276 const std::string& transport_name) override;
277 bool IceRestartPending(const std::string& content_name) const override;
278 bool NeedsIceRestart(const std::string& content_name) const override;
279 bool GetSslRole(const std::string& content_name, rtc::SSLRole* role) override;
Steve Anton7464fca2018-01-19 11:10:37 -0800280
Harald Alvestrand19793842018-06-25 12:03:50 +0200281 void ReturnHistogramVeryQuicklyForTesting() {
Karl Wibergf73f7d62019-04-08 15:36:53 +0200282 RTC_DCHECK_RUN_ON(signaling_thread());
Harald Alvestrand19793842018-06-25 12:03:50 +0200283 return_histogram_very_quickly_ = true;
284 }
Harald Alvestrand7a1c7f72018-08-01 10:50:16 +0200285 void RequestUsagePatternReportForTesting();
Harald Alvestrand19793842018-06-25 12:03:50 +0200286
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000287 protected:
deadbeefa67696b2015-09-29 11:56:26 -0700288 ~PeerConnection() override;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000289
290 private:
Henrik Boström31638672017-11-23 17:48:32 +0100291 class SetRemoteDescriptionObserverAdapter;
292 friend class SetRemoteDescriptionObserverAdapter;
293
Steve Anton4171afb2017-11-20 10:20:22 -0800294 struct RtpSenderInfo {
295 RtpSenderInfo() : first_ssrc(0) {}
Seth Hampson845e8782018-03-02 11:34:10 -0800296 RtpSenderInfo(const std::string& stream_id,
Steve Anton4171afb2017-11-20 10:20:22 -0800297 const std::string sender_id,
298 uint32_t ssrc)
Seth Hampson845e8782018-03-02 11:34:10 -0800299 : stream_id(stream_id), sender_id(sender_id), first_ssrc(ssrc) {}
Steve Anton4171afb2017-11-20 10:20:22 -0800300 bool operator==(const RtpSenderInfo& other) {
Seth Hampson845e8782018-03-02 11:34:10 -0800301 return this->stream_id == other.stream_id &&
Steve Anton4171afb2017-11-20 10:20:22 -0800302 this->sender_id == other.sender_id &&
303 this->first_ssrc == other.first_ssrc;
deadbeefbda7e0b2015-12-08 17:13:40 -0800304 }
Seth Hampson845e8782018-03-02 11:34:10 -0800305 std::string stream_id;
Steve Anton4171afb2017-11-20 10:20:22 -0800306 std::string sender_id;
307 // An RtpSender can have many SSRCs. The first one is used as a sort of ID
308 // for communicating with the lower layers.
309 uint32_t first_ssrc;
deadbeefab9b2d12015-10-14 11:33:11 -0700310 };
deadbeefab9b2d12015-10-14 11:33:11 -0700311
Steve Antonad182762018-09-05 20:22:40 +0000312 // Implements MessageHandler.
313 void OnMessage(rtc::Message* msg) override;
314
Steve Antonafb0bb72018-02-20 11:35:37 -0800315 // Plan B helpers for getting the voice/video media channels for the single
316 // audio/video transceiver, if it exists.
Karl Wiberg5966c502019-02-21 23:55:09 +0100317 cricket::VoiceMediaChannel* voice_media_channel() const
318 RTC_RUN_ON(signaling_thread());
319 cricket::VideoMediaChannel* video_media_channel() const
320 RTC_RUN_ON(signaling_thread());
Steve Anton60776752018-01-10 11:51:34 -0800321
Steve Anton4171afb2017-11-20 10:20:22 -0800322 std::vector<rtc::scoped_refptr<RtpSenderProxyWithInternal<RtpSenderInternal>>>
Karl Wiberga58e1692019-03-26 13:33:43 +0100323 GetSendersInternal() const RTC_RUN_ON(signaling_thread());
Steve Anton4171afb2017-11-20 10:20:22 -0800324 std::vector<
325 rtc::scoped_refptr<RtpReceiverProxyWithInternal<RtpReceiverInternal>>>
Karl Wiberga58e1692019-03-26 13:33:43 +0100326 GetReceiversInternal() const RTC_RUN_ON(signaling_thread());
Steve Anton4171afb2017-11-20 10:20:22 -0800327
328 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
Karl Wiberg5966c502019-02-21 23:55:09 +0100329 GetAudioTransceiver() const RTC_RUN_ON(signaling_thread());
Steve Anton4171afb2017-11-20 10:20:22 -0800330 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
Karl Wiberg5966c502019-02-21 23:55:09 +0100331 GetVideoTransceiver() const RTC_RUN_ON(signaling_thread());
Steve Anton4171afb2017-11-20 10:20:22 -0800332
Steve Antonafb0bb72018-02-20 11:35:37 -0800333 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
Karl Wiberga58e1692019-03-26 13:33:43 +0100334 GetFirstAudioTransceiver() const RTC_RUN_ON(signaling_thread());
Steve Antonafb0bb72018-02-20 11:35:37 -0800335
deadbeefab9b2d12015-10-14 11:33:11 -0700336 void CreateAudioReceiver(MediaStreamInterface* stream,
Karl Wiberg744310f2019-02-14 10:18:56 +0100337 const RtpSenderInfo& remote_sender_info)
338 RTC_RUN_ON(signaling_thread());
perkjf0dcfe22016-03-10 18:32:00 +0100339
deadbeefab9b2d12015-10-14 11:33:11 -0700340 void CreateVideoReceiver(MediaStreamInterface* stream,
Karl Wiberg744310f2019-02-14 10:18:56 +0100341 const RtpSenderInfo& remote_sender_info)
342 RTC_RUN_ON(signaling_thread());
Henrik Boström933d8b02017-10-10 10:05:16 -0700343 rtc::scoped_refptr<RtpReceiverInterface> RemoveAndStopReceiver(
Karl Wiberg5966c502019-02-21 23:55:09 +0100344 const RtpSenderInfo& remote_sender_info) RTC_RUN_ON(signaling_thread());
korniltsev.anatolyec390b52017-07-24 17:00:25 -0700345
346 // May be called either by AddStream/RemoveStream, or when a track is
347 // added/removed from a stream previously added via AddStream.
Karl Wiberg5966c502019-02-21 23:55:09 +0100348 void AddAudioTrack(AudioTrackInterface* track, MediaStreamInterface* stream)
349 RTC_RUN_ON(signaling_thread());
korniltsev.anatolyec390b52017-07-24 17:00:25 -0700350 void RemoveAudioTrack(AudioTrackInterface* track,
Karl Wiberg5966c502019-02-21 23:55:09 +0100351 MediaStreamInterface* stream)
352 RTC_RUN_ON(signaling_thread());
353 void AddVideoTrack(VideoTrackInterface* track, MediaStreamInterface* stream)
354 RTC_RUN_ON(signaling_thread());
korniltsev.anatolyec390b52017-07-24 17:00:25 -0700355 void RemoveVideoTrack(VideoTrackInterface* track,
Karl Wiberg5966c502019-02-21 23:55:09 +0100356 MediaStreamInterface* stream)
357 RTC_RUN_ON(signaling_thread());
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000358
Steve Antonf9381f02017-12-14 10:23:57 -0800359 // AddTrack implementation when Unified Plan is specified.
360 RTCErrorOr<rtc::scoped_refptr<RtpSenderInterface>> AddTrackUnifiedPlan(
361 rtc::scoped_refptr<MediaStreamTrackInterface> track,
Karl Wiberga58e1692019-03-26 13:33:43 +0100362 const std::vector<std::string>& stream_ids)
363 RTC_RUN_ON(signaling_thread());
Steve Antonf9381f02017-12-14 10:23:57 -0800364 // AddTrack implementation when Plan B is specified.
365 RTCErrorOr<rtc::scoped_refptr<RtpSenderInterface>> AddTrackPlanB(
366 rtc::scoped_refptr<MediaStreamTrackInterface> track,
Karl Wiberg5966c502019-02-21 23:55:09 +0100367 const std::vector<std::string>& stream_ids)
368 RTC_RUN_ON(signaling_thread());
Steve Antonf9381f02017-12-14 10:23:57 -0800369
370 // Returns the first RtpTransceiver suitable for a newly added track, if such
371 // transceiver is available.
372 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
373 FindFirstTransceiverForAddedTrack(
Karl Wiberga58e1692019-03-26 13:33:43 +0100374 rtc::scoped_refptr<MediaStreamTrackInterface> track)
375 RTC_RUN_ON(signaling_thread());
Steve Antonf9381f02017-12-14 10:23:57 -0800376
Steve Antonf9381f02017-12-14 10:23:57 -0800377 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
Karl Wiberga58e1692019-03-26 13:33:43 +0100378 FindTransceiverBySender(rtc::scoped_refptr<RtpSenderInterface> sender)
379 RTC_RUN_ON(signaling_thread());
Steve Antonf9381f02017-12-14 10:23:57 -0800380
Steve Anton22da89f2018-01-25 13:58:07 -0800381 // Internal implementation for AddTransceiver family of methods. If
382 // |fire_callback| is set, fires OnRenegotiationNeeded callback if successful.
Steve Anton9158ef62017-11-27 13:01:52 -0800383 RTCErrorOr<rtc::scoped_refptr<RtpTransceiverInterface>> AddTransceiver(
384 cricket::MediaType media_type,
385 rtc::scoped_refptr<MediaStreamTrackInterface> track,
Steve Anton22da89f2018-01-25 13:58:07 -0800386 const RtpTransceiverInit& init,
Karl Wiberg744310f2019-02-14 10:18:56 +0100387 bool fire_callback = true) RTC_RUN_ON(signaling_thread());
Steve Anton9158ef62017-11-27 13:01:52 -0800388
Steve Anton02ee47c2018-01-10 16:26:06 -0800389 rtc::scoped_refptr<RtpSenderProxyWithInternal<RtpSenderInternal>>
390 CreateSender(cricket::MediaType media_type,
Steve Anton111fdfd2018-06-25 13:03:36 -0700391 const std::string& id,
Steve Anton02ee47c2018-01-10 16:26:06 -0800392 rtc::scoped_refptr<MediaStreamTrackInterface> track,
Florent Castelli892acf02018-10-01 22:47:20 +0200393 const std::vector<std::string>& stream_ids,
394 const std::vector<RtpEncodingParameters>& send_encodings);
Steve Anton02ee47c2018-01-10 16:26:06 -0800395
396 rtc::scoped_refptr<RtpReceiverProxyWithInternal<RtpReceiverInternal>>
397 CreateReceiver(cricket::MediaType media_type, const std::string& receiver_id);
398
Steve Antonf9381f02017-12-14 10:23:57 -0800399 // Create a new RtpTransceiver of the given type and add it to the list of
400 // transceivers.
401 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
Steve Anton02ee47c2018-01-10 16:26:06 -0800402 CreateAndAddTransceiver(
403 rtc::scoped_refptr<RtpSenderProxyWithInternal<RtpSenderInternal>> sender,
404 rtc::scoped_refptr<RtpReceiverProxyWithInternal<RtpReceiverInternal>>
Karl Wiberga58e1692019-03-26 13:33:43 +0100405 receiver) RTC_RUN_ON(signaling_thread());
Steve Antonf9381f02017-12-14 10:23:57 -0800406
Karl Wiberg744310f2019-02-14 10:18:56 +0100407 void SetIceConnectionState(IceConnectionState new_state)
408 RTC_RUN_ON(signaling_thread());
Jonas Olsson635474e2018-10-18 15:58:17 +0200409 void SetStandardizedIceConnectionState(
Karl Wiberg744310f2019-02-14 10:18:56 +0100410 PeerConnectionInterface::IceConnectionState new_state)
411 RTC_RUN_ON(signaling_thread());
Jonas Olsson635474e2018-10-18 15:58:17 +0200412 void SetConnectionState(
Karl Wiberg744310f2019-02-14 10:18:56 +0100413 PeerConnectionInterface::PeerConnectionState new_state)
414 RTC_RUN_ON(signaling_thread());
Jonas Olsson635474e2018-10-18 15:58:17 +0200415
Yves Gerey3b8ed282019-06-06 14:07:59 +0000416 // Called any time the IceGatheringState changes
Karl Wiberg744310f2019-02-14 10:18:56 +0100417 void OnIceGatheringChange(IceGatheringState new_state)
418 RTC_RUN_ON(signaling_thread());
Steve Antonba818672017-11-06 10:21:57 -0800419 // New ICE candidate has been gathered.
Karl Wiberg744310f2019-02-14 10:18:56 +0100420 void OnIceCandidate(std::unique_ptr<IceCandidateInterface> candidate)
421 RTC_RUN_ON(signaling_thread());
Steve Antonba818672017-11-06 10:21:57 -0800422 // Some local ICE candidates have been removed.
Karl Wiberg744310f2019-02-14 10:18:56 +0100423 void OnIceCandidatesRemoved(const std::vector<cricket::Candidate>& candidates)
424 RTC_RUN_ON(signaling_thread());
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000425
Steve Antonba818672017-11-06 10:21:57 -0800426 // Update the state, signaling if necessary.
Karl Wiberg744310f2019-02-14 10:18:56 +0100427 void ChangeSignalingState(SignalingState signaling_state)
428 RTC_RUN_ON(signaling_thread());
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000429
deadbeefeb459812015-12-15 19:24:43 -0800430 // Signals from MediaStreamObserver.
431 void OnAudioTrackAdded(AudioTrackInterface* track,
Karl Wiberg744310f2019-02-14 10:18:56 +0100432 MediaStreamInterface* stream)
433 RTC_RUN_ON(signaling_thread());
deadbeefeb459812015-12-15 19:24:43 -0800434 void OnAudioTrackRemoved(AudioTrackInterface* track,
Karl Wiberg744310f2019-02-14 10:18:56 +0100435 MediaStreamInterface* stream)
436 RTC_RUN_ON(signaling_thread());
deadbeefeb459812015-12-15 19:24:43 -0800437 void OnVideoTrackAdded(VideoTrackInterface* track,
Karl Wiberg744310f2019-02-14 10:18:56 +0100438 MediaStreamInterface* stream)
439 RTC_RUN_ON(signaling_thread());
deadbeefeb459812015-12-15 19:24:43 -0800440 void OnVideoTrackRemoved(VideoTrackInterface* track,
Karl Wiberg744310f2019-02-14 10:18:56 +0100441 MediaStreamInterface* stream)
442 RTC_RUN_ON(signaling_thread());
deadbeefeb459812015-12-15 19:24:43 -0800443
Henrik Boström31638672017-11-23 17:48:32 +0100444 void PostSetSessionDescriptionSuccess(
445 SetSessionDescriptionObserver* observer);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000446 void PostSetSessionDescriptionFailure(SetSessionDescriptionObserver* observer,
Steve Antonad182762018-09-05 20:22:40 +0000447 RTCError&& error);
deadbeefab9b2d12015-10-14 11:33:11 -0700448 void PostCreateSessionDescriptionFailure(
449 CreateSessionDescriptionObserver* observer,
Harald Alvestrand5081c0c2018-03-09 15:18:03 +0100450 RTCError error);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000451
Steve Anton8a006912017-12-04 15:25:56 -0800452 // Synchronous implementations of SetLocalDescription/SetRemoteDescription
453 // that return an RTCError instead of invoking a callback.
454 RTCError ApplyLocalDescription(
455 std::unique_ptr<SessionDescriptionInterface> desc);
456 RTCError ApplyRemoteDescription(
457 std::unique_ptr<SessionDescriptionInterface> desc);
458
Steve Antondcc3c022017-12-22 16:02:54 -0800459 // Updates the local RtpTransceivers according to the JSEP rules. Called as
460 // part of setting the local/remote description.
461 RTCError UpdateTransceiversAndDataChannels(
462 cricket::ContentSource source,
Seth Hampsonae8a90a2018-02-13 15:33:48 -0800463 const SessionDescriptionInterface& new_session,
464 const SessionDescriptionInterface* old_local_description,
Karl Wiberg106d92d2019-02-14 10:17:47 +0100465 const SessionDescriptionInterface* old_remote_description)
466 RTC_RUN_ON(signaling_thread());
Steve Antondcc3c022017-12-22 16:02:54 -0800467
468 // Either creates or destroys the transceiver's BaseChannel according to the
469 // given media section.
470 RTCError UpdateTransceiverChannel(
471 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
472 transceiver,
473 const cricket::ContentInfo& content,
Karl Wiberg5966c502019-02-21 23:55:09 +0100474 const cricket::ContentGroup* bundle_group) RTC_RUN_ON(signaling_thread());
Steve Antondcc3c022017-12-22 16:02:54 -0800475
Steve Antonfa2260d2017-12-28 16:38:23 -0800476 // Either creates or destroys the local data channel according to the given
477 // media section.
478 RTCError UpdateDataChannel(cricket::ContentSource source,
479 const cricket::ContentInfo& content,
Karl Wiberg106d92d2019-02-14 10:17:47 +0100480 const cricket::ContentGroup* bundle_group)
481 RTC_RUN_ON(signaling_thread());
Steve Antonfa2260d2017-12-28 16:38:23 -0800482
Steve Antondcc3c022017-12-22 16:02:54 -0800483 // Associate the given transceiver according to the JSEP rules.
484 RTCErrorOr<
485 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>>
486 AssociateTransceiver(cricket::ContentSource source,
Seth Hampsonae8a90a2018-02-13 15:33:48 -0800487 SdpType type,
Steve Antondcc3c022017-12-22 16:02:54 -0800488 size_t mline_index,
489 const cricket::ContentInfo& content,
Seth Hampsonae8a90a2018-02-13 15:33:48 -0800490 const cricket::ContentInfo* old_local_content,
Karl Wiberg5966c502019-02-21 23:55:09 +0100491 const cricket::ContentInfo* old_remote_content)
492 RTC_RUN_ON(signaling_thread());
Steve Antondcc3c022017-12-22 16:02:54 -0800493
494 // Returns the RtpTransceiver, if found, that is associated to the given MID.
495 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
Karl Wiberg5966c502019-02-21 23:55:09 +0100496 GetAssociatedTransceiver(const std::string& mid) const
497 RTC_RUN_ON(signaling_thread());
Steve Antondcc3c022017-12-22 16:02:54 -0800498
499 // Returns the RtpTransceiver, if found, that was assigned to the given mline
500 // index in CreateOffer.
501 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
Karl Wiberg5966c502019-02-21 23:55:09 +0100502 GetTransceiverByMLineIndex(size_t mline_index) const
503 RTC_RUN_ON(signaling_thread());
Steve Antondcc3c022017-12-22 16:02:54 -0800504
505 // Returns an RtpTransciever, if available, that can be used to receive the
506 // given media type according to JSEP rules.
507 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
Karl Wiberg5966c502019-02-21 23:55:09 +0100508 FindAvailableTransceiverToReceive(cricket::MediaType media_type) const
509 RTC_RUN_ON(signaling_thread());
Steve Antondcc3c022017-12-22 16:02:54 -0800510
Steve Antoned10bd92017-12-05 10:52:59 -0800511 // Returns the media section in the given session description that is
512 // associated with the RtpTransceiver. Returns null if none found or this
513 // RtpTransceiver is not associated. Logic varies depending on the
514 // SdpSemantics specified in the configuration.
515 const cricket::ContentInfo* FindMediaSectionForTransceiver(
516 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
517 transceiver,
Karl Wiberg5966c502019-02-21 23:55:09 +0100518 const SessionDescriptionInterface* sdesc) const
519 RTC_RUN_ON(signaling_thread());
Steve Antoned10bd92017-12-05 10:52:59 -0800520
Henrik Boströmafa07dd2018-12-20 11:06:02 +0100521 // Runs the algorithm **set the associated remote streams** specified in
522 // https://w3c.github.io/webrtc-pc/#set-associated-remote-streams.
523 void SetAssociatedRemoteStreams(
524 rtc::scoped_refptr<RtpReceiverInternal> receiver,
525 const std::vector<std::string>& stream_ids,
526 std::vector<rtc::scoped_refptr<MediaStreamInterface>>* added_streams,
Karl Wiberg1e1e1022019-03-22 14:27:22 +0100527 std::vector<rtc::scoped_refptr<MediaStreamInterface>>* removed_streams)
528 RTC_RUN_ON(signaling_thread());
Henrik Boströmafa07dd2018-12-20 11:06:02 +0100529
Steve Anton0f5400a2018-07-17 14:25:36 -0700530 // Runs the algorithm **process the removal of a remote track** specified in
531 // the WebRTC specification.
532 // This method will update the following lists:
533 // |remove_list| is the list of transceivers for which the receiving track is
534 // being removed.
535 // |removed_streams| is the list of streams which no longer have a receiving
536 // track so should be removed.
537 // https://w3c.github.io/webrtc-pc/#process-remote-track-removal
538 void ProcessRemovalOfRemoteTrack(
539 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
540 transceiver,
541 std::vector<rtc::scoped_refptr<RtpTransceiverInterface>>* remove_list,
Karl Wiberg1e1e1022019-03-22 14:27:22 +0100542 std::vector<rtc::scoped_refptr<MediaStreamInterface>>* removed_streams)
543 RTC_RUN_ON(signaling_thread());
Steve Anton0f5400a2018-07-17 14:25:36 -0700544
Henrik Boströmafa07dd2018-12-20 11:06:02 +0100545 void RemoveRemoteStreamsIfEmpty(
546 const std::vector<rtc::scoped_refptr<MediaStreamInterface>>&
547 remote_streams,
Karl Wiberg1e1e1022019-03-22 14:27:22 +0100548 std::vector<rtc::scoped_refptr<MediaStreamInterface>>* removed_streams)
549 RTC_RUN_ON(signaling_thread());
Henrik Boströmafa07dd2018-12-20 11:06:02 +0100550
Steve Anton52d86772018-02-20 15:48:12 -0800551 void OnNegotiationNeeded();
552
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000553 bool IsClosed() const {
Karl Wiberg8d2e2282019-02-17 13:00:07 +0100554 RTC_DCHECK_RUN_ON(signaling_thread());
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000555 return signaling_state_ == PeerConnectionInterface::kClosed;
556 }
557
deadbeefab9b2d12015-10-14 11:33:11 -0700558 // Returns a MediaSessionOptions struct with options decided by |options|,
559 // the local MediaStreams and DataChannels.
Steve Antondcc3c022017-12-22 16:02:54 -0800560 void GetOptionsForOffer(const PeerConnectionInterface::RTCOfferAnswerOptions&
561 offer_answer_options,
Karl Wiberg5966c502019-02-21 23:55:09 +0100562 cricket::MediaSessionOptions* session_options)
563 RTC_RUN_ON(signaling_thread());
Steve Antondcc3c022017-12-22 16:02:54 -0800564 void GetOptionsForPlanBOffer(
565 const PeerConnectionInterface::RTCOfferAnswerOptions&
566 offer_answer_options,
Karl Wiberg5966c502019-02-21 23:55:09 +0100567 cricket::MediaSessionOptions* session_options)
568 RTC_RUN_ON(signaling_thread());
Steve Antondcc3c022017-12-22 16:02:54 -0800569 void GetOptionsForUnifiedPlanOffer(
570 const PeerConnectionInterface::RTCOfferAnswerOptions&
571 offer_answer_options,
Karl Wiberg5966c502019-02-21 23:55:09 +0100572 cricket::MediaSessionOptions* session_options)
573 RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700574
Karl Wiberg5966c502019-02-21 23:55:09 +0100575 RTCError HandleLegacyOfferOptions(const RTCOfferAnswerOptions& options)
576 RTC_RUN_ON(signaling_thread());
Steve Anton22da89f2018-01-25 13:58:07 -0800577 void RemoveRecvDirectionFromReceivingTransceiversOfType(
Karl Wiberga58e1692019-03-26 13:33:43 +0100578 cricket::MediaType media_type) RTC_RUN_ON(signaling_thread());
Steve Anton22da89f2018-01-25 13:58:07 -0800579 void AddUpToOneReceivingTransceiverOfType(cricket::MediaType media_type);
580 std::vector<
581 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>>
Karl Wiberga58e1692019-03-26 13:33:43 +0100582 GetReceivingTransceiversOfType(cricket::MediaType media_type)
583 RTC_RUN_ON(signaling_thread());
Steve Anton22da89f2018-01-25 13:58:07 -0800584
deadbeefab9b2d12015-10-14 11:33:11 -0700585 // Returns a MediaSessionOptions struct with options decided by
586 // |constraints|, the local MediaStreams and DataChannels.
Steve Antondcc3c022017-12-22 16:02:54 -0800587 void GetOptionsForAnswer(const RTCOfferAnswerOptions& offer_answer_options,
Karl Wiberg5966c502019-02-21 23:55:09 +0100588 cricket::MediaSessionOptions* session_options)
589 RTC_RUN_ON(signaling_thread());
Steve Antondcc3c022017-12-22 16:02:54 -0800590 void GetOptionsForPlanBAnswer(
591 const PeerConnectionInterface::RTCOfferAnswerOptions&
592 offer_answer_options,
Karl Wiberg5966c502019-02-21 23:55:09 +0100593 cricket::MediaSessionOptions* session_options)
594 RTC_RUN_ON(signaling_thread());
Steve Antondcc3c022017-12-22 16:02:54 -0800595 void GetOptionsForUnifiedPlanAnswer(
596 const PeerConnectionInterface::RTCOfferAnswerOptions&
597 offer_answer_options,
Karl Wiberg5966c502019-02-21 23:55:09 +0100598 cricket::MediaSessionOptions* session_options)
599 RTC_RUN_ON(signaling_thread());
htaa2a49d92016-03-04 02:51:39 -0800600
zhihuang1c378ed2017-08-17 14:10:50 -0700601 // Generates MediaDescriptionOptions for the |session_opts| based on existing
602 // local description or remote description.
603 void GenerateMediaDescriptionOptions(
604 const SessionDescriptionInterface* session_desc,
Steve Anton1d03a752017-11-27 14:30:09 -0800605 RtpTransceiverDirection audio_direction,
606 RtpTransceiverDirection video_direction,
Danil Chapovalov66cadcc2018-06-19 16:47:43 +0200607 absl::optional<size_t>* audio_index,
608 absl::optional<size_t>* video_index,
609 absl::optional<size_t>* data_index,
Karl Wiberg85a4a932019-03-22 15:29:58 +0100610 cricket::MediaSessionOptions* session_options)
611 RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700612
Steve Antonfa2260d2017-12-28 16:38:23 -0800613 // Generates the active MediaDescriptionOptions for the local data channel
614 // given the specified MID.
615 cricket::MediaDescriptionOptions GetMediaDescriptionOptionsForActiveData(
Karl Wiberg85a4a932019-03-22 15:29:58 +0100616 const std::string& mid) const RTC_RUN_ON(signaling_thread());
Steve Antonfa2260d2017-12-28 16:38:23 -0800617
618 // Generates the rejected MediaDescriptionOptions for the local data channel
619 // given the specified MID.
620 cricket::MediaDescriptionOptions GetMediaDescriptionOptionsForRejectedData(
Karl Wiberg85a4a932019-03-22 15:29:58 +0100621 const std::string& mid) const RTC_RUN_ON(signaling_thread());
Steve Antonfa2260d2017-12-28 16:38:23 -0800622
623 // Returns the MID for the data section associated with either the
624 // RtpDataChannel or SCTP data channel, if it has been set. If no data
625 // channels are configured this will return nullopt.
Karl Wiberg2cc368f2019-04-02 11:31:56 +0200626 absl::optional<std::string> GetDataMid() const RTC_RUN_ON(signaling_thread());
Steve Antonfa2260d2017-12-28 16:38:23 -0800627
Steve Anton4171afb2017-11-20 10:20:22 -0800628 // Remove all local and remote senders of type |media_type|.
deadbeeffaac4972015-11-12 15:33:07 -0800629 // Called when a media type is rejected (m-line set to port 0).
Karl Wiberg744310f2019-02-14 10:18:56 +0100630 void RemoveSenders(cricket::MediaType media_type)
631 RTC_RUN_ON(signaling_thread());
deadbeeffaac4972015-11-12 15:33:07 -0800632
deadbeefbda7e0b2015-12-08 17:13:40 -0800633 // Makes sure a MediaStreamTrack is created for each StreamParam in |streams|,
634 // and existing MediaStreamTracks are removed if there is no corresponding
635 // StreamParam. If |default_track_needed| is true, a default MediaStreamTrack
636 // is created if it doesn't exist; if false, it's removed if it exists.
637 // |media_type| is the type of the |streams| and can be either audio or video.
deadbeefab9b2d12015-10-14 11:33:11 -0700638 // If a new MediaStream is created it is added to |new_streams|.
Steve Anton4171afb2017-11-20 10:20:22 -0800639 void UpdateRemoteSendersList(
deadbeefab9b2d12015-10-14 11:33:11 -0700640 const std::vector<cricket::StreamParams>& streams,
deadbeefbda7e0b2015-12-08 17:13:40 -0800641 bool default_track_needed,
deadbeefab9b2d12015-10-14 11:33:11 -0700642 cricket::MediaType media_type,
Karl Wiberg744310f2019-02-14 10:18:56 +0100643 StreamCollection* new_streams) RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700644
Steve Anton4171afb2017-11-20 10:20:22 -0800645 // Triggered when a remote sender has been seen for the first time in a remote
deadbeefab9b2d12015-10-14 11:33:11 -0700646 // session description. It creates a remote MediaStreamTrackInterface
647 // implementation and triggers CreateAudioReceiver or CreateVideoReceiver.
Steve Anton4171afb2017-11-20 10:20:22 -0800648 void OnRemoteSenderAdded(const RtpSenderInfo& sender_info,
Karl Wiberg744310f2019-02-14 10:18:56 +0100649 cricket::MediaType media_type)
650 RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700651
Steve Anton4171afb2017-11-20 10:20:22 -0800652 // Triggered when a remote sender has been removed from a remote session
653 // description. It removes the remote sender with id |sender_id| from a remote
deadbeefab9b2d12015-10-14 11:33:11 -0700654 // MediaStream and triggers DestroyAudioReceiver or DestroyVideoReceiver.
Steve Anton4171afb2017-11-20 10:20:22 -0800655 void OnRemoteSenderRemoved(const RtpSenderInfo& sender_info,
Karl Wiberg744310f2019-02-14 10:18:56 +0100656 cricket::MediaType media_type)
657 RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700658
659 // Finds remote MediaStreams without any tracks and removes them from
660 // |remote_streams_| and notifies the observer that the MediaStreams no longer
661 // exist.
Karl Wiberg744310f2019-02-14 10:18:56 +0100662 void UpdateEndedRemoteMediaStreams() RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700663
deadbeefab9b2d12015-10-14 11:33:11 -0700664 // Loops through the vector of |streams| and finds added and removed
665 // StreamParams since last time this method was called.
Steve Anton4171afb2017-11-20 10:20:22 -0800666 // For each new or removed StreamParam, OnLocalSenderSeen or
667 // OnLocalSenderRemoved is invoked.
668 void UpdateLocalSenders(const std::vector<cricket::StreamParams>& streams,
Karl Wiberg5966c502019-02-21 23:55:09 +0100669 cricket::MediaType media_type)
670 RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700671
Steve Anton4171afb2017-11-20 10:20:22 -0800672 // Triggered when a local sender has been seen for the first time in a local
deadbeefab9b2d12015-10-14 11:33:11 -0700673 // session description.
674 // This method triggers CreateAudioSender or CreateVideoSender if the rtp
675 // streams in the local SessionDescription can be mapped to a MediaStreamTrack
676 // in a MediaStream in |local_streams_|
Steve Anton4171afb2017-11-20 10:20:22 -0800677 void OnLocalSenderAdded(const RtpSenderInfo& sender_info,
Karl Wiberg5966c502019-02-21 23:55:09 +0100678 cricket::MediaType media_type)
679 RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700680
Steve Anton4171afb2017-11-20 10:20:22 -0800681 // Triggered when a local sender has been removed from a local session
deadbeefab9b2d12015-10-14 11:33:11 -0700682 // description.
683 // This method triggers DestroyAudioSender or DestroyVideoSender if a stream
684 // has been removed from the local SessionDescription and the stream can be
685 // mapped to a MediaStreamTrack in a MediaStream in |local_streams_|.
Steve Anton4171afb2017-11-20 10:20:22 -0800686 void OnLocalSenderRemoved(const RtpSenderInfo& sender_info,
Karl Wiberga58e1692019-03-26 13:33:43 +0100687 cricket::MediaType media_type)
688 RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700689
Karl Wiberg85a4a932019-03-22 15:29:58 +0100690 void UpdateLocalRtpDataChannels(const cricket::StreamParamsVec& streams)
691 RTC_RUN_ON(signaling_thread());
Karl Wiberg106d92d2019-02-14 10:17:47 +0100692 void UpdateRemoteRtpDataChannels(const cricket::StreamParamsVec& streams)
693 RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700694 void UpdateClosingRtpDataChannels(
695 const std::vector<std::string>& active_channels,
Karl Wiberg85a4a932019-03-22 15:29:58 +0100696 bool is_local_update) RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700697 void CreateRemoteRtpDataChannel(const std::string& label,
Karl Wiberg106d92d2019-02-14 10:17:47 +0100698 uint32_t remote_ssrc)
699 RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700700
701 // Creates channel and adds it to the collection of DataChannels that will
702 // be offered in a SessionDescription.
703 rtc::scoped_refptr<DataChannel> InternalCreateDataChannel(
704 const std::string& label,
Karl Wiberg106d92d2019-02-14 10:17:47 +0100705 const InternalDataChannelInit* config) RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700706
707 // Checks if any data channel has been added.
Karl Wiberg85a4a932019-03-22 15:29:58 +0100708 bool HasDataChannels() const RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700709
Karl Wiberg85a4a932019-03-22 15:29:58 +0100710 void AllocateSctpSids(rtc::SSLRole role) RTC_RUN_ON(signaling_thread());
711 void OnSctpDataChannelClosed(DataChannel* channel)
712 RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700713
Karl Wiberg85a4a932019-03-22 15:29:58 +0100714 void OnDataChannelDestroyed() RTC_RUN_ON(signaling_thread());
Steve Antonba818672017-11-06 10:21:57 -0800715 // Called when a valid data channel OPEN message is received.
deadbeefab9b2d12015-10-14 11:33:11 -0700716 void OnDataChannelOpenMessage(const std::string& label,
Karl Wiberg106d92d2019-02-14 10:17:47 +0100717 const InternalDataChannelInit& config)
718 RTC_RUN_ON(signaling_thread());
719
Bjorn Mellem175aa2e2018-11-08 11:23:22 -0800720 // Parses and handles open messages. Returns true if the message is an open
721 // message, false otherwise.
722 bool HandleOpenMessage_s(const cricket::ReceiveDataParams& params,
723 const rtc::CopyOnWriteBuffer& buffer)
724 RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700725
Steve Anton4171afb2017-11-20 10:20:22 -0800726 // Returns true if the PeerConnection is configured to use Unified Plan
727 // semantics for creating offers/answers and setting local/remote
728 // descriptions. If this is true the RtpTransceiver API will also be available
729 // to the user. If this is false, Plan B semantics are assumed.
Steve Anton79e79602017-11-20 10:25:56 -0800730 // TODO(bugs.webrtc.org/8530): Flip the default to be Unified Plan once
731 // sufficient time has passed.
Karl Wiberg5966c502019-02-21 23:55:09 +0100732 bool IsUnifiedPlan() const RTC_RUN_ON(signaling_thread()) {
Steve Anton79e79602017-11-20 10:25:56 -0800733 return configuration_.sdp_semantics == SdpSemantics::kUnifiedPlan;
734 }
Steve Anton4171afb2017-11-20 10:20:22 -0800735
Steve Anton06817cd2018-12-18 15:55:30 -0800736 // The offer/answer machinery assumes the media section MID is present and
737 // unique. To support legacy end points that do not supply a=mid lines, this
738 // method will modify the session description to add MIDs generated according
739 // to the SDP semantics.
Karl Wiberg5966c502019-02-21 23:55:09 +0100740 void FillInMissingRemoteMids(cricket::SessionDescription* remote_description)
741 RTC_RUN_ON(signaling_thread());
Steve Anton06817cd2018-12-18 15:55:30 -0800742
Steve Anton4171afb2017-11-20 10:20:22 -0800743 // Is there an RtpSender of the given type?
Karl Wiberg5966c502019-02-21 23:55:09 +0100744 bool HasRtpSender(cricket::MediaType type) const
745 RTC_RUN_ON(signaling_thread());
deadbeeffac06552015-11-25 11:26:01 -0800746
Steve Anton4171afb2017-11-20 10:20:22 -0800747 // Return the RtpSender with the given track attached.
748 rtc::scoped_refptr<RtpSenderProxyWithInternal<RtpSenderInternal>>
Karl Wiberga58e1692019-03-26 13:33:43 +0100749 FindSenderForTrack(MediaStreamTrackInterface* track) const
750 RTC_RUN_ON(signaling_thread());
deadbeef70ab1a12015-09-28 16:53:55 -0700751
Steve Anton4171afb2017-11-20 10:20:22 -0800752 // Return the RtpSender with the given id, or null if none exists.
753 rtc::scoped_refptr<RtpSenderProxyWithInternal<RtpSenderInternal>>
Karl Wiberga58e1692019-03-26 13:33:43 +0100754 FindSenderById(const std::string& sender_id) const
755 RTC_RUN_ON(signaling_thread());
Steve Anton4171afb2017-11-20 10:20:22 -0800756
757 // Return the RtpReceiver with the given id, or null if none exists.
758 rtc::scoped_refptr<RtpReceiverProxyWithInternal<RtpReceiverInternal>>
Karl Wiberga58e1692019-03-26 13:33:43 +0100759 FindReceiverById(const std::string& receiver_id) const
760 RTC_RUN_ON(signaling_thread());
Steve Anton4171afb2017-11-20 10:20:22 -0800761
762 std::vector<RtpSenderInfo>* GetRemoteSenderInfos(
763 cricket::MediaType media_type);
764 std::vector<RtpSenderInfo>* GetLocalSenderInfos(
765 cricket::MediaType media_type);
766 const RtpSenderInfo* FindSenderInfo(const std::vector<RtpSenderInfo>& infos,
Emircan Uysalerbc609ea2018-03-27 21:57:18 +0000767 const std::string& stream_id,
Steve Anton4171afb2017-11-20 10:20:22 -0800768 const std::string sender_id) const;
deadbeefab9b2d12015-10-14 11:33:11 -0700769
770 // Returns the specified SCTP DataChannel in sctp_data_channels_,
771 // or nullptr if not found.
Karl Wiberg85a4a932019-03-22 15:29:58 +0100772 DataChannel* FindDataChannelBySid(int sid) const
773 RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700774
Taylor Brandstettera1c30352016-05-13 08:15:11 -0700775 // Called when first configuring the port allocator.
Karl Wibergfb3be392019-03-22 14:13:22 +0100776 struct InitializePortAllocatorResult {
777 bool enable_ipv6;
778 };
779 InitializePortAllocatorResult InitializePortAllocator_n(
Harald Alvestrandb2a74782018-06-28 13:54:07 +0200780 const cricket::ServerAddresses& stun_servers,
781 const std::vector<cricket::RelayServerConfig>& turn_servers,
782 const RTCConfiguration& configuration);
deadbeef293e9262017-01-11 12:28:30 -0800783 // Called when SetConfiguration is called to apply the supported subset
784 // of the configuration on the network thread.
785 bool ReconfigurePortAllocator_n(
786 const cricket::ServerAddresses& stun_servers,
787 const std::vector<cricket::RelayServerConfig>& turn_servers,
788 IceTransportsType type,
789 int candidate_pool_size,
Jonas Orelandbdcee282017-10-10 14:01:40 +0200790 bool prune_turn_ports,
Qingsi Wangdb53f8e2018-02-20 14:45:49 -0800791 webrtc::TurnCustomizer* turn_customizer,
Karl Wiberg739506e2019-04-03 11:37:28 +0200792 absl::optional<int> stun_candidate_keepalive_interval,
793 bool have_local_description);
Taylor Brandstettera1c30352016-05-13 08:15:11 -0700794
Elad Alon99c3fe52017-10-13 16:29:40 +0200795 // Starts output of an RTC event log to the given output object.
ivoc14d5dbe2016-07-04 07:06:55 -0700796 // This function should only be called from the worker thread.
Bjorn Tereliusde939432017-11-20 17:38:14 +0100797 bool StartRtcEventLog_w(std::unique_ptr<RtcEventLogOutput> output,
798 int64_t output_period_ms);
Elad Alon99c3fe52017-10-13 16:29:40 +0200799
Elad Alonacb24172017-10-06 14:32:13 +0200800 // Stops recording an RTC event log.
ivoc14d5dbe2016-07-04 07:06:55 -0700801 // This function should only be called from the worker thread.
802 void StopRtcEventLog_w();
803
Steve Anton038834f2017-07-14 15:59:59 -0700804 // Ensures the configuration doesn't have any parameters with invalid values,
805 // or values that conflict with other parameters.
806 //
807 // Returns RTCError::OK() if there are no issues.
808 RTCError ValidateConfiguration(const RTCConfiguration& config) const;
809
Steve Antonba818672017-11-06 10:21:57 -0800810 cricket::ChannelManager* channel_manager() const;
Steve Antonba818672017-11-06 10:21:57 -0800811
Steve Antonf8470812017-12-04 10:46:21 -0800812 enum class SessionError {
813 kNone, // No error.
814 kContent, // Error in BaseChannel SetLocalContent/SetRemoteContent.
815 kTransport, // Error from the underlying transport.
816 };
817
Steve Anton75737c02017-11-06 10:37:17 -0800818 // Returns the last error in the session. See the enum above for details.
Karl Wiberga58e1692019-03-26 13:33:43 +0100819 SessionError session_error() const RTC_RUN_ON(signaling_thread()) {
820 return session_error_;
821 }
Steve Antonf8470812017-12-04 10:46:21 -0800822 const std::string& session_error_desc() const { return session_error_desc_; }
Steve Anton75737c02017-11-06 10:37:17 -0800823
Amit Hilbuchdd9390c2018-11-13 16:26:05 -0800824 cricket::ChannelInterface* GetChannel(const std::string& content_name);
Steve Anton75737c02017-11-06 10:37:17 -0800825
826 // Get current SSL role used by SCTP's underlying transport.
827 bool GetSctpSslRole(rtc::SSLRole* role);
828
Steve Anton75737c02017-11-06 10:37:17 -0800829 cricket::IceConfig ParseIceConfig(
830 const PeerConnectionInterface::RTCConfiguration& config) const;
831
Steve Anton75737c02017-11-06 10:37:17 -0800832 // Implements DataChannelProviderInterface.
833 bool SendData(const cricket::SendDataParams& params,
834 const rtc::CopyOnWriteBuffer& payload,
835 cricket::SendDataResult* result) override;
836 bool ConnectDataChannel(DataChannel* webrtc_data_channel) override;
837 void DisconnectDataChannel(DataChannel* webrtc_data_channel) override;
838 void AddSctpDataStream(int sid) override;
839 void RemoveSctpDataStream(int sid) override;
840 bool ReadyToSendData() const override;
841
842 cricket::DataChannelType data_channel_type() const;
843
Bjorn Mellem175aa2e2018-11-08 11:23:22 -0800844 // Implements DataChannelSink.
845 void OnDataReceived(int channel_id,
846 DataMessageType type,
847 const rtc::CopyOnWriteBuffer& buffer) override;
848 void OnChannelClosing(int channel_id) override;
849 void OnChannelClosed(int channel_id) override;
850
Steve Anton75737c02017-11-06 10:37:17 -0800851 // Called when an RTCCertificate is generated or retrieved by
852 // WebRTCSessionDescriptionFactory. Should happen before setLocalDescription.
853 void OnCertificateReady(
854 const rtc::scoped_refptr<rtc::RTCCertificate>& certificate);
855 void OnDtlsSrtpSetupFailure(cricket::BaseChannel*, bool rtcp);
856
Steve Anton75737c02017-11-06 10:37:17 -0800857 // Non-const versions of local_description()/remote_description(), for use
858 // internally.
Karl Wiberg739506e2019-04-03 11:37:28 +0200859 SessionDescriptionInterface* mutable_local_description()
860 RTC_RUN_ON(signaling_thread()) {
Steve Anton75737c02017-11-06 10:37:17 -0800861 return pending_local_description_ ? pending_local_description_.get()
862 : current_local_description_.get();
863 }
Karl Wiberg739506e2019-04-03 11:37:28 +0200864 SessionDescriptionInterface* mutable_remote_description()
865 RTC_RUN_ON(signaling_thread()) {
Steve Anton75737c02017-11-06 10:37:17 -0800866 return pending_remote_description_ ? pending_remote_description_.get()
867 : current_remote_description_.get();
868 }
869
870 // Updates the error state, signaling if necessary.
Steve Antonf8470812017-12-04 10:46:21 -0800871 void SetSessionError(SessionError error, const std::string& error_desc);
Steve Anton75737c02017-11-06 10:37:17 -0800872
Zhi Huange830e682018-03-30 10:48:35 -0700873 RTCError UpdateSessionState(SdpType type,
874 cricket::ContentSource source,
875 const cricket::SessionDescription* description);
Steve Anton75737c02017-11-06 10:37:17 -0800876 // Push the media parts of the local or remote session description
877 // down to all of the channels.
Karl Wiberg5966c502019-02-21 23:55:09 +0100878 RTCError PushdownMediaDescription(SdpType type, cricket::ContentSource source)
879 RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -0800880
Steve Anton8a006912017-12-04 15:25:56 -0800881 RTCError PushdownTransportDescription(cricket::ContentSource source,
Steve Anton3828c062017-12-06 10:34:51 -0800882 SdpType type);
Steve Anton75737c02017-11-06 10:37:17 -0800883
884 // Returns true and the TransportInfo of the given |content_name|
885 // from |description|. Returns false if it's not available.
886 static bool GetTransportDescription(
887 const cricket::SessionDescription* description,
888 const std::string& content_name,
889 cricket::TransportDescription* info);
890
Steve Anton75737c02017-11-06 10:37:17 -0800891 // Enables media channels to allow sending of media.
Steve Antoned10bd92017-12-05 10:52:59 -0800892 // This enables media to flow on all configured audio/video channels and the
893 // RtpDataChannel.
Karl Wiberga58e1692019-03-26 13:33:43 +0100894 void EnableSending() RTC_RUN_ON(signaling_thread());
Steve Anton3fe1b152017-12-12 10:20:08 -0800895
Steve Anton8af21862017-12-15 11:20:13 -0800896 // Destroys all BaseChannels and destroys the SCTP data channel, if present.
Karl Wiberg85a4a932019-03-22 15:29:58 +0100897 void DestroyAllChannels() RTC_RUN_ON(signaling_thread());
Steve Anton3fe1b152017-12-12 10:20:08 -0800898
Steve Anton75737c02017-11-06 10:37:17 -0800899 // Returns the media index for a local ice candidate given the content name.
900 // Returns false if the local session description does not have a media
901 // content called |content_name|.
902 bool GetLocalCandidateMediaIndex(const std::string& content_name,
Karl Wiberg739506e2019-04-03 11:37:28 +0200903 int* sdp_mline_index)
904 RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -0800905 // Uses all remote candidates in |remote_desc| in this session.
906 bool UseCandidatesInSessionDescription(
Karl Wiberg744310f2019-02-14 10:18:56 +0100907 const SessionDescriptionInterface* remote_desc)
908 RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -0800909 // Uses |candidate| in this session.
Karl Wiberg744310f2019-02-14 10:18:56 +0100910 bool UseCandidate(const IceCandidateInterface* candidate)
911 RTC_RUN_ON(signaling_thread());
Guido Urdaneta41633172019-05-23 20:12:29 +0200912 RTCErrorOr<const cricket::ContentInfo*> FindContentInfo(
913 const SessionDescriptionInterface* description,
914 const IceCandidateInterface* candidate) RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -0800915 // Deletes the corresponding channel of contents that don't exist in |desc|.
916 // |desc| can be null. This means that all channels are deleted.
Karl Wiberg5966c502019-02-21 23:55:09 +0100917 void RemoveUnusedChannels(const cricket::SessionDescription* desc)
918 RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -0800919
920 // Allocates media channels based on the |desc|. If |desc| doesn't have
921 // the BUNDLE option, this method will disable BUNDLE in PortAllocator.
922 // This method will also delete any existing media channels before creating.
Karl Wiberg5966c502019-02-21 23:55:09 +0100923 RTCError CreateChannels(const cricket::SessionDescription& desc)
924 RTC_RUN_ON(signaling_thread());
Steve Antondcc3c022017-12-22 16:02:54 -0800925
926 // If the BUNDLE policy is max-bundle, then we know for sure that all
927 // transports will be bundled from the start. This method returns the BUNDLE
928 // group if that's the case, or null if BUNDLE will be negotiated later. An
929 // error is returned if max-bundle is specified but the session description
930 // does not have a BUNDLE group.
931 RTCErrorOr<const cricket::ContentGroup*> GetEarlyBundleGroup(
Karl Wiberg5966c502019-02-21 23:55:09 +0100932 const cricket::SessionDescription& desc) const
933 RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -0800934
935 // Helper methods to create media channels.
Karl Wiberg5966c502019-02-21 23:55:09 +0100936 cricket::VoiceChannel* CreateVoiceChannel(const std::string& mid)
937 RTC_RUN_ON(signaling_thread());
938 cricket::VideoChannel* CreateVideoChannel(const std::string& mid)
939 RTC_RUN_ON(signaling_thread());
940 bool CreateDataChannel(const std::string& mid) RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -0800941
Zhi Huange830e682018-03-30 10:48:35 -0700942 bool CreateSctpTransport_n(const std::string& mid);
Steve Anton75737c02017-11-06 10:37:17 -0800943 // For bundling.
Steve Anton75737c02017-11-06 10:37:17 -0800944 void DestroySctpTransport_n();
945 // SctpTransport signal handlers. Needed to marshal signals from the network
946 // to signaling thread.
947 void OnSctpTransportReadyToSendData_n();
948 // This may be called with "false" if the direction of the m= section causes
949 // us to tear down the SCTP connection.
950 void OnSctpTransportReadyToSendData_s(bool ready);
951 void OnSctpTransportDataReceived_n(const cricket::ReceiveDataParams& params,
952 const rtc::CopyOnWriteBuffer& payload);
953 // Beyond just firing the signal to the signaling thread, listens to SCTP
954 // CONTROL messages on unused SIDs and processes them as OPEN messages.
955 void OnSctpTransportDataReceived_s(const cricket::ReceiveDataParams& params,
956 const rtc::CopyOnWriteBuffer& payload);
Taylor Brandstettercdd05f02018-05-31 13:23:32 -0700957 void OnSctpClosingProcedureStartedRemotely_n(int sid);
958 void OnSctpClosingProcedureComplete_n(int sid);
Steve Anton75737c02017-11-06 10:37:17 -0800959
Bjorn Mellem175aa2e2018-11-08 11:23:22 -0800960 bool SetupMediaTransportForDataChannels_n(const std::string& mid)
961 RTC_RUN_ON(network_thread());
962 void OnMediaTransportStateChanged_n() RTC_RUN_ON(network_thread());
963 void TeardownMediaTransportForDataChannels_n() RTC_RUN_ON(network_thread());
964
Steve Anton75737c02017-11-06 10:37:17 -0800965 bool ValidateBundleSettings(const cricket::SessionDescription* desc);
966 bool HasRtcpMuxEnabled(const cricket::ContentInfo* content);
967 // Below methods are helper methods which verifies SDP.
Steve Anton8a006912017-12-04 15:25:56 -0800968 RTCError ValidateSessionDescription(const SessionDescriptionInterface* sdesc,
Karl Wiberg5966c502019-02-21 23:55:09 +0100969 cricket::ContentSource source)
970 RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -0800971
Steve Anton3828c062017-12-06 10:34:51 -0800972 // Check if a call to SetLocalDescription is acceptable with a session
973 // description of the given type.
974 bool ExpectSetLocalDescription(SdpType type);
975 // Check if a call to SetRemoteDescription is acceptable with a session
976 // description of the given type.
977 bool ExpectSetRemoteDescription(SdpType type);
Steve Anton75737c02017-11-06 10:37:17 -0800978 // Verifies a=setup attribute as per RFC 5763.
979 bool ValidateDtlsSetupAttribute(const cricket::SessionDescription* desc,
Steve Anton3828c062017-12-06 10:34:51 -0800980 SdpType type);
Steve Anton75737c02017-11-06 10:37:17 -0800981
982 // Returns true if we are ready to push down the remote candidate.
983 // |remote_desc| is the new remote description, or NULL if the current remote
984 // description should be used. Output |valid| is true if the candidate media
985 // index is valid.
986 bool ReadyToUseRemoteCandidate(const IceCandidateInterface* candidate,
987 const SessionDescriptionInterface* remote_desc,
Karl Wiberga58e1692019-03-26 13:33:43 +0100988 bool* valid) RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -0800989
990 // Returns true if SRTP (either using DTLS-SRTP or SDES) is required by
991 // this session.
Karl Wiberg739506e2019-04-03 11:37:28 +0200992 bool SrtpRequired() const RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -0800993
Zhi Huange830e682018-03-30 10:48:35 -0700994 // JsepTransportController signal handlers.
Karl Wiberg744310f2019-02-14 10:18:56 +0100995 void OnTransportControllerConnectionState(cricket::IceConnectionState state)
996 RTC_RUN_ON(signaling_thread());
997 void OnTransportControllerGatheringState(cricket::IceGatheringState state)
998 RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -0800999 void OnTransportControllerCandidatesGathered(
1000 const std::string& transport_name,
Karl Wiberg744310f2019-02-14 10:18:56 +01001001 const std::vector<cricket::Candidate>& candidates)
1002 RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -08001003 void OnTransportControllerCandidatesRemoved(
Karl Wiberg744310f2019-02-14 10:18:56 +01001004 const std::vector<cricket::Candidate>& candidates)
1005 RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -08001006 void OnTransportControllerDtlsHandshakeError(rtc::SSLHandshakeError error);
1007
Steve Antonf8470812017-12-04 10:46:21 -08001008 const char* SessionErrorToString(SessionError error) const;
Karl Wiberga58e1692019-03-26 13:33:43 +01001009 std::string GetSessionErrorMsg() RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -08001010
Steve Anton8e20f172018-03-06 10:55:04 -08001011 // Report the UMA metric SdpFormatReceived for the given remote offer.
1012 void ReportSdpFormatReceived(const SessionDescriptionInterface& remote_offer);
1013
Steve Anton0ffaaa22018-02-23 10:31:30 -08001014 // Report inferred negotiated SDP semantics from a local/remote answer to the
1015 // UMA observer.
1016 void ReportNegotiatedSdpSemantics(const SessionDescriptionInterface& answer);
1017
Steve Anton75737c02017-11-06 10:37:17 -08001018 // Invoked when TransportController connection completion is signaled.
1019 // Reports stats for all transports in use.
Karl Wiberga58e1692019-03-26 13:33:43 +01001020 void ReportTransportStats() RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -08001021
1022 // Gather the usage of IPv4/IPv6 as best connection.
1023 void ReportBestConnectionState(const cricket::TransportStats& stats);
1024
Steve Antonc7b964c2018-02-01 14:39:45 -08001025 void ReportNegotiatedCiphers(const cricket::TransportStats& stats,
Karl Wiberg739506e2019-04-03 11:37:28 +02001026 const std::set<cricket::MediaType>& media_types)
1027 RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -08001028
Harald Alvestrand8ebba742018-05-31 14:00:34 +02001029 void NoteUsageEvent(UsageEvent event);
Karl Wiberg744310f2019-02-14 10:18:56 +01001030 void ReportUsagePattern() const RTC_RUN_ON(signaling_thread());
Harald Alvestrand8ebba742018-05-31 14:00:34 +02001031
Steve Anton75737c02017-11-06 10:37:17 -08001032 void OnSentPacket_w(const rtc::SentPacket& sent_packet);
1033
Karl Wiberga58e1692019-03-26 13:33:43 +01001034 const std::string GetTransportName(const std::string& content_name)
1035 RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -08001036
Steve Anton6fec8802017-12-04 10:37:29 -08001037 // Destroys and clears the BaseChannel associated with the given transceiver,
1038 // if such channel is set.
1039 void DestroyTransceiverChannel(
1040 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
1041 transceiver);
1042
1043 // Destroys the RTP data channel and/or the SCTP data channel and clears it.
Karl Wiberg85a4a932019-03-22 15:29:58 +01001044 void DestroyDataChannel() RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -08001045
Amit Hilbuchdd9390c2018-11-13 16:26:05 -08001046 // Destroys the given ChannelInterface.
1047 // The channel cannot be accessed after this method is called.
1048 void DestroyChannelInterface(cricket::ChannelInterface* channel);
Steve Anton6fec8802017-12-04 10:37:29 -08001049
Zhi Huang365381f2018-04-13 16:44:34 -07001050 // JsepTransportController::Observer override.
Taylor Brandstettercbaa2542018-04-16 16:42:14 -07001051 //
1052 // Called by |transport_controller_| when processing transport information
1053 // from a session description, and the mapping from m= sections to transports
1054 // changed (as a result of BUNDLE negotiation, or m= sections being
1055 // rejected).
Piotr (Peter) Slatalacc8e8bb2018-11-15 08:26:19 -08001056 bool OnTransportChanged(const std::string& mid,
1057 RtpTransportInternal* rtp_transport,
Harald Alvestrandc85328f2019-02-28 07:51:00 +01001058 rtc::scoped_refptr<DtlsTransport> dtls_transport,
Karl Wibergac025892019-03-26 13:08:37 +01001059 MediaTransportInterface* media_transport) override;
Zhi Huange830e682018-03-30 10:48:35 -07001060
Guido Urdaneta1ff16c82019-05-20 19:31:53 +02001061 // RtpSenderBase::SetStreamsObserver override.
1062 void OnSetStreams() override;
1063
Harald Alvestrand7a1c7f72018-08-01 10:50:16 +02001064 // Returns the observer. Will crash on CHECK if the observer is removed.
Karl Wiberg744310f2019-02-14 10:18:56 +01001065 PeerConnectionObserver* Observer() const RTC_RUN_ON(signaling_thread());
Harald Alvestrand7a1c7f72018-08-01 10:50:16 +02001066
Benjamin Wright8c27cca2018-10-25 10:16:44 -07001067 // Returns the CryptoOptions for this PeerConnection. This will always
1068 // return the RTCConfiguration.crypto_options if set and will only default
1069 // back to the PeerConnectionFactory settings if nothing was set.
Karl Wiberg5966c502019-02-21 23:55:09 +01001070 CryptoOptions GetCryptoOptions() RTC_RUN_ON(signaling_thread());
Benjamin Wright8c27cca2018-10-25 10:16:44 -07001071
Anton Sukhanov98a462c2018-10-17 13:15:42 -07001072 // Returns rtp transport, result can not be nullptr.
Karl Wiberg2cc368f2019-04-02 11:31:56 +02001073 RtpTransportInternal* GetRtpTransport(const std::string& mid)
1074 RTC_RUN_ON(signaling_thread()) {
Anton Sukhanov98a462c2018-10-17 13:15:42 -07001075 auto rtp_transport = transport_controller_->GetRtpTransport(mid);
1076 RTC_DCHECK(rtp_transport);
1077 return rtp_transport;
1078 }
1079
Guido Urdaneta70c2db12019-04-16 12:24:14 +02001080 void UpdateNegotiationNeeded();
1081 bool CheckIfNegotiationIsNeeded();
1082
Karl Wiberg106d92d2019-02-14 10:17:47 +01001083 sigslot::signal1<DataChannel*> SignalDataChannelCreated_
1084 RTC_GUARDED_BY(signaling_thread());
Steve Anton2d8609c2018-01-23 16:38:46 -08001085
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001086 // Storing the factory as a scoped reference pointer ensures that the memory
1087 // in the PeerConnectionFactoryImpl remains available as long as the
1088 // PeerConnection is running. It is passed to PeerConnection as a raw pointer.
1089 // However, since the reference counting is done in the
deadbeefab9b2d12015-10-14 11:33:11 -07001090 // PeerConnectionFactoryInterface all instances created using the raw pointer
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001091 // will refer to the same reference count.
Karl Wiberg744310f2019-02-14 10:18:56 +01001092 const rtc::scoped_refptr<PeerConnectionFactory> factory_;
1093 PeerConnectionObserver* observer_ RTC_GUARDED_BY(signaling_thread()) =
1094 nullptr;
terelius33860252017-05-12 23:37:18 -07001095
1096 // The EventLog needs to outlive |call_| (and any other object that uses it).
Karl Wibergb03ab712019-02-14 11:59:57 +01001097 std::unique_ptr<RtcEventLog> event_log_ RTC_GUARDED_BY(worker_thread());
1098
1099 // Points to the same thing as `event_log_`. Since it's const, we may read the
1100 // pointer (but not touch the object) from any thread.
1101 RtcEventLog* const event_log_ptr_ RTC_PT_GUARDED_BY(worker_thread());
terelius33860252017-05-12 23:37:18 -07001102
Karl Wiberg8d2e2282019-02-17 13:00:07 +01001103 SignalingState signaling_state_ RTC_GUARDED_BY(signaling_thread()) = kStable;
1104 IceConnectionState ice_connection_state_ RTC_GUARDED_BY(signaling_thread()) =
1105 kIceConnectionNew;
1106 PeerConnectionInterface::IceConnectionState standardized_ice_connection_state_
1107 RTC_GUARDED_BY(signaling_thread()) = kIceConnectionNew;
1108 PeerConnectionInterface::PeerConnectionState connection_state_
1109 RTC_GUARDED_BY(signaling_thread()) = PeerConnectionState::kNew;
Jonas Olsson635474e2018-10-18 15:58:17 +02001110
Karl Wiberg8d2e2282019-02-17 13:00:07 +01001111 IceGatheringState ice_gathering_state_ RTC_GUARDED_BY(signaling_thread()) =
1112 kIceGatheringNew;
Karl Wiberg5966c502019-02-21 23:55:09 +01001113 PeerConnectionInterface::RTCConfiguration configuration_
1114 RTC_GUARDED_BY(signaling_thread());
1115
1116 // Cache configuration_.use_media_transport so that we can access it from
1117 // other threads.
1118 // TODO(bugs.webrtc.org/9987): Caching just this bool and allowing the data
1119 // it's derived from to change is not necessarily sound. Stop doing it.
1120 rtc::RaceChecker use_media_transport_race_checker_;
1121 bool use_media_transport_ RTC_GUARDED_BY(use_media_transport_race_checker_) =
1122 configuration_.use_media_transport;
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001123
Zach Steine20867f2018-08-02 13:20:15 -07001124 // TODO(zstein): |async_resolver_factory_| can currently be nullptr if it
1125 // is not injected. It should be required once chromium supplies it.
Karl Wibergfb3be392019-03-22 14:13:22 +01001126 std::unique_ptr<AsyncResolverFactory> async_resolver_factory_
1127 RTC_GUARDED_BY(signaling_thread());
1128 std::unique_ptr<cricket::PortAllocator>
1129 port_allocator_; // TODO(bugs.webrtc.org/9987): Accessed on both
1130 // signaling and network thread.
1131 std::unique_ptr<rtc::SSLCertificateVerifier>
1132 tls_cert_verifier_; // TODO(bugs.webrtc.org/9987): Accessed on both
1133 // signaling and network thread.
deadbeefab9b2d12015-10-14 11:33:11 -07001134
zhihuang8f65cdf2016-05-06 18:40:30 -07001135 // One PeerConnection has only one RTCP CNAME.
1136 // https://tools.ietf.org/html/draft-ietf-rtcweb-rtp-usage-26#section-4.9
Karl Wibergfb3be392019-03-22 14:13:22 +01001137 const std::string rtcp_cname_;
zhihuang8f65cdf2016-05-06 18:40:30 -07001138
deadbeefab9b2d12015-10-14 11:33:11 -07001139 // Streams added via AddStream.
Karl Wiberg1e1e1022019-03-22 14:27:22 +01001140 const rtc::scoped_refptr<StreamCollection> local_streams_
1141 RTC_GUARDED_BY(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -07001142 // Streams created as a result of SetRemoteDescription.
Karl Wiberg1e1e1022019-03-22 14:27:22 +01001143 const rtc::scoped_refptr<StreamCollection> remote_streams_
1144 RTC_GUARDED_BY(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -07001145
Karl Wiberg1e1e1022019-03-22 14:27:22 +01001146 std::vector<std::unique_ptr<MediaStreamObserver>> stream_observers_
1147 RTC_GUARDED_BY(signaling_thread());
deadbeefeb459812015-12-15 19:24:43 -08001148
Steve Anton4171afb2017-11-20 10:20:22 -08001149 // These lists store sender info seen in local/remote descriptions.
Karl Wibergc70999e2019-03-22 15:14:27 +01001150 std::vector<RtpSenderInfo> remote_audio_sender_infos_
1151 RTC_GUARDED_BY(signaling_thread());
1152 std::vector<RtpSenderInfo> remote_video_sender_infos_
1153 RTC_GUARDED_BY(signaling_thread());
1154 std::vector<RtpSenderInfo> local_audio_sender_infos_
1155 RTC_GUARDED_BY(signaling_thread());
1156 std::vector<RtpSenderInfo> local_video_sender_infos_
1157 RTC_GUARDED_BY(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -07001158
Karl Wiberg85a4a932019-03-22 15:29:58 +01001159 SctpSidAllocator sid_allocator_ RTC_GUARDED_BY(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -07001160 // label -> DataChannel
Karl Wiberg85a4a932019-03-22 15:29:58 +01001161 std::map<std::string, rtc::scoped_refptr<DataChannel>> rtp_data_channels_
1162 RTC_GUARDED_BY(signaling_thread());
1163 std::vector<rtc::scoped_refptr<DataChannel>> sctp_data_channels_
1164 RTC_GUARDED_BY(signaling_thread());
1165 std::vector<rtc::scoped_refptr<DataChannel>> sctp_data_channels_to_free_
1166 RTC_GUARDED_BY(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -07001167
Karl Wiberg85a4a932019-03-22 15:29:58 +01001168 bool remote_peer_supports_msid_ RTC_GUARDED_BY(signaling_thread()) = false;
deadbeef70ab1a12015-09-28 16:53:55 -07001169
Karl Wibergac025892019-03-26 13:08:37 +01001170 // The unique_ptr belongs to the worker thread, but the Call object manages
1171 // its own thread safety.
Karl Wiberg6cab5c82019-03-26 09:57:01 +01001172 std::unique_ptr<Call> call_ RTC_GUARDED_BY(worker_thread());
1173
1174 // Points to the same thing as `call_`. Since it's const, we may read the
Karl Wibergac025892019-03-26 13:08:37 +01001175 // pointer from any thread.
1176 Call* const call_ptr_;
Karl Wiberg6cab5c82019-03-26 09:57:01 +01001177
1178 std::unique_ptr<StatsCollector> stats_
1179 RTC_GUARDED_BY(signaling_thread()); // A pointer is passed to senders_
1180 rtc::scoped_refptr<RTCStatsCollector> stats_collector_
1181 RTC_GUARDED_BY(signaling_thread());
terelius33860252017-05-12 23:37:18 -07001182
deadbeefa601f5c2016-06-06 14:27:39 -07001183 std::vector<
Steve Anton4171afb2017-11-20 10:20:22 -08001184 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>>
Karl Wiberg2cc368f2019-04-02 11:31:56 +02001185 transceivers_; // TODO(bugs.webrtc.org/9987): Accessed on both signaling
1186 // and network thread.
1187
Henrik Boström5b147782018-12-04 11:25:05 +01001188 // In Unified Plan, if we encounter remote SDP that does not contain an a=msid
1189 // line we create and use a stream with a random ID for our receivers. This is
1190 // to support legacy endpoints that do not support the a=msid attribute (as
1191 // opposed to streamless tracks with "a=msid:-").
Karl Wiberga58e1692019-03-26 13:33:43 +01001192 rtc::scoped_refptr<MediaStreamInterface> missing_msid_default_stream_
1193 RTC_GUARDED_BY(signaling_thread());
Amit Hilbuchae3df542019-01-07 12:13:08 -08001194 // MIDs will be generated using this generator which will keep track of
1195 // all the MIDs that have been seen over the life of the PeerConnection.
Karl Wiberga58e1692019-03-26 13:33:43 +01001196 rtc::UniqueStringGenerator mid_generator_ RTC_GUARDED_BY(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -08001197
Karl Wiberga58e1692019-03-26 13:33:43 +01001198 SessionError session_error_ RTC_GUARDED_BY(signaling_thread()) =
1199 SessionError::kNone;
1200 std::string session_error_desc_ RTC_GUARDED_BY(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -08001201
Karl Wiberga58e1692019-03-26 13:33:43 +01001202 std::string session_id_ RTC_GUARDED_BY(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -08001203
Karl Wiberg2cc368f2019-04-02 11:31:56 +02001204 std::unique_ptr<JsepTransportController>
1205 transport_controller_; // TODO(bugs.webrtc.org/9987): Accessed on both
1206 // signaling and network thread.
1207 std::unique_ptr<cricket::SctpTransportInternalFactory>
1208 sctp_factory_; // TODO(bugs.webrtc.org/9987): Accessed on both
1209 // signaling and network thread.
Steve Anton75737c02017-11-06 10:37:17 -08001210 // |rtp_data_channel_| is used if in RTP data channel mode, |sctp_transport_|
1211 // when using SCTP.
Karl Wiberg2cc368f2019-04-02 11:31:56 +02001212 cricket::RtpDataChannel* rtp_data_channel_ =
1213 nullptr; // TODO(bugs.webrtc.org/9987): Accessed on both
1214 // signaling and some other thread.
Steve Anton75737c02017-11-06 10:37:17 -08001215
Harald Alvestrandc85328f2019-02-28 07:51:00 +01001216 cricket::SctpTransportInternal* cricket_sctp_transport() {
1217 return sctp_transport_->internal();
1218 }
Karl Wiberg2cc368f2019-04-02 11:31:56 +02001219 rtc::scoped_refptr<SctpTransport>
1220 sctp_transport_; // TODO(bugs.webrtc.org/9987): Accessed on both
1221 // signaling and network thread.
1222
Zhi Huange830e682018-03-30 10:48:35 -07001223 // |sctp_mid_| is the content name (MID) in SDP.
Karl Wiberg2cc368f2019-04-02 11:31:56 +02001224 absl::optional<std::string>
1225 sctp_mid_; // TODO(bugs.webrtc.org/9987): Accessed on both signaling
1226 // and network thread.
1227
Steve Anton75737c02017-11-06 10:37:17 -08001228 // Value cached on signaling thread. Only updated when SctpReadyToSendData
1229 // fires on the signaling thread.
Karl Wiberg2cc368f2019-04-02 11:31:56 +02001230 bool sctp_ready_to_send_data_ RTC_GUARDED_BY(signaling_thread()) = false;
1231
Steve Anton75737c02017-11-06 10:37:17 -08001232 // Same as signals provided by SctpTransport, but these are guaranteed to
1233 // fire on the signaling thread, whereas SctpTransport fires on the networking
1234 // thread.
1235 // |sctp_invoker_| is used so that any signals queued on the signaling thread
1236 // from the network thread are immediately discarded if the SctpTransport is
1237 // destroyed (due to m= section being rejected).
1238 // TODO(deadbeef): Use a proxy object to ensure that method calls/signals
1239 // are marshalled to the right thread. Could almost use proxy.h for this,
1240 // but it doesn't have a mechanism for marshalling sigslot::signals
Karl Wiberg7a651c6e2019-04-02 13:00:46 +02001241 std::unique_ptr<rtc::AsyncInvoker> sctp_invoker_
1242 RTC_GUARDED_BY(network_thread());
1243 sigslot::signal1<bool> SignalSctpReadyToSendData
1244 RTC_GUARDED_BY(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -08001245 sigslot::signal2<const cricket::ReceiveDataParams&,
1246 const rtc::CopyOnWriteBuffer&>
Karl Wiberg7a651c6e2019-04-02 13:00:46 +02001247 SignalSctpDataReceived RTC_GUARDED_BY(signaling_thread());
1248 sigslot::signal1<int> SignalSctpClosingProcedureStartedRemotely
1249 RTC_GUARDED_BY(signaling_thread());
1250 sigslot::signal1<int> SignalSctpClosingProcedureComplete
1251 RTC_GUARDED_BY(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -08001252
Bjorn Mellem175aa2e2018-11-08 11:23:22 -08001253 // Whether this peer is the caller. Set when the local description is applied.
1254 absl::optional<bool> is_caller_ RTC_GUARDED_BY(signaling_thread());
1255
1256 // Content name (MID) for media transport data channels in SDP.
Karl Wibergd9bf7202019-04-02 19:36:24 +02001257 absl::optional<std::string>
1258 media_transport_data_mid_; // TODO(bugs.webrtc.org/9987): Accessed on
1259 // both signaling and network thread.
Bjorn Mellem175aa2e2018-11-08 11:23:22 -08001260
1261 // Media transport used for data channels. Thread-safe.
Karl Wibergd9bf7202019-04-02 19:36:24 +02001262 MediaTransportInterface* media_transport_ =
1263 nullptr; // TODO(bugs.webrtc.org/9987): Object is thread safe, but
1264 // pointer accessed on both signaling and network thread.
Bjorn Mellem175aa2e2018-11-08 11:23:22 -08001265
1266 // Cached value of whether the media transport is ready to send.
1267 bool media_transport_ready_to_send_data_ RTC_GUARDED_BY(signaling_thread()) =
1268 false;
1269
1270 // Used to invoke media transport signals on the signaling thread.
Karl Wiberg739506e2019-04-03 11:37:28 +02001271 std::unique_ptr<rtc::AsyncInvoker> media_transport_invoker_
1272 RTC_GUARDED_BY(network_thread());
Bjorn Mellem175aa2e2018-11-08 11:23:22 -08001273
1274 // Identical to the signals for SCTP, but from media transport:
1275 sigslot::signal1<bool> SignalMediaTransportWritable_s
1276 RTC_GUARDED_BY(signaling_thread());
1277 sigslot::signal2<const cricket::ReceiveDataParams&,
1278 const rtc::CopyOnWriteBuffer&>
1279 SignalMediaTransportReceivedData_s RTC_GUARDED_BY(signaling_thread());
1280 sigslot::signal1<int> SignalMediaTransportChannelClosing_s
1281 RTC_GUARDED_BY(signaling_thread());
1282 sigslot::signal1<int> SignalMediaTransportChannelClosed_s
1283 RTC_GUARDED_BY(signaling_thread());
1284
Karl Wiberg739506e2019-04-03 11:37:28 +02001285 std::unique_ptr<SessionDescriptionInterface> current_local_description_
1286 RTC_GUARDED_BY(signaling_thread());
1287 std::unique_ptr<SessionDescriptionInterface> pending_local_description_
1288 RTC_GUARDED_BY(signaling_thread());
1289 std::unique_ptr<SessionDescriptionInterface> current_remote_description_
1290 RTC_GUARDED_BY(signaling_thread());
1291 std::unique_ptr<SessionDescriptionInterface> pending_remote_description_
1292 RTC_GUARDED_BY(signaling_thread());
1293 bool dtls_enabled_ RTC_GUARDED_BY(signaling_thread()) = false;
Steve Anton75737c02017-11-06 10:37:17 -08001294 // Specifies which kind of data channel is allowed. This is controlled
1295 // by the chrome command-line flag and constraints:
1296 // 1. If chrome command-line switch 'enable-sctp-data-channels' is enabled,
1297 // constraint kEnableDtlsSrtp is true, and constaint kEnableRtpDataChannels is
1298 // not set or false, SCTP is allowed (DCT_SCTP);
1299 // 2. If constraint kEnableRtpDataChannels is true, RTP is allowed (DCT_RTP);
1300 // 3. If both 1&2 are false, data channel is not allowed (DCT_NONE).
Karl Wibergf73f7d62019-04-08 15:36:53 +02001301 cricket::DataChannelType data_channel_type_ =
1302 cricket::DCT_NONE; // TODO(bugs.webrtc.org/9987): Accessed on both
1303 // signaling and network thread.
Steve Anton75737c02017-11-06 10:37:17 -08001304
Karl Wibergf73f7d62019-04-08 15:36:53 +02001305 // List of content names for which the remote side triggered an ICE restart.
1306 std::set<std::string> pending_ice_restarts_
1307 RTC_GUARDED_BY(signaling_thread());
1308
1309 std::unique_ptr<WebRtcSessionDescriptionFactory> webrtc_session_desc_factory_
1310 RTC_GUARDED_BY(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -08001311
1312 // Member variables for caching global options.
Karl Wibergf73f7d62019-04-08 15:36:53 +02001313 cricket::AudioOptions audio_options_ RTC_GUARDED_BY(signaling_thread());
1314 cricket::VideoOptions video_options_ RTC_GUARDED_BY(signaling_thread());
Harald Alvestrand8ebba742018-05-31 14:00:34 +02001315
Karl Wibergf73f7d62019-04-08 15:36:53 +02001316 int usage_event_accumulator_ RTC_GUARDED_BY(signaling_thread()) = 0;
1317 bool return_histogram_very_quickly_ RTC_GUARDED_BY(signaling_thread()) =
1318 false;
Amit Hilbuchbcd39d42019-01-25 17:13:56 -08001319
1320 // This object should be used to generate any SSRC that is not explicitly
1321 // specified by the user (or by the remote party).
1322 // The generator is not used directly, instead it is passed on to the
1323 // channel manager and the session description factory.
Karl Wibergf73f7d62019-04-08 15:36:53 +02001324 rtc::UniqueRandomIdGenerator ssrc_generator_
1325 RTC_GUARDED_BY(signaling_thread());
Jonas Orelanda3aa9bd2019-04-17 07:38:40 +02001326
1327 // A video bitrate allocator factory.
1328 // This can injected using the PeerConnectionDependencies,
1329 // or else the CreateBuiltinVideoBitrateAllocatorFactory() will be called.
1330 // Note that one can still choose to override this in a MediaEngine
1331 // if one wants too.
1332 std::unique_ptr<webrtc::VideoBitrateAllocatorFactory>
1333 video_bitrate_allocator_factory_;
1334
Guido Urdaneta70c2db12019-04-16 12:24:14 +02001335 bool is_negotiation_needed_ RTC_GUARDED_BY(signaling_thread()) = false;
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001336};
1337
1338} // namespace webrtc
1339
Steve Anton10542f22019-01-11 09:11:00 -08001340#endif // PC_PEER_CONNECTION_H_