thread_safe_map.h 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256
  1. /**
  2. * @brief
  3. 线程安全模板类
  4. * @version
  5. V 1.0.0
  6. * @author
  7. 王益俊
  8. * @date
  9. 创建时间: 2018-08-20\n
  10. * @note
  11. 2018-08-20 创建类。\n
  12. * @warning
  13. * @bug
  14. */
  15. #pragma once
  16. #include <map>
  17. #include <stdint.h>
  18. #include <boost/thread/mutex.hpp>
  19. template<class Key, class T>
  20. class thread_safe_map
  21. {
  22. private:
  23. std::map<Key, T> __map;
  24. mutable boost::mutex the_mutex;
  25. public:
  26. /**
  27. * @brief
  28. 重置函数。
  29. * @param [in] const Key &inputKey key\n
  30. * @param [in] const T &inputValue value\n
  31. * @return 无\n
  32. * @note
  33. * @warning
  34. * @bug
  35. */
  36. void insert( const Key &inputKey, const T &inputValue )
  37. {
  38. boost::mutex::scoped_lock lock( the_mutex );
  39. __map.insert( std::pair<Key, T>( inputKey, inputValue ) );
  40. }
  41. /**
  42. * @brief
  43. 返回map是否为空函数。
  44. * @param 无\n
  45. * @return 是否为空\n
  46. * @retval true 为空\n
  47. * @retval false 不为空\n
  48. * @note
  49. * @warning
  50. * @bug
  51. */
  52. bool empty() const
  53. {
  54. boost::mutex::scoped_lock lock( the_mutex );
  55. return __map.empty();
  56. }
  57. /**
  58. * @brief
  59. 用某个key获取值的函数。
  60. * @param [in] const Key &inputKey 指定的key\n
  61. * @param [out] T &outputValue 获得的值\n
  62. * @return 是否获取成功\n
  63. * @retval true 成功\n
  64. * @retval false 失败\n
  65. * @note
  66. * @warning
  67. * @bug
  68. */
  69. bool get( const Key &inputKey, T &outputValue )
  70. {
  71. boost::mutex::scoped_lock lock( the_mutex );
  72. typename std::map<Key, T>::iterator it;
  73. it = __map.find( inputKey );
  74. if ( __map.end() == it )
  75. {
  76. return false;
  77. }
  78. outputValue = it->second;
  79. return true;
  80. }
  81. /**
  82. * @brief
  83. 用查找某个key是否存在的函数。
  84. * @param [in] const Key &inputKey 指定的key\n
  85. * @return 是否存在\n
  86. * @retval true 存在\n
  87. * @retval false 不存在\n
  88. * @note
  89. * @warning
  90. * @bug
  91. */
  92. bool seek( const Key &inputKey )
  93. {
  94. boost::mutex::scoped_lock lock( the_mutex );
  95. typename std::map<Key, T>::iterator it;
  96. it = __map.find( inputKey );
  97. if ( __map.end() == it )
  98. {
  99. return false;
  100. }
  101. return true;
  102. }
  103. /**
  104. * @brief
  105. 更新某个key对应值的函数。
  106. * @param [in] const Key &inputKey 指定的key\n
  107. * @param [out] T &outputValue 获得的值\n
  108. * @return 是否获取成功\n
  109. * @retval true 成功\n
  110. * @retval false 失败\n
  111. * @note
  112. * @warning
  113. * @bug
  114. */
  115. bool update( const Key &inputKey, const T &inputValue )
  116. {
  117. boost::mutex::scoped_lock lock( the_mutex );
  118. typename std::map<Key, T>::iterator it;
  119. it = __map.find( inputKey );
  120. if ( __map.end() == it )
  121. {
  122. return false;
  123. }
  124. it->second = inputValue;
  125. return true;
  126. }
  127. /**
  128. * @brief
  129. 根据某个key删除值的函数。
  130. * @param [in] const Key &inputKey 指定的key\n
  131. * @return 无\n
  132. * @note
  133. * @warning
  134. * @bug
  135. */
  136. void erase( const Key &inputKey )
  137. {
  138. boost::mutex::scoped_lock lock( the_mutex );
  139. __map.erase( inputKey );
  140. }
  141. /**
  142. * @brief
  143. 获得大小的函数。
  144. * @param 无\n
  145. * @return 无\n
  146. * @note
  147. * @warning
  148. * @bug
  149. */
  150. size_t size() const
  151. {
  152. boost::mutex::scoped_lock lock( the_mutex );
  153. return __map.size();
  154. }
  155. /**
  156. * @brief
  157. 清除map的函数。
  158. * @param 无\n
  159. * @return 无\n
  160. * @note
  161. * @warning
  162. * @bug
  163. */
  164. void clear()
  165. {
  166. boost::mutex::scoped_lock lock( the_mutex );
  167. __map.clear();
  168. }
  169. /**
  170. * @brief
  171. 拷贝map的函数。
  172. * @param 无\n
  173. * @return 无\n
  174. * @note
  175. * @warning
  176. * @bug
  177. */
  178. void copy( std::map<Key, T>& dest_map )
  179. {
  180. boost::mutex::scoped_lock lock( the_mutex );
  181. dest_map = __map;
  182. }
  183. };