wsTimerThread.h 3.1 KB

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