wsTimerThread.h 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224
  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 <boost/thread.hpp>
  16. #include <boost/bind.hpp>
  17. #include <boost/atomic.hpp>
  18. #include <boost/shared_ptr.hpp>
  19. #include <boost/thread/condition.hpp>
  20. #include <boost/serialization/singleton.hpp>
  21. #include <ctime>
  22. #include "thread_safe_map.h"
  23. #include "ws_common.h"
  24. #include "jsonBuilder.h"
  25. #include <mutex>
  26. namespace sys
  27. {
  28. class wsTimerThread
  29. {
  30. private:
  31. boost::shared_ptr<boost::thread> __Thread;//线程
  32. boost::atomic<bool> __Enable;//线程是否继续运行的标志
  33. boost::atomic<bool> __Running;//线程是否正在运行的标志
  34. boost::condition_variable_any __ExitCond;//条件变量
  35. boost::mutex __ExitMutex;//锁(配合__ExitCond)
  36. _THREAD_CONFIG_ __Config;//线程配置
  37. thread_safe_map<uint64_t, _CARD_POS_> __CardPosList;//卡位置列表
  38. std::time_t __LastSendTime{0};//上一次发送的时间
  39. jsonBuilder __jsBuilder;//json构造器类
  40. std::mutex m_mtx; // 数据锁
  41. std::vector<light_state> light_state_list; // 红绿灯状态列表
  42. std::vector<device_state> device_state_list; // 设备状态列表
  43. std::vector<tof_data> tof_data_list; // tof数据待发送列表
  44. std::vector<sb_data> sb_data_list; // solid ball待发送数据列表
  45. private:
  46. /**
  47. * @brief
  48. 重置函数。
  49. * @param 无\n
  50. * @return 无\n
  51. * @note
  52. * @warning
  53. * @bug
  54. */
  55. void __Reset();
  56. /**
  57. * @brief
  58. 检查线程配置是否合法函数。
  59. * @param 无\n
  60. * @return 无\n
  61. * @note
  62. * @warning
  63. * @bug
  64. */
  65. void __ChkConfig();
  66. /**
  67. * @brief
  68. 发送卡位置函数。
  69. * @param 无\n
  70. * @return 无\n
  71. * @note
  72. * @warning
  73. * @bug
  74. */
  75. void __SendCardPos();
  76. void send_card_pos();
  77. void temp_send_card_pos();
  78. void send_light_state();
  79. void send_device_state();
  80. void send_tof_data();
  81. void send_solid_ball_data();
  82. protected:
  83. /**
  84. * @brief
  85. 线程函数。
  86. * @param [in] wsTimerThread* pOwner 线程所属者\n
  87. * @return 无\n
  88. * @note
  89. * @warning
  90. * @bug
  91. */
  92. void _ThreadFunc( wsTimerThread* pOwner );
  93. public:
  94. wsTimerThread();
  95. ~wsTimerThread();
  96. /**
  97. * @brief
  98. 启动线程函数。
  99. * @param 无\n
  100. * @return 无\n
  101. * @note
  102. * @warning
  103. * @bug
  104. */
  105. void Start();
  106. /**
  107. * @brief
  108. 停止线程函数。
  109. * @param 无\n
  110. * @return 无\n
  111. * @note
  112. * @warning
  113. * @bug
  114. */
  115. void Stop();
  116. /**
  117. * @brief
  118. 初始化函数。
  119. * @param [in] const _THREAD_CONFIG_& Config 线程配置\n
  120. * @return 无\n
  121. * @note
  122. * @warning
  123. * @bug
  124. */
  125. void Init( const _THREAD_CONFIG_& Config );
  126. /**
  127. * @brief
  128. 更新卡位置函数。
  129. * @param [in] const _CARD_POS_& pos 卡位置结构体\n
  130. * @return 无\n
  131. * @note
  132. * @warning
  133. * @bug
  134. */
  135. void upt_card_pos( const _CARD_POS_& pos );
  136. void real_upt_card_pos(const _CARD_POS_& pos);
  137. /**
  138. * @brief
  139. 删除卡位置函数。
  140. * @param [in] const _CARD_POS_& pos 卡位置结构体\n
  141. * @return 无\n
  142. * @note
  143. * @warning
  144. * @bug
  145. */
  146. void del_card_pos( const _CARD_POS_& pos );
  147. void upt_light_state(const light_state& light);
  148. void upt_device_state(const device_state& ds);
  149. void upt_tof_data(const tof_data& td);
  150. void upt_sb_data(const sb_data& val);
  151. };
  152. }
  153. //单件定义
  154. typedef boost::serialization::singleton<sys::wsTimerThread> singleton_wsTimerThread;
  155. #define swsTimerThrd singleton_wsTimerThread::get_mutable_instance()
  156. #define swsTimerThrd_const singleton_wsTimerThread::get_const_instance()