blob: f600cb7bcfb3b5bc3d8f8f7d548a379da8cd489e (
plain)
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
|
// Copyright 2015 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 CHROMECAST_NET_CONNECTIVITY_CHECKER_IMPL_H_
#define CHROMECAST_NET_CONNECTIVITY_CHECKER_IMPL_H_
#include "base/cancelable_callback.h"
#include "base/macros.h"
#include "chromecast/net/connectivity_checker.h"
#include "net/base/network_change_notifier.h"
#include "net/url_request/url_request.h"
class GURL;
namespace base {
class SingleThreadTaskRunner;
}
namespace net {
class SSLInfo;
class URLRequest;
class URLRequestContext;
}
namespace chromecast {
// Simple class to check network connectivity by sending a HEAD http request
// to given url.
class ConnectivityCheckerImpl
: public ConnectivityChecker,
public net::URLRequest::Delegate,
public net::NetworkChangeNotifier::NetworkChangeObserver {
public:
explicit ConnectivityCheckerImpl(
const scoped_refptr<base::SingleThreadTaskRunner>& task_runner);
// ConnectivityChecker implementation:
bool Connected() const override;
void Check() override;
protected:
~ConnectivityCheckerImpl() override;
private:
// UrlRequest::Delegate implementation:
void OnResponseStarted(net::URLRequest* request) override;
void OnReadCompleted(net::URLRequest* request, int bytes_read) override;
void OnSSLCertificateError(net::URLRequest* request,
const net::SSLInfo& ssl_info,
bool fatal) override;
// Initializes ConnectivityChecker
void Initialize();
// net::NetworkChangeNotifier::NetworkChangeObserver implementation:
void OnNetworkChanged(
net::NetworkChangeNotifier::ConnectionType type) override;
void OnNetworkChangedInternal();
// Cancels current connectivity checking in progress.
void Cancel();
// Sets connectivity and alerts observers if it has changed
void SetConnected(bool connected);
// Called when URL request failed.
void OnUrlRequestError();
// Called when URL request timed out.
void OnUrlRequestTimeout();
std::unique_ptr<GURL> connectivity_check_url_;
std::unique_ptr<net::URLRequestContext> url_request_context_;
std::unique_ptr<net::URLRequest> url_request_;
const scoped_refptr<base::SingleThreadTaskRunner> task_runner_;
bool connected_;
net::NetworkChangeNotifier::ConnectionType connection_type_;
// Number of connectivity check errors.
unsigned int check_errors_;
bool network_changed_pending_;
// Timeout handler for connectivity checks.
// Note: Cancelling this timeout can cause the destructor for this class to be
// to be called.
base::CancelableCallback<void()> timeout_;
DISALLOW_COPY_AND_ASSIGN(ConnectivityCheckerImpl);
};
} // namespace chromecast
#endif // CHROMECAST_NET_CONNECTIVITY_CHECKER_IMPL_H_
|