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

Side by Side Diff: webrtc/p2p/client/basicportallocator.cc

Issue 2386783002: Add UMA metrics for ICE regathering reasons. (Closed)
Patch Set: Address comments Created 4 years, 2 months 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
11 #include "webrtc/p2p/client/basicportallocator.h" 11 #include "webrtc/p2p/client/basicportallocator.h"
12 12
13 #include <algorithm> 13 #include <algorithm>
14 #include <string> 14 #include <string>
15 #include <vector> 15 #include <vector>
16 16
17 #include "webrtc/api/peerconnectioninterface.h"
17 #include "webrtc/p2p/base/basicpacketsocketfactory.h" 18 #include "webrtc/p2p/base/basicpacketsocketfactory.h"
18 #include "webrtc/p2p/base/common.h" 19 #include "webrtc/p2p/base/common.h"
19 #include "webrtc/p2p/base/port.h" 20 #include "webrtc/p2p/base/port.h"
20 #include "webrtc/p2p/base/relayport.h" 21 #include "webrtc/p2p/base/relayport.h"
21 #include "webrtc/p2p/base/stunport.h" 22 #include "webrtc/p2p/base/stunport.h"
22 #include "webrtc/p2p/base/tcpport.h" 23 #include "webrtc/p2p/base/tcpport.h"
23 #include "webrtc/p2p/base/turnport.h" 24 #include "webrtc/p2p/base/turnport.h"
24 #include "webrtc/p2p/base/udpport.h" 25 #include "webrtc/p2p/base/udpport.h"
25 #include "webrtc/base/checks.h" 26 #include "webrtc/base/checks.h"
26 #include "webrtc/base/common.h" 27 #include "webrtc/base/common.h"
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
149 void BasicPortAllocator::Construct() { 150 void BasicPortAllocator::Construct() {
150 allow_tcp_listen_ = true; 151 allow_tcp_listen_ = true;
151 } 152 }
152 153
153 BasicPortAllocator::~BasicPortAllocator() { 154 BasicPortAllocator::~BasicPortAllocator() {
154 } 155 }
155 156
156 PortAllocatorSession* BasicPortAllocator::CreateSessionInternal( 157 PortAllocatorSession* BasicPortAllocator::CreateSessionInternal(
157 const std::string& content_name, int component, 158 const std::string& content_name, int component,
158 const std::string& ice_ufrag, const std::string& ice_pwd) { 159 const std::string& ice_ufrag, const std::string& ice_pwd) {
159 return new BasicPortAllocatorSession( 160 PortAllocatorSession* session = new BasicPortAllocatorSession(
160 this, content_name, component, ice_ufrag, ice_pwd); 161 this, content_name, component, ice_ufrag, ice_pwd);
162 session->SignalIceRegatheringReason.connect(
163 this, &BasicPortAllocator::ReportIceRegatheringReason);
164 return session;
161 } 165 }
162 166
163 void BasicPortAllocator::AddTurnServer(const RelayServerConfig& turn_server) { 167 void BasicPortAllocator::AddTurnServer(const RelayServerConfig& turn_server) {
164 std::vector<RelayServerConfig> new_turn_servers = turn_servers(); 168 std::vector<RelayServerConfig> new_turn_servers = turn_servers();
165 new_turn_servers.push_back(turn_server); 169 new_turn_servers.push_back(turn_server);
166 SetConfiguration(stun_servers(), new_turn_servers, candidate_pool_size(), 170 SetConfiguration(stun_servers(), new_turn_servers, candidate_pool_size(),
167 prune_turn_ports()); 171 prune_turn_ports());
168 } 172 }
169 173
174 void BasicPortAllocator::ReportIceRegatheringReason(
pthatcher2 2016/10/04 06:03:17 Similarly, I think calling this ReportIceRegatheri
honghaiz3 2016/10/05 05:01:53 This method is removed.
175 IceRegatheringReason reason) {
176 if (metrics_observer()) {
177 metrics_observer()->IncrementEnumCounter(
178 webrtc::kEnumCounterIceRegatheringReason, static_cast<int>(reason),
179 static_cast<int>(IceRegatheringReason::MAX_VALUE));
180 }
181 }
182
170 // BasicPortAllocatorSession 183 // BasicPortAllocatorSession
171 BasicPortAllocatorSession::BasicPortAllocatorSession( 184 BasicPortAllocatorSession::BasicPortAllocatorSession(
172 BasicPortAllocator* allocator, 185 BasicPortAllocator* allocator,
173 const std::string& content_name, 186 const std::string& content_name,
174 int component, 187 int component,
175 const std::string& ice_ufrag, 188 const std::string& ice_ufrag,
176 const std::string& ice_pwd) 189 const std::string& ice_pwd)
177 : PortAllocatorSession(content_name, 190 : PortAllocatorSession(content_name,
178 component, 191 component,
179 ice_ufrag, 192 ice_ufrag,
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
240 network_thread_ = rtc::Thread::Current(); 253 network_thread_ = rtc::Thread::Current();
241 state_ = SessionState::GATHERING; 254 state_ = SessionState::GATHERING;
242 if (!socket_factory_) { 255 if (!socket_factory_) {
243 owned_socket_factory_.reset( 256 owned_socket_factory_.reset(
244 new rtc::BasicPacketSocketFactory(network_thread_)); 257 new rtc::BasicPacketSocketFactory(network_thread_));
245 socket_factory_ = owned_socket_factory_.get(); 258 socket_factory_ = owned_socket_factory_.get();
246 } 259 }
247 260
248 network_thread_->Post(RTC_FROM_HERE, this, MSG_CONFIG_START); 261 network_thread_->Post(RTC_FROM_HERE, this, MSG_CONFIG_START);
249 262
250 LOG(LS_INFO) << "Pruning turn ports " 263 LOG(LS_INFO) << "Start getting ports with prune_turn_ports "
251 << (prune_turn_ports_ ? "enabled" : "disabled"); 264 << (prune_turn_ports_ ? "enabled" : "disabled");
252 } 265 }
253 266
254 void BasicPortAllocatorSession::StopGettingPorts() { 267 void BasicPortAllocatorSession::StopGettingPorts() {
255 ASSERT(rtc::Thread::Current() == network_thread_); 268 ASSERT(rtc::Thread::Current() == network_thread_);
256 ClearGettingPorts(); 269 ClearGettingPorts();
257 // Note: this must be called after ClearGettingPorts because both may set the 270 // Note: this must be called after ClearGettingPorts because both may set the
258 // session state and we should set the state to STOPPED. 271 // session state and we should set the state to STOPPED.
259 state_ = SessionState::STOPPED; 272 state_ = SessionState::STOPPED;
260 } 273 }
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
295 return networks; 308 return networks;
296 } 309 }
297 310
298 void BasicPortAllocatorSession::RegatherOnFailedNetworks() { 311 void BasicPortAllocatorSession::RegatherOnFailedNetworks() {
299 // Find the list of networks that have no connection. 312 // Find the list of networks that have no connection.
300 std::vector<rtc::Network*> failed_networks = GetFailedNetworks(); 313 std::vector<rtc::Network*> failed_networks = GetFailedNetworks();
301 if (failed_networks.empty()) { 314 if (failed_networks.empty()) {
302 return; 315 return;
303 } 316 }
304 317
318 LOG(LS_INFO) << "Regather candidates on failed networks";
319
305 // Mark a sequence as "network failed" if its network is in the list of failed 320 // Mark a sequence as "network failed" if its network is in the list of failed
306 // networks, so that it won't be considered as equivalent when the session 321 // networks, so that it won't be considered as equivalent when the session
307 // regathers ports and candidates. 322 // regathers ports and candidates.
308 for (AllocationSequence* sequence : sequences_) { 323 for (AllocationSequence* sequence : sequences_) {
309 if (!sequence->network_failed() && 324 if (!sequence->network_failed() &&
310 std::find(failed_networks.begin(), failed_networks.end(), 325 std::find(failed_networks.begin(), failed_networks.end(),
311 sequence->network()) != failed_networks.end()) { 326 sequence->network()) != failed_networks.end()) {
312 sequence->set_network_failed(); 327 sequence->set_network_failed();
313 } 328 }
314 } 329 }
315 // Remove ports from being used locally and send signaling to remove 330 // Remove ports from being used locally and send signaling to remove
316 // the candidates on the remote side. 331 // the candidates on the remote side.
317 std::vector<PortData*> ports_to_prune = GetUnprunedPorts(failed_networks); 332 std::vector<PortData*> ports_to_prune = GetUnprunedPorts(failed_networks);
318 if (!ports_to_prune.empty()) { 333 if (!ports_to_prune.empty()) {
319 LOG(LS_INFO) << "Prune " << ports_to_prune.size() 334 LOG(LS_INFO) << "Prune " << ports_to_prune.size()
320 << " ports because their networks failed"; 335 << " ports because their networks failed";
321 PrunePortsAndRemoveCandidates(ports_to_prune); 336 PrunePortsAndRemoveCandidates(ports_to_prune);
322 } 337 }
323 338
324 if (allocation_started_ && network_manager_started_) { 339 if (allocation_started_ && network_manager_started_ && !IsStopped()) {
340 SignalIceRegatheringReason(
341 IceRegatheringReason::CONTINUAL_GATHERING_BY_NETWORK_FAILURE);
pthatcher2 2016/10/04 06:03:17 Actually, this makes it feel like we have two diff
honghaiz3 2016/10/05 05:01:53 Done.
342
325 DoAllocate(); 343 DoAllocate();
326 } 344 }
327 } 345 }
328 346
329 std::vector<PortInterface*> BasicPortAllocatorSession::ReadyPorts() const { 347 std::vector<PortInterface*> BasicPortAllocatorSession::ReadyPorts() const {
330 std::vector<PortInterface*> ret; 348 std::vector<PortInterface*> ret;
331 for (const PortData& data : ports_) { 349 for (const PortData& data : ports_) {
332 if (data.ready()) { 350 if (data.ready()) {
333 ret.push_back(data.port()); 351 ret.push_back(data.port());
334 } 352 }
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after
494 MaybeSignalCandidatesAllocationDone(); 512 MaybeSignalCandidatesAllocationDone();
495 } 513 }
496 } 514 }
497 515
498 void BasicPortAllocatorSession::AllocatePorts() { 516 void BasicPortAllocatorSession::AllocatePorts() {
499 ASSERT(rtc::Thread::Current() == network_thread_); 517 ASSERT(rtc::Thread::Current() == network_thread_);
500 network_thread_->Post(RTC_FROM_HERE, this, MSG_ALLOCATE); 518 network_thread_->Post(RTC_FROM_HERE, this, MSG_ALLOCATE);
501 } 519 }
502 520
503 void BasicPortAllocatorSession::OnAllocate() { 521 void BasicPortAllocatorSession::OnAllocate() {
504 if (network_manager_started_) 522 if (network_manager_started_ && !IsStopped())
505 DoAllocate(); 523 DoAllocate();
506 524
507 allocation_started_ = true; 525 allocation_started_ = true;
508 } 526 }
509 527
510 std::vector<rtc::Network*> BasicPortAllocatorSession::GetNetworks() { 528 std::vector<rtc::Network*> BasicPortAllocatorSession::GetNetworks() {
511 std::vector<rtc::Network*> networks; 529 std::vector<rtc::Network*> networks;
512 rtc::NetworkManager* network_manager = allocator_->network_manager(); 530 rtc::NetworkManager* network_manager = allocator_->network_manager();
513 ASSERT(network_manager != nullptr); 531 ASSERT(network_manager != nullptr);
514 // If the network permission state is BLOCKED, we just act as if the flag has 532 // If the network permission state is BLOCKED, we just act as if the flag has
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
546 networks.end()); 564 networks.end());
547 } 565 }
548 return networks; 566 return networks;
549 } 567 }
550 568
551 // For each network, see if we have a sequence that covers it already. If not, 569 // For each network, see if we have a sequence that covers it already. If not,
552 // create a new sequence to create the appropriate ports. 570 // create a new sequence to create the appropriate ports.
553 void BasicPortAllocatorSession::DoAllocate() { 571 void BasicPortAllocatorSession::DoAllocate() {
554 bool done_signal_needed = false; 572 bool done_signal_needed = false;
555 std::vector<rtc::Network*> networks = GetNetworks(); 573 std::vector<rtc::Network*> networks = GetNetworks();
556
557 if (IsStopped()) {
558 return;
559 }
560 if (networks.empty()) { 574 if (networks.empty()) {
561 LOG(LS_WARNING) << "Machine has no networks; no ports will be allocated"; 575 LOG(LS_WARNING) << "Machine has no networks; no ports will be allocated";
562 done_signal_needed = true; 576 done_signal_needed = true;
563 } else { 577 } else {
564 LOG(LS_INFO) << "Allocate ports on "<< networks.size() << " networks"; 578 LOG(LS_INFO) << "Allocate ports on "<< networks.size() << " networks";
565 PortConfiguration* config = configs_.empty() ? nullptr : configs_.back(); 579 PortConfiguration* config = configs_.empty() ? nullptr : configs_.back();
566 for (uint32_t i = 0; i < networks.size(); ++i) { 580 for (uint32_t i = 0; i < networks.size(); ++i) {
567 uint32_t sequence_flags = flags(); 581 uint32_t sequence_flags = flags();
568 if ((sequence_flags & DISABLE_ALL_PHASES) == DISABLE_ALL_PHASES) { 582 if ((sequence_flags & DISABLE_ALL_PHASES) == DISABLE_ALL_PHASES) {
569 // If all the ports are disabled we should just fire the allocation 583 // If all the ports are disabled we should just fire the allocation
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
620 failed_networks.push_back(sequence->network()); 634 failed_networks.push_back(sequence->network());
621 } 635 }
622 } 636 }
623 std::vector<PortData*> ports_to_prune = GetUnprunedPorts(failed_networks); 637 std::vector<PortData*> ports_to_prune = GetUnprunedPorts(failed_networks);
624 if (!ports_to_prune.empty()) { 638 if (!ports_to_prune.empty()) {
625 LOG(LS_INFO) << "Prune " << ports_to_prune.size() 639 LOG(LS_INFO) << "Prune " << ports_to_prune.size()
626 << " ports because their networks were gone"; 640 << " ports because their networks were gone";
627 PrunePortsAndRemoveCandidates(ports_to_prune); 641 PrunePortsAndRemoveCandidates(ports_to_prune);
628 } 642 }
629 643
644 if (allocation_started_ && !IsStopped()) {
645 if (network_manager_started_) {
646 // If the network manager has started, it must be a regathering.
647 SignalIceRegatheringReason(
648 IceRegatheringReason::CONTINUAL_GATHERING_BY_NETWORK_CHANGE);
649 }
650 DoAllocate();
651 }
652
630 if (!network_manager_started_) { 653 if (!network_manager_started_) {
631 LOG(LS_INFO) << "Network manager is started"; 654 LOG(LS_INFO) << "Network manager has started";
632 network_manager_started_ = true; 655 network_manager_started_ = true;
633 } 656 }
634 if (allocation_started_)
635 DoAllocate();
636 } 657 }
637 658
638 void BasicPortAllocatorSession::DisableEquivalentPhases( 659 void BasicPortAllocatorSession::DisableEquivalentPhases(
639 rtc::Network* network, 660 rtc::Network* network,
640 PortConfiguration* config, 661 PortConfiguration* config,
641 uint32_t* flags) { 662 uint32_t* flags) {
642 for (uint32_t i = 0; i < sequences_.size() && 663 for (uint32_t i = 0; i < sequences_.size() &&
643 (*flags & DISABLE_ALL_PHASES) != DISABLE_ALL_PHASES; 664 (*flags & DISABLE_ALL_PHASES) != DISABLE_ALL_PHASES;
644 ++i) { 665 ++i) {
645 sequences_[i]->DisableEquivalentPhases(network, config, flags); 666 sequences_[i]->DisableEquivalentPhases(network, config, flags);
(...skipping 837 matching lines...) Expand 10 before | Expand all | Expand 10 after
1483 ServerAddresses servers; 1504 ServerAddresses servers;
1484 for (size_t i = 0; i < relays.size(); ++i) { 1505 for (size_t i = 0; i < relays.size(); ++i) {
1485 if (relays[i].type == turn_type && SupportsProtocol(relays[i], type)) { 1506 if (relays[i].type == turn_type && SupportsProtocol(relays[i], type)) {
1486 servers.insert(relays[i].ports.front().address); 1507 servers.insert(relays[i].ports.front().address);
1487 } 1508 }
1488 } 1509 }
1489 return servers; 1510 return servers;
1490 } 1511 }
1491 1512
1492 } // namespace cricket 1513 } // namespace cricket
OLDNEW
« webrtc/p2p/base/portallocator.h ('K') | « webrtc/p2p/client/basicportallocator.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698