Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(126)

Side by Side Diff: webrtc/p2p/base/p2ptransportchannel.cc

Issue 2590063002: Make P2PTransportChannel inherit from IceTransportInternal. (Closed)
Patch Set: Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 static const int DEFAULT_REGATHER_ON_FAILED_NETWORKS_INTERVAL = 5 * 60 * 1000; 93 static const int DEFAULT_REGATHER_ON_FAILED_NETWORKS_INTERVAL = 5 * 60 * 1000;
94 94
95 static constexpr int DEFAULT_BACKUP_CONNECTION_PING_INTERVAL = 25 * 1000; 95 static constexpr int DEFAULT_BACKUP_CONNECTION_PING_INTERVAL = 25 * 1000;
96 96
97 static constexpr int a_is_better = 1; 97 static constexpr int a_is_better = 1;
98 static constexpr int b_is_better = -1; 98 static constexpr int b_is_better = -1;
99 99
100 P2PTransportChannel::P2PTransportChannel(const std::string& transport_name, 100 P2PTransportChannel::P2PTransportChannel(const std::string& transport_name,
101 int component, 101 int component,
102 PortAllocator* allocator) 102 PortAllocator* allocator)
103 : TransportChannelImpl(transport_name, component), 103 : transport_name_(transport_name),
104 component_(component),
104 allocator_(allocator), 105 allocator_(allocator),
105 network_thread_(rtc::Thread::Current()), 106 network_thread_(rtc::Thread::Current()),
106 incoming_only_(false), 107 incoming_only_(false),
107 error_(0), 108 error_(0),
108 sort_dirty_(false), 109 sort_dirty_(false),
109 remote_ice_mode_(ICEMODE_FULL), 110 remote_ice_mode_(ICEMODE_FULL),
110 ice_role_(ICEROLE_UNKNOWN), 111 ice_role_(ICEROLE_UNKNOWN),
111 tiebreaker_(0), 112 tiebreaker_(0),
112 gathering_state_(kIceGatheringNew), 113 gathering_state_(kIceGatheringNew),
113 check_receiving_interval_(MIN_CHECK_RECEIVING_INTERVAL * 5), 114 check_receiving_interval_(MIN_CHECK_RECEIVING_INTERVAL * 5),
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after
264 ASSERT(network_thread_ == rtc::Thread::Current()); 265 ASSERT(network_thread_ == rtc::Thread::Current());
265 if (!ports_.empty() || !pruned_ports_.empty()) { 266 if (!ports_.empty() || !pruned_ports_.empty()) {
266 LOG(LS_ERROR) 267 LOG(LS_ERROR)
267 << "Attempt to change tiebreaker after Port has been allocated."; 268 << "Attempt to change tiebreaker after Port has been allocated.";
268 return; 269 return;
269 } 270 }
270 271
271 tiebreaker_ = tiebreaker; 272 tiebreaker_ = tiebreaker;
272 } 273 }
273 274
274 TransportChannelState P2PTransportChannel::GetState() const { 275 TransportState P2PTransportChannel::GetState() const {
275 return state_; 276 return state_;
276 } 277 }
277 278
278 // A channel is considered ICE completed once there is at most one active 279 // A channel is considered ICE completed once there is at most one active
279 // connection per network and at least one active connection. 280 // connection per network and at least one active connection.
280 TransportChannelState P2PTransportChannel::ComputeState() const { 281 TransportState P2PTransportChannel::ComputeState() const {
281 if (!had_connection_) { 282 if (!had_connection_) {
282 return TransportChannelState::STATE_INIT; 283 return TransportState::STATE_INIT;
283 } 284 }
284 285
285 std::vector<Connection*> active_connections; 286 std::vector<Connection*> active_connections;
286 for (Connection* connection : connections_) { 287 for (Connection* connection : connections_) {
287 if (connection->active()) { 288 if (connection->active()) {
288 active_connections.push_back(connection); 289 active_connections.push_back(connection);
289 } 290 }
290 } 291 }
291 if (active_connections.empty()) { 292 if (active_connections.empty()) {
292 return TransportChannelState::STATE_FAILED; 293 return TransportState::STATE_FAILED;
293 } 294 }
294 295
295 std::set<rtc::Network*> networks; 296 std::set<rtc::Network*> networks;
296 for (Connection* connection : active_connections) { 297 for (Connection* connection : active_connections) {
297 rtc::Network* network = connection->port()->Network(); 298 rtc::Network* network = connection->port()->Network();
298 if (networks.find(network) == networks.end()) { 299 if (networks.find(network) == networks.end()) {
299 networks.insert(network); 300 networks.insert(network);
300 } else { 301 } else {
301 LOG_J(LS_VERBOSE, this) << "Ice not completed yet for this channel as " 302 LOG_J(LS_VERBOSE, this) << "Ice not completed yet for this channel as "
302 << network->ToString() 303 << network->ToString()
303 << " has more than 1 connection."; 304 << " has more than 1 connection.";
304 return TransportChannelState::STATE_CONNECTING; 305 return TransportState::STATE_CONNECTING;
305 } 306 }
306 } 307 }
307 308
308 return TransportChannelState::STATE_COMPLETED; 309 return TransportState::STATE_COMPLETED;
309 } 310 }
310 311
311 void P2PTransportChannel::SetIceParameters(const IceParameters& ice_params) { 312 void P2PTransportChannel::SetIceParameters(const IceParameters& ice_params) {
312 ASSERT(network_thread_ == rtc::Thread::Current()); 313 ASSERT(network_thread_ == rtc::Thread::Current());
313 LOG(LS_INFO) << "Set ICE ufrag: " << ice_params.ufrag 314 LOG(LS_INFO) << "Set ICE ufrag: " << ice_params.ufrag
314 << " pwd: " << ice_params.pwd << " on transport " 315 << " pwd: " << ice_params.pwd << " on transport "
315 << transport_name(); 316 << transport_name();
316 ice_parameters_ = ice_params; 317 ice_parameters_ = ice_params;
317 // Note: Candidate gathering will restart when MaybeStartGathering is next 318 // Note: Candidate gathering will restart when MaybeStartGathering is next
318 // called. 319 // called.
(...skipping 1073 matching lines...) Expand 10 before | Expand all | Expand 10 after
1392 ReadyToSend(selected_connection_)); 1393 ReadyToSend(selected_connection_));
1393 } 1394 }
1394 1395
1395 // Warning: UpdateState should eventually be called whenever a connection 1396 // Warning: UpdateState should eventually be called whenever a connection
1396 // is added, deleted, or the write state of any connection changes so that the 1397 // is added, deleted, or the write state of any connection changes so that the
1397 // transport controller will get the up-to-date channel state. However it 1398 // transport controller will get the up-to-date channel state. However it
1398 // should not be called too often; in the case that multiple connection states 1399 // should not be called too often; in the case that multiple connection states
1399 // change, it should be called after all the connection states have changed. For 1400 // change, it should be called after all the connection states have changed. For
1400 // example, we call this at the end of SortConnectionsAndUpdateState. 1401 // example, we call this at the end of SortConnectionsAndUpdateState.
1401 void P2PTransportChannel::UpdateState() { 1402 void P2PTransportChannel::UpdateState() {
1402 TransportChannelState state = ComputeState(); 1403 TransportState state = ComputeState();
1403 if (state_ != state) { 1404 if (state_ != state) {
1404 LOG_J(LS_INFO, this) << "Transport channel state changed from " << state_ 1405 LOG_J(LS_INFO, this) << "Transport channel state changed from "
1405 << " to " << state; 1406 << static_cast<int>(state_) << " to "
1407 << static_cast<int>(state);
1406 // Check that the requested transition is allowed. Note that 1408 // Check that the requested transition is allowed. Note that
1407 // P2PTransportChannel does not (yet) implement a direct mapping of the ICE 1409 // P2PTransportChannel does not (yet) implement a direct mapping of the ICE
1408 // states from the standard; the difference is covered by 1410 // states from the standard; the difference is covered by
1409 // TransportController and PeerConnection. 1411 // TransportController and PeerConnection.
1410 switch (state_) { 1412 switch (state_) {
1411 case STATE_INIT: 1413 case TransportState::STATE_INIT:
1412 // TODO(deadbeef): Once we implement end-of-candidates signaling, 1414 // TODO(deadbeef): Once we implement end-of-candidates signaling,
1413 // we shouldn't go from INIT to COMPLETED. 1415 // we shouldn't go from INIT to COMPLETED.
1414 RTC_DCHECK(state == STATE_CONNECTING || state == STATE_COMPLETED); 1416 RTC_DCHECK(state == TransportState::STATE_CONNECTING ||
1417 state == TransportState::STATE_COMPLETED);
1415 break; 1418 break;
1416 case STATE_CONNECTING: 1419 case TransportState::STATE_CONNECTING:
1417 RTC_DCHECK(state == STATE_COMPLETED || state == STATE_FAILED); 1420 RTC_DCHECK(state == TransportState::STATE_COMPLETED ||
1421 state == TransportState::STATE_FAILED);
1418 break; 1422 break;
1419 case STATE_COMPLETED: 1423 case TransportState::STATE_COMPLETED:
1420 // TODO(deadbeef): Once we implement end-of-candidates signaling, 1424 // TODO(deadbeef): Once we implement end-of-candidates signaling,
1421 // we shouldn't go from COMPLETED to CONNECTING. 1425 // we shouldn't go from COMPLETED to CONNECTING.
1422 // Though we *can* go from COMPlETED to FAILED, if consent expires. 1426 // Though we *can* go from COMPlETED to FAILED, if consent expires.
1423 RTC_DCHECK(state == STATE_CONNECTING || state == STATE_FAILED); 1427 RTC_DCHECK(state == TransportState::STATE_CONNECTING ||
1428 state == TransportState::STATE_FAILED);
1424 break; 1429 break;
1425 case STATE_FAILED: 1430 case TransportState::STATE_FAILED:
1426 // TODO(deadbeef): Once we implement end-of-candidates signaling, 1431 // TODO(deadbeef): Once we implement end-of-candidates signaling,
1427 // we shouldn't go from FAILED to CONNECTING or COMPLETED. 1432 // we shouldn't go from FAILED to CONNECTING or COMPLETED.
1428 RTC_DCHECK(state == STATE_CONNECTING || state == STATE_COMPLETED); 1433 RTC_DCHECK(state == TransportState::STATE_CONNECTING ||
1434 state == TransportState::STATE_COMPLETED);
1429 break; 1435 break;
1430 default: 1436 default:
1431 RTC_DCHECK(false); 1437 RTC_DCHECK(false);
1432 break; 1438 break;
1433 } 1439 }
1434 state_ = state; 1440 state_ = state;
1435 SignalStateChanged(this); 1441 SignalStateChanged(this);
1436 } 1442 }
1437 1443
1438 // If our selected connection is "presumed writable" (TURN-TURN with no 1444 // If our selected connection is "presumed writable" (TURN-TURN with no
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
1534 MarkConnectionPinged(conn); 1540 MarkConnectionPinged(conn);
1535 } 1541 }
1536 } 1542 }
1537 int delay = std::min(ping_interval, check_receiving_interval_); 1543 int delay = std::min(ping_interval, check_receiving_interval_);
1538 thread()->PostDelayed(RTC_FROM_HERE, delay, this, MSG_CHECK_AND_PING); 1544 thread()->PostDelayed(RTC_FROM_HERE, delay, this, MSG_CHECK_AND_PING);
1539 } 1545 }
1540 1546
1541 // A connection is considered a backup connection if the channel state 1547 // A connection is considered a backup connection if the channel state
1542 // is completed, the connection is not the selected connection and it is active. 1548 // is completed, the connection is not the selected connection and it is active.
1543 bool P2PTransportChannel::IsBackupConnection(const Connection* conn) const { 1549 bool P2PTransportChannel::IsBackupConnection(const Connection* conn) const {
1544 return state_ == STATE_COMPLETED && conn != selected_connection_ && 1550 return state_ == TransportState::STATE_COMPLETED &&
1545 conn->active(); 1551 conn != selected_connection_ && conn->active();
1546 } 1552 }
1547 1553
1548 // Is the connection in a state for us to even consider pinging the other side? 1554 // Is the connection in a state for us to even consider pinging the other side?
1549 // We consider a connection pingable even if it's not connected because that's 1555 // We consider a connection pingable even if it's not connected because that's
1550 // how a TCP connection is kicked into reconnecting on the active side. 1556 // how a TCP connection is kicked into reconnecting on the active side.
1551 bool P2PTransportChannel::IsPingable(const Connection* conn, 1557 bool P2PTransportChannel::IsPingable(const Connection* conn,
1552 int64_t now) const { 1558 int64_t now) const {
1553 const Candidate& remote = conn->remote_candidate(); 1559 const Candidate& remote = conn->remote_candidate();
1554 // We should never get this far with an empty remote ufrag. 1560 // We should never get this far with an empty remote ufrag.
1555 ASSERT(!remote.username().empty()); 1561 ASSERT(!remote.username().empty());
(...skipping 459 matching lines...) Expand 10 before | Expand all | Expand 10 after
2015 } 2021 }
2016 2022
2017 // During the initial state when nothing has been pinged yet, return the first 2023 // During the initial state when nothing has been pinged yet, return the first
2018 // one in the ordered |connections_|. 2024 // one in the ordered |connections_|.
2019 return *(std::find_if(connections_.begin(), connections_.end(), 2025 return *(std::find_if(connections_.begin(), connections_.end(),
2020 [conn1, conn2](Connection* conn) { 2026 [conn1, conn2](Connection* conn) {
2021 return conn == conn1 || conn == conn2; 2027 return conn == conn1 || conn == conn2;
2022 })); 2028 }));
2023 } 2029 }
2024 2030
2031 void P2PTransportChannel::set_writable(bool writable) {
2032 if (writable_ == writable) {
2033 return;
2034 }
2035 LOG_J(LS_VERBOSE, this) << "set_writable from:" << writable_ << " to "
2036 << writable;
2037 writable_ = writable;
2038 if (writable_) {
2039 SignalReadyToSend(this);
2040 }
2041 SignalWritableState(this);
2042 }
2043
2044 void P2PTransportChannel::set_receiving(bool receiving) {
2045 if (receiving_ == receiving) {
2046 return;
2047 }
2048 receiving_ = receiving;
2049 SignalReceivingState(this);
2050 }
2051
2025 } // namespace cricket 2052 } // namespace cricket
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698