mirror of https://github.com/axmolengine/axmol.git
257 lines
8.0 KiB
C++
257 lines
8.0 KiB
C++
/****************************************************************************
|
|
Copyright (c) 2010-2012 cocos2d-x.org
|
|
Copyright (c) 2013-2014 Chukong Technologies Inc.
|
|
|
|
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.
|
|
|
|
"[WebSocket module] is based in part on the work of the libwebsockets project
|
|
(http://libwebsockets.org)"
|
|
|
|
****************************************************************************/
|
|
|
|
#ifndef __CC_WEBSOCKET_H__
|
|
#define __CC_WEBSOCKET_H__
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
#include <mutex>
|
|
#include <memory> // for std::shared_ptr
|
|
#include <atomic>
|
|
|
|
#include "platform/CCPlatformMacros.h"
|
|
#include "platform/CCStdC.h"
|
|
|
|
struct lws;
|
|
struct lws_context;
|
|
struct lws_protocols;
|
|
|
|
/**
|
|
* @addtogroup network
|
|
* @{
|
|
*/
|
|
|
|
NS_CC_BEGIN
|
|
|
|
class EventListenerCustom;
|
|
|
|
namespace network {
|
|
|
|
class WsThreadHelper;
|
|
|
|
/**
|
|
* WebSocket is wrapper of the libwebsockets-protocol, let the develop could call the websocket easily.
|
|
* Please note that all public methods of WebSocket have to be invoked on Cocos Thread.
|
|
*/
|
|
class CC_DLL WebSocket
|
|
{
|
|
public:
|
|
/**
|
|
* Close all connections and wait for all websocket threads to exit
|
|
* @note This method has to be invoked on Cocos Thread
|
|
*/
|
|
static void closeAllConnections();
|
|
|
|
/**
|
|
* Constructor of WebSocket.
|
|
*
|
|
* @js ctor
|
|
*/
|
|
WebSocket();
|
|
/**
|
|
* Destructor of WebSocket.
|
|
*
|
|
* @js NA
|
|
* @lua NA
|
|
*/
|
|
virtual ~WebSocket();
|
|
|
|
/**
|
|
* Data structure for message
|
|
*/
|
|
struct Data
|
|
{
|
|
Data():bytes(nullptr), len(0), issued(0), isBinary(false), ext(nullptr){}
|
|
char* bytes;
|
|
ssize_t len, issued;
|
|
bool isBinary;
|
|
void* ext;
|
|
};
|
|
|
|
/**
|
|
* ErrorCode enum used to represent the error in the websocket.
|
|
*/
|
|
enum class ErrorCode
|
|
{
|
|
TIME_OUT, /** < value 0 */
|
|
CONNECTION_FAILURE, /** < value 1 */
|
|
UNKNOWN, /** < value 2 */
|
|
};
|
|
|
|
/**
|
|
* State enum used to represent the Websocket state.
|
|
*/
|
|
enum class State
|
|
{
|
|
CONNECTING, /** < value 0 */
|
|
OPEN, /** < value 1 */
|
|
CLOSING, /** < value 2 */
|
|
CLOSED, /** < value 3 */
|
|
};
|
|
|
|
/**
|
|
* The delegate class is used to process websocket events.
|
|
*
|
|
* The most member function are pure virtual functions,they should be implemented the in subclass.
|
|
* @lua NA
|
|
*/
|
|
class Delegate
|
|
{
|
|
public:
|
|
/** Destructor of Delegate. */
|
|
virtual ~Delegate() {}
|
|
/**
|
|
* This function to be called after the client connection complete a handshake with the remote server.
|
|
* This means that the WebSocket connection is ready to send and receive data.
|
|
*
|
|
* @param ws The WebSocket object connected
|
|
*/
|
|
virtual void onOpen(WebSocket* ws) = 0;
|
|
/**
|
|
* This function to be called when data has appeared from the server for the client connection.
|
|
*
|
|
* @param ws The WebSocket object connected.
|
|
* @param data Data object for message.
|
|
*/
|
|
virtual void onMessage(WebSocket* ws, const Data& data) = 0;
|
|
/**
|
|
* When the WebSocket object connected wants to close or the protocol won't get used at all and current _readyState is State::CLOSING,this function is to be called.
|
|
*
|
|
* @param ws The WebSocket object connected.
|
|
*/
|
|
virtual void onClose(WebSocket* ws) = 0;
|
|
/**
|
|
* This function is to be called in the following cases:
|
|
* 1. client connection is failed.
|
|
* 2. the request client connection has been unable to complete a handshake with the remote server.
|
|
* 3. the protocol won't get used at all after this callback and current _readyState is State::CONNECTING.
|
|
* 4. when a socket descriptor needs to be removed from an external polling array. in is again the struct libwebsocket_pollargs containing the fd member to be removed. If you are using the internal polling loop, you can just ignore it and current _readyState is State::CONNECTING.
|
|
*
|
|
* @param ws The WebSocket object connected.
|
|
* @param error WebSocket::ErrorCode enum,would be ErrorCode::TIME_OUT or ErrorCode::CONNECTION_FAILURE.
|
|
*/
|
|
virtual void onError(WebSocket* ws, const ErrorCode& error) = 0;
|
|
};
|
|
|
|
|
|
/**
|
|
* @brief The initialized method for websocket.
|
|
* It needs to be invoked right after websocket instance is allocated.
|
|
* @param delegate The delegate which want to receive event from websocket.
|
|
* @param url The URL of websocket server.
|
|
* @return true: Success, false: Failure.
|
|
* @lua NA
|
|
*/
|
|
bool init(const Delegate& delegate,
|
|
const std::string& url,
|
|
const std::vector<std::string>* protocols = nullptr);
|
|
|
|
/**
|
|
* @brief Sends string data to websocket server.
|
|
*
|
|
* @param message string data.
|
|
* @lua sendstring
|
|
*/
|
|
void send(const std::string& message);
|
|
|
|
/**
|
|
* @brief Sends binary data to websocket server.
|
|
*
|
|
* @param binaryMsg binary string data.
|
|
* @param len the size of binary string data.
|
|
* @lua sendstring
|
|
*/
|
|
void send(const unsigned char* binaryMsg, unsigned int len);
|
|
|
|
/**
|
|
* @brief Closes the connection to server synchronously.
|
|
* @note It's a synchronous method, it will not return until websocket thread exits.
|
|
*/
|
|
void close();
|
|
|
|
/**
|
|
* @brief Closes the connection to server asynchronously.
|
|
* @note It's an asynchronous method, it just notifies websocket thread to exit and returns directly,
|
|
* If using 'closeAsync' to close websocket connection,
|
|
* be careful of not using destructed variables in the callback of 'onClose'.
|
|
*/
|
|
void closeAsync();
|
|
|
|
/**
|
|
* @brief Gets current state of connection.
|
|
* @return State the state value could be State::CONNECTING, State::OPEN, State::CLOSING or State::CLOSED
|
|
*/
|
|
State getReadyState();
|
|
|
|
private:
|
|
void onSubThreadStarted();
|
|
void onSubThreadLoop();
|
|
void onSubThreadEnded();
|
|
|
|
// The following callback functions are invoked in websocket thread
|
|
int onSocketCallback(struct lws *wsi, int reason, void *user, void *in, ssize_t len);
|
|
|
|
void onClientWritable();
|
|
void onClientReceivedData(void* in, ssize_t len);
|
|
void onConnectionOpened();
|
|
void onConnectionError();
|
|
void onConnectionClosed();
|
|
|
|
private:
|
|
std::mutex _readStateMutex;
|
|
State _readyState;
|
|
std::string _host;
|
|
unsigned int _port;
|
|
std::string _path;
|
|
|
|
std::vector<char> _receivedData;
|
|
|
|
friend class WsThreadHelper;
|
|
friend class WebSocketCallbackWrapper;
|
|
WsThreadHelper* _wsHelper;
|
|
|
|
struct lws* _wsInstance;
|
|
struct lws_context* _wsContext;
|
|
std::shared_ptr<std::atomic<bool>> _isDestroyed;
|
|
Delegate* _delegate;
|
|
int _SSLConnection;
|
|
struct lws_protocols* _wsProtocols;
|
|
EventListenerCustom* _resetDirectorListener;
|
|
};
|
|
|
|
}
|
|
|
|
NS_CC_END
|
|
|
|
// end group
|
|
/// @}
|
|
|
|
#endif /* defined(__CC_JSB_WEBSOCKET_H__) */
|