mirror of
https://github.com/geode-sdk/geode.git
synced 2024-11-23 07:57:51 -05:00
122 lines
3.4 KiB
C++
Vendored
122 lines
3.4 KiB
C++
Vendored
/****************************************************************************
|
|
Copyright (c) 2010-2012 cocos2d-x.org
|
|
Copyright (c) 2012 greathqy
|
|
|
|
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 __CCHTTPREQUEST_H__
|
|
#define __CCHTTPREQUEST_H__
|
|
|
|
#include "../../include/cocos2d.h"
|
|
#include "../ExtensionMacros.h"
|
|
|
|
#include "HttpRequest.h"
|
|
#include "HttpResponse.h"
|
|
|
|
NS_CC_EXT_BEGIN
|
|
|
|
/**
|
|
* @addtogroup Network
|
|
* @{
|
|
*/
|
|
|
|
|
|
/** @brief Singleton that handles asynchrounous http requests
|
|
* Once the request completed, a callback will issued in main thread when it provided during make request
|
|
* @js NA
|
|
* @lua NA
|
|
*/
|
|
class CC_DLL CCHttpClient : public CCObject
|
|
{
|
|
GEODE_FRIEND_MODIFY
|
|
public:
|
|
/** Return the shared instance **/
|
|
static CCHttpClient *getInstance();
|
|
|
|
/** Relase the shared instance **/
|
|
static void destroyInstance();
|
|
|
|
virtual ~CCHttpClient();
|
|
|
|
/**
|
|
* Add a get request to task queue
|
|
* @param request a CCHttpRequest object, which includes url, response callback etc.
|
|
please make sure request->_requestData is clear before calling "send" here.
|
|
* @return NULL
|
|
*/
|
|
void send(CCHttpRequest* request);
|
|
|
|
|
|
/**
|
|
* Change the connect timeout
|
|
* @param timeout
|
|
* @return NULL
|
|
*/
|
|
inline void setTimeoutForConnect(int value) {_timeoutForConnect = value;};
|
|
|
|
/**
|
|
* Get connect timeout
|
|
* @return int
|
|
*
|
|
*/
|
|
inline int getTimeoutForConnect() {return _timeoutForConnect;}
|
|
|
|
|
|
/**
|
|
* Change the download timeout
|
|
* @param value
|
|
* @return NULL
|
|
*/
|
|
inline void setTimeoutForRead(int value) {_timeoutForRead = value;};
|
|
|
|
|
|
/**
|
|
* Get download timeout
|
|
* @return int
|
|
*/
|
|
inline int getTimeoutForRead() {return _timeoutForRead;};
|
|
|
|
private:
|
|
CCHttpClient();
|
|
bool init(void);
|
|
|
|
/**
|
|
* Init pthread mutex, semaphore, and create new thread for http requests
|
|
* @return bool
|
|
*/
|
|
bool lazyInitThreadSemphore();
|
|
/** Poll function called from main thread to dispatch callbacks when http requests finished **/
|
|
void dispatchResponseCallbacks(float delta);
|
|
|
|
private:
|
|
int _timeoutForConnect;
|
|
int _timeoutForRead;
|
|
|
|
// gd::string reqId;
|
|
};
|
|
|
|
// end of Network group
|
|
/// @}
|
|
|
|
NS_CC_EXT_END
|
|
|
|
#endif //__CCHTTPREQUEST_H__
|