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
|
// 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.
#include "chrome/browser/android/feedback/connectivity_checker.h"
#include "base/android/jni_android.h"
#include "base/android/jni_string.h"
#include "base/android/scoped_java_ref.h"
#include "base/message_loop/message_loop.h"
#include "base/time/time.h"
#include "base/timer/timer.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/profiles/profile_android.h"
#include "jni/ConnectivityChecker_jni.h"
#include "net/base/load_flags.h"
#include "net/http/http_status_code.h"
#include "net/url_request/url_fetcher.h"
#include "net/url_request/url_fetcher_delegate.h"
#include "net/url_request/url_request_context_getter.h"
#include "net/url_request/url_request_status.h"
#include "url/gurl.h"
namespace chrome {
namespace android {
namespace {
// GENERATED_JAVA_ENUM_PACKAGE: org.chromium.chrome.browser.feedback
// GENERATED_JAVA_PREFIX_TO_STRIP: CONNECTIVITY_CHECK_RESULT_
enum ConnectivityCheckResult {
CONNECTIVITY_CHECK_RESULT_UNKNOWN = 0,
CONNECTIVITY_CHECK_RESULT_CONNECTED = 1,
CONNECTIVITY_CHECK_RESULT_NOT_CONNECTED = 2,
CONNECTIVITY_CHECK_RESULT_TIMEOUT = 3,
CONNECTIVITY_CHECK_RESULT_ERROR = 4,
CONNECTIVITY_CHECK_RESULT_END = 5
};
void ExecuteCallback(jobject callback, ConnectivityCheckResult result) {
CHECK(result >= CONNECTIVITY_CHECK_RESULT_UNKNOWN);
CHECK(result < CONNECTIVITY_CHECK_RESULT_END);
Java_ConnectivityChecker_executeCallback(base::android::AttachCurrentThread(),
callback, result);
}
void ExecuteCallbackFromRef(
base::android::ScopedJavaGlobalRef<jobject>* callback,
ConnectivityCheckResult result) {
ExecuteCallback(callback->obj(), result);
}
void PostCallback(JNIEnv* env,
jobject j_callback,
ConnectivityCheckResult result) {
base::MessageLoop::current()->PostTask(
FROM_HERE,
base::Bind(&ExecuteCallbackFromRef,
base::Owned(new base::android::ScopedJavaGlobalRef<jobject>(
env, j_callback)),
result));
}
// A utility class for checking if the device is currently connected to the
// Internet.
class ConnectivityChecker : public net::URLFetcherDelegate {
public:
ConnectivityChecker(Profile* profile,
const GURL& url,
const base::TimeDelta& timeout,
const base::android::JavaRef<jobject>& java_callback);
// Kicks off the asynchronous connectivity check. When the request has
// completed, |this| is deleted.
void StartAsyncCheck();
// net::URLFetcherDelegate implementation:
void OnURLFetchComplete(const net::URLFetcher* source) override;
// Cancels the URLFetcher, and triggers the callback with a negative result
// and the timeout flag set.
void OnTimeout();
private:
// The context in which the connectivity check is performed.
net::URLRequestContextGetter* request_context_;
// The URL to connect to.
const GURL& url_;
// How long to wait for a response before giving up.
const base::TimeDelta timeout_;
// Holds the Java object which will get the callback with the result.
base::android::ScopedJavaGlobalRef<jobject> java_callback_;
// The URLFetcher that executes the connectivity check.
scoped_ptr<net::URLFetcher> url_fetcher_;
// Whether |this| is already being destroyed, at which point the callback
// has already happened, and no further action should be taken.
bool is_being_destroyed_;
scoped_ptr<base::OneShotTimer> expiration_timer_;
};
void ConnectivityChecker::OnURLFetchComplete(const net::URLFetcher* source) {
if (is_being_destroyed_)
return;
is_being_destroyed_ = true;
DCHECK_EQ(url_fetcher_.get(), source);
net::URLRequestStatus status = source->GetStatus();
int response_code = source->GetResponseCode();
bool connected = status.is_success() && response_code == net::HTTP_NO_CONTENT;
if (connected) {
ExecuteCallback(java_callback_.obj(), CONNECTIVITY_CHECK_RESULT_CONNECTED);
} else {
ExecuteCallback(java_callback_.obj(),
CONNECTIVITY_CHECK_RESULT_NOT_CONNECTED);
}
base::MessageLoop::current()->DeleteSoon(FROM_HERE, this);
}
ConnectivityChecker::ConnectivityChecker(
Profile* profile,
const GURL& url,
const base::TimeDelta& timeout,
const base::android::JavaRef<jobject>& java_callback)
: request_context_(profile->GetRequestContext()),
url_(url),
timeout_(timeout),
java_callback_(java_callback),
is_being_destroyed_(false) {
}
void ConnectivityChecker::StartAsyncCheck() {
url_fetcher_ = net::URLFetcher::Create(url_, net::URLFetcher::GET, this);
url_fetcher_->SetRequestContext(request_context_);
url_fetcher_->SetStopOnRedirect(true);
url_fetcher_->SetAutomaticallyRetryOn5xx(false);
url_fetcher_->SetAutomaticallyRetryOnNetworkChanges(0);
url_fetcher_->SetLoadFlags(net::LOAD_BYPASS_CACHE | net::LOAD_DISABLE_CACHE |
net::LOAD_DO_NOT_SAVE_COOKIES |
net::LOAD_DO_NOT_SEND_COOKIES |
net::LOAD_DO_NOT_SEND_AUTH_DATA);
url_fetcher_->Start();
expiration_timer_.reset(new base::OneShotTimer());
expiration_timer_->Start(FROM_HERE, timeout_, this,
&ConnectivityChecker::OnTimeout);
}
void ConnectivityChecker::OnTimeout() {
if (is_being_destroyed_)
return;
is_being_destroyed_ = true;
url_fetcher_.reset();
ExecuteCallback(java_callback_.obj(), CONNECTIVITY_CHECK_RESULT_TIMEOUT);
base::MessageLoop::current()->DeleteSoon(FROM_HERE, this);
}
} // namespace
void CheckConnectivity(JNIEnv* env,
const JavaParamRef<jclass>& clazz,
const JavaParamRef<jobject>& j_profile,
const JavaParamRef<jstring>& j_url,
jlong j_timeout_ms,
const JavaParamRef<jobject>& j_callback) {
Profile* profile = ProfileAndroid::FromProfileAndroid(j_profile);
if (!profile) {
PostCallback(env, j_callback, CONNECTIVITY_CHECK_RESULT_ERROR);
return;
}
GURL url(base::android::ConvertJavaStringToUTF8(env, j_url));
if (!url.is_valid()) {
PostCallback(env, j_callback, CONNECTIVITY_CHECK_RESULT_ERROR);
return;
}
// This object will be deleted when the connectivity check has completed.
ConnectivityChecker* connectivity_checker = new ConnectivityChecker(
profile, url, base::TimeDelta::FromMilliseconds(j_timeout_ms),
j_callback);
connectivity_checker->StartAsyncCheck();
}
jboolean IsUrlValid(JNIEnv* env,
const JavaParamRef<jclass>& clazz,
const JavaParamRef<jstring>& j_url) {
GURL url(base::android::ConvertJavaStringToUTF8(env, j_url));
return url.is_valid();
}
bool RegisterConnectivityChecker(JNIEnv* env) {
return RegisterNativesImpl(env);
}
} // namespace android
} // namespace chrome
|