OLD | NEW |
---|---|
1 /* | 1 /* |
2 * Copyright 2004 The WebRTC project authors. All Rights Reserved. | 2 * Copyright 2004 The WebRTC project authors. All Rights Reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 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 | 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 | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 | 10 |
11 #include <utility> | 11 #include <utility> |
12 | 12 |
13 #include "webrtc/pc/channel.h" | 13 #include "webrtc/pc/channel.h" |
14 | 14 |
15 #include "webrtc/audio_sink.h" | 15 #include "webrtc/audio_sink.h" |
16 #include "webrtc/base/bind.h" | 16 #include "webrtc/base/bind.h" |
17 #include "webrtc/base/byteorder.h" | 17 #include "webrtc/base/byteorder.h" |
18 #include "webrtc/base/common.h" | 18 #include "webrtc/base/common.h" |
19 #include "webrtc/base/copyonwritebuffer.h" | 19 #include "webrtc/base/copyonwritebuffer.h" |
20 #include "webrtc/base/dscp.h" | 20 #include "webrtc/base/dscp.h" |
21 #include "webrtc/base/logging.h" | 21 #include "webrtc/base/logging.h" |
22 #include "webrtc/base/networkroute.h" | |
22 #include "webrtc/base/trace_event.h" | 23 #include "webrtc/base/trace_event.h" |
23 #include "webrtc/media/base/mediaconstants.h" | 24 #include "webrtc/media/base/mediaconstants.h" |
24 #include "webrtc/media/base/rtputils.h" | 25 #include "webrtc/media/base/rtputils.h" |
25 #include "webrtc/p2p/base/transportchannel.h" | 26 #include "webrtc/p2p/base/transportchannel.h" |
26 #include "webrtc/pc/channelmanager.h" | 27 #include "webrtc/pc/channelmanager.h" |
27 | 28 |
28 namespace cricket { | 29 namespace cricket { |
29 using rtc::Bind; | 30 using rtc::Bind; |
30 | 31 |
31 namespace { | 32 namespace { |
(...skipping 307 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
339 } | 340 } |
340 } | 341 } |
341 | 342 |
342 void BaseChannel::ConnectToTransportChannel(TransportChannel* tc) { | 343 void BaseChannel::ConnectToTransportChannel(TransportChannel* tc) { |
343 ASSERT(worker_thread_ == rtc::Thread::Current()); | 344 ASSERT(worker_thread_ == rtc::Thread::Current()); |
344 | 345 |
345 tc->SignalWritableState.connect(this, &BaseChannel::OnWritableState); | 346 tc->SignalWritableState.connect(this, &BaseChannel::OnWritableState); |
346 tc->SignalReadPacket.connect(this, &BaseChannel::OnChannelRead); | 347 tc->SignalReadPacket.connect(this, &BaseChannel::OnChannelRead); |
347 tc->SignalReadyToSend.connect(this, &BaseChannel::OnReadyToSend); | 348 tc->SignalReadyToSend.connect(this, &BaseChannel::OnReadyToSend); |
348 tc->SignalDtlsState.connect(this, &BaseChannel::OnDtlsState); | 349 tc->SignalDtlsState.connect(this, &BaseChannel::OnDtlsState); |
350 tc->SignalSelectedConnectionChanged.connect( | |
351 this, &BaseChannel::OnSelectedConnectionChanged); | |
349 } | 352 } |
350 | 353 |
351 void BaseChannel::DisconnectFromTransportChannel(TransportChannel* tc) { | 354 void BaseChannel::DisconnectFromTransportChannel(TransportChannel* tc) { |
352 ASSERT(worker_thread_ == rtc::Thread::Current()); | 355 ASSERT(worker_thread_ == rtc::Thread::Current()); |
353 | 356 |
354 tc->SignalWritableState.disconnect(this); | 357 tc->SignalWritableState.disconnect(this); |
355 tc->SignalReadPacket.disconnect(this); | 358 tc->SignalReadPacket.disconnect(this); |
356 tc->SignalReadyToSend.disconnect(this); | 359 tc->SignalReadyToSend.disconnect(this); |
357 tc->SignalDtlsState.disconnect(this); | 360 tc->SignalDtlsState.disconnect(this); |
358 } | 361 } |
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
497 // Reset the srtp filter if it's not the CONNECTED state. For the CONNECTED | 500 // Reset the srtp filter if it's not the CONNECTED state. For the CONNECTED |
498 // state, setting up DTLS-SRTP context is deferred to ChannelWritable_w to | 501 // state, setting up DTLS-SRTP context is deferred to ChannelWritable_w to |
499 // cover other scenarios like the whole channel is writable (not just this | 502 // cover other scenarios like the whole channel is writable (not just this |
500 // TransportChannel) or when TransportChannel is attached after DTLS is | 503 // TransportChannel) or when TransportChannel is attached after DTLS is |
501 // negotiated. | 504 // negotiated. |
502 if (state != DTLS_TRANSPORT_CONNECTED) { | 505 if (state != DTLS_TRANSPORT_CONNECTED) { |
503 srtp_filter_.ResetParams(); | 506 srtp_filter_.ResetParams(); |
504 } | 507 } |
505 } | 508 } |
506 | 509 |
510 void BaseChannel::OnSelectedConnectionChanged(TransportChannel* channel, | |
511 Connection* selected_connection) { | |
512 ASSERT(channel == transport_channel_ || channel == rtcp_transport_channel_); | |
513 NetworkRoute network_route; | |
514 if (selected_connection) { | |
515 network_route = | |
516 NetworkRoute(selected_connection->local_candidate().network_id(), | |
517 selected_connection->remote_candidate().network_id()); | |
518 } | |
519 media_channel()->OnNetworkRouteChanged(channel->transport_name(), | |
520 network_route); | |
pthatcher1
2016/03/28 16:18:48
Should we have a unit test for this part also?
honghaiz3
2016/03/29 01:03:03
Done.
| |
521 } | |
522 | |
507 void BaseChannel::SetReadyToSend(bool rtcp, bool ready) { | 523 void BaseChannel::SetReadyToSend(bool rtcp, bool ready) { |
508 if (rtcp) { | 524 if (rtcp) { |
509 rtcp_ready_to_send_ = ready; | 525 rtcp_ready_to_send_ = ready; |
510 } else { | 526 } else { |
511 rtp_ready_to_send_ = ready; | 527 rtp_ready_to_send_ = ready; |
512 } | 528 } |
513 | 529 |
514 if (rtp_ready_to_send_ && | 530 if (rtp_ready_to_send_ && |
515 // In the case of rtcp mux |rtcp_transport_channel_| will be null. | 531 // In the case of rtcp mux |rtcp_transport_channel_| will be null. |
516 (rtcp_ready_to_send_ || !rtcp_transport_channel_)) { | 532 (rtcp_ready_to_send_ || !rtcp_transport_channel_)) { |
(...skipping 1669 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
2186 return (data_channel_type_ == DCT_RTP) && BaseChannel::ShouldSetupDtlsSrtp(); | 2202 return (data_channel_type_ == DCT_RTP) && BaseChannel::ShouldSetupDtlsSrtp(); |
2187 } | 2203 } |
2188 | 2204 |
2189 void DataChannel::OnStreamClosedRemotely(uint32_t sid) { | 2205 void DataChannel::OnStreamClosedRemotely(uint32_t sid) { |
2190 rtc::TypedMessageData<uint32_t>* message = | 2206 rtc::TypedMessageData<uint32_t>* message = |
2191 new rtc::TypedMessageData<uint32_t>(sid); | 2207 new rtc::TypedMessageData<uint32_t>(sid); |
2192 signaling_thread()->Post(this, MSG_STREAMCLOSEDREMOTELY, message); | 2208 signaling_thread()->Post(this, MSG_STREAMCLOSEDREMOTELY, message); |
2193 } | 2209 } |
2194 | 2210 |
2195 } // namespace cricket | 2211 } // namespace cricket |
OLD | NEW |