blob: e88fab82a78841f46e42fcb4a41beef20e2e1f66 [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
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020011#ifndef PC_PEERCONNECTION_H_
12#define PC_PEERCONNECTION_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
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020020#include "api/peerconnectioninterface.h"
Jonas Orelandbdcee282017-10-10 14:01:40 +020021#include "api/turncustomizer.h"
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020022#include "pc/iceserverparsing.h"
23#include "pc/peerconnectionfactory.h"
Steve Anton2d8609c2018-01-23 16:38:46 -080024#include "pc/peerconnectioninternal.h"
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020025#include "pc/rtcstatscollector.h"
Steve Anton4171afb2017-11-20 10:20:22 -080026#include "pc/rtptransceiver.h"
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020027#include "pc/statscollector.h"
28#include "pc/streamcollection.h"
Steve Anton75737c02017-11-06 10:37:17 -080029#include "pc/webrtcsessiondescriptionfactory.h"
henrike@webrtc.org28e20752013-07-10 00:45:36 +000030
31namespace webrtc {
henrike@webrtc.org28e20752013-07-10 00:45:36 +000032
deadbeefeb459812015-12-15 19:24:43 -080033class MediaStreamObserver;
perkjf0dcfe22016-03-10 18:32:00 +010034class VideoRtpReceiver;
skvlad11a9cbf2016-10-07 11:53:05 -070035class RtcEventLog;
deadbeefab9b2d12015-10-14 11:33:11 -070036
Steve Anton75737c02017-11-06 10:37:17 -080037// PeerConnection is the implementation of the PeerConnection object as defined
38// by the PeerConnectionInterface API surface.
39// The class currently is solely responsible for the following:
40// - Managing the session state machine (signaling state).
41// - Creating and initializing lower-level objects, like PortAllocator and
42// BaseChannels.
43// - Owning and managing the life cycle of the RtpSender/RtpReceiver and track
44// objects.
45// - Tracking the current and pending local/remote session descriptions.
46// The class currently is jointly responsible for the following:
47// - Parsing and interpreting SDP.
48// - Generating offers and answers based on the current state.
49// - The ICE state machine.
50// - Generating stats.
Steve Anton2d8609c2018-01-23 16:38:46 -080051class PeerConnection : public PeerConnectionInternal,
Steve Anton75737c02017-11-06 10:37:17 -080052 public DataChannelProviderInterface,
buildbot@webrtc.orgd4e598d2014-07-29 17:36:52 +000053 public rtc::MessageHandler,
henrike@webrtc.org28e20752013-07-10 00:45:36 +000054 public sigslot::has_slots<> {
55 public:
zhihuang38ede132017-06-15 12:52:32 -070056 explicit PeerConnection(PeerConnectionFactory* factory,
57 std::unique_ptr<RtcEventLog> event_log,
58 std::unique_ptr<Call> call);
henrike@webrtc.org28e20752013-07-10 00:45:36 +000059
deadbeef653b8e02015-11-11 12:55:10 -080060 bool Initialize(
61 const PeerConnectionInterface::RTCConfiguration& configuration,
kwibergd1fe2812016-04-27 06:47:29 -070062 std::unique_ptr<cricket::PortAllocator> allocator,
Henrik Boströmd03c23b2016-06-01 11:44:18 +020063 std::unique_ptr<rtc::RTCCertificateGeneratorInterface> cert_generator,
deadbeef653b8e02015-11-11 12:55:10 -080064 PeerConnectionObserver* observer);
65
deadbeefa67696b2015-09-29 11:56:26 -070066 rtc::scoped_refptr<StreamCollectionInterface> local_streams() override;
67 rtc::scoped_refptr<StreamCollectionInterface> remote_streams() override;
68 bool AddStream(MediaStreamInterface* local_stream) override;
69 void RemoveStream(MediaStreamInterface* local_stream) override;
henrike@webrtc.org28e20752013-07-10 00:45:36 +000070
Steve Anton2d6c76a2018-01-05 17:10:52 -080071 RTCErrorOr<rtc::scoped_refptr<RtpSenderInterface>> AddTrack(
Steve Antonf9381f02017-12-14 10:23:57 -080072 rtc::scoped_refptr<MediaStreamTrackInterface> track,
73 const std::vector<std::string>& stream_labels) override;
deadbeefe1f9d832016-01-14 15:35:42 -080074 rtc::scoped_refptr<RtpSenderInterface> AddTrack(
75 MediaStreamTrackInterface* track,
76 std::vector<MediaStreamInterface*> streams) override;
77 bool RemoveTrack(RtpSenderInterface* sender) override;
78
Steve Anton9158ef62017-11-27 13:01:52 -080079 RTCErrorOr<rtc::scoped_refptr<RtpTransceiverInterface>> AddTransceiver(
80 rtc::scoped_refptr<MediaStreamTrackInterface> track) override;
81 RTCErrorOr<rtc::scoped_refptr<RtpTransceiverInterface>> AddTransceiver(
82 rtc::scoped_refptr<MediaStreamTrackInterface> track,
83 const RtpTransceiverInit& init) override;
84 RTCErrorOr<rtc::scoped_refptr<RtpTransceiverInterface>> AddTransceiver(
85 cricket::MediaType media_type) override;
86 RTCErrorOr<rtc::scoped_refptr<RtpTransceiverInterface>> AddTransceiver(
87 cricket::MediaType media_type,
88 const RtpTransceiverInit& init) override;
89
Steve Anton8c0f7a72017-10-03 10:03:10 -070090 // Gets the DTLS SSL certificate associated with the audio transport on the
91 // remote side. This will become populated once the DTLS connection with the
92 // peer has been completed, as indicated by the ICE connection state
93 // transitioning to kIceConnectionCompleted.
94 // Note that this will be removed once we implement RTCDtlsTransport which
95 // has standardized method for getting this information.
96 // See https://www.w3.org/TR/webrtc/#rtcdtlstransport-interface
97 std::unique_ptr<rtc::SSLCertificate> GetRemoteAudioSSLCertificate();
98
deadbeefa67696b2015-09-29 11:56:26 -070099 rtc::scoped_refptr<DtmfSenderInterface> CreateDtmfSender(
100 AudioTrackInterface* track) override;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000101
deadbeeffac06552015-11-25 11:26:01 -0800102 rtc::scoped_refptr<RtpSenderInterface> CreateSender(
deadbeefbd7d8f72015-12-18 16:58:44 -0800103 const std::string& kind,
104 const std::string& stream_id) override;
deadbeeffac06552015-11-25 11:26:01 -0800105
deadbeef70ab1a12015-09-28 16:53:55 -0700106 std::vector<rtc::scoped_refptr<RtpSenderInterface>> GetSenders()
107 const override;
108 std::vector<rtc::scoped_refptr<RtpReceiverInterface>> GetReceivers()
109 const override;
Steve Anton9158ef62017-11-27 13:01:52 -0800110 std::vector<rtc::scoped_refptr<RtpTransceiverInterface>> GetTransceivers()
111 const override;
deadbeef70ab1a12015-09-28 16:53:55 -0700112
deadbeefa67696b2015-09-29 11:56:26 -0700113 rtc::scoped_refptr<DataChannelInterface> CreateDataChannel(
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000114 const std::string& label,
deadbeefa67696b2015-09-29 11:56:26 -0700115 const DataChannelInit* config) override;
116 bool GetStats(StatsObserver* observer,
117 webrtc::MediaStreamTrackInterface* track,
118 StatsOutputLevel level) override;
hbos74e1a4f2016-09-15 23:33:01 -0700119 void GetStats(RTCStatsCollectorCallback* callback) override;
Harald Alvestrand89061872018-01-02 14:08:34 +0100120 void ClearStatsCache() override;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000121
deadbeefa67696b2015-09-29 11:56:26 -0700122 SignalingState signaling_state() override;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000123
deadbeefa67696b2015-09-29 11:56:26 -0700124 IceConnectionState ice_connection_state() override;
125 IceGatheringState ice_gathering_state() override;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000126
deadbeefa67696b2015-09-29 11:56:26 -0700127 const SessionDescriptionInterface* local_description() const override;
128 const SessionDescriptionInterface* remote_description() const override;
deadbeeffe4a8a42016-12-20 17:56:17 -0800129 const SessionDescriptionInterface* current_local_description() const override;
130 const SessionDescriptionInterface* current_remote_description()
131 const override;
132 const SessionDescriptionInterface* pending_local_description() const override;
133 const SessionDescriptionInterface* pending_remote_description()
134 const override;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000135
136 // JSEP01
htaa2a49d92016-03-04 02:51:39 -0800137 // Deprecated, use version without constraints.
deadbeefa67696b2015-09-29 11:56:26 -0700138 void CreateOffer(CreateSessionDescriptionObserver* observer,
139 const MediaConstraintsInterface* constraints) override;
140 void CreateOffer(CreateSessionDescriptionObserver* observer,
141 const RTCOfferAnswerOptions& options) override;
htaa2a49d92016-03-04 02:51:39 -0800142 // Deprecated, use version without constraints.
deadbeefa67696b2015-09-29 11:56:26 -0700143 void CreateAnswer(CreateSessionDescriptionObserver* observer,
144 const MediaConstraintsInterface* constraints) override;
htaa2a49d92016-03-04 02:51:39 -0800145 void CreateAnswer(CreateSessionDescriptionObserver* observer,
146 const RTCOfferAnswerOptions& options) override;
deadbeefa67696b2015-09-29 11:56:26 -0700147 void SetLocalDescription(SetSessionDescriptionObserver* observer,
148 SessionDescriptionInterface* desc) override;
Henrik Boströma4ecf552017-11-23 14:17:07 +0000149 void SetRemoteDescription(SetSessionDescriptionObserver* observer,
150 SessionDescriptionInterface* desc) override;
Henrik Boström31638672017-11-23 17:48:32 +0100151 void SetRemoteDescription(
152 std::unique_ptr<SessionDescriptionInterface> desc,
153 rtc::scoped_refptr<SetRemoteDescriptionObserverInterface> observer)
154 override;
deadbeef46c73892016-11-16 19:42:04 -0800155 PeerConnectionInterface::RTCConfiguration GetConfiguration() override;
deadbeefa67696b2015-09-29 11:56:26 -0700156 bool SetConfiguration(
deadbeef293e9262017-01-11 12:28:30 -0800157 const PeerConnectionInterface::RTCConfiguration& configuration,
158 RTCError* error) override;
159 bool SetConfiguration(
160 const PeerConnectionInterface::RTCConfiguration& configuration) override {
161 return SetConfiguration(configuration, nullptr);
162 }
deadbeefa67696b2015-09-29 11:56:26 -0700163 bool AddIceCandidate(const IceCandidateInterface* candidate) override;
Honghai Zhang7fb69db2016-03-14 11:59:18 -0700164 bool RemoveIceCandidates(
165 const std::vector<cricket::Candidate>& candidates) override;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000166
deadbeefa67696b2015-09-29 11:56:26 -0700167 void RegisterUMAObserver(UMAObserver* observer) override;
buildbot@webrtc.org1567b8c2014-05-08 19:54:16 +0000168
zstein4b979802017-06-02 14:37:37 -0700169 RTCError SetBitrate(const BitrateParameters& bitrate) override;
170
Alex Narest78609d52017-10-20 10:37:47 +0200171 void SetBitrateAllocationStrategy(
172 std::unique_ptr<rtc::BitrateAllocationStrategy>
173 bitrate_allocation_strategy) override;
174
henrika5f6bf242017-11-01 11:06:56 +0100175 void SetAudioPlayout(bool playout) override;
176 void SetAudioRecording(bool recording) override;
177
Elad Alon99c3fe52017-10-13 16:29:40 +0200178 RTC_DEPRECATED bool StartRtcEventLog(rtc::PlatformFile file,
179 int64_t max_size_bytes) override;
Bjorn Tereliusde939432017-11-20 17:38:14 +0100180 bool StartRtcEventLog(std::unique_ptr<RtcEventLogOutput> output,
181 int64_t output_period_ms) override;
ivoc14d5dbe2016-07-04 07:06:55 -0700182 void StopRtcEventLog() override;
183
deadbeefa67696b2015-09-29 11:56:26 -0700184 void Close() override;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000185
Steve Anton2d8609c2018-01-23 16:38:46 -0800186 // PeerConnectionInternal implementation.
187 rtc::Thread* network_thread() const override {
188 return factory_->network_thread();
189 }
190 rtc::Thread* worker_thread() const override {
191 return factory_->worker_thread();
192 }
193 rtc::Thread* signaling_thread() const override {
194 return factory_->signaling_thread();
perkjd61bf802016-03-24 03:16:19 -0700195 }
deadbeefab9b2d12015-10-14 11:33:11 -0700196
Steve Antonbe5e2082018-01-24 15:29:17 -0800197 std::string session_id() const override { return session_id_; }
Steve Anton75737c02017-11-06 10:37:17 -0800198
Steve Anton2d8609c2018-01-23 16:38:46 -0800199 bool initial_offerer() const override {
200 return initial_offerer_ && *initial_offerer_;
201 }
Steve Anton75737c02017-11-06 10:37:17 -0800202
Steve Anton2d8609c2018-01-23 16:38:46 -0800203 cricket::VoiceChannel* voice_channel() const override {
Steve Anton3fe1b152017-12-12 10:20:08 -0800204 if (IsUnifiedPlan()) {
Steve Anton2d8609c2018-01-23 16:38:46 -0800205 // TODO(bugs.webrtc.org/8764): Change stats collection to work with
206 // transceivers.
Steve Anton3fe1b152017-12-12 10:20:08 -0800207 return nullptr;
208 }
Steve Anton4171afb2017-11-20 10:20:22 -0800209 return static_cast<cricket::VoiceChannel*>(
210 GetAudioTransceiver()->internal()->channel());
Steve Anton978b8762017-09-29 12:15:02 -0700211 }
Steve Anton2d8609c2018-01-23 16:38:46 -0800212
213 cricket::VideoChannel* video_channel() const override {
Steve Anton3fe1b152017-12-12 10:20:08 -0800214 if (IsUnifiedPlan()) {
Steve Anton2d8609c2018-01-23 16:38:46 -0800215 // TODO(bugs.webrtc.org/8764): Change stats collection to work with
216 // transceivers.
Steve Anton3fe1b152017-12-12 10:20:08 -0800217 return nullptr;
218 }
Steve Anton4171afb2017-11-20 10:20:22 -0800219 return static_cast<cricket::VideoChannel*>(
220 GetVideoTransceiver()->internal()->channel());
Steve Antond5585ca2017-10-23 14:49:26 -0700221 }
Steve Anton978b8762017-09-29 12:15:02 -0700222
Steve Anton2d8609c2018-01-23 16:38:46 -0800223 std::vector<
224 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>>
225 GetTransceiversForTesting() const override {
226 return transceivers_;
227 }
228
229 bool GetLocalTrackIdBySsrc(uint32_t ssrc, std::string* track_id) override;
230 bool GetRemoteTrackIdBySsrc(uint32_t ssrc, std::string* track_id) override;
231
232 sigslot::signal1<DataChannel*>& SignalDataChannelCreated() override {
233 return SignalDataChannelCreated_;
234 }
235
236 cricket::RtpDataChannel* rtp_data_channel() const override {
Steve Anton75737c02017-11-06 10:37:17 -0800237 return rtp_data_channel_;
Steve Anton978b8762017-09-29 12:15:02 -0700238 }
Steve Anton2d8609c2018-01-23 16:38:46 -0800239
Steve Antonbe5e2082018-01-24 15:29:17 -0800240 std::vector<rtc::scoped_refptr<DataChannel>> sctp_data_channels()
Steve Anton2d8609c2018-01-23 16:38:46 -0800241 const override {
242 return sctp_data_channels_;
243 }
244
245 rtc::Optional<std::string> sctp_content_name() const override {
Steve Anton75737c02017-11-06 10:37:17 -0800246 return sctp_content_name_;
247 }
Steve Anton2d8609c2018-01-23 16:38:46 -0800248
249 rtc::Optional<std::string> sctp_transport_name() const override {
Steve Anton75737c02017-11-06 10:37:17 -0800250 return sctp_transport_name_;
251 }
252
Steve Anton2d8609c2018-01-23 16:38:46 -0800253 std::unique_ptr<SessionStats> GetSessionStats_s() override;
254 std::unique_ptr<SessionStats> GetSessionStats(
255 const ChannelNamePairs& channel_name_pairs) override;
256 Call::Stats GetCallStats() override;
Steve Anton75737c02017-11-06 10:37:17 -0800257
Steve Anton2d8609c2018-01-23 16:38:46 -0800258 bool GetLocalCertificate(
259 const std::string& transport_name,
260 rtc::scoped_refptr<rtc::RTCCertificate>* certificate) override;
261 std::unique_ptr<rtc::SSLCertificate> GetRemoteSSLCertificate(
262 const std::string& transport_name) override;
263 bool IceRestartPending(const std::string& content_name) const override;
264 bool NeedsIceRestart(const std::string& content_name) const override;
265 bool GetSslRole(const std::string& content_name, rtc::SSLRole* role) override;
Steve Anton7464fca2018-01-19 11:10:37 -0800266
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000267 protected:
deadbeefa67696b2015-09-29 11:56:26 -0700268 ~PeerConnection() override;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000269
270 private:
Henrik Boström31638672017-11-23 17:48:32 +0100271 class SetRemoteDescriptionObserverAdapter;
272 friend class SetRemoteDescriptionObserverAdapter;
273
Steve Anton4171afb2017-11-20 10:20:22 -0800274 struct RtpSenderInfo {
275 RtpSenderInfo() : first_ssrc(0) {}
276 RtpSenderInfo(const std::string& stream_label,
277 const std::string sender_id,
278 uint32_t ssrc)
279 : stream_label(stream_label), sender_id(sender_id), first_ssrc(ssrc) {}
280 bool operator==(const RtpSenderInfo& other) {
deadbeefbda7e0b2015-12-08 17:13:40 -0800281 return this->stream_label == other.stream_label &&
Steve Anton4171afb2017-11-20 10:20:22 -0800282 this->sender_id == other.sender_id &&
283 this->first_ssrc == other.first_ssrc;
deadbeefbda7e0b2015-12-08 17:13:40 -0800284 }
deadbeefab9b2d12015-10-14 11:33:11 -0700285 std::string stream_label;
Steve Anton4171afb2017-11-20 10:20:22 -0800286 std::string sender_id;
287 // An RtpSender can have many SSRCs. The first one is used as a sort of ID
288 // for communicating with the lower layers.
289 uint32_t first_ssrc;
deadbeefab9b2d12015-10-14 11:33:11 -0700290 };
deadbeefab9b2d12015-10-14 11:33:11 -0700291
Steve Antonef65ef12018-01-10 17:15:20 -0800292 struct TrackEvent {
293 rtc::scoped_refptr<RtpReceiverInterface> receiver;
294 std::vector<rtc::scoped_refptr<MediaStreamInterface>> streams;
295 };
296
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000297 // Implements MessageHandler.
deadbeefa67696b2015-09-29 11:56:26 -0700298 void OnMessage(rtc::Message* msg) override;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000299
Steve Anton60776752018-01-10 11:51:34 -0800300 cricket::VoiceMediaChannel* voice_media_channel() const {
301 return voice_channel() ? voice_channel()->media_channel() : nullptr;
302 }
303
304 cricket::VideoMediaChannel* video_media_channel() const {
305 return video_channel() ? video_channel()->media_channel() : nullptr;
306 }
307
Steve Anton4171afb2017-11-20 10:20:22 -0800308 std::vector<rtc::scoped_refptr<RtpSenderProxyWithInternal<RtpSenderInternal>>>
309 GetSendersInternal() const;
310 std::vector<
311 rtc::scoped_refptr<RtpReceiverProxyWithInternal<RtpReceiverInternal>>>
312 GetReceiversInternal() const;
313
314 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
315 GetAudioTransceiver() const;
316 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
317 GetVideoTransceiver() const;
318
deadbeefab9b2d12015-10-14 11:33:11 -0700319 void CreateAudioReceiver(MediaStreamInterface* stream,
Steve Anton4171afb2017-11-20 10:20:22 -0800320 const RtpSenderInfo& remote_sender_info);
perkjf0dcfe22016-03-10 18:32:00 +0100321
deadbeefab9b2d12015-10-14 11:33:11 -0700322 void CreateVideoReceiver(MediaStreamInterface* stream,
Steve Anton4171afb2017-11-20 10:20:22 -0800323 const RtpSenderInfo& remote_sender_info);
Henrik Boström933d8b02017-10-10 10:05:16 -0700324 rtc::scoped_refptr<RtpReceiverInterface> RemoveAndStopReceiver(
Steve Anton4171afb2017-11-20 10:20:22 -0800325 const RtpSenderInfo& remote_sender_info);
korniltsev.anatolyec390b52017-07-24 17:00:25 -0700326
327 // May be called either by AddStream/RemoveStream, or when a track is
328 // added/removed from a stream previously added via AddStream.
329 void AddAudioTrack(AudioTrackInterface* track, MediaStreamInterface* stream);
330 void RemoveAudioTrack(AudioTrackInterface* track,
331 MediaStreamInterface* stream);
332 void AddVideoTrack(VideoTrackInterface* track, MediaStreamInterface* stream);
333 void RemoveVideoTrack(VideoTrackInterface* track,
334 MediaStreamInterface* stream);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000335
Steve Antonf9381f02017-12-14 10:23:57 -0800336 // AddTrack implementation when Unified Plan is specified.
337 RTCErrorOr<rtc::scoped_refptr<RtpSenderInterface>> AddTrackUnifiedPlan(
338 rtc::scoped_refptr<MediaStreamTrackInterface> track,
339 const std::vector<std::string>& stream_labels);
340 // AddTrack implementation when Plan B is specified.
341 RTCErrorOr<rtc::scoped_refptr<RtpSenderInterface>> AddTrackPlanB(
342 rtc::scoped_refptr<MediaStreamTrackInterface> track,
343 const std::vector<std::string>& stream_labels);
344
345 // Returns the first RtpTransceiver suitable for a newly added track, if such
346 // transceiver is available.
347 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
348 FindFirstTransceiverForAddedTrack(
349 rtc::scoped_refptr<MediaStreamTrackInterface> track);
350
351 // RemoveTrack that returns an RTCError.
352 RTCError RemoveTrackInternal(rtc::scoped_refptr<RtpSenderInterface> sender);
353
354 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
355 FindTransceiverBySender(rtc::scoped_refptr<RtpSenderInterface> sender);
356
Steve Anton22da89f2018-01-25 13:58:07 -0800357 // Internal implementation for AddTransceiver family of methods. If
358 // |fire_callback| is set, fires OnRenegotiationNeeded callback if successful.
Steve Anton9158ef62017-11-27 13:01:52 -0800359 RTCErrorOr<rtc::scoped_refptr<RtpTransceiverInterface>> AddTransceiver(
360 cricket::MediaType media_type,
361 rtc::scoped_refptr<MediaStreamTrackInterface> track,
Steve Anton22da89f2018-01-25 13:58:07 -0800362 const RtpTransceiverInit& init,
363 bool fire_callback = true);
Steve Anton9158ef62017-11-27 13:01:52 -0800364
Steve Anton02ee47c2018-01-10 16:26:06 -0800365 rtc::scoped_refptr<RtpSenderProxyWithInternal<RtpSenderInternal>>
366 CreateSender(cricket::MediaType media_type,
367 rtc::scoped_refptr<MediaStreamTrackInterface> track,
368 const std::vector<std::string>& stream_labels);
369
370 rtc::scoped_refptr<RtpReceiverProxyWithInternal<RtpReceiverInternal>>
371 CreateReceiver(cricket::MediaType media_type, const std::string& receiver_id);
372
Steve Antonf9381f02017-12-14 10:23:57 -0800373 // Create a new RtpTransceiver of the given type and add it to the list of
374 // transceivers.
375 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
Steve Anton02ee47c2018-01-10 16:26:06 -0800376 CreateAndAddTransceiver(
377 rtc::scoped_refptr<RtpSenderProxyWithInternal<RtpSenderInternal>> sender,
378 rtc::scoped_refptr<RtpReceiverProxyWithInternal<RtpReceiverInternal>>
379 receiver);
Steve Antonf9381f02017-12-14 10:23:57 -0800380
Steve Antonba818672017-11-06 10:21:57 -0800381 void SetIceConnectionState(IceConnectionState new_state);
382 // Called any time the IceGatheringState changes
383 void OnIceGatheringChange(IceGatheringState new_state);
384 // New ICE candidate has been gathered.
385 void OnIceCandidate(std::unique_ptr<IceCandidateInterface> candidate);
386 // Some local ICE candidates have been removed.
Honghai Zhang7fb69db2016-03-14 11:59:18 -0700387 void OnIceCandidatesRemoved(
Steve Antonba818672017-11-06 10:21:57 -0800388 const std::vector<cricket::Candidate>& candidates);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000389
Steve Antonba818672017-11-06 10:21:57 -0800390 // Update the state, signaling if necessary.
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000391 void ChangeSignalingState(SignalingState signaling_state);
392
deadbeefeb459812015-12-15 19:24:43 -0800393 // Signals from MediaStreamObserver.
394 void OnAudioTrackAdded(AudioTrackInterface* track,
395 MediaStreamInterface* stream);
396 void OnAudioTrackRemoved(AudioTrackInterface* track,
397 MediaStreamInterface* stream);
398 void OnVideoTrackAdded(VideoTrackInterface* track,
399 MediaStreamInterface* stream);
400 void OnVideoTrackRemoved(VideoTrackInterface* track,
401 MediaStreamInterface* stream);
402
Henrik Boström31638672017-11-23 17:48:32 +0100403 void PostSetSessionDescriptionSuccess(
404 SetSessionDescriptionObserver* observer);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000405 void PostSetSessionDescriptionFailure(SetSessionDescriptionObserver* observer,
406 const std::string& error);
deadbeefab9b2d12015-10-14 11:33:11 -0700407 void PostCreateSessionDescriptionFailure(
408 CreateSessionDescriptionObserver* observer,
409 const std::string& error);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000410
Steve Anton8a006912017-12-04 15:25:56 -0800411 // Synchronous implementations of SetLocalDescription/SetRemoteDescription
412 // that return an RTCError instead of invoking a callback.
413 RTCError ApplyLocalDescription(
414 std::unique_ptr<SessionDescriptionInterface> desc);
415 RTCError ApplyRemoteDescription(
416 std::unique_ptr<SessionDescriptionInterface> desc);
417
Steve Antondcc3c022017-12-22 16:02:54 -0800418 // Updates the local RtpTransceivers according to the JSEP rules. Called as
419 // part of setting the local/remote description.
420 RTCError UpdateTransceiversAndDataChannels(
421 cricket::ContentSource source,
422 const SessionDescriptionInterface* old_session,
423 const SessionDescriptionInterface& new_session);
424
425 // Either creates or destroys the transceiver's BaseChannel according to the
426 // given media section.
427 RTCError UpdateTransceiverChannel(
428 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
429 transceiver,
430 const cricket::ContentInfo& content,
431 const cricket::ContentGroup* bundle_group);
432
Steve Antonfa2260d2017-12-28 16:38:23 -0800433 // Either creates or destroys the local data channel according to the given
434 // media section.
435 RTCError UpdateDataChannel(cricket::ContentSource source,
436 const cricket::ContentInfo& content,
437 const cricket::ContentGroup* bundle_group);
438
Steve Antondcc3c022017-12-22 16:02:54 -0800439 // Associate the given transceiver according to the JSEP rules.
440 RTCErrorOr<
441 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>>
442 AssociateTransceiver(cricket::ContentSource source,
443 size_t mline_index,
444 const cricket::ContentInfo& content,
445 const cricket::ContentInfo* old_content);
446
447 // Returns the RtpTransceiver, if found, that is associated to the given MID.
448 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
449 GetAssociatedTransceiver(const std::string& mid) const;
450
451 // Returns the RtpTransceiver, if found, that was assigned to the given mline
452 // index in CreateOffer.
453 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
454 GetTransceiverByMLineIndex(size_t mline_index) const;
455
456 // Returns an RtpTransciever, if available, that can be used to receive the
457 // given media type according to JSEP rules.
458 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
459 FindAvailableTransceiverToReceive(cricket::MediaType media_type) const;
460
Steve Antoned10bd92017-12-05 10:52:59 -0800461 // Returns the media section in the given session description that is
462 // associated with the RtpTransceiver. Returns null if none found or this
463 // RtpTransceiver is not associated. Logic varies depending on the
464 // SdpSemantics specified in the configuration.
465 const cricket::ContentInfo* FindMediaSectionForTransceiver(
466 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
467 transceiver,
468 const SessionDescriptionInterface* sdesc) const;
469
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000470 bool IsClosed() const {
471 return signaling_state_ == PeerConnectionInterface::kClosed;
472 }
473
deadbeefab9b2d12015-10-14 11:33:11 -0700474 // Returns a MediaSessionOptions struct with options decided by |options|,
475 // the local MediaStreams and DataChannels.
Steve Antondcc3c022017-12-22 16:02:54 -0800476 void GetOptionsForOffer(const PeerConnectionInterface::RTCOfferAnswerOptions&
477 offer_answer_options,
478 cricket::MediaSessionOptions* session_options);
479 void GetOptionsForPlanBOffer(
480 const PeerConnectionInterface::RTCOfferAnswerOptions&
481 offer_answer_options,
482 cricket::MediaSessionOptions* session_options);
483 void GetOptionsForUnifiedPlanOffer(
484 const PeerConnectionInterface::RTCOfferAnswerOptions&
485 offer_answer_options,
deadbeefab9b2d12015-10-14 11:33:11 -0700486 cricket::MediaSessionOptions* session_options);
487
Steve Anton22da89f2018-01-25 13:58:07 -0800488 RTCError HandleLegacyOfferOptions(const RTCOfferAnswerOptions& options);
489 void RemoveRecvDirectionFromReceivingTransceiversOfType(
490 cricket::MediaType media_type);
491 void AddUpToOneReceivingTransceiverOfType(cricket::MediaType media_type);
492 std::vector<
493 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>>
494 GetReceivingTransceiversOfType(cricket::MediaType media_type);
495
deadbeefab9b2d12015-10-14 11:33:11 -0700496 // Returns a MediaSessionOptions struct with options decided by
497 // |constraints|, the local MediaStreams and DataChannels.
Steve Antondcc3c022017-12-22 16:02:54 -0800498 void GetOptionsForAnswer(const RTCOfferAnswerOptions& offer_answer_options,
zhihuang1c378ed2017-08-17 14:10:50 -0700499 cricket::MediaSessionOptions* session_options);
Steve Antondcc3c022017-12-22 16:02:54 -0800500 void GetOptionsForPlanBAnswer(
501 const PeerConnectionInterface::RTCOfferAnswerOptions&
502 offer_answer_options,
503 cricket::MediaSessionOptions* session_options);
504 void GetOptionsForUnifiedPlanAnswer(
505 const PeerConnectionInterface::RTCOfferAnswerOptions&
506 offer_answer_options,
507 cricket::MediaSessionOptions* session_options);
htaa2a49d92016-03-04 02:51:39 -0800508
zhihuang1c378ed2017-08-17 14:10:50 -0700509 // Generates MediaDescriptionOptions for the |session_opts| based on existing
510 // local description or remote description.
511 void GenerateMediaDescriptionOptions(
512 const SessionDescriptionInterface* session_desc,
Steve Anton1d03a752017-11-27 14:30:09 -0800513 RtpTransceiverDirection audio_direction,
514 RtpTransceiverDirection video_direction,
zhihuang1c378ed2017-08-17 14:10:50 -0700515 rtc::Optional<size_t>* audio_index,
516 rtc::Optional<size_t>* video_index,
517 rtc::Optional<size_t>* data_index,
htaa2a49d92016-03-04 02:51:39 -0800518 cricket::MediaSessionOptions* session_options);
deadbeefab9b2d12015-10-14 11:33:11 -0700519
Steve Antonfa2260d2017-12-28 16:38:23 -0800520 // Generates the active MediaDescriptionOptions for the local data channel
521 // given the specified MID.
522 cricket::MediaDescriptionOptions GetMediaDescriptionOptionsForActiveData(
523 const std::string& mid) const;
524
525 // Generates the rejected MediaDescriptionOptions for the local data channel
526 // given the specified MID.
527 cricket::MediaDescriptionOptions GetMediaDescriptionOptionsForRejectedData(
528 const std::string& mid) const;
529
530 // Returns the MID for the data section associated with either the
531 // RtpDataChannel or SCTP data channel, if it has been set. If no data
532 // channels are configured this will return nullopt.
533 rtc::Optional<std::string> GetDataMid() const;
534
Steve Anton4171afb2017-11-20 10:20:22 -0800535 // Remove all local and remote senders of type |media_type|.
deadbeeffaac4972015-11-12 15:33:07 -0800536 // Called when a media type is rejected (m-line set to port 0).
Steve Anton4171afb2017-11-20 10:20:22 -0800537 void RemoveSenders(cricket::MediaType media_type);
deadbeeffaac4972015-11-12 15:33:07 -0800538
deadbeefbda7e0b2015-12-08 17:13:40 -0800539 // Makes sure a MediaStreamTrack is created for each StreamParam in |streams|,
540 // and existing MediaStreamTracks are removed if there is no corresponding
541 // StreamParam. If |default_track_needed| is true, a default MediaStreamTrack
542 // is created if it doesn't exist; if false, it's removed if it exists.
543 // |media_type| is the type of the |streams| and can be either audio or video.
deadbeefab9b2d12015-10-14 11:33:11 -0700544 // If a new MediaStream is created it is added to |new_streams|.
Steve Anton4171afb2017-11-20 10:20:22 -0800545 void UpdateRemoteSendersList(
deadbeefab9b2d12015-10-14 11:33:11 -0700546 const std::vector<cricket::StreamParams>& streams,
deadbeefbda7e0b2015-12-08 17:13:40 -0800547 bool default_track_needed,
deadbeefab9b2d12015-10-14 11:33:11 -0700548 cricket::MediaType media_type,
549 StreamCollection* new_streams);
550
Steve Anton4171afb2017-11-20 10:20:22 -0800551 // Triggered when a remote sender has been seen for the first time in a remote
deadbeefab9b2d12015-10-14 11:33:11 -0700552 // session description. It creates a remote MediaStreamTrackInterface
553 // implementation and triggers CreateAudioReceiver or CreateVideoReceiver.
Steve Anton4171afb2017-11-20 10:20:22 -0800554 void OnRemoteSenderAdded(const RtpSenderInfo& sender_info,
555 cricket::MediaType media_type);
deadbeefab9b2d12015-10-14 11:33:11 -0700556
Steve Anton4171afb2017-11-20 10:20:22 -0800557 // Triggered when a remote sender has been removed from a remote session
558 // description. It removes the remote sender with id |sender_id| from a remote
deadbeefab9b2d12015-10-14 11:33:11 -0700559 // MediaStream and triggers DestroyAudioReceiver or DestroyVideoReceiver.
Steve Anton4171afb2017-11-20 10:20:22 -0800560 void OnRemoteSenderRemoved(const RtpSenderInfo& sender_info,
561 cricket::MediaType media_type);
deadbeefab9b2d12015-10-14 11:33:11 -0700562
563 // Finds remote MediaStreams without any tracks and removes them from
564 // |remote_streams_| and notifies the observer that the MediaStreams no longer
565 // exist.
566 void UpdateEndedRemoteMediaStreams();
567
deadbeefab9b2d12015-10-14 11:33:11 -0700568 // Loops through the vector of |streams| and finds added and removed
569 // StreamParams since last time this method was called.
Steve Anton4171afb2017-11-20 10:20:22 -0800570 // For each new or removed StreamParam, OnLocalSenderSeen or
571 // OnLocalSenderRemoved is invoked.
572 void UpdateLocalSenders(const std::vector<cricket::StreamParams>& streams,
573 cricket::MediaType media_type);
deadbeefab9b2d12015-10-14 11:33:11 -0700574
Steve Anton4171afb2017-11-20 10:20:22 -0800575 // Triggered when a local sender has been seen for the first time in a local
deadbeefab9b2d12015-10-14 11:33:11 -0700576 // session description.
577 // This method triggers CreateAudioSender or CreateVideoSender if the rtp
578 // streams in the local SessionDescription can be mapped to a MediaStreamTrack
579 // in a MediaStream in |local_streams_|
Steve Anton4171afb2017-11-20 10:20:22 -0800580 void OnLocalSenderAdded(const RtpSenderInfo& sender_info,
581 cricket::MediaType media_type);
deadbeefab9b2d12015-10-14 11:33:11 -0700582
Steve Anton4171afb2017-11-20 10:20:22 -0800583 // Triggered when a local sender has been removed from a local session
deadbeefab9b2d12015-10-14 11:33:11 -0700584 // description.
585 // This method triggers DestroyAudioSender or DestroyVideoSender if a stream
586 // has been removed from the local SessionDescription and the stream can be
587 // mapped to a MediaStreamTrack in a MediaStream in |local_streams_|.
Steve Anton4171afb2017-11-20 10:20:22 -0800588 void OnLocalSenderRemoved(const RtpSenderInfo& sender_info,
589 cricket::MediaType media_type);
deadbeefab9b2d12015-10-14 11:33:11 -0700590
591 void UpdateLocalRtpDataChannels(const cricket::StreamParamsVec& streams);
592 void UpdateRemoteRtpDataChannels(const cricket::StreamParamsVec& streams);
593 void UpdateClosingRtpDataChannels(
594 const std::vector<std::string>& active_channels,
595 bool is_local_update);
596 void CreateRemoteRtpDataChannel(const std::string& label,
597 uint32_t remote_ssrc);
598
599 // Creates channel and adds it to the collection of DataChannels that will
600 // be offered in a SessionDescription.
601 rtc::scoped_refptr<DataChannel> InternalCreateDataChannel(
602 const std::string& label,
603 const InternalDataChannelInit* config);
604
605 // Checks if any data channel has been added.
606 bool HasDataChannels() const;
607
608 void AllocateSctpSids(rtc::SSLRole role);
609 void OnSctpDataChannelClosed(DataChannel* channel);
610
deadbeefab9b2d12015-10-14 11:33:11 -0700611 void OnDataChannelDestroyed();
Steve Antonba818672017-11-06 10:21:57 -0800612 // Called when a valid data channel OPEN message is received.
deadbeefab9b2d12015-10-14 11:33:11 -0700613 void OnDataChannelOpenMessage(const std::string& label,
614 const InternalDataChannelInit& config);
615
Steve Anton4171afb2017-11-20 10:20:22 -0800616 // Returns true if the PeerConnection is configured to use Unified Plan
617 // semantics for creating offers/answers and setting local/remote
618 // descriptions. If this is true the RtpTransceiver API will also be available
619 // to the user. If this is false, Plan B semantics are assumed.
Steve Anton79e79602017-11-20 10:25:56 -0800620 // TODO(bugs.webrtc.org/8530): Flip the default to be Unified Plan once
621 // sufficient time has passed.
622 bool IsUnifiedPlan() const {
623 return configuration_.sdp_semantics == SdpSemantics::kUnifiedPlan;
624 }
Steve Anton4171afb2017-11-20 10:20:22 -0800625
626 // Is there an RtpSender of the given type?
zhihuang1c378ed2017-08-17 14:10:50 -0700627 bool HasRtpSender(cricket::MediaType type) const;
deadbeeffac06552015-11-25 11:26:01 -0800628
Steve Anton4171afb2017-11-20 10:20:22 -0800629 // Return the RtpSender with the given track attached.
630 rtc::scoped_refptr<RtpSenderProxyWithInternal<RtpSenderInternal>>
631 FindSenderForTrack(MediaStreamTrackInterface* track) const;
deadbeef70ab1a12015-09-28 16:53:55 -0700632
Steve Anton4171afb2017-11-20 10:20:22 -0800633 // Return the RtpSender with the given id, or null if none exists.
634 rtc::scoped_refptr<RtpSenderProxyWithInternal<RtpSenderInternal>>
635 FindSenderById(const std::string& sender_id) const;
636
637 // Return the RtpReceiver with the given id, or null if none exists.
638 rtc::scoped_refptr<RtpReceiverProxyWithInternal<RtpReceiverInternal>>
639 FindReceiverById(const std::string& receiver_id) const;
640
641 std::vector<RtpSenderInfo>* GetRemoteSenderInfos(
642 cricket::MediaType media_type);
643 std::vector<RtpSenderInfo>* GetLocalSenderInfos(
644 cricket::MediaType media_type);
645 const RtpSenderInfo* FindSenderInfo(const std::vector<RtpSenderInfo>& infos,
646 const std::string& stream_label,
647 const std::string sender_id) const;
deadbeefab9b2d12015-10-14 11:33:11 -0700648
649 // Returns the specified SCTP DataChannel in sctp_data_channels_,
650 // or nullptr if not found.
651 DataChannel* FindDataChannelBySid(int sid) const;
652
Taylor Brandstettera1c30352016-05-13 08:15:11 -0700653 // Called when first configuring the port allocator.
deadbeef91dd5672016-05-18 16:55:30 -0700654 bool InitializePortAllocator_n(const RTCConfiguration& configuration);
deadbeef293e9262017-01-11 12:28:30 -0800655 // Called when SetConfiguration is called to apply the supported subset
656 // of the configuration on the network thread.
657 bool ReconfigurePortAllocator_n(
658 const cricket::ServerAddresses& stun_servers,
659 const std::vector<cricket::RelayServerConfig>& turn_servers,
660 IceTransportsType type,
661 int candidate_pool_size,
Jonas Orelandbdcee282017-10-10 14:01:40 +0200662 bool prune_turn_ports,
663 webrtc::TurnCustomizer* turn_customizer);
Taylor Brandstettera1c30352016-05-13 08:15:11 -0700664
Elad Alon99c3fe52017-10-13 16:29:40 +0200665 // Starts output of an RTC event log to the given output object.
ivoc14d5dbe2016-07-04 07:06:55 -0700666 // This function should only be called from the worker thread.
Bjorn Tereliusde939432017-11-20 17:38:14 +0100667 bool StartRtcEventLog_w(std::unique_ptr<RtcEventLogOutput> output,
668 int64_t output_period_ms);
Elad Alon99c3fe52017-10-13 16:29:40 +0200669
Elad Alonacb24172017-10-06 14:32:13 +0200670 // Stops recording an RTC event log.
ivoc14d5dbe2016-07-04 07:06:55 -0700671 // This function should only be called from the worker thread.
672 void StopRtcEventLog_w();
673
Steve Anton038834f2017-07-14 15:59:59 -0700674 // Ensures the configuration doesn't have any parameters with invalid values,
675 // or values that conflict with other parameters.
676 //
677 // Returns RTCError::OK() if there are no issues.
678 RTCError ValidateConfiguration(const RTCConfiguration& config) const;
679
Steve Antonba818672017-11-06 10:21:57 -0800680 cricket::ChannelManager* channel_manager() const;
681 MetricsObserverInterface* metrics_observer() const;
682
Steve Antonf8470812017-12-04 10:46:21 -0800683 enum class SessionError {
684 kNone, // No error.
685 kContent, // Error in BaseChannel SetLocalContent/SetRemoteContent.
686 kTransport, // Error from the underlying transport.
687 };
688
Steve Anton75737c02017-11-06 10:37:17 -0800689 // Returns the last error in the session. See the enum above for details.
Steve Antonf8470812017-12-04 10:46:21 -0800690 SessionError session_error() const { return session_error_; }
691 const std::string& session_error_desc() const { return session_error_desc_; }
Steve Anton75737c02017-11-06 10:37:17 -0800692
Steve Anton75737c02017-11-06 10:37:17 -0800693 cricket::BaseChannel* GetChannel(const std::string& content_name);
694
695 // Get current SSL role used by SCTP's underlying transport.
696 bool GetSctpSslRole(rtc::SSLRole* role);
697
Steve Anton75737c02017-11-06 10:37:17 -0800698 cricket::IceConfig ParseIceConfig(
699 const PeerConnectionInterface::RTCConfiguration& config) const;
700
Steve Anton75737c02017-11-06 10:37:17 -0800701 // Implements DataChannelProviderInterface.
702 bool SendData(const cricket::SendDataParams& params,
703 const rtc::CopyOnWriteBuffer& payload,
704 cricket::SendDataResult* result) override;
705 bool ConnectDataChannel(DataChannel* webrtc_data_channel) override;
706 void DisconnectDataChannel(DataChannel* webrtc_data_channel) override;
707 void AddSctpDataStream(int sid) override;
708 void RemoveSctpDataStream(int sid) override;
709 bool ReadyToSendData() const override;
710
711 cricket::DataChannelType data_channel_type() const;
712
Steve Anton75737c02017-11-06 10:37:17 -0800713 // Called when an RTCCertificate is generated or retrieved by
714 // WebRTCSessionDescriptionFactory. Should happen before setLocalDescription.
715 void OnCertificateReady(
716 const rtc::scoped_refptr<rtc::RTCCertificate>& certificate);
717 void OnDtlsSrtpSetupFailure(cricket::BaseChannel*, bool rtcp);
718
719 cricket::TransportController* transport_controller() const {
720 return transport_controller_.get();
721 }
722
723 // Return all managed, non-null channels.
724 std::vector<cricket::BaseChannel*> Channels() const;
725
726 // Non-const versions of local_description()/remote_description(), for use
727 // internally.
728 SessionDescriptionInterface* mutable_local_description() {
729 return pending_local_description_ ? pending_local_description_.get()
730 : current_local_description_.get();
731 }
732 SessionDescriptionInterface* mutable_remote_description() {
733 return pending_remote_description_ ? pending_remote_description_.get()
734 : current_remote_description_.get();
735 }
736
737 // Updates the error state, signaling if necessary.
Steve Antonf8470812017-12-04 10:46:21 -0800738 void SetSessionError(SessionError error, const std::string& error_desc);
Steve Anton75737c02017-11-06 10:37:17 -0800739
Steve Anton3828c062017-12-06 10:34:51 -0800740 RTCError UpdateSessionState(SdpType type, cricket::ContentSource source);
Steve Anton75737c02017-11-06 10:37:17 -0800741 // Push the media parts of the local or remote session description
742 // down to all of the channels.
Steve Anton3828c062017-12-06 10:34:51 -0800743 RTCError PushdownMediaDescription(SdpType type,
Steve Anton8a006912017-12-04 15:25:56 -0800744 cricket::ContentSource source);
Steve Anton75737c02017-11-06 10:37:17 -0800745 bool PushdownSctpParameters_n(cricket::ContentSource source);
746
Steve Anton8a006912017-12-04 15:25:56 -0800747 RTCError PushdownTransportDescription(cricket::ContentSource source,
Steve Anton3828c062017-12-06 10:34:51 -0800748 SdpType type);
Steve Anton75737c02017-11-06 10:37:17 -0800749
750 // Returns true and the TransportInfo of the given |content_name|
751 // from |description|. Returns false if it's not available.
752 static bool GetTransportDescription(
753 const cricket::SessionDescription* description,
754 const std::string& content_name,
755 cricket::TransportDescription* info);
756
Steve Antoneda6ccd2017-12-04 10:21:55 -0800757 // Returns the transport name for the given media section identified by |mid|.
758 // If BUNDLE is enabled and the media section is part of the bundle group,
759 // the transport name will be the first mid in the bundle group. Otherwise,
760 // the transport name will be the mid of the media section.
761 std::string GetTransportNameForMediaSection(
762 const std::string& mid,
763 const cricket::ContentGroup* bundle_group) const;
Steve Anton75737c02017-11-06 10:37:17 -0800764
765 // Cause all the BaseChannels in the bundle group to have the same
766 // transport channel.
767 bool EnableBundle(const cricket::ContentGroup& bundle);
768
769 // Enables media channels to allow sending of media.
Steve Antoned10bd92017-12-05 10:52:59 -0800770 // This enables media to flow on all configured audio/video channels and the
771 // RtpDataChannel.
772 void EnableSending();
Steve Anton3fe1b152017-12-12 10:20:08 -0800773
Steve Anton8af21862017-12-15 11:20:13 -0800774 // Destroys all BaseChannels and destroys the SCTP data channel, if present.
775 void DestroyAllChannels();
Steve Anton3fe1b152017-12-12 10:20:08 -0800776
Steve Anton75737c02017-11-06 10:37:17 -0800777 // Returns the media index for a local ice candidate given the content name.
778 // Returns false if the local session description does not have a media
779 // content called |content_name|.
780 bool GetLocalCandidateMediaIndex(const std::string& content_name,
781 int* sdp_mline_index);
782 // Uses all remote candidates in |remote_desc| in this session.
783 bool UseCandidatesInSessionDescription(
784 const SessionDescriptionInterface* remote_desc);
785 // Uses |candidate| in this session.
786 bool UseCandidate(const IceCandidateInterface* candidate);
787 // Deletes the corresponding channel of contents that don't exist in |desc|.
788 // |desc| can be null. This means that all channels are deleted.
789 void RemoveUnusedChannels(const cricket::SessionDescription* desc);
790
791 // Allocates media channels based on the |desc|. If |desc| doesn't have
792 // the BUNDLE option, this method will disable BUNDLE in PortAllocator.
793 // This method will also delete any existing media channels before creating.
Steve Antondcc3c022017-12-22 16:02:54 -0800794 RTCError CreateChannels(const cricket::SessionDescription& desc);
795
796 // If the BUNDLE policy is max-bundle, then we know for sure that all
797 // transports will be bundled from the start. This method returns the BUNDLE
798 // group if that's the case, or null if BUNDLE will be negotiated later. An
799 // error is returned if max-bundle is specified but the session description
800 // does not have a BUNDLE group.
801 RTCErrorOr<const cricket::ContentGroup*> GetEarlyBundleGroup(
802 const cricket::SessionDescription& desc) const;
Steve Anton75737c02017-11-06 10:37:17 -0800803
804 // Helper methods to create media channels.
Steve Antoneda6ccd2017-12-04 10:21:55 -0800805 cricket::VoiceChannel* CreateVoiceChannel(const std::string& mid,
806 const std::string& transport_name);
807 cricket::VideoChannel* CreateVideoChannel(const std::string& mid,
808 const std::string& transport_name);
809 bool CreateDataChannel(const std::string& mid,
810 const std::string& transport_name);
Steve Anton75737c02017-11-06 10:37:17 -0800811
812 std::unique_ptr<SessionStats> GetSessionStats_n(
813 const ChannelNamePairs& channel_name_pairs);
814
815 bool CreateSctpTransport_n(const std::string& content_name,
816 const std::string& transport_name);
817 // For bundling.
818 void ChangeSctpTransport_n(const std::string& transport_name);
819 void DestroySctpTransport_n();
820 // SctpTransport signal handlers. Needed to marshal signals from the network
821 // to signaling thread.
822 void OnSctpTransportReadyToSendData_n();
823 // This may be called with "false" if the direction of the m= section causes
824 // us to tear down the SCTP connection.
825 void OnSctpTransportReadyToSendData_s(bool ready);
826 void OnSctpTransportDataReceived_n(const cricket::ReceiveDataParams& params,
827 const rtc::CopyOnWriteBuffer& payload);
828 // Beyond just firing the signal to the signaling thread, listens to SCTP
829 // CONTROL messages on unused SIDs and processes them as OPEN messages.
830 void OnSctpTransportDataReceived_s(const cricket::ReceiveDataParams& params,
831 const rtc::CopyOnWriteBuffer& payload);
832 void OnSctpStreamClosedRemotely_n(int sid);
833
834 bool ValidateBundleSettings(const cricket::SessionDescription* desc);
835 bool HasRtcpMuxEnabled(const cricket::ContentInfo* content);
836 // Below methods are helper methods which verifies SDP.
Steve Anton8a006912017-12-04 15:25:56 -0800837 RTCError ValidateSessionDescription(const SessionDescriptionInterface* sdesc,
838 cricket::ContentSource source);
Steve Anton75737c02017-11-06 10:37:17 -0800839
Steve Anton3828c062017-12-06 10:34:51 -0800840 // Check if a call to SetLocalDescription is acceptable with a session
841 // description of the given type.
842 bool ExpectSetLocalDescription(SdpType type);
843 // Check if a call to SetRemoteDescription is acceptable with a session
844 // description of the given type.
845 bool ExpectSetRemoteDescription(SdpType type);
Steve Anton75737c02017-11-06 10:37:17 -0800846 // Verifies a=setup attribute as per RFC 5763.
847 bool ValidateDtlsSetupAttribute(const cricket::SessionDescription* desc,
Steve Anton3828c062017-12-06 10:34:51 -0800848 SdpType type);
Steve Anton75737c02017-11-06 10:37:17 -0800849
850 // Returns true if we are ready to push down the remote candidate.
851 // |remote_desc| is the new remote description, or NULL if the current remote
852 // description should be used. Output |valid| is true if the candidate media
853 // index is valid.
854 bool ReadyToUseRemoteCandidate(const IceCandidateInterface* candidate,
855 const SessionDescriptionInterface* remote_desc,
856 bool* valid);
857
858 // Returns true if SRTP (either using DTLS-SRTP or SDES) is required by
859 // this session.
860 bool SrtpRequired() const;
861
862 // TransportController signal handlers.
863 void OnTransportControllerConnectionState(cricket::IceConnectionState state);
864 void OnTransportControllerGatheringState(cricket::IceGatheringState state);
865 void OnTransportControllerCandidatesGathered(
866 const std::string& transport_name,
867 const std::vector<cricket::Candidate>& candidates);
868 void OnTransportControllerCandidatesRemoved(
869 const std::vector<cricket::Candidate>& candidates);
870 void OnTransportControllerDtlsHandshakeError(rtc::SSLHandshakeError error);
871
Steve Antonf8470812017-12-04 10:46:21 -0800872 const char* SessionErrorToString(SessionError error) const;
Steve Anton75737c02017-11-06 10:37:17 -0800873 std::string GetSessionErrorMsg();
874
875 // Invoked when TransportController connection completion is signaled.
876 // Reports stats for all transports in use.
877 void ReportTransportStats();
878
879 // Gather the usage of IPv4/IPv6 as best connection.
880 void ReportBestConnectionState(const cricket::TransportStats& stats);
881
882 void ReportNegotiatedCiphers(const cricket::TransportStats& stats);
883
884 void OnSentPacket_w(const rtc::SentPacket& sent_packet);
885
886 const std::string GetTransportName(const std::string& content_name);
887
888 void DestroyRtcpTransport_n(const std::string& transport_name);
Steve Anton6fec8802017-12-04 10:37:29 -0800889
890 // Destroys and clears the BaseChannel associated with the given transceiver,
891 // if such channel is set.
892 void DestroyTransceiverChannel(
893 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
894 transceiver);
895
896 // Destroys the RTP data channel and/or the SCTP data channel and clears it.
Steve Anton75737c02017-11-06 10:37:17 -0800897 void DestroyDataChannel();
898
Steve Anton6fec8802017-12-04 10:37:29 -0800899 // Destroys the given BaseChannel. The channel cannot be accessed after this
900 // method is called.
901 void DestroyBaseChannel(cricket::BaseChannel* channel);
902
Steve Anton2d8609c2018-01-23 16:38:46 -0800903 sigslot::signal1<DataChannel*> SignalDataChannelCreated_;
904
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000905 // Storing the factory as a scoped reference pointer ensures that the memory
906 // in the PeerConnectionFactoryImpl remains available as long as the
907 // PeerConnection is running. It is passed to PeerConnection as a raw pointer.
908 // However, since the reference counting is done in the
deadbeefab9b2d12015-10-14 11:33:11 -0700909 // PeerConnectionFactoryInterface all instances created using the raw pointer
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000910 // will refer to the same reference count.
buildbot@webrtc.orgd4e598d2014-07-29 17:36:52 +0000911 rtc::scoped_refptr<PeerConnectionFactory> factory_;
Steve Antonba818672017-11-06 10:21:57 -0800912 PeerConnectionObserver* observer_ = nullptr;
Taylor Brandstetter215fda72018-01-03 17:14:20 -0800913 rtc::scoped_refptr<UMAObserver> uma_observer_ = nullptr;
terelius33860252017-05-12 23:37:18 -0700914
915 // The EventLog needs to outlive |call_| (and any other object that uses it).
916 std::unique_ptr<RtcEventLog> event_log_;
917
Steve Antonba818672017-11-06 10:21:57 -0800918 SignalingState signaling_state_ = kStable;
919 IceConnectionState ice_connection_state_ = kIceConnectionNew;
920 IceGatheringState ice_gathering_state_ = kIceGatheringNew;
deadbeef46c73892016-11-16 19:42:04 -0800921 PeerConnectionInterface::RTCConfiguration configuration_;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000922
kwibergd1fe2812016-04-27 06:47:29 -0700923 std::unique_ptr<cricket::PortAllocator> port_allocator_;
deadbeefab9b2d12015-10-14 11:33:11 -0700924
zhihuang8f65cdf2016-05-06 18:40:30 -0700925 // One PeerConnection has only one RTCP CNAME.
926 // https://tools.ietf.org/html/draft-ietf-rtcweb-rtp-usage-26#section-4.9
927 std::string rtcp_cname_;
928
deadbeefab9b2d12015-10-14 11:33:11 -0700929 // Streams added via AddStream.
930 rtc::scoped_refptr<StreamCollection> local_streams_;
931 // Streams created as a result of SetRemoteDescription.
932 rtc::scoped_refptr<StreamCollection> remote_streams_;
933
kwibergd1fe2812016-04-27 06:47:29 -0700934 std::vector<std::unique_ptr<MediaStreamObserver>> stream_observers_;
deadbeefeb459812015-12-15 19:24:43 -0800935
Steve Anton4171afb2017-11-20 10:20:22 -0800936 // These lists store sender info seen in local/remote descriptions.
937 std::vector<RtpSenderInfo> remote_audio_sender_infos_;
938 std::vector<RtpSenderInfo> remote_video_sender_infos_;
939 std::vector<RtpSenderInfo> local_audio_sender_infos_;
940 std::vector<RtpSenderInfo> local_video_sender_infos_;
deadbeefab9b2d12015-10-14 11:33:11 -0700941
942 SctpSidAllocator sid_allocator_;
943 // label -> DataChannel
944 std::map<std::string, rtc::scoped_refptr<DataChannel>> rtp_data_channels_;
945 std::vector<rtc::scoped_refptr<DataChannel>> sctp_data_channels_;
deadbeefbd292462015-12-14 18:15:29 -0800946 std::vector<rtc::scoped_refptr<DataChannel>> sctp_data_channels_to_free_;
deadbeefab9b2d12015-10-14 11:33:11 -0700947
deadbeefbda7e0b2015-12-08 17:13:40 -0800948 bool remote_peer_supports_msid_ = false;
deadbeef70ab1a12015-09-28 16:53:55 -0700949
terelius33860252017-05-12 23:37:18 -0700950 std::unique_ptr<Call> call_;
terelius33860252017-05-12 23:37:18 -0700951 std::unique_ptr<StatsCollector> stats_; // A pointer is passed to senders_
952 rtc::scoped_refptr<RTCStatsCollector> stats_collector_;
953
deadbeefa601f5c2016-06-06 14:27:39 -0700954 std::vector<
Steve Anton4171afb2017-11-20 10:20:22 -0800955 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>>
956 transceivers_;
Steve Antondcc3c022017-12-22 16:02:54 -0800957 // MIDs that have been seen either by SetLocalDescription or
958 // SetRemoteDescription over the life of the PeerConnection.
959 std::set<std::string> seen_mids_;
Steve Anton75737c02017-11-06 10:37:17 -0800960
Steve Antonf8470812017-12-04 10:46:21 -0800961 SessionError session_error_ = SessionError::kNone;
962 std::string session_error_desc_;
Steve Anton75737c02017-11-06 10:37:17 -0800963
964 std::string session_id_;
965 rtc::Optional<bool> initial_offerer_;
966
967 std::unique_ptr<cricket::TransportController> transport_controller_;
968 std::unique_ptr<cricket::SctpTransportInternalFactory> sctp_factory_;
Steve Anton75737c02017-11-06 10:37:17 -0800969 // |rtp_data_channel_| is used if in RTP data channel mode, |sctp_transport_|
970 // when using SCTP.
971 cricket::RtpDataChannel* rtp_data_channel_ = nullptr;
972
973 std::unique_ptr<cricket::SctpTransportInternal> sctp_transport_;
974 // |sctp_transport_name_| keeps track of what DTLS transport the SCTP
975 // transport is using (which can change due to bundling).
976 rtc::Optional<std::string> sctp_transport_name_;
977 // |sctp_content_name_| is the content name (MID) in SDP.
978 rtc::Optional<std::string> sctp_content_name_;
979 // Value cached on signaling thread. Only updated when SctpReadyToSendData
980 // fires on the signaling thread.
981 bool sctp_ready_to_send_data_ = false;
982 // Same as signals provided by SctpTransport, but these are guaranteed to
983 // fire on the signaling thread, whereas SctpTransport fires on the networking
984 // thread.
985 // |sctp_invoker_| is used so that any signals queued on the signaling thread
986 // from the network thread are immediately discarded if the SctpTransport is
987 // destroyed (due to m= section being rejected).
988 // TODO(deadbeef): Use a proxy object to ensure that method calls/signals
989 // are marshalled to the right thread. Could almost use proxy.h for this,
990 // but it doesn't have a mechanism for marshalling sigslot::signals
991 std::unique_ptr<rtc::AsyncInvoker> sctp_invoker_;
992 sigslot::signal1<bool> SignalSctpReadyToSendData;
993 sigslot::signal2<const cricket::ReceiveDataParams&,
994 const rtc::CopyOnWriteBuffer&>
995 SignalSctpDataReceived;
996 sigslot::signal1<int> SignalSctpStreamClosedRemotely;
997
998 std::unique_ptr<SessionDescriptionInterface> current_local_description_;
999 std::unique_ptr<SessionDescriptionInterface> pending_local_description_;
1000 std::unique_ptr<SessionDescriptionInterface> current_remote_description_;
1001 std::unique_ptr<SessionDescriptionInterface> pending_remote_description_;
1002 bool dtls_enabled_ = false;
1003 // Specifies which kind of data channel is allowed. This is controlled
1004 // by the chrome command-line flag and constraints:
1005 // 1. If chrome command-line switch 'enable-sctp-data-channels' is enabled,
1006 // constraint kEnableDtlsSrtp is true, and constaint kEnableRtpDataChannels is
1007 // not set or false, SCTP is allowed (DCT_SCTP);
1008 // 2. If constraint kEnableRtpDataChannels is true, RTP is allowed (DCT_RTP);
1009 // 3. If both 1&2 are false, data channel is not allowed (DCT_NONE).
1010 cricket::DataChannelType data_channel_type_ = cricket::DCT_NONE;
1011 // List of content names for which the remote side triggered an ICE restart.
1012 std::set<std::string> pending_ice_restarts_;
1013
1014 std::unique_ptr<WebRtcSessionDescriptionFactory> webrtc_session_desc_factory_;
1015
1016 // Member variables for caching global options.
1017 cricket::AudioOptions audio_options_;
1018 cricket::VideoOptions video_options_;
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001019};
1020
1021} // namespace webrtc
1022
Mirko Bonadei92ea95e2017-09-15 06:47:31 +02001023#endif // PC_PEERCONNECTION_H_