2013-05-31 23:13:03 +08:00
|
|
|
/****************************************************************************
|
2014-01-07 11:47:11 +08:00
|
|
|
Copyright (c) 2010-2012 cocos2d-x.org
|
|
|
|
Copyright (c) 2013-2014 Chukong Technologies Inc.
|
2016-01-07 23:15:11 +08:00
|
|
|
|
2013-05-31 23:13:03 +08:00
|
|
|
http://www.cocos2d-x.org
|
2016-01-07 23:15:11 +08:00
|
|
|
|
2013-05-31 23:13:03 +08:00
|
|
|
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:
|
2016-01-07 23:15:11 +08:00
|
|
|
|
2013-05-31 23:13:03 +08:00
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
|
|
all copies or substantial portions of the Software.
|
2016-01-07 23:15:11 +08:00
|
|
|
|
2013-05-31 23:13:03 +08:00
|
|
|
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.
|
2013-06-06 14:16:57 +08:00
|
|
|
|
|
|
|
"[WebSocket module] is based in part on the work of the libwebsockets project
|
|
|
|
(http://libwebsockets.org)"
|
|
|
|
|
2013-05-31 23:13:03 +08:00
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include "WebSocket.h"
|
2014-04-30 08:37:36 +08:00
|
|
|
#include "base/CCDirector.h"
|
|
|
|
#include "base/CCScheduler.h"
|
2013-07-25 10:33:19 +08:00
|
|
|
|
2013-06-25 12:51:44 +08:00
|
|
|
#include <thread>
|
|
|
|
#include <mutex>
|
2013-05-31 23:13:03 +08:00
|
|
|
#include <queue>
|
2014-08-29 15:39:52 +08:00
|
|
|
#include <list>
|
2013-05-31 23:13:03 +08:00
|
|
|
#include <signal.h>
|
|
|
|
#include <errno.h>
|
|
|
|
|
2013-07-25 10:33:19 +08:00
|
|
|
#include "libwebsockets.h"
|
|
|
|
|
2016-01-07 23:15:11 +08:00
|
|
|
#define WS_RX_BUFFER_SIZE (65536)
|
|
|
|
#define WS_RESERVE_RECEIVE_BUFFER_SIZE (4096)
|
|
|
|
|
|
|
|
#define LOG_TAG "WebSocket.cpp"
|
|
|
|
|
|
|
|
// Since CCLOG isn't thread safe, we uses LOGD for multi-thread logging.
|
|
|
|
#if COCOS2D_DEBUG > 0
|
|
|
|
#ifdef ANDROID
|
|
|
|
#define LOGD(...) __android_log_print(ANDROID_LOG_DEBUG, LOG_TAG,__VA_ARGS__)
|
|
|
|
#else
|
|
|
|
#define LOGD(...) printf(__VA_ARGS__)
|
|
|
|
#endif
|
|
|
|
#else
|
|
|
|
#define LOGD(...)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static void printWebSocketLog(int level, const char *line)
|
|
|
|
{
|
|
|
|
#if COCOS2D_DEBUG > 0
|
|
|
|
static const char * const log_level_names[] = {
|
|
|
|
"ERR",
|
|
|
|
"WARN",
|
|
|
|
"NOTICE",
|
|
|
|
"INFO",
|
|
|
|
"DEBUG",
|
|
|
|
"PARSER",
|
|
|
|
"HEADER",
|
|
|
|
"EXTENSION",
|
|
|
|
"CLIENT",
|
|
|
|
"LATENCY",
|
|
|
|
};
|
|
|
|
|
|
|
|
char buf[30] = {0};
|
|
|
|
int n;
|
|
|
|
|
|
|
|
for (n = 0; n < LLL_COUNT; n++) {
|
|
|
|
if (level != (1 << n))
|
|
|
|
continue;
|
|
|
|
sprintf(buf, "%s: ", log_level_names[n]);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef ANDROID
|
|
|
|
__android_log_print(ANDROID_LOG_DEBUG, "libwebsockets", "%s%s", buf, line);
|
|
|
|
#else
|
|
|
|
printf("%s%s\n", buf, line);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif // #if COCOS2D_DEBUG > 0
|
|
|
|
}
|
2014-01-09 13:29:56 +08:00
|
|
|
|
2014-01-02 16:25:35 +08:00
|
|
|
NS_CC_BEGIN
|
2013-10-15 18:00:03 +08:00
|
|
|
|
|
|
|
namespace network {
|
2013-05-31 23:13:03 +08:00
|
|
|
|
|
|
|
class WsMessage
|
|
|
|
{
|
|
|
|
public:
|
2016-01-07 23:15:11 +08:00
|
|
|
WsMessage() : id(++__id), what(0), obj(nullptr){}
|
|
|
|
unsigned int id;
|
2013-05-31 23:13:03 +08:00
|
|
|
unsigned int what; // message type
|
|
|
|
void* obj;
|
2016-01-07 23:15:11 +08:00
|
|
|
|
|
|
|
private:
|
|
|
|
static unsigned int __id;
|
2013-05-31 23:13:03 +08:00
|
|
|
};
|
|
|
|
|
2016-01-07 23:15:11 +08:00
|
|
|
unsigned int WsMessage::__id = 0;
|
|
|
|
|
2013-05-31 23:13:03 +08:00
|
|
|
/**
|
|
|
|
* @brief Websocket thread helper, it's used for sending message between UI thread and websocket thread.
|
|
|
|
*/
|
2016-01-07 23:15:11 +08:00
|
|
|
class WsThreadHelper
|
2013-05-31 23:13:03 +08:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
WsThreadHelper();
|
|
|
|
~WsThreadHelper();
|
2016-01-07 23:15:11 +08:00
|
|
|
|
2013-05-31 23:13:03 +08:00
|
|
|
// Creates a new thread
|
2016-01-13 21:04:48 +08:00
|
|
|
bool createWebSocketThread(const WebSocket& ws);
|
|
|
|
// Quits websocket thread.
|
|
|
|
void quitWebSocketThread();
|
2016-01-07 23:15:11 +08:00
|
|
|
|
2016-01-11 09:56:27 +08:00
|
|
|
// Sends message to Cocos thread. It's needed to be invoked in Websocket thread.
|
|
|
|
void sendMessageToCocosThread(const std::function<void()>& cb);
|
2016-01-07 23:15:11 +08:00
|
|
|
|
2016-01-11 09:56:27 +08:00
|
|
|
// Sends message to Websocket thread. It's needs to be invoked in Cocos thread.
|
|
|
|
void sendMessageToWebSocketThread(WsMessage *msg);
|
2016-01-07 23:15:11 +08:00
|
|
|
|
2013-05-31 23:13:03 +08:00
|
|
|
// Waits the sub-thread (websocket thread) to exit,
|
2016-01-11 09:56:27 +08:00
|
|
|
void joinWebSocketThread();
|
2016-01-07 23:15:11 +08:00
|
|
|
|
2013-05-31 23:13:03 +08:00
|
|
|
protected:
|
2013-06-25 12:51:44 +08:00
|
|
|
void wsThreadEntryFunc();
|
2013-05-31 23:13:03 +08:00
|
|
|
private:
|
|
|
|
std::list<WsMessage*>* _subThreadWsMessageQueue;
|
2013-06-25 12:51:44 +08:00
|
|
|
std::mutex _subThreadWsMessageQueueMutex;
|
|
|
|
std::thread* _subThreadInstance;
|
2013-05-31 23:13:03 +08:00
|
|
|
WebSocket* _ws;
|
|
|
|
bool _needQuit;
|
|
|
|
friend class WebSocket;
|
|
|
|
};
|
|
|
|
|
|
|
|
// Wrapper for converting websocket callback from static function to member function of WebSocket class.
|
|
|
|
class WebSocketCallbackWrapper {
|
|
|
|
public:
|
2016-01-07 23:15:11 +08:00
|
|
|
|
|
|
|
static int onSocketCallback(struct lws *wsi, enum lws_callback_reasons reason, void *user, void *in, size_t len)
|
2013-05-31 23:13:03 +08:00
|
|
|
{
|
|
|
|
// Gets the user data from context. We know that it's a 'WebSocket' instance.
|
2016-01-07 23:15:11 +08:00
|
|
|
if (wsi == nullptr) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
lws_context* context = lws_get_context(wsi);
|
|
|
|
WebSocket* wsInstance = (WebSocket*)lws_context_user(context);
|
2013-05-31 23:13:03 +08:00
|
|
|
if (wsInstance)
|
|
|
|
{
|
2016-01-07 23:15:11 +08:00
|
|
|
return wsInstance->onSocketCallback(wsi, reason, user, in, len);
|
2013-05-31 23:13:03 +08:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
// Implementation of WsThreadHelper
|
|
|
|
WsThreadHelper::WsThreadHelper()
|
2013-06-25 12:51:44 +08:00
|
|
|
: _subThreadInstance(nullptr)
|
2014-01-09 15:18:06 +08:00
|
|
|
, _ws(nullptr)
|
2013-05-31 23:13:03 +08:00
|
|
|
, _needQuit(false)
|
|
|
|
{
|
2016-01-11 09:56:27 +08:00
|
|
|
_subThreadWsMessageQueue = new (std::nothrow) std::list<WsMessage*>();
|
2013-05-31 23:13:03 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
WsThreadHelper::~WsThreadHelper()
|
|
|
|
{
|
2016-01-11 09:56:27 +08:00
|
|
|
joinWebSocketThread();
|
2013-06-25 12:51:44 +08:00
|
|
|
CC_SAFE_DELETE(_subThreadInstance);
|
2013-05-31 23:13:03 +08:00
|
|
|
delete _subThreadWsMessageQueue;
|
|
|
|
}
|
|
|
|
|
2016-01-13 21:04:48 +08:00
|
|
|
bool WsThreadHelper::createWebSocketThread(const WebSocket& ws)
|
2013-05-31 23:13:03 +08:00
|
|
|
{
|
|
|
|
_ws = const_cast<WebSocket*>(&ws);
|
2016-01-07 23:15:11 +08:00
|
|
|
|
2013-05-31 23:13:03 +08:00
|
|
|
// Creates websocket thread
|
2016-01-11 09:56:27 +08:00
|
|
|
_subThreadInstance = new (std::nothrow) std::thread(&WsThreadHelper::wsThreadEntryFunc, this);
|
2013-06-25 12:51:44 +08:00
|
|
|
return true;
|
2013-05-31 23:13:03 +08:00
|
|
|
}
|
|
|
|
|
2016-01-13 21:04:48 +08:00
|
|
|
void WsThreadHelper::quitWebSocketThread()
|
2013-05-31 23:13:03 +08:00
|
|
|
{
|
|
|
|
_needQuit = true;
|
|
|
|
}
|
|
|
|
|
2013-06-25 12:51:44 +08:00
|
|
|
void WsThreadHelper::wsThreadEntryFunc()
|
2013-05-31 23:13:03 +08:00
|
|
|
{
|
2016-01-09 18:07:48 +08:00
|
|
|
LOGD("WebSocket thread start, helper instance: %p\n", this);
|
2013-05-31 23:13:03 +08:00
|
|
|
_ws->onSubThreadStarted();
|
2016-01-07 23:15:11 +08:00
|
|
|
|
2013-05-31 23:13:03 +08:00
|
|
|
while (!_needQuit)
|
|
|
|
{
|
2016-01-07 23:15:11 +08:00
|
|
|
_ws->onSubThreadLoop();
|
2013-05-31 23:13:03 +08:00
|
|
|
}
|
2016-01-07 23:15:11 +08:00
|
|
|
|
|
|
|
_ws->onSubThreadEnded();
|
2016-01-13 21:07:04 +08:00
|
|
|
|
2016-01-09 18:07:48 +08:00
|
|
|
LOGD("WebSocket thread exit, helper instance: %p\n", this);
|
2013-05-31 23:13:03 +08:00
|
|
|
}
|
|
|
|
|
2016-01-11 09:56:27 +08:00
|
|
|
void WsThreadHelper::sendMessageToCocosThread(const std::function<void()>& cb)
|
2013-05-31 23:13:03 +08:00
|
|
|
{
|
2016-01-07 23:15:11 +08:00
|
|
|
Director::getInstance()->getScheduler()->performFunctionInCocosThread(cb);
|
2013-05-31 23:13:03 +08:00
|
|
|
}
|
|
|
|
|
2016-01-11 09:56:27 +08:00
|
|
|
void WsThreadHelper::sendMessageToWebSocketThread(WsMessage *msg)
|
2013-05-31 23:13:03 +08:00
|
|
|
{
|
2013-06-26 10:10:23 +08:00
|
|
|
std::lock_guard<std::mutex> lk(_subThreadWsMessageQueueMutex);
|
2013-05-31 23:13:03 +08:00
|
|
|
_subThreadWsMessageQueue->push_back(msg);
|
|
|
|
}
|
|
|
|
|
2016-01-11 09:56:27 +08:00
|
|
|
void WsThreadHelper::joinWebSocketThread()
|
2013-05-31 23:13:03 +08:00
|
|
|
{
|
2013-06-25 12:51:44 +08:00
|
|
|
if (_subThreadInstance->joinable())
|
|
|
|
{
|
|
|
|
_subThreadInstance->join();
|
|
|
|
}
|
2013-05-31 23:13:03 +08:00
|
|
|
}
|
|
|
|
|
2016-01-07 23:15:11 +08:00
|
|
|
// Define a WebSocket frame
|
|
|
|
class WebSocketFrame
|
2013-05-31 23:13:03 +08:00
|
|
|
{
|
2016-01-07 23:15:11 +08:00
|
|
|
public:
|
|
|
|
WebSocketFrame()
|
|
|
|
: _payload(nullptr)
|
|
|
|
, _payloadLength(0)
|
|
|
|
, _frameLength(0)
|
2013-05-31 23:13:03 +08:00
|
|
|
{
|
2015-06-22 20:58:37 +08:00
|
|
|
}
|
2014-03-25 16:14:21 +08:00
|
|
|
|
2016-01-07 23:15:11 +08:00
|
|
|
bool init(unsigned char* buf, ssize_t len)
|
|
|
|
{
|
|
|
|
if (buf == nullptr && len > 0)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (!_data.empty())
|
2015-06-22 20:58:37 +08:00
|
|
|
{
|
2016-01-07 23:15:11 +08:00
|
|
|
LOGD("WebSocketFrame was initialized, should not init it again!\n");
|
|
|
|
return false;
|
2015-06-22 20:58:37 +08:00
|
|
|
}
|
2016-01-07 23:15:11 +08:00
|
|
|
|
2016-01-13 20:48:03 +08:00
|
|
|
_data.reserve(LWS_PRE + len);
|
|
|
|
_data.resize(LWS_PRE, 0x00);
|
2016-01-07 23:15:11 +08:00
|
|
|
if (len > 0)
|
|
|
|
{
|
|
|
|
_data.insert(_data.end(), buf, buf + len);
|
|
|
|
}
|
|
|
|
|
2016-01-13 20:48:03 +08:00
|
|
|
_payload = _data.data() + LWS_PRE;
|
2016-01-07 23:15:11 +08:00
|
|
|
_payloadLength = len;
|
|
|
|
_frameLength = len;
|
|
|
|
return true;
|
2013-05-31 23:13:03 +08:00
|
|
|
}
|
2016-01-07 23:15:11 +08:00
|
|
|
|
|
|
|
void update(ssize_t issued)
|
|
|
|
{
|
|
|
|
_payloadLength -= issued;
|
|
|
|
_payload += issued;
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned char* getPayload() const { return _payload; }
|
|
|
|
ssize_t getPayloadLength() const { return _payloadLength; }
|
|
|
|
ssize_t getFrameLength() const { return _frameLength; }
|
|
|
|
private:
|
|
|
|
unsigned char* _payload;
|
|
|
|
ssize_t _payloadLength;
|
|
|
|
|
|
|
|
ssize_t _frameLength;
|
|
|
|
std::vector<unsigned char> _data;
|
|
|
|
};
|
|
|
|
//
|
|
|
|
|
2013-05-31 23:13:03 +08:00
|
|
|
|
|
|
|
enum WS_MSG {
|
|
|
|
WS_MSG_TO_SUBTRHEAD_SENDING_STRING = 0,
|
|
|
|
WS_MSG_TO_SUBTRHEAD_SENDING_BINARY,
|
|
|
|
};
|
|
|
|
|
2016-01-09 18:07:48 +08:00
|
|
|
static std::vector<WebSocket*>* __websocketInstances = nullptr;
|
|
|
|
|
|
|
|
void WebSocket::closeAllConnections()
|
|
|
|
{
|
|
|
|
if (__websocketInstances != nullptr)
|
|
|
|
{
|
|
|
|
ssize_t count = __websocketInstances->size();
|
|
|
|
for (ssize_t i = count-1; i >=0 ; i--)
|
|
|
|
{
|
|
|
|
WebSocket* instance = __websocketInstances->at(i);
|
|
|
|
instance->close();
|
|
|
|
}
|
2016-01-13 21:07:04 +08:00
|
|
|
|
2016-01-09 18:07:48 +08:00
|
|
|
__websocketInstances->clear();
|
|
|
|
__websocketInstances = nullptr;
|
|
|
|
}
|
|
|
|
}
|
2016-01-13 21:07:04 +08:00
|
|
|
|
2013-05-31 23:13:03 +08:00
|
|
|
WebSocket::WebSocket()
|
2013-07-26 12:08:18 +08:00
|
|
|
: _readyState(State::CONNECTING)
|
2013-05-31 23:13:03 +08:00
|
|
|
, _port(80)
|
2013-07-26 12:08:18 +08:00
|
|
|
, _wsHelper(nullptr)
|
|
|
|
, _wsInstance(nullptr)
|
|
|
|
, _wsContext(nullptr)
|
2016-01-22 17:43:30 +08:00
|
|
|
, _isDestroyed(std::make_shared<bool>(false))
|
2013-07-26 12:08:18 +08:00
|
|
|
, _delegate(nullptr)
|
2013-05-31 23:13:03 +08:00
|
|
|
, _SSLConnection(0)
|
2013-07-26 12:08:18 +08:00
|
|
|
, _wsProtocols(nullptr)
|
2013-05-31 23:13:03 +08:00
|
|
|
{
|
2016-01-07 23:15:11 +08:00
|
|
|
// reserve data buffer to avoid allocate memory frequently
|
|
|
|
_receivedData.reserve(WS_RESERVE_RECEIVE_BUFFER_SIZE);
|
2016-01-09 18:07:48 +08:00
|
|
|
if (__websocketInstances == nullptr)
|
|
|
|
{
|
2016-01-11 09:56:27 +08:00
|
|
|
__websocketInstances = new (std::nothrow) std::vector<WebSocket*>();
|
2016-01-09 18:07:48 +08:00
|
|
|
}
|
2016-01-13 21:07:04 +08:00
|
|
|
|
2016-01-09 18:07:48 +08:00
|
|
|
__websocketInstances->push_back(this);
|
2013-05-31 23:13:03 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
WebSocket::~WebSocket()
|
|
|
|
{
|
2016-01-09 18:07:48 +08:00
|
|
|
LOGD("In the destructor of WebSocket (%p)\n", this);
|
2016-01-07 23:15:11 +08:00
|
|
|
CC_SAFE_DELETE(_wsHelper);
|
|
|
|
|
|
|
|
if (_wsProtocols != nullptr)
|
2013-07-26 12:08:18 +08:00
|
|
|
{
|
2015-12-05 00:15:16 +08:00
|
|
|
for (int i = 0; _wsProtocols[i].callback != nullptr; ++i)
|
|
|
|
{
|
|
|
|
CC_SAFE_DELETE_ARRAY(_wsProtocols[i].name);
|
|
|
|
}
|
2013-05-31 23:13:03 +08:00
|
|
|
}
|
2016-01-07 23:15:11 +08:00
|
|
|
CC_SAFE_DELETE_ARRAY(_wsProtocols);
|
2016-01-13 21:07:04 +08:00
|
|
|
|
2016-01-09 18:07:48 +08:00
|
|
|
if (__websocketInstances != nullptr)
|
|
|
|
{
|
|
|
|
auto iter = std::find(__websocketInstances->begin(), __websocketInstances->end(), this);
|
|
|
|
if (iter != __websocketInstances->end())
|
|
|
|
{
|
|
|
|
__websocketInstances->erase(iter);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-01-11 09:56:27 +08:00
|
|
|
LOGD("ERROR: WebSocket instance (%p) wasn't added to the container which saves websocket instances!\n", this);
|
2016-01-09 18:07:48 +08:00
|
|
|
}
|
|
|
|
}
|
2016-01-22 17:43:30 +08:00
|
|
|
*_isDestroyed = true;
|
2013-05-31 23:13:03 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
bool WebSocket::init(const Delegate& delegate,
|
|
|
|
const std::string& url,
|
2014-01-09 15:18:06 +08:00
|
|
|
const std::vector<std::string>* protocols/* = nullptr*/)
|
2013-05-31 23:13:03 +08:00
|
|
|
{
|
|
|
|
bool ret = false;
|
|
|
|
bool useSSL = false;
|
|
|
|
std::string host = url;
|
2013-12-06 16:32:06 +08:00
|
|
|
size_t pos = 0;
|
2013-05-31 23:13:03 +08:00
|
|
|
int port = 80;
|
2016-01-07 23:15:11 +08:00
|
|
|
|
2013-05-31 23:13:03 +08:00
|
|
|
_delegate = const_cast<Delegate*>(&delegate);
|
2016-01-07 23:15:11 +08:00
|
|
|
|
2013-05-31 23:13:03 +08:00
|
|
|
//ws://
|
|
|
|
pos = host.find("ws://");
|
2013-07-26 12:08:18 +08:00
|
|
|
if (pos == 0) host.erase(0,5);
|
2016-01-07 23:15:11 +08:00
|
|
|
|
2013-05-31 23:13:03 +08:00
|
|
|
pos = host.find("wss://");
|
|
|
|
if (pos == 0)
|
|
|
|
{
|
|
|
|
host.erase(0,6);
|
|
|
|
useSSL = true;
|
|
|
|
}
|
2016-01-07 23:15:11 +08:00
|
|
|
|
2013-05-31 23:13:03 +08:00
|
|
|
pos = host.find(":");
|
2013-12-06 16:32:06 +08:00
|
|
|
if (pos != std::string::npos) port = atoi(host.substr(pos+1, host.size()).c_str());
|
2016-01-07 23:15:11 +08:00
|
|
|
|
2013-06-17 18:28:12 +08:00
|
|
|
pos = host.find("/", 0);
|
2013-05-31 23:13:03 +08:00
|
|
|
std::string path = "/";
|
2013-12-06 16:32:06 +08:00
|
|
|
if (pos != std::string::npos) path += host.substr(pos + 1, host.size());
|
2016-01-07 23:15:11 +08:00
|
|
|
|
2013-05-31 23:13:03 +08:00
|
|
|
pos = host.find(":");
|
2013-12-06 16:32:06 +08:00
|
|
|
if(pos != std::string::npos){
|
2013-05-31 23:13:03 +08:00
|
|
|
host.erase(pos, host.size());
|
2013-12-06 16:32:06 +08:00
|
|
|
}else if((pos = host.find("/")) != std::string::npos) {
|
2016-01-07 23:15:11 +08:00
|
|
|
host.erase(pos, host.size());
|
2013-05-31 23:13:03 +08:00
|
|
|
}
|
2016-01-07 23:15:11 +08:00
|
|
|
|
2013-05-31 23:13:03 +08:00
|
|
|
_host = host;
|
|
|
|
_port = port;
|
|
|
|
_path = path;
|
|
|
|
_SSLConnection = useSSL ? 1 : 0;
|
2016-01-07 23:15:11 +08:00
|
|
|
|
2016-01-09 18:07:48 +08:00
|
|
|
LOGD("[WebSocket::init] _host: %s, _port: %d, _path: %s\n", _host.c_str(), _port, _path.c_str());
|
2013-06-17 18:28:12 +08:00
|
|
|
|
2013-12-06 16:32:06 +08:00
|
|
|
size_t protocolCount = 0;
|
2013-05-31 23:13:03 +08:00
|
|
|
if (protocols && protocols->size() > 0)
|
|
|
|
{
|
|
|
|
protocolCount = protocols->size();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
protocolCount = 1;
|
|
|
|
}
|
2016-01-07 23:15:11 +08:00
|
|
|
|
2016-01-11 09:56:27 +08:00
|
|
|
_wsProtocols = new (std::nothrow) lws_protocols[protocolCount+1];
|
2016-01-07 23:15:11 +08:00
|
|
|
memset(_wsProtocols, 0, sizeof(lws_protocols)*(protocolCount+1));
|
2013-05-31 23:13:03 +08:00
|
|
|
|
2013-08-02 09:35:45 +08:00
|
|
|
if (protocols && protocols->size() > 0)
|
2013-05-31 23:13:03 +08:00
|
|
|
{
|
|
|
|
int i = 0;
|
2013-07-26 12:08:18 +08:00
|
|
|
for (std::vector<std::string>::const_iterator iter = protocols->begin(); iter != protocols->end(); ++iter, ++i)
|
|
|
|
{
|
2016-01-11 09:56:27 +08:00
|
|
|
char* name = new (std::nothrow) char[(*iter).length()+1];
|
2013-05-31 23:13:03 +08:00
|
|
|
strcpy(name, (*iter).c_str());
|
|
|
|
_wsProtocols[i].name = name;
|
|
|
|
_wsProtocols[i].callback = WebSocketCallbackWrapper::onSocketCallback;
|
2016-01-07 23:15:11 +08:00
|
|
|
_wsProtocols[i].rx_buffer_size = WS_RX_BUFFER_SIZE;
|
2013-05-31 23:13:03 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-01-11 09:56:27 +08:00
|
|
|
char* name = new (std::nothrow) char[20];
|
2013-05-31 23:13:03 +08:00
|
|
|
strcpy(name, "default-protocol");
|
|
|
|
_wsProtocols[0].name = name;
|
|
|
|
_wsProtocols[0].callback = WebSocketCallbackWrapper::onSocketCallback;
|
2016-01-07 23:15:11 +08:00
|
|
|
_wsProtocols[0].rx_buffer_size = WS_RX_BUFFER_SIZE;
|
2013-05-31 23:13:03 +08:00
|
|
|
}
|
2016-01-07 23:15:11 +08:00
|
|
|
|
2013-05-31 23:13:03 +08:00
|
|
|
// WebSocket thread needs to be invoked at the end of this method.
|
2014-08-28 07:31:57 +08:00
|
|
|
_wsHelper = new (std::nothrow) WsThreadHelper();
|
2016-01-13 21:04:48 +08:00
|
|
|
ret = _wsHelper->createWebSocketThread(*this);
|
2016-01-07 23:15:11 +08:00
|
|
|
|
2013-05-31 23:13:03 +08:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
void WebSocket::send(const std::string& message)
|
|
|
|
{
|
2013-07-26 12:08:18 +08:00
|
|
|
if (_readyState == State::OPEN)
|
2013-05-31 23:13:03 +08:00
|
|
|
{
|
|
|
|
// In main thread
|
2014-08-28 07:31:57 +08:00
|
|
|
Data* data = new (std::nothrow) Data();
|
2016-01-07 23:15:11 +08:00
|
|
|
data->bytes = (char*)malloc(message.length() + 1);
|
|
|
|
// Make sure the last byte is '\0'
|
|
|
|
data->bytes[message.length()] = '\0';
|
2013-05-31 23:13:03 +08:00
|
|
|
strcpy(data->bytes, message.c_str());
|
2013-12-06 16:32:06 +08:00
|
|
|
data->len = static_cast<ssize_t>(message.length());
|
2016-01-07 23:15:11 +08:00
|
|
|
|
|
|
|
WsMessage* msg = new (std::nothrow) WsMessage();
|
|
|
|
msg->what = WS_MSG_TO_SUBTRHEAD_SENDING_STRING;
|
2013-05-31 23:13:03 +08:00
|
|
|
msg->obj = data;
|
2016-01-11 09:56:27 +08:00
|
|
|
_wsHelper->sendMessageToWebSocketThread(msg);
|
2013-05-31 23:13:03 +08:00
|
|
|
}
|
2016-01-07 23:15:11 +08:00
|
|
|
else
|
|
|
|
{
|
|
|
|
LOGD("Couldn't send message since websocket wasn't opened!\n");
|
|
|
|
}
|
2013-05-31 23:13:03 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void WebSocket::send(const unsigned char* binaryMsg, unsigned int len)
|
|
|
|
{
|
2013-07-26 12:08:18 +08:00
|
|
|
if (_readyState == State::OPEN)
|
2013-05-31 23:13:03 +08:00
|
|
|
{
|
|
|
|
// In main thread
|
2014-08-28 07:31:57 +08:00
|
|
|
Data* data = new (std::nothrow) Data();
|
2016-01-07 23:15:11 +08:00
|
|
|
if (len == 0)
|
|
|
|
{
|
|
|
|
// If data length is zero, allocate 1 byte for safe.
|
|
|
|
data->bytes = (char*)malloc(1);
|
|
|
|
data->bytes[0] = '\0';
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
data->bytes = (char*)malloc(len);
|
|
|
|
memcpy((void*)data->bytes, (void*)binaryMsg, len);
|
|
|
|
}
|
2013-05-31 23:13:03 +08:00
|
|
|
data->len = len;
|
2016-01-07 23:15:11 +08:00
|
|
|
|
|
|
|
WsMessage* msg = new (std::nothrow) WsMessage();
|
|
|
|
msg->what = WS_MSG_TO_SUBTRHEAD_SENDING_BINARY;
|
2013-05-31 23:13:03 +08:00
|
|
|
msg->obj = data;
|
2016-01-11 09:56:27 +08:00
|
|
|
_wsHelper->sendMessageToWebSocketThread(msg);
|
2013-05-31 23:13:03 +08:00
|
|
|
}
|
2016-01-07 23:15:11 +08:00
|
|
|
else
|
|
|
|
{
|
|
|
|
LOGD("Couldn't send message since websocket wasn't opened!\n");
|
|
|
|
}
|
2013-05-31 23:13:03 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void WebSocket::close()
|
2016-01-22 14:22:33 +08:00
|
|
|
{
|
2016-01-22 17:43:30 +08:00
|
|
|
_readStateMutex.lock();
|
|
|
|
if (_readyState == State::CLOSED)
|
|
|
|
{
|
|
|
|
LOGD("close: WebSocket (%p) was closed, no need to close it again!\n", this);
|
|
|
|
_readStateMutex.unlock();
|
|
|
|
return;
|
|
|
|
}
|
2016-01-22 15:20:43 +08:00
|
|
|
// Sets the state to 'closed' to make sure 'onConnectionClosed' which is
|
|
|
|
// invoked by websocket thread don't post 'close' message to Cocos thread since
|
|
|
|
// WebSocket instance is destroyed at next frame.
|
2016-01-22 16:10:49 +08:00
|
|
|
// 'closed' state has to be set before quit websocket thread.
|
2016-01-22 15:20:43 +08:00
|
|
|
_readyState = State::CLOSED;
|
2016-01-22 17:43:30 +08:00
|
|
|
_readStateMutex.unlock();
|
2016-01-22 16:10:49 +08:00
|
|
|
|
|
|
|
_wsHelper->quitWebSocketThread();
|
2016-01-22 14:22:33 +08:00
|
|
|
LOGD("Waiting WebSocket (%p) to exit!\n", this);
|
|
|
|
_wsHelper->joinWebSocketThread();
|
2016-01-22 15:20:43 +08:00
|
|
|
// Since 'onConnectionClosed' didn't post message to Cocos Thread for invoking 'onClose' callback, do it here.
|
|
|
|
// onClose must be invoked at the end of this method.
|
|
|
|
_delegate->onClose(this);
|
2016-01-22 14:22:33 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void WebSocket::closeAsync()
|
2013-05-31 23:13:03 +08:00
|
|
|
{
|
2016-01-13 21:04:48 +08:00
|
|
|
_wsHelper->quitWebSocketThread();
|
2013-05-31 23:13:03 +08:00
|
|
|
}
|
|
|
|
|
2013-06-03 09:55:43 +08:00
|
|
|
WebSocket::State WebSocket::getReadyState()
|
2013-05-31 23:13:03 +08:00
|
|
|
{
|
2016-01-22 17:43:30 +08:00
|
|
|
std::lock_guard<std::mutex> lk(_readStateMutex);
|
2013-05-31 23:13:03 +08:00
|
|
|
return _readyState;
|
|
|
|
}
|
|
|
|
|
2016-01-07 23:15:11 +08:00
|
|
|
void WebSocket::onSubThreadLoop()
|
2013-05-31 23:13:03 +08:00
|
|
|
{
|
2016-01-22 17:43:30 +08:00
|
|
|
_readStateMutex.lock();
|
2016-01-07 23:15:11 +08:00
|
|
|
if (_wsContext && _readyState != State::CLOSED && _readyState != State::CLOSING)
|
2013-05-31 23:13:03 +08:00
|
|
|
{
|
2016-01-22 17:43:30 +08:00
|
|
|
_readStateMutex.unlock();
|
2016-01-07 23:15:11 +08:00
|
|
|
_wsHelper->_subThreadWsMessageQueueMutex.lock();
|
|
|
|
bool isEmpty = _wsHelper->_subThreadWsMessageQueue->empty();
|
|
|
|
_wsHelper->_subThreadWsMessageQueueMutex.unlock();
|
|
|
|
if (!isEmpty)
|
|
|
|
{
|
|
|
|
lws_callback_on_writable(_wsInstance);
|
|
|
|
}
|
|
|
|
|
|
|
|
lws_service(_wsContext, 50);
|
2013-05-31 23:13:03 +08:00
|
|
|
}
|
2016-01-07 23:15:11 +08:00
|
|
|
else
|
2013-05-31 23:13:03 +08:00
|
|
|
{
|
2016-01-09 18:07:48 +08:00
|
|
|
LOGD("Ready state is closing or was closed, code=%d, quit websocket thread!\n", _readyState);
|
2016-01-22 17:43:30 +08:00
|
|
|
_readStateMutex.unlock();
|
2016-01-13 21:04:48 +08:00
|
|
|
_wsHelper->quitWebSocketThread();
|
2013-05-31 23:13:03 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void WebSocket::onSubThreadStarted()
|
|
|
|
{
|
2016-01-13 20:59:10 +08:00
|
|
|
static const struct lws_extension exts[] = {
|
|
|
|
{
|
|
|
|
"permessage-deflate",
|
|
|
|
lws_extension_callback_pm_deflate,
|
|
|
|
"permessage-deflate; client_no_context_takeover; client_max_window_bits"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"deflate-frame",
|
|
|
|
lws_extension_callback_pm_deflate,
|
|
|
|
"deflate_frame"
|
|
|
|
},
|
|
|
|
{ nullptr, nullptr, nullptr /* terminator */ }
|
|
|
|
};
|
2016-01-13 21:07:04 +08:00
|
|
|
|
2016-01-07 23:15:11 +08:00
|
|
|
struct lws_context_creation_info info;
|
|
|
|
memset(&info, 0, sizeof info);
|
|
|
|
/*
|
|
|
|
* create the websocket context. This tracks open connections and
|
|
|
|
* knows how to route any traffic and which protocol version to use,
|
|
|
|
* and if each connection is client or server side.
|
|
|
|
*
|
|
|
|
* For this client-only demo, we tell it to not listen on any port.
|
|
|
|
*/
|
|
|
|
|
|
|
|
info.port = CONTEXT_PORT_NO_LISTEN;
|
|
|
|
info.protocols = _wsProtocols;
|
2016-01-13 20:59:10 +08:00
|
|
|
info.extensions = exts;
|
2016-01-07 23:15:11 +08:00
|
|
|
|
|
|
|
info.gid = -1;
|
|
|
|
info.uid = -1;
|
|
|
|
info.options = 0;
|
|
|
|
info.user = this;
|
|
|
|
|
|
|
|
int log_level = LLL_ERR | LLL_WARN | LLL_NOTICE/* | LLL_INFO | LLL_DEBUG/* | LLL_PARSER*/ | LLL_HEADER | LLL_EXT | LLL_CLIENT | LLL_LATENCY;
|
|
|
|
lws_set_log_level(log_level, printWebSocketLog);
|
|
|
|
|
|
|
|
_wsContext = lws_create_context(&info);
|
|
|
|
|
|
|
|
if (nullptr != _wsContext)
|
2013-07-26 12:08:18 +08:00
|
|
|
{
|
2016-01-22 17:43:30 +08:00
|
|
|
_readStateMutex.lock();
|
2013-07-26 12:08:18 +08:00
|
|
|
_readyState = State::CONNECTING;
|
2016-01-22 17:43:30 +08:00
|
|
|
_readStateMutex.unlock();
|
|
|
|
|
2013-05-31 23:13:03 +08:00
|
|
|
std::string name;
|
2013-07-26 12:08:18 +08:00
|
|
|
for (int i = 0; _wsProtocols[i].callback != nullptr; ++i)
|
|
|
|
{
|
2013-05-31 23:13:03 +08:00
|
|
|
name += (_wsProtocols[i].name);
|
2016-01-07 23:15:11 +08:00
|
|
|
|
2013-07-26 12:08:18 +08:00
|
|
|
if (_wsProtocols[i+1].callback != nullptr) name += ", ";
|
2013-05-31 23:13:03 +08:00
|
|
|
}
|
2016-01-07 23:15:11 +08:00
|
|
|
|
|
|
|
char portStr[10];
|
|
|
|
sprintf(portStr, "%d", _port);
|
|
|
|
std::string ads_port = _host + ":" + portStr;
|
|
|
|
|
|
|
|
_wsInstance = lws_client_connect(_wsContext, _host.c_str(), _port, _SSLConnection,
|
|
|
|
_path.c_str(), ads_port.c_str(), ads_port.c_str(),
|
2013-05-31 23:13:03 +08:00
|
|
|
name.c_str(), -1);
|
2014-01-26 15:59:14 +08:00
|
|
|
|
2016-01-07 23:15:11 +08:00
|
|
|
if (nullptr == _wsInstance)
|
|
|
|
{
|
|
|
|
onConnectionError();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
CCLOGERROR("Create websocket context failed!");
|
|
|
|
}
|
2013-05-31 23:13:03 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void WebSocket::onSubThreadEnded()
|
|
|
|
{
|
2016-01-07 23:15:11 +08:00
|
|
|
if (_wsContext != nullptr)
|
|
|
|
{
|
|
|
|
lws_context_destroy(_wsContext);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void WebSocket::onClientWritable()
|
|
|
|
{
|
|
|
|
std::lock_guard<std::mutex> lk(_wsHelper->_subThreadWsMessageQueueMutex);
|
|
|
|
|
|
|
|
if (_wsHelper->_subThreadWsMessageQueue->empty())
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::list<WsMessage*>::iterator iter = _wsHelper->_subThreadWsMessageQueue->begin();
|
2013-05-31 23:13:03 +08:00
|
|
|
|
2016-01-07 23:15:11 +08:00
|
|
|
ssize_t bytesWrite = 0;
|
|
|
|
if (iter != _wsHelper->_subThreadWsMessageQueue->end())
|
|
|
|
{
|
|
|
|
WsMessage* subThreadMsg = *iter;
|
|
|
|
Data* data = (Data*)subThreadMsg->obj;
|
|
|
|
|
|
|
|
const size_t c_bufferSize = WS_RX_BUFFER_SIZE;
|
|
|
|
|
|
|
|
const size_t remaining = data->len - data->issued;
|
|
|
|
const size_t n = std::min(remaining, c_bufferSize );
|
|
|
|
|
|
|
|
WebSocketFrame* frame = nullptr;
|
|
|
|
|
|
|
|
if (data->ext)
|
|
|
|
{
|
|
|
|
frame = (WebSocketFrame*)data->ext;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-01-11 09:56:27 +08:00
|
|
|
frame = new (std::nothrow) WebSocketFrame();
|
2016-01-07 23:15:11 +08:00
|
|
|
bool success = frame && frame->init((unsigned char*)(data->bytes + data->issued), n);
|
|
|
|
if (success)
|
|
|
|
{
|
|
|
|
data->ext = frame;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{ // If frame initialization failed, delete the frame and drop the sending data
|
|
|
|
// These codes should never be called.
|
2016-01-09 18:07:48 +08:00
|
|
|
LOGD("WebSocketFrame initialization failed, drop the sending data, msg(%d)\n", (int)subThreadMsg->id);
|
2016-01-07 23:15:11 +08:00
|
|
|
delete frame;
|
|
|
|
CC_SAFE_FREE(data->bytes);
|
|
|
|
CC_SAFE_DELETE(data);
|
|
|
|
_wsHelper->_subThreadWsMessageQueue->erase(iter);
|
|
|
|
CC_SAFE_DELETE(subThreadMsg);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int writeProtocol;
|
|
|
|
|
|
|
|
if (data->issued == 0)
|
|
|
|
{
|
|
|
|
if (WS_MSG_TO_SUBTRHEAD_SENDING_STRING == subThreadMsg->what)
|
|
|
|
{
|
|
|
|
writeProtocol = LWS_WRITE_TEXT;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
writeProtocol = LWS_WRITE_BINARY;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If we have more than 1 fragment
|
|
|
|
if (data->len > c_bufferSize)
|
|
|
|
writeProtocol |= LWS_WRITE_NO_FIN;
|
|
|
|
} else {
|
|
|
|
// we are in the middle of fragments
|
|
|
|
writeProtocol = LWS_WRITE_CONTINUATION;
|
|
|
|
// and if not in the last fragment
|
|
|
|
if (remaining != n)
|
|
|
|
writeProtocol |= LWS_WRITE_NO_FIN;
|
|
|
|
}
|
|
|
|
|
|
|
|
bytesWrite = lws_write(_wsInstance, frame->getPayload(), frame->getPayloadLength(), (lws_write_protocol)writeProtocol);
|
|
|
|
|
|
|
|
// Handle the result of lws_write
|
|
|
|
// Buffer overrun?
|
|
|
|
if (bytesWrite < 0)
|
|
|
|
{
|
|
|
|
LOGD("ERROR: msg(%u), lws_write return: %d, but it should be %d, drop this message.\n", subThreadMsg->id, (int)bytesWrite, (int)n);
|
|
|
|
// socket error, we need to close the socket connection
|
|
|
|
CC_SAFE_FREE(data->bytes);
|
|
|
|
delete ((WebSocketFrame*)data->ext);
|
|
|
|
data->ext = nullptr;
|
|
|
|
CC_SAFE_DELETE(data);
|
|
|
|
_wsHelper->_subThreadWsMessageQueue->erase(iter);
|
|
|
|
CC_SAFE_DELETE(subThreadMsg);
|
|
|
|
|
2016-01-22 14:22:33 +08:00
|
|
|
closeAsync();
|
2016-01-07 23:15:11 +08:00
|
|
|
}
|
|
|
|
else if (bytesWrite < frame->getPayloadLength())
|
|
|
|
{
|
|
|
|
frame->update(bytesWrite);
|
|
|
|
LOGD("frame wasn't sent completely, bytesWrite: %d, remain: %d\n", (int)bytesWrite, (int)frame->getPayloadLength());
|
|
|
|
}
|
|
|
|
// Do we have another fragments to send?
|
|
|
|
else if (remaining > frame->getFrameLength() && bytesWrite == frame->getPayloadLength())
|
|
|
|
{
|
|
|
|
// A frame was totally sent, plus data->issued to send next frame
|
|
|
|
LOGD("msg(%u) append: %d + %d = %d\n", subThreadMsg->id, (int)data->issued, (int)frame->getFrameLength(), (int)(data->issued + frame->getFrameLength()));
|
|
|
|
data->issued += frame->getFrameLength();
|
|
|
|
delete ((WebSocketFrame*)data->ext);
|
|
|
|
data->ext = nullptr;
|
|
|
|
}
|
|
|
|
// Safely done!
|
|
|
|
else
|
|
|
|
{
|
|
|
|
LOGD("Safely done, msg(%d)!\n", subThreadMsg->id);
|
|
|
|
if (remaining == frame->getFrameLength())
|
|
|
|
{
|
|
|
|
LOGD("msg(%u) append: %d + %d = %d\n", subThreadMsg->id, (int)data->issued, (int)frame->getFrameLength(), (int)(data->issued + frame->getFrameLength()));
|
|
|
|
LOGD("msg(%u) was totally sent!\n", subThreadMsg->id);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
LOGD("ERROR: msg(%u), remaining(%d) < bytesWrite(%d)\n", subThreadMsg->id, (int)remaining, (int)frame->getFrameLength());
|
|
|
|
LOGD("Drop the msg(%u)\n", subThreadMsg->id);
|
2016-01-22 14:22:33 +08:00
|
|
|
closeAsync();
|
2016-01-07 23:15:11 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
CC_SAFE_FREE(data->bytes);
|
|
|
|
delete ((WebSocketFrame*)data->ext);
|
|
|
|
data->ext = nullptr;
|
|
|
|
CC_SAFE_DELETE(data);
|
|
|
|
_wsHelper->_subThreadWsMessageQueue->erase(iter);
|
|
|
|
CC_SAFE_DELETE(subThreadMsg);
|
|
|
|
|
|
|
|
LOGD("-----------------------------------------------------------\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void WebSocket::onClientReceivedData(void* in, ssize_t len)
|
|
|
|
{
|
|
|
|
// In websocket thread
|
|
|
|
static int packageIndex = 0;
|
|
|
|
packageIndex++;
|
|
|
|
if (in != nullptr && len > 0)
|
|
|
|
{
|
|
|
|
LOGD("Receiving data:index:%d, len=%d\n", packageIndex, (int)len);
|
|
|
|
|
|
|
|
unsigned char* inData = (unsigned char*)in;
|
|
|
|
_receivedData.insert(_receivedData.end(), inData, inData + len);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
LOGD("Emtpy message received, index=%d!\n", packageIndex);
|
|
|
|
}
|
|
|
|
|
|
|
|
// If no more data pending, send it to the client thread
|
|
|
|
size_t remainingSize = lws_remaining_packet_payload(_wsInstance);
|
|
|
|
int isFinalFragment = lws_is_final_fragment(_wsInstance);
|
|
|
|
// LOGD("remainingSize: %d, isFinalFragment: %d\n", (int)remainingSize, isFinalFragment);
|
|
|
|
|
|
|
|
if (remainingSize == 0 && isFinalFragment)
|
|
|
|
{
|
2016-01-11 09:56:27 +08:00
|
|
|
std::vector<char>* frameData = new (std::nothrow) std::vector<char>(std::move(_receivedData));
|
2016-01-07 23:15:11 +08:00
|
|
|
|
|
|
|
// reset capacity of received data buffer
|
|
|
|
_receivedData.reserve(WS_RESERVE_RECEIVE_BUFFER_SIZE);
|
|
|
|
|
|
|
|
ssize_t frameSize = frameData->size();
|
|
|
|
|
|
|
|
bool isBinary = lws_frame_is_binary(_wsInstance);
|
|
|
|
|
|
|
|
if (!isBinary)
|
|
|
|
{
|
|
|
|
frameData->push_back('\0');
|
|
|
|
}
|
|
|
|
|
2016-01-22 17:43:30 +08:00
|
|
|
std::shared_ptr<bool> isDestroyed = _isDestroyed;
|
|
|
|
_wsHelper->sendMessageToCocosThread([this, frameData, frameSize, isBinary, isDestroyed](){
|
2016-01-07 23:15:11 +08:00
|
|
|
// In UI thread
|
|
|
|
LOGD("Notify data len %d to Cocos thread.\n", (int)frameSize);
|
|
|
|
|
|
|
|
Data data;
|
|
|
|
data.isBinary = isBinary;
|
|
|
|
data.bytes = (char*)frameData->data();
|
|
|
|
data.len = frameSize;
|
|
|
|
|
2016-01-22 17:43:30 +08:00
|
|
|
if (*isDestroyed)
|
|
|
|
{
|
|
|
|
LOGD("WebSocket instance was destroyed!\n");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
_delegate->onMessage(this, data);
|
|
|
|
}
|
2016-01-07 23:15:11 +08:00
|
|
|
|
|
|
|
delete frameData;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void WebSocket::onConnectionOpened()
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* start the ball rolling,
|
|
|
|
* LWS_CALLBACK_CLIENT_WRITEABLE will come next service
|
|
|
|
*/
|
|
|
|
lws_callback_on_writable(_wsInstance);
|
|
|
|
|
2016-01-22 17:43:30 +08:00
|
|
|
_readStateMutex.lock();
|
2016-01-07 23:15:11 +08:00
|
|
|
_readyState = State::OPEN;
|
2016-01-22 17:43:30 +08:00
|
|
|
_readStateMutex.unlock();
|
2016-01-07 23:15:11 +08:00
|
|
|
|
2016-01-22 17:43:30 +08:00
|
|
|
std::shared_ptr<bool> isDestroyed = _isDestroyed;
|
|
|
|
_wsHelper->sendMessageToCocosThread([this, isDestroyed](){
|
|
|
|
if (*isDestroyed)
|
|
|
|
{
|
|
|
|
LOGD("WebSocket instance was destroyed!\n");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
_delegate->onOpen(this);
|
|
|
|
}
|
2016-01-07 23:15:11 +08:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
void WebSocket::onConnectionError()
|
|
|
|
{
|
2016-01-09 18:07:48 +08:00
|
|
|
LOGD("WebSocket (%p) onConnectionError ...\n", this);
|
2016-01-13 21:07:04 +08:00
|
|
|
|
2016-01-22 17:43:30 +08:00
|
|
|
_readStateMutex.lock();
|
2016-01-07 23:15:11 +08:00
|
|
|
_readyState = State::CLOSING;
|
2016-01-22 17:43:30 +08:00
|
|
|
_readStateMutex.unlock();
|
2016-01-07 23:15:11 +08:00
|
|
|
|
2016-01-22 17:43:30 +08:00
|
|
|
std::shared_ptr<bool> isDestroyed = _isDestroyed;
|
|
|
|
_wsHelper->sendMessageToCocosThread([this, isDestroyed](){
|
|
|
|
if (*isDestroyed)
|
|
|
|
{
|
|
|
|
LOGD("WebSocket instance was destroyed!\n");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
_delegate->onError(this, ErrorCode::CONNECTION_FAILURE);
|
|
|
|
}
|
2016-01-07 23:15:11 +08:00
|
|
|
});
|
2013-05-31 23:13:03 +08:00
|
|
|
}
|
|
|
|
|
2016-01-07 23:15:11 +08:00
|
|
|
void WebSocket::onConnectionClosed()
|
|
|
|
{
|
2016-01-22 17:43:30 +08:00
|
|
|
_readStateMutex.lock();
|
2016-01-07 23:15:11 +08:00
|
|
|
if (_readyState == State::CLOSED)
|
|
|
|
{
|
2016-01-22 17:43:30 +08:00
|
|
|
LOGD("onConnectionClosed: WebSocket (%p) was closed, no need to close it again!\n", this);
|
|
|
|
_readStateMutex.unlock();
|
2016-01-07 23:15:11 +08:00
|
|
|
return;
|
|
|
|
}
|
2016-01-13 21:07:04 +08:00
|
|
|
|
2016-01-13 18:53:38 +08:00
|
|
|
LOGD("WebSocket (%p) onConnectionClosed ...\n", this);
|
2016-01-07 23:15:11 +08:00
|
|
|
_readyState = State::CLOSED;
|
2016-01-22 17:43:30 +08:00
|
|
|
_readStateMutex.unlock();
|
2016-01-07 23:15:11 +08:00
|
|
|
|
2016-01-13 21:04:48 +08:00
|
|
|
_wsHelper->quitWebSocketThread();
|
2016-01-22 17:43:30 +08:00
|
|
|
std::shared_ptr<bool> isDestroyed = _isDestroyed;
|
|
|
|
_wsHelper->sendMessageToCocosThread([this, isDestroyed](){
|
|
|
|
if (*isDestroyed)
|
|
|
|
{
|
|
|
|
LOGD("WebSocket instance was destroyed!\n");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Waiting for the subThread safety exit
|
|
|
|
_wsHelper->joinWebSocketThread();
|
|
|
|
_delegate->onClose(this);
|
|
|
|
}
|
2016-01-07 23:15:11 +08:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
int WebSocket::onSocketCallback(struct lws *wsi,
|
2013-07-25 10:33:19 +08:00
|
|
|
int reason,
|
2013-12-06 16:32:06 +08:00
|
|
|
void *user, void *in, ssize_t len)
|
2013-05-31 23:13:03 +08:00
|
|
|
{
|
2016-01-13 18:53:38 +08:00
|
|
|
//LOGD("socket callback for %d reason\n", reason);
|
2013-05-31 23:13:03 +08:00
|
|
|
|
2016-01-07 23:15:11 +08:00
|
|
|
switch (reason)
|
2013-05-31 23:13:03 +08:00
|
|
|
{
|
|
|
|
case LWS_CALLBACK_CLIENT_ESTABLISHED:
|
2016-01-07 23:15:11 +08:00
|
|
|
onConnectionOpened();
|
2013-05-31 23:13:03 +08:00
|
|
|
break;
|
2016-01-13 21:07:04 +08:00
|
|
|
|
2016-01-13 18:53:38 +08:00
|
|
|
case LWS_CALLBACK_CLIENT_CONNECTION_ERROR:
|
|
|
|
onConnectionError();
|
2013-05-31 23:13:03 +08:00
|
|
|
break;
|
|
|
|
|
2016-01-13 18:53:38 +08:00
|
|
|
case LWS_CALLBACK_PROTOCOL_DESTROY:
|
2016-01-07 23:15:11 +08:00
|
|
|
case LWS_CALLBACK_CLOSED:
|
|
|
|
onConnectionClosed();
|
2013-05-31 23:13:03 +08:00
|
|
|
break;
|
|
|
|
|
2016-01-07 23:15:11 +08:00
|
|
|
case LWS_CALLBACK_CLIENT_RECEIVE:
|
|
|
|
onClientReceivedData(in, len);
|
2013-05-31 23:13:03 +08:00
|
|
|
break;
|
2016-01-13 21:07:04 +08:00
|
|
|
|
2016-01-13 18:53:38 +08:00
|
|
|
case LWS_CALLBACK_CLIENT_WRITEABLE:
|
|
|
|
onClientWritable();
|
|
|
|
break;
|
2016-01-13 21:07:04 +08:00
|
|
|
|
2013-05-31 23:13:03 +08:00
|
|
|
default:
|
2016-01-13 18:53:38 +08:00
|
|
|
// LOGD("Unhandled websocket event: %d\n", reason);
|
2013-05-31 23:13:03 +08:00
|
|
|
break;
|
|
|
|
}
|
2016-01-07 23:15:11 +08:00
|
|
|
|
|
|
|
return 0;
|
2013-05-31 23:13:03 +08:00
|
|
|
}
|
2013-06-07 21:23:15 +08:00
|
|
|
|
2013-10-15 18:00:03 +08:00
|
|
|
}
|
2014-01-02 16:25:35 +08:00
|
|
|
|
|
|
|
NS_CC_END
|