mirror of https://github.com/axmolengine/axmol.git
1094 lines
33 KiB
C++
1094 lines
33 KiB
C++
/****************************************************************************
|
|
Copyright (c) 2012 greathqy
|
|
Copyright (c) 2012 cocos2d-x.org
|
|
Copyright (c) 2013-2016 Chukong Technologies Inc.
|
|
Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
|
|
|
|
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 "platform/CCPlatformConfig.h"
|
|
#if (CC_TARGET_PLATFORM == CC_PLATFORM_ANDROID)
|
|
|
|
#include "network/HttpClient.h"
|
|
|
|
#include <queue>
|
|
#include <sstream>
|
|
#include <stdio.h>
|
|
#include <errno.h>
|
|
|
|
#include "base/CCDirector.h"
|
|
#include "platform/CCFileUtils.h"
|
|
#include "platform/android/jni/JniHelper.h"
|
|
|
|
#include "base/ccUTF8.h"
|
|
|
|
NS_CC_BEGIN
|
|
|
|
namespace network {
|
|
|
|
typedef std::vector<std::string> HttpRequestHeaders;
|
|
typedef HttpRequestHeaders::iterator HttpRequestHeadersIter;
|
|
typedef std::vector<std::string> HttpCookies;
|
|
typedef HttpCookies::iterator HttpCookiesIter;
|
|
|
|
static HttpClient* _httpClient = nullptr; // pointer to singleton
|
|
|
|
|
|
struct CookiesInfo
|
|
{
|
|
std::string domain;
|
|
bool tailmatch;
|
|
std::string path;
|
|
bool secure;
|
|
std::string key;
|
|
std::string value;
|
|
std::string expires;
|
|
};
|
|
|
|
//static size_t writeData(void *ptr, size_t size, size_t nmemb, void *stream)
|
|
static size_t writeData(void* buffer, size_t sizes, HttpResponse* response)
|
|
{
|
|
std::vector<char> * recvBuffer = (std::vector<char>*)response->getResponseData();
|
|
recvBuffer->clear();
|
|
recvBuffer->insert(recvBuffer->end(), (char*)buffer, ((char*)buffer) + sizes);
|
|
return sizes;
|
|
}
|
|
|
|
//static size_t writeHeaderData(void *ptr, size_t size, size_t nmemb, void *stream)
|
|
size_t writeHeaderData(void* buffer, size_t sizes,HttpResponse* response)
|
|
{
|
|
std::vector<char> * recvBuffer = (std::vector<char>*) response->getResponseHeader();
|
|
recvBuffer->clear();
|
|
recvBuffer->insert(recvBuffer->end(), (char*)buffer, (char*)buffer + sizes);
|
|
return sizes;
|
|
}
|
|
|
|
class HttpURLConnection
|
|
{
|
|
public:
|
|
HttpURLConnection(HttpClient* httpClient)
|
|
:_client(httpClient)
|
|
,_httpURLConnection(nullptr)
|
|
,_requestmethod("")
|
|
,_responseCookies("")
|
|
,_cookieFileName("")
|
|
,_contentLength(0)
|
|
{
|
|
|
|
}
|
|
|
|
~HttpURLConnection()
|
|
{
|
|
if(_httpURLConnection != nullptr)
|
|
{
|
|
JniHelper::getEnv()->DeleteGlobalRef(_httpURLConnection);
|
|
}
|
|
}
|
|
|
|
void setRequestMethod(const char* method)
|
|
{
|
|
_requestmethod = method;
|
|
|
|
JniMethodInfo methodInfo;
|
|
if (JniHelper::getStaticMethodInfo(methodInfo,
|
|
"org.cocos2dx.lib.Cocos2dxHttpURLConnection",
|
|
"setRequestMethod",
|
|
"(Ljava/net/HttpURLConnection;Ljava/lang/String;)V"))
|
|
{
|
|
jstring jstr = methodInfo.env->NewStringUTF(_requestmethod.c_str());
|
|
methodInfo.env->CallStaticVoidMethod(
|
|
methodInfo.classID, methodInfo.methodID, _httpURLConnection, jstr);
|
|
methodInfo.env->DeleteLocalRef(jstr);
|
|
methodInfo.env->DeleteLocalRef(methodInfo.classID);
|
|
}
|
|
}
|
|
|
|
bool init(HttpRequest* request)
|
|
{
|
|
createHttpURLConnection(request->getUrl());
|
|
if(!configure())
|
|
{
|
|
return false;
|
|
}
|
|
/* get custom header data (if set) */
|
|
HttpRequestHeaders headers=request->getHeaders();
|
|
if(!headers.empty())
|
|
{
|
|
/* append custom headers one by one */
|
|
for (auto& header : headers)
|
|
{
|
|
int len = header.length();
|
|
int pos = header.find(':');
|
|
if (-1 == pos || pos >= len)
|
|
{
|
|
continue;
|
|
}
|
|
std::string str1 = header.substr(0, pos);
|
|
std::string str2 = header.substr(pos + 1, len - pos - 1);
|
|
addRequestHeader(str1.c_str(), str2.c_str());
|
|
}
|
|
}
|
|
|
|
addCookiesForRequestHeader();
|
|
|
|
return true;
|
|
}
|
|
|
|
int connect()
|
|
{
|
|
int suc = 0;
|
|
JniMethodInfo methodInfo;
|
|
if (JniHelper::getStaticMethodInfo(methodInfo,
|
|
"org.cocos2dx.lib.Cocos2dxHttpURLConnection",
|
|
"connect",
|
|
"(Ljava/net/HttpURLConnection;)I"))
|
|
{
|
|
suc = methodInfo.env->CallStaticIntMethod(
|
|
methodInfo.classID, methodInfo.methodID, _httpURLConnection);
|
|
methodInfo.env->DeleteLocalRef(methodInfo.classID);
|
|
}
|
|
|
|
return suc;
|
|
}
|
|
|
|
void disconnect()
|
|
{
|
|
JniMethodInfo methodInfo;
|
|
if (JniHelper::getStaticMethodInfo(methodInfo,
|
|
"org.cocos2dx.lib.Cocos2dxHttpURLConnection",
|
|
"disconnect",
|
|
"(Ljava/net/HttpURLConnection;)V"))
|
|
{
|
|
methodInfo.env->CallStaticVoidMethod(
|
|
methodInfo.classID, methodInfo.methodID, _httpURLConnection);
|
|
methodInfo.env->DeleteLocalRef(methodInfo.classID);
|
|
}
|
|
}
|
|
|
|
int getResponseCode()
|
|
{
|
|
int responseCode = 0;
|
|
JniMethodInfo methodInfo;
|
|
if (JniHelper::getStaticMethodInfo(methodInfo,
|
|
"org.cocos2dx.lib.Cocos2dxHttpURLConnection",
|
|
"getResponseCode",
|
|
"(Ljava/net/HttpURLConnection;)I"))
|
|
{
|
|
responseCode = methodInfo.env->CallStaticIntMethod(
|
|
methodInfo.classID, methodInfo.methodID, _httpURLConnection);
|
|
methodInfo.env->DeleteLocalRef(methodInfo.classID);
|
|
}
|
|
|
|
return responseCode;
|
|
}
|
|
|
|
char* getResponseMessage()
|
|
{
|
|
char* message = nullptr;
|
|
JniMethodInfo methodInfo;
|
|
if (JniHelper::getStaticMethodInfo(methodInfo,
|
|
"org.cocos2dx.lib.Cocos2dxHttpURLConnection",
|
|
"getResponseMessage",
|
|
"(Ljava/net/HttpURLConnection;)Ljava/lang/String;"))
|
|
{
|
|
jobject jObj = methodInfo.env->CallStaticObjectMethod(
|
|
methodInfo.classID, methodInfo.methodID, _httpURLConnection);
|
|
message = getBufferFromJString((jstring)jObj, methodInfo.env);
|
|
if (nullptr != jObj)
|
|
{
|
|
methodInfo.env->DeleteLocalRef(jObj);
|
|
}
|
|
methodInfo.env->DeleteLocalRef(methodInfo.classID);
|
|
}
|
|
|
|
return message;
|
|
}
|
|
|
|
void sendRequest(HttpRequest* request)
|
|
{
|
|
JniMethodInfo methodInfo;
|
|
if (JniHelper::getStaticMethodInfo(methodInfo,
|
|
"org.cocos2dx.lib.Cocos2dxHttpURLConnection",
|
|
"sendRequest",
|
|
"(Ljava/net/HttpURLConnection;[B)V"))
|
|
{
|
|
|
|
jbyteArray bytearray;
|
|
ssize_t dataSize = request->getRequestDataSize();
|
|
bytearray = methodInfo.env->NewByteArray(dataSize);
|
|
methodInfo.env->SetByteArrayRegion(bytearray, 0, dataSize, (const jbyte*)request->getRequestData());
|
|
methodInfo.env->CallStaticVoidMethod(
|
|
methodInfo.classID, methodInfo.methodID, _httpURLConnection, bytearray);
|
|
methodInfo.env->DeleteLocalRef(bytearray);
|
|
methodInfo.env->DeleteLocalRef(methodInfo.classID);
|
|
}
|
|
}
|
|
|
|
size_t saveResponseCookies(const char* responseCookies, size_t count)
|
|
{
|
|
if (nullptr == responseCookies || strlen(responseCookies) == 0 || count == 0)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
if (_cookieFileName.empty())
|
|
{
|
|
_cookieFileName = FileUtils::getInstance()->getWritablePath() + "cookieFile.txt";
|
|
}
|
|
|
|
FILE* fp = fopen(_cookieFileName.c_str(), "w");
|
|
if (nullptr == fp)
|
|
{
|
|
CCLOG("can't create or open response cookie files");
|
|
return 0;
|
|
}
|
|
|
|
fwrite(responseCookies, sizeof(char), count, fp);
|
|
|
|
fclose(fp);
|
|
|
|
return count;
|
|
}
|
|
|
|
char* getResponseHeaders()
|
|
{
|
|
char* headers = nullptr;
|
|
JniMethodInfo methodInfo;
|
|
if (JniHelper::getStaticMethodInfo(methodInfo,
|
|
"org.cocos2dx.lib.Cocos2dxHttpURLConnection",
|
|
"getResponseHeaders",
|
|
"(Ljava/net/HttpURLConnection;)Ljava/lang/String;"))
|
|
{
|
|
jobject jObj = methodInfo.env->CallStaticObjectMethod(
|
|
methodInfo.classID, methodInfo.methodID, _httpURLConnection);
|
|
headers = getBufferFromJString((jstring)jObj, methodInfo.env);
|
|
if (nullptr != jObj) {
|
|
methodInfo.env->DeleteLocalRef(jObj);
|
|
}
|
|
methodInfo.env->DeleteLocalRef(methodInfo.classID);
|
|
}
|
|
|
|
return headers;
|
|
|
|
}
|
|
|
|
char* getResponseContent(HttpResponse* response)
|
|
{
|
|
if (nullptr == response)
|
|
{
|
|
return nullptr;
|
|
}
|
|
|
|
char* content = nullptr;
|
|
JniMethodInfo methodInfo;
|
|
if (JniHelper::getStaticMethodInfo(methodInfo,
|
|
"org.cocos2dx.lib.Cocos2dxHttpURLConnection",
|
|
"getResponseContent",
|
|
"(Ljava/net/HttpURLConnection;)[B"))
|
|
{
|
|
jobject jObj = methodInfo.env->CallStaticObjectMethod(
|
|
methodInfo.classID, methodInfo.methodID, _httpURLConnection);
|
|
|
|
_contentLength = getCStrFromJByteArray((jbyteArray)jObj, methodInfo.env, &content);
|
|
if (nullptr != jObj)
|
|
{
|
|
methodInfo.env->DeleteLocalRef(jObj);
|
|
}
|
|
methodInfo.env->DeleteLocalRef(methodInfo.classID);
|
|
}
|
|
|
|
return content;
|
|
}
|
|
|
|
char* getResponseHeaderByKey(const char* key)
|
|
{
|
|
char* value = nullptr;
|
|
JniMethodInfo methodInfo;
|
|
if (JniHelper::getStaticMethodInfo(methodInfo,
|
|
"org.cocos2dx.lib.Cocos2dxHttpURLConnection",
|
|
"getResponseHeaderByKey",
|
|
"(Ljava/net/HttpURLConnection;Ljava/lang/String;)Ljava/lang/String;"))
|
|
{
|
|
jstring jstrKey = methodInfo.env->NewStringUTF(key);
|
|
jobject jObj = methodInfo.env->CallStaticObjectMethod(
|
|
methodInfo.classID, methodInfo.methodID, _httpURLConnection, jstrKey);
|
|
value = getBufferFromJString((jstring)jObj, methodInfo.env);
|
|
methodInfo.env->DeleteLocalRef(jstrKey);
|
|
if (nullptr != jObj) {
|
|
methodInfo.env->DeleteLocalRef(jObj);
|
|
}
|
|
methodInfo.env->DeleteLocalRef(methodInfo.classID);
|
|
}
|
|
|
|
return value;
|
|
}
|
|
|
|
int getResponseHeaderByKeyInt(const char* key)
|
|
{
|
|
int contentLength = 0;
|
|
JniMethodInfo methodInfo;
|
|
if (JniHelper::getStaticMethodInfo(methodInfo,
|
|
"org.cocos2dx.lib.Cocos2dxHttpURLConnection",
|
|
"getResponseHeaderByKeyInt",
|
|
"(Ljava/net/HttpURLConnection;Ljava/lang/String;)I"))
|
|
{
|
|
jstring jstrKey = methodInfo.env->NewStringUTF(key);
|
|
contentLength = methodInfo.env->CallStaticIntMethod(
|
|
methodInfo.classID, methodInfo.methodID, _httpURLConnection, jstrKey);
|
|
methodInfo.env->DeleteLocalRef(jstrKey);
|
|
methodInfo.env->DeleteLocalRef(methodInfo.classID);
|
|
}
|
|
|
|
return contentLength;
|
|
}
|
|
|
|
char* getResponseHeaderByIdx(int idx)
|
|
{
|
|
char* header = nullptr;
|
|
JniMethodInfo methodInfo;
|
|
if (JniHelper::getStaticMethodInfo(methodInfo,
|
|
"org.cocos2dx.lib.Cocos2dxHttpURLConnection",
|
|
"getResponseHeaderByIdx",
|
|
"(Ljava/net/HttpURLConnection;I)Ljava/lang/String;"))
|
|
{
|
|
jobject jObj = methodInfo.env->CallStaticObjectMethod(
|
|
methodInfo.classID, methodInfo.methodID, _httpURLConnection, idx);
|
|
header = getBufferFromJString((jstring)jObj, methodInfo.env);
|
|
if (nullptr != jObj) {
|
|
methodInfo.env->DeleteLocalRef(jObj);
|
|
}
|
|
methodInfo.env->DeleteLocalRef(methodInfo.classID);
|
|
}
|
|
|
|
return header;
|
|
}
|
|
|
|
const std::string& getCookieFileName() const
|
|
{
|
|
return _cookieFileName;
|
|
}
|
|
|
|
void setCookieFileName(std::string& filename)
|
|
{
|
|
_cookieFileName = filename;
|
|
}
|
|
|
|
int getContentLength()
|
|
{
|
|
return _contentLength;
|
|
}
|
|
|
|
private:
|
|
void createHttpURLConnection(const std::string& url)
|
|
{
|
|
JniMethodInfo methodInfo;
|
|
if (JniHelper::getStaticMethodInfo(methodInfo,
|
|
"org.cocos2dx.lib.Cocos2dxHttpURLConnection",
|
|
"createHttpURLConnection",
|
|
"(Ljava/lang/String;)Ljava/net/HttpURLConnection;"))
|
|
{
|
|
_url = url;
|
|
jstring jurl = methodInfo.env->NewStringUTF(url.c_str());
|
|
jobject jObj = methodInfo.env->CallStaticObjectMethod(methodInfo.classID, methodInfo.methodID, jurl);
|
|
_httpURLConnection = methodInfo.env->NewGlobalRef(jObj);
|
|
methodInfo.env->DeleteLocalRef(jurl);
|
|
methodInfo.env->DeleteLocalRef(jObj);
|
|
methodInfo.env->DeleteLocalRef(methodInfo.classID);
|
|
}
|
|
}
|
|
|
|
void addRequestHeader(const char* key, const char* value)
|
|
{
|
|
JniMethodInfo methodInfo;
|
|
if (JniHelper::getStaticMethodInfo(methodInfo,
|
|
"org.cocos2dx.lib.Cocos2dxHttpURLConnection",
|
|
"addRequestHeader",
|
|
"(Ljava/net/HttpURLConnection;Ljava/lang/String;Ljava/lang/String;)V"))
|
|
{
|
|
jstring jstrKey = methodInfo.env->NewStringUTF(key);
|
|
jstring jstrVal = methodInfo.env->NewStringUTF(value);
|
|
methodInfo.env->CallStaticVoidMethod(
|
|
methodInfo.classID, methodInfo.methodID, _httpURLConnection, jstrKey, jstrVal);
|
|
methodInfo.env->DeleteLocalRef(jstrKey);
|
|
methodInfo.env->DeleteLocalRef(jstrVal);
|
|
methodInfo.env->DeleteLocalRef(methodInfo.classID);
|
|
}
|
|
}
|
|
|
|
void addCookiesForRequestHeader()
|
|
{
|
|
if(_client->getCookieFilename().empty())
|
|
{
|
|
return;
|
|
}
|
|
|
|
_cookieFileName = FileUtils::getInstance()->fullPathForFilename(_client->getCookieFilename());
|
|
|
|
std::string cookiesInfo = FileUtils::getInstance()->getStringFromFile(_cookieFileName);
|
|
|
|
if (cookiesInfo.empty())
|
|
return;
|
|
|
|
HttpCookies cookiesVec;
|
|
cookiesVec.clear();
|
|
|
|
std::stringstream stream(cookiesInfo);
|
|
std::string item;
|
|
while (std::getline(stream, item, '\n'))
|
|
{
|
|
cookiesVec.push_back(item);
|
|
}
|
|
|
|
if (cookiesVec.empty())
|
|
return;
|
|
|
|
std::vector<CookiesInfo> cookiesInfoVec;
|
|
cookiesInfoVec.clear();
|
|
|
|
for (auto& cookies : cookiesVec)
|
|
{
|
|
if (cookies.find("#HttpOnly_") != std::string::npos)
|
|
{
|
|
cookies = cookies.substr(10);
|
|
}
|
|
|
|
if(cookies.at(0) == '#')
|
|
continue;
|
|
|
|
CookiesInfo co;
|
|
std::stringstream streamInfo(cookies);
|
|
std::string item;
|
|
std::vector<std::string> elems;
|
|
|
|
while (std::getline(streamInfo, item, '\t'))
|
|
{
|
|
elems.push_back(item);
|
|
}
|
|
|
|
co.domain = elems[0];
|
|
if (co.domain.at(0) == '.')
|
|
{
|
|
co.domain = co.domain.substr(1);
|
|
}
|
|
co.tailmatch = strcmp("TRUE", elems.at(1).c_str())?true: false;
|
|
co.path = elems.at(2);
|
|
co.secure = strcmp("TRUE", elems.at(3).c_str())?true: false;
|
|
co.expires = elems.at(4);
|
|
co.key = elems.at(5);
|
|
co.value = elems.at(6);
|
|
cookiesInfoVec.push_back(co);
|
|
}
|
|
|
|
std::string sendCookiesInfo = "";
|
|
int cookiesCount = 0;
|
|
for (auto& cookieInfo : cookiesInfoVec)
|
|
{
|
|
if (_url.find(cookieInfo.domain) != std::string::npos)
|
|
{
|
|
std::string keyValue = cookieInfo.key;
|
|
keyValue.append("=");
|
|
keyValue.append(cookieInfo.value);
|
|
if (cookiesCount != 0)
|
|
sendCookiesInfo.append(";");
|
|
|
|
sendCookiesInfo.append(keyValue);
|
|
}
|
|
cookiesCount++;
|
|
}
|
|
|
|
//set Cookie
|
|
addRequestHeader("Cookie",sendCookiesInfo.c_str());
|
|
}
|
|
|
|
void setReadAndConnectTimeout(int readMiliseconds, int connectMiliseconds)
|
|
{
|
|
JniMethodInfo methodInfo;
|
|
if (JniHelper::getStaticMethodInfo(methodInfo,
|
|
"org.cocos2dx.lib.Cocos2dxHttpURLConnection",
|
|
"setReadAndConnectTimeout",
|
|
"(Ljava/net/HttpURLConnection;II)V"))
|
|
{
|
|
methodInfo.env->CallStaticVoidMethod(
|
|
methodInfo.classID, methodInfo.methodID, _httpURLConnection, readMiliseconds, connectMiliseconds);
|
|
methodInfo.env->DeleteLocalRef(methodInfo.classID);
|
|
}
|
|
}
|
|
|
|
void setVerifySSL()
|
|
{
|
|
if(_client->getSSLVerification().empty())
|
|
return;
|
|
|
|
std::string fullpath = FileUtils::getInstance()->fullPathForFilename(_client->getSSLVerification());
|
|
|
|
JniMethodInfo methodInfo;
|
|
if (JniHelper::getStaticMethodInfo(methodInfo,
|
|
"org.cocos2dx.lib.Cocos2dxHttpURLConnection",
|
|
"setVerifySSL",
|
|
"(Ljava/net/HttpURLConnection;Ljava/lang/String;)V"))
|
|
{
|
|
jstring jstrfullpath = methodInfo.env->NewStringUTF(fullpath.c_str());
|
|
methodInfo.env->CallStaticVoidMethod(
|
|
methodInfo.classID, methodInfo.methodID, _httpURLConnection, jstrfullpath);
|
|
methodInfo.env->DeleteLocalRef(jstrfullpath);
|
|
methodInfo.env->DeleteLocalRef(methodInfo.classID);
|
|
}
|
|
}
|
|
|
|
bool configure()
|
|
{
|
|
if(nullptr == _httpURLConnection)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
if(nullptr == _client)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
setReadAndConnectTimeout(_client->getTimeoutForRead() * 1000, _client->getTimeoutForConnect() * 1000);
|
|
|
|
setVerifySSL();
|
|
|
|
return true;
|
|
}
|
|
|
|
char* getBufferFromJString(jstring jstr, JNIEnv* env)
|
|
{
|
|
if (nullptr == jstr)
|
|
{
|
|
return nullptr;
|
|
}
|
|
std::string strValue = cocos2d::StringUtils::getStringUTFCharsJNI(env, jstr);
|
|
return strdup(strValue.c_str());
|
|
}
|
|
|
|
int getCStrFromJByteArray(jbyteArray jba, JNIEnv* env, char** ppData)
|
|
{
|
|
if (nullptr == jba)
|
|
{
|
|
*ppData = nullptr;
|
|
return 0;
|
|
}
|
|
|
|
int len = env->GetArrayLength(jba);
|
|
char* str = (char*)malloc(sizeof(char)*len);
|
|
env->GetByteArrayRegion(jba, 0, len, (jbyte*)str);
|
|
|
|
*ppData = str;
|
|
return len;
|
|
}
|
|
|
|
const std::string& getCookieString() const
|
|
{
|
|
return _responseCookies;
|
|
}
|
|
private:
|
|
HttpClient* _client;
|
|
jobject _httpURLConnection;
|
|
std::string _requestmethod;
|
|
std::string _responseCookies;
|
|
std::string _cookieFileName;
|
|
std::string _url;
|
|
int _contentLength;
|
|
};
|
|
|
|
// Process Response
|
|
void HttpClient::processResponse(HttpResponse* response, char* responseMessage)
|
|
{
|
|
auto request = response->getHttpRequest();
|
|
HttpRequest::Type requestType = request->getRequestType();
|
|
|
|
if (HttpRequest::Type::GET != requestType &&
|
|
HttpRequest::Type::POST != requestType &&
|
|
HttpRequest::Type::PUT != requestType &&
|
|
HttpRequest::Type::DELETE != requestType)
|
|
{
|
|
CCASSERT(true, "CCHttpClient: unknown request type, only GET、POST、PUT、DELETE are supported");
|
|
return;
|
|
}
|
|
|
|
long responseCode = -1;
|
|
int retValue = 0;
|
|
|
|
HttpURLConnection urlConnection(this);
|
|
if(!urlConnection.init(request))
|
|
{
|
|
response->setSucceed(false);
|
|
response->setErrorBuffer("HttpURLConnetcion init failed");
|
|
return;
|
|
}
|
|
|
|
switch (requestType)
|
|
{
|
|
case HttpRequest::Type::GET:
|
|
urlConnection.setRequestMethod("GET");
|
|
break;
|
|
|
|
case HttpRequest::Type::POST:
|
|
urlConnection.setRequestMethod("POST");
|
|
break;
|
|
|
|
case HttpRequest::Type::PUT:
|
|
urlConnection.setRequestMethod("PUT");
|
|
break;
|
|
|
|
case HttpRequest::Type::DELETE:
|
|
urlConnection.setRequestMethod("DELETE");
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
|
|
int suc = urlConnection.connect();
|
|
if (0 != suc)
|
|
{
|
|
response->setSucceed(false);
|
|
response->setErrorBuffer("connect failed");
|
|
response->setResponseCode(responseCode);
|
|
return;
|
|
}
|
|
|
|
if (HttpRequest::Type::POST == requestType ||
|
|
HttpRequest::Type::PUT == requestType)
|
|
{
|
|
urlConnection.sendRequest(request);
|
|
}
|
|
|
|
responseCode = urlConnection.getResponseCode();
|
|
|
|
if (0 == responseCode)
|
|
{
|
|
response->setSucceed(false);
|
|
response->setErrorBuffer("connect failed");
|
|
response->setResponseCode(-1);
|
|
return;
|
|
}
|
|
|
|
char* headers = urlConnection.getResponseHeaders();
|
|
if (nullptr != headers)
|
|
{
|
|
writeHeaderData(headers, strlen(headers), response);
|
|
}
|
|
free(headers);
|
|
|
|
//get and save cookies
|
|
char* cookiesInfo = urlConnection.getResponseHeaderByKey("set-cookie");
|
|
if (nullptr != cookiesInfo)
|
|
{
|
|
urlConnection.saveResponseCookies(cookiesInfo, strlen(cookiesInfo));
|
|
}
|
|
free(cookiesInfo);
|
|
|
|
//content len
|
|
int contentLength = urlConnection.getResponseHeaderByKeyInt("Content-Length");
|
|
char* contentInfo = urlConnection.getResponseContent(response);
|
|
if (nullptr != contentInfo)
|
|
{
|
|
std::vector<char> * recvBuffer = (std::vector<char>*)response->getResponseData();
|
|
recvBuffer->clear();
|
|
recvBuffer->insert(recvBuffer->begin(), (char*)contentInfo, ((char*)contentInfo) + urlConnection.getContentLength());
|
|
}
|
|
free(contentInfo);
|
|
|
|
char *messageInfo = urlConnection.getResponseMessage();
|
|
if (messageInfo)
|
|
{
|
|
strncpy(responseMessage, messageInfo, RESPONSE_BUFFER_SIZE-1);
|
|
free(messageInfo);
|
|
}
|
|
|
|
urlConnection.disconnect();
|
|
|
|
// write data to HttpResponse
|
|
response->setResponseCode(responseCode);
|
|
|
|
if (responseCode == -1)
|
|
{
|
|
response->setSucceed(false);
|
|
response->setErrorBuffer(responseMessage);
|
|
}
|
|
else
|
|
{
|
|
response->setSucceed(true);
|
|
}
|
|
}
|
|
|
|
// Worker thread
|
|
void HttpClient::networkThread()
|
|
{
|
|
increaseThreadCount();
|
|
|
|
while (true)
|
|
{
|
|
HttpRequest *request;
|
|
|
|
// step 1: send http request if the requestQueue isn't empty
|
|
{
|
|
std::lock_guard<std::mutex> lock(_requestQueueMutex);
|
|
while (_requestQueue.empty()) {
|
|
_sleepCondition.wait(_requestQueueMutex);
|
|
}
|
|
request = _requestQueue.at(0);
|
|
_requestQueue.erase(0);
|
|
}
|
|
|
|
if (request == _requestSentinel) {
|
|
break;
|
|
}
|
|
|
|
// Create a HttpResponse object, the default setting is http access failed
|
|
HttpResponse *response = new (std::nothrow) HttpResponse(request);
|
|
processResponse(response, _responseMessage);
|
|
|
|
// add response packet into queue
|
|
_responseQueueMutex.lock();
|
|
_responseQueue.pushBack(response);
|
|
_responseQueueMutex.unlock();
|
|
|
|
_schedulerMutex.lock();
|
|
if (nullptr != _scheduler)
|
|
{
|
|
_scheduler->performFunctionInCocosThread(CC_CALLBACK_0(HttpClient::dispatchResponseCallbacks, this));
|
|
}
|
|
_schedulerMutex.unlock();
|
|
}
|
|
|
|
// cleanup: if worker thread received quit signal, clean up un-completed request queue
|
|
_requestQueueMutex.lock();
|
|
_requestQueue.clear();
|
|
_requestQueueMutex.unlock();
|
|
|
|
_responseQueueMutex.lock();
|
|
_responseQueue.clear();
|
|
_responseQueueMutex.unlock();
|
|
|
|
decreaseThreadCountAndMayDeleteThis();
|
|
}
|
|
|
|
// Worker thread
|
|
void HttpClient::networkThreadAlone(HttpRequest* request, HttpResponse* response)
|
|
{
|
|
increaseThreadCount();
|
|
|
|
char responseMessage[RESPONSE_BUFFER_SIZE] = { 0 };
|
|
processResponse(response, responseMessage);
|
|
|
|
_schedulerMutex.lock();
|
|
if (_scheduler != nullptr)
|
|
{
|
|
_scheduler->performFunctionInCocosThread([this, response, request]{
|
|
const ccHttpRequestCallback& callback = request->getCallback();
|
|
Ref* pTarget = request->getTarget();
|
|
SEL_HttpResponse pSelector = request->getSelector();
|
|
|
|
if (callback != nullptr)
|
|
{
|
|
callback(this, response);
|
|
}
|
|
else if (pTarget && pSelector)
|
|
{
|
|
(pTarget->*pSelector)(this, response);
|
|
}
|
|
response->release();
|
|
// do not release in other thread
|
|
request->release();
|
|
});
|
|
}
|
|
_schedulerMutex.unlock();
|
|
decreaseThreadCountAndMayDeleteThis();
|
|
}
|
|
|
|
// HttpClient implementation
|
|
HttpClient* HttpClient::getInstance()
|
|
{
|
|
if (_httpClient == nullptr)
|
|
{
|
|
_httpClient = new (std::nothrow) HttpClient();
|
|
}
|
|
|
|
return _httpClient;
|
|
}
|
|
|
|
void HttpClient::destroyInstance()
|
|
{
|
|
if (_httpClient == nullptr)
|
|
{
|
|
CCLOG("HttpClient singleton is nullptr");
|
|
return;
|
|
}
|
|
|
|
CCLOG("HttpClient::destroyInstance ...");
|
|
|
|
auto thiz = _httpClient;
|
|
_httpClient = nullptr;
|
|
|
|
thiz->_scheduler->unscheduleAllForTarget(thiz);
|
|
|
|
thiz->_schedulerMutex.lock();
|
|
thiz->_scheduler = nullptr;
|
|
thiz->_schedulerMutex.unlock();
|
|
|
|
{
|
|
std::lock_guard<std::mutex> lock(thiz->_requestQueueMutex);
|
|
thiz->_requestQueue.pushBack(thiz->_requestSentinel);
|
|
}
|
|
thiz->_sleepCondition.notify_one();
|
|
|
|
thiz->decreaseThreadCountAndMayDeleteThis();
|
|
CCLOG("HttpClient::destroyInstance() finished!");
|
|
}
|
|
|
|
void HttpClient::enableCookies(const char* cookieFile)
|
|
{
|
|
std::lock_guard<std::mutex> lock(_cookieFileMutex);
|
|
if (cookieFile)
|
|
{
|
|
_cookieFilename = std::string(cookieFile);
|
|
}
|
|
else
|
|
{
|
|
_cookieFilename = (FileUtils::getInstance()->getWritablePath() + "cookieFile.txt");
|
|
}
|
|
}
|
|
|
|
void HttpClient::setSSLVerification(const std::string& caFile)
|
|
{
|
|
std::lock_guard<std::mutex> lock(_sslCaFileMutex);
|
|
_sslCaFilename = caFile;
|
|
}
|
|
|
|
HttpClient::HttpClient()
|
|
: _isInited(false)
|
|
, _timeoutForConnect(30)
|
|
, _timeoutForRead(60)
|
|
, _threadCount(0)
|
|
, _cookie(nullptr)
|
|
, _requestSentinel(new HttpRequest())
|
|
, _clearRequestPredicate(nullptr)
|
|
, _clearResponsePredicate(nullptr)
|
|
{
|
|
CCLOG("In the constructor of HttpClient!");
|
|
increaseThreadCount();
|
|
_scheduler = Director::getInstance()->getScheduler();
|
|
}
|
|
|
|
HttpClient::~HttpClient()
|
|
{
|
|
CCLOG("In the destructor of HttpClient!");
|
|
CC_SAFE_RELEASE(_requestSentinel);
|
|
}
|
|
|
|
//Lazy create semaphore & mutex & thread
|
|
bool HttpClient::lazyInitThreadSemaphore()
|
|
{
|
|
if (_isInited)
|
|
{
|
|
return true;
|
|
}
|
|
else
|
|
{
|
|
auto t = std::thread(CC_CALLBACK_0(HttpClient::networkThread, this));
|
|
t.detach();
|
|
_isInited = true;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
//Add a get task to queue
|
|
void HttpClient::send(HttpRequest* request)
|
|
{
|
|
if (!lazyInitThreadSemaphore())
|
|
{
|
|
return;
|
|
}
|
|
|
|
if (nullptr == request)
|
|
{
|
|
return;
|
|
}
|
|
|
|
request->retain();
|
|
|
|
_requestQueueMutex.lock();
|
|
_requestQueue.pushBack(request);
|
|
_requestQueueMutex.unlock();
|
|
|
|
// Notify thread start to work
|
|
_sleepCondition.notify_one();
|
|
}
|
|
|
|
void HttpClient::sendImmediate(HttpRequest* request)
|
|
{
|
|
if(nullptr == request)
|
|
{
|
|
return;
|
|
}
|
|
|
|
request->retain();
|
|
// Create a HttpResponse object, the default setting is http access failed
|
|
HttpResponse *response = new (std::nothrow) HttpResponse(request);
|
|
|
|
auto t = std::thread(&HttpClient::networkThreadAlone, this, request, response);
|
|
t.detach();
|
|
}
|
|
|
|
// Poll and notify main thread if responses exists in queue
|
|
void HttpClient::dispatchResponseCallbacks()
|
|
{
|
|
// log("CCHttpClient::dispatchResponseCallbacks is running");
|
|
//occurs when cocos thread fires but the network thread has already quited
|
|
HttpResponse* response = nullptr;
|
|
|
|
_responseQueueMutex.lock();
|
|
|
|
if (!_responseQueue.empty())
|
|
{
|
|
response = _responseQueue.at(0);
|
|
_responseQueue.erase(0);
|
|
}
|
|
|
|
_responseQueueMutex.unlock();
|
|
|
|
if (response)
|
|
{
|
|
HttpRequest *request = response->getHttpRequest();
|
|
const ccHttpRequestCallback& callback = request->getCallback();
|
|
Ref* pTarget = request->getTarget();
|
|
SEL_HttpResponse pSelector = request->getSelector();
|
|
|
|
if (callback != nullptr)
|
|
{
|
|
callback(this, response);
|
|
}
|
|
else if (pTarget && pSelector)
|
|
{
|
|
(pTarget->*pSelector)(this, response);
|
|
}
|
|
|
|
response->release();
|
|
// do not release in other thread
|
|
request->release();
|
|
}
|
|
}
|
|
|
|
void HttpClient::clearResponseAndRequestQueue()
|
|
{
|
|
_requestQueueMutex.lock();
|
|
if (_requestQueue.size())
|
|
{
|
|
for (auto it = _requestQueue.begin(); it != _requestQueue.end();)
|
|
{
|
|
if(!_clearRequestPredicate ||
|
|
_clearRequestPredicate((*it)))
|
|
{
|
|
(*it)->release();
|
|
it =_requestQueue.erase(it);
|
|
}
|
|
else
|
|
{
|
|
it++;
|
|
}
|
|
}
|
|
}
|
|
_requestQueueMutex.unlock();
|
|
|
|
_responseQueueMutex.lock();
|
|
if (_clearResponsePredicate)
|
|
{
|
|
_responseQueue.erase(std::remove_if(_responseQueue.begin(), _responseQueue.end(), _clearResponsePredicate), _responseQueue.end());
|
|
}
|
|
else
|
|
{
|
|
_responseQueue.clear();
|
|
}
|
|
_responseQueueMutex.unlock();
|
|
}
|
|
|
|
void HttpClient::increaseThreadCount()
|
|
{
|
|
_threadCountMutex.lock();
|
|
++_threadCount;
|
|
_threadCountMutex.unlock();
|
|
}
|
|
|
|
void HttpClient::decreaseThreadCountAndMayDeleteThis()
|
|
{
|
|
bool needDeleteThis = false;
|
|
_threadCountMutex.lock();
|
|
--_threadCount;
|
|
if (0 == _threadCount)
|
|
{
|
|
needDeleteThis = true;
|
|
}
|
|
|
|
_threadCountMutex.unlock();
|
|
if (needDeleteThis)
|
|
{
|
|
delete this;
|
|
}
|
|
}
|
|
|
|
void HttpClient::setTimeoutForConnect(int value)
|
|
{
|
|
std::lock_guard<std::mutex> lock(_timeoutForConnectMutex);
|
|
_timeoutForConnect = value;
|
|
}
|
|
|
|
int HttpClient::getTimeoutForConnect()
|
|
{
|
|
std::lock_guard<std::mutex> lock(_timeoutForConnectMutex);
|
|
return _timeoutForConnect;
|
|
}
|
|
|
|
void HttpClient::setTimeoutForRead(int value)
|
|
{
|
|
std::lock_guard<std::mutex> lock(_timeoutForReadMutex);
|
|
_timeoutForRead = value;
|
|
}
|
|
|
|
int HttpClient::getTimeoutForRead()
|
|
{
|
|
std::lock_guard<std::mutex> lock(_timeoutForReadMutex);
|
|
return _timeoutForRead;
|
|
}
|
|
|
|
const std::string& HttpClient::getCookieFilename()
|
|
{
|
|
std::lock_guard<std::mutex> lock(_cookieFileMutex);
|
|
return _cookieFilename;
|
|
}
|
|
|
|
const std::string& HttpClient::getSSLVerification()
|
|
{
|
|
std::lock_guard<std::mutex> lock(_sslCaFileMutex);
|
|
return _sslCaFilename;
|
|
}
|
|
|
|
}
|
|
|
|
NS_CC_END
|
|
|
|
#endif // #if (CC_TARGET_PLATFORM == CC_PLATFORM_ANDROID)
|