1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272
|
// Copyright (c) 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_CHROMEOS_NET_NETWORK_PORTAL_DETECTOR_IMPL_H_
#define CHROME_BROWSER_CHROMEOS_NET_NETWORK_PORTAL_DETECTOR_IMPL_H_
#include <string>
#include "base/basictypes.h"
#include "base/cancelable_callback.h"
#include "base/compiler_specific.h"
#include "base/containers/hash_tables.h"
#include "base/memory/ref_counted.h"
#include "base/memory/scoped_ptr.h"
#include "base/memory/weak_ptr.h"
#include "base/observer_list.h"
#include "base/threading/non_thread_safe.h"
#include "base/time/time.h"
#include "chrome/browser/chromeos/net/network_portal_notification_controller.h"
#include "chromeos/network/network_state_handler_observer.h"
#include "chromeos/network/portal_detector/network_portal_detector.h"
#include "chromeos/network/portal_detector/network_portal_detector_strategy.h"
#include "components/captive_portal/captive_portal_detector.h"
#include "components/captive_portal/captive_portal_types.h"
#include "content/public/browser/notification_observer.h"
#include "content/public/browser/notification_registrar.h"
#include "net/url_request/url_fetcher.h"
#include "url/gurl.h"
namespace net {
class URLRequestContextGetter;
}
namespace chromeos {
class NetworkState;
// This class handles all notifications about network changes from
// NetworkStateHandler and delegates portal detection for the default
// network to CaptivePortalService.
class NetworkPortalDetectorImpl
: public NetworkPortalDetector,
public base::NonThreadSafe,
public chromeos::NetworkStateHandlerObserver,
public content::NotificationObserver,
public PortalDetectorStrategy::Delegate {
public:
static const char kOobeDetectionResultHistogram[];
static const char kOobeDetectionDurationHistogram[];
static const char kOobeShillOnlineHistogram[];
static const char kOobeShillPortalHistogram[];
static const char kOobeShillOfflineHistogram[];
static const char kOobePortalToOnlineHistogram[];
static const char kSessionDetectionResultHistogram[];
static const char kSessionDetectionDurationHistogram[];
static const char kSessionShillOnlineHistogram[];
static const char kSessionShillPortalHistogram[];
static const char kSessionShillOfflineHistogram[];
static const char kSessionPortalToOnlineHistogram[];
// Creates an instance of NetworkPortalDetectorImpl.
static void Initialize(net::URLRequestContextGetter* url_context);
explicit NetworkPortalDetectorImpl(
const scoped_refptr<net::URLRequestContextGetter>& request_context);
virtual ~NetworkPortalDetectorImpl();
// NetworkPortalDetector implementation:
virtual void AddObserver(Observer* observer) override;
virtual void AddAndFireObserver(Observer* observer) override;
virtual void RemoveObserver(Observer* observer) override;
virtual CaptivePortalState GetCaptivePortalState(
const std::string& guid) override;
virtual bool IsEnabled() override;
virtual void Enable(bool start_detection) override;
virtual bool StartDetectionIfIdle() override;
virtual void SetStrategy(PortalDetectorStrategy::StrategyId id) override;
// NetworkStateHandlerObserver implementation:
virtual void DefaultNetworkChanged(const NetworkState* network) override;
// PortalDetectorStrategy::Delegate implementation:
virtual int NoResponseResultCount() override;
virtual base::TimeTicks AttemptStartTime() override;
virtual base::TimeTicks GetCurrentTimeTicks() override;
private:
friend class NetworkPortalDetectorImplTest;
friend class NetworkPortalDetectorImplBrowserTest;
struct DetectionAttemptCompletedReport {
DetectionAttemptCompletedReport();
DetectionAttemptCompletedReport(const std::string network_name,
const std::string network_id,
captive_portal::CaptivePortalResult result,
int response_code);
void Report() const;
bool Equals(const DetectionAttemptCompletedReport& o) const;
std::string network_name;
std::string network_id;
captive_portal::CaptivePortalResult result;
int response_code;
};
typedef std::string NetworkId;
typedef base::hash_map<NetworkId, CaptivePortalState> CaptivePortalStateMap;
enum State {
// No portal check is running.
STATE_IDLE = 0,
// Waiting for portal check.
STATE_PORTAL_CHECK_PENDING,
// Portal check is in progress.
STATE_CHECKING_FOR_PORTAL,
};
// Starts detection process.
void StartDetection();
// Stops whole detection process.
void StopDetection();
// Initiates Captive Portal detection attempt after |delay|.
void ScheduleAttempt(const base::TimeDelta& delay);
// Starts detection attempt.
void StartAttempt();
// Called when portal check is timed out. Cancels portal check and calls
// OnPortalDetectionCompleted() with RESULT_NO_RESPONSE as a result.
void OnAttemptTimeout();
// Called by CaptivePortalDetector when detection attempt completes.
void OnAttemptCompleted(
const captive_portal::CaptivePortalDetector::Results& results);
// content::NotificationObserver implementation:
virtual void Observe(int type,
const content::NotificationSource& source,
const content::NotificationDetails& details) override;
// Stores captive portal state for a |network| and notifies observers.
void OnDetectionCompleted(const NetworkState* network,
const CaptivePortalState& results);
// Notifies observers that portal detection is completed for a |network|.
void NotifyDetectionCompleted(const NetworkState* network,
const CaptivePortalState& state);
State state() const { return state_; }
bool is_idle() const {
return state_ == STATE_IDLE;
}
bool is_portal_check_pending() const {
return state_ == STATE_PORTAL_CHECK_PENDING;
}
bool is_checking_for_portal() const {
return state_ == STATE_CHECKING_FOR_PORTAL;
}
int same_detection_result_count_for_testing() const {
return same_detection_result_count_;
}
int no_response_result_count_for_testing() const {
return no_response_result_count_;
}
void set_no_response_result_count_for_testing(int count) {
no_response_result_count_ = count;
}
// Returns delay before next portal check. Used by unit tests.
const base::TimeDelta& next_attempt_delay_for_testing() const {
return next_attempt_delay_;
}
// Returns true if attempt timeout callback isn't fired or
// cancelled.
bool AttemptTimeoutIsCancelledForTesting() const;
// Record detection stats such as detection duration and detection
// result in UMA.
void RecordDetectionStats(const NetworkState* network,
CaptivePortalStatus status);
// Resets strategy and all counters used in computations of
// timeouts.
void ResetStrategyAndCounters();
// Sets current test time ticks. Used by unit tests.
void set_time_ticks_for_testing(const base::TimeTicks& time_ticks) {
time_ticks_for_testing_ = time_ticks;
}
// Advances current test time ticks. Used by unit tests.
void advance_time_ticks_for_testing(const base::TimeDelta& delta) {
time_ticks_for_testing_ += delta;
}
// Name of the default network.
std::string default_network_name_;
// Unique identifier of the default network.
std::string default_network_id_;
// Connection state of the default network.
std::string default_connection_state_;
State state_;
CaptivePortalStateMap portal_state_map_;
ObserverList<Observer> observers_;
base::CancelableClosure attempt_task_;
base::CancelableClosure attempt_timeout_;
// URL that returns a 204 response code when connected to the Internet.
GURL test_url_;
// Detector for checking default network for a portal state.
scoped_ptr<captive_portal::CaptivePortalDetector> captive_portal_detector_;
// True if the NetworkPortalDetector is enabled.
bool enabled_;
// Start time of portal detection.
base::TimeTicks detection_start_time_;
// Start time of detection attempt.
base::TimeTicks attempt_start_time_;
// Delay before next portal detection.
base::TimeDelta next_attempt_delay_;
// Current detection strategy.
scoped_ptr<PortalDetectorStrategy> strategy_;
// Last received result from captive portal detector.
CaptivePortalStatus last_detection_result_;
// Number of detection attempts with same result in a row.
int same_detection_result_count_;
// Number of detection attempts in a row with NO RESPONSE result.
int no_response_result_count_;
// UI notification controller about captive portal state.
NetworkPortalNotificationController notification_controller_;
content::NotificationRegistrar registrar_;
// Test time ticks used by unit tests.
base::TimeTicks time_ticks_for_testing_;
// Contents of a last log message about completed detection attempt.
DetectionAttemptCompletedReport attempt_completed_report_;
base::WeakPtrFactory<NetworkPortalDetectorImpl> weak_factory_;
DISALLOW_COPY_AND_ASSIGN(NetworkPortalDetectorImpl);
};
} // namespace chromeos
#endif // CHROME_BROWSER_CHROMEOS_NET_NETWORK_PORTAL_DETECTOR_IMPL_H_
|