OLD | NEW |
(Empty) | |
| 1 /* |
| 2 * This file is part of Adblock Plus <http://adblockplus.org/>, |
| 3 * Copyright (C) 2006-2014 Eyeo GmbH |
| 4 * |
| 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 |
| 7 * published by the Free Software Foundation. |
| 8 * |
| 9 * Adblock Plus is distributed in the hope that it will be useful, |
| 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 * GNU General Public License for more details. |
| 13 * |
| 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/>. |
| 16 */ |
| 17 |
| 18 #include "JniCallbacks.h" |
| 19 |
| 20 AdblockPlus::Android::JniWebRequest::JniWebRequest(JNIEnv* env, jobject callback
Object) : |
| 21 JniCallbackBase(env, callbackObject), AdblockPlus::WebRequest() |
| 22 { |
| 23 m_TupleClass.reset(new JniGlobalReference<jclass>(env, env->FindClass("com/git
hub/rjeschke/neetutils/collections/Tuple"))); |
| 24 m_ServerResponseClass.reset(new JniGlobalReference<jclass>(env, env->FindClass
(PKG("ServerResponse")))); |
| 25 } |
| 26 |
| 27 AdblockPlus::Android::JniWebRequest::~JniWebRequest() |
| 28 { |
| 29 } |
| 30 |
| 31 AdblockPlus::ServerResponse AdblockPlus::Android::JniWebRequest::GET(const std::
string& url, |
| 32 const AdblockPlus::HeaderList& requestHeaders) const |
| 33 { |
| 34 AdblockPlus::Android::JNIEnvAcquire env(GetJavaVM()); |
| 35 |
| 36 jclass clazz = env->GetObjectClass(GetCallbackObject()); |
| 37 jmethodID method = env->GetMethodID(clazz, "httpGET", "(Ljava/lang/String;Ljav
a/util/List;)" TYP("ServerResponse")); |
| 38 |
| 39 AdblockPlus::ServerResponse sResponse; |
| 40 sResponse.status = AdblockPlus::WebRequest::NS_ERROR_FAILURE; |
| 41 |
| 42 if (method) |
| 43 { |
| 44 jobject arrayList = NewJniArrayList(*env); |
| 45 |
| 46 for (AdblockPlus::HeaderList::const_iterator it = requestHeaders.begin(), en
d = requestHeaders.end(); it != end; it++) |
| 47 { |
| 48 JniAddObjectToList(*env, arrayList, NewTuple(*env, it->first, it->second))
; |
| 49 } |
| 50 |
| 51 jobject response = env->CallObjectMethod(GetCallbackObject(), method, env->N
ewStringUTF(url.c_str()), arrayList); |
| 52 |
| 53 if (!env->ExceptionCheck()) |
| 54 { |
| 55 sResponse.status = AdblockPlus::Android::JniGetLongField(*env, m_ServerRes
ponseClass->get(), response, "status"); |
| 56 sResponse.responseStatus = AdblockPlus::Android::JniGetIntField(*env, m_Se
rverResponseClass->get(), response, "responseStatus"); |
| 57 sResponse.responseText = AdblockPlus::Android::JniGetStringField(*env, m_S
erverResponseClass->get(), response, "response"); |
| 58 // TODO: transform Headers |
| 59 } |
| 60 } |
| 61 |
| 62 CheckAndLogJavaException(*env); |
| 63 |
| 64 return sResponse; |
| 65 } |
| 66 |
| 67 jobject AdblockPlus::Android::JniWebRequest::NewTuple(JNIEnv* env, const std::st
ring& a, const std::string& b) const |
| 68 { |
| 69 jmethodID factory = env->GetMethodID(m_TupleClass->get(), "<init>", "(Ljava/la
ng/Object;Ljava/lang/Object;)V"); |
| 70 return env->NewObject(m_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 } |
| 86 |
| 87 static JNINativeMethod methods[] = |
| 88 { |
| 89 { (char*)"ctor", (char*)"(Ljava/lang/Object;)J", (void*)JniCtor }, |
| 90 { (char*)"dtor", (char*)"(J)V", (void*)JniDtor }, }; |
| 91 |
| 92 extern "C" JNIEXPORT void JNICALL Java_org_adblockplus_android_api_WebRequest_re
gisterNatives(JNIEnv *env, jclass clazz) |
| 93 { |
| 94 env->RegisterNatives(clazz, methods, sizeof(methods) / sizeof(methods[0])); |
| 95 } |
OLD | NEW |