-
Notifications
You must be signed in to change notification settings - Fork 159
/
Copy pathCefURLRequest_N.cpp
205 lines (175 loc) · 5.5 KB
/
CefURLRequest_N.cpp
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
// Copyright (c) 2014 The Chromium Embedded Framework 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 "CefURLRequest_N.h"
#include "include/cef_request.h"
#include "include/cef_task.h"
#include "include/cef_urlrequest.h"
#include "critical_wait.h"
#include "jni_scoped_helpers.h"
#include "jni_util.h"
#include "url_request_client.h"
namespace {
class URLRequest : public CefTask {
public:
URLRequest(CefThreadId threadId,
CefRefPtr<CefRequest> request,
CefRefPtr<URLRequestClient> client)
: threadId_(threadId),
request_(request),
client_(client),
waitCond_(&lock_) {}
bool Create() {
if (!urlRequest_)
Dispatch(REQ_CREATE);
return (urlRequest_.get() != nullptr);
}
CefURLRequest::Status GetRequestStatus() {
if (!urlRequest_)
return UR_UNKNOWN;
Dispatch(REQ_STATUS);
return status_;
}
CefURLRequest::ErrorCode GetRequestError() {
if (!urlRequest_)
return ERR_FAILED;
Dispatch(REQ_ERROR);
return error_;
}
CefRefPtr<CefResponse> GetResponse() {
if (!urlRequest_)
return nullptr;
Dispatch(REQ_RESPONSE);
return response_;
}
void Cancel() {
if (!urlRequest_)
return;
Dispatch(REQ_CANCEL);
}
private:
enum URLRequestMode {
REQ_CREATE,
REQ_STATUS,
REQ_ERROR,
REQ_RESPONSE,
REQ_CANCEL,
};
CefThreadId threadId_;
CefRefPtr<CefRequest> request_;
CefRefPtr<URLRequestClient> client_;
// sync method calls
CriticalLock lock_;
CriticalWait waitCond_;
URLRequestMode mode_;
// result values
CefRefPtr<CefURLRequest> urlRequest_;
CefURLRequest::Status status_;
CefURLRequest::ErrorCode error_;
CefRefPtr<CefResponse> response_;
void Dispatch(URLRequestMode mode) {
mode_ = mode;
if (CefCurrentlyOn(threadId_)) {
Execute();
} else {
lock_.Lock();
CefPostTask(threadId_, this);
waitCond_.Wait();
lock_.Unlock();
}
}
virtual void Execute() override {
lock_.Lock();
switch (mode_) {
case REQ_CREATE:
// TODO(JCEF): Add the ability to specify a CefRequestContext.
urlRequest_ = CefURLRequest::Create(request_, client_.get(), nullptr);
break;
case REQ_STATUS:
status_ = urlRequest_->GetRequestStatus();
break;
case REQ_ERROR:
error_ = urlRequest_->GetRequestError();
break;
case REQ_RESPONSE:
response_ = urlRequest_->GetResponse();
break;
case REQ_CANCEL:
urlRequest_->Cancel();
break;
}
waitCond_.WakeUp();
lock_.Unlock();
}
IMPLEMENT_REFCOUNTING(URLRequest);
};
const char kCefClassName[] = "CefURLRequest";
CefRefPtr<URLRequest> GetSelf(jlong self) {
return reinterpret_cast<URLRequest*>(self);
}
} // namespace
JNIEXPORT void JNICALL
Java_org_cef_network_CefURLRequest_1N_N_1Create(JNIEnv* env,
jobject obj,
jobject jrequest,
jobject jRequestClient) {
ScopedJNIRequest requestObj(env);
requestObj.SetHandle(jrequest, false /* should_delete */);
CefRefPtr<CefRequest> request = requestObj.GetCefObject();
if (!request)
return;
CefRefPtr<URLRequestClient> client =
URLRequestClient::Create(env, jRequestClient, obj);
CefRefPtr<URLRequest> urlRequest = new URLRequest(TID_UI, request, client);
if (!urlRequest->Create())
return;
SetCefForJNIObject(env, obj, urlRequest.get(), kCefClassName);
}
JNIEXPORT void JNICALL
Java_org_cef_network_CefURLRequest_1N_N_1Dispose(JNIEnv* env,
jobject obj,
jlong self) {
SetCefForJNIObject<URLRequest>(env, obj, nullptr, kCefClassName);
}
JNIEXPORT jobject JNICALL
Java_org_cef_network_CefURLRequest_1N_N_1GetRequestStatus(JNIEnv* env,
jobject obj,
jlong self) {
CefRefPtr<URLRequest> urlRequest = GetSelf(self);
if (!urlRequest)
return nullptr;
ScopedJNIURLRequestStatus status(env, urlRequest->GetRequestStatus());
return status.Release();
}
JNIEXPORT jobject JNICALL
Java_org_cef_network_CefURLRequest_1N_N_1GetRequestError(JNIEnv* env,
jobject obj,
jlong self) {
CefRefPtr<URLRequest> urlRequest = GetSelf(self);
cef_errorcode_t err = ERR_FAILED;
if (urlRequest)
err = urlRequest->GetRequestError();
return NewJNIErrorCode(env, err);
}
JNIEXPORT jobject JNICALL
Java_org_cef_network_CefURLRequest_1N_N_1GetResponse(JNIEnv* env,
jobject obj,
jlong self) {
CefRefPtr<URLRequest> urlRequest = GetSelf(self);
if (!urlRequest)
return nullptr;
CefRefPtr<CefResponse> response = urlRequest->GetResponse();
if (!response)
return nullptr;
ScopedJNIResponse jresponse(env, response);
return jresponse.Release();
}
JNIEXPORT void JNICALL
Java_org_cef_network_CefURLRequest_1N_N_1Cancel(JNIEnv* env,
jobject obj,
jlong self) {
CefRefPtr<URLRequest> urlRequest = GetSelf(self);
if (!urlRequest)
return;
urlRequest->Cancel();
}