wsClientMgr.h 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. /**
  2. * @brief
  3. websocket客户端管理器类
  4. * @version
  5. V 1.0.0
  6. * @author
  7. * @date
  8. 创建时间: 2018-08-17\n
  9. * @note
  10. 2018-08-17 创建类。\n
  11. * @warning
  12. * @bug
  13. */
  14. #pragma once
  15. #include <vector>
  16. #include <string>
  17. #include <map>
  18. #include <boost/serialization/singleton.hpp>
  19. #include "wsClient.h"
  20. #include "ws_common.h"
  21. #include "jsonBuilder.h"
  22. namespace sys
  23. {
  24. class wsClientMgr
  25. {
  26. private:
  27. std::vector<std::shared_ptr<wsClient>> __wsClientList;//ws客户端列表
  28. std::map<std::string,int> __uriIndexList;//uri和客户端下标对应表
  29. std::string __LastError;//最新错误
  30. std::recursive_mutex __lock;//锁
  31. jsonBuilder __jsBuilder;//json生成器
  32. public:
  33. wsClientMgr();
  34. ~wsClientMgr();
  35. /**
  36. * @brief 重载[]运算符。
  37. * @param [in] int index 下标\n
  38. * @return 下标对应的客户端连接\n
  39. */
  40. std::shared_ptr<wsClient> operator[]( int index )
  41. {
  42. std::lock_guard<std::recursive_mutex> lock( __lock );
  43. std::shared_ptr<wsClient> pClient;
  44. if ( index < 0 )
  45. {
  46. return pClient;
  47. }
  48. if ( index < (int)__wsClientList.size() )
  49. {
  50. pClient = __wsClientList[index];
  51. }
  52. return pClient;
  53. }
  54. /**
  55. * @brief 构造函数。
  56. * @param [in] const std::vector<std::string> uri_list 服务器uri列表\n
  57. * @param [in] const std::map<std::string, MSG_HANDLE_FUNC_TYPE>& MsgFuncList 处理函数列表\n
  58. * @return 连接服务器是否成功\n @retval 0: 成功 -1: 失败\n
  59. */
  60. void Build( const std::vector<std::string> uri_list, const std::map<std::string, MSG_HANDLE_FUNC_TYPE>& MsgFuncList );
  61. /**
  62. * @brief 连接函数。
  63. * @param [in] int time_out 超时(单位:秒),默认是3秒\n
  64. * @return 连接服务器是否成功.0: 成功 -1: 失败\n
  65. */
  66. int connect( int time_out = 3 );
  67. /**
  68. * @brief 登录函数。
  69. */
  70. void login();
  71. /**
  72. * @brief 发送数据函数。
  73. * @param [in] const std::string & Cmd 要发送的命令\n
  74. * @param [in] const std::string& Data 要发送的数据\n
  75. */
  76. void send( const std::string & Cmd, const std::string & Data );
  77. /**
  78. * @brief 根据URI(连接串)获得对应的客户端函数。
  79. * @param [in] const std::string& URI \n
  80. * @return 获得的客户端连接\n
  81. */
  82. std::shared_ptr<wsClient> GetClientByURI( const std::string& URI );
  83. /**
  84. * @brief 关闭函数。
  85. */
  86. void close();
  87. /**
  88. * @brief 获得是否已连接服务器端函数。
  89. * @return 是否已连接服务器\n
  90. */
  91. bool IsConnected();
  92. /**
  93. * @brief 获得是否已登录成功函数。
  94. * @return 是否已登录成功\n
  95. */
  96. bool IsLogined();
  97. /**
  98. * @brief 获得Socket是否已打开函数。
  99. * @return Socket是否已打开\n
  100. */
  101. bool IsSktOpened();
  102. /**
  103. * @brief 发送车辆进入特殊区域函数。
  104. * @param [in] const _BASE_CARD_& stCard 卡结构体\n
  105. */
  106. void SendSpecialAreaProcess( const _BASE_CARD_& stCard );
  107. /**
  108. * @brief 检测是否有连接断开,并重连
  109. * @param [in] cur_time : 当前时刻 (秒)
  110. */
  111. void CheckClientConnect(unsigned int cur_time);
  112. private:
  113. /**
  114. * @brief 指定的wsClient重连webServer。
  115. * @param [in] ws : 连接
  116. */
  117. void Reconnect(std::shared_ptr<wsClient> & ws);
  118. /**
  119. * @brief 断开指定的wsCliennt
  120. * @param [in] ws : 连接
  121. */
  122. void Disconnet(std::shared_ptr<wsClient> & ws);
  123. };
  124. }
  125. //单件相关定义
  126. typedef boost::serialization::singleton<sys::wsClientMgr> singleton_wsClientMgr;
  127. #define swsClientMgr singleton_wsClientMgr::get_mutable_instance()
  128. #define swsClientMgr_const singleton_wsClientMgr::get_const_instance()