mirror of
https://github.com/geode-sdk/geode.git
synced 2024-11-23 07:57:51 -05:00
243 lines
7.8 KiB
C++
Vendored
243 lines
7.8 KiB
C++
Vendored
/****************************************************************************
|
|
Copyright (c) 2010-2012 cocos2d-x.org
|
|
|
|
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.
|
|
****************************************************************************/
|
|
|
|
#ifndef __HTTP_REQUEST_H__
|
|
#define __HTTP_REQUEST_H__
|
|
|
|
#include "../../include/cocos2d.h"
|
|
#include "../ExtensionMacros.h"
|
|
|
|
NS_CC_EXT_BEGIN
|
|
|
|
class CC_DLL CCHttpClient;
|
|
class CC_DLL CCHttpResponse;
|
|
typedef void (CCObject::*SEL_HttpResponse)(CCHttpClient* client, CCHttpResponse* response);
|
|
#define httpresponse_selector(_SELECTOR) (cocos2d::extension::SEL_HttpResponse)(&_SELECTOR)
|
|
|
|
/**
|
|
@brief defines the object which users must packed for CCHttpClient::send(HttpRequest*) method.
|
|
Please refer to samples/TestCpp/Classes/ExtensionTest/NetworkTest/HttpClientTest.cpp as a sample
|
|
@since v2.0.2
|
|
@js NA
|
|
@lua NA
|
|
*/
|
|
|
|
class CC_DLL CCHttpRequest : public CCObject
|
|
{
|
|
public:
|
|
/** Use this enum type as param in setReqeustType(param) */
|
|
typedef enum
|
|
{
|
|
kHttpGet,
|
|
kHttpPost,
|
|
kHttpPut,
|
|
kHttpDelete,
|
|
kHttpUnkown,
|
|
} HttpRequestType;
|
|
|
|
/** Constructor
|
|
Because HttpRequest object will be used between UI thead and network thread,
|
|
requestObj->autorelease() is forbidden to avoid crashes in CCAutoreleasePool
|
|
new/retain/release still works, which means you need to release it manually
|
|
Please refer to HttpRequestTest.cpp to find its usage
|
|
*/
|
|
CCHttpRequest() : _url(), _requestData(), _tag()
|
|
{
|
|
_requestType = kHttpUnkown;
|
|
_pTarget = NULL;
|
|
_pSelector = NULL;
|
|
_pUserData = NULL;
|
|
};
|
|
|
|
/** Destructor */
|
|
virtual ~CCHttpRequest()
|
|
{
|
|
if (_pTarget)
|
|
{
|
|
_pTarget->release();
|
|
}
|
|
};
|
|
|
|
/** Override autorelease method to avoid developers to call it */
|
|
CCObject* autorelease(void)
|
|
{
|
|
CCAssert(false, "HttpResponse is used between network thread and ui thread \
|
|
therefore, autorelease is forbidden here");
|
|
return NULL;
|
|
}
|
|
|
|
// setter/getters for properties
|
|
|
|
/** Required field for HttpRequest object before being sent.
|
|
kHttpGet & kHttpPost is currently supported
|
|
*/
|
|
inline void setRequestType(HttpRequestType type)
|
|
{
|
|
_requestType = type;
|
|
};
|
|
/** Get back the kHttpGet/Post/... enum value */
|
|
inline HttpRequestType getRequestType()
|
|
{
|
|
return _requestType;
|
|
};
|
|
|
|
/** Required field for HttpRequest object before being sent.
|
|
*/
|
|
inline void setUrl(const char* url)
|
|
{
|
|
_url = url;
|
|
};
|
|
/** Get back the setted url */
|
|
inline const char* getUrl()
|
|
{
|
|
return _url.c_str();
|
|
};
|
|
|
|
/** Option field. You can set your post data here
|
|
*/
|
|
inline void setRequestData(const char* buffer, unsigned int len)
|
|
{
|
|
auto vec = std::vector<char>(_requestData);
|
|
vec.assign(buffer, buffer + len);
|
|
_requestData = gd::vector<char>(vec);
|
|
};
|
|
/** Get the request data pointer back */
|
|
inline char* getRequestData()
|
|
{
|
|
return &(_requestData.front());
|
|
}
|
|
/** Get the size of request data back */
|
|
inline int getRequestDataSize()
|
|
{
|
|
return std::vector<char>(_requestData).size();
|
|
}
|
|
|
|
/** Option field. You can set a string tag to identify your request, this tag can be found in HttpResponse->getHttpRequest->getTag()
|
|
*/
|
|
inline void setTag(const char* tag)
|
|
{
|
|
_tag = tag;
|
|
};
|
|
/** Get the string tag back to identify the request.
|
|
The best practice is to use it in your MyClass::onMyHttpRequestCompleted(sender, HttpResponse*) callback
|
|
*/
|
|
inline const char* getTag()
|
|
{
|
|
return _tag.c_str();
|
|
};
|
|
|
|
/** Option field. You can attach a customed data in each request, and get it back in response callback.
|
|
But you need to new/delete the data pointer manully
|
|
*/
|
|
inline void setUserData(void* pUserData)
|
|
{
|
|
_pUserData = pUserData;
|
|
};
|
|
/** Get the pre-setted custom data pointer back.
|
|
Don't forget to delete it. HttpClient/HttpResponse/HttpRequest will do nothing with this pointer
|
|
*/
|
|
inline void* getUserData()
|
|
{
|
|
return _pUserData;
|
|
};
|
|
|
|
/** Required field. You should set the callback selector function at ack the http request completed
|
|
*/
|
|
CC_DEPRECATED_ATTRIBUTE inline void setResponseCallback(CCObject* pTarget, SEL_CallFuncND pSelector)
|
|
{
|
|
setResponseCallback(pTarget, (SEL_HttpResponse) pSelector);
|
|
}
|
|
|
|
inline void setResponseCallback(CCObject* pTarget, SEL_HttpResponse pSelector)
|
|
{
|
|
_pTarget = pTarget;
|
|
_pSelector = pSelector;
|
|
|
|
if (_pTarget)
|
|
{
|
|
_pTarget->retain();
|
|
}
|
|
}
|
|
/** Get the target of callback selector funtion, mainly used by CCHttpClient */
|
|
inline CCObject* getTarget()
|
|
{
|
|
return _pTarget;
|
|
}
|
|
|
|
/* This sub class is just for migration SEL_CallFuncND to SEL_HttpResponse,
|
|
someday this way will be removed */
|
|
class _prxy
|
|
{
|
|
public:
|
|
_prxy( SEL_HttpResponse cb ) :_cb(cb) {}
|
|
~_prxy(){};
|
|
operator SEL_HttpResponse() const { return _cb; }
|
|
CC_DEPRECATED_ATTRIBUTE operator SEL_CallFuncND() const { return (SEL_CallFuncND) _cb; }
|
|
protected:
|
|
SEL_HttpResponse _cb;
|
|
};
|
|
|
|
/** Get the selector function pointer, mainly used by CCHttpClient */
|
|
inline _prxy getSelector()
|
|
{
|
|
return _prxy(_pSelector);
|
|
}
|
|
|
|
/** Set any custom headers **/
|
|
inline void setHeaders(gd::vector<gd::string> pHeaders)
|
|
{
|
|
_headers=pHeaders;
|
|
}
|
|
|
|
/** Get custom headers **/
|
|
inline gd::vector<gd::string> getHeaders()
|
|
{
|
|
return _headers;
|
|
}
|
|
|
|
|
|
protected:
|
|
// properties
|
|
HttpRequestType _requestType; /// kHttpRequestGet, kHttpRequestPost or other enums
|
|
gd::string _url; /// target url that this request is sent to
|
|
gd::vector<char> _requestData; /// used for POST
|
|
gd::string _tag; /// user defined tag, to identify different requests in response callback
|
|
CCObject* _pTarget; /// callback target of pSelector function
|
|
SEL_HttpResponse _pSelector; /// callback function, e.g. MyLayer::onHttpResponse(CCHttpClient *sender, CCHttpResponse * response)
|
|
void* _pUserData; /// You can add your customed data here
|
|
gd::vector<gd::string> _headers; /// custom http headers
|
|
|
|
// @note RobTop Addition
|
|
int _requestTypeGJ;
|
|
// @note RobTop Addition
|
|
bool _shouldCancel;
|
|
// @note RobTop Addition
|
|
int _downloadProgress;
|
|
// @note RobTop Addition
|
|
int _readTimeout;
|
|
};
|
|
|
|
NS_CC_EXT_END
|
|
|
|
#endif //__HTTP_REQUEST_H__
|