henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 1 | /* |
kjellander | b24317b | 2016-02-10 07:54:43 -0800 | [diff] [blame] | 2 | * Copyright 2012 The WebRTC project authors. All Rights Reserved. |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 3 | * |
kjellander | b24317b | 2016-02-10 07:54:43 -0800 | [diff] [blame] | 4 | * 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.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 9 | */ |
| 10 | |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 11 | #include "pc/peerconnection.h" |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 12 | |
deadbeef | eb45981 | 2015-12-15 19:24:43 -0800 | [diff] [blame] | 13 | #include <algorithm> |
kwiberg | 0eb15ed | 2015-12-17 03:04:15 -0800 | [diff] [blame] | 14 | #include <utility> |
| 15 | #include <vector> |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 16 | |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 17 | #include "api/jsepicecandidate.h" |
| 18 | #include "api/jsepsessiondescription.h" |
| 19 | #include "api/mediaconstraintsinterface.h" |
| 20 | #include "api/mediastreamproxy.h" |
| 21 | #include "api/mediastreamtrackproxy.h" |
| 22 | #include "call/call.h" |
Elad Alon | 83ccca1 | 2017-10-04 13:18:26 +0200 | [diff] [blame] | 23 | #include "logging/rtc_event_log/output/rtc_event_log_output_file.h" |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 24 | #include "logging/rtc_event_log/rtc_event_log.h" |
| 25 | #include "media/sctp/sctptransport.h" |
| 26 | #include "pc/audiotrack.h" |
| 27 | #include "pc/channelmanager.h" |
| 28 | #include "pc/dtmfsender.h" |
| 29 | #include "pc/mediastream.h" |
| 30 | #include "pc/mediastreamobserver.h" |
| 31 | #include "pc/remoteaudiosource.h" |
| 32 | #include "pc/rtpreceiver.h" |
| 33 | #include "pc/rtpsender.h" |
| 34 | #include "pc/streamcollection.h" |
| 35 | #include "pc/videocapturertracksource.h" |
| 36 | #include "pc/videotrack.h" |
| 37 | #include "rtc_base/bind.h" |
| 38 | #include "rtc_base/checks.h" |
| 39 | #include "rtc_base/logging.h" |
Elad Alon | 83ccca1 | 2017-10-04 13:18:26 +0200 | [diff] [blame] | 40 | #include "rtc_base/ptr_util.h" |
| 41 | #include "rtc_base/safe_conversions.h" |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 42 | #include "rtc_base/stringencode.h" |
| 43 | #include "rtc_base/stringutils.h" |
| 44 | #include "rtc_base/trace_event.h" |
| 45 | #include "system_wrappers/include/clock.h" |
| 46 | #include "system_wrappers/include/field_trial.h" |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 47 | |
| 48 | namespace { |
| 49 | |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 50 | using webrtc::DataChannel; |
| 51 | using webrtc::MediaConstraintsInterface; |
| 52 | using webrtc::MediaStreamInterface; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 53 | using webrtc::PeerConnectionInterface; |
deadbeef | 293e926 | 2017-01-11 12:28:30 -0800 | [diff] [blame] | 54 | using webrtc::RTCError; |
| 55 | using webrtc::RTCErrorType; |
deadbeef | a601f5c | 2016-06-06 14:27:39 -0700 | [diff] [blame] | 56 | using webrtc::RtpSenderInternal; |
deadbeef | fac0655 | 2015-11-25 11:26:01 -0800 | [diff] [blame] | 57 | using webrtc::RtpSenderInterface; |
deadbeef | a601f5c | 2016-06-06 14:27:39 -0700 | [diff] [blame] | 58 | using webrtc::RtpSenderProxy; |
| 59 | using webrtc::RtpSenderProxyWithInternal; |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 60 | using webrtc::StreamCollection; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 61 | |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 62 | static const char kDefaultStreamLabel[] = "default"; |
| 63 | static const char kDefaultAudioTrackLabel[] = "defaulta0"; |
| 64 | static const char kDefaultVideoTrackLabel[] = "defaultv0"; |
| 65 | |
zhihuang | 8f65cdf | 2016-05-06 18:40:30 -0700 | [diff] [blame] | 66 | // The length of RTCP CNAMEs. |
| 67 | static const int kRtcpCnameLength = 16; |
| 68 | |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 69 | enum { |
wu@webrtc.org | 91053e7 | 2013-08-10 07:18:04 +0000 | [diff] [blame] | 70 | MSG_SET_SESSIONDESCRIPTION_SUCCESS = 0, |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 71 | MSG_SET_SESSIONDESCRIPTION_FAILED, |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 72 | MSG_CREATE_SESSIONDESCRIPTION_FAILED, |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 73 | MSG_GETSTATS, |
deadbeef | bd29246 | 2015-12-14 18:15:29 -0800 | [diff] [blame] | 74 | MSG_FREE_DATACHANNELS, |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 75 | }; |
| 76 | |
buildbot@webrtc.org | d4e598d | 2014-07-29 17:36:52 +0000 | [diff] [blame] | 77 | struct SetSessionDescriptionMsg : public rtc::MessageData { |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 78 | explicit SetSessionDescriptionMsg( |
| 79 | webrtc::SetSessionDescriptionObserver* observer) |
| 80 | : observer(observer) { |
| 81 | } |
| 82 | |
buildbot@webrtc.org | d4e598d | 2014-07-29 17:36:52 +0000 | [diff] [blame] | 83 | rtc::scoped_refptr<webrtc::SetSessionDescriptionObserver> observer; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 84 | std::string error; |
| 85 | }; |
| 86 | |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 87 | struct CreateSessionDescriptionMsg : public rtc::MessageData { |
| 88 | explicit CreateSessionDescriptionMsg( |
| 89 | webrtc::CreateSessionDescriptionObserver* observer) |
| 90 | : observer(observer) {} |
| 91 | |
| 92 | rtc::scoped_refptr<webrtc::CreateSessionDescriptionObserver> observer; |
| 93 | std::string error; |
| 94 | }; |
| 95 | |
buildbot@webrtc.org | d4e598d | 2014-07-29 17:36:52 +0000 | [diff] [blame] | 96 | struct GetStatsMsg : public rtc::MessageData { |
tommi@webrtc.org | 5b06b06 | 2014-08-15 08:38:30 +0000 | [diff] [blame] | 97 | GetStatsMsg(webrtc::StatsObserver* observer, |
| 98 | webrtc::MediaStreamTrackInterface* track) |
| 99 | : observer(observer), track(track) { |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 100 | } |
buildbot@webrtc.org | d4e598d | 2014-07-29 17:36:52 +0000 | [diff] [blame] | 101 | rtc::scoped_refptr<webrtc::StatsObserver> observer; |
tommi@webrtc.org | 5b06b06 | 2014-08-15 08:38:30 +0000 | [diff] [blame] | 102 | rtc::scoped_refptr<webrtc::MediaStreamTrackInterface> track; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 103 | }; |
| 104 | |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 105 | // Check if we can send |new_stream| on a PeerConnection. |
| 106 | bool CanAddLocalMediaStream(webrtc::StreamCollectionInterface* current_streams, |
| 107 | webrtc::MediaStreamInterface* new_stream) { |
| 108 | if (!new_stream || !current_streams) { |
| 109 | return false; |
| 110 | } |
| 111 | if (current_streams->find(new_stream->label()) != nullptr) { |
| 112 | LOG(LS_ERROR) << "MediaStream with label " << new_stream->label() |
| 113 | << " is already added."; |
| 114 | return false; |
| 115 | } |
| 116 | return true; |
| 117 | } |
| 118 | |
| 119 | bool MediaContentDirectionHasSend(cricket::MediaContentDirection dir) { |
| 120 | return dir == cricket::MD_SENDONLY || dir == cricket::MD_SENDRECV; |
| 121 | } |
| 122 | |
deadbeef | 5e97fb5 | 2015-10-15 12:49:08 -0700 | [diff] [blame] | 123 | // If the direction is "recvonly" or "inactive", treat the description |
| 124 | // as containing no streams. |
| 125 | // See: https://code.google.com/p/webrtc/issues/detail?id=5054 |
| 126 | std::vector<cricket::StreamParams> GetActiveStreams( |
| 127 | const cricket::MediaContentDescription* desc) { |
| 128 | return MediaContentDirectionHasSend(desc->direction()) |
| 129 | ? desc->streams() |
| 130 | : std::vector<cricket::StreamParams>(); |
| 131 | } |
| 132 | |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 133 | bool IsValidOfferToReceiveMedia(int value) { |
| 134 | typedef PeerConnectionInterface::RTCOfferAnswerOptions Options; |
| 135 | return (value >= Options::kUndefined) && |
| 136 | (value <= Options::kMaxOfferToReceiveMedia); |
| 137 | } |
| 138 | |
zhihuang | 1c378ed | 2017-08-17 14:10:50 -0700 | [diff] [blame] | 139 | // Add options to |[audio/video]_media_description_options| from |senders|. |
| 140 | void AddRtpSenderOptions( |
deadbeef | a601f5c | 2016-06-06 14:27:39 -0700 | [diff] [blame] | 141 | const std::vector<rtc::scoped_refptr< |
| 142 | RtpSenderProxyWithInternal<RtpSenderInternal>>>& senders, |
zhihuang | 1c378ed | 2017-08-17 14:10:50 -0700 | [diff] [blame] | 143 | cricket::MediaDescriptionOptions* audio_media_description_options, |
| 144 | cricket::MediaDescriptionOptions* video_media_description_options) { |
olka | 3c74766 | 2017-08-17 06:50:32 -0700 | [diff] [blame] | 145 | for (const auto& sender : senders) { |
zhihuang | 1c378ed | 2017-08-17 14:10:50 -0700 | [diff] [blame] | 146 | if (sender->media_type() == cricket::MEDIA_TYPE_AUDIO) { |
| 147 | if (audio_media_description_options) { |
| 148 | audio_media_description_options->AddAudioSender( |
Steve Anton | 8ffb9c3 | 2017-08-31 15:45:38 -0700 | [diff] [blame] | 149 | sender->id(), sender->internal()->stream_ids()); |
zhihuang | 1c378ed | 2017-08-17 14:10:50 -0700 | [diff] [blame] | 150 | } |
| 151 | } else { |
| 152 | RTC_DCHECK(sender->media_type() == cricket::MEDIA_TYPE_VIDEO); |
| 153 | if (video_media_description_options) { |
| 154 | video_media_description_options->AddVideoSender( |
Steve Anton | 8ffb9c3 | 2017-08-31 15:45:38 -0700 | [diff] [blame] | 155 | sender->id(), sender->internal()->stream_ids(), 1); |
zhihuang | 1c378ed | 2017-08-17 14:10:50 -0700 | [diff] [blame] | 156 | } |
| 157 | } |
zhihuang | a77e6bb | 2017-08-14 18:17:48 -0700 | [diff] [blame] | 158 | } |
zhihuang | 1c378ed | 2017-08-17 14:10:50 -0700 | [diff] [blame] | 159 | } |
olka | 3c74766 | 2017-08-17 06:50:32 -0700 | [diff] [blame] | 160 | |
zhihuang | 1c378ed | 2017-08-17 14:10:50 -0700 | [diff] [blame] | 161 | // Add options to |session_options| from |rtp_data_channels|. |
| 162 | void AddRtpDataChannelOptions( |
| 163 | const std::map<std::string, rtc::scoped_refptr<DataChannel>>& |
| 164 | rtp_data_channels, |
| 165 | cricket::MediaDescriptionOptions* data_media_description_options) { |
| 166 | if (!data_media_description_options) { |
| 167 | return; |
| 168 | } |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 169 | // Check for data channels. |
| 170 | for (const auto& kv : rtp_data_channels) { |
| 171 | const DataChannel* channel = kv.second; |
| 172 | if (channel->state() == DataChannel::kConnecting || |
| 173 | channel->state() == DataChannel::kOpen) { |
zhihuang | 1c378ed | 2017-08-17 14:10:50 -0700 | [diff] [blame] | 174 | // Legacy RTP data channels are signaled with the track/stream ID set to |
| 175 | // the data channel's label. |
| 176 | data_media_description_options->AddRtpDataChannel(channel->label(), |
| 177 | channel->label()); |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 178 | } |
| 179 | } |
| 180 | } |
| 181 | |
Taylor Brandstetter | a1c3035 | 2016-05-13 08:15:11 -0700 | [diff] [blame] | 182 | uint32_t ConvertIceTransportTypeToCandidateFilter( |
| 183 | PeerConnectionInterface::IceTransportsType type) { |
| 184 | switch (type) { |
| 185 | case PeerConnectionInterface::kNone: |
| 186 | return cricket::CF_NONE; |
| 187 | case PeerConnectionInterface::kRelay: |
| 188 | return cricket::CF_RELAY; |
| 189 | case PeerConnectionInterface::kNoHost: |
| 190 | return (cricket::CF_ALL & ~cricket::CF_HOST); |
| 191 | case PeerConnectionInterface::kAll: |
| 192 | return cricket::CF_ALL; |
| 193 | default: |
nisse | c80e741 | 2017-01-11 05:56:46 -0800 | [diff] [blame] | 194 | RTC_NOTREACHED(); |
Taylor Brandstetter | a1c3035 | 2016-05-13 08:15:11 -0700 | [diff] [blame] | 195 | } |
| 196 | return cricket::CF_NONE; |
| 197 | } |
| 198 | |
Taylor Brandstetter | ba29c6a | 2016-06-27 16:30:35 -0700 | [diff] [blame] | 199 | // Helper method to set a voice/video channel on all applicable senders |
| 200 | // and receivers when one is created/destroyed by WebRtcSession. |
| 201 | // |
| 202 | // Used by On(Voice|Video)Channel(Created|Destroyed) |
| 203 | template <class SENDER, |
| 204 | class RECEIVER, |
| 205 | class CHANNEL, |
| 206 | class SENDERS, |
| 207 | class RECEIVERS> |
| 208 | void SetChannelOnSendersAndReceivers(CHANNEL* channel, |
| 209 | SENDERS& senders, |
| 210 | RECEIVERS& receivers, |
| 211 | cricket::MediaType media_type) { |
| 212 | for (auto& sender : senders) { |
| 213 | if (sender->media_type() == media_type) { |
| 214 | static_cast<SENDER*>(sender->internal())->SetChannel(channel); |
| 215 | } |
| 216 | } |
| 217 | for (auto& receiver : receivers) { |
| 218 | if (receiver->media_type() == media_type) { |
| 219 | if (!channel) { |
| 220 | receiver->internal()->Stop(); |
| 221 | } |
| 222 | static_cast<RECEIVER*>(receiver->internal())->SetChannel(channel); |
| 223 | } |
| 224 | } |
| 225 | } |
| 226 | |
deadbeef | 293e926 | 2017-01-11 12:28:30 -0800 | [diff] [blame] | 227 | // Helper to set an error and return from a method. |
| 228 | bool SafeSetError(webrtc::RTCErrorType type, webrtc::RTCError* error) { |
| 229 | if (error) { |
| 230 | error->set_type(type); |
| 231 | } |
| 232 | return type == webrtc::RTCErrorType::NONE; |
| 233 | } |
| 234 | |
Steve Anton | 038834f | 2017-07-14 15:59:59 -0700 | [diff] [blame] | 235 | bool SafeSetError(webrtc::RTCError error, webrtc::RTCError* error_out) { |
| 236 | if (error_out) { |
| 237 | *error_out = std::move(error); |
| 238 | } |
| 239 | return error.ok(); |
| 240 | } |
| 241 | |
deadbeef | 0a6c4ca | 2015-10-06 11:38:28 -0700 | [diff] [blame] | 242 | } // namespace |
| 243 | |
| 244 | namespace webrtc { |
| 245 | |
deadbeef | 293e926 | 2017-01-11 12:28:30 -0800 | [diff] [blame] | 246 | bool PeerConnectionInterface::RTCConfiguration::operator==( |
| 247 | const PeerConnectionInterface::RTCConfiguration& o) const { |
| 248 | // This static_assert prevents us from accidentally breaking operator==. |
Steve Anton | 300bf8e | 2017-07-14 10:13:10 -0700 | [diff] [blame] | 249 | // Note: Order matters! Fields must be ordered the same as RTCConfiguration. |
deadbeef | 293e926 | 2017-01-11 12:28:30 -0800 | [diff] [blame] | 250 | struct stuff_being_tested_for_equality { |
Magnus Jedvert | 3beb207 | 2017-07-14 14:23:56 +0000 | [diff] [blame] | 251 | IceServers servers; |
Steve Anton | 300bf8e | 2017-07-14 10:13:10 -0700 | [diff] [blame] | 252 | IceTransportsType type; |
deadbeef | 293e926 | 2017-01-11 12:28:30 -0800 | [diff] [blame] | 253 | BundlePolicy bundle_policy; |
| 254 | RtcpMuxPolicy rtcp_mux_policy; |
Steve Anton | 300bf8e | 2017-07-14 10:13:10 -0700 | [diff] [blame] | 255 | std::vector<rtc::scoped_refptr<rtc::RTCCertificate>> certificates; |
| 256 | int ice_candidate_pool_size; |
| 257 | bool disable_ipv6; |
| 258 | bool disable_ipv6_on_wifi; |
deadbeef | d21eab3 | 2017-07-26 16:50:11 -0700 | [diff] [blame] | 259 | int max_ipv6_networks; |
Steve Anton | 300bf8e | 2017-07-14 10:13:10 -0700 | [diff] [blame] | 260 | bool enable_rtp_data_channel; |
| 261 | rtc::Optional<int> screencast_min_bitrate; |
| 262 | rtc::Optional<bool> combined_audio_video_bwe; |
| 263 | rtc::Optional<bool> enable_dtls_srtp; |
deadbeef | 293e926 | 2017-01-11 12:28:30 -0800 | [diff] [blame] | 264 | TcpCandidatePolicy tcp_candidate_policy; |
| 265 | CandidateNetworkPolicy candidate_network_policy; |
| 266 | int audio_jitter_buffer_max_packets; |
| 267 | bool audio_jitter_buffer_fast_accelerate; |
| 268 | int ice_connection_receiving_timeout; |
| 269 | int ice_backup_candidate_pair_ping_interval; |
| 270 | ContinualGatheringPolicy continual_gathering_policy; |
deadbeef | 293e926 | 2017-01-11 12:28:30 -0800 | [diff] [blame] | 271 | bool prioritize_most_likely_ice_candidate_pairs; |
| 272 | struct cricket::MediaConfig media_config; |
deadbeef | 293e926 | 2017-01-11 12:28:30 -0800 | [diff] [blame] | 273 | bool enable_quic; |
deadbeef | 293e926 | 2017-01-11 12:28:30 -0800 | [diff] [blame] | 274 | bool prune_turn_ports; |
| 275 | bool presume_writable_when_fully_relayed; |
| 276 | bool enable_ice_renomination; |
| 277 | bool redetermine_role_on_ice_restart; |
skvlad | 5107246 | 2017-02-02 11:50:14 -0800 | [diff] [blame] | 278 | rtc::Optional<int> ice_check_min_interval; |
Steve Anton | 300bf8e | 2017-07-14 10:13:10 -0700 | [diff] [blame] | 279 | rtc::Optional<rtc::IntervalRange> ice_regather_interval_range; |
Jonas Oreland | bdcee28 | 2017-10-10 14:01:40 +0200 | [diff] [blame] | 280 | webrtc::TurnCustomizer* turn_customizer; |
deadbeef | 293e926 | 2017-01-11 12:28:30 -0800 | [diff] [blame] | 281 | }; |
| 282 | static_assert(sizeof(stuff_being_tested_for_equality) == sizeof(*this), |
| 283 | "Did you add something to RTCConfiguration and forget to " |
| 284 | "update operator==?"); |
| 285 | return type == o.type && servers == o.servers && |
| 286 | bundle_policy == o.bundle_policy && |
| 287 | rtcp_mux_policy == o.rtcp_mux_policy && |
| 288 | tcp_candidate_policy == o.tcp_candidate_policy && |
| 289 | candidate_network_policy == o.candidate_network_policy && |
| 290 | audio_jitter_buffer_max_packets == o.audio_jitter_buffer_max_packets && |
| 291 | audio_jitter_buffer_fast_accelerate == |
| 292 | o.audio_jitter_buffer_fast_accelerate && |
| 293 | ice_connection_receiving_timeout == |
| 294 | o.ice_connection_receiving_timeout && |
| 295 | ice_backup_candidate_pair_ping_interval == |
| 296 | o.ice_backup_candidate_pair_ping_interval && |
| 297 | continual_gathering_policy == o.continual_gathering_policy && |
| 298 | certificates == o.certificates && |
| 299 | prioritize_most_likely_ice_candidate_pairs == |
| 300 | o.prioritize_most_likely_ice_candidate_pairs && |
| 301 | media_config == o.media_config && disable_ipv6 == o.disable_ipv6 && |
zhihuang | b09b3f9 | 2017-03-07 14:40:51 -0800 | [diff] [blame] | 302 | disable_ipv6_on_wifi == o.disable_ipv6_on_wifi && |
deadbeef | d21eab3 | 2017-07-26 16:50:11 -0700 | [diff] [blame] | 303 | max_ipv6_networks == o.max_ipv6_networks && |
deadbeef | 293e926 | 2017-01-11 12:28:30 -0800 | [diff] [blame] | 304 | enable_rtp_data_channel == o.enable_rtp_data_channel && |
| 305 | enable_quic == o.enable_quic && |
| 306 | screencast_min_bitrate == o.screencast_min_bitrate && |
| 307 | combined_audio_video_bwe == o.combined_audio_video_bwe && |
| 308 | enable_dtls_srtp == o.enable_dtls_srtp && |
| 309 | ice_candidate_pool_size == o.ice_candidate_pool_size && |
| 310 | prune_turn_ports == o.prune_turn_ports && |
| 311 | presume_writable_when_fully_relayed == |
| 312 | o.presume_writable_when_fully_relayed && |
| 313 | enable_ice_renomination == o.enable_ice_renomination && |
skvlad | 5107246 | 2017-02-02 11:50:14 -0800 | [diff] [blame] | 314 | redetermine_role_on_ice_restart == o.redetermine_role_on_ice_restart && |
Steve Anton | 300bf8e | 2017-07-14 10:13:10 -0700 | [diff] [blame] | 315 | ice_check_min_interval == o.ice_check_min_interval && |
Jonas Oreland | bdcee28 | 2017-10-10 14:01:40 +0200 | [diff] [blame] | 316 | ice_regather_interval_range == o.ice_regather_interval_range && |
| 317 | turn_customizer == o.turn_customizer; |
deadbeef | 293e926 | 2017-01-11 12:28:30 -0800 | [diff] [blame] | 318 | } |
| 319 | |
| 320 | bool PeerConnectionInterface::RTCConfiguration::operator!=( |
| 321 | const PeerConnectionInterface::RTCConfiguration& o) const { |
| 322 | return !(*this == o); |
deadbeef | 3edec7c | 2016-12-10 11:44:26 -0800 | [diff] [blame] | 323 | } |
| 324 | |
zhihuang | 8f65cdf | 2016-05-06 18:40:30 -0700 | [diff] [blame] | 325 | // Generate a RTCP CNAME when a PeerConnection is created. |
| 326 | std::string GenerateRtcpCname() { |
| 327 | std::string cname; |
| 328 | if (!rtc::CreateRandomString(kRtcpCnameLength, &cname)) { |
| 329 | LOG(LS_ERROR) << "Failed to generate CNAME."; |
nisse | eb4ca4e | 2017-01-12 02:24:27 -0800 | [diff] [blame] | 330 | RTC_NOTREACHED(); |
zhihuang | 8f65cdf | 2016-05-06 18:40:30 -0700 | [diff] [blame] | 331 | } |
| 332 | return cname; |
| 333 | } |
| 334 | |
zhihuang | 1c378ed | 2017-08-17 14:10:50 -0700 | [diff] [blame] | 335 | bool ValidateOfferAnswerOptions( |
| 336 | const PeerConnectionInterface::RTCOfferAnswerOptions& rtc_options) { |
| 337 | return IsValidOfferToReceiveMedia(rtc_options.offer_to_receive_audio) && |
| 338 | IsValidOfferToReceiveMedia(rtc_options.offer_to_receive_video); |
olka | 3c74766 | 2017-08-17 06:50:32 -0700 | [diff] [blame] | 339 | } |
| 340 | |
zhihuang | 1c378ed | 2017-08-17 14:10:50 -0700 | [diff] [blame] | 341 | // From |rtc_options|, fill parts of |session_options| shared by all generated |
| 342 | // m= sections (in other words, nothing that involves a map/array). |
| 343 | void ExtractSharedMediaSessionOptions( |
| 344 | const PeerConnectionInterface::RTCOfferAnswerOptions& rtc_options, |
| 345 | cricket::MediaSessionOptions* session_options) { |
| 346 | session_options->vad_enabled = rtc_options.voice_activity_detection; |
| 347 | session_options->bundle_enabled = rtc_options.use_rtp_mux; |
| 348 | } |
zhihuang | a77e6bb | 2017-08-14 18:17:48 -0700 | [diff] [blame] | 349 | |
zhihuang | 1c378ed | 2017-08-17 14:10:50 -0700 | [diff] [blame] | 350 | bool ConvertConstraintsToOfferAnswerOptions( |
| 351 | const MediaConstraintsInterface* constraints, |
| 352 | PeerConnectionInterface::RTCOfferAnswerOptions* offer_answer_options) { |
olka | 3c74766 | 2017-08-17 06:50:32 -0700 | [diff] [blame] | 353 | if (!constraints) { |
| 354 | return true; |
| 355 | } |
zhihuang | 1c378ed | 2017-08-17 14:10:50 -0700 | [diff] [blame] | 356 | |
| 357 | bool value = false; |
| 358 | size_t mandatory_constraints_satisfied = 0; |
| 359 | |
| 360 | if (FindConstraint(constraints, |
| 361 | MediaConstraintsInterface::kOfferToReceiveAudio, &value, |
| 362 | &mandatory_constraints_satisfied)) { |
| 363 | offer_answer_options->offer_to_receive_audio = |
| 364 | value ? PeerConnectionInterface::RTCOfferAnswerOptions:: |
| 365 | kOfferToReceiveMediaTrue |
| 366 | : 0; |
| 367 | } |
| 368 | |
| 369 | if (FindConstraint(constraints, |
| 370 | MediaConstraintsInterface::kOfferToReceiveVideo, &value, |
| 371 | &mandatory_constraints_satisfied)) { |
| 372 | offer_answer_options->offer_to_receive_video = |
| 373 | value ? PeerConnectionInterface::RTCOfferAnswerOptions:: |
| 374 | kOfferToReceiveMediaTrue |
| 375 | : 0; |
| 376 | } |
| 377 | if (FindConstraint(constraints, |
| 378 | MediaConstraintsInterface::kVoiceActivityDetection, &value, |
| 379 | &mandatory_constraints_satisfied)) { |
| 380 | offer_answer_options->voice_activity_detection = value; |
| 381 | } |
| 382 | if (FindConstraint(constraints, MediaConstraintsInterface::kUseRtpMux, &value, |
| 383 | &mandatory_constraints_satisfied)) { |
| 384 | offer_answer_options->use_rtp_mux = value; |
| 385 | } |
| 386 | if (FindConstraint(constraints, MediaConstraintsInterface::kIceRestart, |
| 387 | &value, &mandatory_constraints_satisfied)) { |
| 388 | offer_answer_options->ice_restart = value; |
| 389 | } |
| 390 | |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 391 | return mandatory_constraints_satisfied == constraints->GetMandatory().size(); |
| 392 | } |
| 393 | |
zhihuang | 38ede13 | 2017-06-15 12:52:32 -0700 | [diff] [blame] | 394 | PeerConnection::PeerConnection(PeerConnectionFactory* factory, |
| 395 | std::unique_ptr<RtcEventLog> event_log, |
| 396 | std::unique_ptr<Call> call) |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 397 | : factory_(factory), |
| 398 | observer_(NULL), |
buildbot@webrtc.org | 1567b8c | 2014-05-08 19:54:16 +0000 | [diff] [blame] | 399 | uma_observer_(NULL), |
zhihuang | 38ede13 | 2017-06-15 12:52:32 -0700 | [diff] [blame] | 400 | event_log_(std::move(event_log)), |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 401 | signaling_state_(kStable), |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 402 | ice_connection_state_(kIceConnectionNew), |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 403 | ice_gathering_state_(kIceGatheringNew), |
zhihuang | 8f65cdf | 2016-05-06 18:40:30 -0700 | [diff] [blame] | 404 | rtcp_cname_(GenerateRtcpCname()), |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 405 | local_streams_(StreamCollection::Create()), |
zhihuang | 38ede13 | 2017-06-15 12:52:32 -0700 | [diff] [blame] | 406 | remote_streams_(StreamCollection::Create()), |
| 407 | call_(std::move(call)) {} |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 408 | |
| 409 | PeerConnection::~PeerConnection() { |
Peter Boström | 1a9d615 | 2015-12-08 22:15:17 +0100 | [diff] [blame] | 410 | TRACE_EVENT0("webrtc", "PeerConnection::~PeerConnection"); |
deadbeef | 0a6c4ca | 2015-10-06 11:38:28 -0700 | [diff] [blame] | 411 | RTC_DCHECK(signaling_thread()->IsCurrent()); |
deadbeef | 70ab1a1 | 2015-09-28 16:53:55 -0700 | [diff] [blame] | 412 | // Need to detach RTP senders/receivers from WebRtcSession, |
| 413 | // since it's about to be destroyed. |
| 414 | for (const auto& sender : senders_) { |
deadbeef | a601f5c | 2016-06-06 14:27:39 -0700 | [diff] [blame] | 415 | sender->internal()->Stop(); |
deadbeef | 70ab1a1 | 2015-09-28 16:53:55 -0700 | [diff] [blame] | 416 | } |
| 417 | for (const auto& receiver : receivers_) { |
deadbeef | a601f5c | 2016-06-06 14:27:39 -0700 | [diff] [blame] | 418 | receiver->internal()->Stop(); |
deadbeef | 70ab1a1 | 2015-09-28 16:53:55 -0700 | [diff] [blame] | 419 | } |
Taylor Brandstetter | a1c3035 | 2016-05-13 08:15:11 -0700 | [diff] [blame] | 420 | // Destroy stats_ because it depends on session_. |
| 421 | stats_.reset(nullptr); |
hbos | b78306a | 2016-12-19 05:06:57 -0800 | [diff] [blame] | 422 | if (stats_collector_) { |
| 423 | stats_collector_->WaitForPendingRequest(); |
| 424 | stats_collector_ = nullptr; |
| 425 | } |
Taylor Brandstetter | a1c3035 | 2016-05-13 08:15:11 -0700 | [diff] [blame] | 426 | // Now destroy session_ before destroying other members, |
| 427 | // because its destruction fires signals (such as VoiceChannelDestroyed) |
| 428 | // which will trigger some final actions in PeerConnection... |
Steve Anton | 978b876 | 2017-09-29 12:15:02 -0700 | [diff] [blame] | 429 | owned_session_.reset(nullptr); |
| 430 | session_ = nullptr; |
deadbeef | 91dd567 | 2016-05-18 16:55:30 -0700 | [diff] [blame] | 431 | // port_allocator_ lives on the network thread and should be destroyed there. |
Taylor Brandstetter | 5d97a9a | 2016-06-10 14:17:27 -0700 | [diff] [blame] | 432 | network_thread()->Invoke<void>(RTC_FROM_HERE, |
nisse | eaabdf6 | 2017-05-05 02:23:02 -0700 | [diff] [blame] | 433 | [this] { port_allocator_.reset(); }); |
eladalon | 248fd4f | 2017-09-06 05:18:15 -0700 | [diff] [blame] | 434 | // call_ and event_log_ must be destroyed on the worker thread. |
Steve Anton | 978b876 | 2017-09-29 12:15:02 -0700 | [diff] [blame] | 435 | worker_thread()->Invoke<void>(RTC_FROM_HERE, [this] { |
eladalon | 248fd4f | 2017-09-06 05:18:15 -0700 | [diff] [blame] | 436 | call_.reset(); |
| 437 | event_log_.reset(); |
| 438 | }); |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 439 | } |
| 440 | |
| 441 | bool PeerConnection::Initialize( |
buildbot@webrtc.org | 41451d4 | 2014-05-03 05:39:45 +0000 | [diff] [blame] | 442 | const PeerConnectionInterface::RTCConfiguration& configuration, |
kwiberg | d1fe281 | 2016-04-27 06:47:29 -0700 | [diff] [blame] | 443 | std::unique_ptr<cricket::PortAllocator> allocator, |
Henrik Boström | d03c23b | 2016-06-01 11:44:18 +0200 | [diff] [blame] | 444 | std::unique_ptr<rtc::RTCCertificateGeneratorInterface> cert_generator, |
deadbeef | 653b8e0 | 2015-11-11 12:55:10 -0800 | [diff] [blame] | 445 | PeerConnectionObserver* observer) { |
Peter Boström | 1a9d615 | 2015-12-08 22:15:17 +0100 | [diff] [blame] | 446 | TRACE_EVENT0("webrtc", "PeerConnection::Initialize"); |
Steve Anton | 038834f | 2017-07-14 15:59:59 -0700 | [diff] [blame] | 447 | |
| 448 | RTCError config_error = ValidateConfiguration(configuration); |
| 449 | if (!config_error.ok()) { |
| 450 | LOG(LS_ERROR) << "Invalid configuration: " << config_error.message(); |
| 451 | return false; |
| 452 | } |
| 453 | |
deadbeef | 293e926 | 2017-01-11 12:28:30 -0800 | [diff] [blame] | 454 | if (!allocator) { |
| 455 | LOG(LS_ERROR) << "PeerConnection initialized without a PortAllocator? " |
| 456 | << "This shouldn't happen if using PeerConnectionFactory."; |
| 457 | return false; |
| 458 | } |
Jonas Oreland | bdcee28 | 2017-10-10 14:01:40 +0200 | [diff] [blame] | 459 | |
deadbeef | 653b8e0 | 2015-11-11 12:55:10 -0800 | [diff] [blame] | 460 | if (!observer) { |
deadbeef | 293e926 | 2017-01-11 12:28:30 -0800 | [diff] [blame] | 461 | // TODO(deadbeef): Why do we do this? |
| 462 | LOG(LS_ERROR) << "PeerConnection initialized without a " |
| 463 | << "PeerConnectionObserver"; |
deadbeef | 653b8e0 | 2015-11-11 12:55:10 -0800 | [diff] [blame] | 464 | return false; |
| 465 | } |
pthatcher@webrtc.org | 877ac76 | 2015-02-04 22:03:09 +0000 | [diff] [blame] | 466 | observer_ = observer; |
kwiberg | 0eb15ed | 2015-12-17 03:04:15 -0800 | [diff] [blame] | 467 | port_allocator_ = std::move(allocator); |
deadbeef | 653b8e0 | 2015-11-11 12:55:10 -0800 | [diff] [blame] | 468 | |
deadbeef | 91dd567 | 2016-05-18 16:55:30 -0700 | [diff] [blame] | 469 | // The port allocator lives on the network thread and should be initialized |
Taylor Brandstetter | a1c3035 | 2016-05-13 08:15:11 -0700 | [diff] [blame] | 470 | // there. |
Taylor Brandstetter | 5d97a9a | 2016-06-10 14:17:27 -0700 | [diff] [blame] | 471 | if (!network_thread()->Invoke<bool>( |
| 472 | RTC_FROM_HERE, rtc::Bind(&PeerConnection::InitializePortAllocator_n, |
| 473 | this, configuration))) { |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 474 | return false; |
| 475 | } |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 476 | |
Steve Anton | 978b876 | 2017-09-29 12:15:02 -0700 | [diff] [blame] | 477 | owned_session_.reset(new WebRtcSession( |
nisse | eaabdf6 | 2017-05-05 02:23:02 -0700 | [diff] [blame] | 478 | call_.get(), factory_->channel_manager(), configuration.media_config, |
Steve Anton | 978b876 | 2017-09-29 12:15:02 -0700 | [diff] [blame] | 479 | event_log_.get(), network_thread(), worker_thread(), signaling_thread(), |
zhihuang | 29ff844 | 2016-07-27 11:07:25 -0700 | [diff] [blame] | 480 | port_allocator_.get(), |
| 481 | std::unique_ptr<cricket::TransportController>( |
Honghai Zhang | bfd398c | 2016-08-30 22:07:42 -0700 | [diff] [blame] | 482 | factory_->CreateTransportController( |
| 483 | port_allocator_.get(), |
deadbeef | 953c2ce | 2017-01-09 14:53:41 -0800 | [diff] [blame] | 484 | configuration.redetermine_role_on_ice_restart)), |
| 485 | #ifdef HAVE_SCTP |
| 486 | std::unique_ptr<cricket::SctpTransportInternalFactory>( |
Steve Anton | 978b876 | 2017-09-29 12:15:02 -0700 | [diff] [blame] | 487 | new cricket::SctpTransportFactory(network_thread())) |
deadbeef | 953c2ce | 2017-01-09 14:53:41 -0800 | [diff] [blame] | 488 | #else |
| 489 | nullptr |
| 490 | #endif |
| 491 | )); |
Steve Anton | 978b876 | 2017-09-29 12:15:02 -0700 | [diff] [blame] | 492 | session_ = owned_session_.get(); |
zhihuang | 29ff844 | 2016-07-27 11:07:25 -0700 | [diff] [blame] | 493 | |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 494 | stats_.reset(new StatsCollector(this)); |
hbos | 74e1a4f | 2016-09-15 23:33:01 -0700 | [diff] [blame] | 495 | stats_collector_ = RTCStatsCollector::Create(this); |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 496 | |
| 497 | // Initialize the WebRtcSession. It creates transport channels etc. |
Henrik Boström | d03c23b | 2016-06-01 11:44:18 +0200 | [diff] [blame] | 498 | if (!session_->Initialize(factory_->options(), std::move(cert_generator), |
hta | a2a49d9 | 2016-03-04 02:51:39 -0800 | [diff] [blame] | 499 | configuration)) { |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 500 | return false; |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 501 | } |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 502 | |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 503 | // Register PeerConnection as receiver of local ice candidates. |
| 504 | // All the callbacks will be posted to the application from PeerConnection. |
| 505 | session_->RegisterIceObserver(this); |
| 506 | session_->SignalState.connect(this, &PeerConnection::OnSessionStateChange); |
Taylor Brandstetter | ba29c6a | 2016-06-27 16:30:35 -0700 | [diff] [blame] | 507 | session_->SignalVoiceChannelCreated.connect( |
| 508 | this, &PeerConnection::OnVoiceChannelCreated); |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 509 | session_->SignalVoiceChannelDestroyed.connect( |
| 510 | this, &PeerConnection::OnVoiceChannelDestroyed); |
Taylor Brandstetter | ba29c6a | 2016-06-27 16:30:35 -0700 | [diff] [blame] | 511 | session_->SignalVideoChannelCreated.connect( |
| 512 | this, &PeerConnection::OnVideoChannelCreated); |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 513 | session_->SignalVideoChannelDestroyed.connect( |
| 514 | this, &PeerConnection::OnVideoChannelDestroyed); |
| 515 | session_->SignalDataChannelCreated.connect( |
| 516 | this, &PeerConnection::OnDataChannelCreated); |
| 517 | session_->SignalDataChannelDestroyed.connect( |
| 518 | this, &PeerConnection::OnDataChannelDestroyed); |
| 519 | session_->SignalDataChannelOpenMessage.connect( |
| 520 | this, &PeerConnection::OnDataChannelOpenMessage); |
deadbeef | 46c7389 | 2016-11-16 19:42:04 -0800 | [diff] [blame] | 521 | |
| 522 | configuration_ = configuration; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 523 | return true; |
| 524 | } |
| 525 | |
Steve Anton | 038834f | 2017-07-14 15:59:59 -0700 | [diff] [blame] | 526 | RTCError PeerConnection::ValidateConfiguration( |
| 527 | const RTCConfiguration& config) const { |
| 528 | if (config.ice_regather_interval_range && |
| 529 | config.continual_gathering_policy == GATHER_ONCE) { |
| 530 | return RTCError(RTCErrorType::INVALID_PARAMETER, |
| 531 | "ice_regather_interval_range specified but continual " |
| 532 | "gathering policy is GATHER_ONCE"); |
| 533 | } |
| 534 | return RTCError::OK(); |
| 535 | } |
| 536 | |
buildbot@webrtc.org | d4e598d | 2014-07-29 17:36:52 +0000 | [diff] [blame] | 537 | rtc::scoped_refptr<StreamCollectionInterface> |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 538 | PeerConnection::local_streams() { |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 539 | return local_streams_; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 540 | } |
| 541 | |
buildbot@webrtc.org | d4e598d | 2014-07-29 17:36:52 +0000 | [diff] [blame] | 542 | rtc::scoped_refptr<StreamCollectionInterface> |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 543 | PeerConnection::remote_streams() { |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 544 | return remote_streams_; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 545 | } |
| 546 | |
perkj@webrtc.org | c2dd5ee | 2014-11-04 11:31:29 +0000 | [diff] [blame] | 547 | bool PeerConnection::AddStream(MediaStreamInterface* local_stream) { |
Peter Boström | 1a9d615 | 2015-12-08 22:15:17 +0100 | [diff] [blame] | 548 | TRACE_EVENT0("webrtc", "PeerConnection::AddStream"); |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 549 | if (IsClosed()) { |
| 550 | return false; |
| 551 | } |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 552 | if (!CanAddLocalMediaStream(local_streams_, local_stream)) { |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 553 | return false; |
| 554 | } |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 555 | |
| 556 | local_streams_->AddStream(local_stream); |
deadbeef | eb45981 | 2015-12-15 19:24:43 -0800 | [diff] [blame] | 557 | MediaStreamObserver* observer = new MediaStreamObserver(local_stream); |
| 558 | observer->SignalAudioTrackAdded.connect(this, |
| 559 | &PeerConnection::OnAudioTrackAdded); |
| 560 | observer->SignalAudioTrackRemoved.connect( |
| 561 | this, &PeerConnection::OnAudioTrackRemoved); |
| 562 | observer->SignalVideoTrackAdded.connect(this, |
| 563 | &PeerConnection::OnVideoTrackAdded); |
| 564 | observer->SignalVideoTrackRemoved.connect( |
| 565 | this, &PeerConnection::OnVideoTrackRemoved); |
kwiberg | d1fe281 | 2016-04-27 06:47:29 -0700 | [diff] [blame] | 566 | stream_observers_.push_back(std::unique_ptr<MediaStreamObserver>(observer)); |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 567 | |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 568 | for (const auto& track : local_stream->GetAudioTracks()) { |
korniltsev.anatoly | ec390b5 | 2017-07-24 17:00:25 -0700 | [diff] [blame] | 569 | AddAudioTrack(track.get(), local_stream); |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 570 | } |
| 571 | for (const auto& track : local_stream->GetVideoTracks()) { |
korniltsev.anatoly | ec390b5 | 2017-07-24 17:00:25 -0700 | [diff] [blame] | 572 | AddVideoTrack(track.get(), local_stream); |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 573 | } |
| 574 | |
tommi@webrtc.org | 03505bc | 2014-07-14 20:15:26 +0000 | [diff] [blame] | 575 | stats_->AddStream(local_stream); |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 576 | observer_->OnRenegotiationNeeded(); |
| 577 | return true; |
| 578 | } |
| 579 | |
| 580 | void PeerConnection::RemoveStream(MediaStreamInterface* local_stream) { |
Peter Boström | 1a9d615 | 2015-12-08 22:15:17 +0100 | [diff] [blame] | 581 | TRACE_EVENT0("webrtc", "PeerConnection::RemoveStream"); |
korniltsev.anatoly | ec390b5 | 2017-07-24 17:00:25 -0700 | [diff] [blame] | 582 | if (!IsClosed()) { |
| 583 | for (const auto& track : local_stream->GetAudioTracks()) { |
| 584 | RemoveAudioTrack(track.get(), local_stream); |
| 585 | } |
| 586 | for (const auto& track : local_stream->GetVideoTracks()) { |
| 587 | RemoveVideoTrack(track.get(), local_stream); |
| 588 | } |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 589 | } |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 590 | local_streams_->RemoveStream(local_stream); |
deadbeef | eb45981 | 2015-12-15 19:24:43 -0800 | [diff] [blame] | 591 | stream_observers_.erase( |
| 592 | std::remove_if( |
| 593 | stream_observers_.begin(), stream_observers_.end(), |
kwiberg | d1fe281 | 2016-04-27 06:47:29 -0700 | [diff] [blame] | 594 | [local_stream](const std::unique_ptr<MediaStreamObserver>& observer) { |
deadbeef | eb45981 | 2015-12-15 19:24:43 -0800 | [diff] [blame] | 595 | return observer->stream()->label().compare(local_stream->label()) == |
| 596 | 0; |
| 597 | }), |
| 598 | stream_observers_.end()); |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 599 | |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 600 | if (IsClosed()) { |
| 601 | return; |
| 602 | } |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 603 | observer_->OnRenegotiationNeeded(); |
| 604 | } |
| 605 | |
deadbeef | e1f9d83 | 2016-01-14 15:35:42 -0800 | [diff] [blame] | 606 | rtc::scoped_refptr<RtpSenderInterface> PeerConnection::AddTrack( |
| 607 | MediaStreamTrackInterface* track, |
| 608 | std::vector<MediaStreamInterface*> streams) { |
| 609 | TRACE_EVENT0("webrtc", "PeerConnection::AddTrack"); |
| 610 | if (IsClosed()) { |
| 611 | return nullptr; |
| 612 | } |
| 613 | if (streams.size() >= 2) { |
| 614 | LOG(LS_ERROR) |
| 615 | << "Adding a track with two streams is not currently supported."; |
| 616 | return nullptr; |
| 617 | } |
| 618 | // TODO(deadbeef): Support adding a track to two different senders. |
| 619 | if (FindSenderForTrack(track) != senders_.end()) { |
| 620 | LOG(LS_ERROR) << "Sender for track " << track->id() << " already exists."; |
| 621 | return nullptr; |
| 622 | } |
| 623 | |
| 624 | // TODO(deadbeef): Support adding a track to multiple streams. |
deadbeef | a601f5c | 2016-06-06 14:27:39 -0700 | [diff] [blame] | 625 | rtc::scoped_refptr<RtpSenderProxyWithInternal<RtpSenderInternal>> new_sender; |
deadbeef | e1f9d83 | 2016-01-14 15:35:42 -0800 | [diff] [blame] | 626 | if (track->kind() == MediaStreamTrackInterface::kAudioKind) { |
deadbeef | a601f5c | 2016-06-06 14:27:39 -0700 | [diff] [blame] | 627 | new_sender = RtpSenderProxyWithInternal<RtpSenderInternal>::Create( |
deadbeef | e1f9d83 | 2016-01-14 15:35:42 -0800 | [diff] [blame] | 628 | signaling_thread(), |
| 629 | new AudioRtpSender(static_cast<AudioTrackInterface*>(track), |
Taylor Brandstetter | ba29c6a | 2016-06-27 16:30:35 -0700 | [diff] [blame] | 630 | session_->voice_channel(), stats_.get())); |
deadbeef | e1f9d83 | 2016-01-14 15:35:42 -0800 | [diff] [blame] | 631 | if (!streams.empty()) { |
deadbeef | a601f5c | 2016-06-06 14:27:39 -0700 | [diff] [blame] | 632 | new_sender->internal()->set_stream_id(streams[0]->label()); |
deadbeef | e1f9d83 | 2016-01-14 15:35:42 -0800 | [diff] [blame] | 633 | } |
| 634 | const TrackInfo* track_info = FindTrackInfo( |
deadbeef | a601f5c | 2016-06-06 14:27:39 -0700 | [diff] [blame] | 635 | local_audio_tracks_, new_sender->internal()->stream_id(), track->id()); |
deadbeef | e1f9d83 | 2016-01-14 15:35:42 -0800 | [diff] [blame] | 636 | if (track_info) { |
deadbeef | a601f5c | 2016-06-06 14:27:39 -0700 | [diff] [blame] | 637 | new_sender->internal()->SetSsrc(track_info->ssrc); |
deadbeef | e1f9d83 | 2016-01-14 15:35:42 -0800 | [diff] [blame] | 638 | } |
| 639 | } else if (track->kind() == MediaStreamTrackInterface::kVideoKind) { |
deadbeef | a601f5c | 2016-06-06 14:27:39 -0700 | [diff] [blame] | 640 | new_sender = RtpSenderProxyWithInternal<RtpSenderInternal>::Create( |
deadbeef | e1f9d83 | 2016-01-14 15:35:42 -0800 | [diff] [blame] | 641 | signaling_thread(), |
| 642 | new VideoRtpSender(static_cast<VideoTrackInterface*>(track), |
Taylor Brandstetter | ba29c6a | 2016-06-27 16:30:35 -0700 | [diff] [blame] | 643 | session_->video_channel())); |
deadbeef | e1f9d83 | 2016-01-14 15:35:42 -0800 | [diff] [blame] | 644 | if (!streams.empty()) { |
deadbeef | a601f5c | 2016-06-06 14:27:39 -0700 | [diff] [blame] | 645 | new_sender->internal()->set_stream_id(streams[0]->label()); |
deadbeef | e1f9d83 | 2016-01-14 15:35:42 -0800 | [diff] [blame] | 646 | } |
| 647 | const TrackInfo* track_info = FindTrackInfo( |
deadbeef | a601f5c | 2016-06-06 14:27:39 -0700 | [diff] [blame] | 648 | local_video_tracks_, new_sender->internal()->stream_id(), track->id()); |
deadbeef | e1f9d83 | 2016-01-14 15:35:42 -0800 | [diff] [blame] | 649 | if (track_info) { |
deadbeef | a601f5c | 2016-06-06 14:27:39 -0700 | [diff] [blame] | 650 | new_sender->internal()->SetSsrc(track_info->ssrc); |
deadbeef | e1f9d83 | 2016-01-14 15:35:42 -0800 | [diff] [blame] | 651 | } |
| 652 | } else { |
| 653 | LOG(LS_ERROR) << "CreateSender called with invalid kind: " << track->kind(); |
| 654 | return rtc::scoped_refptr<RtpSenderInterface>(); |
| 655 | } |
| 656 | |
| 657 | senders_.push_back(new_sender); |
| 658 | observer_->OnRenegotiationNeeded(); |
| 659 | return new_sender; |
| 660 | } |
| 661 | |
| 662 | bool PeerConnection::RemoveTrack(RtpSenderInterface* sender) { |
| 663 | TRACE_EVENT0("webrtc", "PeerConnection::RemoveTrack"); |
| 664 | if (IsClosed()) { |
| 665 | return false; |
| 666 | } |
| 667 | |
| 668 | auto it = std::find(senders_.begin(), senders_.end(), sender); |
| 669 | if (it == senders_.end()) { |
| 670 | LOG(LS_ERROR) << "Couldn't find sender " << sender->id() << " to remove."; |
| 671 | return false; |
| 672 | } |
deadbeef | a601f5c | 2016-06-06 14:27:39 -0700 | [diff] [blame] | 673 | (*it)->internal()->Stop(); |
deadbeef | e1f9d83 | 2016-01-14 15:35:42 -0800 | [diff] [blame] | 674 | senders_.erase(it); |
| 675 | |
| 676 | observer_->OnRenegotiationNeeded(); |
| 677 | return true; |
| 678 | } |
| 679 | |
buildbot@webrtc.org | d4e598d | 2014-07-29 17:36:52 +0000 | [diff] [blame] | 680 | rtc::scoped_refptr<DtmfSenderInterface> PeerConnection::CreateDtmfSender( |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 681 | AudioTrackInterface* track) { |
Peter Boström | 1a9d615 | 2015-12-08 22:15:17 +0100 | [diff] [blame] | 682 | TRACE_EVENT0("webrtc", "PeerConnection::CreateDtmfSender"); |
zhihuang | 29ff844 | 2016-07-27 11:07:25 -0700 | [diff] [blame] | 683 | if (IsClosed()) { |
| 684 | return nullptr; |
| 685 | } |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 686 | if (!track) { |
| 687 | LOG(LS_ERROR) << "CreateDtmfSender - track is NULL."; |
deadbeef | 20cb0c1 | 2017-02-01 20:27:00 -0800 | [diff] [blame] | 688 | return nullptr; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 689 | } |
deadbeef | 20cb0c1 | 2017-02-01 20:27:00 -0800 | [diff] [blame] | 690 | auto it = FindSenderForTrack(track); |
| 691 | if (it == senders_.end()) { |
| 692 | LOG(LS_ERROR) << "CreateDtmfSender called with a non-added track."; |
| 693 | return nullptr; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 694 | } |
| 695 | |
deadbeef | 20cb0c1 | 2017-02-01 20:27:00 -0800 | [diff] [blame] | 696 | return (*it)->GetDtmfSender(); |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 697 | } |
| 698 | |
deadbeef | fac0655 | 2015-11-25 11:26:01 -0800 | [diff] [blame] | 699 | rtc::scoped_refptr<RtpSenderInterface> PeerConnection::CreateSender( |
deadbeef | bd7d8f7 | 2015-12-18 16:58:44 -0800 | [diff] [blame] | 700 | const std::string& kind, |
| 701 | const std::string& stream_id) { |
Peter Boström | 1a9d615 | 2015-12-08 22:15:17 +0100 | [diff] [blame] | 702 | TRACE_EVENT0("webrtc", "PeerConnection::CreateSender"); |
zhihuang | 29ff844 | 2016-07-27 11:07:25 -0700 | [diff] [blame] | 703 | if (IsClosed()) { |
| 704 | return nullptr; |
| 705 | } |
deadbeef | a601f5c | 2016-06-06 14:27:39 -0700 | [diff] [blame] | 706 | rtc::scoped_refptr<RtpSenderProxyWithInternal<RtpSenderInternal>> new_sender; |
deadbeef | fac0655 | 2015-11-25 11:26:01 -0800 | [diff] [blame] | 707 | if (kind == MediaStreamTrackInterface::kAudioKind) { |
deadbeef | a601f5c | 2016-06-06 14:27:39 -0700 | [diff] [blame] | 708 | new_sender = RtpSenderProxyWithInternal<RtpSenderInternal>::Create( |
Taylor Brandstetter | ba29c6a | 2016-06-27 16:30:35 -0700 | [diff] [blame] | 709 | signaling_thread(), |
| 710 | new AudioRtpSender(session_->voice_channel(), stats_.get())); |
deadbeef | fac0655 | 2015-11-25 11:26:01 -0800 | [diff] [blame] | 711 | } else if (kind == MediaStreamTrackInterface::kVideoKind) { |
deadbeef | a601f5c | 2016-06-06 14:27:39 -0700 | [diff] [blame] | 712 | new_sender = RtpSenderProxyWithInternal<RtpSenderInternal>::Create( |
Taylor Brandstetter | ba29c6a | 2016-06-27 16:30:35 -0700 | [diff] [blame] | 713 | signaling_thread(), new VideoRtpSender(session_->video_channel())); |
deadbeef | fac0655 | 2015-11-25 11:26:01 -0800 | [diff] [blame] | 714 | } else { |
| 715 | LOG(LS_ERROR) << "CreateSender called with invalid kind: " << kind; |
deadbeef | e1f9d83 | 2016-01-14 15:35:42 -0800 | [diff] [blame] | 716 | return new_sender; |
deadbeef | fac0655 | 2015-11-25 11:26:01 -0800 | [diff] [blame] | 717 | } |
deadbeef | bd7d8f7 | 2015-12-18 16:58:44 -0800 | [diff] [blame] | 718 | if (!stream_id.empty()) { |
deadbeef | a601f5c | 2016-06-06 14:27:39 -0700 | [diff] [blame] | 719 | new_sender->internal()->set_stream_id(stream_id); |
deadbeef | bd7d8f7 | 2015-12-18 16:58:44 -0800 | [diff] [blame] | 720 | } |
deadbeef | fac0655 | 2015-11-25 11:26:01 -0800 | [diff] [blame] | 721 | senders_.push_back(new_sender); |
deadbeef | e1f9d83 | 2016-01-14 15:35:42 -0800 | [diff] [blame] | 722 | return new_sender; |
deadbeef | fac0655 | 2015-11-25 11:26:01 -0800 | [diff] [blame] | 723 | } |
| 724 | |
deadbeef | 70ab1a1 | 2015-09-28 16:53:55 -0700 | [diff] [blame] | 725 | std::vector<rtc::scoped_refptr<RtpSenderInterface>> PeerConnection::GetSenders() |
| 726 | const { |
deadbeef | a601f5c | 2016-06-06 14:27:39 -0700 | [diff] [blame] | 727 | std::vector<rtc::scoped_refptr<RtpSenderInterface>> ret; |
| 728 | for (const auto& sender : senders_) { |
| 729 | ret.push_back(sender.get()); |
| 730 | } |
| 731 | return ret; |
deadbeef | 70ab1a1 | 2015-09-28 16:53:55 -0700 | [diff] [blame] | 732 | } |
| 733 | |
| 734 | std::vector<rtc::scoped_refptr<RtpReceiverInterface>> |
| 735 | PeerConnection::GetReceivers() const { |
deadbeef | a601f5c | 2016-06-06 14:27:39 -0700 | [diff] [blame] | 736 | std::vector<rtc::scoped_refptr<RtpReceiverInterface>> ret; |
| 737 | for (const auto& receiver : receivers_) { |
| 738 | ret.push_back(receiver.get()); |
| 739 | } |
| 740 | return ret; |
deadbeef | 70ab1a1 | 2015-09-28 16:53:55 -0700 | [diff] [blame] | 741 | } |
| 742 | |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 743 | bool PeerConnection::GetStats(StatsObserver* observer, |
wu@webrtc.org | b9a088b | 2014-02-13 23:18:49 +0000 | [diff] [blame] | 744 | MediaStreamTrackInterface* track, |
| 745 | StatsOutputLevel level) { |
Peter Boström | 1a9d615 | 2015-12-08 22:15:17 +0100 | [diff] [blame] | 746 | TRACE_EVENT0("webrtc", "PeerConnection::GetStats"); |
deadbeef | 0a6c4ca | 2015-10-06 11:38:28 -0700 | [diff] [blame] | 747 | RTC_DCHECK(signaling_thread()->IsCurrent()); |
nisse | 7ce109a | 2017-01-31 00:57:56 -0800 | [diff] [blame] | 748 | if (!observer) { |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 749 | LOG(LS_ERROR) << "GetStats - observer is NULL."; |
| 750 | return false; |
| 751 | } |
| 752 | |
tommi@webrtc.org | 03505bc | 2014-07-14 20:15:26 +0000 | [diff] [blame] | 753 | stats_->UpdateStats(level); |
zhihuang | e9e94c3 | 2016-11-04 11:38:15 -0700 | [diff] [blame] | 754 | // The StatsCollector is used to tell if a track is valid because it may |
| 755 | // remember tracks that the PeerConnection previously removed. |
| 756 | if (track && !stats_->IsValidTrack(track->id())) { |
| 757 | LOG(LS_WARNING) << "GetStats is called with an invalid track: " |
| 758 | << track->id(); |
| 759 | return false; |
| 760 | } |
Taylor Brandstetter | 5d97a9a | 2016-06-10 14:17:27 -0700 | [diff] [blame] | 761 | signaling_thread()->Post(RTC_FROM_HERE, this, MSG_GETSTATS, |
tommi@webrtc.org | 5b06b06 | 2014-08-15 08:38:30 +0000 | [diff] [blame] | 762 | new GetStatsMsg(observer, track)); |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 763 | return true; |
| 764 | } |
| 765 | |
hbos | 74e1a4f | 2016-09-15 23:33:01 -0700 | [diff] [blame] | 766 | void PeerConnection::GetStats(RTCStatsCollectorCallback* callback) { |
| 767 | RTC_DCHECK(stats_collector_); |
| 768 | stats_collector_->GetStatsReport(callback); |
| 769 | } |
| 770 | |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 771 | PeerConnectionInterface::SignalingState PeerConnection::signaling_state() { |
| 772 | return signaling_state_; |
| 773 | } |
| 774 | |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 775 | PeerConnectionInterface::IceConnectionState |
| 776 | PeerConnection::ice_connection_state() { |
| 777 | return ice_connection_state_; |
| 778 | } |
| 779 | |
| 780 | PeerConnectionInterface::IceGatheringState |
| 781 | PeerConnection::ice_gathering_state() { |
| 782 | return ice_gathering_state_; |
| 783 | } |
| 784 | |
buildbot@webrtc.org | d4e598d | 2014-07-29 17:36:52 +0000 | [diff] [blame] | 785 | rtc::scoped_refptr<DataChannelInterface> |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 786 | PeerConnection::CreateDataChannel( |
| 787 | const std::string& label, |
| 788 | const DataChannelInit* config) { |
Peter Boström | 1a9d615 | 2015-12-08 22:15:17 +0100 | [diff] [blame] | 789 | TRACE_EVENT0("webrtc", "PeerConnection::CreateDataChannel"); |
zhihuang | 9763d56 | 2016-08-05 11:14:50 -0700 | [diff] [blame] | 790 | #ifdef HAVE_QUIC |
| 791 | if (session_->data_channel_type() == cricket::DCT_QUIC) { |
| 792 | // TODO(zhihuang): Handle case when config is NULL. |
| 793 | if (!config) { |
| 794 | LOG(LS_ERROR) << "Missing config for QUIC data channel."; |
| 795 | return nullptr; |
| 796 | } |
| 797 | // TODO(zhihuang): Allow unreliable or ordered QUIC data channels. |
| 798 | if (!config->reliable || config->ordered) { |
| 799 | LOG(LS_ERROR) << "QUIC data channel does not implement unreliable or " |
| 800 | "ordered delivery."; |
| 801 | return nullptr; |
| 802 | } |
| 803 | return session_->quic_data_transport()->CreateDataChannel(label, config); |
| 804 | } |
| 805 | #endif // HAVE_QUIC |
| 806 | |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 807 | bool first_datachannel = !HasDataChannels(); |
jiayl@webrtc.org | 001fd2d | 2014-05-29 15:31:11 +0000 | [diff] [blame] | 808 | |
kwiberg | d1fe281 | 2016-04-27 06:47:29 -0700 | [diff] [blame] | 809 | std::unique_ptr<InternalDataChannelInit> internal_config; |
henrika@webrtc.org | aebb1ad | 2014-01-14 10:00:58 +0000 | [diff] [blame] | 810 | if (config) { |
| 811 | internal_config.reset(new InternalDataChannelInit(*config)); |
| 812 | } |
buildbot@webrtc.org | d4e598d | 2014-07-29 17:36:52 +0000 | [diff] [blame] | 813 | rtc::scoped_refptr<DataChannelInterface> channel( |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 814 | InternalCreateDataChannel(label, internal_config.get())); |
| 815 | if (!channel.get()) { |
| 816 | return nullptr; |
| 817 | } |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 818 | |
jiayl@webrtc.org | 001fd2d | 2014-05-29 15:31:11 +0000 | [diff] [blame] | 819 | // Trigger the onRenegotiationNeeded event for every new RTP DataChannel, or |
| 820 | // the first SCTP DataChannel. |
| 821 | if (session_->data_channel_type() == cricket::DCT_RTP || first_datachannel) { |
| 822 | observer_->OnRenegotiationNeeded(); |
| 823 | } |
wu@webrtc.org | 91053e7 | 2013-08-10 07:18:04 +0000 | [diff] [blame] | 824 | |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 825 | return DataChannelProxy::Create(signaling_thread(), channel.get()); |
| 826 | } |
| 827 | |
| 828 | void PeerConnection::CreateOffer(CreateSessionDescriptionObserver* observer, |
| 829 | const MediaConstraintsInterface* constraints) { |
Peter Boström | 1a9d615 | 2015-12-08 22:15:17 +0100 | [diff] [blame] | 830 | TRACE_EVENT0("webrtc", "PeerConnection::CreateOffer"); |
nisse | 7ce109a | 2017-01-31 00:57:56 -0800 | [diff] [blame] | 831 | if (!observer) { |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 832 | LOG(LS_ERROR) << "CreateOffer - observer is NULL."; |
| 833 | return; |
| 834 | } |
zhihuang | 1c378ed | 2017-08-17 14:10:50 -0700 | [diff] [blame] | 835 | PeerConnectionInterface::RTCOfferAnswerOptions offer_answer_options; |
| 836 | // Always create an offer even if |ConvertConstraintsToOfferAnswerOptions| |
| 837 | // returns false for now. Because |ConvertConstraintsToOfferAnswerOptions| |
| 838 | // compares the mandatory fields parsed with the mandatory fields added in the |
| 839 | // |constraints| and some downstream applications might create offers with |
| 840 | // mandatory fields which would not be parsed in the helper method. For |
| 841 | // example, in Chromium/remoting, |kEnableDtlsSrtp| is added to the |
| 842 | // |constraints| as a mandatory field but it is not parsed. |
| 843 | ConvertConstraintsToOfferAnswerOptions(constraints, &offer_answer_options); |
jiayl@webrtc.org | b18bf5e | 2014-08-04 18:34:16 +0000 | [diff] [blame] | 844 | |
zhihuang | 1c378ed | 2017-08-17 14:10:50 -0700 | [diff] [blame] | 845 | CreateOffer(observer, offer_answer_options); |
jiayl@webrtc.org | b18bf5e | 2014-08-04 18:34:16 +0000 | [diff] [blame] | 846 | } |
| 847 | |
| 848 | void PeerConnection::CreateOffer(CreateSessionDescriptionObserver* observer, |
| 849 | const RTCOfferAnswerOptions& options) { |
Peter Boström | 1a9d615 | 2015-12-08 22:15:17 +0100 | [diff] [blame] | 850 | TRACE_EVENT0("webrtc", "PeerConnection::CreateOffer"); |
nisse | 7ce109a | 2017-01-31 00:57:56 -0800 | [diff] [blame] | 851 | if (!observer) { |
jiayl@webrtc.org | b18bf5e | 2014-08-04 18:34:16 +0000 | [diff] [blame] | 852 | LOG(LS_ERROR) << "CreateOffer - observer is NULL."; |
| 853 | return; |
| 854 | } |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 855 | |
zhihuang | 1c378ed | 2017-08-17 14:10:50 -0700 | [diff] [blame] | 856 | if (!ValidateOfferAnswerOptions(options)) { |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 857 | std::string error = "CreateOffer called with invalid options."; |
| 858 | LOG(LS_ERROR) << error; |
| 859 | PostCreateSessionDescriptionFailure(observer, error); |
| 860 | return; |
| 861 | } |
| 862 | |
zhihuang | 1c378ed | 2017-08-17 14:10:50 -0700 | [diff] [blame] | 863 | cricket::MediaSessionOptions session_options; |
| 864 | GetOptionsForOffer(options, &session_options); |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 865 | session_->CreateOffer(observer, options, session_options); |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 866 | } |
| 867 | |
| 868 | void PeerConnection::CreateAnswer( |
| 869 | CreateSessionDescriptionObserver* observer, |
| 870 | const MediaConstraintsInterface* constraints) { |
Peter Boström | 1a9d615 | 2015-12-08 22:15:17 +0100 | [diff] [blame] | 871 | TRACE_EVENT0("webrtc", "PeerConnection::CreateAnswer"); |
nisse | 7ce109a | 2017-01-31 00:57:56 -0800 | [diff] [blame] | 872 | if (!observer) { |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 873 | LOG(LS_ERROR) << "CreateAnswer - observer is NULL."; |
| 874 | return; |
| 875 | } |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 876 | |
zhihuang | 1c378ed | 2017-08-17 14:10:50 -0700 | [diff] [blame] | 877 | if (!session_->remote_description() || |
| 878 | session_->remote_description()->type() != |
| 879 | SessionDescriptionInterface::kOffer) { |
| 880 | std::string error = "CreateAnswer called without remote offer."; |
| 881 | LOG(LS_ERROR) << error; |
| 882 | PostCreateSessionDescriptionFailure(observer, error); |
| 883 | return; |
| 884 | } |
| 885 | |
| 886 | PeerConnectionInterface::RTCOfferAnswerOptions offer_answer_options; |
| 887 | if (!ConvertConstraintsToOfferAnswerOptions(constraints, |
| 888 | &offer_answer_options)) { |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 889 | std::string error = "CreateAnswer called with invalid constraints."; |
| 890 | LOG(LS_ERROR) << error; |
| 891 | PostCreateSessionDescriptionFailure(observer, error); |
| 892 | return; |
| 893 | } |
| 894 | |
zhihuang | 1c378ed | 2017-08-17 14:10:50 -0700 | [diff] [blame] | 895 | cricket::MediaSessionOptions session_options; |
| 896 | GetOptionsForAnswer(offer_answer_options, &session_options); |
hta | a2a49d9 | 2016-03-04 02:51:39 -0800 | [diff] [blame] | 897 | session_->CreateAnswer(observer, session_options); |
| 898 | } |
| 899 | |
| 900 | void PeerConnection::CreateAnswer(CreateSessionDescriptionObserver* observer, |
| 901 | const RTCOfferAnswerOptions& options) { |
| 902 | TRACE_EVENT0("webrtc", "PeerConnection::CreateAnswer"); |
nisse | 7ce109a | 2017-01-31 00:57:56 -0800 | [diff] [blame] | 903 | if (!observer) { |
hta | a2a49d9 | 2016-03-04 02:51:39 -0800 | [diff] [blame] | 904 | LOG(LS_ERROR) << "CreateAnswer - observer is NULL."; |
| 905 | return; |
| 906 | } |
| 907 | |
| 908 | cricket::MediaSessionOptions session_options; |
zhihuang | 1c378ed | 2017-08-17 14:10:50 -0700 | [diff] [blame] | 909 | GetOptionsForAnswer(options, &session_options); |
hta | a2a49d9 | 2016-03-04 02:51:39 -0800 | [diff] [blame] | 910 | |
| 911 | session_->CreateAnswer(observer, session_options); |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 912 | } |
| 913 | |
| 914 | void PeerConnection::SetLocalDescription( |
| 915 | SetSessionDescriptionObserver* observer, |
| 916 | SessionDescriptionInterface* desc) { |
Peter Boström | 1a9d615 | 2015-12-08 22:15:17 +0100 | [diff] [blame] | 917 | TRACE_EVENT0("webrtc", "PeerConnection::SetLocalDescription"); |
zhihuang | 29ff844 | 2016-07-27 11:07:25 -0700 | [diff] [blame] | 918 | if (IsClosed()) { |
| 919 | return; |
| 920 | } |
nisse | 7ce109a | 2017-01-31 00:57:56 -0800 | [diff] [blame] | 921 | if (!observer) { |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 922 | LOG(LS_ERROR) << "SetLocalDescription - observer is NULL."; |
| 923 | return; |
| 924 | } |
| 925 | if (!desc) { |
| 926 | PostSetSessionDescriptionFailure(observer, "SessionDescription is NULL."); |
| 927 | return; |
| 928 | } |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 929 | // Update stats here so that we have the most recent stats for tracks and |
| 930 | // streams that might be removed by updating the session description. |
tommi@webrtc.org | 03505bc | 2014-07-14 20:15:26 +0000 | [diff] [blame] | 931 | stats_->UpdateStats(kStatsOutputLevelStandard); |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 932 | std::string error; |
| 933 | if (!session_->SetLocalDescription(desc, &error)) { |
| 934 | PostSetSessionDescriptionFailure(observer, error); |
| 935 | return; |
| 936 | } |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 937 | |
| 938 | // If setting the description decided our SSL role, allocate any necessary |
| 939 | // SCTP sids. |
| 940 | rtc::SSLRole role; |
| 941 | if (session_->data_channel_type() == cricket::DCT_SCTP && |
deadbeef | 953c2ce | 2017-01-09 14:53:41 -0800 | [diff] [blame] | 942 | session_->GetSctpSslRole(&role)) { |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 943 | AllocateSctpSids(role); |
| 944 | } |
| 945 | |
| 946 | // Update state and SSRC of local MediaStreams and DataChannels based on the |
| 947 | // local session description. |
| 948 | const cricket::ContentInfo* audio_content = |
| 949 | GetFirstAudioContent(desc->description()); |
| 950 | if (audio_content) { |
deadbeef | faac497 | 2015-11-12 15:33:07 -0800 | [diff] [blame] | 951 | if (audio_content->rejected) { |
| 952 | RemoveTracks(cricket::MEDIA_TYPE_AUDIO); |
| 953 | } else { |
| 954 | const cricket::AudioContentDescription* audio_desc = |
| 955 | static_cast<const cricket::AudioContentDescription*>( |
| 956 | audio_content->description); |
| 957 | UpdateLocalTracks(audio_desc->streams(), audio_desc->type()); |
| 958 | } |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 959 | } |
| 960 | |
| 961 | const cricket::ContentInfo* video_content = |
| 962 | GetFirstVideoContent(desc->description()); |
| 963 | if (video_content) { |
deadbeef | faac497 | 2015-11-12 15:33:07 -0800 | [diff] [blame] | 964 | if (video_content->rejected) { |
| 965 | RemoveTracks(cricket::MEDIA_TYPE_VIDEO); |
| 966 | } else { |
| 967 | const cricket::VideoContentDescription* video_desc = |
| 968 | static_cast<const cricket::VideoContentDescription*>( |
| 969 | video_content->description); |
| 970 | UpdateLocalTracks(video_desc->streams(), video_desc->type()); |
| 971 | } |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 972 | } |
| 973 | |
| 974 | const cricket::ContentInfo* data_content = |
| 975 | GetFirstDataContent(desc->description()); |
| 976 | if (data_content) { |
| 977 | const cricket::DataContentDescription* data_desc = |
| 978 | static_cast<const cricket::DataContentDescription*>( |
| 979 | data_content->description); |
| 980 | if (rtc::starts_with(data_desc->protocol().data(), |
| 981 | cricket::kMediaProtocolRtpPrefix)) { |
| 982 | UpdateLocalRtpDataChannels(data_desc->streams()); |
| 983 | } |
| 984 | } |
| 985 | |
| 986 | SetSessionDescriptionMsg* msg = new SetSessionDescriptionMsg(observer); |
Taylor Brandstetter | 5d97a9a | 2016-06-10 14:17:27 -0700 | [diff] [blame] | 987 | signaling_thread()->Post(RTC_FROM_HERE, this, |
| 988 | MSG_SET_SESSIONDESCRIPTION_SUCCESS, msg); |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 989 | |
deadbeef | 42a4263 | 2017-03-10 15:18:00 -0800 | [diff] [blame] | 990 | // According to JSEP, after setLocalDescription, changing the candidate pool |
| 991 | // size is not allowed, and changing the set of ICE servers will not result |
| 992 | // in new candidates being gathered. |
| 993 | port_allocator_->FreezeCandidatePool(); |
| 994 | |
deadbeef | cbecd35 | 2015-09-23 11:50:27 -0700 | [diff] [blame] | 995 | // MaybeStartGathering needs to be called after posting |
| 996 | // MSG_SET_SESSIONDESCRIPTION_SUCCESS, so that we don't signal any candidates |
| 997 | // before signaling that SetLocalDescription completed. |
| 998 | session_->MaybeStartGathering(); |
deadbeef | 42a4263 | 2017-03-10 15:18:00 -0800 | [diff] [blame] | 999 | |
| 1000 | if (desc->type() == SessionDescriptionInterface::kAnswer) { |
| 1001 | // TODO(deadbeef): We already had to hop to the network thread for |
| 1002 | // MaybeStartGathering... |
| 1003 | network_thread()->Invoke<void>( |
| 1004 | RTC_FROM_HERE, |
| 1005 | rtc::Bind(&cricket::PortAllocator::DiscardCandidatePool, |
| 1006 | port_allocator_.get())); |
| 1007 | } |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 1008 | } |
| 1009 | |
| 1010 | void PeerConnection::SetRemoteDescription( |
| 1011 | SetSessionDescriptionObserver* observer, |
| 1012 | SessionDescriptionInterface* desc) { |
Peter Boström | 1a9d615 | 2015-12-08 22:15:17 +0100 | [diff] [blame] | 1013 | TRACE_EVENT0("webrtc", "PeerConnection::SetRemoteDescription"); |
zhihuang | 29ff844 | 2016-07-27 11:07:25 -0700 | [diff] [blame] | 1014 | if (IsClosed()) { |
| 1015 | return; |
| 1016 | } |
nisse | 7ce109a | 2017-01-31 00:57:56 -0800 | [diff] [blame] | 1017 | if (!observer) { |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 1018 | LOG(LS_ERROR) << "SetRemoteDescription - observer is NULL."; |
| 1019 | return; |
| 1020 | } |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 1021 | if (!desc) { |
| 1022 | PostSetSessionDescriptionFailure(observer, "SessionDescription is NULL."); |
| 1023 | return; |
| 1024 | } |
| 1025 | // Update stats here so that we have the most recent stats for tracks and |
| 1026 | // streams that might be removed by updating the session description. |
tommi@webrtc.org | 03505bc | 2014-07-14 20:15:26 +0000 | [diff] [blame] | 1027 | stats_->UpdateStats(kStatsOutputLevelStandard); |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 1028 | std::string error; |
| 1029 | if (!session_->SetRemoteDescription(desc, &error)) { |
| 1030 | PostSetSessionDescriptionFailure(observer, error); |
| 1031 | return; |
| 1032 | } |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 1033 | |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 1034 | // If setting the description decided our SSL role, allocate any necessary |
| 1035 | // SCTP sids. |
| 1036 | rtc::SSLRole role; |
| 1037 | if (session_->data_channel_type() == cricket::DCT_SCTP && |
deadbeef | 953c2ce | 2017-01-09 14:53:41 -0800 | [diff] [blame] | 1038 | session_->GetSctpSslRole(&role)) { |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 1039 | AllocateSctpSids(role); |
| 1040 | } |
| 1041 | |
| 1042 | const cricket::SessionDescription* remote_desc = desc->description(); |
deadbeef | bda7e0b | 2015-12-08 17:13:40 -0800 | [diff] [blame] | 1043 | const cricket::ContentInfo* audio_content = GetFirstAudioContent(remote_desc); |
| 1044 | const cricket::ContentInfo* video_content = GetFirstVideoContent(remote_desc); |
| 1045 | const cricket::AudioContentDescription* audio_desc = |
| 1046 | GetFirstAudioContentDescription(remote_desc); |
| 1047 | const cricket::VideoContentDescription* video_desc = |
| 1048 | GetFirstVideoContentDescription(remote_desc); |
| 1049 | const cricket::DataContentDescription* data_desc = |
| 1050 | GetFirstDataContentDescription(remote_desc); |
| 1051 | |
| 1052 | // Check if the descriptions include streams, just in case the peer supports |
| 1053 | // MSID, but doesn't indicate so with "a=msid-semantic". |
| 1054 | if (remote_desc->msid_supported() || |
| 1055 | (audio_desc && !audio_desc->streams().empty()) || |
| 1056 | (video_desc && !video_desc->streams().empty())) { |
| 1057 | remote_peer_supports_msid_ = true; |
| 1058 | } |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 1059 | |
| 1060 | // We wait to signal new streams until we finish processing the description, |
| 1061 | // since only at that point will new streams have all their tracks. |
| 1062 | rtc::scoped_refptr<StreamCollection> new_streams(StreamCollection::Create()); |
| 1063 | |
| 1064 | // Find all audio rtp streams and create corresponding remote AudioTracks |
| 1065 | // and MediaStreams. |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 1066 | if (audio_content) { |
deadbeef | faac497 | 2015-11-12 15:33:07 -0800 | [diff] [blame] | 1067 | if (audio_content->rejected) { |
| 1068 | RemoveTracks(cricket::MEDIA_TYPE_AUDIO); |
| 1069 | } else { |
deadbeef | bda7e0b | 2015-12-08 17:13:40 -0800 | [diff] [blame] | 1070 | bool default_audio_track_needed = |
| 1071 | !remote_peer_supports_msid_ && |
| 1072 | MediaContentDirectionHasSend(audio_desc->direction()); |
| 1073 | UpdateRemoteStreamsList(GetActiveStreams(audio_desc), |
| 1074 | default_audio_track_needed, audio_desc->type(), |
deadbeef | faac497 | 2015-11-12 15:33:07 -0800 | [diff] [blame] | 1075 | new_streams); |
deadbeef | faac497 | 2015-11-12 15:33:07 -0800 | [diff] [blame] | 1076 | } |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 1077 | } |
| 1078 | |
| 1079 | // Find all video rtp streams and create corresponding remote VideoTracks |
| 1080 | // and MediaStreams. |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 1081 | if (video_content) { |
deadbeef | faac497 | 2015-11-12 15:33:07 -0800 | [diff] [blame] | 1082 | if (video_content->rejected) { |
| 1083 | RemoveTracks(cricket::MEDIA_TYPE_VIDEO); |
| 1084 | } else { |
deadbeef | bda7e0b | 2015-12-08 17:13:40 -0800 | [diff] [blame] | 1085 | bool default_video_track_needed = |
| 1086 | !remote_peer_supports_msid_ && |
| 1087 | MediaContentDirectionHasSend(video_desc->direction()); |
| 1088 | UpdateRemoteStreamsList(GetActiveStreams(video_desc), |
| 1089 | default_video_track_needed, video_desc->type(), |
deadbeef | faac497 | 2015-11-12 15:33:07 -0800 | [diff] [blame] | 1090 | new_streams); |
deadbeef | faac497 | 2015-11-12 15:33:07 -0800 | [diff] [blame] | 1091 | } |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 1092 | } |
| 1093 | |
| 1094 | // Update the DataChannels with the information from the remote peer. |
deadbeef | bda7e0b | 2015-12-08 17:13:40 -0800 | [diff] [blame] | 1095 | if (data_desc) { |
| 1096 | if (rtc::starts_with(data_desc->protocol().data(), |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 1097 | cricket::kMediaProtocolRtpPrefix)) { |
deadbeef | bda7e0b | 2015-12-08 17:13:40 -0800 | [diff] [blame] | 1098 | UpdateRemoteRtpDataChannels(GetActiveStreams(data_desc)); |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 1099 | } |
| 1100 | } |
| 1101 | |
| 1102 | // Iterate new_streams and notify the observer about new MediaStreams. |
| 1103 | for (size_t i = 0; i < new_streams->count(); ++i) { |
| 1104 | MediaStreamInterface* new_stream = new_streams->at(i); |
| 1105 | stats_->AddStream(new_stream); |
Taylor Brandstetter | 98cde26 | 2016-05-31 13:02:21 -0700 | [diff] [blame] | 1106 | observer_->OnAddStream( |
| 1107 | rtc::scoped_refptr<MediaStreamInterface>(new_stream)); |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 1108 | } |
| 1109 | |
deadbeef | bda7e0b | 2015-12-08 17:13:40 -0800 | [diff] [blame] | 1110 | UpdateEndedRemoteMediaStreams(); |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 1111 | |
| 1112 | SetSessionDescriptionMsg* msg = new SetSessionDescriptionMsg(observer); |
Taylor Brandstetter | 5d97a9a | 2016-06-10 14:17:27 -0700 | [diff] [blame] | 1113 | signaling_thread()->Post(RTC_FROM_HERE, this, |
| 1114 | MSG_SET_SESSIONDESCRIPTION_SUCCESS, msg); |
deadbeef | 42a4263 | 2017-03-10 15:18:00 -0800 | [diff] [blame] | 1115 | |
| 1116 | if (desc->type() == SessionDescriptionInterface::kAnswer) { |
| 1117 | // TODO(deadbeef): We already had to hop to the network thread for |
| 1118 | // MaybeStartGathering... |
| 1119 | network_thread()->Invoke<void>( |
| 1120 | RTC_FROM_HERE, |
| 1121 | rtc::Bind(&cricket::PortAllocator::DiscardCandidatePool, |
| 1122 | port_allocator_.get())); |
| 1123 | } |
deadbeef | fc648b6 | 2015-10-13 16:42:33 -0700 | [diff] [blame] | 1124 | } |
| 1125 | |
deadbeef | 46c7389 | 2016-11-16 19:42:04 -0800 | [diff] [blame] | 1126 | PeerConnectionInterface::RTCConfiguration PeerConnection::GetConfiguration() { |
| 1127 | return configuration_; |
| 1128 | } |
| 1129 | |
deadbeef | 293e926 | 2017-01-11 12:28:30 -0800 | [diff] [blame] | 1130 | bool PeerConnection::SetConfiguration(const RTCConfiguration& configuration, |
| 1131 | RTCError* error) { |
Peter Boström | 1a9d615 | 2015-12-08 22:15:17 +0100 | [diff] [blame] | 1132 | TRACE_EVENT0("webrtc", "PeerConnection::SetConfiguration"); |
deadbeef | 6de92f9 | 2016-12-12 18:49:32 -0800 | [diff] [blame] | 1133 | |
| 1134 | if (session_->local_description() && |
| 1135 | configuration.ice_candidate_pool_size != |
| 1136 | configuration_.ice_candidate_pool_size) { |
| 1137 | LOG(LS_ERROR) << "Can't change candidate pool size after calling " |
| 1138 | "SetLocalDescription."; |
deadbeef | 293e926 | 2017-01-11 12:28:30 -0800 | [diff] [blame] | 1139 | return SafeSetError(RTCErrorType::INVALID_MODIFICATION, error); |
buildbot@webrtc.org | 41451d4 | 2014-05-03 05:39:45 +0000 | [diff] [blame] | 1140 | } |
Taylor Brandstetter | a1c3035 | 2016-05-13 08:15:11 -0700 | [diff] [blame] | 1141 | |
deadbeef | 293e926 | 2017-01-11 12:28:30 -0800 | [diff] [blame] | 1142 | // The simplest (and most future-compatible) way to tell if the config was |
| 1143 | // modified in an invalid way is to copy each property we do support |
| 1144 | // modifying, then use operator==. There are far more properties we don't |
| 1145 | // support modifying than those we do, and more could be added. |
| 1146 | RTCConfiguration modified_config = configuration_; |
| 1147 | modified_config.servers = configuration.servers; |
| 1148 | modified_config.type = configuration.type; |
| 1149 | modified_config.ice_candidate_pool_size = |
| 1150 | configuration.ice_candidate_pool_size; |
| 1151 | modified_config.prune_turn_ports = configuration.prune_turn_ports; |
skvlad | d1f5fda | 2017-02-03 16:54:05 -0800 | [diff] [blame] | 1152 | modified_config.ice_check_min_interval = configuration.ice_check_min_interval; |
Jonas Oreland | bdcee28 | 2017-10-10 14:01:40 +0200 | [diff] [blame] | 1153 | modified_config.turn_customizer = configuration.turn_customizer; |
deadbeef | 293e926 | 2017-01-11 12:28:30 -0800 | [diff] [blame] | 1154 | if (configuration != modified_config) { |
| 1155 | LOG(LS_ERROR) << "Modifying the configuration in an unsupported way."; |
| 1156 | return SafeSetError(RTCErrorType::INVALID_MODIFICATION, error); |
| 1157 | } |
| 1158 | |
Steve Anton | 038834f | 2017-07-14 15:59:59 -0700 | [diff] [blame] | 1159 | // Validate the modified configuration. |
| 1160 | RTCError validate_error = ValidateConfiguration(modified_config); |
| 1161 | if (!validate_error.ok()) { |
| 1162 | return SafeSetError(std::move(validate_error), error); |
| 1163 | } |
| 1164 | |
deadbeef | 293e926 | 2017-01-11 12:28:30 -0800 | [diff] [blame] | 1165 | // Note that this isn't possible through chromium, since it's an unsigned |
| 1166 | // short in WebIDL. |
| 1167 | if (configuration.ice_candidate_pool_size < 0 || |
| 1168 | configuration.ice_candidate_pool_size > UINT16_MAX) { |
| 1169 | return SafeSetError(RTCErrorType::INVALID_RANGE, error); |
| 1170 | } |
| 1171 | |
| 1172 | // Parse ICE servers before hopping to network thread. |
| 1173 | cricket::ServerAddresses stun_servers; |
| 1174 | std::vector<cricket::RelayServerConfig> turn_servers; |
| 1175 | RTCErrorType parse_error = |
| 1176 | ParseIceServers(configuration.servers, &stun_servers, &turn_servers); |
| 1177 | if (parse_error != RTCErrorType::NONE) { |
| 1178 | return SafeSetError(parse_error, error); |
| 1179 | } |
| 1180 | |
| 1181 | // In theory this shouldn't fail. |
| 1182 | if (!network_thread()->Invoke<bool>( |
| 1183 | RTC_FROM_HERE, |
| 1184 | rtc::Bind(&PeerConnection::ReconfigurePortAllocator_n, this, |
| 1185 | stun_servers, turn_servers, modified_config.type, |
| 1186 | modified_config.ice_candidate_pool_size, |
Jonas Oreland | bdcee28 | 2017-10-10 14:01:40 +0200 | [diff] [blame] | 1187 | modified_config.prune_turn_ports, |
| 1188 | modified_config.turn_customizer))) { |
deadbeef | 293e926 | 2017-01-11 12:28:30 -0800 | [diff] [blame] | 1189 | LOG(LS_ERROR) << "Failed to apply configuration to PortAllocator."; |
| 1190 | return SafeSetError(RTCErrorType::INTERNAL_ERROR, error); |
| 1191 | } |
Honghai Zhang | 4cedf2b | 2016-08-31 08:18:11 -0700 | [diff] [blame] | 1192 | |
deadbeef | d1a38b5 | 2016-12-10 13:15:33 -0800 | [diff] [blame] | 1193 | // As described in JSEP, calling setConfiguration with new ICE servers or |
| 1194 | // candidate policy must set a "needs-ice-restart" bit so that the next offer |
| 1195 | // triggers an ICE restart which will pick up the changes. |
deadbeef | 293e926 | 2017-01-11 12:28:30 -0800 | [diff] [blame] | 1196 | if (modified_config.servers != configuration_.servers || |
| 1197 | modified_config.type != configuration_.type || |
| 1198 | modified_config.prune_turn_ports != configuration_.prune_turn_ports) { |
deadbeef | d1a38b5 | 2016-12-10 13:15:33 -0800 | [diff] [blame] | 1199 | session_->SetNeedsIceRestartFlag(); |
| 1200 | } |
skvlad | d1f5fda | 2017-02-03 16:54:05 -0800 | [diff] [blame] | 1201 | |
| 1202 | if (modified_config.ice_check_min_interval != |
| 1203 | configuration_.ice_check_min_interval) { |
| 1204 | session_->SetIceConfig(session_->ParseIceConfig(modified_config)); |
| 1205 | } |
| 1206 | |
deadbeef | 293e926 | 2017-01-11 12:28:30 -0800 | [diff] [blame] | 1207 | configuration_ = modified_config; |
| 1208 | return SafeSetError(RTCErrorType::NONE, error); |
buildbot@webrtc.org | 41451d4 | 2014-05-03 05:39:45 +0000 | [diff] [blame] | 1209 | } |
| 1210 | |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 1211 | bool PeerConnection::AddIceCandidate( |
| 1212 | const IceCandidateInterface* ice_candidate) { |
Peter Boström | 1a9d615 | 2015-12-08 22:15:17 +0100 | [diff] [blame] | 1213 | TRACE_EVENT0("webrtc", "PeerConnection::AddIceCandidate"); |
zhihuang | 29ff844 | 2016-07-27 11:07:25 -0700 | [diff] [blame] | 1214 | if (IsClosed()) { |
| 1215 | return false; |
| 1216 | } |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 1217 | return session_->ProcessIceMessage(ice_candidate); |
| 1218 | } |
| 1219 | |
Honghai Zhang | 7fb69db | 2016-03-14 11:59:18 -0700 | [diff] [blame] | 1220 | bool PeerConnection::RemoveIceCandidates( |
| 1221 | const std::vector<cricket::Candidate>& candidates) { |
| 1222 | TRACE_EVENT0("webrtc", "PeerConnection::RemoveIceCandidates"); |
| 1223 | return session_->RemoveRemoteIceCandidates(candidates); |
| 1224 | } |
| 1225 | |
buildbot@webrtc.org | 1567b8c | 2014-05-08 19:54:16 +0000 | [diff] [blame] | 1226 | void PeerConnection::RegisterUMAObserver(UMAObserver* observer) { |
Peter Boström | 1a9d615 | 2015-12-08 22:15:17 +0100 | [diff] [blame] | 1227 | TRACE_EVENT0("webrtc", "PeerConnection::RegisterUmaObserver"); |
buildbot@webrtc.org | 1567b8c | 2014-05-08 19:54:16 +0000 | [diff] [blame] | 1228 | uma_observer_ = observer; |
guoweis@webrtc.org | 7169afd | 2014-12-04 17:59:29 +0000 | [diff] [blame] | 1229 | |
| 1230 | if (session_) { |
| 1231 | session_->set_metrics_observer(uma_observer_); |
| 1232 | } |
| 1233 | |
mallinath@webrtc.org | d37bcfa | 2014-05-12 23:10:18 +0000 | [diff] [blame] | 1234 | // Send information about IPv4/IPv6 status. |
deadbeef | 293e926 | 2017-01-11 12:28:30 -0800 | [diff] [blame] | 1235 | if (uma_observer_) { |
Honghai Zhang | d93f50c | 2016-10-05 11:47:22 -0700 | [diff] [blame] | 1236 | port_allocator_->SetMetricsObserver(uma_observer_); |
mallinath@webrtc.org | d37bcfa | 2014-05-12 23:10:18 +0000 | [diff] [blame] | 1237 | if (port_allocator_->flags() & cricket::PORTALLOCATOR_ENABLE_IPV6) { |
Guo-wei Shieh | dfbe679 | 2015-09-03 17:12:07 -0700 | [diff] [blame] | 1238 | uma_observer_->IncrementEnumCounter( |
| 1239 | kEnumCounterAddressFamily, kPeerConnection_IPv6, |
| 1240 | kPeerConnectionAddressFamilyCounter_Max); |
mallinath@webrtc.org | b445f26 | 2014-05-23 22:19:37 +0000 | [diff] [blame] | 1241 | } else { |
Guo-wei Shieh | dfbe679 | 2015-09-03 17:12:07 -0700 | [diff] [blame] | 1242 | uma_observer_->IncrementEnumCounter( |
| 1243 | kEnumCounterAddressFamily, kPeerConnection_IPv4, |
| 1244 | kPeerConnectionAddressFamilyCounter_Max); |
mallinath@webrtc.org | d37bcfa | 2014-05-12 23:10:18 +0000 | [diff] [blame] | 1245 | } |
| 1246 | } |
buildbot@webrtc.org | 1567b8c | 2014-05-08 19:54:16 +0000 | [diff] [blame] | 1247 | } |
| 1248 | |
zstein | 4b97980 | 2017-06-02 14:37:37 -0700 | [diff] [blame] | 1249 | RTCError PeerConnection::SetBitrate(const BitrateParameters& bitrate) { |
Steve Anton | 978b876 | 2017-09-29 12:15:02 -0700 | [diff] [blame] | 1250 | if (!worker_thread()->IsCurrent()) { |
| 1251 | return worker_thread()->Invoke<RTCError>( |
zstein | 4b97980 | 2017-06-02 14:37:37 -0700 | [diff] [blame] | 1252 | RTC_FROM_HERE, rtc::Bind(&PeerConnection::SetBitrate, this, bitrate)); |
| 1253 | } |
| 1254 | |
| 1255 | const bool has_min = static_cast<bool>(bitrate.min_bitrate_bps); |
| 1256 | const bool has_current = static_cast<bool>(bitrate.current_bitrate_bps); |
| 1257 | const bool has_max = static_cast<bool>(bitrate.max_bitrate_bps); |
| 1258 | if (has_min && *bitrate.min_bitrate_bps < 0) { |
| 1259 | LOG_AND_RETURN_ERROR(RTCErrorType::INVALID_PARAMETER, |
| 1260 | "min_bitrate_bps <= 0"); |
| 1261 | } |
| 1262 | if (has_current) { |
| 1263 | if (has_min && *bitrate.current_bitrate_bps < *bitrate.min_bitrate_bps) { |
| 1264 | LOG_AND_RETURN_ERROR(RTCErrorType::INVALID_PARAMETER, |
| 1265 | "current_bitrate_bps < min_bitrate_bps"); |
| 1266 | } else if (*bitrate.current_bitrate_bps < 0) { |
| 1267 | LOG_AND_RETURN_ERROR(RTCErrorType::INVALID_PARAMETER, |
| 1268 | "curent_bitrate_bps < 0"); |
| 1269 | } |
| 1270 | } |
| 1271 | if (has_max) { |
| 1272 | if (has_current && |
| 1273 | *bitrate.max_bitrate_bps < *bitrate.current_bitrate_bps) { |
| 1274 | LOG_AND_RETURN_ERROR(RTCErrorType::INVALID_PARAMETER, |
| 1275 | "max_bitrate_bps < current_bitrate_bps"); |
| 1276 | } else if (has_min && *bitrate.max_bitrate_bps < *bitrate.min_bitrate_bps) { |
| 1277 | LOG_AND_RETURN_ERROR(RTCErrorType::INVALID_PARAMETER, |
| 1278 | "max_bitrate_bps < min_bitrate_bps"); |
| 1279 | } else if (*bitrate.max_bitrate_bps < 0) { |
| 1280 | LOG_AND_RETURN_ERROR(RTCErrorType::INVALID_PARAMETER, |
| 1281 | "max_bitrate_bps < 0"); |
| 1282 | } |
| 1283 | } |
| 1284 | |
| 1285 | Call::Config::BitrateConfigMask mask; |
| 1286 | mask.min_bitrate_bps = bitrate.min_bitrate_bps; |
| 1287 | mask.start_bitrate_bps = bitrate.current_bitrate_bps; |
| 1288 | mask.max_bitrate_bps = bitrate.max_bitrate_bps; |
| 1289 | |
| 1290 | RTC_DCHECK(call_.get()); |
| 1291 | call_->SetBitrateConfigMask(mask); |
| 1292 | |
| 1293 | return RTCError::OK(); |
| 1294 | } |
| 1295 | |
Steve Anton | 8c0f7a7 | 2017-10-03 10:03:10 -0700 | [diff] [blame] | 1296 | std::unique_ptr<rtc::SSLCertificate> |
| 1297 | PeerConnection::GetRemoteAudioSSLCertificate() { |
| 1298 | if (!session_) { |
| 1299 | return nullptr; |
| 1300 | } |
| 1301 | auto* voice_channel = session_->voice_channel(); |
| 1302 | if (!voice_channel) { |
| 1303 | return nullptr; |
| 1304 | } |
| 1305 | return GetRemoteSSLCertificate(voice_channel->transport_name()); |
| 1306 | } |
| 1307 | |
ivoc | 14d5dbe | 2016-07-04 07:06:55 -0700 | [diff] [blame] | 1308 | bool PeerConnection::StartRtcEventLog(rtc::PlatformFile file, |
| 1309 | int64_t max_size_bytes) { |
Elad Alon | 99c3fe5 | 2017-10-13 16:29:40 +0200 | [diff] [blame^] | 1310 | // TODO(eladalon): It would be better to not allow negative values into PC. |
| 1311 | const size_t max_size = (max_size_bytes < 0) |
| 1312 | ? RtcEventLog::kUnlimitedOutput |
| 1313 | : rtc::saturated_cast<size_t>(max_size_bytes); |
| 1314 | return StartRtcEventLog( |
| 1315 | rtc::MakeUnique<RtcEventLogOutputFile>(file, max_size)); |
| 1316 | } |
| 1317 | |
| 1318 | bool PeerConnection::StartRtcEventLog( |
| 1319 | std::unique_ptr<RtcEventLogOutput> output) { |
| 1320 | // This code assumes that the functor would be executed. Otherwise, this |
| 1321 | // could leak. |
| 1322 | // TODO(eladalon): When we switch to C++14 (or later), we can get rid of this |
| 1323 | // conversion to a raw pointer, passing the unique_ptr directly to the lambda. |
| 1324 | RtcEventLogOutput* output_raw = output.release(); |
| 1325 | auto functor = [this, output_raw]() { |
| 1326 | return StartRtcEventLog_w(rtc::WrapUnique<RtcEventLogOutput>(output_raw)); |
| 1327 | }; |
| 1328 | return worker_thread()->Invoke<bool>(RTC_FROM_HERE, functor); |
ivoc | 14d5dbe | 2016-07-04 07:06:55 -0700 | [diff] [blame] | 1329 | } |
| 1330 | |
| 1331 | void PeerConnection::StopRtcEventLog() { |
Steve Anton | 978b876 | 2017-09-29 12:15:02 -0700 | [diff] [blame] | 1332 | worker_thread()->Invoke<void>( |
ivoc | 14d5dbe | 2016-07-04 07:06:55 -0700 | [diff] [blame] | 1333 | RTC_FROM_HERE, rtc::Bind(&PeerConnection::StopRtcEventLog_w, this)); |
| 1334 | } |
| 1335 | |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 1336 | const SessionDescriptionInterface* PeerConnection::local_description() const { |
| 1337 | return session_->local_description(); |
| 1338 | } |
| 1339 | |
| 1340 | const SessionDescriptionInterface* PeerConnection::remote_description() const { |
| 1341 | return session_->remote_description(); |
| 1342 | } |
| 1343 | |
deadbeef | fe4a8a4 | 2016-12-20 17:56:17 -0800 | [diff] [blame] | 1344 | const SessionDescriptionInterface* PeerConnection::current_local_description() |
| 1345 | const { |
| 1346 | return session_->current_local_description(); |
| 1347 | } |
| 1348 | |
| 1349 | const SessionDescriptionInterface* PeerConnection::current_remote_description() |
| 1350 | const { |
| 1351 | return session_->current_remote_description(); |
| 1352 | } |
| 1353 | |
| 1354 | const SessionDescriptionInterface* PeerConnection::pending_local_description() |
| 1355 | const { |
| 1356 | return session_->pending_local_description(); |
| 1357 | } |
| 1358 | |
| 1359 | const SessionDescriptionInterface* PeerConnection::pending_remote_description() |
| 1360 | const { |
| 1361 | return session_->pending_remote_description(); |
| 1362 | } |
| 1363 | |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 1364 | void PeerConnection::Close() { |
Peter Boström | 1a9d615 | 2015-12-08 22:15:17 +0100 | [diff] [blame] | 1365 | TRACE_EVENT0("webrtc", "PeerConnection::Close"); |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 1366 | // Update stats here so that we have the most recent stats for tracks and |
| 1367 | // streams before the channels are closed. |
tommi@webrtc.org | 03505bc | 2014-07-14 20:15:26 +0000 | [diff] [blame] | 1368 | stats_->UpdateStats(kStatsOutputLevelStandard); |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 1369 | |
deadbeef | d59daf8 | 2015-10-14 15:02:44 -0700 | [diff] [blame] | 1370 | session_->Close(); |
deadbeef | 42a4263 | 2017-03-10 15:18:00 -0800 | [diff] [blame] | 1371 | network_thread()->Invoke<void>( |
| 1372 | RTC_FROM_HERE, |
| 1373 | rtc::Bind(&cricket::PortAllocator::DiscardCandidatePool, |
| 1374 | port_allocator_.get())); |
nisse | eaabdf6 | 2017-05-05 02:23:02 -0700 | [diff] [blame] | 1375 | |
Steve Anton | 978b876 | 2017-09-29 12:15:02 -0700 | [diff] [blame] | 1376 | worker_thread()->Invoke<void>(RTC_FROM_HERE, [this] { |
eladalon | 248fd4f | 2017-09-06 05:18:15 -0700 | [diff] [blame] | 1377 | call_.reset(); |
| 1378 | // The event log must outlive call (and any other object that uses it). |
| 1379 | event_log_.reset(); |
| 1380 | }); |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 1381 | } |
| 1382 | |
deadbeef | d59daf8 | 2015-10-14 15:02:44 -0700 | [diff] [blame] | 1383 | void PeerConnection::OnSessionStateChange(WebRtcSession* /*session*/, |
| 1384 | WebRtcSession::State state) { |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 1385 | switch (state) { |
deadbeef | d59daf8 | 2015-10-14 15:02:44 -0700 | [diff] [blame] | 1386 | case WebRtcSession::STATE_INIT: |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 1387 | ChangeSignalingState(PeerConnectionInterface::kStable); |
mallinath@webrtc.org | 19f27e6 | 2013-10-13 17:18:27 +0000 | [diff] [blame] | 1388 | break; |
deadbeef | d59daf8 | 2015-10-14 15:02:44 -0700 | [diff] [blame] | 1389 | case WebRtcSession::STATE_SENTOFFER: |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 1390 | ChangeSignalingState(PeerConnectionInterface::kHaveLocalOffer); |
| 1391 | break; |
deadbeef | d59daf8 | 2015-10-14 15:02:44 -0700 | [diff] [blame] | 1392 | case WebRtcSession::STATE_SENTPRANSWER: |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 1393 | ChangeSignalingState(PeerConnectionInterface::kHaveLocalPrAnswer); |
| 1394 | break; |
deadbeef | d59daf8 | 2015-10-14 15:02:44 -0700 | [diff] [blame] | 1395 | case WebRtcSession::STATE_RECEIVEDOFFER: |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 1396 | ChangeSignalingState(PeerConnectionInterface::kHaveRemoteOffer); |
| 1397 | break; |
deadbeef | d59daf8 | 2015-10-14 15:02:44 -0700 | [diff] [blame] | 1398 | case WebRtcSession::STATE_RECEIVEDPRANSWER: |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 1399 | ChangeSignalingState(PeerConnectionInterface::kHaveRemotePrAnswer); |
| 1400 | break; |
deadbeef | d59daf8 | 2015-10-14 15:02:44 -0700 | [diff] [blame] | 1401 | case WebRtcSession::STATE_INPROGRESS: |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 1402 | ChangeSignalingState(PeerConnectionInterface::kStable); |
| 1403 | break; |
deadbeef | d59daf8 | 2015-10-14 15:02:44 -0700 | [diff] [blame] | 1404 | case WebRtcSession::STATE_CLOSED: |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 1405 | ChangeSignalingState(PeerConnectionInterface::kClosed); |
| 1406 | break; |
| 1407 | default: |
| 1408 | break; |
| 1409 | } |
| 1410 | } |
| 1411 | |
buildbot@webrtc.org | d4e598d | 2014-07-29 17:36:52 +0000 | [diff] [blame] | 1412 | void PeerConnection::OnMessage(rtc::Message* msg) { |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 1413 | switch (msg->message_id) { |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 1414 | case MSG_SET_SESSIONDESCRIPTION_SUCCESS: { |
| 1415 | SetSessionDescriptionMsg* param = |
| 1416 | static_cast<SetSessionDescriptionMsg*>(msg->pdata); |
| 1417 | param->observer->OnSuccess(); |
| 1418 | delete param; |
| 1419 | break; |
| 1420 | } |
| 1421 | case MSG_SET_SESSIONDESCRIPTION_FAILED: { |
| 1422 | SetSessionDescriptionMsg* param = |
| 1423 | static_cast<SetSessionDescriptionMsg*>(msg->pdata); |
| 1424 | param->observer->OnFailure(param->error); |
| 1425 | delete param; |
| 1426 | break; |
| 1427 | } |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 1428 | case MSG_CREATE_SESSIONDESCRIPTION_FAILED: { |
| 1429 | CreateSessionDescriptionMsg* param = |
| 1430 | static_cast<CreateSessionDescriptionMsg*>(msg->pdata); |
| 1431 | param->observer->OnFailure(param->error); |
| 1432 | delete param; |
| 1433 | break; |
| 1434 | } |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 1435 | case MSG_GETSTATS: { |
| 1436 | GetStatsMsg* param = static_cast<GetStatsMsg*>(msg->pdata); |
nisse | e8abe3e | 2017-01-18 05:00:34 -0800 | [diff] [blame] | 1437 | StatsReports reports; |
| 1438 | stats_->GetStats(param->track, &reports); |
| 1439 | param->observer->OnComplete(reports); |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 1440 | delete param; |
| 1441 | break; |
| 1442 | } |
deadbeef | bd29246 | 2015-12-14 18:15:29 -0800 | [diff] [blame] | 1443 | case MSG_FREE_DATACHANNELS: { |
| 1444 | sctp_data_channels_to_free_.clear(); |
| 1445 | break; |
| 1446 | } |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 1447 | default: |
nisse | eb4ca4e | 2017-01-12 02:24:27 -0800 | [diff] [blame] | 1448 | RTC_NOTREACHED() << "Not implemented"; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 1449 | break; |
| 1450 | } |
| 1451 | } |
| 1452 | |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 1453 | void PeerConnection::CreateAudioReceiver(MediaStreamInterface* stream, |
perkj | d61bf80 | 2016-03-24 03:16:19 -0700 | [diff] [blame] | 1454 | const std::string& track_id, |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 1455 | uint32_t ssrc) { |
zhihuang | 81c3a03 | 2016-11-17 12:06:24 -0800 | [diff] [blame] | 1456 | rtc::scoped_refptr<RtpReceiverProxyWithInternal<RtpReceiverInternal>> |
| 1457 | receiver = RtpReceiverProxyWithInternal<RtpReceiverInternal>::Create( |
deadbeef | e814a0d | 2017-02-25 18:15:09 -0800 | [diff] [blame] | 1458 | signaling_thread(), |
| 1459 | new AudioRtpReceiver(track_id, ssrc, session_->voice_channel())); |
| 1460 | stream->AddTrack( |
| 1461 | static_cast<AudioTrackInterface*>(receiver->internal()->track().get())); |
zhihuang | 81c3a03 | 2016-11-17 12:06:24 -0800 | [diff] [blame] | 1462 | receivers_.push_back(receiver); |
| 1463 | std::vector<rtc::scoped_refptr<MediaStreamInterface>> streams; |
| 1464 | streams.push_back(rtc::scoped_refptr<MediaStreamInterface>(stream)); |
| 1465 | observer_->OnAddTrack(receiver, streams); |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 1466 | } |
| 1467 | |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 1468 | void PeerConnection::CreateVideoReceiver(MediaStreamInterface* stream, |
perkj | f0dcfe2 | 2016-03-10 18:32:00 +0100 | [diff] [blame] | 1469 | const std::string& track_id, |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 1470 | uint32_t ssrc) { |
zhihuang | 81c3a03 | 2016-11-17 12:06:24 -0800 | [diff] [blame] | 1471 | rtc::scoped_refptr<RtpReceiverProxyWithInternal<RtpReceiverInternal>> |
| 1472 | receiver = RtpReceiverProxyWithInternal<RtpReceiverInternal>::Create( |
deadbeef | a601f5c | 2016-06-06 14:27:39 -0700 | [diff] [blame] | 1473 | signaling_thread(), |
Steve Anton | 978b876 | 2017-09-29 12:15:02 -0700 | [diff] [blame] | 1474 | new VideoRtpReceiver(track_id, worker_thread(), ssrc, |
deadbeef | e814a0d | 2017-02-25 18:15:09 -0800 | [diff] [blame] | 1475 | session_->video_channel())); |
| 1476 | stream->AddTrack( |
| 1477 | static_cast<VideoTrackInterface*>(receiver->internal()->track().get())); |
zhihuang | 81c3a03 | 2016-11-17 12:06:24 -0800 | [diff] [blame] | 1478 | receivers_.push_back(receiver); |
| 1479 | std::vector<rtc::scoped_refptr<MediaStreamInterface>> streams; |
| 1480 | streams.push_back(rtc::scoped_refptr<MediaStreamInterface>(stream)); |
| 1481 | observer_->OnAddTrack(receiver, streams); |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 1482 | } |
| 1483 | |
deadbeef | 70ab1a1 | 2015-09-28 16:53:55 -0700 | [diff] [blame] | 1484 | // TODO(deadbeef): Keep RtpReceivers around even if track goes away in remote |
| 1485 | // description. |
Henrik Boström | 933d8b0 | 2017-10-10 10:05:16 -0700 | [diff] [blame] | 1486 | rtc::scoped_refptr<RtpReceiverInterface> PeerConnection::RemoveAndStopReceiver( |
| 1487 | const std::string& track_id) { |
perkj | d61bf80 | 2016-03-24 03:16:19 -0700 | [diff] [blame] | 1488 | auto it = FindReceiverForTrack(track_id); |
deadbeef | 70ab1a1 | 2015-09-28 16:53:55 -0700 | [diff] [blame] | 1489 | if (it == receivers_.end()) { |
perkj | d61bf80 | 2016-03-24 03:16:19 -0700 | [diff] [blame] | 1490 | LOG(LS_WARNING) << "RtpReceiver for track with id " << track_id |
deadbeef | 70ab1a1 | 2015-09-28 16:53:55 -0700 | [diff] [blame] | 1491 | << " doesn't exist."; |
Henrik Boström | 933d8b0 | 2017-10-10 10:05:16 -0700 | [diff] [blame] | 1492 | return nullptr; |
deadbeef | 70ab1a1 | 2015-09-28 16:53:55 -0700 | [diff] [blame] | 1493 | } |
Henrik Boström | 933d8b0 | 2017-10-10 10:05:16 -0700 | [diff] [blame] | 1494 | (*it)->internal()->Stop(); |
| 1495 | rtc::scoped_refptr<RtpReceiverInterface> receiver = *it; |
| 1496 | receivers_.erase(it); |
| 1497 | return receiver; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 1498 | } |
| 1499 | |
korniltsev.anatoly | ec390b5 | 2017-07-24 17:00:25 -0700 | [diff] [blame] | 1500 | void PeerConnection::AddAudioTrack(AudioTrackInterface* track, |
| 1501 | MediaStreamInterface* stream) { |
| 1502 | RTC_DCHECK(!IsClosed()); |
| 1503 | auto sender = FindSenderForTrack(track); |
| 1504 | if (sender != senders_.end()) { |
| 1505 | // We already have a sender for this track, so just change the stream_id |
| 1506 | // so that it's correct in the next call to CreateOffer. |
| 1507 | (*sender)->internal()->set_stream_id(stream->label()); |
| 1508 | return; |
| 1509 | } |
| 1510 | |
| 1511 | // Normal case; we've never seen this track before. |
| 1512 | rtc::scoped_refptr<RtpSenderProxyWithInternal<RtpSenderInternal>> new_sender = |
| 1513 | RtpSenderProxyWithInternal<RtpSenderInternal>::Create( |
| 1514 | signaling_thread(), |
Steve Anton | 8ffb9c3 | 2017-08-31 15:45:38 -0700 | [diff] [blame] | 1515 | new AudioRtpSender(track, {stream->label()}, |
| 1516 | session_->voice_channel(), stats_.get())); |
korniltsev.anatoly | ec390b5 | 2017-07-24 17:00:25 -0700 | [diff] [blame] | 1517 | senders_.push_back(new_sender); |
| 1518 | // If the sender has already been configured in SDP, we call SetSsrc, |
| 1519 | // which will connect the sender to the underlying transport. This can |
| 1520 | // occur if a local session description that contains the ID of the sender |
| 1521 | // is set before AddStream is called. It can also occur if the local |
| 1522 | // session description is not changed and RemoveStream is called, and |
| 1523 | // later AddStream is called again with the same stream. |
| 1524 | const TrackInfo* track_info = |
| 1525 | FindTrackInfo(local_audio_tracks_, stream->label(), track->id()); |
| 1526 | if (track_info) { |
| 1527 | new_sender->internal()->SetSsrc(track_info->ssrc); |
| 1528 | } |
| 1529 | } |
| 1530 | |
| 1531 | // TODO(deadbeef): Don't destroy RtpSenders here; they should be kept around |
| 1532 | // indefinitely, when we have unified plan SDP. |
| 1533 | void PeerConnection::RemoveAudioTrack(AudioTrackInterface* track, |
| 1534 | MediaStreamInterface* stream) { |
| 1535 | RTC_DCHECK(!IsClosed()); |
| 1536 | auto sender = FindSenderForTrack(track); |
| 1537 | if (sender == senders_.end()) { |
| 1538 | LOG(LS_WARNING) << "RtpSender for track with id " << track->id() |
| 1539 | << " doesn't exist."; |
| 1540 | return; |
| 1541 | } |
| 1542 | (*sender)->internal()->Stop(); |
| 1543 | senders_.erase(sender); |
| 1544 | } |
| 1545 | |
| 1546 | void PeerConnection::AddVideoTrack(VideoTrackInterface* track, |
| 1547 | MediaStreamInterface* stream) { |
| 1548 | RTC_DCHECK(!IsClosed()); |
| 1549 | auto sender = FindSenderForTrack(track); |
| 1550 | if (sender != senders_.end()) { |
| 1551 | // We already have a sender for this track, so just change the stream_id |
| 1552 | // so that it's correct in the next call to CreateOffer. |
| 1553 | (*sender)->internal()->set_stream_id(stream->label()); |
| 1554 | return; |
| 1555 | } |
| 1556 | |
| 1557 | // Normal case; we've never seen this track before. |
| 1558 | rtc::scoped_refptr<RtpSenderProxyWithInternal<RtpSenderInternal>> new_sender = |
| 1559 | RtpSenderProxyWithInternal<RtpSenderInternal>::Create( |
Steve Anton | 8ffb9c3 | 2017-08-31 15:45:38 -0700 | [diff] [blame] | 1560 | signaling_thread(), new VideoRtpSender(track, {stream->label()}, |
korniltsev.anatoly | ec390b5 | 2017-07-24 17:00:25 -0700 | [diff] [blame] | 1561 | session_->video_channel())); |
| 1562 | senders_.push_back(new_sender); |
| 1563 | const TrackInfo* track_info = |
| 1564 | FindTrackInfo(local_video_tracks_, stream->label(), track->id()); |
| 1565 | if (track_info) { |
| 1566 | new_sender->internal()->SetSsrc(track_info->ssrc); |
| 1567 | } |
| 1568 | } |
| 1569 | |
| 1570 | void PeerConnection::RemoveVideoTrack(VideoTrackInterface* track, |
| 1571 | MediaStreamInterface* stream) { |
| 1572 | RTC_DCHECK(!IsClosed()); |
| 1573 | auto sender = FindSenderForTrack(track); |
| 1574 | if (sender == senders_.end()) { |
| 1575 | LOG(LS_WARNING) << "RtpSender for track with id " << track->id() |
| 1576 | << " doesn't exist."; |
| 1577 | return; |
| 1578 | } |
| 1579 | (*sender)->internal()->Stop(); |
| 1580 | senders_.erase(sender); |
| 1581 | } |
| 1582 | |
zstein | 6dfd53a | 2017-03-06 13:49:03 -0800 | [diff] [blame] | 1583 | void PeerConnection::OnIceConnectionStateChange( |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 1584 | PeerConnectionInterface::IceConnectionState new_state) { |
deadbeef | 0a6c4ca | 2015-10-06 11:38:28 -0700 | [diff] [blame] | 1585 | RTC_DCHECK(signaling_thread()->IsCurrent()); |
deadbeef | cbecd35 | 2015-09-23 11:50:27 -0700 | [diff] [blame] | 1586 | // After transitioning to "closed", ignore any additional states from |
| 1587 | // WebRtcSession (such as "disconnected"). |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 1588 | if (IsClosed()) { |
deadbeef | cbecd35 | 2015-09-23 11:50:27 -0700 | [diff] [blame] | 1589 | return; |
| 1590 | } |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 1591 | ice_connection_state_ = new_state; |
mallinath@webrtc.org | d3dc424 | 2014-03-01 00:05:52 +0000 | [diff] [blame] | 1592 | observer_->OnIceConnectionChange(ice_connection_state_); |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 1593 | } |
| 1594 | |
| 1595 | void PeerConnection::OnIceGatheringChange( |
| 1596 | PeerConnectionInterface::IceGatheringState new_state) { |
deadbeef | 0a6c4ca | 2015-10-06 11:38:28 -0700 | [diff] [blame] | 1597 | RTC_DCHECK(signaling_thread()->IsCurrent()); |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 1598 | if (IsClosed()) { |
| 1599 | return; |
| 1600 | } |
| 1601 | ice_gathering_state_ = new_state; |
mallinath@webrtc.org | d3dc424 | 2014-03-01 00:05:52 +0000 | [diff] [blame] | 1602 | observer_->OnIceGatheringChange(ice_gathering_state_); |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 1603 | } |
| 1604 | |
jbauch | 81bf7b0 | 2017-03-25 08:31:12 -0700 | [diff] [blame] | 1605 | void PeerConnection::OnIceCandidate( |
| 1606 | std::unique_ptr<IceCandidateInterface> candidate) { |
deadbeef | 0a6c4ca | 2015-10-06 11:38:28 -0700 | [diff] [blame] | 1607 | RTC_DCHECK(signaling_thread()->IsCurrent()); |
zhihuang | 29ff844 | 2016-07-27 11:07:25 -0700 | [diff] [blame] | 1608 | if (IsClosed()) { |
| 1609 | return; |
| 1610 | } |
jbauch | 81bf7b0 | 2017-03-25 08:31:12 -0700 | [diff] [blame] | 1611 | observer_->OnIceCandidate(candidate.get()); |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 1612 | } |
| 1613 | |
Honghai Zhang | 7fb69db | 2016-03-14 11:59:18 -0700 | [diff] [blame] | 1614 | void PeerConnection::OnIceCandidatesRemoved( |
| 1615 | const std::vector<cricket::Candidate>& candidates) { |
| 1616 | RTC_DCHECK(signaling_thread()->IsCurrent()); |
zhihuang | 29ff844 | 2016-07-27 11:07:25 -0700 | [diff] [blame] | 1617 | if (IsClosed()) { |
| 1618 | return; |
| 1619 | } |
Honghai Zhang | 7fb69db | 2016-03-14 11:59:18 -0700 | [diff] [blame] | 1620 | observer_->OnIceCandidatesRemoved(candidates); |
| 1621 | } |
| 1622 | |
Peter Thatcher | 5436051 | 2015-07-08 11:08:35 -0700 | [diff] [blame] | 1623 | void PeerConnection::OnIceConnectionReceivingChange(bool receiving) { |
deadbeef | 0a6c4ca | 2015-10-06 11:38:28 -0700 | [diff] [blame] | 1624 | RTC_DCHECK(signaling_thread()->IsCurrent()); |
zhihuang | 29ff844 | 2016-07-27 11:07:25 -0700 | [diff] [blame] | 1625 | if (IsClosed()) { |
| 1626 | return; |
| 1627 | } |
Peter Thatcher | 5436051 | 2015-07-08 11:08:35 -0700 | [diff] [blame] | 1628 | observer_->OnIceConnectionReceivingChange(receiving); |
| 1629 | } |
| 1630 | |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 1631 | void PeerConnection::ChangeSignalingState( |
| 1632 | PeerConnectionInterface::SignalingState signaling_state) { |
| 1633 | signaling_state_ = signaling_state; |
| 1634 | if (signaling_state == kClosed) { |
| 1635 | ice_connection_state_ = kIceConnectionClosed; |
| 1636 | observer_->OnIceConnectionChange(ice_connection_state_); |
| 1637 | if (ice_gathering_state_ != kIceGatheringComplete) { |
| 1638 | ice_gathering_state_ = kIceGatheringComplete; |
| 1639 | observer_->OnIceGatheringChange(ice_gathering_state_); |
| 1640 | } |
| 1641 | } |
| 1642 | observer_->OnSignalingChange(signaling_state_); |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 1643 | } |
| 1644 | |
deadbeef | eb45981 | 2015-12-15 19:24:43 -0800 | [diff] [blame] | 1645 | void PeerConnection::OnAudioTrackAdded(AudioTrackInterface* track, |
| 1646 | MediaStreamInterface* stream) { |
zhihuang | 29ff844 | 2016-07-27 11:07:25 -0700 | [diff] [blame] | 1647 | if (IsClosed()) { |
| 1648 | return; |
| 1649 | } |
korniltsev.anatoly | ec390b5 | 2017-07-24 17:00:25 -0700 | [diff] [blame] | 1650 | AddAudioTrack(track, stream); |
| 1651 | observer_->OnRenegotiationNeeded(); |
deadbeef | eb45981 | 2015-12-15 19:24:43 -0800 | [diff] [blame] | 1652 | } |
| 1653 | |
deadbeef | eb45981 | 2015-12-15 19:24:43 -0800 | [diff] [blame] | 1654 | void PeerConnection::OnAudioTrackRemoved(AudioTrackInterface* track, |
| 1655 | MediaStreamInterface* stream) { |
zhihuang | 29ff844 | 2016-07-27 11:07:25 -0700 | [diff] [blame] | 1656 | if (IsClosed()) { |
| 1657 | return; |
| 1658 | } |
korniltsev.anatoly | ec390b5 | 2017-07-24 17:00:25 -0700 | [diff] [blame] | 1659 | RemoveAudioTrack(track, stream); |
| 1660 | observer_->OnRenegotiationNeeded(); |
deadbeef | eb45981 | 2015-12-15 19:24:43 -0800 | [diff] [blame] | 1661 | } |
| 1662 | |
| 1663 | void PeerConnection::OnVideoTrackAdded(VideoTrackInterface* track, |
| 1664 | MediaStreamInterface* stream) { |
zhihuang | 29ff844 | 2016-07-27 11:07:25 -0700 | [diff] [blame] | 1665 | if (IsClosed()) { |
| 1666 | return; |
| 1667 | } |
korniltsev.anatoly | ec390b5 | 2017-07-24 17:00:25 -0700 | [diff] [blame] | 1668 | AddVideoTrack(track, stream); |
| 1669 | observer_->OnRenegotiationNeeded(); |
deadbeef | eb45981 | 2015-12-15 19:24:43 -0800 | [diff] [blame] | 1670 | } |
| 1671 | |
| 1672 | void PeerConnection::OnVideoTrackRemoved(VideoTrackInterface* track, |
| 1673 | MediaStreamInterface* stream) { |
zhihuang | 29ff844 | 2016-07-27 11:07:25 -0700 | [diff] [blame] | 1674 | if (IsClosed()) { |
| 1675 | return; |
| 1676 | } |
korniltsev.anatoly | ec390b5 | 2017-07-24 17:00:25 -0700 | [diff] [blame] | 1677 | RemoveVideoTrack(track, stream); |
| 1678 | observer_->OnRenegotiationNeeded(); |
deadbeef | eb45981 | 2015-12-15 19:24:43 -0800 | [diff] [blame] | 1679 | } |
| 1680 | |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 1681 | void PeerConnection::PostSetSessionDescriptionFailure( |
| 1682 | SetSessionDescriptionObserver* observer, |
| 1683 | const std::string& error) { |
| 1684 | SetSessionDescriptionMsg* msg = new SetSessionDescriptionMsg(observer); |
| 1685 | msg->error = error; |
Taylor Brandstetter | 5d97a9a | 2016-06-10 14:17:27 -0700 | [diff] [blame] | 1686 | signaling_thread()->Post(RTC_FROM_HERE, this, |
| 1687 | MSG_SET_SESSIONDESCRIPTION_FAILED, msg); |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 1688 | } |
| 1689 | |
| 1690 | void PeerConnection::PostCreateSessionDescriptionFailure( |
| 1691 | CreateSessionDescriptionObserver* observer, |
| 1692 | const std::string& error) { |
| 1693 | CreateSessionDescriptionMsg* msg = new CreateSessionDescriptionMsg(observer); |
| 1694 | msg->error = error; |
Taylor Brandstetter | 5d97a9a | 2016-06-10 14:17:27 -0700 | [diff] [blame] | 1695 | signaling_thread()->Post(RTC_FROM_HERE, this, |
| 1696 | MSG_CREATE_SESSIONDESCRIPTION_FAILED, msg); |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 1697 | } |
| 1698 | |
zhihuang | 1c378ed | 2017-08-17 14:10:50 -0700 | [diff] [blame] | 1699 | void PeerConnection::GetOptionsForOffer( |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 1700 | const PeerConnectionInterface::RTCOfferAnswerOptions& rtc_options, |
| 1701 | cricket::MediaSessionOptions* session_options) { |
zhihuang | 1c378ed | 2017-08-17 14:10:50 -0700 | [diff] [blame] | 1702 | ExtractSharedMediaSessionOptions(rtc_options, session_options); |
| 1703 | |
| 1704 | // Figure out transceiver directional preferences. |
| 1705 | bool send_audio = HasRtpSender(cricket::MEDIA_TYPE_AUDIO); |
| 1706 | bool send_video = HasRtpSender(cricket::MEDIA_TYPE_VIDEO); |
| 1707 | |
| 1708 | // By default, generate sendrecv/recvonly m= sections. |
| 1709 | bool recv_audio = true; |
| 1710 | bool recv_video = true; |
| 1711 | |
| 1712 | // By default, only offer a new m= section if we have media to send with it. |
| 1713 | bool offer_new_audio_description = send_audio; |
| 1714 | bool offer_new_video_description = send_video; |
| 1715 | bool offer_new_data_description = HasDataChannels(); |
| 1716 | |
| 1717 | // The "offer_to_receive_X" options allow those defaults to be overridden. |
| 1718 | if (rtc_options.offer_to_receive_audio != RTCOfferAnswerOptions::kUndefined) { |
| 1719 | recv_audio = (rtc_options.offer_to_receive_audio > 0); |
| 1720 | offer_new_audio_description = |
| 1721 | offer_new_audio_description || (rtc_options.offer_to_receive_audio > 0); |
| 1722 | } |
| 1723 | if (rtc_options.offer_to_receive_video != RTCOfferAnswerOptions::kUndefined) { |
| 1724 | recv_video = (rtc_options.offer_to_receive_video > 0); |
| 1725 | offer_new_video_description = |
| 1726 | offer_new_video_description || (rtc_options.offer_to_receive_video > 0); |
| 1727 | } |
| 1728 | |
| 1729 | rtc::Optional<size_t> audio_index; |
| 1730 | rtc::Optional<size_t> video_index; |
| 1731 | rtc::Optional<size_t> data_index; |
| 1732 | // If a current description exists, generate m= sections in the same order, |
| 1733 | // using the first audio/video/data section that appears and rejecting |
| 1734 | // extraneous ones. |
deadbeef | 0ed85b2 | 2016-02-23 17:24:52 -0800 | [diff] [blame] | 1735 | if (session_->local_description()) { |
zhihuang | 1c378ed | 2017-08-17 14:10:50 -0700 | [diff] [blame] | 1736 | GenerateMediaDescriptionOptions( |
| 1737 | session_->local_description(), |
| 1738 | cricket::RtpTransceiverDirection(send_audio, recv_audio), |
| 1739 | cricket::RtpTransceiverDirection(send_video, recv_video), &audio_index, |
| 1740 | &video_index, &data_index, session_options); |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 1741 | } |
| 1742 | |
zhihuang | 1c378ed | 2017-08-17 14:10:50 -0700 | [diff] [blame] | 1743 | // Add audio/video/data m= sections to the end if needed. |
| 1744 | if (!audio_index && offer_new_audio_description) { |
| 1745 | session_options->media_description_options.push_back( |
| 1746 | cricket::MediaDescriptionOptions( |
| 1747 | cricket::MEDIA_TYPE_AUDIO, cricket::CN_AUDIO, |
| 1748 | cricket::RtpTransceiverDirection(send_audio, recv_audio), false)); |
| 1749 | audio_index = rtc::Optional<size_t>( |
| 1750 | session_options->media_description_options.size() - 1); |
deadbeef | c80741f | 2015-10-22 13:14:45 -0700 | [diff] [blame] | 1751 | } |
zhihuang | 1c378ed | 2017-08-17 14:10:50 -0700 | [diff] [blame] | 1752 | if (!video_index && offer_new_video_description) { |
| 1753 | session_options->media_description_options.push_back( |
| 1754 | cricket::MediaDescriptionOptions( |
| 1755 | cricket::MEDIA_TYPE_VIDEO, cricket::CN_VIDEO, |
| 1756 | cricket::RtpTransceiverDirection(send_video, recv_video), false)); |
| 1757 | video_index = rtc::Optional<size_t>( |
| 1758 | session_options->media_description_options.size() - 1); |
deadbeef | c80741f | 2015-10-22 13:14:45 -0700 | [diff] [blame] | 1759 | } |
zhihuang | 1c378ed | 2017-08-17 14:10:50 -0700 | [diff] [blame] | 1760 | if (!data_index && offer_new_data_description) { |
| 1761 | session_options->media_description_options.push_back( |
| 1762 | cricket::MediaDescriptionOptions( |
| 1763 | cricket::MEDIA_TYPE_DATA, cricket::CN_DATA, |
| 1764 | cricket::RtpTransceiverDirection(true, true), false)); |
| 1765 | data_index = rtc::Optional<size_t>( |
| 1766 | session_options->media_description_options.size() - 1); |
| 1767 | } |
| 1768 | |
| 1769 | cricket::MediaDescriptionOptions* audio_media_description_options = |
| 1770 | !audio_index ? nullptr |
| 1771 | : &session_options->media_description_options[*audio_index]; |
| 1772 | cricket::MediaDescriptionOptions* video_media_description_options = |
| 1773 | !video_index ? nullptr |
| 1774 | : &session_options->media_description_options[*video_index]; |
| 1775 | cricket::MediaDescriptionOptions* data_media_description_options = |
| 1776 | !data_index ? nullptr |
| 1777 | : &session_options->media_description_options[*data_index]; |
| 1778 | |
| 1779 | // Apply ICE restart flag and renomination flag. |
| 1780 | for (auto& options : session_options->media_description_options) { |
| 1781 | options.transport_options.ice_restart = rtc_options.ice_restart; |
| 1782 | options.transport_options.enable_ice_renomination = |
| 1783 | configuration_.enable_ice_renomination; |
| 1784 | } |
| 1785 | |
| 1786 | AddRtpSenderOptions(senders_, audio_media_description_options, |
| 1787 | video_media_description_options); |
| 1788 | AddRtpDataChannelOptions(rtp_data_channels_, data_media_description_options); |
deadbeef | c80741f | 2015-10-22 13:14:45 -0700 | [diff] [blame] | 1789 | |
zhihuang | 9763d56 | 2016-08-05 11:14:50 -0700 | [diff] [blame] | 1790 | // Intentionally unset the data channel type for RTP data channel with the |
| 1791 | // second condition. Otherwise the RTP data channels would be successfully |
| 1792 | // negotiated by default and the unit tests in WebRtcDataBrowserTest will fail |
| 1793 | // when building with chromium. We want to leave RTP data channels broken, so |
| 1794 | // people won't try to use them. |
zhihuang | 1c378ed | 2017-08-17 14:10:50 -0700 | [diff] [blame] | 1795 | if (!rtp_data_channels_.empty() || |
| 1796 | session_->data_channel_type() != cricket::DCT_RTP) { |
zhihuang | 9763d56 | 2016-08-05 11:14:50 -0700 | [diff] [blame] | 1797 | session_options->data_channel_type = session_->data_channel_type(); |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 1798 | } |
zhihuang | 8f65cdf | 2016-05-06 18:40:30 -0700 | [diff] [blame] | 1799 | |
| 1800 | session_options->rtcp_cname = rtcp_cname_; |
jbauch | cb56065 | 2016-08-04 05:20:32 -0700 | [diff] [blame] | 1801 | session_options->crypto_options = factory_->options().crypto_options; |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 1802 | } |
| 1803 | |
zhihuang | 1c378ed | 2017-08-17 14:10:50 -0700 | [diff] [blame] | 1804 | void PeerConnection::GetOptionsForAnswer( |
| 1805 | const RTCOfferAnswerOptions& rtc_options, |
Honghai Zhang | 4cedf2b | 2016-08-31 08:18:11 -0700 | [diff] [blame] | 1806 | cricket::MediaSessionOptions* session_options) { |
zhihuang | 1c378ed | 2017-08-17 14:10:50 -0700 | [diff] [blame] | 1807 | ExtractSharedMediaSessionOptions(rtc_options, session_options); |
Honghai Zhang | 4cedf2b | 2016-08-31 08:18:11 -0700 | [diff] [blame] | 1808 | |
zhihuang | 1c378ed | 2017-08-17 14:10:50 -0700 | [diff] [blame] | 1809 | // Figure out transceiver directional preferences. |
| 1810 | bool send_audio = HasRtpSender(cricket::MEDIA_TYPE_AUDIO); |
| 1811 | bool send_video = HasRtpSender(cricket::MEDIA_TYPE_VIDEO); |
| 1812 | |
| 1813 | // By default, generate sendrecv/recvonly m= sections. The direction is also |
| 1814 | // restricted by the direction in the offer. |
| 1815 | bool recv_audio = true; |
| 1816 | bool recv_video = true; |
| 1817 | |
| 1818 | // The "offer_to_receive_X" options allow those defaults to be overridden. |
| 1819 | if (rtc_options.offer_to_receive_audio != RTCOfferAnswerOptions::kUndefined) { |
| 1820 | recv_audio = (rtc_options.offer_to_receive_audio > 0); |
deadbeef | 0ed85b2 | 2016-02-23 17:24:52 -0800 | [diff] [blame] | 1821 | } |
zhihuang | 1c378ed | 2017-08-17 14:10:50 -0700 | [diff] [blame] | 1822 | if (rtc_options.offer_to_receive_video != RTCOfferAnswerOptions::kUndefined) { |
| 1823 | recv_video = (rtc_options.offer_to_receive_video > 0); |
| 1824 | } |
| 1825 | |
| 1826 | rtc::Optional<size_t> audio_index; |
| 1827 | rtc::Optional<size_t> video_index; |
| 1828 | rtc::Optional<size_t> data_index; |
zhihuang | 141aacb | 2017-08-29 13:23:53 -0700 | [diff] [blame] | 1829 | if (session_->remote_description()) { |
| 1830 | // The pending remote description should be an offer. |
| 1831 | RTC_DCHECK(session_->remote_description()->type() == |
| 1832 | SessionDescriptionInterface::kOffer); |
| 1833 | // Generate m= sections that match those in the offer. |
| 1834 | // Note that mediasession.cc will handle intersection our preferred |
| 1835 | // direction with the offered direction. |
| 1836 | GenerateMediaDescriptionOptions( |
| 1837 | session_->remote_description(), |
| 1838 | cricket::RtpTransceiverDirection(send_audio, recv_audio), |
| 1839 | cricket::RtpTransceiverDirection(send_video, recv_video), &audio_index, |
| 1840 | &video_index, &data_index, session_options); |
| 1841 | } |
zhihuang | 1c378ed | 2017-08-17 14:10:50 -0700 | [diff] [blame] | 1842 | |
| 1843 | cricket::MediaDescriptionOptions* audio_media_description_options = |
| 1844 | !audio_index ? nullptr |
| 1845 | : &session_options->media_description_options[*audio_index]; |
| 1846 | cricket::MediaDescriptionOptions* video_media_description_options = |
| 1847 | !video_index ? nullptr |
| 1848 | : &session_options->media_description_options[*video_index]; |
| 1849 | cricket::MediaDescriptionOptions* data_media_description_options = |
| 1850 | !data_index ? nullptr |
| 1851 | : &session_options->media_description_options[*data_index]; |
| 1852 | |
| 1853 | // Apply ICE renomination flag. |
| 1854 | for (auto& options : session_options->media_description_options) { |
| 1855 | options.transport_options.enable_ice_renomination = |
| 1856 | configuration_.enable_ice_renomination; |
| 1857 | } |
| 1858 | |
| 1859 | AddRtpSenderOptions(senders_, audio_media_description_options, |
| 1860 | video_media_description_options); |
| 1861 | AddRtpDataChannelOptions(rtp_data_channels_, data_media_description_options); |
| 1862 | |
zhihuang | 9763d56 | 2016-08-05 11:14:50 -0700 | [diff] [blame] | 1863 | // Intentionally unset the data channel type for RTP data channel. Otherwise |
| 1864 | // the RTP data channels would be successfully negotiated by default and the |
| 1865 | // unit tests in WebRtcDataBrowserTest will fail when building with chromium. |
| 1866 | // We want to leave RTP data channels broken, so people won't try to use them. |
zhihuang | 1c378ed | 2017-08-17 14:10:50 -0700 | [diff] [blame] | 1867 | if (!rtp_data_channels_.empty() || |
| 1868 | session_->data_channel_type() != cricket::DCT_RTP) { |
zhihuang | 9763d56 | 2016-08-05 11:14:50 -0700 | [diff] [blame] | 1869 | session_options->data_channel_type = session_->data_channel_type(); |
deadbeef | 907abe4 | 2016-08-04 12:22:18 -0700 | [diff] [blame] | 1870 | } |
zhihuang | af38847 | 2016-11-02 16:49:48 -0700 | [diff] [blame] | 1871 | |
zhihuang | 1c378ed | 2017-08-17 14:10:50 -0700 | [diff] [blame] | 1872 | session_options->rtcp_cname = rtcp_cname_; |
jbauch | cb56065 | 2016-08-04 05:20:32 -0700 | [diff] [blame] | 1873 | session_options->crypto_options = factory_->options().crypto_options; |
hta | a2a49d9 | 2016-03-04 02:51:39 -0800 | [diff] [blame] | 1874 | } |
| 1875 | |
zhihuang | 1c378ed | 2017-08-17 14:10:50 -0700 | [diff] [blame] | 1876 | void PeerConnection::GenerateMediaDescriptionOptions( |
| 1877 | const SessionDescriptionInterface* session_desc, |
| 1878 | cricket::RtpTransceiverDirection audio_direction, |
| 1879 | cricket::RtpTransceiverDirection video_direction, |
| 1880 | rtc::Optional<size_t>* audio_index, |
| 1881 | rtc::Optional<size_t>* video_index, |
| 1882 | rtc::Optional<size_t>* data_index, |
hta | a2a49d9 | 2016-03-04 02:51:39 -0800 | [diff] [blame] | 1883 | cricket::MediaSessionOptions* session_options) { |
zhihuang | 1c378ed | 2017-08-17 14:10:50 -0700 | [diff] [blame] | 1884 | for (const cricket::ContentInfo& content : |
| 1885 | session_desc->description()->contents()) { |
| 1886 | if (IsAudioContent(&content)) { |
| 1887 | // If we already have an audio m= section, reject this extra one. |
| 1888 | if (*audio_index) { |
| 1889 | session_options->media_description_options.push_back( |
| 1890 | cricket::MediaDescriptionOptions( |
| 1891 | cricket::MEDIA_TYPE_AUDIO, content.name, |
| 1892 | cricket::RtpTransceiverDirection(false, false), true)); |
| 1893 | } else { |
| 1894 | session_options->media_description_options.push_back( |
| 1895 | cricket::MediaDescriptionOptions( |
| 1896 | cricket::MEDIA_TYPE_AUDIO, content.name, audio_direction, |
| 1897 | !audio_direction.send && !audio_direction.recv)); |
| 1898 | *audio_index = rtc::Optional<size_t>( |
| 1899 | session_options->media_description_options.size() - 1); |
| 1900 | } |
| 1901 | } else if (IsVideoContent(&content)) { |
| 1902 | // If we already have an video m= section, reject this extra one. |
| 1903 | if (*video_index) { |
| 1904 | session_options->media_description_options.push_back( |
| 1905 | cricket::MediaDescriptionOptions( |
| 1906 | cricket::MEDIA_TYPE_VIDEO, content.name, |
| 1907 | cricket::RtpTransceiverDirection(false, false), true)); |
| 1908 | } else { |
| 1909 | session_options->media_description_options.push_back( |
| 1910 | cricket::MediaDescriptionOptions( |
| 1911 | cricket::MEDIA_TYPE_VIDEO, content.name, video_direction, |
| 1912 | !video_direction.send && !video_direction.recv)); |
| 1913 | *video_index = rtc::Optional<size_t>( |
| 1914 | session_options->media_description_options.size() - 1); |
| 1915 | } |
| 1916 | } else { |
| 1917 | RTC_DCHECK(IsDataContent(&content)); |
| 1918 | // If we already have an data m= section, reject this extra one. |
| 1919 | if (*data_index) { |
| 1920 | session_options->media_description_options.push_back( |
| 1921 | cricket::MediaDescriptionOptions( |
| 1922 | cricket::MEDIA_TYPE_DATA, content.name, |
| 1923 | cricket::RtpTransceiverDirection(false, false), true)); |
| 1924 | } else { |
| 1925 | session_options->media_description_options.push_back( |
| 1926 | cricket::MediaDescriptionOptions( |
| 1927 | cricket::MEDIA_TYPE_DATA, content.name, |
| 1928 | // Direction for data sections is meaningless, but legacy |
| 1929 | // endpoints might expect sendrecv. |
| 1930 | cricket::RtpTransceiverDirection(true, true), false)); |
| 1931 | *data_index = rtc::Optional<size_t>( |
| 1932 | session_options->media_description_options.size() - 1); |
| 1933 | } |
| 1934 | } |
hta | a2a49d9 | 2016-03-04 02:51:39 -0800 | [diff] [blame] | 1935 | } |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 1936 | } |
| 1937 | |
deadbeef | faac497 | 2015-11-12 15:33:07 -0800 | [diff] [blame] | 1938 | void PeerConnection::RemoveTracks(cricket::MediaType media_type) { |
| 1939 | UpdateLocalTracks(std::vector<cricket::StreamParams>(), media_type); |
deadbeef | bda7e0b | 2015-12-08 17:13:40 -0800 | [diff] [blame] | 1940 | UpdateRemoteStreamsList(std::vector<cricket::StreamParams>(), false, |
| 1941 | media_type, nullptr); |
deadbeef | faac497 | 2015-11-12 15:33:07 -0800 | [diff] [blame] | 1942 | } |
| 1943 | |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 1944 | void PeerConnection::UpdateRemoteStreamsList( |
| 1945 | const cricket::StreamParamsVec& streams, |
deadbeef | bda7e0b | 2015-12-08 17:13:40 -0800 | [diff] [blame] | 1946 | bool default_track_needed, |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 1947 | cricket::MediaType media_type, |
| 1948 | StreamCollection* new_streams) { |
| 1949 | TrackInfos* current_tracks = GetRemoteTracks(media_type); |
| 1950 | |
| 1951 | // Find removed tracks. I.e., tracks where the track id or ssrc don't match |
deadbeef | fac0655 | 2015-11-25 11:26:01 -0800 | [diff] [blame] | 1952 | // the new StreamParam. |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 1953 | auto track_it = current_tracks->begin(); |
| 1954 | while (track_it != current_tracks->end()) { |
| 1955 | const TrackInfo& info = *track_it; |
| 1956 | const cricket::StreamParams* params = |
| 1957 | cricket::GetStreamBySsrc(streams, info.ssrc); |
deadbeef | bda7e0b | 2015-12-08 17:13:40 -0800 | [diff] [blame] | 1958 | bool track_exists = params && params->id == info.track_id; |
| 1959 | // If this is a default track, and we still need it, don't remove it. |
| 1960 | if ((info.stream_label == kDefaultStreamLabel && default_track_needed) || |
| 1961 | track_exists) { |
| 1962 | ++track_it; |
| 1963 | } else { |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 1964 | OnRemoteTrackRemoved(info.stream_label, info.track_id, media_type); |
| 1965 | track_it = current_tracks->erase(track_it); |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 1966 | } |
| 1967 | } |
| 1968 | |
| 1969 | // Find new and active tracks. |
| 1970 | for (const cricket::StreamParams& params : streams) { |
| 1971 | // The sync_label is the MediaStream label and the |stream.id| is the |
| 1972 | // track id. |
| 1973 | const std::string& stream_label = params.sync_label; |
| 1974 | const std::string& track_id = params.id; |
| 1975 | uint32_t ssrc = params.first_ssrc(); |
| 1976 | |
| 1977 | rtc::scoped_refptr<MediaStreamInterface> stream = |
| 1978 | remote_streams_->find(stream_label); |
| 1979 | if (!stream) { |
| 1980 | // This is a new MediaStream. Create a new remote MediaStream. |
perkj | d61bf80 | 2016-03-24 03:16:19 -0700 | [diff] [blame] | 1981 | stream = MediaStreamProxy::Create(rtc::Thread::Current(), |
| 1982 | MediaStream::Create(stream_label)); |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 1983 | remote_streams_->AddStream(stream); |
| 1984 | new_streams->AddStream(stream); |
| 1985 | } |
| 1986 | |
| 1987 | const TrackInfo* track_info = |
| 1988 | FindTrackInfo(*current_tracks, stream_label, track_id); |
| 1989 | if (!track_info) { |
| 1990 | current_tracks->push_back(TrackInfo(stream_label, track_id, ssrc)); |
| 1991 | OnRemoteTrackSeen(stream_label, track_id, ssrc, media_type); |
| 1992 | } |
| 1993 | } |
deadbeef | bda7e0b | 2015-12-08 17:13:40 -0800 | [diff] [blame] | 1994 | |
| 1995 | // Add default track if necessary. |
| 1996 | if (default_track_needed) { |
| 1997 | rtc::scoped_refptr<MediaStreamInterface> default_stream = |
| 1998 | remote_streams_->find(kDefaultStreamLabel); |
| 1999 | if (!default_stream) { |
| 2000 | // Create the new default MediaStream. |
perkj | d61bf80 | 2016-03-24 03:16:19 -0700 | [diff] [blame] | 2001 | default_stream = MediaStreamProxy::Create( |
| 2002 | rtc::Thread::Current(), MediaStream::Create(kDefaultStreamLabel)); |
deadbeef | bda7e0b | 2015-12-08 17:13:40 -0800 | [diff] [blame] | 2003 | remote_streams_->AddStream(default_stream); |
| 2004 | new_streams->AddStream(default_stream); |
| 2005 | } |
| 2006 | std::string default_track_id = (media_type == cricket::MEDIA_TYPE_AUDIO) |
| 2007 | ? kDefaultAudioTrackLabel |
| 2008 | : kDefaultVideoTrackLabel; |
| 2009 | const TrackInfo* default_track_info = |
| 2010 | FindTrackInfo(*current_tracks, kDefaultStreamLabel, default_track_id); |
| 2011 | if (!default_track_info) { |
| 2012 | current_tracks->push_back( |
| 2013 | TrackInfo(kDefaultStreamLabel, default_track_id, 0)); |
| 2014 | OnRemoteTrackSeen(kDefaultStreamLabel, default_track_id, 0, media_type); |
| 2015 | } |
| 2016 | } |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 2017 | } |
| 2018 | |
| 2019 | void PeerConnection::OnRemoteTrackSeen(const std::string& stream_label, |
| 2020 | const std::string& track_id, |
| 2021 | uint32_t ssrc, |
| 2022 | cricket::MediaType media_type) { |
| 2023 | MediaStreamInterface* stream = remote_streams_->find(stream_label); |
| 2024 | |
| 2025 | if (media_type == cricket::MEDIA_TYPE_AUDIO) { |
perkj | d61bf80 | 2016-03-24 03:16:19 -0700 | [diff] [blame] | 2026 | CreateAudioReceiver(stream, track_id, ssrc); |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 2027 | } else if (media_type == cricket::MEDIA_TYPE_VIDEO) { |
perkj | f0dcfe2 | 2016-03-10 18:32:00 +0100 | [diff] [blame] | 2028 | CreateVideoReceiver(stream, track_id, ssrc); |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 2029 | } else { |
nisse | eb4ca4e | 2017-01-12 02:24:27 -0800 | [diff] [blame] | 2030 | RTC_NOTREACHED() << "Invalid media type"; |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 2031 | } |
| 2032 | } |
| 2033 | |
| 2034 | void PeerConnection::OnRemoteTrackRemoved(const std::string& stream_label, |
| 2035 | const std::string& track_id, |
| 2036 | cricket::MediaType media_type) { |
| 2037 | MediaStreamInterface* stream = remote_streams_->find(stream_label); |
| 2038 | |
Henrik Boström | 933d8b0 | 2017-10-10 10:05:16 -0700 | [diff] [blame] | 2039 | rtc::scoped_refptr<RtpReceiverInterface> receiver; |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 2040 | if (media_type == cricket::MEDIA_TYPE_AUDIO) { |
perkj | d61bf80 | 2016-03-24 03:16:19 -0700 | [diff] [blame] | 2041 | // When the MediaEngine audio channel is destroyed, the RemoteAudioSource |
| 2042 | // will be notified which will end the AudioRtpReceiver::track(). |
Henrik Boström | 933d8b0 | 2017-10-10 10:05:16 -0700 | [diff] [blame] | 2043 | receiver = RemoveAndStopReceiver(track_id); |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 2044 | rtc::scoped_refptr<AudioTrackInterface> audio_track = |
| 2045 | stream->FindAudioTrack(track_id); |
| 2046 | if (audio_track) { |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 2047 | stream->RemoveTrack(audio_track); |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 2048 | } |
| 2049 | } else if (media_type == cricket::MEDIA_TYPE_VIDEO) { |
perkj | d61bf80 | 2016-03-24 03:16:19 -0700 | [diff] [blame] | 2050 | // Stopping or destroying a VideoRtpReceiver will end the |
| 2051 | // VideoRtpReceiver::track(). |
Henrik Boström | 933d8b0 | 2017-10-10 10:05:16 -0700 | [diff] [blame] | 2052 | receiver = RemoveAndStopReceiver(track_id); |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 2053 | rtc::scoped_refptr<VideoTrackInterface> video_track = |
| 2054 | stream->FindVideoTrack(track_id); |
| 2055 | if (video_track) { |
perkj | d61bf80 | 2016-03-24 03:16:19 -0700 | [diff] [blame] | 2056 | // There's no guarantee the track is still available, e.g. the track may |
| 2057 | // have been removed from the stream by an application. |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 2058 | stream->RemoveTrack(video_track); |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 2059 | } |
| 2060 | } else { |
nisse | ede5da4 | 2017-01-12 05:15:36 -0800 | [diff] [blame] | 2061 | RTC_NOTREACHED() << "Invalid media type"; |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 2062 | } |
Henrik Boström | 933d8b0 | 2017-10-10 10:05:16 -0700 | [diff] [blame] | 2063 | if (receiver) { |
| 2064 | observer_->OnRemoveTrack(receiver); |
| 2065 | } |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 2066 | } |
| 2067 | |
| 2068 | void PeerConnection::UpdateEndedRemoteMediaStreams() { |
| 2069 | std::vector<rtc::scoped_refptr<MediaStreamInterface>> streams_to_remove; |
| 2070 | for (size_t i = 0; i < remote_streams_->count(); ++i) { |
| 2071 | MediaStreamInterface* stream = remote_streams_->at(i); |
| 2072 | if (stream->GetAudioTracks().empty() && stream->GetVideoTracks().empty()) { |
| 2073 | streams_to_remove.push_back(stream); |
| 2074 | } |
| 2075 | } |
| 2076 | |
Taylor Brandstetter | 98cde26 | 2016-05-31 13:02:21 -0700 | [diff] [blame] | 2077 | for (auto& stream : streams_to_remove) { |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 2078 | remote_streams_->RemoveStream(stream); |
Taylor Brandstetter | 98cde26 | 2016-05-31 13:02:21 -0700 | [diff] [blame] | 2079 | observer_->OnRemoveStream(std::move(stream)); |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 2080 | } |
| 2081 | } |
| 2082 | |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 2083 | void PeerConnection::UpdateLocalTracks( |
| 2084 | const std::vector<cricket::StreamParams>& streams, |
| 2085 | cricket::MediaType media_type) { |
| 2086 | TrackInfos* current_tracks = GetLocalTracks(media_type); |
| 2087 | |
| 2088 | // Find removed tracks. I.e., tracks where the track id, stream label or ssrc |
| 2089 | // don't match the new StreamParam. |
| 2090 | TrackInfos::iterator track_it = current_tracks->begin(); |
| 2091 | while (track_it != current_tracks->end()) { |
| 2092 | const TrackInfo& info = *track_it; |
| 2093 | const cricket::StreamParams* params = |
| 2094 | cricket::GetStreamBySsrc(streams, info.ssrc); |
| 2095 | if (!params || params->id != info.track_id || |
| 2096 | params->sync_label != info.stream_label) { |
| 2097 | OnLocalTrackRemoved(info.stream_label, info.track_id, info.ssrc, |
| 2098 | media_type); |
| 2099 | track_it = current_tracks->erase(track_it); |
| 2100 | } else { |
| 2101 | ++track_it; |
| 2102 | } |
| 2103 | } |
| 2104 | |
| 2105 | // Find new and active tracks. |
| 2106 | for (const cricket::StreamParams& params : streams) { |
| 2107 | // The sync_label is the MediaStream label and the |stream.id| is the |
| 2108 | // track id. |
| 2109 | const std::string& stream_label = params.sync_label; |
| 2110 | const std::string& track_id = params.id; |
| 2111 | uint32_t ssrc = params.first_ssrc(); |
| 2112 | const TrackInfo* track_info = |
| 2113 | FindTrackInfo(*current_tracks, stream_label, track_id); |
| 2114 | if (!track_info) { |
| 2115 | current_tracks->push_back(TrackInfo(stream_label, track_id, ssrc)); |
| 2116 | OnLocalTrackSeen(stream_label, track_id, params.first_ssrc(), media_type); |
| 2117 | } |
| 2118 | } |
| 2119 | } |
| 2120 | |
| 2121 | void PeerConnection::OnLocalTrackSeen(const std::string& stream_label, |
| 2122 | const std::string& track_id, |
| 2123 | uint32_t ssrc, |
| 2124 | cricket::MediaType media_type) { |
deadbeef | a601f5c | 2016-06-06 14:27:39 -0700 | [diff] [blame] | 2125 | RtpSenderInternal* sender = FindSenderById(track_id); |
deadbeef | fac0655 | 2015-11-25 11:26:01 -0800 | [diff] [blame] | 2126 | if (!sender) { |
| 2127 | LOG(LS_WARNING) << "An unknown RtpSender with id " << track_id |
| 2128 | << " has been configured in the local description."; |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 2129 | return; |
| 2130 | } |
| 2131 | |
deadbeef | fac0655 | 2015-11-25 11:26:01 -0800 | [diff] [blame] | 2132 | if (sender->media_type() != media_type) { |
| 2133 | LOG(LS_WARNING) << "An RtpSender has been configured in the local" |
| 2134 | << " description with an unexpected media type."; |
| 2135 | return; |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 2136 | } |
deadbeef | fac0655 | 2015-11-25 11:26:01 -0800 | [diff] [blame] | 2137 | |
| 2138 | sender->set_stream_id(stream_label); |
| 2139 | sender->SetSsrc(ssrc); |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 2140 | } |
| 2141 | |
| 2142 | void PeerConnection::OnLocalTrackRemoved(const std::string& stream_label, |
| 2143 | const std::string& track_id, |
| 2144 | uint32_t ssrc, |
| 2145 | cricket::MediaType media_type) { |
deadbeef | a601f5c | 2016-06-06 14:27:39 -0700 | [diff] [blame] | 2146 | RtpSenderInternal* sender = FindSenderById(track_id); |
deadbeef | fac0655 | 2015-11-25 11:26:01 -0800 | [diff] [blame] | 2147 | if (!sender) { |
| 2148 | // This is the normal case. I.e., RemoveStream has been called and the |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 2149 | // SessionDescriptions has been renegotiated. |
| 2150 | return; |
| 2151 | } |
deadbeef | fac0655 | 2015-11-25 11:26:01 -0800 | [diff] [blame] | 2152 | |
| 2153 | // A sender has been removed from the SessionDescription but it's still |
| 2154 | // associated with the PeerConnection. This only occurs if the SDP doesn't |
| 2155 | // match with the calls to CreateSender, AddStream and RemoveStream. |
| 2156 | if (sender->media_type() != media_type) { |
| 2157 | LOG(LS_WARNING) << "An RtpSender has been configured in the local" |
| 2158 | << " description with an unexpected media type."; |
| 2159 | return; |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 2160 | } |
deadbeef | fac0655 | 2015-11-25 11:26:01 -0800 | [diff] [blame] | 2161 | |
| 2162 | sender->SetSsrc(0); |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 2163 | } |
| 2164 | |
| 2165 | void PeerConnection::UpdateLocalRtpDataChannels( |
| 2166 | const cricket::StreamParamsVec& streams) { |
| 2167 | std::vector<std::string> existing_channels; |
| 2168 | |
| 2169 | // Find new and active data channels. |
| 2170 | for (const cricket::StreamParams& params : streams) { |
| 2171 | // |it->sync_label| is actually the data channel label. The reason is that |
| 2172 | // we use the same naming of data channels as we do for |
| 2173 | // MediaStreams and Tracks. |
| 2174 | // For MediaStreams, the sync_label is the MediaStream label and the |
| 2175 | // track label is the same as |streamid|. |
| 2176 | const std::string& channel_label = params.sync_label; |
| 2177 | auto data_channel_it = rtp_data_channels_.find(channel_label); |
nisse | 7ce109a | 2017-01-31 00:57:56 -0800 | [diff] [blame] | 2178 | if (data_channel_it == rtp_data_channels_.end()) { |
| 2179 | LOG(LS_ERROR) << "channel label not found"; |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 2180 | continue; |
| 2181 | } |
| 2182 | // Set the SSRC the data channel should use for sending. |
| 2183 | data_channel_it->second->SetSendSsrc(params.first_ssrc()); |
| 2184 | existing_channels.push_back(data_channel_it->first); |
| 2185 | } |
| 2186 | |
| 2187 | UpdateClosingRtpDataChannels(existing_channels, true); |
| 2188 | } |
| 2189 | |
| 2190 | void PeerConnection::UpdateRemoteRtpDataChannels( |
| 2191 | const cricket::StreamParamsVec& streams) { |
| 2192 | std::vector<std::string> existing_channels; |
| 2193 | |
| 2194 | // Find new and active data channels. |
| 2195 | for (const cricket::StreamParams& params : streams) { |
| 2196 | // The data channel label is either the mslabel or the SSRC if the mslabel |
| 2197 | // does not exist. Ex a=ssrc:444330170 mslabel:test1. |
| 2198 | std::string label = params.sync_label.empty() |
| 2199 | ? rtc::ToString(params.first_ssrc()) |
| 2200 | : params.sync_label; |
| 2201 | auto data_channel_it = rtp_data_channels_.find(label); |
| 2202 | if (data_channel_it == rtp_data_channels_.end()) { |
| 2203 | // This is a new data channel. |
| 2204 | CreateRemoteRtpDataChannel(label, params.first_ssrc()); |
| 2205 | } else { |
| 2206 | data_channel_it->second->SetReceiveSsrc(params.first_ssrc()); |
| 2207 | } |
| 2208 | existing_channels.push_back(label); |
| 2209 | } |
| 2210 | |
| 2211 | UpdateClosingRtpDataChannels(existing_channels, false); |
| 2212 | } |
| 2213 | |
| 2214 | void PeerConnection::UpdateClosingRtpDataChannels( |
| 2215 | const std::vector<std::string>& active_channels, |
| 2216 | bool is_local_update) { |
| 2217 | auto it = rtp_data_channels_.begin(); |
| 2218 | while (it != rtp_data_channels_.end()) { |
| 2219 | DataChannel* data_channel = it->second; |
| 2220 | if (std::find(active_channels.begin(), active_channels.end(), |
| 2221 | data_channel->label()) != active_channels.end()) { |
| 2222 | ++it; |
| 2223 | continue; |
| 2224 | } |
| 2225 | |
| 2226 | if (is_local_update) { |
| 2227 | data_channel->SetSendSsrc(0); |
| 2228 | } else { |
| 2229 | data_channel->RemotePeerRequestClose(); |
| 2230 | } |
| 2231 | |
| 2232 | if (data_channel->state() == DataChannel::kClosed) { |
| 2233 | rtp_data_channels_.erase(it); |
| 2234 | it = rtp_data_channels_.begin(); |
| 2235 | } else { |
| 2236 | ++it; |
| 2237 | } |
| 2238 | } |
| 2239 | } |
| 2240 | |
| 2241 | void PeerConnection::CreateRemoteRtpDataChannel(const std::string& label, |
| 2242 | uint32_t remote_ssrc) { |
| 2243 | rtc::scoped_refptr<DataChannel> channel( |
| 2244 | InternalCreateDataChannel(label, nullptr)); |
| 2245 | if (!channel.get()) { |
| 2246 | LOG(LS_WARNING) << "Remote peer requested a DataChannel but" |
| 2247 | << "CreateDataChannel failed."; |
| 2248 | return; |
| 2249 | } |
| 2250 | channel->SetReceiveSsrc(remote_ssrc); |
deadbeef | a601f5c | 2016-06-06 14:27:39 -0700 | [diff] [blame] | 2251 | rtc::scoped_refptr<DataChannelInterface> proxy_channel = |
| 2252 | DataChannelProxy::Create(signaling_thread(), channel); |
Taylor Brandstetter | 98cde26 | 2016-05-31 13:02:21 -0700 | [diff] [blame] | 2253 | observer_->OnDataChannel(std::move(proxy_channel)); |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 2254 | } |
| 2255 | |
| 2256 | rtc::scoped_refptr<DataChannel> PeerConnection::InternalCreateDataChannel( |
| 2257 | const std::string& label, |
| 2258 | const InternalDataChannelInit* config) { |
| 2259 | if (IsClosed()) { |
| 2260 | return nullptr; |
| 2261 | } |
| 2262 | if (session_->data_channel_type() == cricket::DCT_NONE) { |
| 2263 | LOG(LS_ERROR) |
| 2264 | << "InternalCreateDataChannel: Data is not supported in this call."; |
| 2265 | return nullptr; |
| 2266 | } |
| 2267 | InternalDataChannelInit new_config = |
| 2268 | config ? (*config) : InternalDataChannelInit(); |
| 2269 | if (session_->data_channel_type() == cricket::DCT_SCTP) { |
| 2270 | if (new_config.id < 0) { |
| 2271 | rtc::SSLRole role; |
deadbeef | 953c2ce | 2017-01-09 14:53:41 -0800 | [diff] [blame] | 2272 | if ((session_->GetSctpSslRole(&role)) && |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 2273 | !sid_allocator_.AllocateSid(role, &new_config.id)) { |
| 2274 | LOG(LS_ERROR) << "No id can be allocated for the SCTP data channel."; |
| 2275 | return nullptr; |
| 2276 | } |
| 2277 | } else if (!sid_allocator_.ReserveSid(new_config.id)) { |
| 2278 | LOG(LS_ERROR) << "Failed to create a SCTP data channel " |
| 2279 | << "because the id is already in use or out of range."; |
| 2280 | return nullptr; |
| 2281 | } |
| 2282 | } |
| 2283 | |
| 2284 | rtc::scoped_refptr<DataChannel> channel(DataChannel::Create( |
Steve Anton | 978b876 | 2017-09-29 12:15:02 -0700 | [diff] [blame] | 2285 | session_, session_->data_channel_type(), label, new_config)); |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 2286 | if (!channel) { |
| 2287 | sid_allocator_.ReleaseSid(new_config.id); |
| 2288 | return nullptr; |
| 2289 | } |
| 2290 | |
| 2291 | if (channel->data_channel_type() == cricket::DCT_RTP) { |
| 2292 | if (rtp_data_channels_.find(channel->label()) != rtp_data_channels_.end()) { |
| 2293 | LOG(LS_ERROR) << "DataChannel with label " << channel->label() |
| 2294 | << " already exists."; |
| 2295 | return nullptr; |
| 2296 | } |
| 2297 | rtp_data_channels_[channel->label()] = channel; |
| 2298 | } else { |
| 2299 | RTC_DCHECK(channel->data_channel_type() == cricket::DCT_SCTP); |
| 2300 | sctp_data_channels_.push_back(channel); |
| 2301 | channel->SignalClosed.connect(this, |
| 2302 | &PeerConnection::OnSctpDataChannelClosed); |
| 2303 | } |
| 2304 | |
hbos | 82ebe02 | 2016-11-14 01:41:09 -0800 | [diff] [blame] | 2305 | SignalDataChannelCreated(channel.get()); |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 2306 | return channel; |
| 2307 | } |
| 2308 | |
| 2309 | bool PeerConnection::HasDataChannels() const { |
zhihuang | 9763d56 | 2016-08-05 11:14:50 -0700 | [diff] [blame] | 2310 | #ifdef HAVE_QUIC |
| 2311 | return !rtp_data_channels_.empty() || !sctp_data_channels_.empty() || |
| 2312 | (session_->quic_data_transport() && |
| 2313 | session_->quic_data_transport()->HasDataChannels()); |
| 2314 | #else |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 2315 | return !rtp_data_channels_.empty() || !sctp_data_channels_.empty(); |
zhihuang | 9763d56 | 2016-08-05 11:14:50 -0700 | [diff] [blame] | 2316 | #endif // HAVE_QUIC |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 2317 | } |
| 2318 | |
| 2319 | void PeerConnection::AllocateSctpSids(rtc::SSLRole role) { |
| 2320 | for (const auto& channel : sctp_data_channels_) { |
| 2321 | if (channel->id() < 0) { |
| 2322 | int sid; |
| 2323 | if (!sid_allocator_.AllocateSid(role, &sid)) { |
| 2324 | LOG(LS_ERROR) << "Failed to allocate SCTP sid."; |
| 2325 | continue; |
| 2326 | } |
| 2327 | channel->SetSctpSid(sid); |
| 2328 | } |
| 2329 | } |
| 2330 | } |
| 2331 | |
| 2332 | void PeerConnection::OnSctpDataChannelClosed(DataChannel* channel) { |
deadbeef | bd29246 | 2015-12-14 18:15:29 -0800 | [diff] [blame] | 2333 | RTC_DCHECK(signaling_thread()->IsCurrent()); |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 2334 | for (auto it = sctp_data_channels_.begin(); it != sctp_data_channels_.end(); |
| 2335 | ++it) { |
| 2336 | if (it->get() == channel) { |
| 2337 | if (channel->id() >= 0) { |
| 2338 | sid_allocator_.ReleaseSid(channel->id()); |
| 2339 | } |
deadbeef | bd29246 | 2015-12-14 18:15:29 -0800 | [diff] [blame] | 2340 | // Since this method is triggered by a signal from the DataChannel, |
| 2341 | // we can't free it directly here; we need to free it asynchronously. |
| 2342 | sctp_data_channels_to_free_.push_back(*it); |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 2343 | sctp_data_channels_.erase(it); |
Taylor Brandstetter | 5d97a9a | 2016-06-10 14:17:27 -0700 | [diff] [blame] | 2344 | signaling_thread()->Post(RTC_FROM_HERE, this, MSG_FREE_DATACHANNELS, |
| 2345 | nullptr); |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 2346 | return; |
| 2347 | } |
| 2348 | } |
| 2349 | } |
| 2350 | |
Taylor Brandstetter | ba29c6a | 2016-06-27 16:30:35 -0700 | [diff] [blame] | 2351 | void PeerConnection::OnVoiceChannelCreated() { |
| 2352 | SetChannelOnSendersAndReceivers<AudioRtpSender, AudioRtpReceiver>( |
| 2353 | session_->voice_channel(), senders_, receivers_, |
| 2354 | cricket::MEDIA_TYPE_AUDIO); |
| 2355 | } |
| 2356 | |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 2357 | void PeerConnection::OnVoiceChannelDestroyed() { |
Taylor Brandstetter | ba29c6a | 2016-06-27 16:30:35 -0700 | [diff] [blame] | 2358 | SetChannelOnSendersAndReceivers<AudioRtpSender, AudioRtpReceiver, |
| 2359 | cricket::VoiceChannel>( |
| 2360 | nullptr, senders_, receivers_, cricket::MEDIA_TYPE_AUDIO); |
| 2361 | } |
| 2362 | |
| 2363 | void PeerConnection::OnVideoChannelCreated() { |
| 2364 | SetChannelOnSendersAndReceivers<VideoRtpSender, VideoRtpReceiver>( |
| 2365 | session_->video_channel(), senders_, receivers_, |
| 2366 | cricket::MEDIA_TYPE_VIDEO); |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 2367 | } |
| 2368 | |
| 2369 | void PeerConnection::OnVideoChannelDestroyed() { |
Taylor Brandstetter | ba29c6a | 2016-06-27 16:30:35 -0700 | [diff] [blame] | 2370 | SetChannelOnSendersAndReceivers<VideoRtpSender, VideoRtpReceiver, |
| 2371 | cricket::VideoChannel>( |
| 2372 | nullptr, senders_, receivers_, cricket::MEDIA_TYPE_VIDEO); |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 2373 | } |
| 2374 | |
| 2375 | void PeerConnection::OnDataChannelCreated() { |
| 2376 | for (const auto& channel : sctp_data_channels_) { |
| 2377 | channel->OnTransportChannelCreated(); |
| 2378 | } |
| 2379 | } |
| 2380 | |
| 2381 | void PeerConnection::OnDataChannelDestroyed() { |
| 2382 | // Use a temporary copy of the RTP/SCTP DataChannel list because the |
| 2383 | // DataChannel may callback to us and try to modify the list. |
| 2384 | std::map<std::string, rtc::scoped_refptr<DataChannel>> temp_rtp_dcs; |
| 2385 | temp_rtp_dcs.swap(rtp_data_channels_); |
| 2386 | for (const auto& kv : temp_rtp_dcs) { |
| 2387 | kv.second->OnTransportChannelDestroyed(); |
| 2388 | } |
| 2389 | |
| 2390 | std::vector<rtc::scoped_refptr<DataChannel>> temp_sctp_dcs; |
| 2391 | temp_sctp_dcs.swap(sctp_data_channels_); |
| 2392 | for (const auto& channel : temp_sctp_dcs) { |
| 2393 | channel->OnTransportChannelDestroyed(); |
| 2394 | } |
| 2395 | } |
| 2396 | |
| 2397 | void PeerConnection::OnDataChannelOpenMessage( |
| 2398 | const std::string& label, |
| 2399 | const InternalDataChannelInit& config) { |
| 2400 | rtc::scoped_refptr<DataChannel> channel( |
| 2401 | InternalCreateDataChannel(label, &config)); |
| 2402 | if (!channel.get()) { |
| 2403 | LOG(LS_ERROR) << "Failed to create DataChannel from the OPEN message."; |
| 2404 | return; |
| 2405 | } |
| 2406 | |
deadbeef | a601f5c | 2016-06-06 14:27:39 -0700 | [diff] [blame] | 2407 | rtc::scoped_refptr<DataChannelInterface> proxy_channel = |
| 2408 | DataChannelProxy::Create(signaling_thread(), channel); |
Taylor Brandstetter | 98cde26 | 2016-05-31 13:02:21 -0700 | [diff] [blame] | 2409 | observer_->OnDataChannel(std::move(proxy_channel)); |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 2410 | } |
| 2411 | |
zhihuang | 1c378ed | 2017-08-17 14:10:50 -0700 | [diff] [blame] | 2412 | bool PeerConnection::HasRtpSender(cricket::MediaType type) const { |
| 2413 | return std::find_if( |
| 2414 | senders_.begin(), senders_.end(), |
| 2415 | [type](const rtc::scoped_refptr< |
| 2416 | RtpSenderProxyWithInternal<RtpSenderInternal>>& sender) { |
| 2417 | return sender->media_type() == type; |
| 2418 | }) != senders_.end(); |
| 2419 | } |
| 2420 | |
deadbeef | a601f5c | 2016-06-06 14:27:39 -0700 | [diff] [blame] | 2421 | RtpSenderInternal* PeerConnection::FindSenderById(const std::string& id) { |
| 2422 | auto it = std::find_if( |
| 2423 | senders_.begin(), senders_.end(), |
| 2424 | [id](const rtc::scoped_refptr< |
| 2425 | RtpSenderProxyWithInternal<RtpSenderInternal>>& sender) { |
| 2426 | return sender->id() == id; |
| 2427 | }); |
| 2428 | return it != senders_.end() ? (*it)->internal() : nullptr; |
deadbeef | fac0655 | 2015-11-25 11:26:01 -0800 | [diff] [blame] | 2429 | } |
| 2430 | |
deadbeef | a601f5c | 2016-06-06 14:27:39 -0700 | [diff] [blame] | 2431 | std::vector< |
| 2432 | rtc::scoped_refptr<RtpSenderProxyWithInternal<RtpSenderInternal>>>::iterator |
deadbeef | 70ab1a1 | 2015-09-28 16:53:55 -0700 | [diff] [blame] | 2433 | PeerConnection::FindSenderForTrack(MediaStreamTrackInterface* track) { |
| 2434 | return std::find_if( |
| 2435 | senders_.begin(), senders_.end(), |
deadbeef | a601f5c | 2016-06-06 14:27:39 -0700 | [diff] [blame] | 2436 | [track](const rtc::scoped_refptr< |
| 2437 | RtpSenderProxyWithInternal<RtpSenderInternal>>& sender) { |
deadbeef | 70ab1a1 | 2015-09-28 16:53:55 -0700 | [diff] [blame] | 2438 | return sender->track() == track; |
| 2439 | }); |
| 2440 | } |
| 2441 | |
deadbeef | a601f5c | 2016-06-06 14:27:39 -0700 | [diff] [blame] | 2442 | std::vector<rtc::scoped_refptr< |
| 2443 | RtpReceiverProxyWithInternal<RtpReceiverInternal>>>::iterator |
perkj | d61bf80 | 2016-03-24 03:16:19 -0700 | [diff] [blame] | 2444 | PeerConnection::FindReceiverForTrack(const std::string& track_id) { |
deadbeef | 70ab1a1 | 2015-09-28 16:53:55 -0700 | [diff] [blame] | 2445 | return std::find_if( |
| 2446 | receivers_.begin(), receivers_.end(), |
deadbeef | a601f5c | 2016-06-06 14:27:39 -0700 | [diff] [blame] | 2447 | [track_id](const rtc::scoped_refptr< |
| 2448 | RtpReceiverProxyWithInternal<RtpReceiverInternal>>& receiver) { |
perkj | d61bf80 | 2016-03-24 03:16:19 -0700 | [diff] [blame] | 2449 | return receiver->id() == track_id; |
deadbeef | 70ab1a1 | 2015-09-28 16:53:55 -0700 | [diff] [blame] | 2450 | }); |
| 2451 | } |
| 2452 | |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 2453 | PeerConnection::TrackInfos* PeerConnection::GetRemoteTracks( |
| 2454 | cricket::MediaType media_type) { |
| 2455 | RTC_DCHECK(media_type == cricket::MEDIA_TYPE_AUDIO || |
| 2456 | media_type == cricket::MEDIA_TYPE_VIDEO); |
| 2457 | return (media_type == cricket::MEDIA_TYPE_AUDIO) ? &remote_audio_tracks_ |
| 2458 | : &remote_video_tracks_; |
| 2459 | } |
| 2460 | |
| 2461 | PeerConnection::TrackInfos* PeerConnection::GetLocalTracks( |
| 2462 | cricket::MediaType media_type) { |
| 2463 | RTC_DCHECK(media_type == cricket::MEDIA_TYPE_AUDIO || |
| 2464 | media_type == cricket::MEDIA_TYPE_VIDEO); |
| 2465 | return (media_type == cricket::MEDIA_TYPE_AUDIO) ? &local_audio_tracks_ |
| 2466 | : &local_video_tracks_; |
| 2467 | } |
| 2468 | |
| 2469 | const PeerConnection::TrackInfo* PeerConnection::FindTrackInfo( |
| 2470 | const PeerConnection::TrackInfos& infos, |
| 2471 | const std::string& stream_label, |
| 2472 | const std::string track_id) const { |
| 2473 | for (const TrackInfo& track_info : infos) { |
| 2474 | if (track_info.stream_label == stream_label && |
| 2475 | track_info.track_id == track_id) { |
| 2476 | return &track_info; |
| 2477 | } |
| 2478 | } |
| 2479 | return nullptr; |
| 2480 | } |
| 2481 | |
| 2482 | DataChannel* PeerConnection::FindDataChannelBySid(int sid) const { |
| 2483 | for (const auto& channel : sctp_data_channels_) { |
| 2484 | if (channel->id() == sid) { |
| 2485 | return channel; |
| 2486 | } |
| 2487 | } |
| 2488 | return nullptr; |
| 2489 | } |
| 2490 | |
deadbeef | 91dd567 | 2016-05-18 16:55:30 -0700 | [diff] [blame] | 2491 | bool PeerConnection::InitializePortAllocator_n( |
Taylor Brandstetter | a1c3035 | 2016-05-13 08:15:11 -0700 | [diff] [blame] | 2492 | const RTCConfiguration& configuration) { |
| 2493 | cricket::ServerAddresses stun_servers; |
| 2494 | std::vector<cricket::RelayServerConfig> turn_servers; |
deadbeef | 293e926 | 2017-01-11 12:28:30 -0800 | [diff] [blame] | 2495 | if (ParseIceServers(configuration.servers, &stun_servers, &turn_servers) != |
| 2496 | RTCErrorType::NONE) { |
Taylor Brandstetter | a1c3035 | 2016-05-13 08:15:11 -0700 | [diff] [blame] | 2497 | return false; |
| 2498 | } |
| 2499 | |
Taylor Brandstetter | f8e6577 | 2016-06-27 17:20:15 -0700 | [diff] [blame] | 2500 | port_allocator_->Initialize(); |
| 2501 | |
Taylor Brandstetter | a1c3035 | 2016-05-13 08:15:11 -0700 | [diff] [blame] | 2502 | // To handle both internal and externally created port allocator, we will |
| 2503 | // enable BUNDLE here. |
| 2504 | int portallocator_flags = port_allocator_->flags(); |
| 2505 | portallocator_flags |= cricket::PORTALLOCATOR_ENABLE_SHARED_SOCKET | |
zhihuang | b09b3f9 | 2017-03-07 14:40:51 -0800 | [diff] [blame] | 2506 | cricket::PORTALLOCATOR_ENABLE_IPV6 | |
| 2507 | cricket::PORTALLOCATOR_ENABLE_IPV6_ON_WIFI; |
Taylor Brandstetter | a1c3035 | 2016-05-13 08:15:11 -0700 | [diff] [blame] | 2508 | // If the disable-IPv6 flag was specified, we'll not override it |
| 2509 | // by experiment. |
| 2510 | if (configuration.disable_ipv6) { |
| 2511 | portallocator_flags &= ~(cricket::PORTALLOCATOR_ENABLE_IPV6); |
sprang | c1b57a1 | 2017-02-28 08:50:47 -0800 | [diff] [blame] | 2512 | } else if (webrtc::field_trial::FindFullName("WebRTC-IPv6Default") |
| 2513 | .find("Disabled") == 0) { |
Taylor Brandstetter | a1c3035 | 2016-05-13 08:15:11 -0700 | [diff] [blame] | 2514 | portallocator_flags &= ~(cricket::PORTALLOCATOR_ENABLE_IPV6); |
| 2515 | } |
| 2516 | |
zhihuang | b09b3f9 | 2017-03-07 14:40:51 -0800 | [diff] [blame] | 2517 | if (configuration.disable_ipv6_on_wifi) { |
| 2518 | portallocator_flags &= ~(cricket::PORTALLOCATOR_ENABLE_IPV6_ON_WIFI); |
| 2519 | LOG(LS_INFO) << "IPv6 candidates on Wi-Fi are disabled."; |
| 2520 | } |
| 2521 | |
Taylor Brandstetter | a1c3035 | 2016-05-13 08:15:11 -0700 | [diff] [blame] | 2522 | if (configuration.tcp_candidate_policy == kTcpCandidatePolicyDisabled) { |
| 2523 | portallocator_flags |= cricket::PORTALLOCATOR_DISABLE_TCP; |
| 2524 | LOG(LS_INFO) << "TCP candidates are disabled."; |
| 2525 | } |
| 2526 | |
honghaiz | 6034705 | 2016-05-31 18:29:12 -0700 | [diff] [blame] | 2527 | if (configuration.candidate_network_policy == |
| 2528 | kCandidateNetworkPolicyLowCost) { |
| 2529 | portallocator_flags |= cricket::PORTALLOCATOR_DISABLE_COSTLY_NETWORKS; |
| 2530 | LOG(LS_INFO) << "Do not gather candidates on high-cost networks"; |
| 2531 | } |
| 2532 | |
Taylor Brandstetter | a1c3035 | 2016-05-13 08:15:11 -0700 | [diff] [blame] | 2533 | port_allocator_->set_flags(portallocator_flags); |
| 2534 | // No step delay is used while allocating ports. |
| 2535 | port_allocator_->set_step_delay(cricket::kMinimumStepDelay); |
| 2536 | port_allocator_->set_candidate_filter( |
| 2537 | ConvertIceTransportTypeToCandidateFilter(configuration.type)); |
deadbeef | d21eab3 | 2017-07-26 16:50:11 -0700 | [diff] [blame] | 2538 | port_allocator_->set_max_ipv6_networks(configuration.max_ipv6_networks); |
Taylor Brandstetter | a1c3035 | 2016-05-13 08:15:11 -0700 | [diff] [blame] | 2539 | |
| 2540 | // Call this last since it may create pooled allocator sessions using the |
| 2541 | // properties set above. |
| 2542 | port_allocator_->SetConfiguration(stun_servers, turn_servers, |
Honghai Zhang | b9e7b4a | 2016-06-30 20:52:02 -0700 | [diff] [blame] | 2543 | configuration.ice_candidate_pool_size, |
Jonas Oreland | bdcee28 | 2017-10-10 14:01:40 +0200 | [diff] [blame] | 2544 | configuration.prune_turn_ports, |
| 2545 | configuration.turn_customizer); |
Taylor Brandstetter | a1c3035 | 2016-05-13 08:15:11 -0700 | [diff] [blame] | 2546 | return true; |
| 2547 | } |
| 2548 | |
deadbeef | 91dd567 | 2016-05-18 16:55:30 -0700 | [diff] [blame] | 2549 | bool PeerConnection::ReconfigurePortAllocator_n( |
deadbeef | 293e926 | 2017-01-11 12:28:30 -0800 | [diff] [blame] | 2550 | const cricket::ServerAddresses& stun_servers, |
| 2551 | const std::vector<cricket::RelayServerConfig>& turn_servers, |
| 2552 | IceTransportsType type, |
| 2553 | int candidate_pool_size, |
Jonas Oreland | bdcee28 | 2017-10-10 14:01:40 +0200 | [diff] [blame] | 2554 | bool prune_turn_ports, |
| 2555 | webrtc::TurnCustomizer* turn_customizer) { |
Taylor Brandstetter | a1c3035 | 2016-05-13 08:15:11 -0700 | [diff] [blame] | 2556 | port_allocator_->set_candidate_filter( |
deadbeef | 293e926 | 2017-01-11 12:28:30 -0800 | [diff] [blame] | 2557 | ConvertIceTransportTypeToCandidateFilter(type)); |
Taylor Brandstetter | a1c3035 | 2016-05-13 08:15:11 -0700 | [diff] [blame] | 2558 | // Call this last since it may create pooled allocator sessions using the |
| 2559 | // candidate filter set above. |
deadbeef | 6de92f9 | 2016-12-12 18:49:32 -0800 | [diff] [blame] | 2560 | return port_allocator_->SetConfiguration( |
Jonas Oreland | bdcee28 | 2017-10-10 14:01:40 +0200 | [diff] [blame] | 2561 | stun_servers, turn_servers, candidate_pool_size, prune_turn_ports, |
| 2562 | turn_customizer); |
Taylor Brandstetter | a1c3035 | 2016-05-13 08:15:11 -0700 | [diff] [blame] | 2563 | } |
| 2564 | |
Elad Alon | 99c3fe5 | 2017-10-13 16:29:40 +0200 | [diff] [blame^] | 2565 | bool PeerConnection::StartRtcEventLog_w( |
| 2566 | std::unique_ptr<RtcEventLogOutput> output) { |
zhihuang | 7798501 | 2017-02-07 15:45:16 -0800 | [diff] [blame] | 2567 | if (!event_log_) { |
| 2568 | return false; |
| 2569 | } |
Elad Alon | 99c3fe5 | 2017-10-13 16:29:40 +0200 | [diff] [blame^] | 2570 | return event_log_->StartLogging(std::move(output)); |
ivoc | 14d5dbe | 2016-07-04 07:06:55 -0700 | [diff] [blame] | 2571 | } |
| 2572 | |
| 2573 | void PeerConnection::StopRtcEventLog_w() { |
zhihuang | 7798501 | 2017-02-07 15:45:16 -0800 | [diff] [blame] | 2574 | if (event_log_) { |
| 2575 | event_log_->StopLogging(); |
| 2576 | } |
ivoc | 14d5dbe | 2016-07-04 07:06:55 -0700 | [diff] [blame] | 2577 | } |
nisse | eaabdf6 | 2017-05-05 02:23:02 -0700 | [diff] [blame] | 2578 | |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 2579 | } // namespace webrtc |