/**************************************************************************** Copyright (c) 2015-2016 Chukong Technologies Inc. Copyright (c) 2017-2023 Xiamen Yaji Software Co., Ltd. http://www.cocos.com Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ****************************************************************************/ #include "network/Downloader-java.h" #include #include "application/ApplicationManager.h" #include "base/StringUtil.h" #include "base/memory/Memory.h" #include "network/Downloader.h" #include "platform/java/jni/JniHelper.h" #include "platform/java/jni/JniImp.h" #ifndef JCLS_DOWNLOADER #define JCLS_DOWNLOADER "com/cocos/lib/CocosDownloader" #endif #define JARG_STR "Ljava/lang/String;" #define JARG_DOWNLOADER "L" JCLS_DOWNLOADER ";" #ifndef ORG_DOWNLOADER_CLASS_NAME #define ORG_DOWNLOADER_CLASS_NAME com_cocos_lib_CocosDownloader #endif #define JNI_DOWNLOADER(FUNC) JNI_METHOD1(ORG_DOWNLOADER_CLASS_NAME, FUNC) ccstd::unordered_map sDownloaderMap; std::mutex sDownloaderMutex; static void insertDownloaderJava(int id, cc::network::DownloaderJava *downloaderPtr) { std::lock_guard guard(sDownloaderMutex); sDownloaderMap.insert(std::make_pair(id, downloaderPtr)); } static void eraseDownloaderJava(int id) { std::lock_guard guard(sDownloaderMutex); sDownloaderMap.erase(id); } /** * If not found, return nullptr, otherwise return the Downloader */ static cc::network::DownloaderJava *findDownloaderJava(int id) { std::lock_guard guard(sDownloaderMutex); auto iter = sDownloaderMap.find(id); if (sDownloaderMap.end() == iter) { return nullptr; } return iter->second; } namespace cc { namespace network { static int sTaskCounter = 0; static int sDownloaderCounter = 0; struct DownloadTaskAndroid : public IDownloadTask { DownloadTaskAndroid() : id(++sTaskCounter) { DLLOG("Construct DownloadTaskAndroid: %p", this); } ~DownloadTaskAndroid() override { DLLOG("Destruct DownloadTaskAndroid: %p", this); } int id; std::shared_ptr task; // reference to DownloadTask, when task finish, release }; DownloaderJava::DownloaderJava(const DownloaderHints &hints) : _id(++sDownloaderCounter), _impl(nullptr) { DLLOG("Construct DownloaderJava: %p", this); JniMethodInfo methodInfo; if (JniHelper::getStaticMethodInfo(methodInfo, JCLS_DOWNLOADER, "createDownloader", "(II" JARG_STR "I)" JARG_DOWNLOADER)) { jobject jStr = methodInfo.env->NewStringUTF(hints.tempFileNameSuffix.c_str()); jobject jObj = methodInfo.env->CallStaticObjectMethod( methodInfo.classID, methodInfo.methodID, _id, hints.timeoutInSeconds, jStr, hints.countOfMaxProcessingTasks); _impl = methodInfo.env->NewGlobalRef(jObj); DLLOG("android downloader: jObj: %p, _impl: %p", jObj, _impl); //It's not thread-safe here, use thread-safe method instead //sDownloaderMap.insert(make_pair(_id, this)); insertDownloaderJava(_id, this); ccDeleteLocalRef(methodInfo.env, jStr); ccDeleteLocalRef(methodInfo.env, jObj); ccDeleteLocalRef(methodInfo.env, methodInfo.classID); } } DownloaderJava::~DownloaderJava() { if (_impl != nullptr) { JniMethodInfo methodInfo; if (JniHelper::getStaticMethodInfo(methodInfo, JCLS_DOWNLOADER, "cancelAllRequests", "(" JARG_DOWNLOADER ")V")) { methodInfo.env->CallStaticVoidMethod( methodInfo.classID, methodInfo.methodID, _impl); ccDeleteLocalRef(methodInfo.env, methodInfo.classID); } //It's not thread-safe here, use thread-safe method instead //sDownloaderMap.erase(_id); eraseDownloaderJava(_id); JniHelper::getEnv()->DeleteGlobalRef(_impl); } DLLOG("Destruct DownloaderJava: %p", this); } IDownloadTask *DownloaderJava::createCoTask(std::shared_ptr &task) { auto *coTask = ccnew DownloadTaskAndroid; coTask->task = task; JniMethodInfo methodInfo; if (JniHelper::getStaticMethodInfo(methodInfo, JCLS_DOWNLOADER, "createTask", "(" JARG_DOWNLOADER "I" JARG_STR JARG_STR "[" JARG_STR ")V")) { jclass jclassString = methodInfo.env->FindClass("java/lang/String"); ccstd::string url(task->requestURL); jstring jstrURL = methodInfo.env->NewStringUTF(StringUtil::replaceAll(url, " ", "%20").c_str()); jstring jstrPath = methodInfo.env->NewStringUTF(task->storagePath.c_str()); jobjectArray jarrayHeader = methodInfo.env->NewObjectArray(task->header.size() * 2, jclassString, nullptr); const ccstd::unordered_map &headMap = task->header; int index = 0; for (const auto &it : headMap) { methodInfo.env->SetObjectArrayElement(jarrayHeader, index++, methodInfo.env->NewStringUTF(it.first.c_str())); methodInfo.env->SetObjectArrayElement(jarrayHeader, index++, methodInfo.env->NewStringUTF(it.second.c_str())); } methodInfo.env->CallStaticVoidMethod(methodInfo.classID, methodInfo.methodID, _impl, coTask->id, jstrURL, jstrPath, jarrayHeader); for (int i = 0; i < index; ++i) { ccDeleteLocalRef(methodInfo.env, methodInfo.env->GetObjectArrayElement(jarrayHeader, i)); } ccDeleteLocalRef(methodInfo.env, jclassString); ccDeleteLocalRef(methodInfo.env, jstrURL); ccDeleteLocalRef(methodInfo.env, jstrPath); ccDeleteLocalRef(methodInfo.env, jarrayHeader); ccDeleteLocalRef(methodInfo.env, methodInfo.classID); } DLLOG("DownloaderJava::createCoTask id: %d", coTask->id); _taskMap.insert(std::make_pair(coTask->id, coTask)); return coTask; } void DownloaderJava::abort(const std::unique_ptr &task) { auto iter = _taskMap.begin(); for (; iter != _taskMap.end(); iter++) { if (task.get() == iter->second) { break; } } if (_impl != nullptr && iter != _taskMap.end()) { JniMethodInfo methodInfo; if (JniHelper::getStaticMethodInfo(methodInfo, JCLS_DOWNLOADER, "abort", "(" JARG_DOWNLOADER "I" ")V")) { methodInfo.env->CallStaticVoidMethod( methodInfo.classID, methodInfo.methodID, _impl, iter->first); ccDeleteLocalRef(methodInfo.env, methodInfo.classID); DownloadTaskAndroid *coTask = iter->second; _taskMap.erase(iter); ccstd::vector emptyBuffer; onTaskFinish(*coTask->task, DownloadTask::ERROR_ABORT, DownloadTask::ERROR_ABORT, "downloadFile:fail abort", emptyBuffer); coTask->task.reset(); } } DLLOG("DownloaderJava:abort"); } void DownloaderJava::onProcessImpl(int taskId, uint32_t dl, uint32_t dlNow, uint32_t dlTotal) { DLLOG("DownloaderJava::onProgress(taskId: %d, dl: %lld, dlnow: %lld, dltotal: %lld)", taskId, dl, dlNow, dlTotal); auto iter = _taskMap.find(taskId); if (_taskMap.end() == iter) { DLLOG("DownloaderJava::onProgress can't find task with id: %d", taskId); return; } DownloadTaskAndroid *coTask = iter->second; std::function transferDataToBuffer; onTaskProgress(*coTask->task, dl, dlNow, dlTotal, transferDataToBuffer); } void DownloaderJava::onFinishImpl(int taskId, int errCode, const char *errStr, const ccstd::vector &data) { DLLOG("DownloaderJava::onFinishImpl(taskId: %d, errCode: %d, errStr: %s)", taskId, errCode, (errStr) ? errStr : "null"); auto iter = _taskMap.find(taskId); if (_taskMap.end() == iter) { DLLOG("DownloaderJava::onFinishImpl can't find task with id: %d", taskId); return; } DownloadTaskAndroid *coTask = iter->second; ccstd::string str = (errStr ? errStr : ""); _taskMap.erase(iter); onTaskFinish(*coTask->task, (errStr || (errCode != 0)) ? DownloadTask::ERROR_IMPL_INTERNAL : DownloadTask::ERROR_NO_ERROR, errCode, str, data); coTask->task.reset(); } } // namespace network } // namespace cc extern "C" { JNIEXPORT void JNICALL JNI_DOWNLOADER(nativeOnProgress)(JNIEnv * /*env*/, jobject /*obj*/, jint id, jint taskId, jlong dl, jlong dlnow, jlong dltotal) { auto func = [=]() -> void { DLLOG("_nativeOnProgress(id: %d, taskId: %d, dl: %lld, dlnow: %lld, dltotal: %lld)", id, taskId, dl, dlnow, dltotal); //It's not thread-safe here, use thread-safe method instead cc::network::DownloaderJava *downloader = findDownloaderJava(id); if (nullptr == downloader) { DLLOG("_nativeOnProgress can't find downloader by key: %p for task: %d", clazz, id); return; } downloader->onProcessImpl((int)taskId, (uint32_t)dl, (uint32_t)dlnow, (uint32_t)dltotal); }; CC_CURRENT_ENGINE()->getScheduler()->performFunctionInCocosThread(func); } JNIEXPORT void JNICALL JNI_DOWNLOADER(nativeOnFinish)(JNIEnv *env, jobject /*obj*/, jint id, jint taskId, jint errCode, jstring errStr, jbyteArray data) { ccstd::string errStrTmp; ccstd::vector dataTmp; if (errStr) { const char *nativeErrStr = env->GetStringUTFChars(errStr, JNI_FALSE); errStrTmp = nativeErrStr; env->ReleaseStringUTFChars(errStr, nativeErrStr); } if (data && env->GetArrayLength(data) > 0) { auto len = env->GetArrayLength(data); dataTmp.resize(len); env->GetByteArrayRegion(data, 0, len, reinterpret_cast(dataTmp.data())); } auto func = [errStrTmp = std::move(errStrTmp), dataTmp = std::move(dataTmp), id, taskId, errCode]() -> void { DLLOG("_nativeOnFinish(id: %d, taskId: %d)", id, taskId); //It's not thread-safe here, use thread-safe method instead cc::network::DownloaderJava *downloader = findDownloaderJava(id); if (nullptr == downloader) { DLLOG("_nativeOnFinish can't find downloader id: %d for task: %d", id, taskId); return; } ccstd::vector buf; if (!errStrTmp.empty()) { // failure downloader->onFinishImpl((int)taskId, (int)errCode, errStrTmp.c_str(), buf); return; } // success downloader->onFinishImpl((int)taskId, (int)errCode, nullptr, dataTmp); }; CC_CURRENT_ENGINE()->getScheduler()->performFunctionInCocosThread(func); } } // extern "C" {