blob: 2cf3662b65ac7d41ed643627198d7ed6a3d6e8fc [file] [log] [blame]
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001/*
kjellanderb24317b2016-02-10 07:54:43 -08002 * Copyright 2012 The WebRTC project authors. All Rights Reserved.
henrike@webrtc.org28e20752013-07-10 00:45:36 +00003 *
kjellanderb24317b2016-02-10 07:54:43 -08004 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
henrike@webrtc.org28e20752013-07-10 00:45:36 +00009 */
10
Steve Anton10542f22019-01-11 09:11:00 -080011#ifndef PC_PEER_CONNECTION_H_
12#define PC_PEER_CONNECTION_H_
henrike@webrtc.org28e20752013-07-10 00:45:36 +000013
perkjd61bf802016-03-24 03:16:19 -070014#include <map>
kwibergd1fe2812016-04-27 06:47:29 -070015#include <memory>
Steve Anton75737c02017-11-06 10:37:17 -080016#include <set>
17#include <string>
perkjd61bf802016-03-24 03:16:19 -070018#include <vector>
henrike@webrtc.org28e20752013-07-10 00:45:36 +000019
Piotr (Peter) Slatalae0c2e972018-10-08 09:43:21 -070020#include "api/media_transport_interface.h"
Steve Anton10542f22019-01-11 09:11:00 -080021#include "api/peer_connection_interface.h"
22#include "api/turn_customizer.h"
23#include "pc/ice_server_parsing.h"
24#include "pc/jsep_transport_controller.h"
25#include "pc/peer_connection_factory.h"
26#include "pc/peer_connection_internal.h"
27#include "pc/rtc_stats_collector.h"
28#include "pc/rtp_transceiver.h"
Harald Alvestrandc85328f2019-02-28 07:51:00 +010029#include "pc/sctp_transport.h"
Steve Anton10542f22019-01-11 09:11:00 -080030#include "pc/stats_collector.h"
31#include "pc/stream_collection.h"
Steve Anton10542f22019-01-11 09:11:00 -080032#include "pc/webrtc_session_description_factory.h"
Karl Wiberg5966c502019-02-21 23:55:09 +010033#include "rtc_base/race_checker.h"
Amit Hilbuchdbb49df2019-01-23 14:54:24 -080034#include "rtc_base/unique_id_generator.h"
henrike@webrtc.org28e20752013-07-10 00:45:36 +000035
36namespace webrtc {
henrike@webrtc.org28e20752013-07-10 00:45:36 +000037
deadbeefeb459812015-12-15 19:24:43 -080038class MediaStreamObserver;
perkjf0dcfe22016-03-10 18:32:00 +010039class VideoRtpReceiver;
skvlad11a9cbf2016-10-07 11:53:05 -070040class RtcEventLog;
deadbeefab9b2d12015-10-14 11:33:11 -070041
Steve Anton75737c02017-11-06 10:37:17 -080042// PeerConnection is the implementation of the PeerConnection object as defined
43// by the PeerConnectionInterface API surface.
44// The class currently is solely responsible for the following:
45// - Managing the session state machine (signaling state).
46// - Creating and initializing lower-level objects, like PortAllocator and
47// BaseChannels.
48// - Owning and managing the life cycle of the RtpSender/RtpReceiver and track
49// objects.
50// - Tracking the current and pending local/remote session descriptions.
51// The class currently is jointly responsible for the following:
52// - Parsing and interpreting SDP.
53// - Generating offers and answers based on the current state.
54// - The ICE state machine.
55// - Generating stats.
Steve Anton2d8609c2018-01-23 16:38:46 -080056class PeerConnection : public PeerConnectionInternal,
Steve Anton75737c02017-11-06 10:37:17 -080057 public DataChannelProviderInterface,
Bjorn Mellem175aa2e2018-11-08 11:23:22 -080058 public DataChannelSink,
Zhi Huang365381f2018-04-13 16:44:34 -070059 public JsepTransportController::Observer,
Steve Antonad182762018-09-05 20:22:40 +000060 public rtc::MessageHandler,
henrike@webrtc.org28e20752013-07-10 00:45:36 +000061 public sigslot::has_slots<> {
62 public:
Harald Alvestrand8ebba742018-05-31 14:00:34 +020063 enum class UsageEvent : int {
64 TURN_SERVER_ADDED = 0x01,
65 STUN_SERVER_ADDED = 0x02,
66 DATA_ADDED = 0x04,
67 AUDIO_ADDED = 0x08,
68 VIDEO_ADDED = 0x10,
69 SET_LOCAL_DESCRIPTION_CALLED = 0x20,
70 SET_REMOTE_DESCRIPTION_CALLED = 0x40,
71 CANDIDATE_COLLECTED = 0x80,
72 REMOTE_CANDIDATE_ADDED = 0x100,
73 ICE_STATE_CONNECTED = 0x200,
Qingsi Wang7fc821d2018-07-12 12:54:53 -070074 CLOSE_CALLED = 0x400,
Harald Alvestrand056d8112018-07-16 19:18:58 +020075 PRIVATE_CANDIDATE_COLLECTED = 0x800,
76 MAX_VALUE = 0x1000,
Harald Alvestrand8ebba742018-05-31 14:00:34 +020077 };
78
zhihuang38ede132017-06-15 12:52:32 -070079 explicit PeerConnection(PeerConnectionFactory* factory,
80 std::unique_ptr<RtcEventLog> event_log,
81 std::unique_ptr<Call> call);
henrike@webrtc.org28e20752013-07-10 00:45:36 +000082
deadbeef653b8e02015-11-11 12:55:10 -080083 bool Initialize(
84 const PeerConnectionInterface::RTCConfiguration& configuration,
Benjamin Wrightcab58882018-05-02 15:12:47 -070085 PeerConnectionDependencies dependencies);
deadbeef653b8e02015-11-11 12:55:10 -080086
deadbeefa67696b2015-09-29 11:56:26 -070087 rtc::scoped_refptr<StreamCollectionInterface> local_streams() override;
88 rtc::scoped_refptr<StreamCollectionInterface> remote_streams() override;
89 bool AddStream(MediaStreamInterface* local_stream) override;
90 void RemoveStream(MediaStreamInterface* local_stream) override;
henrike@webrtc.org28e20752013-07-10 00:45:36 +000091
Steve Anton2d6c76a2018-01-05 17:10:52 -080092 RTCErrorOr<rtc::scoped_refptr<RtpSenderInterface>> AddTrack(
Steve Antonf9381f02017-12-14 10:23:57 -080093 rtc::scoped_refptr<MediaStreamTrackInterface> track,
Seth Hampson845e8782018-03-02 11:34:10 -080094 const std::vector<std::string>& stream_ids) override;
deadbeefe1f9d832016-01-14 15:35:42 -080095 bool RemoveTrack(RtpSenderInterface* sender) override;
Steve Anton24db5732018-07-23 10:27:33 -070096 RTCError RemoveTrackNew(
97 rtc::scoped_refptr<RtpSenderInterface> sender) override;
deadbeefe1f9d832016-01-14 15:35:42 -080098
Steve Anton9158ef62017-11-27 13:01:52 -080099 RTCErrorOr<rtc::scoped_refptr<RtpTransceiverInterface>> AddTransceiver(
100 rtc::scoped_refptr<MediaStreamTrackInterface> track) override;
101 RTCErrorOr<rtc::scoped_refptr<RtpTransceiverInterface>> AddTransceiver(
102 rtc::scoped_refptr<MediaStreamTrackInterface> track,
103 const RtpTransceiverInit& init) override;
104 RTCErrorOr<rtc::scoped_refptr<RtpTransceiverInterface>> AddTransceiver(
105 cricket::MediaType media_type) override;
106 RTCErrorOr<rtc::scoped_refptr<RtpTransceiverInterface>> AddTransceiver(
107 cricket::MediaType media_type,
108 const RtpTransceiverInit& init) override;
109
Steve Anton8c0f7a72017-10-03 10:03:10 -0700110 // Gets the DTLS SSL certificate associated with the audio transport on the
111 // remote side. This will become populated once the DTLS connection with the
112 // peer has been completed, as indicated by the ICE connection state
113 // transitioning to kIceConnectionCompleted.
114 // Note that this will be removed once we implement RTCDtlsTransport which
115 // has standardized method for getting this information.
116 // See https://www.w3.org/TR/webrtc/#rtcdtlstransport-interface
117 std::unique_ptr<rtc::SSLCertificate> GetRemoteAudioSSLCertificate();
118
Zhi Huang70b820f2018-01-27 14:16:15 -0800119 // Version of the above method that returns the full certificate chain.
120 std::unique_ptr<rtc::SSLCertChain> GetRemoteAudioSSLCertChain();
121
deadbeeffac06552015-11-25 11:26:01 -0800122 rtc::scoped_refptr<RtpSenderInterface> CreateSender(
deadbeefbd7d8f72015-12-18 16:58:44 -0800123 const std::string& kind,
124 const std::string& stream_id) override;
deadbeeffac06552015-11-25 11:26:01 -0800125
deadbeef70ab1a12015-09-28 16:53:55 -0700126 std::vector<rtc::scoped_refptr<RtpSenderInterface>> GetSenders()
127 const override;
128 std::vector<rtc::scoped_refptr<RtpReceiverInterface>> GetReceivers()
129 const override;
Steve Anton9158ef62017-11-27 13:01:52 -0800130 std::vector<rtc::scoped_refptr<RtpTransceiverInterface>> GetTransceivers()
131 const override;
deadbeef70ab1a12015-09-28 16:53:55 -0700132
deadbeefa67696b2015-09-29 11:56:26 -0700133 rtc::scoped_refptr<DataChannelInterface> CreateDataChannel(
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000134 const std::string& label,
deadbeefa67696b2015-09-29 11:56:26 -0700135 const DataChannelInit* config) override;
Henrik Boström1df1bf82018-03-20 13:24:20 +0100136 // WARNING: LEGACY. See peerconnectioninterface.h
deadbeefa67696b2015-09-29 11:56:26 -0700137 bool GetStats(StatsObserver* observer,
138 webrtc::MediaStreamTrackInterface* track,
139 StatsOutputLevel level) override;
Henrik Boström1df1bf82018-03-20 13:24:20 +0100140 // Spec-complaint GetStats(). See peerconnectioninterface.h
hbos74e1a4f2016-09-15 23:33:01 -0700141 void GetStats(RTCStatsCollectorCallback* callback) override;
Henrik Boström1df1bf82018-03-20 13:24:20 +0100142 void GetStats(
143 rtc::scoped_refptr<RtpSenderInterface> selector,
144 rtc::scoped_refptr<RTCStatsCollectorCallback> callback) override;
145 void GetStats(
146 rtc::scoped_refptr<RtpReceiverInterface> selector,
147 rtc::scoped_refptr<RTCStatsCollectorCallback> callback) override;
Harald Alvestrand89061872018-01-02 14:08:34 +0100148 void ClearStatsCache() override;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000149
deadbeefa67696b2015-09-29 11:56:26 -0700150 SignalingState signaling_state() override;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000151
deadbeefa67696b2015-09-29 11:56:26 -0700152 IceConnectionState ice_connection_state() override;
Jonas Olsson12046902018-12-06 11:25:14 +0100153 IceConnectionState standardized_ice_connection_state() override;
Jonas Olsson635474e2018-10-18 15:58:17 +0200154 PeerConnectionState peer_connection_state() override;
deadbeefa67696b2015-09-29 11:56:26 -0700155 IceGatheringState ice_gathering_state() override;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000156
deadbeefa67696b2015-09-29 11:56:26 -0700157 const SessionDescriptionInterface* local_description() const override;
158 const SessionDescriptionInterface* remote_description() const override;
deadbeeffe4a8a42016-12-20 17:56:17 -0800159 const SessionDescriptionInterface* current_local_description() const override;
160 const SessionDescriptionInterface* current_remote_description()
161 const override;
162 const SessionDescriptionInterface* pending_local_description() const override;
163 const SessionDescriptionInterface* pending_remote_description()
164 const override;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000165
166 // JSEP01
deadbeefa67696b2015-09-29 11:56:26 -0700167 void CreateOffer(CreateSessionDescriptionObserver* observer,
168 const RTCOfferAnswerOptions& options) override;
htaa2a49d92016-03-04 02:51:39 -0800169 void CreateAnswer(CreateSessionDescriptionObserver* observer,
170 const RTCOfferAnswerOptions& options) override;
deadbeefa67696b2015-09-29 11:56:26 -0700171 void SetLocalDescription(SetSessionDescriptionObserver* observer,
172 SessionDescriptionInterface* desc) override;
Henrik Boströma4ecf552017-11-23 14:17:07 +0000173 void SetRemoteDescription(SetSessionDescriptionObserver* observer,
174 SessionDescriptionInterface* desc) override;
Henrik Boström31638672017-11-23 17:48:32 +0100175 void SetRemoteDescription(
176 std::unique_ptr<SessionDescriptionInterface> desc,
177 rtc::scoped_refptr<SetRemoteDescriptionObserverInterface> observer)
178 override;
deadbeef46c73892016-11-16 19:42:04 -0800179 PeerConnectionInterface::RTCConfiguration GetConfiguration() override;
deadbeefa67696b2015-09-29 11:56:26 -0700180 bool SetConfiguration(
deadbeef293e9262017-01-11 12:28:30 -0800181 const PeerConnectionInterface::RTCConfiguration& configuration,
182 RTCError* error) override;
183 bool SetConfiguration(
184 const PeerConnectionInterface::RTCConfiguration& configuration) override {
185 return SetConfiguration(configuration, nullptr);
186 }
deadbeefa67696b2015-09-29 11:56:26 -0700187 bool AddIceCandidate(const IceCandidateInterface* candidate) override;
Honghai Zhang7fb69db2016-03-14 11:59:18 -0700188 bool RemoveIceCandidates(
189 const std::vector<cricket::Candidate>& candidates) override;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000190
Niels Möller0c4f7be2018-05-07 14:01:37 +0200191 RTCError SetBitrate(const BitrateSettings& bitrate) override;
zstein4b979802017-06-02 14:37:37 -0700192
Alex Narest78609d52017-10-20 10:37:47 +0200193 void SetBitrateAllocationStrategy(
194 std::unique_ptr<rtc::BitrateAllocationStrategy>
195 bitrate_allocation_strategy) override;
196
henrika5f6bf242017-11-01 11:06:56 +0100197 void SetAudioPlayout(bool playout) override;
198 void SetAudioRecording(bool recording) override;
199
Harald Alvestrandad88c882018-11-28 16:47:46 +0100200 rtc::scoped_refptr<DtlsTransportInterface> LookupDtlsTransportByMid(
201 const std::string& mid) override;
Harald Alvestrand4a7b3ac2019-01-17 10:39:40 +0100202 rtc::scoped_refptr<DtlsTransport> LookupDtlsTransportByMidInternal(
203 const std::string& mid);
Harald Alvestrandad88c882018-11-28 16:47:46 +0100204
Harald Alvestrandc85328f2019-02-28 07:51:00 +0100205 rtc::scoped_refptr<SctpTransportInterface> GetSctpTransport() const override;
206
Elad Alon99c3fe52017-10-13 16:29:40 +0200207 RTC_DEPRECATED bool StartRtcEventLog(rtc::PlatformFile file,
208 int64_t max_size_bytes) override;
Bjorn Tereliusde939432017-11-20 17:38:14 +0100209 bool StartRtcEventLog(std::unique_ptr<RtcEventLogOutput> output,
210 int64_t output_period_ms) override;
ivoc14d5dbe2016-07-04 07:06:55 -0700211 void StopRtcEventLog() override;
212
deadbeefa67696b2015-09-29 11:56:26 -0700213 void Close() override;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000214
Steve Anton2d8609c2018-01-23 16:38:46 -0800215 // PeerConnectionInternal implementation.
Karl Wiberg4ae63472019-02-22 00:57:06 +0100216 rtc::Thread* network_thread() const final {
Steve Anton2d8609c2018-01-23 16:38:46 -0800217 return factory_->network_thread();
218 }
Karl Wiberg4ae63472019-02-22 00:57:06 +0100219 rtc::Thread* worker_thread() const final { return factory_->worker_thread(); }
220 rtc::Thread* signaling_thread() const final {
Steve Anton2d8609c2018-01-23 16:38:46 -0800221 return factory_->signaling_thread();
perkjd61bf802016-03-24 03:16:19 -0700222 }
deadbeefab9b2d12015-10-14 11:33:11 -0700223
Karl Wiberga58e1692019-03-26 13:33:43 +0100224 std::string session_id() const override {
225 RTC_DCHECK_RUN_ON(signaling_thread());
226 return session_id_;
227 }
Steve Anton75737c02017-11-06 10:37:17 -0800228
Steve Anton2d8609c2018-01-23 16:38:46 -0800229 bool initial_offerer() const override {
Karl Wiberg2cc368f2019-04-02 11:31:56 +0200230 RTC_DCHECK_RUN_ON(signaling_thread());
Zhi Huange830e682018-03-30 10:48:35 -0700231 return transport_controller_ && transport_controller_->initial_offerer();
Steve Anton2d8609c2018-01-23 16:38:46 -0800232 }
Steve Anton75737c02017-11-06 10:37:17 -0800233
Steve Anton2d8609c2018-01-23 16:38:46 -0800234 std::vector<
235 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>>
Steve Antonb8867112018-02-13 10:07:54 -0800236 GetTransceiversInternal() const override {
Karl Wiberga58e1692019-03-26 13:33:43 +0100237 RTC_DCHECK_RUN_ON(signaling_thread());
Steve Anton2d8609c2018-01-23 16:38:46 -0800238 return transceivers_;
239 }
240
Steve Anton2d8609c2018-01-23 16:38:46 -0800241 sigslot::signal1<DataChannel*>& SignalDataChannelCreated() override {
242 return SignalDataChannelCreated_;
243 }
244
245 cricket::RtpDataChannel* rtp_data_channel() const override {
Steve Anton75737c02017-11-06 10:37:17 -0800246 return rtp_data_channel_;
Steve Anton978b8762017-09-29 12:15:02 -0700247 }
Steve Anton2d8609c2018-01-23 16:38:46 -0800248
Steve Antonbe5e2082018-01-24 15:29:17 -0800249 std::vector<rtc::scoped_refptr<DataChannel>> sctp_data_channels()
Steve Anton2d8609c2018-01-23 16:38:46 -0800250 const override {
Karl Wiberg85a4a932019-03-22 15:29:58 +0100251 RTC_DCHECK_RUN_ON(signaling_thread());
Steve Anton2d8609c2018-01-23 16:38:46 -0800252 return sctp_data_channels_;
253 }
254
Danil Chapovalov66cadcc2018-06-19 16:47:43 +0200255 absl::optional<std::string> sctp_content_name() const override {
Karl Wiberg2cc368f2019-04-02 11:31:56 +0200256 RTC_DCHECK_RUN_ON(signaling_thread());
Zhi Huange830e682018-03-30 10:48:35 -0700257 return sctp_mid_;
Steve Anton75737c02017-11-06 10:37:17 -0800258 }
Steve Anton2d8609c2018-01-23 16:38:46 -0800259
Danil Chapovalov66cadcc2018-06-19 16:47:43 +0200260 absl::optional<std::string> sctp_transport_name() const override;
Steve Anton75737c02017-11-06 10:37:17 -0800261
Qingsi Wang72a43a12018-02-20 16:03:18 -0800262 cricket::CandidateStatsList GetPooledCandidateStats() const override;
Steve Anton5dfde182018-02-06 10:34:40 -0800263 std::map<std::string, std::string> GetTransportNamesByMid() const override;
264 std::map<std::string, cricket::TransportStats> GetTransportStatsByNames(
265 const std::set<std::string>& transport_names) override;
Steve Anton2d8609c2018-01-23 16:38:46 -0800266 Call::Stats GetCallStats() override;
Steve Anton75737c02017-11-06 10:37:17 -0800267
Steve Anton2d8609c2018-01-23 16:38:46 -0800268 bool GetLocalCertificate(
269 const std::string& transport_name,
270 rtc::scoped_refptr<rtc::RTCCertificate>* certificate) override;
Taylor Brandstetterc3928662018-02-23 13:04:51 -0800271 std::unique_ptr<rtc::SSLCertChain> GetRemoteSSLCertChain(
Steve Anton2d8609c2018-01-23 16:38:46 -0800272 const std::string& transport_name) override;
273 bool IceRestartPending(const std::string& content_name) const override;
274 bool NeedsIceRestart(const std::string& content_name) const override;
275 bool GetSslRole(const std::string& content_name, rtc::SSLRole* role) override;
Steve Anton7464fca2018-01-19 11:10:37 -0800276
Harald Alvestrand19793842018-06-25 12:03:50 +0200277 void ReturnHistogramVeryQuicklyForTesting() {
Karl Wibergf73f7d62019-04-08 15:36:53 +0200278 RTC_DCHECK_RUN_ON(signaling_thread());
Harald Alvestrand19793842018-06-25 12:03:50 +0200279 return_histogram_very_quickly_ = true;
280 }
Harald Alvestrand7a1c7f72018-08-01 10:50:16 +0200281 void RequestUsagePatternReportForTesting();
Harald Alvestrand19793842018-06-25 12:03:50 +0200282
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000283 protected:
deadbeefa67696b2015-09-29 11:56:26 -0700284 ~PeerConnection() override;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000285
286 private:
Henrik Boström31638672017-11-23 17:48:32 +0100287 class SetRemoteDescriptionObserverAdapter;
288 friend class SetRemoteDescriptionObserverAdapter;
289
Steve Anton4171afb2017-11-20 10:20:22 -0800290 struct RtpSenderInfo {
291 RtpSenderInfo() : first_ssrc(0) {}
Seth Hampson845e8782018-03-02 11:34:10 -0800292 RtpSenderInfo(const std::string& stream_id,
Steve Anton4171afb2017-11-20 10:20:22 -0800293 const std::string sender_id,
294 uint32_t ssrc)
Seth Hampson845e8782018-03-02 11:34:10 -0800295 : stream_id(stream_id), sender_id(sender_id), first_ssrc(ssrc) {}
Steve Anton4171afb2017-11-20 10:20:22 -0800296 bool operator==(const RtpSenderInfo& other) {
Seth Hampson845e8782018-03-02 11:34:10 -0800297 return this->stream_id == other.stream_id &&
Steve Anton4171afb2017-11-20 10:20:22 -0800298 this->sender_id == other.sender_id &&
299 this->first_ssrc == other.first_ssrc;
deadbeefbda7e0b2015-12-08 17:13:40 -0800300 }
Seth Hampson845e8782018-03-02 11:34:10 -0800301 std::string stream_id;
Steve Anton4171afb2017-11-20 10:20:22 -0800302 std::string sender_id;
303 // An RtpSender can have many SSRCs. The first one is used as a sort of ID
304 // for communicating with the lower layers.
305 uint32_t first_ssrc;
deadbeefab9b2d12015-10-14 11:33:11 -0700306 };
deadbeefab9b2d12015-10-14 11:33:11 -0700307
Steve Antonad182762018-09-05 20:22:40 +0000308 // Implements MessageHandler.
309 void OnMessage(rtc::Message* msg) override;
310
Steve Antonafb0bb72018-02-20 11:35:37 -0800311 // Plan B helpers for getting the voice/video media channels for the single
312 // audio/video transceiver, if it exists.
Karl Wiberg5966c502019-02-21 23:55:09 +0100313 cricket::VoiceMediaChannel* voice_media_channel() const
314 RTC_RUN_ON(signaling_thread());
315 cricket::VideoMediaChannel* video_media_channel() const
316 RTC_RUN_ON(signaling_thread());
Steve Anton60776752018-01-10 11:51:34 -0800317
Steve Anton4171afb2017-11-20 10:20:22 -0800318 std::vector<rtc::scoped_refptr<RtpSenderProxyWithInternal<RtpSenderInternal>>>
Karl Wiberga58e1692019-03-26 13:33:43 +0100319 GetSendersInternal() const RTC_RUN_ON(signaling_thread());
Steve Anton4171afb2017-11-20 10:20:22 -0800320 std::vector<
321 rtc::scoped_refptr<RtpReceiverProxyWithInternal<RtpReceiverInternal>>>
Karl Wiberga58e1692019-03-26 13:33:43 +0100322 GetReceiversInternal() const RTC_RUN_ON(signaling_thread());
Steve Anton4171afb2017-11-20 10:20:22 -0800323
324 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
Karl Wiberg5966c502019-02-21 23:55:09 +0100325 GetAudioTransceiver() const RTC_RUN_ON(signaling_thread());
Steve Anton4171afb2017-11-20 10:20:22 -0800326 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
Karl Wiberg5966c502019-02-21 23:55:09 +0100327 GetVideoTransceiver() const RTC_RUN_ON(signaling_thread());
Steve Anton4171afb2017-11-20 10:20:22 -0800328
Steve Antonafb0bb72018-02-20 11:35:37 -0800329 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
Karl Wiberga58e1692019-03-26 13:33:43 +0100330 GetFirstAudioTransceiver() const RTC_RUN_ON(signaling_thread());
Steve Antonafb0bb72018-02-20 11:35:37 -0800331
deadbeefab9b2d12015-10-14 11:33:11 -0700332 void CreateAudioReceiver(MediaStreamInterface* stream,
Karl Wiberg744310f2019-02-14 10:18:56 +0100333 const RtpSenderInfo& remote_sender_info)
334 RTC_RUN_ON(signaling_thread());
perkjf0dcfe22016-03-10 18:32:00 +0100335
deadbeefab9b2d12015-10-14 11:33:11 -0700336 void CreateVideoReceiver(MediaStreamInterface* stream,
Karl Wiberg744310f2019-02-14 10:18:56 +0100337 const RtpSenderInfo& remote_sender_info)
338 RTC_RUN_ON(signaling_thread());
Henrik Boström933d8b02017-10-10 10:05:16 -0700339 rtc::scoped_refptr<RtpReceiverInterface> RemoveAndStopReceiver(
Karl Wiberg5966c502019-02-21 23:55:09 +0100340 const RtpSenderInfo& remote_sender_info) RTC_RUN_ON(signaling_thread());
korniltsev.anatolyec390b52017-07-24 17:00:25 -0700341
342 // May be called either by AddStream/RemoveStream, or when a track is
343 // added/removed from a stream previously added via AddStream.
Karl Wiberg5966c502019-02-21 23:55:09 +0100344 void AddAudioTrack(AudioTrackInterface* track, MediaStreamInterface* stream)
345 RTC_RUN_ON(signaling_thread());
korniltsev.anatolyec390b52017-07-24 17:00:25 -0700346 void RemoveAudioTrack(AudioTrackInterface* track,
Karl Wiberg5966c502019-02-21 23:55:09 +0100347 MediaStreamInterface* stream)
348 RTC_RUN_ON(signaling_thread());
349 void AddVideoTrack(VideoTrackInterface* track, MediaStreamInterface* stream)
350 RTC_RUN_ON(signaling_thread());
korniltsev.anatolyec390b52017-07-24 17:00:25 -0700351 void RemoveVideoTrack(VideoTrackInterface* track,
Karl Wiberg5966c502019-02-21 23:55:09 +0100352 MediaStreamInterface* stream)
353 RTC_RUN_ON(signaling_thread());
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000354
Steve Antonf9381f02017-12-14 10:23:57 -0800355 // AddTrack implementation when Unified Plan is specified.
356 RTCErrorOr<rtc::scoped_refptr<RtpSenderInterface>> AddTrackUnifiedPlan(
357 rtc::scoped_refptr<MediaStreamTrackInterface> track,
Karl Wiberga58e1692019-03-26 13:33:43 +0100358 const std::vector<std::string>& stream_ids)
359 RTC_RUN_ON(signaling_thread());
Steve Antonf9381f02017-12-14 10:23:57 -0800360 // AddTrack implementation when Plan B is specified.
361 RTCErrorOr<rtc::scoped_refptr<RtpSenderInterface>> AddTrackPlanB(
362 rtc::scoped_refptr<MediaStreamTrackInterface> track,
Karl Wiberg5966c502019-02-21 23:55:09 +0100363 const std::vector<std::string>& stream_ids)
364 RTC_RUN_ON(signaling_thread());
Steve Antonf9381f02017-12-14 10:23:57 -0800365
366 // Returns the first RtpTransceiver suitable for a newly added track, if such
367 // transceiver is available.
368 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
369 FindFirstTransceiverForAddedTrack(
Karl Wiberga58e1692019-03-26 13:33:43 +0100370 rtc::scoped_refptr<MediaStreamTrackInterface> track)
371 RTC_RUN_ON(signaling_thread());
Steve Antonf9381f02017-12-14 10:23:57 -0800372
Steve Antonf9381f02017-12-14 10:23:57 -0800373 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
Karl Wiberga58e1692019-03-26 13:33:43 +0100374 FindTransceiverBySender(rtc::scoped_refptr<RtpSenderInterface> sender)
375 RTC_RUN_ON(signaling_thread());
Steve Antonf9381f02017-12-14 10:23:57 -0800376
Steve Anton22da89f2018-01-25 13:58:07 -0800377 // Internal implementation for AddTransceiver family of methods. If
378 // |fire_callback| is set, fires OnRenegotiationNeeded callback if successful.
Steve Anton9158ef62017-11-27 13:01:52 -0800379 RTCErrorOr<rtc::scoped_refptr<RtpTransceiverInterface>> AddTransceiver(
380 cricket::MediaType media_type,
381 rtc::scoped_refptr<MediaStreamTrackInterface> track,
Steve Anton22da89f2018-01-25 13:58:07 -0800382 const RtpTransceiverInit& init,
Karl Wiberg744310f2019-02-14 10:18:56 +0100383 bool fire_callback = true) RTC_RUN_ON(signaling_thread());
Steve Anton9158ef62017-11-27 13:01:52 -0800384
Steve Anton02ee47c2018-01-10 16:26:06 -0800385 rtc::scoped_refptr<RtpSenderProxyWithInternal<RtpSenderInternal>>
386 CreateSender(cricket::MediaType media_type,
Steve Anton111fdfd2018-06-25 13:03:36 -0700387 const std::string& id,
Steve Anton02ee47c2018-01-10 16:26:06 -0800388 rtc::scoped_refptr<MediaStreamTrackInterface> track,
Florent Castelli892acf02018-10-01 22:47:20 +0200389 const std::vector<std::string>& stream_ids,
390 const std::vector<RtpEncodingParameters>& send_encodings);
Steve Anton02ee47c2018-01-10 16:26:06 -0800391
392 rtc::scoped_refptr<RtpReceiverProxyWithInternal<RtpReceiverInternal>>
393 CreateReceiver(cricket::MediaType media_type, const std::string& receiver_id);
394
Steve Antonf9381f02017-12-14 10:23:57 -0800395 // Create a new RtpTransceiver of the given type and add it to the list of
396 // transceivers.
397 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
Steve Anton02ee47c2018-01-10 16:26:06 -0800398 CreateAndAddTransceiver(
399 rtc::scoped_refptr<RtpSenderProxyWithInternal<RtpSenderInternal>> sender,
400 rtc::scoped_refptr<RtpReceiverProxyWithInternal<RtpReceiverInternal>>
Karl Wiberga58e1692019-03-26 13:33:43 +0100401 receiver) RTC_RUN_ON(signaling_thread());
Steve Antonf9381f02017-12-14 10:23:57 -0800402
Karl Wiberg744310f2019-02-14 10:18:56 +0100403 void SetIceConnectionState(IceConnectionState new_state)
404 RTC_RUN_ON(signaling_thread());
Jonas Olsson635474e2018-10-18 15:58:17 +0200405 void SetStandardizedIceConnectionState(
Karl Wiberg744310f2019-02-14 10:18:56 +0100406 PeerConnectionInterface::IceConnectionState new_state)
407 RTC_RUN_ON(signaling_thread());
Jonas Olsson635474e2018-10-18 15:58:17 +0200408 void SetConnectionState(
Karl Wiberg744310f2019-02-14 10:18:56 +0100409 PeerConnectionInterface::PeerConnectionState new_state)
410 RTC_RUN_ON(signaling_thread());
Jonas Olsson635474e2018-10-18 15:58:17 +0200411
Steve Antonba818672017-11-06 10:21:57 -0800412 // Called any time the IceGatheringState changes
Karl Wiberg744310f2019-02-14 10:18:56 +0100413 void OnIceGatheringChange(IceGatheringState new_state)
414 RTC_RUN_ON(signaling_thread());
Steve Antonba818672017-11-06 10:21:57 -0800415 // New ICE candidate has been gathered.
Karl Wiberg744310f2019-02-14 10:18:56 +0100416 void OnIceCandidate(std::unique_ptr<IceCandidateInterface> candidate)
417 RTC_RUN_ON(signaling_thread());
Steve Antonba818672017-11-06 10:21:57 -0800418 // Some local ICE candidates have been removed.
Karl Wiberg744310f2019-02-14 10:18:56 +0100419 void OnIceCandidatesRemoved(const std::vector<cricket::Candidate>& candidates)
420 RTC_RUN_ON(signaling_thread());
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000421
Steve Antonba818672017-11-06 10:21:57 -0800422 // Update the state, signaling if necessary.
Karl Wiberg744310f2019-02-14 10:18:56 +0100423 void ChangeSignalingState(SignalingState signaling_state)
424 RTC_RUN_ON(signaling_thread());
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000425
deadbeefeb459812015-12-15 19:24:43 -0800426 // Signals from MediaStreamObserver.
427 void OnAudioTrackAdded(AudioTrackInterface* track,
Karl Wiberg744310f2019-02-14 10:18:56 +0100428 MediaStreamInterface* stream)
429 RTC_RUN_ON(signaling_thread());
deadbeefeb459812015-12-15 19:24:43 -0800430 void OnAudioTrackRemoved(AudioTrackInterface* track,
Karl Wiberg744310f2019-02-14 10:18:56 +0100431 MediaStreamInterface* stream)
432 RTC_RUN_ON(signaling_thread());
deadbeefeb459812015-12-15 19:24:43 -0800433 void OnVideoTrackAdded(VideoTrackInterface* track,
Karl Wiberg744310f2019-02-14 10:18:56 +0100434 MediaStreamInterface* stream)
435 RTC_RUN_ON(signaling_thread());
deadbeefeb459812015-12-15 19:24:43 -0800436 void OnVideoTrackRemoved(VideoTrackInterface* track,
Karl Wiberg744310f2019-02-14 10:18:56 +0100437 MediaStreamInterface* stream)
438 RTC_RUN_ON(signaling_thread());
deadbeefeb459812015-12-15 19:24:43 -0800439
Henrik Boström31638672017-11-23 17:48:32 +0100440 void PostSetSessionDescriptionSuccess(
441 SetSessionDescriptionObserver* observer);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000442 void PostSetSessionDescriptionFailure(SetSessionDescriptionObserver* observer,
Steve Antonad182762018-09-05 20:22:40 +0000443 RTCError&& error);
deadbeefab9b2d12015-10-14 11:33:11 -0700444 void PostCreateSessionDescriptionFailure(
445 CreateSessionDescriptionObserver* observer,
Harald Alvestrand5081c0c2018-03-09 15:18:03 +0100446 RTCError error);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000447
Steve Anton8a006912017-12-04 15:25:56 -0800448 // Synchronous implementations of SetLocalDescription/SetRemoteDescription
449 // that return an RTCError instead of invoking a callback.
450 RTCError ApplyLocalDescription(
451 std::unique_ptr<SessionDescriptionInterface> desc);
452 RTCError ApplyRemoteDescription(
453 std::unique_ptr<SessionDescriptionInterface> desc);
454
Steve Antondcc3c022017-12-22 16:02:54 -0800455 // Updates the local RtpTransceivers according to the JSEP rules. Called as
456 // part of setting the local/remote description.
457 RTCError UpdateTransceiversAndDataChannels(
458 cricket::ContentSource source,
Seth Hampsonae8a90a2018-02-13 15:33:48 -0800459 const SessionDescriptionInterface& new_session,
460 const SessionDescriptionInterface* old_local_description,
Karl Wiberg106d92d2019-02-14 10:17:47 +0100461 const SessionDescriptionInterface* old_remote_description)
462 RTC_RUN_ON(signaling_thread());
Steve Antondcc3c022017-12-22 16:02:54 -0800463
464 // Either creates or destroys the transceiver's BaseChannel according to the
465 // given media section.
466 RTCError UpdateTransceiverChannel(
467 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
468 transceiver,
469 const cricket::ContentInfo& content,
Karl Wiberg5966c502019-02-21 23:55:09 +0100470 const cricket::ContentGroup* bundle_group) RTC_RUN_ON(signaling_thread());
Steve Antondcc3c022017-12-22 16:02:54 -0800471
Steve Antonfa2260d2017-12-28 16:38:23 -0800472 // Either creates or destroys the local data channel according to the given
473 // media section.
474 RTCError UpdateDataChannel(cricket::ContentSource source,
475 const cricket::ContentInfo& content,
Karl Wiberg106d92d2019-02-14 10:17:47 +0100476 const cricket::ContentGroup* bundle_group)
477 RTC_RUN_ON(signaling_thread());
Steve Antonfa2260d2017-12-28 16:38:23 -0800478
Steve Antondcc3c022017-12-22 16:02:54 -0800479 // Associate the given transceiver according to the JSEP rules.
480 RTCErrorOr<
481 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>>
482 AssociateTransceiver(cricket::ContentSource source,
Seth Hampsonae8a90a2018-02-13 15:33:48 -0800483 SdpType type,
Steve Antondcc3c022017-12-22 16:02:54 -0800484 size_t mline_index,
485 const cricket::ContentInfo& content,
Seth Hampsonae8a90a2018-02-13 15:33:48 -0800486 const cricket::ContentInfo* old_local_content,
Karl Wiberg5966c502019-02-21 23:55:09 +0100487 const cricket::ContentInfo* old_remote_content)
488 RTC_RUN_ON(signaling_thread());
Steve Antondcc3c022017-12-22 16:02:54 -0800489
490 // Returns the RtpTransceiver, if found, that is associated to the given MID.
491 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
Karl Wiberg5966c502019-02-21 23:55:09 +0100492 GetAssociatedTransceiver(const std::string& mid) const
493 RTC_RUN_ON(signaling_thread());
Steve Antondcc3c022017-12-22 16:02:54 -0800494
495 // Returns the RtpTransceiver, if found, that was assigned to the given mline
496 // index in CreateOffer.
497 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
Karl Wiberg5966c502019-02-21 23:55:09 +0100498 GetTransceiverByMLineIndex(size_t mline_index) const
499 RTC_RUN_ON(signaling_thread());
Steve Antondcc3c022017-12-22 16:02:54 -0800500
501 // Returns an RtpTransciever, if available, that can be used to receive the
502 // given media type according to JSEP rules.
503 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
Karl Wiberg5966c502019-02-21 23:55:09 +0100504 FindAvailableTransceiverToReceive(cricket::MediaType media_type) const
505 RTC_RUN_ON(signaling_thread());
Steve Antondcc3c022017-12-22 16:02:54 -0800506
Steve Antoned10bd92017-12-05 10:52:59 -0800507 // Returns the media section in the given session description that is
508 // associated with the RtpTransceiver. Returns null if none found or this
509 // RtpTransceiver is not associated. Logic varies depending on the
510 // SdpSemantics specified in the configuration.
511 const cricket::ContentInfo* FindMediaSectionForTransceiver(
512 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
513 transceiver,
Karl Wiberg5966c502019-02-21 23:55:09 +0100514 const SessionDescriptionInterface* sdesc) const
515 RTC_RUN_ON(signaling_thread());
Steve Antoned10bd92017-12-05 10:52:59 -0800516
Henrik Boströmafa07dd2018-12-20 11:06:02 +0100517 // Runs the algorithm **set the associated remote streams** specified in
518 // https://w3c.github.io/webrtc-pc/#set-associated-remote-streams.
519 void SetAssociatedRemoteStreams(
520 rtc::scoped_refptr<RtpReceiverInternal> receiver,
521 const std::vector<std::string>& stream_ids,
522 std::vector<rtc::scoped_refptr<MediaStreamInterface>>* added_streams,
Karl Wiberg1e1e1022019-03-22 14:27:22 +0100523 std::vector<rtc::scoped_refptr<MediaStreamInterface>>* removed_streams)
524 RTC_RUN_ON(signaling_thread());
Henrik Boströmafa07dd2018-12-20 11:06:02 +0100525
Steve Anton0f5400a2018-07-17 14:25:36 -0700526 // Runs the algorithm **process the removal of a remote track** specified in
527 // the WebRTC specification.
528 // This method will update the following lists:
529 // |remove_list| is the list of transceivers for which the receiving track is
530 // being removed.
531 // |removed_streams| is the list of streams which no longer have a receiving
532 // track so should be removed.
533 // https://w3c.github.io/webrtc-pc/#process-remote-track-removal
534 void ProcessRemovalOfRemoteTrack(
535 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
536 transceiver,
537 std::vector<rtc::scoped_refptr<RtpTransceiverInterface>>* remove_list,
Karl Wiberg1e1e1022019-03-22 14:27:22 +0100538 std::vector<rtc::scoped_refptr<MediaStreamInterface>>* removed_streams)
539 RTC_RUN_ON(signaling_thread());
Steve Anton0f5400a2018-07-17 14:25:36 -0700540
Henrik Boströmafa07dd2018-12-20 11:06:02 +0100541 void RemoveRemoteStreamsIfEmpty(
542 const std::vector<rtc::scoped_refptr<MediaStreamInterface>>&
543 remote_streams,
Karl Wiberg1e1e1022019-03-22 14:27:22 +0100544 std::vector<rtc::scoped_refptr<MediaStreamInterface>>* removed_streams)
545 RTC_RUN_ON(signaling_thread());
Henrik Boströmafa07dd2018-12-20 11:06:02 +0100546
Steve Anton52d86772018-02-20 15:48:12 -0800547 void OnNegotiationNeeded();
548
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000549 bool IsClosed() const {
Karl Wiberg8d2e2282019-02-17 13:00:07 +0100550 RTC_DCHECK_RUN_ON(signaling_thread());
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000551 return signaling_state_ == PeerConnectionInterface::kClosed;
552 }
553
deadbeefab9b2d12015-10-14 11:33:11 -0700554 // Returns a MediaSessionOptions struct with options decided by |options|,
555 // the local MediaStreams and DataChannels.
Steve Antondcc3c022017-12-22 16:02:54 -0800556 void GetOptionsForOffer(const PeerConnectionInterface::RTCOfferAnswerOptions&
557 offer_answer_options,
Karl Wiberg5966c502019-02-21 23:55:09 +0100558 cricket::MediaSessionOptions* session_options)
559 RTC_RUN_ON(signaling_thread());
Steve Antondcc3c022017-12-22 16:02:54 -0800560 void GetOptionsForPlanBOffer(
561 const PeerConnectionInterface::RTCOfferAnswerOptions&
562 offer_answer_options,
Karl Wiberg5966c502019-02-21 23:55:09 +0100563 cricket::MediaSessionOptions* session_options)
564 RTC_RUN_ON(signaling_thread());
Steve Antondcc3c022017-12-22 16:02:54 -0800565 void GetOptionsForUnifiedPlanOffer(
566 const PeerConnectionInterface::RTCOfferAnswerOptions&
567 offer_answer_options,
Karl Wiberg5966c502019-02-21 23:55:09 +0100568 cricket::MediaSessionOptions* session_options)
569 RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700570
Karl Wiberg5966c502019-02-21 23:55:09 +0100571 RTCError HandleLegacyOfferOptions(const RTCOfferAnswerOptions& options)
572 RTC_RUN_ON(signaling_thread());
Steve Anton22da89f2018-01-25 13:58:07 -0800573 void RemoveRecvDirectionFromReceivingTransceiversOfType(
Karl Wiberga58e1692019-03-26 13:33:43 +0100574 cricket::MediaType media_type) RTC_RUN_ON(signaling_thread());
Steve Anton22da89f2018-01-25 13:58:07 -0800575 void AddUpToOneReceivingTransceiverOfType(cricket::MediaType media_type);
576 std::vector<
577 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>>
Karl Wiberga58e1692019-03-26 13:33:43 +0100578 GetReceivingTransceiversOfType(cricket::MediaType media_type)
579 RTC_RUN_ON(signaling_thread());
Steve Anton22da89f2018-01-25 13:58:07 -0800580
deadbeefab9b2d12015-10-14 11:33:11 -0700581 // Returns a MediaSessionOptions struct with options decided by
582 // |constraints|, the local MediaStreams and DataChannels.
Steve Antondcc3c022017-12-22 16:02:54 -0800583 void GetOptionsForAnswer(const RTCOfferAnswerOptions& offer_answer_options,
Karl Wiberg5966c502019-02-21 23:55:09 +0100584 cricket::MediaSessionOptions* session_options)
585 RTC_RUN_ON(signaling_thread());
Steve Antondcc3c022017-12-22 16:02:54 -0800586 void GetOptionsForPlanBAnswer(
587 const PeerConnectionInterface::RTCOfferAnswerOptions&
588 offer_answer_options,
Karl Wiberg5966c502019-02-21 23:55:09 +0100589 cricket::MediaSessionOptions* session_options)
590 RTC_RUN_ON(signaling_thread());
Steve Antondcc3c022017-12-22 16:02:54 -0800591 void GetOptionsForUnifiedPlanAnswer(
592 const PeerConnectionInterface::RTCOfferAnswerOptions&
593 offer_answer_options,
Karl Wiberg5966c502019-02-21 23:55:09 +0100594 cricket::MediaSessionOptions* session_options)
595 RTC_RUN_ON(signaling_thread());
htaa2a49d92016-03-04 02:51:39 -0800596
zhihuang1c378ed2017-08-17 14:10:50 -0700597 // Generates MediaDescriptionOptions for the |session_opts| based on existing
598 // local description or remote description.
599 void GenerateMediaDescriptionOptions(
600 const SessionDescriptionInterface* session_desc,
Steve Anton1d03a752017-11-27 14:30:09 -0800601 RtpTransceiverDirection audio_direction,
602 RtpTransceiverDirection video_direction,
Danil Chapovalov66cadcc2018-06-19 16:47:43 +0200603 absl::optional<size_t>* audio_index,
604 absl::optional<size_t>* video_index,
605 absl::optional<size_t>* data_index,
Karl Wiberg85a4a932019-03-22 15:29:58 +0100606 cricket::MediaSessionOptions* session_options)
607 RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700608
Steve Antonfa2260d2017-12-28 16:38:23 -0800609 // Generates the active MediaDescriptionOptions for the local data channel
610 // given the specified MID.
611 cricket::MediaDescriptionOptions GetMediaDescriptionOptionsForActiveData(
Karl Wiberg85a4a932019-03-22 15:29:58 +0100612 const std::string& mid) const RTC_RUN_ON(signaling_thread());
Steve Antonfa2260d2017-12-28 16:38:23 -0800613
614 // Generates the rejected MediaDescriptionOptions for the local data channel
615 // given the specified MID.
616 cricket::MediaDescriptionOptions GetMediaDescriptionOptionsForRejectedData(
Karl Wiberg85a4a932019-03-22 15:29:58 +0100617 const std::string& mid) const RTC_RUN_ON(signaling_thread());
Steve Antonfa2260d2017-12-28 16:38:23 -0800618
619 // Returns the MID for the data section associated with either the
620 // RtpDataChannel or SCTP data channel, if it has been set. If no data
621 // channels are configured this will return nullopt.
Karl Wiberg2cc368f2019-04-02 11:31:56 +0200622 absl::optional<std::string> GetDataMid() const RTC_RUN_ON(signaling_thread());
Steve Antonfa2260d2017-12-28 16:38:23 -0800623
Steve Anton4171afb2017-11-20 10:20:22 -0800624 // Remove all local and remote senders of type |media_type|.
deadbeeffaac4972015-11-12 15:33:07 -0800625 // Called when a media type is rejected (m-line set to port 0).
Karl Wiberg744310f2019-02-14 10:18:56 +0100626 void RemoveSenders(cricket::MediaType media_type)
627 RTC_RUN_ON(signaling_thread());
deadbeeffaac4972015-11-12 15:33:07 -0800628
deadbeefbda7e0b2015-12-08 17:13:40 -0800629 // Makes sure a MediaStreamTrack is created for each StreamParam in |streams|,
630 // and existing MediaStreamTracks are removed if there is no corresponding
631 // StreamParam. If |default_track_needed| is true, a default MediaStreamTrack
632 // is created if it doesn't exist; if false, it's removed if it exists.
633 // |media_type| is the type of the |streams| and can be either audio or video.
deadbeefab9b2d12015-10-14 11:33:11 -0700634 // If a new MediaStream is created it is added to |new_streams|.
Steve Anton4171afb2017-11-20 10:20:22 -0800635 void UpdateRemoteSendersList(
deadbeefab9b2d12015-10-14 11:33:11 -0700636 const std::vector<cricket::StreamParams>& streams,
deadbeefbda7e0b2015-12-08 17:13:40 -0800637 bool default_track_needed,
deadbeefab9b2d12015-10-14 11:33:11 -0700638 cricket::MediaType media_type,
Karl Wiberg744310f2019-02-14 10:18:56 +0100639 StreamCollection* new_streams) RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700640
Steve Anton4171afb2017-11-20 10:20:22 -0800641 // Triggered when a remote sender has been seen for the first time in a remote
deadbeefab9b2d12015-10-14 11:33:11 -0700642 // session description. It creates a remote MediaStreamTrackInterface
643 // implementation and triggers CreateAudioReceiver or CreateVideoReceiver.
Steve Anton4171afb2017-11-20 10:20:22 -0800644 void OnRemoteSenderAdded(const RtpSenderInfo& sender_info,
Karl Wiberg744310f2019-02-14 10:18:56 +0100645 cricket::MediaType media_type)
646 RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700647
Steve Anton4171afb2017-11-20 10:20:22 -0800648 // Triggered when a remote sender has been removed from a remote session
649 // description. It removes the remote sender with id |sender_id| from a remote
deadbeefab9b2d12015-10-14 11:33:11 -0700650 // MediaStream and triggers DestroyAudioReceiver or DestroyVideoReceiver.
Steve Anton4171afb2017-11-20 10:20:22 -0800651 void OnRemoteSenderRemoved(const RtpSenderInfo& sender_info,
Karl Wiberg744310f2019-02-14 10:18:56 +0100652 cricket::MediaType media_type)
653 RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700654
655 // Finds remote MediaStreams without any tracks and removes them from
656 // |remote_streams_| and notifies the observer that the MediaStreams no longer
657 // exist.
Karl Wiberg744310f2019-02-14 10:18:56 +0100658 void UpdateEndedRemoteMediaStreams() RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700659
deadbeefab9b2d12015-10-14 11:33:11 -0700660 // Loops through the vector of |streams| and finds added and removed
661 // StreamParams since last time this method was called.
Steve Anton4171afb2017-11-20 10:20:22 -0800662 // For each new or removed StreamParam, OnLocalSenderSeen or
663 // OnLocalSenderRemoved is invoked.
664 void UpdateLocalSenders(const std::vector<cricket::StreamParams>& streams,
Karl Wiberg5966c502019-02-21 23:55:09 +0100665 cricket::MediaType media_type)
666 RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700667
Steve Anton4171afb2017-11-20 10:20:22 -0800668 // Triggered when a local sender has been seen for the first time in a local
deadbeefab9b2d12015-10-14 11:33:11 -0700669 // session description.
670 // This method triggers CreateAudioSender or CreateVideoSender if the rtp
671 // streams in the local SessionDescription can be mapped to a MediaStreamTrack
672 // in a MediaStream in |local_streams_|
Steve Anton4171afb2017-11-20 10:20:22 -0800673 void OnLocalSenderAdded(const RtpSenderInfo& sender_info,
Karl Wiberg5966c502019-02-21 23:55:09 +0100674 cricket::MediaType media_type)
675 RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700676
Steve Anton4171afb2017-11-20 10:20:22 -0800677 // Triggered when a local sender has been removed from a local session
deadbeefab9b2d12015-10-14 11:33:11 -0700678 // description.
679 // This method triggers DestroyAudioSender or DestroyVideoSender if a stream
680 // has been removed from the local SessionDescription and the stream can be
681 // mapped to a MediaStreamTrack in a MediaStream in |local_streams_|.
Steve Anton4171afb2017-11-20 10:20:22 -0800682 void OnLocalSenderRemoved(const RtpSenderInfo& sender_info,
Karl Wiberga58e1692019-03-26 13:33:43 +0100683 cricket::MediaType media_type)
684 RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700685
Karl Wiberg85a4a932019-03-22 15:29:58 +0100686 void UpdateLocalRtpDataChannels(const cricket::StreamParamsVec& streams)
687 RTC_RUN_ON(signaling_thread());
Karl Wiberg106d92d2019-02-14 10:17:47 +0100688 void UpdateRemoteRtpDataChannels(const cricket::StreamParamsVec& streams)
689 RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700690 void UpdateClosingRtpDataChannels(
691 const std::vector<std::string>& active_channels,
Karl Wiberg85a4a932019-03-22 15:29:58 +0100692 bool is_local_update) RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700693 void CreateRemoteRtpDataChannel(const std::string& label,
Karl Wiberg106d92d2019-02-14 10:17:47 +0100694 uint32_t remote_ssrc)
695 RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700696
697 // Creates channel and adds it to the collection of DataChannels that will
698 // be offered in a SessionDescription.
699 rtc::scoped_refptr<DataChannel> InternalCreateDataChannel(
700 const std::string& label,
Karl Wiberg106d92d2019-02-14 10:17:47 +0100701 const InternalDataChannelInit* config) RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700702
703 // Checks if any data channel has been added.
Karl Wiberg85a4a932019-03-22 15:29:58 +0100704 bool HasDataChannels() const RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700705
Karl Wiberg85a4a932019-03-22 15:29:58 +0100706 void AllocateSctpSids(rtc::SSLRole role) RTC_RUN_ON(signaling_thread());
707 void OnSctpDataChannelClosed(DataChannel* channel)
708 RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700709
Karl Wiberg85a4a932019-03-22 15:29:58 +0100710 void OnDataChannelDestroyed() RTC_RUN_ON(signaling_thread());
Steve Antonba818672017-11-06 10:21:57 -0800711 // Called when a valid data channel OPEN message is received.
deadbeefab9b2d12015-10-14 11:33:11 -0700712 void OnDataChannelOpenMessage(const std::string& label,
Karl Wiberg106d92d2019-02-14 10:17:47 +0100713 const InternalDataChannelInit& config)
714 RTC_RUN_ON(signaling_thread());
715
Bjorn Mellem175aa2e2018-11-08 11:23:22 -0800716 // Parses and handles open messages. Returns true if the message is an open
717 // message, false otherwise.
718 bool HandleOpenMessage_s(const cricket::ReceiveDataParams& params,
719 const rtc::CopyOnWriteBuffer& buffer)
720 RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700721
Steve Anton4171afb2017-11-20 10:20:22 -0800722 // Returns true if the PeerConnection is configured to use Unified Plan
723 // semantics for creating offers/answers and setting local/remote
724 // descriptions. If this is true the RtpTransceiver API will also be available
725 // to the user. If this is false, Plan B semantics are assumed.
Steve Anton79e79602017-11-20 10:25:56 -0800726 // TODO(bugs.webrtc.org/8530): Flip the default to be Unified Plan once
727 // sufficient time has passed.
Karl Wiberg5966c502019-02-21 23:55:09 +0100728 bool IsUnifiedPlan() const RTC_RUN_ON(signaling_thread()) {
Steve Anton79e79602017-11-20 10:25:56 -0800729 return configuration_.sdp_semantics == SdpSemantics::kUnifiedPlan;
730 }
Steve Anton4171afb2017-11-20 10:20:22 -0800731
Steve Anton06817cd2018-12-18 15:55:30 -0800732 // The offer/answer machinery assumes the media section MID is present and
733 // unique. To support legacy end points that do not supply a=mid lines, this
734 // method will modify the session description to add MIDs generated according
735 // to the SDP semantics.
Karl Wiberg5966c502019-02-21 23:55:09 +0100736 void FillInMissingRemoteMids(cricket::SessionDescription* remote_description)
737 RTC_RUN_ON(signaling_thread());
Steve Anton06817cd2018-12-18 15:55:30 -0800738
Steve Anton4171afb2017-11-20 10:20:22 -0800739 // Is there an RtpSender of the given type?
Karl Wiberg5966c502019-02-21 23:55:09 +0100740 bool HasRtpSender(cricket::MediaType type) const
741 RTC_RUN_ON(signaling_thread());
deadbeeffac06552015-11-25 11:26:01 -0800742
Steve Anton4171afb2017-11-20 10:20:22 -0800743 // Return the RtpSender with the given track attached.
744 rtc::scoped_refptr<RtpSenderProxyWithInternal<RtpSenderInternal>>
Karl Wiberga58e1692019-03-26 13:33:43 +0100745 FindSenderForTrack(MediaStreamTrackInterface* track) const
746 RTC_RUN_ON(signaling_thread());
deadbeef70ab1a12015-09-28 16:53:55 -0700747
Steve Anton4171afb2017-11-20 10:20:22 -0800748 // Return the RtpSender with the given id, or null if none exists.
749 rtc::scoped_refptr<RtpSenderProxyWithInternal<RtpSenderInternal>>
Karl Wiberga58e1692019-03-26 13:33:43 +0100750 FindSenderById(const std::string& sender_id) const
751 RTC_RUN_ON(signaling_thread());
Steve Anton4171afb2017-11-20 10:20:22 -0800752
753 // Return the RtpReceiver with the given id, or null if none exists.
754 rtc::scoped_refptr<RtpReceiverProxyWithInternal<RtpReceiverInternal>>
Karl Wiberga58e1692019-03-26 13:33:43 +0100755 FindReceiverById(const std::string& receiver_id) const
756 RTC_RUN_ON(signaling_thread());
Steve Anton4171afb2017-11-20 10:20:22 -0800757
758 std::vector<RtpSenderInfo>* GetRemoteSenderInfos(
759 cricket::MediaType media_type);
760 std::vector<RtpSenderInfo>* GetLocalSenderInfos(
761 cricket::MediaType media_type);
762 const RtpSenderInfo* FindSenderInfo(const std::vector<RtpSenderInfo>& infos,
Emircan Uysalerbc609ea2018-03-27 21:57:18 +0000763 const std::string& stream_id,
Steve Anton4171afb2017-11-20 10:20:22 -0800764 const std::string sender_id) const;
deadbeefab9b2d12015-10-14 11:33:11 -0700765
766 // Returns the specified SCTP DataChannel in sctp_data_channels_,
767 // or nullptr if not found.
Karl Wiberg85a4a932019-03-22 15:29:58 +0100768 DataChannel* FindDataChannelBySid(int sid) const
769 RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700770
Taylor Brandstettera1c30352016-05-13 08:15:11 -0700771 // Called when first configuring the port allocator.
Karl Wibergfb3be392019-03-22 14:13:22 +0100772 struct InitializePortAllocatorResult {
773 bool enable_ipv6;
774 };
775 InitializePortAllocatorResult InitializePortAllocator_n(
Harald Alvestrandb2a74782018-06-28 13:54:07 +0200776 const cricket::ServerAddresses& stun_servers,
777 const std::vector<cricket::RelayServerConfig>& turn_servers,
778 const RTCConfiguration& configuration);
deadbeef293e9262017-01-11 12:28:30 -0800779 // Called when SetConfiguration is called to apply the supported subset
780 // of the configuration on the network thread.
781 bool ReconfigurePortAllocator_n(
782 const cricket::ServerAddresses& stun_servers,
783 const std::vector<cricket::RelayServerConfig>& turn_servers,
784 IceTransportsType type,
785 int candidate_pool_size,
Jonas Orelandbdcee282017-10-10 14:01:40 +0200786 bool prune_turn_ports,
Qingsi Wangdb53f8e2018-02-20 14:45:49 -0800787 webrtc::TurnCustomizer* turn_customizer,
Karl Wiberg739506e2019-04-03 11:37:28 +0200788 absl::optional<int> stun_candidate_keepalive_interval,
789 bool have_local_description);
Taylor Brandstettera1c30352016-05-13 08:15:11 -0700790
Elad Alon99c3fe52017-10-13 16:29:40 +0200791 // Starts output of an RTC event log to the given output object.
ivoc14d5dbe2016-07-04 07:06:55 -0700792 // This function should only be called from the worker thread.
Bjorn Tereliusde939432017-11-20 17:38:14 +0100793 bool StartRtcEventLog_w(std::unique_ptr<RtcEventLogOutput> output,
794 int64_t output_period_ms);
Elad Alon99c3fe52017-10-13 16:29:40 +0200795
Elad Alonacb24172017-10-06 14:32:13 +0200796 // Stops recording an RTC event log.
ivoc14d5dbe2016-07-04 07:06:55 -0700797 // This function should only be called from the worker thread.
798 void StopRtcEventLog_w();
799
Steve Anton038834f2017-07-14 15:59:59 -0700800 // Ensures the configuration doesn't have any parameters with invalid values,
801 // or values that conflict with other parameters.
802 //
803 // Returns RTCError::OK() if there are no issues.
804 RTCError ValidateConfiguration(const RTCConfiguration& config) const;
805
Steve Antonba818672017-11-06 10:21:57 -0800806 cricket::ChannelManager* channel_manager() const;
Steve Antonba818672017-11-06 10:21:57 -0800807
Steve Antonf8470812017-12-04 10:46:21 -0800808 enum class SessionError {
809 kNone, // No error.
810 kContent, // Error in BaseChannel SetLocalContent/SetRemoteContent.
811 kTransport, // Error from the underlying transport.
812 };
813
Steve Anton75737c02017-11-06 10:37:17 -0800814 // Returns the last error in the session. See the enum above for details.
Karl Wiberga58e1692019-03-26 13:33:43 +0100815 SessionError session_error() const RTC_RUN_ON(signaling_thread()) {
816 return session_error_;
817 }
Steve Antonf8470812017-12-04 10:46:21 -0800818 const std::string& session_error_desc() const { return session_error_desc_; }
Steve Anton75737c02017-11-06 10:37:17 -0800819
Amit Hilbuchdd9390c2018-11-13 16:26:05 -0800820 cricket::ChannelInterface* GetChannel(const std::string& content_name);
Steve Anton75737c02017-11-06 10:37:17 -0800821
822 // Get current SSL role used by SCTP's underlying transport.
823 bool GetSctpSslRole(rtc::SSLRole* role);
824
Steve Anton75737c02017-11-06 10:37:17 -0800825 cricket::IceConfig ParseIceConfig(
826 const PeerConnectionInterface::RTCConfiguration& config) const;
827
Steve Anton75737c02017-11-06 10:37:17 -0800828 // Implements DataChannelProviderInterface.
829 bool SendData(const cricket::SendDataParams& params,
830 const rtc::CopyOnWriteBuffer& payload,
831 cricket::SendDataResult* result) override;
832 bool ConnectDataChannel(DataChannel* webrtc_data_channel) override;
833 void DisconnectDataChannel(DataChannel* webrtc_data_channel) override;
834 void AddSctpDataStream(int sid) override;
835 void RemoveSctpDataStream(int sid) override;
836 bool ReadyToSendData() const override;
837
838 cricket::DataChannelType data_channel_type() const;
839
Bjorn Mellem175aa2e2018-11-08 11:23:22 -0800840 // Implements DataChannelSink.
841 void OnDataReceived(int channel_id,
842 DataMessageType type,
843 const rtc::CopyOnWriteBuffer& buffer) override;
844 void OnChannelClosing(int channel_id) override;
845 void OnChannelClosed(int channel_id) override;
846
Steve Anton75737c02017-11-06 10:37:17 -0800847 // Called when an RTCCertificate is generated or retrieved by
848 // WebRTCSessionDescriptionFactory. Should happen before setLocalDescription.
849 void OnCertificateReady(
850 const rtc::scoped_refptr<rtc::RTCCertificate>& certificate);
851 void OnDtlsSrtpSetupFailure(cricket::BaseChannel*, bool rtcp);
852
Steve Anton75737c02017-11-06 10:37:17 -0800853 // Non-const versions of local_description()/remote_description(), for use
854 // internally.
Karl Wiberg739506e2019-04-03 11:37:28 +0200855 SessionDescriptionInterface* mutable_local_description()
856 RTC_RUN_ON(signaling_thread()) {
Steve Anton75737c02017-11-06 10:37:17 -0800857 return pending_local_description_ ? pending_local_description_.get()
858 : current_local_description_.get();
859 }
Karl Wiberg739506e2019-04-03 11:37:28 +0200860 SessionDescriptionInterface* mutable_remote_description()
861 RTC_RUN_ON(signaling_thread()) {
Steve Anton75737c02017-11-06 10:37:17 -0800862 return pending_remote_description_ ? pending_remote_description_.get()
863 : current_remote_description_.get();
864 }
865
866 // Updates the error state, signaling if necessary.
Steve Antonf8470812017-12-04 10:46:21 -0800867 void SetSessionError(SessionError error, const std::string& error_desc);
Steve Anton75737c02017-11-06 10:37:17 -0800868
Zhi Huange830e682018-03-30 10:48:35 -0700869 RTCError UpdateSessionState(SdpType type,
870 cricket::ContentSource source,
871 const cricket::SessionDescription* description);
Steve Anton75737c02017-11-06 10:37:17 -0800872 // Push the media parts of the local or remote session description
873 // down to all of the channels.
Karl Wiberg5966c502019-02-21 23:55:09 +0100874 RTCError PushdownMediaDescription(SdpType type, cricket::ContentSource source)
875 RTC_RUN_ON(signaling_thread());
Karl Wiberg739506e2019-04-03 11:37:28 +0200876 bool PushdownSctpParameters_n(cricket::ContentSource source,
877 int local_sctp_port,
878 int remote_sctp_port);
Steve Anton75737c02017-11-06 10:37:17 -0800879
Steve Anton8a006912017-12-04 15:25:56 -0800880 RTCError PushdownTransportDescription(cricket::ContentSource source,
Steve Anton3828c062017-12-06 10:34:51 -0800881 SdpType type);
Steve Anton75737c02017-11-06 10:37:17 -0800882
883 // Returns true and the TransportInfo of the given |content_name|
884 // from |description|. Returns false if it's not available.
885 static bool GetTransportDescription(
886 const cricket::SessionDescription* description,
887 const std::string& content_name,
888 cricket::TransportDescription* info);
889
Steve Anton75737c02017-11-06 10:37:17 -0800890 // Enables media channels to allow sending of media.
Steve Antoned10bd92017-12-05 10:52:59 -0800891 // This enables media to flow on all configured audio/video channels and the
892 // RtpDataChannel.
Karl Wiberga58e1692019-03-26 13:33:43 +0100893 void EnableSending() RTC_RUN_ON(signaling_thread());
Steve Anton3fe1b152017-12-12 10:20:08 -0800894
Steve Anton8af21862017-12-15 11:20:13 -0800895 // Destroys all BaseChannels and destroys the SCTP data channel, if present.
Karl Wiberg85a4a932019-03-22 15:29:58 +0100896 void DestroyAllChannels() RTC_RUN_ON(signaling_thread());
Steve Anton3fe1b152017-12-12 10:20:08 -0800897
Steve Anton75737c02017-11-06 10:37:17 -0800898 // Returns the media index for a local ice candidate given the content name.
899 // Returns false if the local session description does not have a media
900 // content called |content_name|.
901 bool GetLocalCandidateMediaIndex(const std::string& content_name,
Karl Wiberg739506e2019-04-03 11:37:28 +0200902 int* sdp_mline_index)
903 RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -0800904 // Uses all remote candidates in |remote_desc| in this session.
905 bool UseCandidatesInSessionDescription(
Karl Wiberg744310f2019-02-14 10:18:56 +0100906 const SessionDescriptionInterface* remote_desc)
907 RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -0800908 // Uses |candidate| in this session.
Karl Wiberg744310f2019-02-14 10:18:56 +0100909 bool UseCandidate(const IceCandidateInterface* candidate)
910 RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -0800911 // Deletes the corresponding channel of contents that don't exist in |desc|.
912 // |desc| can be null. This means that all channels are deleted.
Karl Wiberg5966c502019-02-21 23:55:09 +0100913 void RemoveUnusedChannels(const cricket::SessionDescription* desc)
914 RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -0800915
916 // Allocates media channels based on the |desc|. If |desc| doesn't have
917 // the BUNDLE option, this method will disable BUNDLE in PortAllocator.
918 // This method will also delete any existing media channels before creating.
Karl Wiberg5966c502019-02-21 23:55:09 +0100919 RTCError CreateChannels(const cricket::SessionDescription& desc)
920 RTC_RUN_ON(signaling_thread());
Steve Antondcc3c022017-12-22 16:02:54 -0800921
922 // If the BUNDLE policy is max-bundle, then we know for sure that all
923 // transports will be bundled from the start. This method returns the BUNDLE
924 // group if that's the case, or null if BUNDLE will be negotiated later. An
925 // error is returned if max-bundle is specified but the session description
926 // does not have a BUNDLE group.
927 RTCErrorOr<const cricket::ContentGroup*> GetEarlyBundleGroup(
Karl Wiberg5966c502019-02-21 23:55:09 +0100928 const cricket::SessionDescription& desc) const
929 RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -0800930
931 // Helper methods to create media channels.
Karl Wiberg5966c502019-02-21 23:55:09 +0100932 cricket::VoiceChannel* CreateVoiceChannel(const std::string& mid)
933 RTC_RUN_ON(signaling_thread());
934 cricket::VideoChannel* CreateVideoChannel(const std::string& mid)
935 RTC_RUN_ON(signaling_thread());
936 bool CreateDataChannel(const std::string& mid) RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -0800937
Zhi Huange830e682018-03-30 10:48:35 -0700938 bool CreateSctpTransport_n(const std::string& mid);
Steve Anton75737c02017-11-06 10:37:17 -0800939 // For bundling.
Steve Anton75737c02017-11-06 10:37:17 -0800940 void DestroySctpTransport_n();
941 // SctpTransport signal handlers. Needed to marshal signals from the network
942 // to signaling thread.
943 void OnSctpTransportReadyToSendData_n();
944 // This may be called with "false" if the direction of the m= section causes
945 // us to tear down the SCTP connection.
946 void OnSctpTransportReadyToSendData_s(bool ready);
947 void OnSctpTransportDataReceived_n(const cricket::ReceiveDataParams& params,
948 const rtc::CopyOnWriteBuffer& payload);
949 // Beyond just firing the signal to the signaling thread, listens to SCTP
950 // CONTROL messages on unused SIDs and processes them as OPEN messages.
951 void OnSctpTransportDataReceived_s(const cricket::ReceiveDataParams& params,
952 const rtc::CopyOnWriteBuffer& payload);
Taylor Brandstettercdd05f02018-05-31 13:23:32 -0700953 void OnSctpClosingProcedureStartedRemotely_n(int sid);
954 void OnSctpClosingProcedureComplete_n(int sid);
Steve Anton75737c02017-11-06 10:37:17 -0800955
Bjorn Mellem175aa2e2018-11-08 11:23:22 -0800956 bool SetupMediaTransportForDataChannels_n(const std::string& mid)
957 RTC_RUN_ON(network_thread());
958 void OnMediaTransportStateChanged_n() RTC_RUN_ON(network_thread());
959 void TeardownMediaTransportForDataChannels_n() RTC_RUN_ON(network_thread());
960
Steve Anton75737c02017-11-06 10:37:17 -0800961 bool ValidateBundleSettings(const cricket::SessionDescription* desc);
962 bool HasRtcpMuxEnabled(const cricket::ContentInfo* content);
963 // Below methods are helper methods which verifies SDP.
Steve Anton8a006912017-12-04 15:25:56 -0800964 RTCError ValidateSessionDescription(const SessionDescriptionInterface* sdesc,
Karl Wiberg5966c502019-02-21 23:55:09 +0100965 cricket::ContentSource source)
966 RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -0800967
Steve Anton3828c062017-12-06 10:34:51 -0800968 // Check if a call to SetLocalDescription is acceptable with a session
969 // description of the given type.
970 bool ExpectSetLocalDescription(SdpType type);
971 // Check if a call to SetRemoteDescription is acceptable with a session
972 // description of the given type.
973 bool ExpectSetRemoteDescription(SdpType type);
Steve Anton75737c02017-11-06 10:37:17 -0800974 // Verifies a=setup attribute as per RFC 5763.
975 bool ValidateDtlsSetupAttribute(const cricket::SessionDescription* desc,
Steve Anton3828c062017-12-06 10:34:51 -0800976 SdpType type);
Steve Anton75737c02017-11-06 10:37:17 -0800977
978 // Returns true if we are ready to push down the remote candidate.
979 // |remote_desc| is the new remote description, or NULL if the current remote
980 // description should be used. Output |valid| is true if the candidate media
981 // index is valid.
982 bool ReadyToUseRemoteCandidate(const IceCandidateInterface* candidate,
983 const SessionDescriptionInterface* remote_desc,
Karl Wiberga58e1692019-03-26 13:33:43 +0100984 bool* valid) RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -0800985
986 // Returns true if SRTP (either using DTLS-SRTP or SDES) is required by
987 // this session.
Karl Wiberg739506e2019-04-03 11:37:28 +0200988 bool SrtpRequired() const RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -0800989
Zhi Huange830e682018-03-30 10:48:35 -0700990 // JsepTransportController signal handlers.
Karl Wiberg744310f2019-02-14 10:18:56 +0100991 void OnTransportControllerConnectionState(cricket::IceConnectionState state)
992 RTC_RUN_ON(signaling_thread());
993 void OnTransportControllerGatheringState(cricket::IceGatheringState state)
994 RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -0800995 void OnTransportControllerCandidatesGathered(
996 const std::string& transport_name,
Karl Wiberg744310f2019-02-14 10:18:56 +0100997 const std::vector<cricket::Candidate>& candidates)
998 RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -0800999 void OnTransportControllerCandidatesRemoved(
Karl Wiberg744310f2019-02-14 10:18:56 +01001000 const std::vector<cricket::Candidate>& candidates)
1001 RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -08001002 void OnTransportControllerDtlsHandshakeError(rtc::SSLHandshakeError error);
1003
Steve Antonf8470812017-12-04 10:46:21 -08001004 const char* SessionErrorToString(SessionError error) const;
Karl Wiberga58e1692019-03-26 13:33:43 +01001005 std::string GetSessionErrorMsg() RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -08001006
Steve Anton8e20f172018-03-06 10:55:04 -08001007 // Report the UMA metric SdpFormatReceived for the given remote offer.
1008 void ReportSdpFormatReceived(const SessionDescriptionInterface& remote_offer);
1009
Steve Anton0ffaaa22018-02-23 10:31:30 -08001010 // Report inferred negotiated SDP semantics from a local/remote answer to the
1011 // UMA observer.
1012 void ReportNegotiatedSdpSemantics(const SessionDescriptionInterface& answer);
1013
Steve Anton75737c02017-11-06 10:37:17 -08001014 // Invoked when TransportController connection completion is signaled.
1015 // Reports stats for all transports in use.
Karl Wiberga58e1692019-03-26 13:33:43 +01001016 void ReportTransportStats() RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -08001017
1018 // Gather the usage of IPv4/IPv6 as best connection.
1019 void ReportBestConnectionState(const cricket::TransportStats& stats);
1020
Steve Antonc7b964c2018-02-01 14:39:45 -08001021 void ReportNegotiatedCiphers(const cricket::TransportStats& stats,
Karl Wiberg739506e2019-04-03 11:37:28 +02001022 const std::set<cricket::MediaType>& media_types)
1023 RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -08001024
Harald Alvestrand8ebba742018-05-31 14:00:34 +02001025 void NoteUsageEvent(UsageEvent event);
Karl Wiberg744310f2019-02-14 10:18:56 +01001026 void ReportUsagePattern() const RTC_RUN_ON(signaling_thread());
Harald Alvestrand8ebba742018-05-31 14:00:34 +02001027
Steve Anton75737c02017-11-06 10:37:17 -08001028 void OnSentPacket_w(const rtc::SentPacket& sent_packet);
1029
Karl Wiberga58e1692019-03-26 13:33:43 +01001030 const std::string GetTransportName(const std::string& content_name)
1031 RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -08001032
Steve Anton6fec8802017-12-04 10:37:29 -08001033 // Destroys and clears the BaseChannel associated with the given transceiver,
1034 // if such channel is set.
1035 void DestroyTransceiverChannel(
1036 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
1037 transceiver);
1038
1039 // Destroys the RTP data channel and/or the SCTP data channel and clears it.
Karl Wiberg85a4a932019-03-22 15:29:58 +01001040 void DestroyDataChannel() RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -08001041
Amit Hilbuchdd9390c2018-11-13 16:26:05 -08001042 // Destroys the given ChannelInterface.
1043 // The channel cannot be accessed after this method is called.
1044 void DestroyChannelInterface(cricket::ChannelInterface* channel);
Steve Anton6fec8802017-12-04 10:37:29 -08001045
Zhi Huang365381f2018-04-13 16:44:34 -07001046 // JsepTransportController::Observer override.
Taylor Brandstettercbaa2542018-04-16 16:42:14 -07001047 //
1048 // Called by |transport_controller_| when processing transport information
1049 // from a session description, and the mapping from m= sections to transports
1050 // changed (as a result of BUNDLE negotiation, or m= sections being
1051 // rejected).
Piotr (Peter) Slatalacc8e8bb2018-11-15 08:26:19 -08001052 bool OnTransportChanged(const std::string& mid,
1053 RtpTransportInternal* rtp_transport,
Harald Alvestrandc85328f2019-02-28 07:51:00 +01001054 rtc::scoped_refptr<DtlsTransport> dtls_transport,
Karl Wibergac025892019-03-26 13:08:37 +01001055 MediaTransportInterface* media_transport) override;
Zhi Huange830e682018-03-30 10:48:35 -07001056
Harald Alvestrand7a1c7f72018-08-01 10:50:16 +02001057 // Returns the observer. Will crash on CHECK if the observer is removed.
Karl Wiberg744310f2019-02-14 10:18:56 +01001058 PeerConnectionObserver* Observer() const RTC_RUN_ON(signaling_thread());
Harald Alvestrand7a1c7f72018-08-01 10:50:16 +02001059
Benjamin Wright8c27cca2018-10-25 10:16:44 -07001060 // Returns the CryptoOptions for this PeerConnection. This will always
1061 // return the RTCConfiguration.crypto_options if set and will only default
1062 // back to the PeerConnectionFactory settings if nothing was set.
Karl Wiberg5966c502019-02-21 23:55:09 +01001063 CryptoOptions GetCryptoOptions() RTC_RUN_ON(signaling_thread());
Benjamin Wright8c27cca2018-10-25 10:16:44 -07001064
Anton Sukhanov98a462c2018-10-17 13:15:42 -07001065 // Returns rtp transport, result can not be nullptr.
Karl Wiberg2cc368f2019-04-02 11:31:56 +02001066 RtpTransportInternal* GetRtpTransport(const std::string& mid)
1067 RTC_RUN_ON(signaling_thread()) {
Anton Sukhanov98a462c2018-10-17 13:15:42 -07001068 auto rtp_transport = transport_controller_->GetRtpTransport(mid);
1069 RTC_DCHECK(rtp_transport);
1070 return rtp_transport;
1071 }
1072
1073 // Returns media transport, if PeerConnection was created with configuration
1074 // to use media transport. Otherwise returns nullptr.
Karl Wiberg5966c502019-02-21 23:55:09 +01001075 MediaTransportInterface* GetMediaTransport(const std::string& mid)
1076 RTC_RUN_ON(signaling_thread()) {
Anton Sukhanov98a462c2018-10-17 13:15:42 -07001077 auto media_transport = transport_controller_->GetMediaTransport(mid);
Bjorn Mellema9bbd862018-11-02 09:07:48 -07001078 RTC_DCHECK((configuration_.use_media_transport ||
1079 configuration_.use_media_transport_for_data_channels) ==
Piotr (Peter) Slatala97fc11f2018-10-18 12:57:59 -07001080 (media_transport != nullptr))
1081 << "configuration_.use_media_transport="
1082 << configuration_.use_media_transport
Bjorn Mellema9bbd862018-11-02 09:07:48 -07001083 << ", configuration_.use_media_transport_for_data_channels="
1084 << configuration_.use_media_transport_for_data_channels
Piotr (Peter) Slatala97fc11f2018-10-18 12:57:59 -07001085 << ", (media_transport != nullptr)=" << (media_transport != nullptr);
Anton Sukhanov98a462c2018-10-17 13:15:42 -07001086 return media_transport;
1087 }
1088
Guido Urdaneta70c2db12019-04-16 12:24:14 +02001089 void UpdateNegotiationNeeded();
1090 bool CheckIfNegotiationIsNeeded();
1091
Karl Wiberg106d92d2019-02-14 10:17:47 +01001092 sigslot::signal1<DataChannel*> SignalDataChannelCreated_
1093 RTC_GUARDED_BY(signaling_thread());
Steve Anton2d8609c2018-01-23 16:38:46 -08001094
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001095 // Storing the factory as a scoped reference pointer ensures that the memory
1096 // in the PeerConnectionFactoryImpl remains available as long as the
1097 // PeerConnection is running. It is passed to PeerConnection as a raw pointer.
1098 // However, since the reference counting is done in the
deadbeefab9b2d12015-10-14 11:33:11 -07001099 // PeerConnectionFactoryInterface all instances created using the raw pointer
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001100 // will refer to the same reference count.
Karl Wiberg744310f2019-02-14 10:18:56 +01001101 const rtc::scoped_refptr<PeerConnectionFactory> factory_;
1102 PeerConnectionObserver* observer_ RTC_GUARDED_BY(signaling_thread()) =
1103 nullptr;
terelius33860252017-05-12 23:37:18 -07001104
1105 // The EventLog needs to outlive |call_| (and any other object that uses it).
Karl Wibergb03ab712019-02-14 11:59:57 +01001106 std::unique_ptr<RtcEventLog> event_log_ RTC_GUARDED_BY(worker_thread());
1107
1108 // Points to the same thing as `event_log_`. Since it's const, we may read the
1109 // pointer (but not touch the object) from any thread.
1110 RtcEventLog* const event_log_ptr_ RTC_PT_GUARDED_BY(worker_thread());
terelius33860252017-05-12 23:37:18 -07001111
Karl Wiberg8d2e2282019-02-17 13:00:07 +01001112 SignalingState signaling_state_ RTC_GUARDED_BY(signaling_thread()) = kStable;
1113 IceConnectionState ice_connection_state_ RTC_GUARDED_BY(signaling_thread()) =
1114 kIceConnectionNew;
1115 PeerConnectionInterface::IceConnectionState standardized_ice_connection_state_
1116 RTC_GUARDED_BY(signaling_thread()) = kIceConnectionNew;
1117 PeerConnectionInterface::PeerConnectionState connection_state_
1118 RTC_GUARDED_BY(signaling_thread()) = PeerConnectionState::kNew;
Jonas Olsson635474e2018-10-18 15:58:17 +02001119
Karl Wiberg8d2e2282019-02-17 13:00:07 +01001120 IceGatheringState ice_gathering_state_ RTC_GUARDED_BY(signaling_thread()) =
1121 kIceGatheringNew;
Karl Wiberg5966c502019-02-21 23:55:09 +01001122 PeerConnectionInterface::RTCConfiguration configuration_
1123 RTC_GUARDED_BY(signaling_thread());
1124
1125 // Cache configuration_.use_media_transport so that we can access it from
1126 // other threads.
1127 // TODO(bugs.webrtc.org/9987): Caching just this bool and allowing the data
1128 // it's derived from to change is not necessarily sound. Stop doing it.
1129 rtc::RaceChecker use_media_transport_race_checker_;
1130 bool use_media_transport_ RTC_GUARDED_BY(use_media_transport_race_checker_) =
1131 configuration_.use_media_transport;
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001132
Zach Steine20867f2018-08-02 13:20:15 -07001133 // TODO(zstein): |async_resolver_factory_| can currently be nullptr if it
1134 // is not injected. It should be required once chromium supplies it.
Karl Wibergfb3be392019-03-22 14:13:22 +01001135 std::unique_ptr<AsyncResolverFactory> async_resolver_factory_
1136 RTC_GUARDED_BY(signaling_thread());
1137 std::unique_ptr<cricket::PortAllocator>
1138 port_allocator_; // TODO(bugs.webrtc.org/9987): Accessed on both
1139 // signaling and network thread.
1140 std::unique_ptr<rtc::SSLCertificateVerifier>
1141 tls_cert_verifier_; // TODO(bugs.webrtc.org/9987): Accessed on both
1142 // signaling and network thread.
deadbeefab9b2d12015-10-14 11:33:11 -07001143
zhihuang8f65cdf2016-05-06 18:40:30 -07001144 // One PeerConnection has only one RTCP CNAME.
1145 // https://tools.ietf.org/html/draft-ietf-rtcweb-rtp-usage-26#section-4.9
Karl Wibergfb3be392019-03-22 14:13:22 +01001146 const std::string rtcp_cname_;
zhihuang8f65cdf2016-05-06 18:40:30 -07001147
deadbeefab9b2d12015-10-14 11:33:11 -07001148 // Streams added via AddStream.
Karl Wiberg1e1e1022019-03-22 14:27:22 +01001149 const rtc::scoped_refptr<StreamCollection> local_streams_
1150 RTC_GUARDED_BY(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -07001151 // Streams created as a result of SetRemoteDescription.
Karl Wiberg1e1e1022019-03-22 14:27:22 +01001152 const rtc::scoped_refptr<StreamCollection> remote_streams_
1153 RTC_GUARDED_BY(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -07001154
Karl Wiberg1e1e1022019-03-22 14:27:22 +01001155 std::vector<std::unique_ptr<MediaStreamObserver>> stream_observers_
1156 RTC_GUARDED_BY(signaling_thread());
deadbeefeb459812015-12-15 19:24:43 -08001157
Steve Anton4171afb2017-11-20 10:20:22 -08001158 // These lists store sender info seen in local/remote descriptions.
Karl Wibergc70999e2019-03-22 15:14:27 +01001159 std::vector<RtpSenderInfo> remote_audio_sender_infos_
1160 RTC_GUARDED_BY(signaling_thread());
1161 std::vector<RtpSenderInfo> remote_video_sender_infos_
1162 RTC_GUARDED_BY(signaling_thread());
1163 std::vector<RtpSenderInfo> local_audio_sender_infos_
1164 RTC_GUARDED_BY(signaling_thread());
1165 std::vector<RtpSenderInfo> local_video_sender_infos_
1166 RTC_GUARDED_BY(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -07001167
Karl Wiberg85a4a932019-03-22 15:29:58 +01001168 SctpSidAllocator sid_allocator_ RTC_GUARDED_BY(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -07001169 // label -> DataChannel
Karl Wiberg85a4a932019-03-22 15:29:58 +01001170 std::map<std::string, rtc::scoped_refptr<DataChannel>> rtp_data_channels_
1171 RTC_GUARDED_BY(signaling_thread());
1172 std::vector<rtc::scoped_refptr<DataChannel>> sctp_data_channels_
1173 RTC_GUARDED_BY(signaling_thread());
1174 std::vector<rtc::scoped_refptr<DataChannel>> sctp_data_channels_to_free_
1175 RTC_GUARDED_BY(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -07001176
Karl Wiberg85a4a932019-03-22 15:29:58 +01001177 bool remote_peer_supports_msid_ RTC_GUARDED_BY(signaling_thread()) = false;
deadbeef70ab1a12015-09-28 16:53:55 -07001178
Karl Wibergac025892019-03-26 13:08:37 +01001179 // The unique_ptr belongs to the worker thread, but the Call object manages
1180 // its own thread safety.
Karl Wiberg6cab5c82019-03-26 09:57:01 +01001181 std::unique_ptr<Call> call_ RTC_GUARDED_BY(worker_thread());
1182
1183 // Points to the same thing as `call_`. Since it's const, we may read the
Karl Wibergac025892019-03-26 13:08:37 +01001184 // pointer from any thread.
1185 Call* const call_ptr_;
Karl Wiberg6cab5c82019-03-26 09:57:01 +01001186
1187 std::unique_ptr<StatsCollector> stats_
1188 RTC_GUARDED_BY(signaling_thread()); // A pointer is passed to senders_
1189 rtc::scoped_refptr<RTCStatsCollector> stats_collector_
1190 RTC_GUARDED_BY(signaling_thread());
terelius33860252017-05-12 23:37:18 -07001191
deadbeefa601f5c2016-06-06 14:27:39 -07001192 std::vector<
Steve Anton4171afb2017-11-20 10:20:22 -08001193 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>>
Karl Wiberg2cc368f2019-04-02 11:31:56 +02001194 transceivers_; // TODO(bugs.webrtc.org/9987): Accessed on both signaling
1195 // and network thread.
1196
Henrik Boström5b147782018-12-04 11:25:05 +01001197 // In Unified Plan, if we encounter remote SDP that does not contain an a=msid
1198 // line we create and use a stream with a random ID for our receivers. This is
1199 // to support legacy endpoints that do not support the a=msid attribute (as
1200 // opposed to streamless tracks with "a=msid:-").
Karl Wiberga58e1692019-03-26 13:33:43 +01001201 rtc::scoped_refptr<MediaStreamInterface> missing_msid_default_stream_
1202 RTC_GUARDED_BY(signaling_thread());
Amit Hilbuchae3df542019-01-07 12:13:08 -08001203 // MIDs will be generated using this generator which will keep track of
1204 // all the MIDs that have been seen over the life of the PeerConnection.
Karl Wiberga58e1692019-03-26 13:33:43 +01001205 rtc::UniqueStringGenerator mid_generator_ RTC_GUARDED_BY(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -08001206
Karl Wiberga58e1692019-03-26 13:33:43 +01001207 SessionError session_error_ RTC_GUARDED_BY(signaling_thread()) =
1208 SessionError::kNone;
1209 std::string session_error_desc_ RTC_GUARDED_BY(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -08001210
Karl Wiberga58e1692019-03-26 13:33:43 +01001211 std::string session_id_ RTC_GUARDED_BY(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -08001212
Karl Wiberg2cc368f2019-04-02 11:31:56 +02001213 std::unique_ptr<JsepTransportController>
1214 transport_controller_; // TODO(bugs.webrtc.org/9987): Accessed on both
1215 // signaling and network thread.
1216 std::unique_ptr<cricket::SctpTransportInternalFactory>
1217 sctp_factory_; // TODO(bugs.webrtc.org/9987): Accessed on both
1218 // signaling and network thread.
Steve Anton75737c02017-11-06 10:37:17 -08001219 // |rtp_data_channel_| is used if in RTP data channel mode, |sctp_transport_|
1220 // when using SCTP.
Karl Wiberg2cc368f2019-04-02 11:31:56 +02001221 cricket::RtpDataChannel* rtp_data_channel_ =
1222 nullptr; // TODO(bugs.webrtc.org/9987): Accessed on both
1223 // signaling and some other thread.
Steve Anton75737c02017-11-06 10:37:17 -08001224
Harald Alvestrandc85328f2019-02-28 07:51:00 +01001225 cricket::SctpTransportInternal* cricket_sctp_transport() {
1226 return sctp_transport_->internal();
1227 }
Karl Wiberg2cc368f2019-04-02 11:31:56 +02001228 rtc::scoped_refptr<SctpTransport>
1229 sctp_transport_; // TODO(bugs.webrtc.org/9987): Accessed on both
1230 // signaling and network thread.
1231
Zhi Huange830e682018-03-30 10:48:35 -07001232 // |sctp_mid_| is the content name (MID) in SDP.
Karl Wiberg2cc368f2019-04-02 11:31:56 +02001233 absl::optional<std::string>
1234 sctp_mid_; // TODO(bugs.webrtc.org/9987): Accessed on both signaling
1235 // and network thread.
1236
Steve Anton75737c02017-11-06 10:37:17 -08001237 // Value cached on signaling thread. Only updated when SctpReadyToSendData
1238 // fires on the signaling thread.
Karl Wiberg2cc368f2019-04-02 11:31:56 +02001239 bool sctp_ready_to_send_data_ RTC_GUARDED_BY(signaling_thread()) = false;
1240
Steve Anton75737c02017-11-06 10:37:17 -08001241 // Same as signals provided by SctpTransport, but these are guaranteed to
1242 // fire on the signaling thread, whereas SctpTransport fires on the networking
1243 // thread.
1244 // |sctp_invoker_| is used so that any signals queued on the signaling thread
1245 // from the network thread are immediately discarded if the SctpTransport is
1246 // destroyed (due to m= section being rejected).
1247 // TODO(deadbeef): Use a proxy object to ensure that method calls/signals
1248 // are marshalled to the right thread. Could almost use proxy.h for this,
1249 // but it doesn't have a mechanism for marshalling sigslot::signals
Karl Wiberg7a651c6e2019-04-02 13:00:46 +02001250 std::unique_ptr<rtc::AsyncInvoker> sctp_invoker_
1251 RTC_GUARDED_BY(network_thread());
1252 sigslot::signal1<bool> SignalSctpReadyToSendData
1253 RTC_GUARDED_BY(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -08001254 sigslot::signal2<const cricket::ReceiveDataParams&,
1255 const rtc::CopyOnWriteBuffer&>
Karl Wiberg7a651c6e2019-04-02 13:00:46 +02001256 SignalSctpDataReceived RTC_GUARDED_BY(signaling_thread());
1257 sigslot::signal1<int> SignalSctpClosingProcedureStartedRemotely
1258 RTC_GUARDED_BY(signaling_thread());
1259 sigslot::signal1<int> SignalSctpClosingProcedureComplete
1260 RTC_GUARDED_BY(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -08001261
Bjorn Mellem175aa2e2018-11-08 11:23:22 -08001262 // Whether this peer is the caller. Set when the local description is applied.
1263 absl::optional<bool> is_caller_ RTC_GUARDED_BY(signaling_thread());
1264
1265 // Content name (MID) for media transport data channels in SDP.
Karl Wibergd9bf7202019-04-02 19:36:24 +02001266 absl::optional<std::string>
1267 media_transport_data_mid_; // TODO(bugs.webrtc.org/9987): Accessed on
1268 // both signaling and network thread.
Bjorn Mellem175aa2e2018-11-08 11:23:22 -08001269
1270 // Media transport used for data channels. Thread-safe.
Karl Wibergd9bf7202019-04-02 19:36:24 +02001271 MediaTransportInterface* media_transport_ =
1272 nullptr; // TODO(bugs.webrtc.org/9987): Object is thread safe, but
1273 // pointer accessed on both signaling and network thread.
Bjorn Mellem175aa2e2018-11-08 11:23:22 -08001274
1275 // Cached value of whether the media transport is ready to send.
1276 bool media_transport_ready_to_send_data_ RTC_GUARDED_BY(signaling_thread()) =
1277 false;
1278
1279 // Used to invoke media transport signals on the signaling thread.
Karl Wiberg739506e2019-04-03 11:37:28 +02001280 std::unique_ptr<rtc::AsyncInvoker> media_transport_invoker_
1281 RTC_GUARDED_BY(network_thread());
Bjorn Mellem175aa2e2018-11-08 11:23:22 -08001282
1283 // Identical to the signals for SCTP, but from media transport:
1284 sigslot::signal1<bool> SignalMediaTransportWritable_s
1285 RTC_GUARDED_BY(signaling_thread());
1286 sigslot::signal2<const cricket::ReceiveDataParams&,
1287 const rtc::CopyOnWriteBuffer&>
1288 SignalMediaTransportReceivedData_s RTC_GUARDED_BY(signaling_thread());
1289 sigslot::signal1<int> SignalMediaTransportChannelClosing_s
1290 RTC_GUARDED_BY(signaling_thread());
1291 sigslot::signal1<int> SignalMediaTransportChannelClosed_s
1292 RTC_GUARDED_BY(signaling_thread());
1293
Karl Wiberg739506e2019-04-03 11:37:28 +02001294 std::unique_ptr<SessionDescriptionInterface> current_local_description_
1295 RTC_GUARDED_BY(signaling_thread());
1296 std::unique_ptr<SessionDescriptionInterface> pending_local_description_
1297 RTC_GUARDED_BY(signaling_thread());
1298 std::unique_ptr<SessionDescriptionInterface> current_remote_description_
1299 RTC_GUARDED_BY(signaling_thread());
1300 std::unique_ptr<SessionDescriptionInterface> pending_remote_description_
1301 RTC_GUARDED_BY(signaling_thread());
1302 bool dtls_enabled_ RTC_GUARDED_BY(signaling_thread()) = false;
Steve Anton75737c02017-11-06 10:37:17 -08001303 // Specifies which kind of data channel is allowed. This is controlled
1304 // by the chrome command-line flag and constraints:
1305 // 1. If chrome command-line switch 'enable-sctp-data-channels' is enabled,
1306 // constraint kEnableDtlsSrtp is true, and constaint kEnableRtpDataChannels is
1307 // not set or false, SCTP is allowed (DCT_SCTP);
1308 // 2. If constraint kEnableRtpDataChannels is true, RTP is allowed (DCT_RTP);
1309 // 3. If both 1&2 are false, data channel is not allowed (DCT_NONE).
Karl Wibergf73f7d62019-04-08 15:36:53 +02001310 cricket::DataChannelType data_channel_type_ =
1311 cricket::DCT_NONE; // TODO(bugs.webrtc.org/9987): Accessed on both
1312 // signaling and network thread.
Steve Anton75737c02017-11-06 10:37:17 -08001313
Karl Wibergf73f7d62019-04-08 15:36:53 +02001314 // List of content names for which the remote side triggered an ICE restart.
1315 std::set<std::string> pending_ice_restarts_
1316 RTC_GUARDED_BY(signaling_thread());
1317
1318 std::unique_ptr<WebRtcSessionDescriptionFactory> webrtc_session_desc_factory_
1319 RTC_GUARDED_BY(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -08001320
1321 // Member variables for caching global options.
Karl Wibergf73f7d62019-04-08 15:36:53 +02001322 cricket::AudioOptions audio_options_ RTC_GUARDED_BY(signaling_thread());
1323 cricket::VideoOptions video_options_ RTC_GUARDED_BY(signaling_thread());
Harald Alvestrand8ebba742018-05-31 14:00:34 +02001324
Karl Wibergf73f7d62019-04-08 15:36:53 +02001325 int usage_event_accumulator_ RTC_GUARDED_BY(signaling_thread()) = 0;
1326 bool return_histogram_very_quickly_ RTC_GUARDED_BY(signaling_thread()) =
1327 false;
Amit Hilbuchbcd39d42019-01-25 17:13:56 -08001328
1329 // This object should be used to generate any SSRC that is not explicitly
1330 // specified by the user (or by the remote party).
1331 // The generator is not used directly, instead it is passed on to the
1332 // channel manager and the session description factory.
Karl Wibergf73f7d62019-04-08 15:36:53 +02001333 rtc::UniqueRandomIdGenerator ssrc_generator_
1334 RTC_GUARDED_BY(signaling_thread());
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_