wsClient.h 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  1. /**
  2. * @brief
  3. websocket客户端类
  4. * @version
  5. V 1.0.0
  6. * @author
  7. * @date
  8. 创建时间: 2018-08-14\n
  9. * @note
  10. 2018-08-14 创建类。\n
  11. * @warning
  12. * @bug
  13. */
  14. #pragma once
  15. #include <string>
  16. #include <mutex>
  17. #include <condition_variable>
  18. #include <map>
  19. #include <atomic>
  20. #include <rapidjson/writer.h>
  21. #include <rapidjson/stringbuffer.h>
  22. #include <rapidjson/prettywriter.h>
  23. #include <boost/function.hpp>
  24. #include <boost/bind.hpp>
  25. #include "sio_client.h"
  26. #include "jsonBuilder.h"
  27. #include "sio_message.h"
  28. namespace YA
  29. {
  30. //消息处理函数类型
  31. typedef boost::function<void( int, std::string const&, sio::message::ptr const&, bool, sio::message::list & )> MSG_HANDLE_FUNC_TYPE;
  32. class wsClient
  33. {
  34. public:
  35. std::map<std::string, MSG_HANDLE_FUNC_TYPE> __MsgFuncList;//消息处理函数列表(key是命令,value是处理函数)
  36. private:
  37. sio::client __wsclient;//websocket客户端
  38. int __ID;//唯一标识
  39. std::string __uri;//连接字符串
  40. bool __Connected;//是否连接上服务器端
  41. bool __SktOpened;//Socket是否已打开
  42. bool __Logined;//是否已登录成功
  43. std::condition_variable_any __cond;//条件变量
  44. std::mutex __lock;//锁(配合__cond)
  45. std::string __LastError;//最新错误
  46. std::recursive_mutex __send_lock;//发送锁
  47. jsonBuilder __jsBuilder;//json构造器
  48. std::atomic<unsigned int> __connet_time; //连接时间
  49. std::atomic<unsigned int> __recv_ping_time; //接受ping消息的时间
  50. protected:
  51. /**
  52. * @brief 重置状态函数。
  53. */
  54. void _reset();
  55. /**
  56. * @brief 连接成功回调函数。
  57. */
  58. void _on_connected();
  59. /**
  60. * @brief 连接关闭回调函数。
  61. * @param [in] sio::client::close_reason const& reason 关闭的原因\n
  62. */
  63. void _on_close( sio::client::close_reason const& reason );
  64. /**
  65. * @brief 重连回调函数。
  66. * @param [in] unsigned p1 ???\n
  67. * @param [in] unsigned p2 ???\n
  68. */
  69. void _on_reconnect( unsigned p1, unsigned p2 );
  70. /**
  71. * @brief 失败回调函数。
  72. */
  73. void _on_fail();
  74. /**
  75. * @brief socket打开成功回调函数。
  76. */
  77. void _on_socket_opened();
  78. /**
  79. * @brief 收到服务器端CALL命令回调函数。
  80. * @param [in] std::string const& name 触发的名字\n
  81. * @param [in] sio::message::ptr const& data 收到的消息数据\n
  82. * @param [in] bool need_ack 是否需要应答\n
  83. * @param [in] sio::message::list &ack_resp 应答消息数据\n
  84. */
  85. void _OnCallMessage( std::string const& name, sio::message::ptr const& data, bool need_ack, sio::message::list &ack_resp );
  86. /**
  87. * @brief 收到服务器端登录应答命令回调函数。
  88. * @param [in] std::string const& name 触发的名字\n
  89. * @param [in] sio::message::ptr const& data 收到的消息数据\n
  90. * @param [in] bool need_ack 是否需要应答\n
  91. * @param [in] sio::message::list &ack_resp 应答消息数据\n
  92. */
  93. void _OnLoginResponse( std::string const& name, sio::message::ptr const& data, bool need_ack, sio::message::list &ack_resp );
  94. sio::message::ptr light_ctrl_to_sio_message(const std::string& val);
  95. public:
  96. wsClient();
  97. ~wsClient();
  98. std::shared_ptr<wsClient> clone();
  99. /**
  100. * @brief 初始化函数。
  101. * @param [in] int ID 当前客户端的唯一标识\n
  102. * @param [in] const std::string & uri 连接串\n
  103. * @param [in] const std::map<std::string, MSG_HANDLE_FUNC_TYPE>& MsgFuncList 消息处理函数\n
  104. */
  105. void init( int ID, const std::string & uri, const std::map<std::string, MSG_HANDLE_FUNC_TYPE>& MsgFuncList );
  106. /**
  107. * @brief 获得连接字符串函数。
  108. * @return 获得的连接字符串\n
  109. */
  110. std::string get_uri();
  111. /**
  112. * @brief 连接函数。
  113. * @param [in] int time_out 超时(单位:秒),默认是3秒\n
  114. * @return 连接服务器是否成功\n
  115. * @retval 0 成功\n
  116. * @retval -1 失败\n
  117. */
  118. int connect( int time_out = 3 );
  119. /**
  120. * @brief ;登录函数。
  121. */
  122. void login();
  123. /**
  124. * @brief 发送数据函数。
  125. * @param [in] const std::string & Cmd 要发送的命令\n
  126. * @param [in] const std::string& Data 要发送的数据\n
  127. */
  128. void send( const std::string & Cmd, const std::string & Data );
  129. /**
  130. * @brief 获得ID函数。
  131. */
  132. int GetID();
  133. /**
  134. * @brief 获得是否已连接服务器端函数。
  135. */
  136. bool IsConnected();
  137. /**
  138. * @brief 获得Socket是否已打开函数。
  139. * @return Socket是否已打开\n
  140. */
  141. bool IsSktOpened();
  142. /**
  143. * @brief 获得是否已登录成功函数。
  144. * @return 是否已登录成功\n
  145. */
  146. bool IsLogined();
  147. /**
  148. * @brief 关闭函数。
  149. */
  150. void close();
  151. /**
  152. * @brief 获得最新错误函数。
  153. */
  154. std::string GetLastError();
  155. /**
  156. * @brief 获取删除ping的时间。
  157. */
  158. int GetPingTime() const ;
  159. sio::message::ptr to_sio_message(const std::string& val);
  160. sio::message::ptr from_json(const rapidjson::Value& val);
  161. sio::message::ptr from_array(const rapidjson::Value& val);
  162. };
  163. }