blob: d788b1e76d290793ccb11025c6316a9e4652b171 [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
Zhi Huang70b820f2018-01-27 14:16:15 -080099 // Version of the above method that returns the full certificate chain.
100 std::unique_ptr<rtc::SSLCertChain> GetRemoteAudioSSLCertChain();
101
deadbeefa67696b2015-09-29 11:56:26 -0700102 rtc::scoped_refptr<DtmfSenderInterface> CreateDtmfSender(
103 AudioTrackInterface* track) override;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000104
deadbeeffac06552015-11-25 11:26:01 -0800105 rtc::scoped_refptr<RtpSenderInterface> CreateSender(
deadbeefbd7d8f72015-12-18 16:58:44 -0800106 const std::string& kind,
107 const std::string& stream_id) override;
deadbeeffac06552015-11-25 11:26:01 -0800108
deadbeef70ab1a12015-09-28 16:53:55 -0700109 std::vector<rtc::scoped_refptr<RtpSenderInterface>> GetSenders()
110 const override;
111 std::vector<rtc::scoped_refptr<RtpReceiverInterface>> GetReceivers()
112 const override;
Steve Anton9158ef62017-11-27 13:01:52 -0800113 std::vector<rtc::scoped_refptr<RtpTransceiverInterface>> GetTransceivers()
114 const override;
deadbeef70ab1a12015-09-28 16:53:55 -0700115
deadbeefa67696b2015-09-29 11:56:26 -0700116 rtc::scoped_refptr<DataChannelInterface> CreateDataChannel(
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000117 const std::string& label,
deadbeefa67696b2015-09-29 11:56:26 -0700118 const DataChannelInit* config) override;
119 bool GetStats(StatsObserver* observer,
120 webrtc::MediaStreamTrackInterface* track,
121 StatsOutputLevel level) override;
hbos74e1a4f2016-09-15 23:33:01 -0700122 void GetStats(RTCStatsCollectorCallback* callback) override;
Harald Alvestrand89061872018-01-02 14:08:34 +0100123 void ClearStatsCache() override;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000124
deadbeefa67696b2015-09-29 11:56:26 -0700125 SignalingState signaling_state() override;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000126
deadbeefa67696b2015-09-29 11:56:26 -0700127 IceConnectionState ice_connection_state() override;
128 IceGatheringState ice_gathering_state() override;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000129
deadbeefa67696b2015-09-29 11:56:26 -0700130 const SessionDescriptionInterface* local_description() const override;
131 const SessionDescriptionInterface* remote_description() const override;
deadbeeffe4a8a42016-12-20 17:56:17 -0800132 const SessionDescriptionInterface* current_local_description() const override;
133 const SessionDescriptionInterface* current_remote_description()
134 const override;
135 const SessionDescriptionInterface* pending_local_description() const override;
136 const SessionDescriptionInterface* pending_remote_description()
137 const override;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000138
139 // JSEP01
htaa2a49d92016-03-04 02:51:39 -0800140 // Deprecated, use version without constraints.
deadbeefa67696b2015-09-29 11:56:26 -0700141 void CreateOffer(CreateSessionDescriptionObserver* observer,
142 const MediaConstraintsInterface* constraints) override;
143 void CreateOffer(CreateSessionDescriptionObserver* observer,
144 const RTCOfferAnswerOptions& options) override;
htaa2a49d92016-03-04 02:51:39 -0800145 // Deprecated, use version without constraints.
deadbeefa67696b2015-09-29 11:56:26 -0700146 void CreateAnswer(CreateSessionDescriptionObserver* observer,
147 const MediaConstraintsInterface* constraints) override;
htaa2a49d92016-03-04 02:51:39 -0800148 void CreateAnswer(CreateSessionDescriptionObserver* observer,
149 const RTCOfferAnswerOptions& options) override;
deadbeefa67696b2015-09-29 11:56:26 -0700150 void SetLocalDescription(SetSessionDescriptionObserver* observer,
151 SessionDescriptionInterface* desc) override;
Henrik Boströma4ecf552017-11-23 14:17:07 +0000152 void SetRemoteDescription(SetSessionDescriptionObserver* observer,
153 SessionDescriptionInterface* desc) override;
Henrik Boström31638672017-11-23 17:48:32 +0100154 void SetRemoteDescription(
155 std::unique_ptr<SessionDescriptionInterface> desc,
156 rtc::scoped_refptr<SetRemoteDescriptionObserverInterface> observer)
157 override;
deadbeef46c73892016-11-16 19:42:04 -0800158 PeerConnectionInterface::RTCConfiguration GetConfiguration() override;
deadbeefa67696b2015-09-29 11:56:26 -0700159 bool SetConfiguration(
deadbeef293e9262017-01-11 12:28:30 -0800160 const PeerConnectionInterface::RTCConfiguration& configuration,
161 RTCError* error) override;
162 bool SetConfiguration(
163 const PeerConnectionInterface::RTCConfiguration& configuration) override {
164 return SetConfiguration(configuration, nullptr);
165 }
deadbeefa67696b2015-09-29 11:56:26 -0700166 bool AddIceCandidate(const IceCandidateInterface* candidate) override;
Honghai Zhang7fb69db2016-03-14 11:59:18 -0700167 bool RemoveIceCandidates(
168 const std::vector<cricket::Candidate>& candidates) override;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000169
deadbeefa67696b2015-09-29 11:56:26 -0700170 void RegisterUMAObserver(UMAObserver* observer) override;
buildbot@webrtc.org1567b8c2014-05-08 19:54:16 +0000171
zstein4b979802017-06-02 14:37:37 -0700172 RTCError SetBitrate(const BitrateParameters& bitrate) override;
173
Alex Narest78609d52017-10-20 10:37:47 +0200174 void SetBitrateAllocationStrategy(
175 std::unique_ptr<rtc::BitrateAllocationStrategy>
176 bitrate_allocation_strategy) override;
177
henrika5f6bf242017-11-01 11:06:56 +0100178 void SetAudioPlayout(bool playout) override;
179 void SetAudioRecording(bool recording) override;
180
Elad Alon99c3fe52017-10-13 16:29:40 +0200181 RTC_DEPRECATED bool StartRtcEventLog(rtc::PlatformFile file,
182 int64_t max_size_bytes) override;
Bjorn Tereliusde939432017-11-20 17:38:14 +0100183 bool StartRtcEventLog(std::unique_ptr<RtcEventLogOutput> output,
184 int64_t output_period_ms) override;
ivoc14d5dbe2016-07-04 07:06:55 -0700185 void StopRtcEventLog() override;
186
deadbeefa67696b2015-09-29 11:56:26 -0700187 void Close() override;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000188
Steve Anton2d8609c2018-01-23 16:38:46 -0800189 // PeerConnectionInternal implementation.
190 rtc::Thread* network_thread() const override {
191 return factory_->network_thread();
192 }
193 rtc::Thread* worker_thread() const override {
194 return factory_->worker_thread();
195 }
196 rtc::Thread* signaling_thread() const override {
197 return factory_->signaling_thread();
perkjd61bf802016-03-24 03:16:19 -0700198 }
deadbeefab9b2d12015-10-14 11:33:11 -0700199
Steve Antonbe5e2082018-01-24 15:29:17 -0800200 std::string session_id() const override { return session_id_; }
Steve Anton75737c02017-11-06 10:37:17 -0800201
Steve Anton2d8609c2018-01-23 16:38:46 -0800202 bool initial_offerer() const override {
203 return initial_offerer_ && *initial_offerer_;
204 }
Steve Anton75737c02017-11-06 10:37:17 -0800205
Steve Anton2d8609c2018-01-23 16:38:46 -0800206 cricket::VoiceChannel* voice_channel() const override {
Steve Anton3fe1b152017-12-12 10:20:08 -0800207 if (IsUnifiedPlan()) {
Steve Anton2d8609c2018-01-23 16:38:46 -0800208 // TODO(bugs.webrtc.org/8764): Change stats collection to work with
209 // transceivers.
Steve Anton3fe1b152017-12-12 10:20:08 -0800210 return nullptr;
211 }
Steve Anton4171afb2017-11-20 10:20:22 -0800212 return static_cast<cricket::VoiceChannel*>(
213 GetAudioTransceiver()->internal()->channel());
Steve Anton978b8762017-09-29 12:15:02 -0700214 }
Steve Anton2d8609c2018-01-23 16:38:46 -0800215
216 cricket::VideoChannel* video_channel() const override {
Steve Anton3fe1b152017-12-12 10:20:08 -0800217 if (IsUnifiedPlan()) {
Steve Anton2d8609c2018-01-23 16:38:46 -0800218 // TODO(bugs.webrtc.org/8764): Change stats collection to work with
219 // transceivers.
Steve Anton3fe1b152017-12-12 10:20:08 -0800220 return nullptr;
221 }
Steve Anton4171afb2017-11-20 10:20:22 -0800222 return static_cast<cricket::VideoChannel*>(
223 GetVideoTransceiver()->internal()->channel());
Steve Antond5585ca2017-10-23 14:49:26 -0700224 }
Steve Anton978b8762017-09-29 12:15:02 -0700225
Steve Anton2d8609c2018-01-23 16:38:46 -0800226 std::vector<
227 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>>
Steve Antonb8867112018-02-13 10:07:54 -0800228 GetTransceiversInternal() const override {
Steve Anton2d8609c2018-01-23 16:38:46 -0800229 return transceivers_;
230 }
231
232 bool GetLocalTrackIdBySsrc(uint32_t ssrc, std::string* track_id) override;
233 bool GetRemoteTrackIdBySsrc(uint32_t ssrc, std::string* track_id) override;
234
235 sigslot::signal1<DataChannel*>& SignalDataChannelCreated() override {
236 return SignalDataChannelCreated_;
237 }
238
239 cricket::RtpDataChannel* rtp_data_channel() const override {
Steve Anton75737c02017-11-06 10:37:17 -0800240 return rtp_data_channel_;
Steve Anton978b8762017-09-29 12:15:02 -0700241 }
Steve Anton2d8609c2018-01-23 16:38:46 -0800242
Steve Antonbe5e2082018-01-24 15:29:17 -0800243 std::vector<rtc::scoped_refptr<DataChannel>> sctp_data_channels()
Steve Anton2d8609c2018-01-23 16:38:46 -0800244 const override {
245 return sctp_data_channels_;
246 }
247
248 rtc::Optional<std::string> sctp_content_name() const override {
Steve Anton75737c02017-11-06 10:37:17 -0800249 return sctp_content_name_;
250 }
Steve Anton2d8609c2018-01-23 16:38:46 -0800251
252 rtc::Optional<std::string> sctp_transport_name() const override {
Steve Anton75737c02017-11-06 10:37:17 -0800253 return sctp_transport_name_;
254 }
255
Steve Anton5dfde182018-02-06 10:34:40 -0800256 std::map<std::string, std::string> GetTransportNamesByMid() const override;
257 std::map<std::string, cricket::TransportStats> GetTransportStatsByNames(
258 const std::set<std::string>& transport_names) override;
Steve Anton2d8609c2018-01-23 16:38:46 -0800259 Call::Stats GetCallStats() override;
Steve Anton75737c02017-11-06 10:37:17 -0800260
Steve Anton2d8609c2018-01-23 16:38:46 -0800261 bool GetLocalCertificate(
262 const std::string& transport_name,
263 rtc::scoped_refptr<rtc::RTCCertificate>* certificate) override;
264 std::unique_ptr<rtc::SSLCertificate> GetRemoteSSLCertificate(
265 const std::string& transport_name) override;
266 bool IceRestartPending(const std::string& content_name) const override;
267 bool NeedsIceRestart(const std::string& content_name) const override;
268 bool GetSslRole(const std::string& content_name, rtc::SSLRole* role) override;
Steve Anton7464fca2018-01-19 11:10:37 -0800269
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000270 protected:
deadbeefa67696b2015-09-29 11:56:26 -0700271 ~PeerConnection() override;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000272
273 private:
Henrik Boström31638672017-11-23 17:48:32 +0100274 class SetRemoteDescriptionObserverAdapter;
275 friend class SetRemoteDescriptionObserverAdapter;
276
Steve Anton4171afb2017-11-20 10:20:22 -0800277 struct RtpSenderInfo {
278 RtpSenderInfo() : first_ssrc(0) {}
279 RtpSenderInfo(const std::string& stream_label,
280 const std::string sender_id,
281 uint32_t ssrc)
282 : stream_label(stream_label), sender_id(sender_id), first_ssrc(ssrc) {}
283 bool operator==(const RtpSenderInfo& other) {
deadbeefbda7e0b2015-12-08 17:13:40 -0800284 return this->stream_label == other.stream_label &&
Steve Anton4171afb2017-11-20 10:20:22 -0800285 this->sender_id == other.sender_id &&
286 this->first_ssrc == other.first_ssrc;
deadbeefbda7e0b2015-12-08 17:13:40 -0800287 }
deadbeefab9b2d12015-10-14 11:33:11 -0700288 std::string stream_label;
Steve Anton4171afb2017-11-20 10:20:22 -0800289 std::string sender_id;
290 // An RtpSender can have many SSRCs. The first one is used as a sort of ID
291 // for communicating with the lower layers.
292 uint32_t first_ssrc;
deadbeefab9b2d12015-10-14 11:33:11 -0700293 };
deadbeefab9b2d12015-10-14 11:33:11 -0700294
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000295 // Implements MessageHandler.
deadbeefa67696b2015-09-29 11:56:26 -0700296 void OnMessage(rtc::Message* msg) override;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000297
Steve Anton60776752018-01-10 11:51:34 -0800298 cricket::VoiceMediaChannel* voice_media_channel() const {
299 return voice_channel() ? voice_channel()->media_channel() : nullptr;
300 }
301
302 cricket::VideoMediaChannel* video_media_channel() const {
303 return video_channel() ? video_channel()->media_channel() : nullptr;
304 }
305
Steve Anton4171afb2017-11-20 10:20:22 -0800306 std::vector<rtc::scoped_refptr<RtpSenderProxyWithInternal<RtpSenderInternal>>>
307 GetSendersInternal() const;
308 std::vector<
309 rtc::scoped_refptr<RtpReceiverProxyWithInternal<RtpReceiverInternal>>>
310 GetReceiversInternal() const;
311
312 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
313 GetAudioTransceiver() const;
314 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
315 GetVideoTransceiver() const;
316
deadbeefab9b2d12015-10-14 11:33:11 -0700317 void CreateAudioReceiver(MediaStreamInterface* stream,
Steve Anton4171afb2017-11-20 10:20:22 -0800318 const RtpSenderInfo& remote_sender_info);
perkjf0dcfe22016-03-10 18:32:00 +0100319
deadbeefab9b2d12015-10-14 11:33:11 -0700320 void CreateVideoReceiver(MediaStreamInterface* stream,
Steve Anton4171afb2017-11-20 10:20:22 -0800321 const RtpSenderInfo& remote_sender_info);
Henrik Boström933d8b02017-10-10 10:05:16 -0700322 rtc::scoped_refptr<RtpReceiverInterface> RemoveAndStopReceiver(
Steve Anton4171afb2017-11-20 10:20:22 -0800323 const RtpSenderInfo& remote_sender_info);
korniltsev.anatolyec390b52017-07-24 17:00:25 -0700324
325 // May be called either by AddStream/RemoveStream, or when a track is
326 // added/removed from a stream previously added via AddStream.
327 void AddAudioTrack(AudioTrackInterface* track, MediaStreamInterface* stream);
328 void RemoveAudioTrack(AudioTrackInterface* track,
329 MediaStreamInterface* stream);
330 void AddVideoTrack(VideoTrackInterface* track, MediaStreamInterface* stream);
331 void RemoveVideoTrack(VideoTrackInterface* track,
332 MediaStreamInterface* stream);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000333
Steve Antonf9381f02017-12-14 10:23:57 -0800334 // AddTrack implementation when Unified Plan is specified.
335 RTCErrorOr<rtc::scoped_refptr<RtpSenderInterface>> AddTrackUnifiedPlan(
336 rtc::scoped_refptr<MediaStreamTrackInterface> track,
337 const std::vector<std::string>& stream_labels);
338 // AddTrack implementation when Plan B is specified.
339 RTCErrorOr<rtc::scoped_refptr<RtpSenderInterface>> AddTrackPlanB(
340 rtc::scoped_refptr<MediaStreamTrackInterface> track,
341 const std::vector<std::string>& stream_labels);
342
343 // Returns the first RtpTransceiver suitable for a newly added track, if such
344 // transceiver is available.
345 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
346 FindFirstTransceiverForAddedTrack(
347 rtc::scoped_refptr<MediaStreamTrackInterface> track);
348
349 // RemoveTrack that returns an RTCError.
350 RTCError RemoveTrackInternal(rtc::scoped_refptr<RtpSenderInterface> sender);
351
352 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
353 FindTransceiverBySender(rtc::scoped_refptr<RtpSenderInterface> sender);
354
Steve Anton22da89f2018-01-25 13:58:07 -0800355 // Internal implementation for AddTransceiver family of methods. If
356 // |fire_callback| is set, fires OnRenegotiationNeeded callback if successful.
Steve Anton9158ef62017-11-27 13:01:52 -0800357 RTCErrorOr<rtc::scoped_refptr<RtpTransceiverInterface>> AddTransceiver(
358 cricket::MediaType media_type,
359 rtc::scoped_refptr<MediaStreamTrackInterface> track,
Steve Anton22da89f2018-01-25 13:58:07 -0800360 const RtpTransceiverInit& init,
361 bool fire_callback = true);
Steve Anton9158ef62017-11-27 13:01:52 -0800362
Steve Anton02ee47c2018-01-10 16:26:06 -0800363 rtc::scoped_refptr<RtpSenderProxyWithInternal<RtpSenderInternal>>
364 CreateSender(cricket::MediaType media_type,
365 rtc::scoped_refptr<MediaStreamTrackInterface> track,
366 const std::vector<std::string>& stream_labels);
367
368 rtc::scoped_refptr<RtpReceiverProxyWithInternal<RtpReceiverInternal>>
369 CreateReceiver(cricket::MediaType media_type, const std::string& receiver_id);
370
Steve Antonf9381f02017-12-14 10:23:57 -0800371 // Create a new RtpTransceiver of the given type and add it to the list of
372 // transceivers.
373 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
Steve Anton02ee47c2018-01-10 16:26:06 -0800374 CreateAndAddTransceiver(
375 rtc::scoped_refptr<RtpSenderProxyWithInternal<RtpSenderInternal>> sender,
376 rtc::scoped_refptr<RtpReceiverProxyWithInternal<RtpReceiverInternal>>
377 receiver);
Steve Antonf9381f02017-12-14 10:23:57 -0800378
Steve Antonba818672017-11-06 10:21:57 -0800379 void SetIceConnectionState(IceConnectionState new_state);
380 // Called any time the IceGatheringState changes
381 void OnIceGatheringChange(IceGatheringState new_state);
382 // New ICE candidate has been gathered.
383 void OnIceCandidate(std::unique_ptr<IceCandidateInterface> candidate);
384 // Some local ICE candidates have been removed.
Honghai Zhang7fb69db2016-03-14 11:59:18 -0700385 void OnIceCandidatesRemoved(
Steve Antonba818672017-11-06 10:21:57 -0800386 const std::vector<cricket::Candidate>& candidates);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000387
Steve Antonba818672017-11-06 10:21:57 -0800388 // Update the state, signaling if necessary.
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000389 void ChangeSignalingState(SignalingState signaling_state);
390
deadbeefeb459812015-12-15 19:24:43 -0800391 // Signals from MediaStreamObserver.
392 void OnAudioTrackAdded(AudioTrackInterface* track,
393 MediaStreamInterface* stream);
394 void OnAudioTrackRemoved(AudioTrackInterface* track,
395 MediaStreamInterface* stream);
396 void OnVideoTrackAdded(VideoTrackInterface* track,
397 MediaStreamInterface* stream);
398 void OnVideoTrackRemoved(VideoTrackInterface* track,
399 MediaStreamInterface* stream);
400
Henrik Boström31638672017-11-23 17:48:32 +0100401 void PostSetSessionDescriptionSuccess(
402 SetSessionDescriptionObserver* observer);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000403 void PostSetSessionDescriptionFailure(SetSessionDescriptionObserver* observer,
404 const std::string& error);
deadbeefab9b2d12015-10-14 11:33:11 -0700405 void PostCreateSessionDescriptionFailure(
406 CreateSessionDescriptionObserver* observer,
407 const std::string& error);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000408
Steve Anton8a006912017-12-04 15:25:56 -0800409 // Synchronous implementations of SetLocalDescription/SetRemoteDescription
410 // that return an RTCError instead of invoking a callback.
411 RTCError ApplyLocalDescription(
412 std::unique_ptr<SessionDescriptionInterface> desc);
413 RTCError ApplyRemoteDescription(
414 std::unique_ptr<SessionDescriptionInterface> desc);
415
Steve Antondcc3c022017-12-22 16:02:54 -0800416 // Updates the local RtpTransceivers according to the JSEP rules. Called as
417 // part of setting the local/remote description.
418 RTCError UpdateTransceiversAndDataChannels(
419 cricket::ContentSource source,
Seth Hampsonae8a90a2018-02-13 15:33:48 -0800420 const SessionDescriptionInterface& new_session,
421 const SessionDescriptionInterface* old_local_description,
422 const SessionDescriptionInterface* old_remote_description);
Steve Antondcc3c022017-12-22 16:02:54 -0800423
424 // Either creates or destroys the transceiver's BaseChannel according to the
425 // given media section.
426 RTCError UpdateTransceiverChannel(
427 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
428 transceiver,
429 const cricket::ContentInfo& content,
430 const cricket::ContentGroup* bundle_group);
431
Steve Antonfa2260d2017-12-28 16:38:23 -0800432 // Either creates or destroys the local data channel according to the given
433 // media section.
434 RTCError UpdateDataChannel(cricket::ContentSource source,
435 const cricket::ContentInfo& content,
436 const cricket::ContentGroup* bundle_group);
437
Steve Antondcc3c022017-12-22 16:02:54 -0800438 // Associate the given transceiver according to the JSEP rules.
439 RTCErrorOr<
440 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>>
441 AssociateTransceiver(cricket::ContentSource source,
Seth Hampsonae8a90a2018-02-13 15:33:48 -0800442 SdpType type,
Steve Antondcc3c022017-12-22 16:02:54 -0800443 size_t mline_index,
444 const cricket::ContentInfo& content,
Seth Hampsonae8a90a2018-02-13 15:33:48 -0800445 const cricket::ContentInfo* old_local_content,
446 const cricket::ContentInfo* old_remote_content);
Steve Antondcc3c022017-12-22 16:02:54 -0800447
448 // Returns the RtpTransceiver, if found, that is associated to the given MID.
449 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
450 GetAssociatedTransceiver(const std::string& mid) const;
451
452 // Returns the RtpTransceiver, if found, that was assigned to the given mline
453 // index in CreateOffer.
454 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
455 GetTransceiverByMLineIndex(size_t mline_index) const;
456
457 // Returns an RtpTransciever, if available, that can be used to receive the
458 // given media type according to JSEP rules.
459 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
460 FindAvailableTransceiverToReceive(cricket::MediaType media_type) const;
461
Steve Antoned10bd92017-12-05 10:52:59 -0800462 // Returns the media section in the given session description that is
463 // associated with the RtpTransceiver. Returns null if none found or this
464 // RtpTransceiver is not associated. Logic varies depending on the
465 // SdpSemantics specified in the configuration.
466 const cricket::ContentInfo* FindMediaSectionForTransceiver(
467 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
468 transceiver,
469 const SessionDescriptionInterface* sdesc) const;
470
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000471 bool IsClosed() const {
472 return signaling_state_ == PeerConnectionInterface::kClosed;
473 }
474
deadbeefab9b2d12015-10-14 11:33:11 -0700475 // Returns a MediaSessionOptions struct with options decided by |options|,
476 // the local MediaStreams and DataChannels.
Steve Antondcc3c022017-12-22 16:02:54 -0800477 void GetOptionsForOffer(const PeerConnectionInterface::RTCOfferAnswerOptions&
478 offer_answer_options,
479 cricket::MediaSessionOptions* session_options);
480 void GetOptionsForPlanBOffer(
481 const PeerConnectionInterface::RTCOfferAnswerOptions&
482 offer_answer_options,
483 cricket::MediaSessionOptions* session_options);
484 void GetOptionsForUnifiedPlanOffer(
485 const PeerConnectionInterface::RTCOfferAnswerOptions&
486 offer_answer_options,
deadbeefab9b2d12015-10-14 11:33:11 -0700487 cricket::MediaSessionOptions* session_options);
488
Steve Anton22da89f2018-01-25 13:58:07 -0800489 RTCError HandleLegacyOfferOptions(const RTCOfferAnswerOptions& options);
490 void RemoveRecvDirectionFromReceivingTransceiversOfType(
491 cricket::MediaType media_type);
492 void AddUpToOneReceivingTransceiverOfType(cricket::MediaType media_type);
493 std::vector<
494 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>>
495 GetReceivingTransceiversOfType(cricket::MediaType media_type);
496
deadbeefab9b2d12015-10-14 11:33:11 -0700497 // Returns a MediaSessionOptions struct with options decided by
498 // |constraints|, the local MediaStreams and DataChannels.
Steve Antondcc3c022017-12-22 16:02:54 -0800499 void GetOptionsForAnswer(const RTCOfferAnswerOptions& offer_answer_options,
zhihuang1c378ed2017-08-17 14:10:50 -0700500 cricket::MediaSessionOptions* session_options);
Steve Antondcc3c022017-12-22 16:02:54 -0800501 void GetOptionsForPlanBAnswer(
502 const PeerConnectionInterface::RTCOfferAnswerOptions&
503 offer_answer_options,
504 cricket::MediaSessionOptions* session_options);
505 void GetOptionsForUnifiedPlanAnswer(
506 const PeerConnectionInterface::RTCOfferAnswerOptions&
507 offer_answer_options,
508 cricket::MediaSessionOptions* session_options);
htaa2a49d92016-03-04 02:51:39 -0800509
zhihuang1c378ed2017-08-17 14:10:50 -0700510 // Generates MediaDescriptionOptions for the |session_opts| based on existing
511 // local description or remote description.
512 void GenerateMediaDescriptionOptions(
513 const SessionDescriptionInterface* session_desc,
Steve Anton1d03a752017-11-27 14:30:09 -0800514 RtpTransceiverDirection audio_direction,
515 RtpTransceiverDirection video_direction,
zhihuang1c378ed2017-08-17 14:10:50 -0700516 rtc::Optional<size_t>* audio_index,
517 rtc::Optional<size_t>* video_index,
518 rtc::Optional<size_t>* data_index,
htaa2a49d92016-03-04 02:51:39 -0800519 cricket::MediaSessionOptions* session_options);
deadbeefab9b2d12015-10-14 11:33:11 -0700520
Steve Antonfa2260d2017-12-28 16:38:23 -0800521 // Generates the active MediaDescriptionOptions for the local data channel
522 // given the specified MID.
523 cricket::MediaDescriptionOptions GetMediaDescriptionOptionsForActiveData(
524 const std::string& mid) const;
525
526 // Generates the rejected MediaDescriptionOptions for the local data channel
527 // given the specified MID.
528 cricket::MediaDescriptionOptions GetMediaDescriptionOptionsForRejectedData(
529 const std::string& mid) const;
530
531 // Returns the MID for the data section associated with either the
532 // RtpDataChannel or SCTP data channel, if it has been set. If no data
533 // channels are configured this will return nullopt.
534 rtc::Optional<std::string> GetDataMid() const;
535
Steve Anton4171afb2017-11-20 10:20:22 -0800536 // Remove all local and remote senders of type |media_type|.
deadbeeffaac4972015-11-12 15:33:07 -0800537 // Called when a media type is rejected (m-line set to port 0).
Steve Anton4171afb2017-11-20 10:20:22 -0800538 void RemoveSenders(cricket::MediaType media_type);
deadbeeffaac4972015-11-12 15:33:07 -0800539
deadbeefbda7e0b2015-12-08 17:13:40 -0800540 // Makes sure a MediaStreamTrack is created for each StreamParam in |streams|,
541 // and existing MediaStreamTracks are removed if there is no corresponding
542 // StreamParam. If |default_track_needed| is true, a default MediaStreamTrack
543 // is created if it doesn't exist; if false, it's removed if it exists.
544 // |media_type| is the type of the |streams| and can be either audio or video.
deadbeefab9b2d12015-10-14 11:33:11 -0700545 // If a new MediaStream is created it is added to |new_streams|.
Steve Anton4171afb2017-11-20 10:20:22 -0800546 void UpdateRemoteSendersList(
deadbeefab9b2d12015-10-14 11:33:11 -0700547 const std::vector<cricket::StreamParams>& streams,
deadbeefbda7e0b2015-12-08 17:13:40 -0800548 bool default_track_needed,
deadbeefab9b2d12015-10-14 11:33:11 -0700549 cricket::MediaType media_type,
550 StreamCollection* new_streams);
551
Steve Anton4171afb2017-11-20 10:20:22 -0800552 // Triggered when a remote sender has been seen for the first time in a remote
deadbeefab9b2d12015-10-14 11:33:11 -0700553 // session description. It creates a remote MediaStreamTrackInterface
554 // implementation and triggers CreateAudioReceiver or CreateVideoReceiver.
Steve Anton4171afb2017-11-20 10:20:22 -0800555 void OnRemoteSenderAdded(const RtpSenderInfo& sender_info,
556 cricket::MediaType media_type);
deadbeefab9b2d12015-10-14 11:33:11 -0700557
Steve Anton4171afb2017-11-20 10:20:22 -0800558 // Triggered when a remote sender has been removed from a remote session
559 // description. It removes the remote sender with id |sender_id| from a remote
deadbeefab9b2d12015-10-14 11:33:11 -0700560 // MediaStream and triggers DestroyAudioReceiver or DestroyVideoReceiver.
Steve Anton4171afb2017-11-20 10:20:22 -0800561 void OnRemoteSenderRemoved(const RtpSenderInfo& sender_info,
562 cricket::MediaType media_type);
deadbeefab9b2d12015-10-14 11:33:11 -0700563
564 // Finds remote MediaStreams without any tracks and removes them from
565 // |remote_streams_| and notifies the observer that the MediaStreams no longer
566 // exist.
567 void UpdateEndedRemoteMediaStreams();
568
deadbeefab9b2d12015-10-14 11:33:11 -0700569 // Loops through the vector of |streams| and finds added and removed
570 // StreamParams since last time this method was called.
Steve Anton4171afb2017-11-20 10:20:22 -0800571 // For each new or removed StreamParam, OnLocalSenderSeen or
572 // OnLocalSenderRemoved is invoked.
573 void UpdateLocalSenders(const std::vector<cricket::StreamParams>& streams,
574 cricket::MediaType media_type);
deadbeefab9b2d12015-10-14 11:33:11 -0700575
Steve Anton4171afb2017-11-20 10:20:22 -0800576 // Triggered when a local sender has been seen for the first time in a local
deadbeefab9b2d12015-10-14 11:33:11 -0700577 // session description.
578 // This method triggers CreateAudioSender or CreateVideoSender if the rtp
579 // streams in the local SessionDescription can be mapped to a MediaStreamTrack
580 // in a MediaStream in |local_streams_|
Steve Anton4171afb2017-11-20 10:20:22 -0800581 void OnLocalSenderAdded(const RtpSenderInfo& sender_info,
582 cricket::MediaType media_type);
deadbeefab9b2d12015-10-14 11:33:11 -0700583
Steve Anton4171afb2017-11-20 10:20:22 -0800584 // Triggered when a local sender has been removed from a local session
deadbeefab9b2d12015-10-14 11:33:11 -0700585 // description.
586 // This method triggers DestroyAudioSender or DestroyVideoSender if a stream
587 // has been removed from the local SessionDescription and the stream can be
588 // mapped to a MediaStreamTrack in a MediaStream in |local_streams_|.
Steve Anton4171afb2017-11-20 10:20:22 -0800589 void OnLocalSenderRemoved(const RtpSenderInfo& sender_info,
590 cricket::MediaType media_type);
deadbeefab9b2d12015-10-14 11:33:11 -0700591
592 void UpdateLocalRtpDataChannels(const cricket::StreamParamsVec& streams);
593 void UpdateRemoteRtpDataChannels(const cricket::StreamParamsVec& streams);
594 void UpdateClosingRtpDataChannels(
595 const std::vector<std::string>& active_channels,
596 bool is_local_update);
597 void CreateRemoteRtpDataChannel(const std::string& label,
598 uint32_t remote_ssrc);
599
600 // Creates channel and adds it to the collection of DataChannels that will
601 // be offered in a SessionDescription.
602 rtc::scoped_refptr<DataChannel> InternalCreateDataChannel(
603 const std::string& label,
604 const InternalDataChannelInit* config);
605
606 // Checks if any data channel has been added.
607 bool HasDataChannels() const;
608
609 void AllocateSctpSids(rtc::SSLRole role);
610 void OnSctpDataChannelClosed(DataChannel* channel);
611
deadbeefab9b2d12015-10-14 11:33:11 -0700612 void OnDataChannelDestroyed();
Steve Antonba818672017-11-06 10:21:57 -0800613 // Called when a valid data channel OPEN message is received.
deadbeefab9b2d12015-10-14 11:33:11 -0700614 void OnDataChannelOpenMessage(const std::string& label,
615 const InternalDataChannelInit& config);
616
Steve Anton4171afb2017-11-20 10:20:22 -0800617 // Returns true if the PeerConnection is configured to use Unified Plan
618 // semantics for creating offers/answers and setting local/remote
619 // descriptions. If this is true the RtpTransceiver API will also be available
620 // to the user. If this is false, Plan B semantics are assumed.
Steve Anton79e79602017-11-20 10:25:56 -0800621 // TODO(bugs.webrtc.org/8530): Flip the default to be Unified Plan once
622 // sufficient time has passed.
623 bool IsUnifiedPlan() const {
624 return configuration_.sdp_semantics == SdpSemantics::kUnifiedPlan;
625 }
Steve Anton4171afb2017-11-20 10:20:22 -0800626
627 // Is there an RtpSender of the given type?
zhihuang1c378ed2017-08-17 14:10:50 -0700628 bool HasRtpSender(cricket::MediaType type) const;
deadbeeffac06552015-11-25 11:26:01 -0800629
Steve Anton4171afb2017-11-20 10:20:22 -0800630 // Return the RtpSender with the given track attached.
631 rtc::scoped_refptr<RtpSenderProxyWithInternal<RtpSenderInternal>>
632 FindSenderForTrack(MediaStreamTrackInterface* track) const;
deadbeef70ab1a12015-09-28 16:53:55 -0700633
Steve Anton4171afb2017-11-20 10:20:22 -0800634 // Return the RtpSender with the given id, or null if none exists.
635 rtc::scoped_refptr<RtpSenderProxyWithInternal<RtpSenderInternal>>
636 FindSenderById(const std::string& sender_id) const;
637
638 // Return the RtpReceiver with the given id, or null if none exists.
639 rtc::scoped_refptr<RtpReceiverProxyWithInternal<RtpReceiverInternal>>
640 FindReceiverById(const std::string& receiver_id) const;
641
642 std::vector<RtpSenderInfo>* GetRemoteSenderInfos(
643 cricket::MediaType media_type);
644 std::vector<RtpSenderInfo>* GetLocalSenderInfos(
645 cricket::MediaType media_type);
646 const RtpSenderInfo* FindSenderInfo(const std::vector<RtpSenderInfo>& infos,
647 const std::string& stream_label,
648 const std::string sender_id) const;
deadbeefab9b2d12015-10-14 11:33:11 -0700649
650 // Returns the specified SCTP DataChannel in sctp_data_channels_,
651 // or nullptr if not found.
652 DataChannel* FindDataChannelBySid(int sid) const;
653
Taylor Brandstettera1c30352016-05-13 08:15:11 -0700654 // Called when first configuring the port allocator.
deadbeef91dd5672016-05-18 16:55:30 -0700655 bool InitializePortAllocator_n(const RTCConfiguration& configuration);
deadbeef293e9262017-01-11 12:28:30 -0800656 // Called when SetConfiguration is called to apply the supported subset
657 // of the configuration on the network thread.
658 bool ReconfigurePortAllocator_n(
659 const cricket::ServerAddresses& stun_servers,
660 const std::vector<cricket::RelayServerConfig>& turn_servers,
661 IceTransportsType type,
662 int candidate_pool_size,
Jonas Orelandbdcee282017-10-10 14:01:40 +0200663 bool prune_turn_ports,
Qingsi Wangdb53f8e2018-02-20 14:45:49 -0800664 webrtc::TurnCustomizer* turn_customizer,
665 rtc::Optional<int> stun_candidate_keepalive_interval);
Taylor Brandstettera1c30352016-05-13 08:15:11 -0700666
Elad Alon99c3fe52017-10-13 16:29:40 +0200667 // Starts output of an RTC event log to the given output object.
ivoc14d5dbe2016-07-04 07:06:55 -0700668 // This function should only be called from the worker thread.
Bjorn Tereliusde939432017-11-20 17:38:14 +0100669 bool StartRtcEventLog_w(std::unique_ptr<RtcEventLogOutput> output,
670 int64_t output_period_ms);
Elad Alon99c3fe52017-10-13 16:29:40 +0200671
Elad Alonacb24172017-10-06 14:32:13 +0200672 // Stops recording an RTC event log.
ivoc14d5dbe2016-07-04 07:06:55 -0700673 // This function should only be called from the worker thread.
674 void StopRtcEventLog_w();
675
Steve Anton038834f2017-07-14 15:59:59 -0700676 // Ensures the configuration doesn't have any parameters with invalid values,
677 // or values that conflict with other parameters.
678 //
679 // Returns RTCError::OK() if there are no issues.
680 RTCError ValidateConfiguration(const RTCConfiguration& config) const;
681
Steve Antonba818672017-11-06 10:21:57 -0800682 cricket::ChannelManager* channel_manager() const;
683 MetricsObserverInterface* metrics_observer() const;
684
Steve Antonf8470812017-12-04 10:46:21 -0800685 enum class SessionError {
686 kNone, // No error.
687 kContent, // Error in BaseChannel SetLocalContent/SetRemoteContent.
688 kTransport, // Error from the underlying transport.
689 };
690
Steve Anton75737c02017-11-06 10:37:17 -0800691 // Returns the last error in the session. See the enum above for details.
Steve Antonf8470812017-12-04 10:46:21 -0800692 SessionError session_error() const { return session_error_; }
693 const std::string& session_error_desc() const { return session_error_desc_; }
Steve Anton75737c02017-11-06 10:37:17 -0800694
Steve Anton75737c02017-11-06 10:37:17 -0800695 cricket::BaseChannel* GetChannel(const std::string& content_name);
696
697 // Get current SSL role used by SCTP's underlying transport.
698 bool GetSctpSslRole(rtc::SSLRole* role);
699
Steve Anton75737c02017-11-06 10:37:17 -0800700 cricket::IceConfig ParseIceConfig(
701 const PeerConnectionInterface::RTCConfiguration& config) const;
702
Steve Anton75737c02017-11-06 10:37:17 -0800703 // Implements DataChannelProviderInterface.
704 bool SendData(const cricket::SendDataParams& params,
705 const rtc::CopyOnWriteBuffer& payload,
706 cricket::SendDataResult* result) override;
707 bool ConnectDataChannel(DataChannel* webrtc_data_channel) override;
708 void DisconnectDataChannel(DataChannel* webrtc_data_channel) override;
709 void AddSctpDataStream(int sid) override;
710 void RemoveSctpDataStream(int sid) override;
711 bool ReadyToSendData() const override;
712
713 cricket::DataChannelType data_channel_type() const;
714
Steve Anton75737c02017-11-06 10:37:17 -0800715 // Called when an RTCCertificate is generated or retrieved by
716 // WebRTCSessionDescriptionFactory. Should happen before setLocalDescription.
717 void OnCertificateReady(
718 const rtc::scoped_refptr<rtc::RTCCertificate>& certificate);
719 void OnDtlsSrtpSetupFailure(cricket::BaseChannel*, bool rtcp);
720
721 cricket::TransportController* transport_controller() const {
722 return transport_controller_.get();
723 }
724
Steve Anton75737c02017-11-06 10:37:17 -0800725 // Non-const versions of local_description()/remote_description(), for use
726 // internally.
727 SessionDescriptionInterface* mutable_local_description() {
728 return pending_local_description_ ? pending_local_description_.get()
729 : current_local_description_.get();
730 }
731 SessionDescriptionInterface* mutable_remote_description() {
732 return pending_remote_description_ ? pending_remote_description_.get()
733 : current_remote_description_.get();
734 }
735
736 // Updates the error state, signaling if necessary.
Steve Antonf8470812017-12-04 10:46:21 -0800737 void SetSessionError(SessionError error, const std::string& error_desc);
Steve Anton75737c02017-11-06 10:37:17 -0800738
Steve Anton3828c062017-12-06 10:34:51 -0800739 RTCError UpdateSessionState(SdpType type, cricket::ContentSource source);
Steve Anton75737c02017-11-06 10:37:17 -0800740 // Push the media parts of the local or remote session description
741 // down to all of the channels.
Steve Anton3828c062017-12-06 10:34:51 -0800742 RTCError PushdownMediaDescription(SdpType type,
Steve Anton8a006912017-12-04 15:25:56 -0800743 cricket::ContentSource source);
Steve Anton75737c02017-11-06 10:37:17 -0800744 bool PushdownSctpParameters_n(cricket::ContentSource source);
745
Steve Anton8a006912017-12-04 15:25:56 -0800746 RTCError PushdownTransportDescription(cricket::ContentSource source,
Steve Anton3828c062017-12-06 10:34:51 -0800747 SdpType type);
Steve Anton75737c02017-11-06 10:37:17 -0800748
749 // Returns true and the TransportInfo of the given |content_name|
750 // from |description|. Returns false if it's not available.
751 static bool GetTransportDescription(
752 const cricket::SessionDescription* description,
753 const std::string& content_name,
754 cricket::TransportDescription* info);
755
Steve Antoneda6ccd2017-12-04 10:21:55 -0800756 // Returns the transport name for the given media section identified by |mid|.
757 // If BUNDLE is enabled and the media section is part of the bundle group,
758 // the transport name will be the first mid in the bundle group. Otherwise,
759 // the transport name will be the mid of the media section.
760 std::string GetTransportNameForMediaSection(
761 const std::string& mid,
762 const cricket::ContentGroup* bundle_group) const;
Steve Anton75737c02017-11-06 10:37:17 -0800763
764 // Cause all the BaseChannels in the bundle group to have the same
765 // transport channel.
766 bool EnableBundle(const cricket::ContentGroup& bundle);
767
768 // Enables media channels to allow sending of media.
Steve Antoned10bd92017-12-05 10:52:59 -0800769 // This enables media to flow on all configured audio/video channels and the
770 // RtpDataChannel.
771 void EnableSending();
Steve Anton3fe1b152017-12-12 10:20:08 -0800772
Steve Anton8af21862017-12-15 11:20:13 -0800773 // Destroys all BaseChannels and destroys the SCTP data channel, if present.
774 void DestroyAllChannels();
Steve Anton3fe1b152017-12-12 10:20:08 -0800775
Steve Anton75737c02017-11-06 10:37:17 -0800776 // Returns the media index for a local ice candidate given the content name.
777 // Returns false if the local session description does not have a media
778 // content called |content_name|.
779 bool GetLocalCandidateMediaIndex(const std::string& content_name,
780 int* sdp_mline_index);
781 // Uses all remote candidates in |remote_desc| in this session.
782 bool UseCandidatesInSessionDescription(
783 const SessionDescriptionInterface* remote_desc);
784 // Uses |candidate| in this session.
785 bool UseCandidate(const IceCandidateInterface* candidate);
786 // Deletes the corresponding channel of contents that don't exist in |desc|.
787 // |desc| can be null. This means that all channels are deleted.
788 void RemoveUnusedChannels(const cricket::SessionDescription* desc);
789
790 // Allocates media channels based on the |desc|. If |desc| doesn't have
791 // the BUNDLE option, this method will disable BUNDLE in PortAllocator.
792 // This method will also delete any existing media channels before creating.
Steve Antondcc3c022017-12-22 16:02:54 -0800793 RTCError CreateChannels(const cricket::SessionDescription& desc);
794
795 // If the BUNDLE policy is max-bundle, then we know for sure that all
796 // transports will be bundled from the start. This method returns the BUNDLE
797 // group if that's the case, or null if BUNDLE will be negotiated later. An
798 // error is returned if max-bundle is specified but the session description
799 // does not have a BUNDLE group.
800 RTCErrorOr<const cricket::ContentGroup*> GetEarlyBundleGroup(
801 const cricket::SessionDescription& desc) const;
Steve Anton75737c02017-11-06 10:37:17 -0800802
803 // Helper methods to create media channels.
Steve Antoneda6ccd2017-12-04 10:21:55 -0800804 cricket::VoiceChannel* CreateVoiceChannel(const std::string& mid,
805 const std::string& transport_name);
806 cricket::VideoChannel* CreateVideoChannel(const std::string& mid,
807 const std::string& transport_name);
808 bool CreateDataChannel(const std::string& mid,
809 const std::string& transport_name);
Steve Anton75737c02017-11-06 10:37:17 -0800810
Steve Anton75737c02017-11-06 10:37:17 -0800811 bool CreateSctpTransport_n(const std::string& content_name,
812 const std::string& transport_name);
813 // For bundling.
814 void ChangeSctpTransport_n(const std::string& transport_name);
815 void DestroySctpTransport_n();
816 // SctpTransport signal handlers. Needed to marshal signals from the network
817 // to signaling thread.
818 void OnSctpTransportReadyToSendData_n();
819 // This may be called with "false" if the direction of the m= section causes
820 // us to tear down the SCTP connection.
821 void OnSctpTransportReadyToSendData_s(bool ready);
822 void OnSctpTransportDataReceived_n(const cricket::ReceiveDataParams& params,
823 const rtc::CopyOnWriteBuffer& payload);
824 // Beyond just firing the signal to the signaling thread, listens to SCTP
825 // CONTROL messages on unused SIDs and processes them as OPEN messages.
826 void OnSctpTransportDataReceived_s(const cricket::ReceiveDataParams& params,
827 const rtc::CopyOnWriteBuffer& payload);
828 void OnSctpStreamClosedRemotely_n(int sid);
829
830 bool ValidateBundleSettings(const cricket::SessionDescription* desc);
831 bool HasRtcpMuxEnabled(const cricket::ContentInfo* content);
832 // Below methods are helper methods which verifies SDP.
Steve Anton8a006912017-12-04 15:25:56 -0800833 RTCError ValidateSessionDescription(const SessionDescriptionInterface* sdesc,
834 cricket::ContentSource source);
Steve Anton75737c02017-11-06 10:37:17 -0800835
Steve Anton3828c062017-12-06 10:34:51 -0800836 // Check if a call to SetLocalDescription is acceptable with a session
837 // description of the given type.
838 bool ExpectSetLocalDescription(SdpType type);
839 // Check if a call to SetRemoteDescription is acceptable with a session
840 // description of the given type.
841 bool ExpectSetRemoteDescription(SdpType type);
Steve Anton75737c02017-11-06 10:37:17 -0800842 // Verifies a=setup attribute as per RFC 5763.
843 bool ValidateDtlsSetupAttribute(const cricket::SessionDescription* desc,
Steve Anton3828c062017-12-06 10:34:51 -0800844 SdpType type);
Steve Anton75737c02017-11-06 10:37:17 -0800845
846 // Returns true if we are ready to push down the remote candidate.
847 // |remote_desc| is the new remote description, or NULL if the current remote
848 // description should be used. Output |valid| is true if the candidate media
849 // index is valid.
850 bool ReadyToUseRemoteCandidate(const IceCandidateInterface* candidate,
851 const SessionDescriptionInterface* remote_desc,
852 bool* valid);
853
854 // Returns true if SRTP (either using DTLS-SRTP or SDES) is required by
855 // this session.
856 bool SrtpRequired() const;
857
858 // TransportController signal handlers.
859 void OnTransportControllerConnectionState(cricket::IceConnectionState state);
860 void OnTransportControllerGatheringState(cricket::IceGatheringState state);
861 void OnTransportControllerCandidatesGathered(
862 const std::string& transport_name,
863 const std::vector<cricket::Candidate>& candidates);
864 void OnTransportControllerCandidatesRemoved(
865 const std::vector<cricket::Candidate>& candidates);
866 void OnTransportControllerDtlsHandshakeError(rtc::SSLHandshakeError error);
867
Steve Antonf8470812017-12-04 10:46:21 -0800868 const char* SessionErrorToString(SessionError error) const;
Steve Anton75737c02017-11-06 10:37:17 -0800869 std::string GetSessionErrorMsg();
870
871 // Invoked when TransportController connection completion is signaled.
872 // Reports stats for all transports in use.
873 void ReportTransportStats();
874
875 // Gather the usage of IPv4/IPv6 as best connection.
876 void ReportBestConnectionState(const cricket::TransportStats& stats);
877
Steve Antonc7b964c2018-02-01 14:39:45 -0800878 void ReportNegotiatedCiphers(const cricket::TransportStats& stats,
879 const std::set<cricket::MediaType>& media_types);
Steve Anton75737c02017-11-06 10:37:17 -0800880
881 void OnSentPacket_w(const rtc::SentPacket& sent_packet);
882
883 const std::string GetTransportName(const std::string& content_name);
884
885 void DestroyRtcpTransport_n(const std::string& transport_name);
Steve Anton6fec8802017-12-04 10:37:29 -0800886
887 // Destroys and clears the BaseChannel associated with the given transceiver,
888 // if such channel is set.
889 void DestroyTransceiverChannel(
890 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
891 transceiver);
892
893 // Destroys the RTP data channel and/or the SCTP data channel and clears it.
Steve Anton75737c02017-11-06 10:37:17 -0800894 void DestroyDataChannel();
895
Steve Anton6fec8802017-12-04 10:37:29 -0800896 // Destroys the given BaseChannel. The channel cannot be accessed after this
897 // method is called.
898 void DestroyBaseChannel(cricket::BaseChannel* channel);
899
Steve Anton2d8609c2018-01-23 16:38:46 -0800900 sigslot::signal1<DataChannel*> SignalDataChannelCreated_;
901
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000902 // Storing the factory as a scoped reference pointer ensures that the memory
903 // in the PeerConnectionFactoryImpl remains available as long as the
904 // PeerConnection is running. It is passed to PeerConnection as a raw pointer.
905 // However, since the reference counting is done in the
deadbeefab9b2d12015-10-14 11:33:11 -0700906 // PeerConnectionFactoryInterface all instances created using the raw pointer
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000907 // will refer to the same reference count.
buildbot@webrtc.orgd4e598d2014-07-29 17:36:52 +0000908 rtc::scoped_refptr<PeerConnectionFactory> factory_;
Steve Antonba818672017-11-06 10:21:57 -0800909 PeerConnectionObserver* observer_ = nullptr;
Taylor Brandstetter215fda72018-01-03 17:14:20 -0800910 rtc::scoped_refptr<UMAObserver> uma_observer_ = nullptr;
terelius33860252017-05-12 23:37:18 -0700911
912 // The EventLog needs to outlive |call_| (and any other object that uses it).
913 std::unique_ptr<RtcEventLog> event_log_;
914
Steve Antonba818672017-11-06 10:21:57 -0800915 SignalingState signaling_state_ = kStable;
916 IceConnectionState ice_connection_state_ = kIceConnectionNew;
917 IceGatheringState ice_gathering_state_ = kIceGatheringNew;
deadbeef46c73892016-11-16 19:42:04 -0800918 PeerConnectionInterface::RTCConfiguration configuration_;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000919
kwibergd1fe2812016-04-27 06:47:29 -0700920 std::unique_ptr<cricket::PortAllocator> port_allocator_;
deadbeefab9b2d12015-10-14 11:33:11 -0700921
zhihuang8f65cdf2016-05-06 18:40:30 -0700922 // One PeerConnection has only one RTCP CNAME.
923 // https://tools.ietf.org/html/draft-ietf-rtcweb-rtp-usage-26#section-4.9
924 std::string rtcp_cname_;
925
deadbeefab9b2d12015-10-14 11:33:11 -0700926 // Streams added via AddStream.
927 rtc::scoped_refptr<StreamCollection> local_streams_;
928 // Streams created as a result of SetRemoteDescription.
929 rtc::scoped_refptr<StreamCollection> remote_streams_;
930
kwibergd1fe2812016-04-27 06:47:29 -0700931 std::vector<std::unique_ptr<MediaStreamObserver>> stream_observers_;
deadbeefeb459812015-12-15 19:24:43 -0800932
Steve Anton4171afb2017-11-20 10:20:22 -0800933 // These lists store sender info seen in local/remote descriptions.
934 std::vector<RtpSenderInfo> remote_audio_sender_infos_;
935 std::vector<RtpSenderInfo> remote_video_sender_infos_;
936 std::vector<RtpSenderInfo> local_audio_sender_infos_;
937 std::vector<RtpSenderInfo> local_video_sender_infos_;
deadbeefab9b2d12015-10-14 11:33:11 -0700938
939 SctpSidAllocator sid_allocator_;
940 // label -> DataChannel
941 std::map<std::string, rtc::scoped_refptr<DataChannel>> rtp_data_channels_;
942 std::vector<rtc::scoped_refptr<DataChannel>> sctp_data_channels_;
deadbeefbd292462015-12-14 18:15:29 -0800943 std::vector<rtc::scoped_refptr<DataChannel>> sctp_data_channels_to_free_;
deadbeefab9b2d12015-10-14 11:33:11 -0700944
deadbeefbda7e0b2015-12-08 17:13:40 -0800945 bool remote_peer_supports_msid_ = false;
deadbeef70ab1a12015-09-28 16:53:55 -0700946
terelius33860252017-05-12 23:37:18 -0700947 std::unique_ptr<Call> call_;
terelius33860252017-05-12 23:37:18 -0700948 std::unique_ptr<StatsCollector> stats_; // A pointer is passed to senders_
949 rtc::scoped_refptr<RTCStatsCollector> stats_collector_;
950
deadbeefa601f5c2016-06-06 14:27:39 -0700951 std::vector<
Steve Anton4171afb2017-11-20 10:20:22 -0800952 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>>
953 transceivers_;
Steve Antondcc3c022017-12-22 16:02:54 -0800954 // MIDs that have been seen either by SetLocalDescription or
955 // SetRemoteDescription over the life of the PeerConnection.
956 std::set<std::string> seen_mids_;
Steve Anton75737c02017-11-06 10:37:17 -0800957
Steve Antonf8470812017-12-04 10:46:21 -0800958 SessionError session_error_ = SessionError::kNone;
959 std::string session_error_desc_;
Steve Anton75737c02017-11-06 10:37:17 -0800960
961 std::string session_id_;
962 rtc::Optional<bool> initial_offerer_;
963
964 std::unique_ptr<cricket::TransportController> transport_controller_;
965 std::unique_ptr<cricket::SctpTransportInternalFactory> sctp_factory_;
Steve Anton75737c02017-11-06 10:37:17 -0800966 // |rtp_data_channel_| is used if in RTP data channel mode, |sctp_transport_|
967 // when using SCTP.
968 cricket::RtpDataChannel* rtp_data_channel_ = nullptr;
969
970 std::unique_ptr<cricket::SctpTransportInternal> sctp_transport_;
971 // |sctp_transport_name_| keeps track of what DTLS transport the SCTP
972 // transport is using (which can change due to bundling).
973 rtc::Optional<std::string> sctp_transport_name_;
974 // |sctp_content_name_| is the content name (MID) in SDP.
975 rtc::Optional<std::string> sctp_content_name_;
976 // Value cached on signaling thread. Only updated when SctpReadyToSendData
977 // fires on the signaling thread.
978 bool sctp_ready_to_send_data_ = false;
979 // Same as signals provided by SctpTransport, but these are guaranteed to
980 // fire on the signaling thread, whereas SctpTransport fires on the networking
981 // thread.
982 // |sctp_invoker_| is used so that any signals queued on the signaling thread
983 // from the network thread are immediately discarded if the SctpTransport is
984 // destroyed (due to m= section being rejected).
985 // TODO(deadbeef): Use a proxy object to ensure that method calls/signals
986 // are marshalled to the right thread. Could almost use proxy.h for this,
987 // but it doesn't have a mechanism for marshalling sigslot::signals
988 std::unique_ptr<rtc::AsyncInvoker> sctp_invoker_;
989 sigslot::signal1<bool> SignalSctpReadyToSendData;
990 sigslot::signal2<const cricket::ReceiveDataParams&,
991 const rtc::CopyOnWriteBuffer&>
992 SignalSctpDataReceived;
993 sigslot::signal1<int> SignalSctpStreamClosedRemotely;
994
995 std::unique_ptr<SessionDescriptionInterface> current_local_description_;
996 std::unique_ptr<SessionDescriptionInterface> pending_local_description_;
997 std::unique_ptr<SessionDescriptionInterface> current_remote_description_;
998 std::unique_ptr<SessionDescriptionInterface> pending_remote_description_;
999 bool dtls_enabled_ = false;
1000 // Specifies which kind of data channel is allowed. This is controlled
1001 // by the chrome command-line flag and constraints:
1002 // 1. If chrome command-line switch 'enable-sctp-data-channels' is enabled,
1003 // constraint kEnableDtlsSrtp is true, and constaint kEnableRtpDataChannels is
1004 // not set or false, SCTP is allowed (DCT_SCTP);
1005 // 2. If constraint kEnableRtpDataChannels is true, RTP is allowed (DCT_RTP);
1006 // 3. If both 1&2 are false, data channel is not allowed (DCT_NONE).
1007 cricket::DataChannelType data_channel_type_ = cricket::DCT_NONE;
1008 // List of content names for which the remote side triggered an ICE restart.
1009 std::set<std::string> pending_ice_restarts_;
1010
1011 std::unique_ptr<WebRtcSessionDescriptionFactory> webrtc_session_desc_factory_;
1012
1013 // Member variables for caching global options.
1014 cricket::AudioOptions audio_options_;
1015 cricket::VideoOptions video_options_;
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001016};
1017
1018} // namespace webrtc
1019
Mirko Bonadei92ea95e2017-09-15 06:47:31 +02001020#endif // PC_PEERCONNECTION_H_