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 |
(...skipping 1191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1202 last_sent_packet_id_); | 1202 last_sent_packet_id_); |
1203 } | 1203 } |
1204 | 1204 |
1205 // Warning: UpdateState should eventually be called whenever a connection | 1205 // Warning: UpdateState should eventually be called whenever a connection |
1206 // is added, deleted, or the write state of any connection changes so that the | 1206 // is added, deleted, or the write state of any connection changes so that the |
1207 // transport controller will get the up-to-date channel state. However it | 1207 // transport controller will get the up-to-date channel state. However it |
1208 // should not be called too often; in the case that multiple connection states | 1208 // should not be called too often; in the case that multiple connection states |
1209 // change, it should be called after all the connection states have changed. For | 1209 // change, it should be called after all the connection states have changed. For |
1210 // example, we call this at the end of SortConnections. | 1210 // example, we call this at the end of SortConnections. |
1211 void P2PTransportChannel::UpdateState() { | 1211 void P2PTransportChannel::UpdateState() { |
| 1212 TransportChannelState old_state = state_; |
1212 state_ = ComputeState(); | 1213 state_ = ComputeState(); |
1213 | 1214 |
| 1215 if (old_state != state_) { |
| 1216 LOG_J(LS_INFO, this) << "Changing TransportChannelState " << old_state |
| 1217 << " => " << state_; |
| 1218 |
| 1219 // Check that the requested transition is allowed. Note that |
| 1220 // P2PTransportChannel does not (yet) implement a direct mapping of the ICE |
| 1221 // states from the standard; the difference is covered by |
| 1222 // TransportController and PeerConnection. |
| 1223 switch (old_state) { |
| 1224 case STATE_INIT: |
| 1225 // TODO(deadbeef): Once we implement end-of-candidates signaling, |
| 1226 // we shouldn't go from INIT to COMPLETED. |
| 1227 RTC_DCHECK(state_ == STATE_CONNECTING || state_ == STATE_COMPLETED); |
| 1228 break; |
| 1229 case STATE_CONNECTING: |
| 1230 RTC_DCHECK(state_ == STATE_COMPLETED || state_ == STATE_FAILED); |
| 1231 break; |
| 1232 case STATE_COMPLETED: |
| 1233 // TODO(deadbeef): Once we implement end-of-candidates signaling, |
| 1234 // we shouldn't go from COMPLETED to CONNECTING. |
| 1235 // Though we *can* go from COMPlETED to FAILED, if consent expires. |
| 1236 RTC_DCHECK(state_ == STATE_CONNECTING || state_ == STATE_FAILED); |
| 1237 break; |
| 1238 case STATE_FAILED: |
| 1239 // TODO(deadbeef): Once we implement end-of-candidates signaling, |
| 1240 // we shouldn't go from FAILED to CONNECTING or COMPLETED. |
| 1241 RTC_DCHECK(state_ == STATE_CONNECTING || state_ == STATE_COMPLETED); |
| 1242 break; |
| 1243 default: |
| 1244 RTC_DCHECK(false); |
| 1245 break; |
| 1246 } |
| 1247 } |
| 1248 |
1214 bool writable = best_connection_ && best_connection_->writable(); | 1249 bool writable = best_connection_ && best_connection_->writable(); |
1215 set_writable(writable); | 1250 set_writable(writable); |
1216 | 1251 |
1217 bool receiving = false; | 1252 bool receiving = false; |
1218 for (const Connection* connection : connections_) { | 1253 for (const Connection* connection : connections_) { |
1219 if (connection->receiving()) { | 1254 if (connection->receiving()) { |
1220 receiving = true; | 1255 receiving = true; |
1221 break; | 1256 break; |
1222 } | 1257 } |
1223 } | 1258 } |
(...skipping 434 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1658 | 1693 |
1659 // During the initial state when nothing has been pinged yet, return the first | 1694 // During the initial state when nothing has been pinged yet, return the first |
1660 // one in the ordered |connections_|. | 1695 // one in the ordered |connections_|. |
1661 return *(std::find_if(connections_.begin(), connections_.end(), | 1696 return *(std::find_if(connections_.begin(), connections_.end(), |
1662 [conn1, conn2](Connection* conn) { | 1697 [conn1, conn2](Connection* conn) { |
1663 return conn == conn1 || conn == conn2; | 1698 return conn == conn1 || conn == conn2; |
1664 })); | 1699 })); |
1665 } | 1700 } |
1666 | 1701 |
1667 } // namespace cricket | 1702 } // namespace cricket |
OLD | NEW |