12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058 |
- /****************************************************************************
- 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())
- {
- 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::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)
|