1
0

wsTimerThread.h 3.4 KB

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