blob: 917ad62d63f1fc54b690e96bed25e70b2b2b00b6 [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
Bjorn A Mellem5985a042019-06-28 14:19:38 -0700312 // Field-trial based configuration for datagram transport.
313 struct DatagramTransportConfig {
314 explicit DatagramTransportConfig(const std::string& field_trial)
315 : enabled("enabled", true), default_value("default_value", false) {
316 ParseFieldTrial({&enabled, &default_value}, field_trial);
317 }
318
319 // Whether datagram transport support is enabled at all. Defaults to true,
320 // allowing datagram transport to be used if (a) the application provides a
321 // factory for it and (b) the configuration specifies its use. This flag
322 // provides a kill-switch to force-disable datagram transport across all
323 // applications, without code changes.
324 FieldTrialFlag enabled;
325
326 // Whether the datagram transport is enabled or disabled by default.
327 // Defaults to false, meaning that applications must configure use of
328 // datagram transport through RTCConfiguration. If set to true,
329 // applications will use the datagram transport by default (but may still
330 // explicitly configure themselves not to use it through RTCConfiguration).
331 FieldTrialFlag default_value;
332 };
333
Steve Antonad182762018-09-05 20:22:40 +0000334 // Implements MessageHandler.
335 void OnMessage(rtc::Message* msg) override;
336
Steve Antonafb0bb72018-02-20 11:35:37 -0800337 // Plan B helpers for getting the voice/video media channels for the single
338 // audio/video transceiver, if it exists.
Karl Wiberg5966c502019-02-21 23:55:09 +0100339 cricket::VoiceMediaChannel* voice_media_channel() const
340 RTC_RUN_ON(signaling_thread());
341 cricket::VideoMediaChannel* video_media_channel() const
342 RTC_RUN_ON(signaling_thread());
Steve Anton60776752018-01-10 11:51:34 -0800343
Steve Anton4171afb2017-11-20 10:20:22 -0800344 std::vector<rtc::scoped_refptr<RtpSenderProxyWithInternal<RtpSenderInternal>>>
Karl Wiberga58e1692019-03-26 13:33:43 +0100345 GetSendersInternal() const RTC_RUN_ON(signaling_thread());
Steve Anton4171afb2017-11-20 10:20:22 -0800346 std::vector<
347 rtc::scoped_refptr<RtpReceiverProxyWithInternal<RtpReceiverInternal>>>
Karl Wiberga58e1692019-03-26 13:33:43 +0100348 GetReceiversInternal() const RTC_RUN_ON(signaling_thread());
Steve Anton4171afb2017-11-20 10:20:22 -0800349
350 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
Karl Wiberg5966c502019-02-21 23:55:09 +0100351 GetAudioTransceiver() const RTC_RUN_ON(signaling_thread());
Steve Anton4171afb2017-11-20 10:20:22 -0800352 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
Karl Wiberg5966c502019-02-21 23:55:09 +0100353 GetVideoTransceiver() const RTC_RUN_ON(signaling_thread());
Steve Anton4171afb2017-11-20 10:20:22 -0800354
Steve Antonafb0bb72018-02-20 11:35:37 -0800355 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
Karl Wiberga58e1692019-03-26 13:33:43 +0100356 GetFirstAudioTransceiver() const RTC_RUN_ON(signaling_thread());
Steve Antonafb0bb72018-02-20 11:35:37 -0800357
deadbeefab9b2d12015-10-14 11:33:11 -0700358 void CreateAudioReceiver(MediaStreamInterface* stream,
Karl Wiberg744310f2019-02-14 10:18:56 +0100359 const RtpSenderInfo& remote_sender_info)
360 RTC_RUN_ON(signaling_thread());
perkjf0dcfe22016-03-10 18:32:00 +0100361
deadbeefab9b2d12015-10-14 11:33:11 -0700362 void CreateVideoReceiver(MediaStreamInterface* stream,
Karl Wiberg744310f2019-02-14 10:18:56 +0100363 const RtpSenderInfo& remote_sender_info)
364 RTC_RUN_ON(signaling_thread());
Henrik Boström933d8b02017-10-10 10:05:16 -0700365 rtc::scoped_refptr<RtpReceiverInterface> RemoveAndStopReceiver(
Karl Wiberg5966c502019-02-21 23:55:09 +0100366 const RtpSenderInfo& remote_sender_info) RTC_RUN_ON(signaling_thread());
korniltsev.anatolyec390b52017-07-24 17:00:25 -0700367
368 // May be called either by AddStream/RemoveStream, or when a track is
369 // added/removed from a stream previously added via AddStream.
Karl Wiberg5966c502019-02-21 23:55:09 +0100370 void AddAudioTrack(AudioTrackInterface* track, MediaStreamInterface* stream)
371 RTC_RUN_ON(signaling_thread());
korniltsev.anatolyec390b52017-07-24 17:00:25 -0700372 void RemoveAudioTrack(AudioTrackInterface* track,
Karl Wiberg5966c502019-02-21 23:55:09 +0100373 MediaStreamInterface* stream)
374 RTC_RUN_ON(signaling_thread());
375 void AddVideoTrack(VideoTrackInterface* track, MediaStreamInterface* stream)
376 RTC_RUN_ON(signaling_thread());
korniltsev.anatolyec390b52017-07-24 17:00:25 -0700377 void RemoveVideoTrack(VideoTrackInterface* track,
Karl Wiberg5966c502019-02-21 23:55:09 +0100378 MediaStreamInterface* stream)
379 RTC_RUN_ON(signaling_thread());
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000380
Steve Antonf9381f02017-12-14 10:23:57 -0800381 // AddTrack implementation when Unified Plan is specified.
382 RTCErrorOr<rtc::scoped_refptr<RtpSenderInterface>> AddTrackUnifiedPlan(
383 rtc::scoped_refptr<MediaStreamTrackInterface> track,
Karl Wiberga58e1692019-03-26 13:33:43 +0100384 const std::vector<std::string>& stream_ids)
385 RTC_RUN_ON(signaling_thread());
Steve Antonf9381f02017-12-14 10:23:57 -0800386 // AddTrack implementation when Plan B is specified.
387 RTCErrorOr<rtc::scoped_refptr<RtpSenderInterface>> AddTrackPlanB(
388 rtc::scoped_refptr<MediaStreamTrackInterface> track,
Karl Wiberg5966c502019-02-21 23:55:09 +0100389 const std::vector<std::string>& stream_ids)
390 RTC_RUN_ON(signaling_thread());
Steve Antonf9381f02017-12-14 10:23:57 -0800391
392 // Returns the first RtpTransceiver suitable for a newly added track, if such
393 // transceiver is available.
394 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
395 FindFirstTransceiverForAddedTrack(
Karl Wiberga58e1692019-03-26 13:33:43 +0100396 rtc::scoped_refptr<MediaStreamTrackInterface> track)
397 RTC_RUN_ON(signaling_thread());
Steve Antonf9381f02017-12-14 10:23:57 -0800398
Steve Antonf9381f02017-12-14 10:23:57 -0800399 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
Karl Wiberga58e1692019-03-26 13:33:43 +0100400 FindTransceiverBySender(rtc::scoped_refptr<RtpSenderInterface> sender)
401 RTC_RUN_ON(signaling_thread());
Steve Antonf9381f02017-12-14 10:23:57 -0800402
Steve Anton22da89f2018-01-25 13:58:07 -0800403 // Internal implementation for AddTransceiver family of methods. If
404 // |fire_callback| is set, fires OnRenegotiationNeeded callback if successful.
Steve Anton9158ef62017-11-27 13:01:52 -0800405 RTCErrorOr<rtc::scoped_refptr<RtpTransceiverInterface>> AddTransceiver(
406 cricket::MediaType media_type,
407 rtc::scoped_refptr<MediaStreamTrackInterface> track,
Steve Anton22da89f2018-01-25 13:58:07 -0800408 const RtpTransceiverInit& init,
Karl Wiberg744310f2019-02-14 10:18:56 +0100409 bool fire_callback = true) RTC_RUN_ON(signaling_thread());
Steve Anton9158ef62017-11-27 13:01:52 -0800410
Steve Anton02ee47c2018-01-10 16:26:06 -0800411 rtc::scoped_refptr<RtpSenderProxyWithInternal<RtpSenderInternal>>
412 CreateSender(cricket::MediaType media_type,
Steve Anton111fdfd2018-06-25 13:03:36 -0700413 const std::string& id,
Steve Anton02ee47c2018-01-10 16:26:06 -0800414 rtc::scoped_refptr<MediaStreamTrackInterface> track,
Florent Castelli892acf02018-10-01 22:47:20 +0200415 const std::vector<std::string>& stream_ids,
416 const std::vector<RtpEncodingParameters>& send_encodings);
Steve Anton02ee47c2018-01-10 16:26:06 -0800417
418 rtc::scoped_refptr<RtpReceiverProxyWithInternal<RtpReceiverInternal>>
419 CreateReceiver(cricket::MediaType media_type, const std::string& receiver_id);
420
Steve Antonf9381f02017-12-14 10:23:57 -0800421 // Create a new RtpTransceiver of the given type and add it to the list of
422 // transceivers.
423 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
Steve Anton02ee47c2018-01-10 16:26:06 -0800424 CreateAndAddTransceiver(
425 rtc::scoped_refptr<RtpSenderProxyWithInternal<RtpSenderInternal>> sender,
426 rtc::scoped_refptr<RtpReceiverProxyWithInternal<RtpReceiverInternal>>
Karl Wiberga58e1692019-03-26 13:33:43 +0100427 receiver) RTC_RUN_ON(signaling_thread());
Steve Antonf9381f02017-12-14 10:23:57 -0800428
Karl Wiberg744310f2019-02-14 10:18:56 +0100429 void SetIceConnectionState(IceConnectionState new_state)
430 RTC_RUN_ON(signaling_thread());
Jonas Olsson635474e2018-10-18 15:58:17 +0200431 void SetStandardizedIceConnectionState(
Karl Wiberg744310f2019-02-14 10:18:56 +0100432 PeerConnectionInterface::IceConnectionState new_state)
433 RTC_RUN_ON(signaling_thread());
Jonas Olsson635474e2018-10-18 15:58:17 +0200434 void SetConnectionState(
Karl Wiberg744310f2019-02-14 10:18:56 +0100435 PeerConnectionInterface::PeerConnectionState new_state)
436 RTC_RUN_ON(signaling_thread());
Jonas Olsson635474e2018-10-18 15:58:17 +0200437
Eldar Relloda13ea22019-06-01 12:23:43 +0300438 // Called any time the IceGatheringState changes.
Karl Wiberg744310f2019-02-14 10:18:56 +0100439 void OnIceGatheringChange(IceGatheringState new_state)
440 RTC_RUN_ON(signaling_thread());
Steve Antonba818672017-11-06 10:21:57 -0800441 // New ICE candidate has been gathered.
Karl Wiberg744310f2019-02-14 10:18:56 +0100442 void OnIceCandidate(std::unique_ptr<IceCandidateInterface> candidate)
443 RTC_RUN_ON(signaling_thread());
Eldar Relloda13ea22019-06-01 12:23:43 +0300444 // Gathering of an ICE candidate failed.
445 void OnIceCandidateError(const std::string& host_candidate,
446 const std::string& url,
447 int error_code,
448 const std::string& error_text)
449 RTC_RUN_ON(signaling_thread());
Steve Antonba818672017-11-06 10:21:57 -0800450 // Some local ICE candidates have been removed.
Karl Wiberg744310f2019-02-14 10:18:56 +0100451 void OnIceCandidatesRemoved(const std::vector<cricket::Candidate>& candidates)
452 RTC_RUN_ON(signaling_thread());
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000453
Steve Antonba818672017-11-06 10:21:57 -0800454 // Update the state, signaling if necessary.
Karl Wiberg744310f2019-02-14 10:18:56 +0100455 void ChangeSignalingState(SignalingState signaling_state)
456 RTC_RUN_ON(signaling_thread());
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000457
deadbeefeb459812015-12-15 19:24:43 -0800458 // Signals from MediaStreamObserver.
459 void OnAudioTrackAdded(AudioTrackInterface* track,
Karl Wiberg744310f2019-02-14 10:18:56 +0100460 MediaStreamInterface* stream)
461 RTC_RUN_ON(signaling_thread());
deadbeefeb459812015-12-15 19:24:43 -0800462 void OnAudioTrackRemoved(AudioTrackInterface* track,
Karl Wiberg744310f2019-02-14 10:18:56 +0100463 MediaStreamInterface* stream)
464 RTC_RUN_ON(signaling_thread());
deadbeefeb459812015-12-15 19:24:43 -0800465 void OnVideoTrackAdded(VideoTrackInterface* track,
Karl Wiberg744310f2019-02-14 10:18:56 +0100466 MediaStreamInterface* stream)
467 RTC_RUN_ON(signaling_thread());
deadbeefeb459812015-12-15 19:24:43 -0800468 void OnVideoTrackRemoved(VideoTrackInterface* track,
Karl Wiberg744310f2019-02-14 10:18:56 +0100469 MediaStreamInterface* stream)
470 RTC_RUN_ON(signaling_thread());
deadbeefeb459812015-12-15 19:24:43 -0800471
Henrik Boström31638672017-11-23 17:48:32 +0100472 void PostSetSessionDescriptionSuccess(
473 SetSessionDescriptionObserver* observer);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000474 void PostSetSessionDescriptionFailure(SetSessionDescriptionObserver* observer,
Steve Antonad182762018-09-05 20:22:40 +0000475 RTCError&& error);
deadbeefab9b2d12015-10-14 11:33:11 -0700476 void PostCreateSessionDescriptionFailure(
477 CreateSessionDescriptionObserver* observer,
Harald Alvestrand5081c0c2018-03-09 15:18:03 +0100478 RTCError error);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000479
Steve Anton8a006912017-12-04 15:25:56 -0800480 // Synchronous implementations of SetLocalDescription/SetRemoteDescription
481 // that return an RTCError instead of invoking a callback.
482 RTCError ApplyLocalDescription(
483 std::unique_ptr<SessionDescriptionInterface> desc);
484 RTCError ApplyRemoteDescription(
485 std::unique_ptr<SessionDescriptionInterface> desc);
486
Steve Antondcc3c022017-12-22 16:02:54 -0800487 // Updates the local RtpTransceivers according to the JSEP rules. Called as
488 // part of setting the local/remote description.
489 RTCError UpdateTransceiversAndDataChannels(
490 cricket::ContentSource source,
Seth Hampsonae8a90a2018-02-13 15:33:48 -0800491 const SessionDescriptionInterface& new_session,
492 const SessionDescriptionInterface* old_local_description,
Karl Wiberg106d92d2019-02-14 10:17:47 +0100493 const SessionDescriptionInterface* old_remote_description)
494 RTC_RUN_ON(signaling_thread());
Steve Antondcc3c022017-12-22 16:02:54 -0800495
496 // Either creates or destroys the transceiver's BaseChannel according to the
497 // given media section.
498 RTCError UpdateTransceiverChannel(
499 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
500 transceiver,
501 const cricket::ContentInfo& content,
Karl Wiberg5966c502019-02-21 23:55:09 +0100502 const cricket::ContentGroup* bundle_group) RTC_RUN_ON(signaling_thread());
Steve Antondcc3c022017-12-22 16:02:54 -0800503
Steve Antonfa2260d2017-12-28 16:38:23 -0800504 // Either creates or destroys the local data channel according to the given
505 // media section.
506 RTCError UpdateDataChannel(cricket::ContentSource source,
507 const cricket::ContentInfo& content,
Karl Wiberg106d92d2019-02-14 10:17:47 +0100508 const cricket::ContentGroup* bundle_group)
509 RTC_RUN_ON(signaling_thread());
Steve Antonfa2260d2017-12-28 16:38:23 -0800510
Steve Antondcc3c022017-12-22 16:02:54 -0800511 // Associate the given transceiver according to the JSEP rules.
512 RTCErrorOr<
513 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>>
514 AssociateTransceiver(cricket::ContentSource source,
Seth Hampsonae8a90a2018-02-13 15:33:48 -0800515 SdpType type,
Steve Antondcc3c022017-12-22 16:02:54 -0800516 size_t mline_index,
517 const cricket::ContentInfo& content,
Seth Hampsonae8a90a2018-02-13 15:33:48 -0800518 const cricket::ContentInfo* old_local_content,
Karl Wiberg5966c502019-02-21 23:55:09 +0100519 const cricket::ContentInfo* old_remote_content)
520 RTC_RUN_ON(signaling_thread());
Steve Antondcc3c022017-12-22 16:02:54 -0800521
522 // Returns the RtpTransceiver, if found, that is associated to the given MID.
523 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
Karl Wiberg5966c502019-02-21 23:55:09 +0100524 GetAssociatedTransceiver(const std::string& mid) const
525 RTC_RUN_ON(signaling_thread());
Steve Antondcc3c022017-12-22 16:02:54 -0800526
527 // Returns the RtpTransceiver, if found, that was assigned to the given mline
528 // index in CreateOffer.
529 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
Karl Wiberg5966c502019-02-21 23:55:09 +0100530 GetTransceiverByMLineIndex(size_t mline_index) const
531 RTC_RUN_ON(signaling_thread());
Steve Antondcc3c022017-12-22 16:02:54 -0800532
533 // Returns an RtpTransciever, if available, that can be used to receive the
534 // given media type according to JSEP rules.
535 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
Karl Wiberg5966c502019-02-21 23:55:09 +0100536 FindAvailableTransceiverToReceive(cricket::MediaType media_type) const
537 RTC_RUN_ON(signaling_thread());
Steve Antondcc3c022017-12-22 16:02:54 -0800538
Steve Antoned10bd92017-12-05 10:52:59 -0800539 // Returns the media section in the given session description that is
540 // associated with the RtpTransceiver. Returns null if none found or this
541 // RtpTransceiver is not associated. Logic varies depending on the
542 // SdpSemantics specified in the configuration.
543 const cricket::ContentInfo* FindMediaSectionForTransceiver(
544 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
545 transceiver,
Karl Wiberg5966c502019-02-21 23:55:09 +0100546 const SessionDescriptionInterface* sdesc) const
547 RTC_RUN_ON(signaling_thread());
Steve Antoned10bd92017-12-05 10:52:59 -0800548
Henrik Boströmafa07dd2018-12-20 11:06:02 +0100549 // Runs the algorithm **set the associated remote streams** specified in
550 // https://w3c.github.io/webrtc-pc/#set-associated-remote-streams.
551 void SetAssociatedRemoteStreams(
552 rtc::scoped_refptr<RtpReceiverInternal> receiver,
553 const std::vector<std::string>& stream_ids,
554 std::vector<rtc::scoped_refptr<MediaStreamInterface>>* added_streams,
Karl Wiberg1e1e1022019-03-22 14:27:22 +0100555 std::vector<rtc::scoped_refptr<MediaStreamInterface>>* removed_streams)
556 RTC_RUN_ON(signaling_thread());
Henrik Boströmafa07dd2018-12-20 11:06:02 +0100557
Steve Anton0f5400a2018-07-17 14:25:36 -0700558 // Runs the algorithm **process the removal of a remote track** specified in
559 // the WebRTC specification.
560 // This method will update the following lists:
561 // |remove_list| is the list of transceivers for which the receiving track is
562 // being removed.
563 // |removed_streams| is the list of streams which no longer have a receiving
564 // track so should be removed.
565 // https://w3c.github.io/webrtc-pc/#process-remote-track-removal
566 void ProcessRemovalOfRemoteTrack(
567 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
568 transceiver,
569 std::vector<rtc::scoped_refptr<RtpTransceiverInterface>>* remove_list,
Karl Wiberg1e1e1022019-03-22 14:27:22 +0100570 std::vector<rtc::scoped_refptr<MediaStreamInterface>>* removed_streams)
571 RTC_RUN_ON(signaling_thread());
Steve Anton0f5400a2018-07-17 14:25:36 -0700572
Henrik Boströmafa07dd2018-12-20 11:06:02 +0100573 void RemoveRemoteStreamsIfEmpty(
574 const std::vector<rtc::scoped_refptr<MediaStreamInterface>>&
575 remote_streams,
Karl Wiberg1e1e1022019-03-22 14:27:22 +0100576 std::vector<rtc::scoped_refptr<MediaStreamInterface>>* removed_streams)
577 RTC_RUN_ON(signaling_thread());
Henrik Boströmafa07dd2018-12-20 11:06:02 +0100578
Steve Anton52d86772018-02-20 15:48:12 -0800579 void OnNegotiationNeeded();
580
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000581 bool IsClosed() const {
Karl Wiberg8d2e2282019-02-17 13:00:07 +0100582 RTC_DCHECK_RUN_ON(signaling_thread());
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000583 return signaling_state_ == PeerConnectionInterface::kClosed;
584 }
585
deadbeefab9b2d12015-10-14 11:33:11 -0700586 // Returns a MediaSessionOptions struct with options decided by |options|,
587 // the local MediaStreams and DataChannels.
Steve Antondcc3c022017-12-22 16:02:54 -0800588 void GetOptionsForOffer(const PeerConnectionInterface::RTCOfferAnswerOptions&
589 offer_answer_options,
Karl Wiberg5966c502019-02-21 23:55:09 +0100590 cricket::MediaSessionOptions* session_options)
591 RTC_RUN_ON(signaling_thread());
Steve Antondcc3c022017-12-22 16:02:54 -0800592 void GetOptionsForPlanBOffer(
593 const PeerConnectionInterface::RTCOfferAnswerOptions&
594 offer_answer_options,
Karl Wiberg5966c502019-02-21 23:55:09 +0100595 cricket::MediaSessionOptions* session_options)
596 RTC_RUN_ON(signaling_thread());
Steve Antondcc3c022017-12-22 16:02:54 -0800597 void GetOptionsForUnifiedPlanOffer(
598 const PeerConnectionInterface::RTCOfferAnswerOptions&
599 offer_answer_options,
Karl Wiberg5966c502019-02-21 23:55:09 +0100600 cricket::MediaSessionOptions* session_options)
601 RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700602
Karl Wiberg5966c502019-02-21 23:55:09 +0100603 RTCError HandleLegacyOfferOptions(const RTCOfferAnswerOptions& options)
604 RTC_RUN_ON(signaling_thread());
Steve Anton22da89f2018-01-25 13:58:07 -0800605 void RemoveRecvDirectionFromReceivingTransceiversOfType(
Karl Wiberga58e1692019-03-26 13:33:43 +0100606 cricket::MediaType media_type) RTC_RUN_ON(signaling_thread());
Steve Anton22da89f2018-01-25 13:58:07 -0800607 void AddUpToOneReceivingTransceiverOfType(cricket::MediaType media_type);
608 std::vector<
609 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>>
Karl Wiberga58e1692019-03-26 13:33:43 +0100610 GetReceivingTransceiversOfType(cricket::MediaType media_type)
611 RTC_RUN_ON(signaling_thread());
Steve Anton22da89f2018-01-25 13:58:07 -0800612
deadbeefab9b2d12015-10-14 11:33:11 -0700613 // Returns a MediaSessionOptions struct with options decided by
614 // |constraints|, the local MediaStreams and DataChannels.
Steve Antondcc3c022017-12-22 16:02:54 -0800615 void GetOptionsForAnswer(const RTCOfferAnswerOptions& offer_answer_options,
Karl Wiberg5966c502019-02-21 23:55:09 +0100616 cricket::MediaSessionOptions* session_options)
617 RTC_RUN_ON(signaling_thread());
Steve Antondcc3c022017-12-22 16:02:54 -0800618 void GetOptionsForPlanBAnswer(
619 const PeerConnectionInterface::RTCOfferAnswerOptions&
620 offer_answer_options,
Karl Wiberg5966c502019-02-21 23:55:09 +0100621 cricket::MediaSessionOptions* session_options)
622 RTC_RUN_ON(signaling_thread());
Steve Antondcc3c022017-12-22 16:02:54 -0800623 void GetOptionsForUnifiedPlanAnswer(
624 const PeerConnectionInterface::RTCOfferAnswerOptions&
625 offer_answer_options,
Karl Wiberg5966c502019-02-21 23:55:09 +0100626 cricket::MediaSessionOptions* session_options)
627 RTC_RUN_ON(signaling_thread());
htaa2a49d92016-03-04 02:51:39 -0800628
zhihuang1c378ed2017-08-17 14:10:50 -0700629 // Generates MediaDescriptionOptions for the |session_opts| based on existing
630 // local description or remote description.
631 void GenerateMediaDescriptionOptions(
632 const SessionDescriptionInterface* session_desc,
Steve Anton1d03a752017-11-27 14:30:09 -0800633 RtpTransceiverDirection audio_direction,
634 RtpTransceiverDirection video_direction,
Danil Chapovalov66cadcc2018-06-19 16:47:43 +0200635 absl::optional<size_t>* audio_index,
636 absl::optional<size_t>* video_index,
637 absl::optional<size_t>* data_index,
Karl Wiberg85a4a932019-03-22 15:29:58 +0100638 cricket::MediaSessionOptions* session_options)
639 RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700640
Steve Antonfa2260d2017-12-28 16:38:23 -0800641 // Generates the active MediaDescriptionOptions for the local data channel
642 // given the specified MID.
643 cricket::MediaDescriptionOptions GetMediaDescriptionOptionsForActiveData(
Karl Wiberg85a4a932019-03-22 15:29:58 +0100644 const std::string& mid) const RTC_RUN_ON(signaling_thread());
Steve Antonfa2260d2017-12-28 16:38:23 -0800645
646 // Generates the rejected MediaDescriptionOptions for the local data channel
647 // given the specified MID.
648 cricket::MediaDescriptionOptions GetMediaDescriptionOptionsForRejectedData(
Karl Wiberg85a4a932019-03-22 15:29:58 +0100649 const std::string& mid) const RTC_RUN_ON(signaling_thread());
Steve Antonfa2260d2017-12-28 16:38:23 -0800650
651 // Returns the MID for the data section associated with either the
652 // RtpDataChannel or SCTP data channel, if it has been set. If no data
653 // channels are configured this will return nullopt.
Karl Wiberg2cc368f2019-04-02 11:31:56 +0200654 absl::optional<std::string> GetDataMid() const RTC_RUN_ON(signaling_thread());
Steve Antonfa2260d2017-12-28 16:38:23 -0800655
Steve Anton4171afb2017-11-20 10:20:22 -0800656 // Remove all local and remote senders of type |media_type|.
deadbeeffaac4972015-11-12 15:33:07 -0800657 // Called when a media type is rejected (m-line set to port 0).
Karl Wiberg744310f2019-02-14 10:18:56 +0100658 void RemoveSenders(cricket::MediaType media_type)
659 RTC_RUN_ON(signaling_thread());
deadbeeffaac4972015-11-12 15:33:07 -0800660
deadbeefbda7e0b2015-12-08 17:13:40 -0800661 // Makes sure a MediaStreamTrack is created for each StreamParam in |streams|,
662 // and existing MediaStreamTracks are removed if there is no corresponding
663 // StreamParam. If |default_track_needed| is true, a default MediaStreamTrack
664 // is created if it doesn't exist; if false, it's removed if it exists.
665 // |media_type| is the type of the |streams| and can be either audio or video.
deadbeefab9b2d12015-10-14 11:33:11 -0700666 // If a new MediaStream is created it is added to |new_streams|.
Steve Anton4171afb2017-11-20 10:20:22 -0800667 void UpdateRemoteSendersList(
deadbeefab9b2d12015-10-14 11:33:11 -0700668 const std::vector<cricket::StreamParams>& streams,
deadbeefbda7e0b2015-12-08 17:13:40 -0800669 bool default_track_needed,
deadbeefab9b2d12015-10-14 11:33:11 -0700670 cricket::MediaType media_type,
Karl Wiberg744310f2019-02-14 10:18:56 +0100671 StreamCollection* new_streams) RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700672
Steve Anton4171afb2017-11-20 10:20:22 -0800673 // Triggered when a remote sender has been seen for the first time in a remote
deadbeefab9b2d12015-10-14 11:33:11 -0700674 // session description. It creates a remote MediaStreamTrackInterface
675 // implementation and triggers CreateAudioReceiver or CreateVideoReceiver.
Steve Anton4171afb2017-11-20 10:20:22 -0800676 void OnRemoteSenderAdded(const RtpSenderInfo& sender_info,
Karl Wiberg744310f2019-02-14 10:18:56 +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 remote sender has been removed from a remote session
681 // description. It removes the remote sender with id |sender_id| from a remote
deadbeefab9b2d12015-10-14 11:33:11 -0700682 // MediaStream and triggers DestroyAudioReceiver or DestroyVideoReceiver.
Steve Anton4171afb2017-11-20 10:20:22 -0800683 void OnRemoteSenderRemoved(const RtpSenderInfo& sender_info,
Karl Wiberg744310f2019-02-14 10:18:56 +0100684 cricket::MediaType media_type)
685 RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700686
687 // Finds remote MediaStreams without any tracks and removes them from
688 // |remote_streams_| and notifies the observer that the MediaStreams no longer
689 // exist.
Karl Wiberg744310f2019-02-14 10:18:56 +0100690 void UpdateEndedRemoteMediaStreams() RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700691
deadbeefab9b2d12015-10-14 11:33:11 -0700692 // Loops through the vector of |streams| and finds added and removed
693 // StreamParams since last time this method was called.
Steve Anton4171afb2017-11-20 10:20:22 -0800694 // For each new or removed StreamParam, OnLocalSenderSeen or
695 // OnLocalSenderRemoved is invoked.
696 void UpdateLocalSenders(const std::vector<cricket::StreamParams>& streams,
Karl Wiberg5966c502019-02-21 23:55:09 +0100697 cricket::MediaType media_type)
698 RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700699
Steve Anton4171afb2017-11-20 10:20:22 -0800700 // Triggered when a local sender has been seen for the first time in a local
deadbeefab9b2d12015-10-14 11:33:11 -0700701 // session description.
702 // This method triggers CreateAudioSender or CreateVideoSender if the rtp
703 // streams in the local SessionDescription can be mapped to a MediaStreamTrack
704 // in a MediaStream in |local_streams_|
Steve Anton4171afb2017-11-20 10:20:22 -0800705 void OnLocalSenderAdded(const RtpSenderInfo& sender_info,
Karl Wiberg5966c502019-02-21 23:55:09 +0100706 cricket::MediaType media_type)
707 RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700708
Steve Anton4171afb2017-11-20 10:20:22 -0800709 // Triggered when a local sender has been removed from a local session
deadbeefab9b2d12015-10-14 11:33:11 -0700710 // description.
711 // This method triggers DestroyAudioSender or DestroyVideoSender if a stream
712 // has been removed from the local SessionDescription and the stream can be
713 // mapped to a MediaStreamTrack in a MediaStream in |local_streams_|.
Steve Anton4171afb2017-11-20 10:20:22 -0800714 void OnLocalSenderRemoved(const RtpSenderInfo& sender_info,
Karl Wiberga58e1692019-03-26 13:33:43 +0100715 cricket::MediaType media_type)
716 RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700717
Karl Wiberg85a4a932019-03-22 15:29:58 +0100718 void UpdateLocalRtpDataChannels(const cricket::StreamParamsVec& streams)
719 RTC_RUN_ON(signaling_thread());
Karl Wiberg106d92d2019-02-14 10:17:47 +0100720 void UpdateRemoteRtpDataChannels(const cricket::StreamParamsVec& streams)
721 RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700722 void UpdateClosingRtpDataChannels(
723 const std::vector<std::string>& active_channels,
Karl Wiberg85a4a932019-03-22 15:29:58 +0100724 bool is_local_update) RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700725 void CreateRemoteRtpDataChannel(const std::string& label,
Karl Wiberg106d92d2019-02-14 10:17:47 +0100726 uint32_t remote_ssrc)
727 RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700728
729 // Creates channel and adds it to the collection of DataChannels that will
730 // be offered in a SessionDescription.
731 rtc::scoped_refptr<DataChannel> InternalCreateDataChannel(
732 const std::string& label,
Karl Wiberg106d92d2019-02-14 10:17:47 +0100733 const InternalDataChannelInit* config) RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700734
735 // Checks if any data channel has been added.
Karl Wiberg85a4a932019-03-22 15:29:58 +0100736 bool HasDataChannels() const RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700737
Karl Wiberg85a4a932019-03-22 15:29:58 +0100738 void AllocateSctpSids(rtc::SSLRole role) RTC_RUN_ON(signaling_thread());
739 void OnSctpDataChannelClosed(DataChannel* channel)
740 RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700741
Karl Wiberg85a4a932019-03-22 15:29:58 +0100742 void OnDataChannelDestroyed() RTC_RUN_ON(signaling_thread());
Steve Antonba818672017-11-06 10:21:57 -0800743 // Called when a valid data channel OPEN message is received.
deadbeefab9b2d12015-10-14 11:33:11 -0700744 void OnDataChannelOpenMessage(const std::string& label,
Karl Wiberg106d92d2019-02-14 10:17:47 +0100745 const InternalDataChannelInit& config)
746 RTC_RUN_ON(signaling_thread());
747
Bjorn Mellem175aa2e2018-11-08 11:23:22 -0800748 // Parses and handles open messages. Returns true if the message is an open
749 // message, false otherwise.
750 bool HandleOpenMessage_s(const cricket::ReceiveDataParams& params,
751 const rtc::CopyOnWriteBuffer& buffer)
752 RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700753
Steve Anton4171afb2017-11-20 10:20:22 -0800754 // Returns true if the PeerConnection is configured to use Unified Plan
755 // semantics for creating offers/answers and setting local/remote
756 // descriptions. If this is true the RtpTransceiver API will also be available
757 // to the user. If this is false, Plan B semantics are assumed.
Steve Anton79e79602017-11-20 10:25:56 -0800758 // TODO(bugs.webrtc.org/8530): Flip the default to be Unified Plan once
759 // sufficient time has passed.
Karl Wiberg5966c502019-02-21 23:55:09 +0100760 bool IsUnifiedPlan() const RTC_RUN_ON(signaling_thread()) {
Steve Anton79e79602017-11-20 10:25:56 -0800761 return configuration_.sdp_semantics == SdpSemantics::kUnifiedPlan;
762 }
Steve Anton4171afb2017-11-20 10:20:22 -0800763
Steve Anton06817cd2018-12-18 15:55:30 -0800764 // The offer/answer machinery assumes the media section MID is present and
765 // unique. To support legacy end points that do not supply a=mid lines, this
766 // method will modify the session description to add MIDs generated according
767 // to the SDP semantics.
Karl Wiberg5966c502019-02-21 23:55:09 +0100768 void FillInMissingRemoteMids(cricket::SessionDescription* remote_description)
769 RTC_RUN_ON(signaling_thread());
Steve Anton06817cd2018-12-18 15:55:30 -0800770
Steve Anton4171afb2017-11-20 10:20:22 -0800771 // Is there an RtpSender of the given type?
Karl Wiberg5966c502019-02-21 23:55:09 +0100772 bool HasRtpSender(cricket::MediaType type) const
773 RTC_RUN_ON(signaling_thread());
deadbeeffac06552015-11-25 11:26:01 -0800774
Steve Anton4171afb2017-11-20 10:20:22 -0800775 // Return the RtpSender with the given track attached.
776 rtc::scoped_refptr<RtpSenderProxyWithInternal<RtpSenderInternal>>
Karl Wiberga58e1692019-03-26 13:33:43 +0100777 FindSenderForTrack(MediaStreamTrackInterface* track) const
778 RTC_RUN_ON(signaling_thread());
deadbeef70ab1a12015-09-28 16:53:55 -0700779
Steve Anton4171afb2017-11-20 10:20:22 -0800780 // Return the RtpSender with the given id, or null if none exists.
781 rtc::scoped_refptr<RtpSenderProxyWithInternal<RtpSenderInternal>>
Karl Wiberga58e1692019-03-26 13:33:43 +0100782 FindSenderById(const std::string& sender_id) const
783 RTC_RUN_ON(signaling_thread());
Steve Anton4171afb2017-11-20 10:20:22 -0800784
785 // Return the RtpReceiver with the given id, or null if none exists.
786 rtc::scoped_refptr<RtpReceiverProxyWithInternal<RtpReceiverInternal>>
Karl Wiberga58e1692019-03-26 13:33:43 +0100787 FindReceiverById(const std::string& receiver_id) const
788 RTC_RUN_ON(signaling_thread());
Steve Anton4171afb2017-11-20 10:20:22 -0800789
790 std::vector<RtpSenderInfo>* GetRemoteSenderInfos(
791 cricket::MediaType media_type);
792 std::vector<RtpSenderInfo>* GetLocalSenderInfos(
793 cricket::MediaType media_type);
794 const RtpSenderInfo* FindSenderInfo(const std::vector<RtpSenderInfo>& infos,
Emircan Uysalerbc609ea2018-03-27 21:57:18 +0000795 const std::string& stream_id,
Steve Anton4171afb2017-11-20 10:20:22 -0800796 const std::string sender_id) const;
deadbeefab9b2d12015-10-14 11:33:11 -0700797
798 // Returns the specified SCTP DataChannel in sctp_data_channels_,
799 // or nullptr if not found.
Karl Wiberg85a4a932019-03-22 15:29:58 +0100800 DataChannel* FindDataChannelBySid(int sid) const
801 RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700802
Taylor Brandstettera1c30352016-05-13 08:15:11 -0700803 // Called when first configuring the port allocator.
Karl Wibergfb3be392019-03-22 14:13:22 +0100804 struct InitializePortAllocatorResult {
805 bool enable_ipv6;
806 };
807 InitializePortAllocatorResult InitializePortAllocator_n(
Harald Alvestrandb2a74782018-06-28 13:54:07 +0200808 const cricket::ServerAddresses& stun_servers,
809 const std::vector<cricket::RelayServerConfig>& turn_servers,
810 const RTCConfiguration& configuration);
deadbeef293e9262017-01-11 12:28:30 -0800811 // Called when SetConfiguration is called to apply the supported subset
812 // of the configuration on the network thread.
813 bool ReconfigurePortAllocator_n(
814 const cricket::ServerAddresses& stun_servers,
815 const std::vector<cricket::RelayServerConfig>& turn_servers,
816 IceTransportsType type,
817 int candidate_pool_size,
Jonas Orelandbdcee282017-10-10 14:01:40 +0200818 bool prune_turn_ports,
Qingsi Wangdb53f8e2018-02-20 14:45:49 -0800819 webrtc::TurnCustomizer* turn_customizer,
Karl Wiberg739506e2019-04-03 11:37:28 +0200820 absl::optional<int> stun_candidate_keepalive_interval,
821 bool have_local_description);
Taylor Brandstettera1c30352016-05-13 08:15:11 -0700822
Elad Alon99c3fe52017-10-13 16:29:40 +0200823 // Starts output of an RTC event log to the given output object.
ivoc14d5dbe2016-07-04 07:06:55 -0700824 // This function should only be called from the worker thread.
Bjorn Tereliusde939432017-11-20 17:38:14 +0100825 bool StartRtcEventLog_w(std::unique_ptr<RtcEventLogOutput> output,
826 int64_t output_period_ms);
Elad Alon99c3fe52017-10-13 16:29:40 +0200827
Elad Alonacb24172017-10-06 14:32:13 +0200828 // Stops recording an RTC event log.
ivoc14d5dbe2016-07-04 07:06:55 -0700829 // This function should only be called from the worker thread.
830 void StopRtcEventLog_w();
831
Steve Anton038834f2017-07-14 15:59:59 -0700832 // Ensures the configuration doesn't have any parameters with invalid values,
833 // or values that conflict with other parameters.
834 //
835 // Returns RTCError::OK() if there are no issues.
836 RTCError ValidateConfiguration(const RTCConfiguration& config) const;
837
Steve Antonba818672017-11-06 10:21:57 -0800838 cricket::ChannelManager* channel_manager() const;
Steve Antonba818672017-11-06 10:21:57 -0800839
Steve Antonf8470812017-12-04 10:46:21 -0800840 enum class SessionError {
841 kNone, // No error.
842 kContent, // Error in BaseChannel SetLocalContent/SetRemoteContent.
843 kTransport, // Error from the underlying transport.
844 };
845
Steve Anton75737c02017-11-06 10:37:17 -0800846 // Returns the last error in the session. See the enum above for details.
Karl Wiberga58e1692019-03-26 13:33:43 +0100847 SessionError session_error() const RTC_RUN_ON(signaling_thread()) {
848 return session_error_;
849 }
Steve Antonf8470812017-12-04 10:46:21 -0800850 const std::string& session_error_desc() const { return session_error_desc_; }
Steve Anton75737c02017-11-06 10:37:17 -0800851
Amit Hilbuchdd9390c2018-11-13 16:26:05 -0800852 cricket::ChannelInterface* GetChannel(const std::string& content_name);
Steve Anton75737c02017-11-06 10:37:17 -0800853
854 // Get current SSL role used by SCTP's underlying transport.
855 bool GetSctpSslRole(rtc::SSLRole* role);
856
Steve Anton75737c02017-11-06 10:37:17 -0800857 cricket::IceConfig ParseIceConfig(
858 const PeerConnectionInterface::RTCConfiguration& config) const;
859
Steve Anton75737c02017-11-06 10:37:17 -0800860 // Implements DataChannelProviderInterface.
861 bool SendData(const cricket::SendDataParams& params,
862 const rtc::CopyOnWriteBuffer& payload,
863 cricket::SendDataResult* result) override;
864 bool ConnectDataChannel(DataChannel* webrtc_data_channel) override;
865 void DisconnectDataChannel(DataChannel* webrtc_data_channel) override;
866 void AddSctpDataStream(int sid) override;
867 void RemoveSctpDataStream(int sid) override;
868 bool ReadyToSendData() const override;
869
870 cricket::DataChannelType data_channel_type() const;
871
Bjorn Mellem175aa2e2018-11-08 11:23:22 -0800872 // Implements DataChannelSink.
873 void OnDataReceived(int channel_id,
874 DataMessageType type,
875 const rtc::CopyOnWriteBuffer& buffer) override;
876 void OnChannelClosing(int channel_id) override;
877 void OnChannelClosed(int channel_id) override;
878
Steve Anton75737c02017-11-06 10:37:17 -0800879 // Called when an RTCCertificate is generated or retrieved by
880 // WebRTCSessionDescriptionFactory. Should happen before setLocalDescription.
881 void OnCertificateReady(
882 const rtc::scoped_refptr<rtc::RTCCertificate>& certificate);
883 void OnDtlsSrtpSetupFailure(cricket::BaseChannel*, bool rtcp);
884
Steve Anton75737c02017-11-06 10:37:17 -0800885 // Non-const versions of local_description()/remote_description(), for use
886 // internally.
Karl Wiberg739506e2019-04-03 11:37:28 +0200887 SessionDescriptionInterface* mutable_local_description()
888 RTC_RUN_ON(signaling_thread()) {
Steve Anton75737c02017-11-06 10:37:17 -0800889 return pending_local_description_ ? pending_local_description_.get()
890 : current_local_description_.get();
891 }
Karl Wiberg739506e2019-04-03 11:37:28 +0200892 SessionDescriptionInterface* mutable_remote_description()
893 RTC_RUN_ON(signaling_thread()) {
Steve Anton75737c02017-11-06 10:37:17 -0800894 return pending_remote_description_ ? pending_remote_description_.get()
895 : current_remote_description_.get();
896 }
897
898 // Updates the error state, signaling if necessary.
Steve Antonf8470812017-12-04 10:46:21 -0800899 void SetSessionError(SessionError error, const std::string& error_desc);
Steve Anton75737c02017-11-06 10:37:17 -0800900
Zhi Huange830e682018-03-30 10:48:35 -0700901 RTCError UpdateSessionState(SdpType type,
902 cricket::ContentSource source,
903 const cricket::SessionDescription* description);
Steve Anton75737c02017-11-06 10:37:17 -0800904 // Push the media parts of the local or remote session description
905 // down to all of the channels.
Karl Wiberg5966c502019-02-21 23:55:09 +0100906 RTCError PushdownMediaDescription(SdpType type, cricket::ContentSource source)
907 RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -0800908
Steve Anton8a006912017-12-04 15:25:56 -0800909 RTCError PushdownTransportDescription(cricket::ContentSource source,
Steve Anton3828c062017-12-06 10:34:51 -0800910 SdpType type);
Steve Anton75737c02017-11-06 10:37:17 -0800911
912 // Returns true and the TransportInfo of the given |content_name|
913 // from |description|. Returns false if it's not available.
914 static bool GetTransportDescription(
915 const cricket::SessionDescription* description,
916 const std::string& content_name,
917 cricket::TransportDescription* info);
918
Steve Anton75737c02017-11-06 10:37:17 -0800919 // Enables media channels to allow sending of media.
Steve Antoned10bd92017-12-05 10:52:59 -0800920 // This enables media to flow on all configured audio/video channels and the
921 // RtpDataChannel.
Karl Wiberga58e1692019-03-26 13:33:43 +0100922 void EnableSending() RTC_RUN_ON(signaling_thread());
Steve Anton3fe1b152017-12-12 10:20:08 -0800923
Steve Anton8af21862017-12-15 11:20:13 -0800924 // Destroys all BaseChannels and destroys the SCTP data channel, if present.
Karl Wiberg85a4a932019-03-22 15:29:58 +0100925 void DestroyAllChannels() RTC_RUN_ON(signaling_thread());
Steve Anton3fe1b152017-12-12 10:20:08 -0800926
Steve Anton75737c02017-11-06 10:37:17 -0800927 // Returns the media index for a local ice candidate given the content name.
928 // Returns false if the local session description does not have a media
929 // content called |content_name|.
930 bool GetLocalCandidateMediaIndex(const std::string& content_name,
Karl Wiberg739506e2019-04-03 11:37:28 +0200931 int* sdp_mline_index)
932 RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -0800933 // Uses all remote candidates in |remote_desc| in this session.
934 bool UseCandidatesInSessionDescription(
Karl Wiberg744310f2019-02-14 10:18:56 +0100935 const SessionDescriptionInterface* remote_desc)
936 RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -0800937 // Uses |candidate| in this session.
Karl Wiberg744310f2019-02-14 10:18:56 +0100938 bool UseCandidate(const IceCandidateInterface* candidate)
939 RTC_RUN_ON(signaling_thread());
Guido Urdaneta41633172019-05-23 20:12:29 +0200940 RTCErrorOr<const cricket::ContentInfo*> FindContentInfo(
941 const SessionDescriptionInterface* description,
942 const IceCandidateInterface* candidate) RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -0800943 // Deletes the corresponding channel of contents that don't exist in |desc|.
944 // |desc| can be null. This means that all channels are deleted.
Karl Wiberg5966c502019-02-21 23:55:09 +0100945 void RemoveUnusedChannels(const cricket::SessionDescription* desc)
946 RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -0800947
948 // Allocates media channels based on the |desc|. If |desc| doesn't have
949 // the BUNDLE option, this method will disable BUNDLE in PortAllocator.
950 // This method will also delete any existing media channels before creating.
Karl Wiberg5966c502019-02-21 23:55:09 +0100951 RTCError CreateChannels(const cricket::SessionDescription& desc)
952 RTC_RUN_ON(signaling_thread());
Steve Antondcc3c022017-12-22 16:02:54 -0800953
954 // If the BUNDLE policy is max-bundle, then we know for sure that all
955 // transports will be bundled from the start. This method returns the BUNDLE
956 // group if that's the case, or null if BUNDLE will be negotiated later. An
957 // error is returned if max-bundle is specified but the session description
958 // does not have a BUNDLE group.
959 RTCErrorOr<const cricket::ContentGroup*> GetEarlyBundleGroup(
Karl Wiberg5966c502019-02-21 23:55:09 +0100960 const cricket::SessionDescription& desc) const
961 RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -0800962
963 // Helper methods to create media channels.
Karl Wiberg5966c502019-02-21 23:55:09 +0100964 cricket::VoiceChannel* CreateVoiceChannel(const std::string& mid)
965 RTC_RUN_ON(signaling_thread());
966 cricket::VideoChannel* CreateVideoChannel(const std::string& mid)
967 RTC_RUN_ON(signaling_thread());
968 bool CreateDataChannel(const std::string& mid) RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -0800969
Zhi Huange830e682018-03-30 10:48:35 -0700970 bool CreateSctpTransport_n(const std::string& mid);
Steve Anton75737c02017-11-06 10:37:17 -0800971 // For bundling.
Steve Anton75737c02017-11-06 10:37:17 -0800972 void DestroySctpTransport_n();
973 // SctpTransport signal handlers. Needed to marshal signals from the network
974 // to signaling thread.
975 void OnSctpTransportReadyToSendData_n();
976 // This may be called with "false" if the direction of the m= section causes
977 // us to tear down the SCTP connection.
978 void OnSctpTransportReadyToSendData_s(bool ready);
979 void OnSctpTransportDataReceived_n(const cricket::ReceiveDataParams& params,
980 const rtc::CopyOnWriteBuffer& payload);
981 // Beyond just firing the signal to the signaling thread, listens to SCTP
982 // CONTROL messages on unused SIDs and processes them as OPEN messages.
983 void OnSctpTransportDataReceived_s(const cricket::ReceiveDataParams& params,
984 const rtc::CopyOnWriteBuffer& payload);
Taylor Brandstettercdd05f02018-05-31 13:23:32 -0700985 void OnSctpClosingProcedureStartedRemotely_n(int sid);
986 void OnSctpClosingProcedureComplete_n(int sid);
Steve Anton75737c02017-11-06 10:37:17 -0800987
Bjorn Mellem175aa2e2018-11-08 11:23:22 -0800988 bool SetupMediaTransportForDataChannels_n(const std::string& mid)
989 RTC_RUN_ON(network_thread());
990 void OnMediaTransportStateChanged_n() RTC_RUN_ON(network_thread());
991 void TeardownMediaTransportForDataChannels_n() RTC_RUN_ON(network_thread());
992
Steve Anton75737c02017-11-06 10:37:17 -0800993 bool ValidateBundleSettings(const cricket::SessionDescription* desc);
994 bool HasRtcpMuxEnabled(const cricket::ContentInfo* content);
995 // Below methods are helper methods which verifies SDP.
Steve Anton8a006912017-12-04 15:25:56 -0800996 RTCError ValidateSessionDescription(const SessionDescriptionInterface* sdesc,
Karl Wiberg5966c502019-02-21 23:55:09 +0100997 cricket::ContentSource source)
998 RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -0800999
Steve Anton3828c062017-12-06 10:34:51 -08001000 // Check if a call to SetLocalDescription is acceptable with a session
1001 // description of the given type.
1002 bool ExpectSetLocalDescription(SdpType type);
1003 // Check if a call to SetRemoteDescription is acceptable with a session
1004 // description of the given type.
1005 bool ExpectSetRemoteDescription(SdpType type);
Steve Anton75737c02017-11-06 10:37:17 -08001006 // Verifies a=setup attribute as per RFC 5763.
1007 bool ValidateDtlsSetupAttribute(const cricket::SessionDescription* desc,
Steve Anton3828c062017-12-06 10:34:51 -08001008 SdpType type);
Steve Anton75737c02017-11-06 10:37:17 -08001009
1010 // Returns true if we are ready to push down the remote candidate.
1011 // |remote_desc| is the new remote description, or NULL if the current remote
1012 // description should be used. Output |valid| is true if the candidate media
1013 // index is valid.
1014 bool ReadyToUseRemoteCandidate(const IceCandidateInterface* candidate,
1015 const SessionDescriptionInterface* remote_desc,
Karl Wiberga58e1692019-03-26 13:33:43 +01001016 bool* valid) RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -08001017
1018 // Returns true if SRTP (either using DTLS-SRTP or SDES) is required by
1019 // this session.
Karl Wiberg739506e2019-04-03 11:37:28 +02001020 bool SrtpRequired() const RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -08001021
Zhi Huange830e682018-03-30 10:48:35 -07001022 // JsepTransportController signal handlers.
Karl Wiberg744310f2019-02-14 10:18:56 +01001023 void OnTransportControllerConnectionState(cricket::IceConnectionState state)
1024 RTC_RUN_ON(signaling_thread());
1025 void OnTransportControllerGatheringState(cricket::IceGatheringState state)
1026 RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -08001027 void OnTransportControllerCandidatesGathered(
1028 const std::string& transport_name,
Karl Wiberg744310f2019-02-14 10:18:56 +01001029 const std::vector<cricket::Candidate>& candidates)
1030 RTC_RUN_ON(signaling_thread());
Eldar Relloda13ea22019-06-01 12:23:43 +03001031 void OnTransportControllerCandidateError(
1032 const cricket::IceCandidateErrorEvent& event)
1033 RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -08001034 void OnTransportControllerCandidatesRemoved(
Karl Wiberg744310f2019-02-14 10:18:56 +01001035 const std::vector<cricket::Candidate>& candidates)
1036 RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -08001037 void OnTransportControllerDtlsHandshakeError(rtc::SSLHandshakeError error);
1038
Steve Antonf8470812017-12-04 10:46:21 -08001039 const char* SessionErrorToString(SessionError error) const;
Karl Wiberga58e1692019-03-26 13:33:43 +01001040 std::string GetSessionErrorMsg() RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -08001041
Steve Anton8e20f172018-03-06 10:55:04 -08001042 // Report the UMA metric SdpFormatReceived for the given remote offer.
1043 void ReportSdpFormatReceived(const SessionDescriptionInterface& remote_offer);
1044
Steve Anton0ffaaa22018-02-23 10:31:30 -08001045 // Report inferred negotiated SDP semantics from a local/remote answer to the
1046 // UMA observer.
1047 void ReportNegotiatedSdpSemantics(const SessionDescriptionInterface& answer);
1048
Steve Anton75737c02017-11-06 10:37:17 -08001049 // Invoked when TransportController connection completion is signaled.
1050 // Reports stats for all transports in use.
Karl Wiberga58e1692019-03-26 13:33:43 +01001051 void ReportTransportStats() RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -08001052
1053 // Gather the usage of IPv4/IPv6 as best connection.
1054 void ReportBestConnectionState(const cricket::TransportStats& stats);
1055
Steve Antonc7b964c2018-02-01 14:39:45 -08001056 void ReportNegotiatedCiphers(const cricket::TransportStats& stats,
Karl Wiberg739506e2019-04-03 11:37:28 +02001057 const std::set<cricket::MediaType>& media_types)
1058 RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -08001059
Harald Alvestrand8ebba742018-05-31 14:00:34 +02001060 void NoteUsageEvent(UsageEvent event);
Karl Wiberg744310f2019-02-14 10:18:56 +01001061 void ReportUsagePattern() const RTC_RUN_ON(signaling_thread());
Harald Alvestrand8ebba742018-05-31 14:00:34 +02001062
Steve Anton75737c02017-11-06 10:37:17 -08001063 void OnSentPacket_w(const rtc::SentPacket& sent_packet);
1064
Karl Wiberga58e1692019-03-26 13:33:43 +01001065 const std::string GetTransportName(const std::string& content_name)
1066 RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -08001067
Steve Anton6fec8802017-12-04 10:37:29 -08001068 // Destroys and clears the BaseChannel associated with the given transceiver,
1069 // if such channel is set.
1070 void DestroyTransceiverChannel(
1071 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
1072 transceiver);
1073
1074 // Destroys the RTP data channel and/or the SCTP data channel and clears it.
Karl Wiberg85a4a932019-03-22 15:29:58 +01001075 void DestroyDataChannel() RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -08001076
Amit Hilbuchdd9390c2018-11-13 16:26:05 -08001077 // Destroys the given ChannelInterface.
1078 // The channel cannot be accessed after this method is called.
1079 void DestroyChannelInterface(cricket::ChannelInterface* channel);
Steve Anton6fec8802017-12-04 10:37:29 -08001080
Zhi Huang365381f2018-04-13 16:44:34 -07001081 // JsepTransportController::Observer override.
Taylor Brandstettercbaa2542018-04-16 16:42:14 -07001082 //
1083 // Called by |transport_controller_| when processing transport information
1084 // from a session description, and the mapping from m= sections to transports
1085 // changed (as a result of BUNDLE negotiation, or m= sections being
1086 // rejected).
Piotr (Peter) Slatalacc8e8bb2018-11-15 08:26:19 -08001087 bool OnTransportChanged(const std::string& mid,
1088 RtpTransportInternal* rtp_transport,
Harald Alvestrandc85328f2019-02-28 07:51:00 +01001089 rtc::scoped_refptr<DtlsTransport> dtls_transport,
Karl Wibergac025892019-03-26 13:08:37 +01001090 MediaTransportInterface* media_transport) override;
Zhi Huange830e682018-03-30 10:48:35 -07001091
Guido Urdaneta1ff16c82019-05-20 19:31:53 +02001092 // RtpSenderBase::SetStreamsObserver override.
1093 void OnSetStreams() override;
1094
Harald Alvestrand7a1c7f72018-08-01 10:50:16 +02001095 // Returns the observer. Will crash on CHECK if the observer is removed.
Karl Wiberg744310f2019-02-14 10:18:56 +01001096 PeerConnectionObserver* Observer() const RTC_RUN_ON(signaling_thread());
Harald Alvestrand7a1c7f72018-08-01 10:50:16 +02001097
Benjamin Wright8c27cca2018-10-25 10:16:44 -07001098 // Returns the CryptoOptions for this PeerConnection. This will always
1099 // return the RTCConfiguration.crypto_options if set and will only default
1100 // back to the PeerConnectionFactory settings if nothing was set.
Karl Wiberg5966c502019-02-21 23:55:09 +01001101 CryptoOptions GetCryptoOptions() RTC_RUN_ON(signaling_thread());
Benjamin Wright8c27cca2018-10-25 10:16:44 -07001102
Anton Sukhanov98a462c2018-10-17 13:15:42 -07001103 // Returns rtp transport, result can not be nullptr.
Karl Wiberg2cc368f2019-04-02 11:31:56 +02001104 RtpTransportInternal* GetRtpTransport(const std::string& mid)
1105 RTC_RUN_ON(signaling_thread()) {
Anton Sukhanov98a462c2018-10-17 13:15:42 -07001106 auto rtp_transport = transport_controller_->GetRtpTransport(mid);
1107 RTC_DCHECK(rtp_transport);
1108 return rtp_transport;
1109 }
1110
Guido Urdaneta70c2db12019-04-16 12:24:14 +02001111 void UpdateNegotiationNeeded();
1112 bool CheckIfNegotiationIsNeeded();
1113
Karl Wiberg106d92d2019-02-14 10:17:47 +01001114 sigslot::signal1<DataChannel*> SignalDataChannelCreated_
1115 RTC_GUARDED_BY(signaling_thread());
Steve Anton2d8609c2018-01-23 16:38:46 -08001116
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001117 // Storing the factory as a scoped reference pointer ensures that the memory
1118 // in the PeerConnectionFactoryImpl remains available as long as the
1119 // PeerConnection is running. It is passed to PeerConnection as a raw pointer.
1120 // However, since the reference counting is done in the
deadbeefab9b2d12015-10-14 11:33:11 -07001121 // PeerConnectionFactoryInterface all instances created using the raw pointer
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001122 // will refer to the same reference count.
Karl Wiberg744310f2019-02-14 10:18:56 +01001123 const rtc::scoped_refptr<PeerConnectionFactory> factory_;
1124 PeerConnectionObserver* observer_ RTC_GUARDED_BY(signaling_thread()) =
1125 nullptr;
terelius33860252017-05-12 23:37:18 -07001126
1127 // The EventLog needs to outlive |call_| (and any other object that uses it).
Karl Wibergb03ab712019-02-14 11:59:57 +01001128 std::unique_ptr<RtcEventLog> event_log_ RTC_GUARDED_BY(worker_thread());
1129
1130 // Points to the same thing as `event_log_`. Since it's const, we may read the
1131 // pointer (but not touch the object) from any thread.
1132 RtcEventLog* const event_log_ptr_ RTC_PT_GUARDED_BY(worker_thread());
terelius33860252017-05-12 23:37:18 -07001133
Karl Wiberg8d2e2282019-02-17 13:00:07 +01001134 SignalingState signaling_state_ RTC_GUARDED_BY(signaling_thread()) = kStable;
1135 IceConnectionState ice_connection_state_ RTC_GUARDED_BY(signaling_thread()) =
1136 kIceConnectionNew;
1137 PeerConnectionInterface::IceConnectionState standardized_ice_connection_state_
1138 RTC_GUARDED_BY(signaling_thread()) = kIceConnectionNew;
1139 PeerConnectionInterface::PeerConnectionState connection_state_
1140 RTC_GUARDED_BY(signaling_thread()) = PeerConnectionState::kNew;
Jonas Olsson635474e2018-10-18 15:58:17 +02001141
Karl Wiberg8d2e2282019-02-17 13:00:07 +01001142 IceGatheringState ice_gathering_state_ RTC_GUARDED_BY(signaling_thread()) =
1143 kIceGatheringNew;
Karl Wiberg5966c502019-02-21 23:55:09 +01001144 PeerConnectionInterface::RTCConfiguration configuration_
1145 RTC_GUARDED_BY(signaling_thread());
1146
Bjorn A Mellem5985a042019-06-28 14:19:38 -07001147 // Field-trial based configuration for datagram transport.
1148 const DatagramTransportConfig datagram_transport_config_;
1149
1150 // Final, resolved value for whether datagram transport is in use.
1151 bool use_datagram_transport_ RTC_GUARDED_BY(signaling_thread()) = false;
1152
Karl Wiberg5966c502019-02-21 23:55:09 +01001153 // Cache configuration_.use_media_transport so that we can access it from
1154 // other threads.
1155 // TODO(bugs.webrtc.org/9987): Caching just this bool and allowing the data
1156 // it's derived from to change is not necessarily sound. Stop doing it.
1157 rtc::RaceChecker use_media_transport_race_checker_;
1158 bool use_media_transport_ RTC_GUARDED_BY(use_media_transport_race_checker_) =
1159 configuration_.use_media_transport;
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001160
Zach Steine20867f2018-08-02 13:20:15 -07001161 // TODO(zstein): |async_resolver_factory_| can currently be nullptr if it
1162 // is not injected. It should be required once chromium supplies it.
Karl Wibergfb3be392019-03-22 14:13:22 +01001163 std::unique_ptr<AsyncResolverFactory> async_resolver_factory_
1164 RTC_GUARDED_BY(signaling_thread());
1165 std::unique_ptr<cricket::PortAllocator>
1166 port_allocator_; // TODO(bugs.webrtc.org/9987): Accessed on both
1167 // signaling and network thread.
1168 std::unique_ptr<rtc::SSLCertificateVerifier>
1169 tls_cert_verifier_; // TODO(bugs.webrtc.org/9987): Accessed on both
1170 // signaling and network thread.
deadbeefab9b2d12015-10-14 11:33:11 -07001171
zhihuang8f65cdf2016-05-06 18:40:30 -07001172 // One PeerConnection has only one RTCP CNAME.
1173 // https://tools.ietf.org/html/draft-ietf-rtcweb-rtp-usage-26#section-4.9
Karl Wibergfb3be392019-03-22 14:13:22 +01001174 const std::string rtcp_cname_;
zhihuang8f65cdf2016-05-06 18:40:30 -07001175
deadbeefab9b2d12015-10-14 11:33:11 -07001176 // Streams added via AddStream.
Karl Wiberg1e1e1022019-03-22 14:27:22 +01001177 const rtc::scoped_refptr<StreamCollection> local_streams_
1178 RTC_GUARDED_BY(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -07001179 // Streams created as a result of SetRemoteDescription.
Karl Wiberg1e1e1022019-03-22 14:27:22 +01001180 const rtc::scoped_refptr<StreamCollection> remote_streams_
1181 RTC_GUARDED_BY(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -07001182
Karl Wiberg1e1e1022019-03-22 14:27:22 +01001183 std::vector<std::unique_ptr<MediaStreamObserver>> stream_observers_
1184 RTC_GUARDED_BY(signaling_thread());
deadbeefeb459812015-12-15 19:24:43 -08001185
Steve Anton4171afb2017-11-20 10:20:22 -08001186 // These lists store sender info seen in local/remote descriptions.
Karl Wibergc70999e2019-03-22 15:14:27 +01001187 std::vector<RtpSenderInfo> remote_audio_sender_infos_
1188 RTC_GUARDED_BY(signaling_thread());
1189 std::vector<RtpSenderInfo> remote_video_sender_infos_
1190 RTC_GUARDED_BY(signaling_thread());
1191 std::vector<RtpSenderInfo> local_audio_sender_infos_
1192 RTC_GUARDED_BY(signaling_thread());
1193 std::vector<RtpSenderInfo> local_video_sender_infos_
1194 RTC_GUARDED_BY(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -07001195
Karl Wiberg85a4a932019-03-22 15:29:58 +01001196 SctpSidAllocator sid_allocator_ RTC_GUARDED_BY(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -07001197 // label -> DataChannel
Karl Wiberg85a4a932019-03-22 15:29:58 +01001198 std::map<std::string, rtc::scoped_refptr<DataChannel>> rtp_data_channels_
1199 RTC_GUARDED_BY(signaling_thread());
1200 std::vector<rtc::scoped_refptr<DataChannel>> sctp_data_channels_
1201 RTC_GUARDED_BY(signaling_thread());
1202 std::vector<rtc::scoped_refptr<DataChannel>> sctp_data_channels_to_free_
1203 RTC_GUARDED_BY(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -07001204
Karl Wiberg85a4a932019-03-22 15:29:58 +01001205 bool remote_peer_supports_msid_ RTC_GUARDED_BY(signaling_thread()) = false;
deadbeef70ab1a12015-09-28 16:53:55 -07001206
Karl Wibergac025892019-03-26 13:08:37 +01001207 // The unique_ptr belongs to the worker thread, but the Call object manages
1208 // its own thread safety.
Karl Wiberg6cab5c82019-03-26 09:57:01 +01001209 std::unique_ptr<Call> call_ RTC_GUARDED_BY(worker_thread());
1210
1211 // Points to the same thing as `call_`. Since it's const, we may read the
Karl Wibergac025892019-03-26 13:08:37 +01001212 // pointer from any thread.
1213 Call* const call_ptr_;
Karl Wiberg6cab5c82019-03-26 09:57:01 +01001214
1215 std::unique_ptr<StatsCollector> stats_
1216 RTC_GUARDED_BY(signaling_thread()); // A pointer is passed to senders_
1217 rtc::scoped_refptr<RTCStatsCollector> stats_collector_
1218 RTC_GUARDED_BY(signaling_thread());
terelius33860252017-05-12 23:37:18 -07001219
deadbeefa601f5c2016-06-06 14:27:39 -07001220 std::vector<
Steve Anton4171afb2017-11-20 10:20:22 -08001221 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>>
Karl Wiberg2cc368f2019-04-02 11:31:56 +02001222 transceivers_; // TODO(bugs.webrtc.org/9987): Accessed on both signaling
1223 // and network thread.
1224
Henrik Boström5b147782018-12-04 11:25:05 +01001225 // In Unified Plan, if we encounter remote SDP that does not contain an a=msid
1226 // line we create and use a stream with a random ID for our receivers. This is
1227 // to support legacy endpoints that do not support the a=msid attribute (as
1228 // opposed to streamless tracks with "a=msid:-").
Karl Wiberga58e1692019-03-26 13:33:43 +01001229 rtc::scoped_refptr<MediaStreamInterface> missing_msid_default_stream_
1230 RTC_GUARDED_BY(signaling_thread());
Amit Hilbuchae3df542019-01-07 12:13:08 -08001231 // MIDs will be generated using this generator which will keep track of
1232 // all the MIDs that have been seen over the life of the PeerConnection.
Karl Wiberga58e1692019-03-26 13:33:43 +01001233 rtc::UniqueStringGenerator mid_generator_ RTC_GUARDED_BY(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -08001234
Karl Wiberga58e1692019-03-26 13:33:43 +01001235 SessionError session_error_ RTC_GUARDED_BY(signaling_thread()) =
1236 SessionError::kNone;
1237 std::string session_error_desc_ RTC_GUARDED_BY(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -08001238
Karl Wiberga58e1692019-03-26 13:33:43 +01001239 std::string session_id_ RTC_GUARDED_BY(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -08001240
Karl Wiberg2cc368f2019-04-02 11:31:56 +02001241 std::unique_ptr<JsepTransportController>
1242 transport_controller_; // TODO(bugs.webrtc.org/9987): Accessed on both
1243 // signaling and network thread.
1244 std::unique_ptr<cricket::SctpTransportInternalFactory>
1245 sctp_factory_; // TODO(bugs.webrtc.org/9987): Accessed on both
1246 // signaling and network thread.
Steve Anton75737c02017-11-06 10:37:17 -08001247 // |rtp_data_channel_| is used if in RTP data channel mode, |sctp_transport_|
1248 // when using SCTP.
Karl Wiberg2cc368f2019-04-02 11:31:56 +02001249 cricket::RtpDataChannel* rtp_data_channel_ =
1250 nullptr; // TODO(bugs.webrtc.org/9987): Accessed on both
1251 // signaling and some other thread.
Steve Anton75737c02017-11-06 10:37:17 -08001252
Harald Alvestrandc85328f2019-02-28 07:51:00 +01001253 cricket::SctpTransportInternal* cricket_sctp_transport() {
1254 return sctp_transport_->internal();
1255 }
Karl Wiberg2cc368f2019-04-02 11:31:56 +02001256 rtc::scoped_refptr<SctpTransport>
1257 sctp_transport_; // TODO(bugs.webrtc.org/9987): Accessed on both
1258 // signaling and network thread.
1259
Zhi Huange830e682018-03-30 10:48:35 -07001260 // |sctp_mid_| is the content name (MID) in SDP.
Karl Wiberg2cc368f2019-04-02 11:31:56 +02001261 absl::optional<std::string>
1262 sctp_mid_; // TODO(bugs.webrtc.org/9987): Accessed on both signaling
1263 // and network thread.
1264
Steve Anton75737c02017-11-06 10:37:17 -08001265 // Value cached on signaling thread. Only updated when SctpReadyToSendData
1266 // fires on the signaling thread.
Karl Wiberg2cc368f2019-04-02 11:31:56 +02001267 bool sctp_ready_to_send_data_ RTC_GUARDED_BY(signaling_thread()) = false;
1268
Steve Anton75737c02017-11-06 10:37:17 -08001269 // Same as signals provided by SctpTransport, but these are guaranteed to
1270 // fire on the signaling thread, whereas SctpTransport fires on the networking
1271 // thread.
1272 // |sctp_invoker_| is used so that any signals queued on the signaling thread
1273 // from the network thread are immediately discarded if the SctpTransport is
1274 // destroyed (due to m= section being rejected).
1275 // TODO(deadbeef): Use a proxy object to ensure that method calls/signals
1276 // are marshalled to the right thread. Could almost use proxy.h for this,
1277 // but it doesn't have a mechanism for marshalling sigslot::signals
Karl Wiberg7a651c6e2019-04-02 13:00:46 +02001278 std::unique_ptr<rtc::AsyncInvoker> sctp_invoker_
1279 RTC_GUARDED_BY(network_thread());
1280 sigslot::signal1<bool> SignalSctpReadyToSendData
1281 RTC_GUARDED_BY(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -08001282 sigslot::signal2<const cricket::ReceiveDataParams&,
1283 const rtc::CopyOnWriteBuffer&>
Karl Wiberg7a651c6e2019-04-02 13:00:46 +02001284 SignalSctpDataReceived RTC_GUARDED_BY(signaling_thread());
1285 sigslot::signal1<int> SignalSctpClosingProcedureStartedRemotely
1286 RTC_GUARDED_BY(signaling_thread());
1287 sigslot::signal1<int> SignalSctpClosingProcedureComplete
1288 RTC_GUARDED_BY(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -08001289
Bjorn Mellem175aa2e2018-11-08 11:23:22 -08001290 // Whether this peer is the caller. Set when the local description is applied.
1291 absl::optional<bool> is_caller_ RTC_GUARDED_BY(signaling_thread());
1292
1293 // Content name (MID) for media transport data channels in SDP.
Karl Wibergd9bf7202019-04-02 19:36:24 +02001294 absl::optional<std::string>
1295 media_transport_data_mid_; // TODO(bugs.webrtc.org/9987): Accessed on
1296 // both signaling and network thread.
Bjorn Mellem175aa2e2018-11-08 11:23:22 -08001297
1298 // Media transport used for data channels. Thread-safe.
Karl Wibergd9bf7202019-04-02 19:36:24 +02001299 MediaTransportInterface* media_transport_ =
1300 nullptr; // TODO(bugs.webrtc.org/9987): Object is thread safe, but
1301 // pointer accessed on both signaling and network thread.
Bjorn Mellem175aa2e2018-11-08 11:23:22 -08001302
1303 // Cached value of whether the media transport is ready to send.
1304 bool media_transport_ready_to_send_data_ RTC_GUARDED_BY(signaling_thread()) =
1305 false;
1306
1307 // Used to invoke media transport signals on the signaling thread.
Karl Wiberg739506e2019-04-03 11:37:28 +02001308 std::unique_ptr<rtc::AsyncInvoker> media_transport_invoker_
1309 RTC_GUARDED_BY(network_thread());
Bjorn Mellem175aa2e2018-11-08 11:23:22 -08001310
1311 // Identical to the signals for SCTP, but from media transport:
1312 sigslot::signal1<bool> SignalMediaTransportWritable_s
1313 RTC_GUARDED_BY(signaling_thread());
1314 sigslot::signal2<const cricket::ReceiveDataParams&,
1315 const rtc::CopyOnWriteBuffer&>
1316 SignalMediaTransportReceivedData_s RTC_GUARDED_BY(signaling_thread());
1317 sigslot::signal1<int> SignalMediaTransportChannelClosing_s
1318 RTC_GUARDED_BY(signaling_thread());
1319 sigslot::signal1<int> SignalMediaTransportChannelClosed_s
1320 RTC_GUARDED_BY(signaling_thread());
1321
Karl Wiberg739506e2019-04-03 11:37:28 +02001322 std::unique_ptr<SessionDescriptionInterface> current_local_description_
1323 RTC_GUARDED_BY(signaling_thread());
1324 std::unique_ptr<SessionDescriptionInterface> pending_local_description_
1325 RTC_GUARDED_BY(signaling_thread());
1326 std::unique_ptr<SessionDescriptionInterface> current_remote_description_
1327 RTC_GUARDED_BY(signaling_thread());
1328 std::unique_ptr<SessionDescriptionInterface> pending_remote_description_
1329 RTC_GUARDED_BY(signaling_thread());
1330 bool dtls_enabled_ RTC_GUARDED_BY(signaling_thread()) = false;
Steve Anton75737c02017-11-06 10:37:17 -08001331 // Specifies which kind of data channel is allowed. This is controlled
1332 // by the chrome command-line flag and constraints:
1333 // 1. If chrome command-line switch 'enable-sctp-data-channels' is enabled,
1334 // constraint kEnableDtlsSrtp is true, and constaint kEnableRtpDataChannels is
1335 // not set or false, SCTP is allowed (DCT_SCTP);
1336 // 2. If constraint kEnableRtpDataChannels is true, RTP is allowed (DCT_RTP);
1337 // 3. If both 1&2 are false, data channel is not allowed (DCT_NONE).
Karl Wibergf73f7d62019-04-08 15:36:53 +02001338 cricket::DataChannelType data_channel_type_ =
1339 cricket::DCT_NONE; // TODO(bugs.webrtc.org/9987): Accessed on both
1340 // signaling and network thread.
Steve Anton75737c02017-11-06 10:37:17 -08001341
Karl Wibergf73f7d62019-04-08 15:36:53 +02001342 // List of content names for which the remote side triggered an ICE restart.
1343 std::set<std::string> pending_ice_restarts_
1344 RTC_GUARDED_BY(signaling_thread());
1345
1346 std::unique_ptr<WebRtcSessionDescriptionFactory> webrtc_session_desc_factory_
1347 RTC_GUARDED_BY(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -08001348
1349 // Member variables for caching global options.
Karl Wibergf73f7d62019-04-08 15:36:53 +02001350 cricket::AudioOptions audio_options_ RTC_GUARDED_BY(signaling_thread());
1351 cricket::VideoOptions video_options_ RTC_GUARDED_BY(signaling_thread());
Harald Alvestrand8ebba742018-05-31 14:00:34 +02001352
Karl Wibergf73f7d62019-04-08 15:36:53 +02001353 int usage_event_accumulator_ RTC_GUARDED_BY(signaling_thread()) = 0;
1354 bool return_histogram_very_quickly_ RTC_GUARDED_BY(signaling_thread()) =
1355 false;
Amit Hilbuchbcd39d42019-01-25 17:13:56 -08001356
1357 // This object should be used to generate any SSRC that is not explicitly
1358 // specified by the user (or by the remote party).
1359 // The generator is not used directly, instead it is passed on to the
1360 // channel manager and the session description factory.
Karl Wibergf73f7d62019-04-08 15:36:53 +02001361 rtc::UniqueRandomIdGenerator ssrc_generator_
1362 RTC_GUARDED_BY(signaling_thread());
Jonas Orelanda3aa9bd2019-04-17 07:38:40 +02001363
1364 // A video bitrate allocator factory.
1365 // This can injected using the PeerConnectionDependencies,
1366 // or else the CreateBuiltinVideoBitrateAllocatorFactory() will be called.
1367 // Note that one can still choose to override this in a MediaEngine
1368 // if one wants too.
1369 std::unique_ptr<webrtc::VideoBitrateAllocatorFactory>
1370 video_bitrate_allocator_factory_;
1371
Guido Urdaneta70c2db12019-04-16 12:24:14 +02001372 bool is_negotiation_needed_ RTC_GUARDED_BY(signaling_thread()) = false;
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001373};
1374
1375} // namespace webrtc
1376
Steve Anton10542f22019-01-11 09:11:00 -08001377#endif // PC_PEER_CONNECTION_H_