LEFT | RIGHT |
1 /* | 1 /* |
2 * This file is part of Adblock Plus <http://adblockplus.org/>, | 2 * This file is part of Adblock Plus <http://adblockplus.org/>, |
3 * Copyright (C) 2006-2014 Eyeo GmbH | 3 * Copyright (C) 2006-2014 Eyeo GmbH |
4 * | 4 * |
5 * Adblock Plus is free software: you can redistribute it and/or modify | 5 * Adblock Plus is free software: you can redistribute it and/or modify |
6 * it under the terms of the GNU General Public License version 3 as | 6 * it under the terms of the GNU General Public License version 3 as |
7 * published by the Free Software Foundation. | 7 * published by the Free Software Foundation. |
8 * | 8 * |
9 * Adblock Plus is distributed in the hope that it will be useful, | 9 * Adblock Plus is distributed in the hope that it will be useful, |
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
12 * GNU General Public License for more details. | 12 * GNU General Public License for more details. |
13 * | 13 * |
14 * You should have received a copy of the GNU General Public License | 14 * You should have received a copy of the GNU General Public License |
15 * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. | 15 * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. |
16 */ | 16 */ |
17 | 17 |
18 #include "JniCallbacks.h" | 18 #include "JniCallbacks.h" |
19 | 19 |
20 AdblockPlus::Android::JniWebRequest::JniWebRequest(JNIEnv* env, jobject callback
Object) : | 20 static jlong JNICALL JniCtor(JNIEnv* env, jclass clazz, jobject callbackObject) |
21 JniCallbackBase(env, callbackObject), AdblockPlus::WebRequest() | |
22 { | 21 { |
23 m_TupleClass.reset(new JniGlobalReference<jclass>(env, env->FindClass("com/git
hub/rjeschke/neetutils/collections/Tuple"))); | 22 try |
24 m_ServerResponseClass.reset(new JniGlobalReference<jclass>(env, env->FindClass
(PKG("ServerResponse")))); | 23 { |
| 24 return JniPtrToLong(new AdblockPlus::WebRequestPtr(new JniWebRequest(env, ca
llbackObject))); |
| 25 } |
| 26 CATCH_THROW_AND_RETURN(env, 0) |
25 } | 27 } |
26 | 28 |
27 AdblockPlus::Android::JniWebRequest::~JniWebRequest() | 29 static void JNICALL JniDtor(JNIEnv* env, jclass clazz, jlong ptr) |
28 { | 30 { |
| 31 delete JniLongToTypePtr<AdblockPlus::WebRequestPtr>(ptr); |
29 } | 32 } |
30 | 33 |
31 AdblockPlus::ServerResponse AdblockPlus::Android::JniWebRequest::GET(const std::
string& url, | 34 JniWebRequest::JniWebRequest(JNIEnv* env, jobject callbackObject) |
32 const AdblockPlus::HeaderList& requestHeaders) const | 35 : JniCallbackBase(env, callbackObject), AdblockPlus::WebRequest() |
33 { | 36 { |
34 AdblockPlus::Android::JNIEnvAcquire env(GetJavaVM()); | 37 tupleClass.reset(new JniGlobalReference<jclass>(env, env->FindClass("com/githu
b/rjeschke/neetutils/collections/Tuple"))); |
| 38 serverResponseClass.reset(new JniGlobalReference<jclass>(env, env->FindClass(P
KG("ServerResponse")))); |
| 39 } |
| 40 |
| 41 AdblockPlus::ServerResponse JniWebRequest::GET(const std::string& url, const Adb
lockPlus::HeaderList& requestHeaders) const |
| 42 { |
| 43 JNIEnvAcquire env(GetJavaVM()); |
35 | 44 |
36 jclass clazz = env->GetObjectClass(GetCallbackObject()); | 45 jclass clazz = env->GetObjectClass(GetCallbackObject()); |
37 jmethodID method = env->GetMethodID(clazz, "httpGET", "(Ljava/lang/String;Ljav
a/util/List;)" TYP("ServerResponse")); | 46 jmethodID method = env->GetMethodID(clazz, "httpGET", "(Ljava/lang/String;Ljav
a/util/List;)" TYP("ServerResponse")); |
38 | 47 |
39 AdblockPlus::ServerResponse sResponse; | 48 AdblockPlus::ServerResponse sResponse; |
40 sResponse.status = AdblockPlus::WebRequest::NS_ERROR_FAILURE; | 49 sResponse.status = AdblockPlus::WebRequest::NS_ERROR_FAILURE; |
41 | 50 |
42 if (method) | 51 if (method) |
43 { | 52 { |
44 jobject arrayList = NewJniArrayList(*env); | 53 jobject arrayList = NewJniArrayList(*env); |
45 | 54 |
46 for (AdblockPlus::HeaderList::const_iterator it = requestHeaders.begin(), en
d = requestHeaders.end(); it != end; it++) | 55 for (AdblockPlus::HeaderList::const_iterator it = requestHeaders.begin(), en
d = requestHeaders.end(); it != end; it++) |
47 { | 56 { |
48 JniAddObjectToList(*env, arrayList, NewTuple(*env, it->first, it->second))
; | 57 JniAddObjectToList(*env, arrayList, NewTuple(*env, it->first, it->second))
; |
49 } | 58 } |
50 | 59 |
51 jobject response = env->CallObjectMethod(GetCallbackObject(), method, env->N
ewStringUTF(url.c_str()), arrayList); | 60 jobject response = env->CallObjectMethod(GetCallbackObject(), method, env->N
ewStringUTF(url.c_str()), arrayList); |
52 | 61 |
53 if (!env->ExceptionCheck()) | 62 if (!env->ExceptionCheck()) |
54 { | 63 { |
55 sResponse.status = AdblockPlus::Android::JniGetLongField(*env, m_ServerRes
ponseClass->get(), response, "status"); | 64 sResponse.status = JniGetLongField(*env, serverResponseClass->Get(), respo
nse, "status"); |
56 sResponse.responseStatus = AdblockPlus::Android::JniGetIntField(*env, m_Se
rverResponseClass->get(), response, "responseStatus"); | 65 sResponse.responseStatus = JniGetIntField(*env, serverResponseClass->Get()
, response, "responseStatus"); |
57 sResponse.responseText = AdblockPlus::Android::JniGetStringField(*env, m_S
erverResponseClass->get(), response, "response"); | 66 sResponse.responseText = JniGetStringField(*env, serverResponseClass->Get(
), response, "response"); |
58 // TODO: transform Headers | 67 // TODO: transform Headers |
59 } | 68 } |
60 } | 69 } |
61 | 70 |
62 CheckAndLogJavaException(*env); | 71 CheckAndLogJavaException(*env); |
63 | 72 |
64 return sResponse; | 73 return sResponse; |
65 } | 74 } |
66 | 75 |
67 jobject AdblockPlus::Android::JniWebRequest::NewTuple(JNIEnv* env, const std::st
ring& a, const std::string& b) const | 76 jobject JniWebRequest::NewTuple(JNIEnv* env, const std::string& a, const std::st
ring& b) const |
68 { | 77 { |
69 jmethodID factory = env->GetMethodID(m_TupleClass->get(), "<init>", "(Ljava/la
ng/Object;Ljava/lang/Object;)V"); | 78 jmethodID factory = env->GetMethodID(tupleClass->Get(), "<init>", "(Ljava/lang
/Object;Ljava/lang/Object;)V"); |
70 return env->NewObject(m_TupleClass->get(), factory, env->NewStringUTF(a.c_str(
)), env->NewStringUTF(b.c_str())); | 79 return env->NewObject(tupleClass->Get(), factory, env->NewStringUTF(a.c_str())
, env->NewStringUTF(b.c_str())); |
71 } | |
72 | |
73 static jlong JNICALL JniCtor(JNIEnv* env, jclass clazz, jobject callbackObject) | |
74 { | |
75 TRY | |
76 { | |
77 return AdblockPlus::Android::JniPtr2Long(new AdblockPlus::WebRequestPtr(new
AdblockPlus::Android::JniWebRequest(env, callbackObject))); | |
78 } | |
79 CATCH_THROW_AND_RETURN(env, 0) | |
80 } | |
81 | |
82 static void JNICALL JniDtor(JNIEnv* env, jclass clazz, jlong ptr) | |
83 { | |
84 delete AdblockPlus::Android::JniLong2TypePtr<AdblockPlus::WebRequestPtr>(ptr); | |
85 } | 80 } |
86 | 81 |
87 static JNINativeMethod methods[] = | 82 static JNINativeMethod methods[] = |
88 { | 83 { |
89 { (char*)"ctor", (char*)"(Ljava/lang/Object;)J", (void*)JniCtor }, | 84 { (char*)"ctor", (char*)"(Ljava/lang/Object;)J", (void*)JniCtor }, |
90 { (char*)"dtor", (char*)"(J)V", (void*)JniDtor }, }; | 85 { (char*)"dtor", (char*)"(J)V", (void*)JniDtor } |
| 86 }; |
91 | 87 |
92 extern "C" JNIEXPORT void JNICALL Java_org_adblockplus_android_api_WebRequest_re
gisterNatives(JNIEnv *env, jclass clazz) | 88 extern "C" JNIEXPORT void JNICALL Java_org_adblockplus_libadblockplus_WebRequest
_registerNatives(JNIEnv *env, jclass clazz) |
93 { | 89 { |
94 env->RegisterNatives(clazz, methods, sizeof(methods) / sizeof(methods[0])); | 90 env->RegisterNatives(clazz, methods, sizeof(methods) / sizeof(methods[0])); |
95 } | 91 } |
LEFT | RIGHT |