wsTimerThread.h 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215
  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. private:
  42. /**
  43. * @brief
  44. 重置函数。
  45. * @param 无\n
  46. * @return 无\n
  47. * @note
  48. * @warning
  49. * @bug
  50. */
  51. void __Reset();
  52. /**
  53. * @brief
  54. 检查线程配置是否合法函数。
  55. * @param 无\n
  56. * @return 无\n
  57. * @note
  58. * @warning
  59. * @bug
  60. */
  61. void __ChkConfig();
  62. /**
  63. * @brief
  64. 发送卡位置函数。
  65. * @param 无\n
  66. * @return 无\n
  67. * @note
  68. * @warning
  69. * @bug
  70. */
  71. void __SendCardPos();
  72. void send_card_pos();
  73. void temp_send_card_pos();
  74. void send_light_state();
  75. void send_device_state();
  76. protected:
  77. /**
  78. * @brief
  79. 线程函数。
  80. * @param [in] wsTimerThread* pOwner 线程所属者\n
  81. * @return 无\n
  82. * @note
  83. * @warning
  84. * @bug
  85. */
  86. void _ThreadFunc( wsTimerThread* pOwner );
  87. public:
  88. wsTimerThread();
  89. ~wsTimerThread();
  90. /**
  91. * @brief
  92. 启动线程函数。
  93. * @param 无\n
  94. * @return 无\n
  95. * @note
  96. * @warning
  97. * @bug
  98. */
  99. void Start();
  100. /**
  101. * @brief
  102. 停止线程函数。
  103. * @param 无\n
  104. * @return 无\n
  105. * @note
  106. * @warning
  107. * @bug
  108. */
  109. void Stop();
  110. /**
  111. * @brief
  112. 初始化函数。
  113. * @param [in] const _THREAD_CONFIG_& Config 线程配置\n
  114. * @return 无\n
  115. * @note
  116. * @warning
  117. * @bug
  118. */
  119. void Init( const _THREAD_CONFIG_& Config );
  120. /**
  121. * @brief
  122. 更新卡位置函数。
  123. * @param [in] const _CARD_POS_& pos 卡位置结构体\n
  124. * @return 无\n
  125. * @note
  126. * @warning
  127. * @bug
  128. */
  129. void upt_card_pos( const _CARD_POS_& pos );
  130. void real_upt_card_pos(const _CARD_POS_& pos);
  131. /**
  132. * @brief
  133. 删除卡位置函数。
  134. * @param [in] const _CARD_POS_& pos 卡位置结构体\n
  135. * @return 无\n
  136. * @note
  137. * @warning
  138. * @bug
  139. */
  140. void del_card_pos( const _CARD_POS_& pos );
  141. void upt_light_state(const light_state& light);
  142. void upt_device_state(const device_state& ds);
  143. };
  144. }
  145. //单件定义
  146. typedef boost::serialization::singleton<sys::wsTimerThread> singleton_wsTimerThread;
  147. #define swsTimerThrd singleton_wsTimerThread::get_mutable_instance()
  148. #define swsTimerThrd_const singleton_wsTimerThread::get_const_instance()