OLD | NEW |
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 JniWebRequest::JniWebRequest(JNIEnv* env, jobject callbackObject) |
21 JniCallbackBase(env, callbackObject), AdblockPlus::WebRequest() | 21 : JniCallbackBase(env, callbackObject), AdblockPlus::WebRequest() |
22 { | 22 { |
23 m_TupleClass.reset(new JniGlobalReference<jclass>(env, env->FindClass("com/git
hub/rjeschke/neetutils/collections/Tuple"))); | 23 tupleClass.reset(new JniGlobalReference<jclass>(env, env->FindClass("com/githu
b/rjeschke/neetutils/collections/Tuple"))); |
24 m_ServerResponseClass.reset(new JniGlobalReference<jclass>(env, env->FindClass
(PKG("ServerResponse")))); | 24 serverResponseClass.reset(new JniGlobalReference<jclass>(env, env->FindClass(P
KG("ServerResponse")))); |
25 } | 25 } |
26 | 26 |
27 AdblockPlus::Android::JniWebRequest::~JniWebRequest() | 27 JniWebRequest::~JniWebRequest() |
28 { | 28 { |
29 } | 29 } |
30 | 30 |
31 AdblockPlus::ServerResponse AdblockPlus::Android::JniWebRequest::GET(const std::
string& url, | 31 AdblockPlus::ServerResponse JniWebRequest::GET(const std::string& url, const Adb
lockPlus::HeaderList& requestHeaders) const |
32 const AdblockPlus::HeaderList& requestHeaders) const | |
33 { | 32 { |
34 AdblockPlus::Android::JNIEnvAcquire env(GetJavaVM()); | 33 JNIEnvAcquire env(GetJavaVM()); |
35 | 34 |
36 jclass clazz = env->GetObjectClass(GetCallbackObject()); | 35 jclass clazz = env->GetObjectClass(GetCallbackObject()); |
37 jmethodID method = env->GetMethodID(clazz, "httpGET", "(Ljava/lang/String;Ljav
a/util/List;)" TYP("ServerResponse")); | 36 jmethodID method = env->GetMethodID(clazz, "httpGET", "(Ljava/lang/String;Ljav
a/util/List;)" TYP("ServerResponse")); |
38 | 37 |
39 AdblockPlus::ServerResponse sResponse; | 38 AdblockPlus::ServerResponse sResponse; |
40 sResponse.status = AdblockPlus::WebRequest::NS_ERROR_FAILURE; | 39 sResponse.status = AdblockPlus::WebRequest::NS_ERROR_FAILURE; |
41 | 40 |
42 if (method) | 41 if (method) |
43 { | 42 { |
44 jobject arrayList = NewJniArrayList(*env); | 43 jobject arrayList = NewJniArrayList(*env); |
45 | 44 |
46 for (AdblockPlus::HeaderList::const_iterator it = requestHeaders.begin(), en
d = requestHeaders.end(); it != end; it++) | 45 for (AdblockPlus::HeaderList::const_iterator it = requestHeaders.begin(), en
d = requestHeaders.end(); it != end; it++) |
47 { | 46 { |
48 JniAddObjectToList(*env, arrayList, NewTuple(*env, it->first, it->second))
; | 47 JniAddObjectToList(*env, arrayList, NewTuple(*env, it->first, it->second))
; |
49 } | 48 } |
50 | 49 |
51 jobject response = env->CallObjectMethod(GetCallbackObject(), method, env->N
ewStringUTF(url.c_str()), arrayList); | 50 jobject response = env->CallObjectMethod(GetCallbackObject(), method, env->N
ewStringUTF(url.c_str()), arrayList); |
52 | 51 |
53 if (!env->ExceptionCheck()) | 52 if (!env->ExceptionCheck()) |
54 { | 53 { |
55 sResponse.status = AdblockPlus::Android::JniGetLongField(*env, m_ServerRes
ponseClass->get(), response, "status"); | 54 sResponse.status = JniGetLongField(*env, serverResponseClass->get(), respo
nse, "status"); |
56 sResponse.responseStatus = AdblockPlus::Android::JniGetIntField(*env, m_Se
rverResponseClass->get(), response, "responseStatus"); | 55 sResponse.responseStatus = JniGetIntField(*env, serverResponseClass->get()
, response, "responseStatus"); |
57 sResponse.responseText = AdblockPlus::Android::JniGetStringField(*env, m_S
erverResponseClass->get(), response, "response"); | 56 sResponse.responseText = JniGetStringField(*env, serverResponseClass->get(
), response, "response"); |
58 // TODO: transform Headers | 57 // TODO: transform Headers |
59 } | 58 } |
60 } | 59 } |
61 | 60 |
62 CheckAndLogJavaException(*env); | 61 CheckAndLogJavaException(*env); |
63 | 62 |
64 return sResponse; | 63 return sResponse; |
65 } | 64 } |
66 | 65 |
67 jobject AdblockPlus::Android::JniWebRequest::NewTuple(JNIEnv* env, const std::st
ring& a, const std::string& b) const | 66 jobject JniWebRequest::NewTuple(JNIEnv* env, const std::string& a, const std::st
ring& b) const |
68 { | 67 { |
69 jmethodID factory = env->GetMethodID(m_TupleClass->get(), "<init>", "(Ljava/la
ng/Object;Ljava/lang/Object;)V"); | 68 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())); | 69 return env->NewObject(tupleClass->get(), factory, env->NewStringUTF(a.c_str())
, env->NewStringUTF(b.c_str())); |
71 } | 70 } |
72 | 71 |
73 static jlong JNICALL JniCtor(JNIEnv* env, jclass clazz, jobject callbackObject) | 72 static jlong JNICALL JniCtor(JNIEnv* env, jclass clazz, jobject callbackObject) |
74 { | 73 { |
75 TRY | 74 TRY |
76 { | 75 { |
77 return AdblockPlus::Android::JniPtr2Long(new AdblockPlus::WebRequestPtr(new
AdblockPlus::Android::JniWebRequest(env, callbackObject))); | 76 return JniPtrToLong(new AdblockPlus::WebRequestPtr(new JniWebRequest(env, ca
llbackObject))); |
78 } | 77 } |
79 CATCH_THROW_AND_RETURN(env, 0) | 78 CATCH_THROW_AND_RETURN(env, 0) |
80 } | 79 } |
81 | 80 |
82 static void JNICALL JniDtor(JNIEnv* env, jclass clazz, jlong ptr) | 81 static void JNICALL JniDtor(JNIEnv* env, jclass clazz, jlong ptr) |
83 { | 82 { |
84 delete AdblockPlus::Android::JniLong2TypePtr<AdblockPlus::WebRequestPtr>(ptr); | 83 delete JniLongToTypePtr<AdblockPlus::WebRequestPtr>(ptr); |
85 } | 84 } |
86 | 85 |
87 static JNINativeMethod methods[] = | 86 static JNINativeMethod methods[] = |
88 { | 87 { |
89 { (char*)"ctor", (char*)"(Ljava/lang/Object;)J", (void*)JniCtor }, | 88 { (char*)"ctor", (char*)"(Ljava/lang/Object;)J", (void*)JniCtor }, |
90 { (char*)"dtor", (char*)"(J)V", (void*)JniDtor }, }; | 89 { (char*)"dtor", (char*)"(J)V", (void*)JniDtor } |
| 90 }; |
91 | 91 |
92 extern "C" JNIEXPORT void JNICALL Java_org_adblockplus_android_api_WebRequest_re
gisterNatives(JNIEnv *env, jclass clazz) | 92 extern "C" JNIEXPORT void JNICALL Java_org_adblockplus_android_api_WebRequest_re
gisterNatives(JNIEnv *env, jclass clazz) |
93 { | 93 { |
94 env->RegisterNatives(clazz, methods, sizeof(methods) / sizeof(methods[0])); | 94 env->RegisterNatives(clazz, methods, sizeof(methods) / sizeof(methods[0])); |
95 } | 95 } |
OLD | NEW |