mirror of https://github.com/axmolengine/axmol.git
256 lines
10 KiB
C++
256 lines
10 KiB
C++
/****************************************************************************
|
|
Copyright (c) 2015 Chukong Technologies Inc.
|
|
|
|
http://www.cocos2d-x.org
|
|
|
|
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/CCDownloader-android.h"
|
|
|
|
#include "network/CCDownloader.h"
|
|
#include "platform/android/jni/JniHelper.h"
|
|
|
|
#define JCLS_DOWNLOADER "org/cocos2dx/lib/Cocos2dxDownloader"
|
|
#define JCLS_TASK "com/loopj/android/http/RequestHandle"
|
|
#define JARG_STR "Ljava/lang/String;"
|
|
#define JARG_DOWNLOADER "L" JCLS_DOWNLOADER ";"
|
|
#define JARG_TASK "L" JCLS_TASK ";"
|
|
|
|
using namespace std;
|
|
|
|
static bool _registerNativeMethods(JNIEnv* env);
|
|
|
|
unordered_map<int, cocos2d::network::DownloaderAndroid*> sDownloaderMap;
|
|
|
|
namespace cocos2d { namespace network {
|
|
|
|
static int sTaskCounter;
|
|
static int sDownloaderCounter;
|
|
static bool _registered = false;
|
|
|
|
struct DownloadTaskAndroid : public IDownloadTask
|
|
{
|
|
DownloadTaskAndroid()
|
|
:id(++sTaskCounter)
|
|
{
|
|
DLLOG("Construct DownloadTaskAndroid: %p", this);
|
|
}
|
|
virtual ~DownloadTaskAndroid()
|
|
{
|
|
DLLOG("Destruct DownloadTaskAndroid: %p", this);
|
|
}
|
|
|
|
int id;
|
|
shared_ptr<const DownloadTask> task; // reference to DownloadTask, when task finish, release
|
|
};
|
|
|
|
DownloaderAndroid::DownloaderAndroid(const DownloaderHints& hints)
|
|
: _id(++sDownloaderCounter)
|
|
, _impl(nullptr)
|
|
{
|
|
DLLOG("Construct DownloaderAndroid: %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);
|
|
sDownloaderMap.insert(make_pair(_id, this));
|
|
methodInfo.env->DeleteLocalRef(jStr);
|
|
methodInfo.env->DeleteLocalRef(jObj);
|
|
methodInfo.env->DeleteLocalRef(methodInfo.classID);
|
|
}
|
|
}
|
|
|
|
DownloaderAndroid::~DownloaderAndroid()
|
|
{
|
|
if(_impl != nullptr)
|
|
{
|
|
JniMethodInfo methodInfo;
|
|
if (JniHelper::getStaticMethodInfo(methodInfo,
|
|
JCLS_DOWNLOADER,
|
|
"cancelAllRequests",
|
|
"(" JARG_DOWNLOADER ")V"))
|
|
{
|
|
methodInfo.env->CallStaticVoidMethod(
|
|
methodInfo.classID,
|
|
methodInfo.methodID,
|
|
_impl
|
|
);
|
|
methodInfo.env->DeleteLocalRef(methodInfo.classID);
|
|
}
|
|
sDownloaderMap.erase(_id);
|
|
JniHelper::getEnv()->DeleteGlobalRef(_impl);
|
|
}
|
|
DLLOG("Destruct DownloaderAndroid: %p", this);
|
|
}
|
|
|
|
IDownloadTask *DownloaderAndroid::createCoTask(std::shared_ptr<const DownloadTask>& task)
|
|
{
|
|
DownloadTaskAndroid *coTask = new DownloadTaskAndroid;
|
|
coTask->task = task;
|
|
|
|
JniMethodInfo methodInfo;
|
|
if (JniHelper::getStaticMethodInfo(methodInfo,
|
|
JCLS_DOWNLOADER,
|
|
"createTask",
|
|
"(" JARG_DOWNLOADER "I" JARG_STR JARG_STR")V"))
|
|
{
|
|
jstring jstrURL = methodInfo.env->NewStringUTF(task->requestURL.c_str());
|
|
jstring jstrPath= methodInfo.env->NewStringUTF(task->storagePath.c_str());
|
|
methodInfo.env->CallStaticVoidMethod(methodInfo.classID, methodInfo.methodID, _impl, coTask->id, jstrURL, jstrPath);
|
|
methodInfo.env->DeleteLocalRef(jstrURL);
|
|
methodInfo.env->DeleteLocalRef(jstrPath);
|
|
methodInfo.env->DeleteLocalRef(methodInfo.classID);
|
|
}
|
|
|
|
DLLOG("DownloaderAndroid::createCoTask id: %d", coTask->id);
|
|
_taskMap.insert(make_pair(coTask->id, coTask));
|
|
return coTask;
|
|
}
|
|
|
|
void DownloaderAndroid::_onProcess(int taskId, int64_t dl, int64_t dlNow, int64_t dlTotal)
|
|
{
|
|
DLLOG("DownloaderAndroid::onProgress(taskId: %d, dl: %lld, dlnow: %lld, dltotal: %lld)", taskId, dl, dlNow, dlTotal);
|
|
auto iter = _taskMap.find(taskId);
|
|
if (_taskMap.end() == iter)
|
|
{
|
|
DLLOG("DownloaderAndroid::onProgress can't find task with id: %d", taskId);
|
|
return;
|
|
}
|
|
DownloadTaskAndroid *coTask = iter->second;
|
|
function<int64_t(void*, int64_t)> transferDataToBuffer;
|
|
onTaskProgress(*coTask->task, dl, dlNow, dlTotal, transferDataToBuffer);
|
|
}
|
|
|
|
void DownloaderAndroid::_onFinish(int taskId, int errCode, const char *errStr, vector<unsigned char>& data)
|
|
{
|
|
DLLOG("DownloaderAndroid::_onFinish(taskId: %d, errCode: %d, errStr: %s)", taskId, errCode, (errStr)?errStr:"null");
|
|
auto iter = _taskMap.find(taskId);
|
|
if (_taskMap.end() == iter)
|
|
{
|
|
DLLOG("DownloaderAndroid::_onFinish can't find task with id: %d", taskId);
|
|
return;
|
|
}
|
|
DownloadTaskAndroid *coTask = iter->second;
|
|
string str = (errStr ? errStr : "");
|
|
_taskMap.erase(iter);
|
|
onTaskFinish(*coTask->task,
|
|
errStr ? DownloadTask::ERROR_IMPL_INTERNAL : DownloadTask::ERROR_NO_ERROR,
|
|
errCode,
|
|
str,
|
|
data
|
|
);
|
|
coTask->task.reset();
|
|
}
|
|
|
|
|
|
void _preloadJavaDownloaderClass()
|
|
{
|
|
if(!_registered)
|
|
{
|
|
_registered = _registerNativeMethods(JniHelper::getEnv());
|
|
}
|
|
}
|
|
}
|
|
} // namespace cocos2d::network
|
|
|
|
static void _nativeOnProgress(JNIEnv *env, jclass clazz, jint id, jint taskId, jlong dl, jlong dlnow, jlong dltotal)
|
|
{
|
|
DLLOG("_nativeOnProgress(id: %d, taskId: %d, dl: %lld, dlnow: %lld, dltotal: %lld)", id, taskId, dl, dlnow, dltotal);
|
|
auto iter = sDownloaderMap.find(id);
|
|
if (sDownloaderMap.end() == iter)
|
|
{
|
|
DLLOG("_nativeOnProgress can't find downloader by key: %p for task: %d", clazz, id);
|
|
return;
|
|
}
|
|
cocos2d::network::DownloaderAndroid *downloader = iter->second;
|
|
downloader->_onProcess((int)taskId, (int64_t)dl, (int64_t)dlnow, (int64_t)dltotal);
|
|
}
|
|
|
|
static void _nativeOnFinish(JNIEnv *env, jclass clazz, jint id, jint taskId, jint errCode, jstring errStr, jbyteArray data)
|
|
{
|
|
DLLOG("_nativeOnFinish(id: %d, taskId: %d)", id, taskId);
|
|
auto iter = sDownloaderMap.find(id);
|
|
if (sDownloaderMap.end() == iter)
|
|
{
|
|
DLLOG("_nativeOnFinish can't find downloader id: %d for task: %d", id, taskId);
|
|
return;
|
|
}
|
|
cocos2d::network::DownloaderAndroid *downloader = iter->second;
|
|
vector<unsigned char> buf;
|
|
if (errStr)
|
|
{
|
|
// failure
|
|
const char *nativeErrStr = env->GetStringUTFChars(errStr, JNI_FALSE);
|
|
downloader->_onFinish((int)taskId, (int)errCode, nativeErrStr, buf);
|
|
env->ReleaseStringUTFChars(errStr, nativeErrStr);
|
|
return;
|
|
}
|
|
|
|
// success
|
|
if (data)
|
|
{
|
|
int len = env->GetArrayLength(data);
|
|
if (len)
|
|
{
|
|
buf.reserve(len);
|
|
buf.resize(len);
|
|
env->GetByteArrayRegion(data, 0, len, reinterpret_cast<jbyte*>(buf.data()));
|
|
}
|
|
}
|
|
downloader->_onFinish((int)taskId, (int)errCode, nullptr, buf);
|
|
}
|
|
|
|
static JNINativeMethod sMethodTable[] = {
|
|
{ "nativeOnProgress", "(IIJJJ)V", (void*)_nativeOnProgress },
|
|
{ "nativeOnFinish", "(III" JARG_STR "[B)V", (void*)_nativeOnFinish },
|
|
};
|
|
|
|
static bool _registerNativeMethods(JNIEnv* env)
|
|
{
|
|
jclass clazz = env->FindClass(JCLS_DOWNLOADER);
|
|
if (clazz == NULL)
|
|
{
|
|
DLLOG("_registerNativeMethods: can't find java class:%s", JARG_DOWNLOADER);
|
|
return false;
|
|
}
|
|
if (JNI_OK != env->RegisterNatives(clazz, sMethodTable, sizeof(sMethodTable) / sizeof(sMethodTable[0])))
|
|
{
|
|
DLLOG("_registerNativeMethods: failed");
|
|
if (env->ExceptionCheck())
|
|
{
|
|
env->ExceptionClear();
|
|
}
|
|
return false;
|
|
}
|
|
return true;
|
|
} |