set_hook.hpp 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294
  1. /////////////////////////////////////////////////////////////////////////////
  2. //
  3. // (C) Copyright Olaf Krzikalla 2004-2006.
  4. // (C) Copyright Ion Gaztanaga 2006-2013
  5. //
  6. // Distributed under the Boost Software License, Version 1.0.
  7. // (See accompanying file LICENSE_1_0.txt or copy at
  8. // http://www.boost.org/LICENSE_1_0.txt)
  9. //
  10. // See http://www.boost.org/libs/intrusive for documentation.
  11. //
  12. /////////////////////////////////////////////////////////////////////////////
  13. #ifndef BOOST_INTRUSIVE_SET_HOOK_HPP
  14. #define BOOST_INTRUSIVE_SET_HOOK_HPP
  15. #include <boost/intrusive/detail/config_begin.hpp>
  16. #include <boost/intrusive/intrusive_fwd.hpp>
  17. #include <boost/intrusive/detail/rbtree_node.hpp>
  18. #include <boost/intrusive/rbtree_algorithms.hpp>
  19. #include <boost/intrusive/options.hpp>
  20. #include <boost/intrusive/detail/generic_hook.hpp>
  21. #if defined(BOOST_HAS_PRAGMA_ONCE)
  22. # pragma once
  23. #endif
  24. namespace boost {
  25. namespace intrusive {
  26. //! Helper metafunction to define a \c set_base_hook that yields to the same
  27. //! type when the same options (either explicitly or implicitly) are used.
  28. #if defined(BOOST_INTRUSIVE_DOXYGEN_INVOKED) || defined(BOOST_INTRUSIVE_VARIADIC_TEMPLATES)
  29. template<class ...Options>
  30. #else
  31. template<class O1 = void, class O2 = void, class O3 = void, class O4 = void>
  32. #endif
  33. struct make_set_base_hook
  34. {
  35. /// @cond
  36. typedef typename pack_options
  37. < hook_defaults,
  38. #if !defined(BOOST_INTRUSIVE_VARIADIC_TEMPLATES)
  39. O1, O2, O3, O4
  40. #else
  41. Options...
  42. #endif
  43. >::type packed_options;
  44. typedef generic_hook
  45. < rbtree_algorithms<rbtree_node_traits<typename packed_options::void_pointer, packed_options::optimize_size> >
  46. , typename packed_options::tag
  47. , packed_options::link_mode
  48. , RbTreeBaseHookId
  49. > implementation_defined;
  50. /// @endcond
  51. typedef implementation_defined type;
  52. };
  53. //! Derive a class from set_base_hook in order to store objects in
  54. //! in a set/multiset. set_base_hook holds the data necessary to maintain
  55. //! the set/multiset and provides an appropriate value_traits class for set/multiset.
  56. //!
  57. //! The hook admits the following options: \c tag<>, \c void_pointer<>,
  58. //! \c link_mode<> and \c optimize_size<>.
  59. //!
  60. //! \c tag<> defines a tag to identify the node.
  61. //! The same tag value can be used in different classes, but if a class is
  62. //! derived from more than one \c list_base_hook, then each \c list_base_hook needs its
  63. //! unique tag.
  64. //!
  65. //! \c void_pointer<> is the pointer type that will be used internally in the hook
  66. //! and the container configured to use this hook.
  67. //!
  68. //! \c link_mode<> will specify the linking mode of the hook (\c normal_link,
  69. //! \c auto_unlink or \c safe_link).
  70. //!
  71. //! \c optimize_size<> will tell the hook to optimize the hook for size instead
  72. //! of speed.
  73. #if defined(BOOST_INTRUSIVE_DOXYGEN_INVOKED) || defined(BOOST_INTRUSIVE_VARIADIC_TEMPLATES)
  74. template<class ...Options>
  75. #else
  76. template<class O1, class O2, class O3, class O4>
  77. #endif
  78. class set_base_hook
  79. : public make_set_base_hook<
  80. #if !defined(BOOST_INTRUSIVE_VARIADIC_TEMPLATES)
  81. O1, O2, O3, O4
  82. #else
  83. Options...
  84. #endif
  85. >::type
  86. {
  87. #if defined(BOOST_INTRUSIVE_DOXYGEN_INVOKED)
  88. public:
  89. //! <b>Effects</b>: If link_mode is \c auto_unlink or \c safe_link
  90. //! initializes the node to an unlinked state.
  91. //!
  92. //! <b>Throws</b>: Nothing.
  93. set_base_hook();
  94. //! <b>Effects</b>: If link_mode is \c auto_unlink or \c safe_link
  95. //! initializes the node to an unlinked state. The argument is ignored.
  96. //!
  97. //! <b>Throws</b>: Nothing.
  98. //!
  99. //! <b>Rationale</b>: Providing a copy-constructor
  100. //! makes classes using the hook STL-compliant without forcing the
  101. //! user to do some additional work. \c swap can be used to emulate
  102. //! move-semantics.
  103. set_base_hook(const set_base_hook& );
  104. //! <b>Effects</b>: Empty function. The argument is ignored.
  105. //!
  106. //! <b>Throws</b>: Nothing.
  107. //!
  108. //! <b>Rationale</b>: Providing an assignment operator
  109. //! makes classes using the hook STL-compliant without forcing the
  110. //! user to do some additional work. \c swap can be used to emulate
  111. //! move-semantics.
  112. set_base_hook& operator=(const set_base_hook& );
  113. //! <b>Effects</b>: If link_mode is \c normal_link, the destructor does
  114. //! nothing (ie. no code is generated). If link_mode is \c safe_link and the
  115. //! object is stored in a set an assertion is raised. If link_mode is
  116. //! \c auto_unlink and \c is_linked() is true, the node is unlinked.
  117. //!
  118. //! <b>Throws</b>: Nothing.
  119. ~set_base_hook();
  120. //! <b>Effects</b>: Swapping two nodes swaps the position of the elements
  121. //! related to those nodes in one or two containers. That is, if the node
  122. //! this is part of the element e1, the node x is part of the element e2
  123. //! and both elements are included in the containers s1 and s2, then after
  124. //! the swap-operation e1 is in s2 at the position of e2 and e2 is in s1
  125. //! at the position of e1. If one element is not in a container, then
  126. //! after the swap-operation the other element is not in a container.
  127. //! Iterators to e1 and e2 related to those nodes are invalidated.
  128. //!
  129. //! <b>Complexity</b>: Constant
  130. //!
  131. //! <b>Throws</b>: Nothing.
  132. void swap_nodes(set_base_hook &other);
  133. //! <b>Precondition</b>: link_mode must be \c safe_link or \c auto_unlink.
  134. //!
  135. //! <b>Returns</b>: true, if the node belongs to a container, false
  136. //! otherwise. This function can be used to test whether \c set::iterator_to
  137. //! will return a valid iterator.
  138. //!
  139. //! <b>Complexity</b>: Constant
  140. bool is_linked() const;
  141. //! <b>Effects</b>: Removes the node if it's inserted in a container.
  142. //! This function is only allowed if link_mode is \c auto_unlink.
  143. //!
  144. //! <b>Throws</b>: Nothing.
  145. void unlink();
  146. #endif
  147. };
  148. //! Helper metafunction to define a \c set_member_hook that yields to the same
  149. //! type when the same options (either explicitly or implicitly) are used.
  150. #if defined(BOOST_INTRUSIVE_DOXYGEN_INVOKED) || defined(BOOST_INTRUSIVE_VARIADIC_TEMPLATES)
  151. template<class ...Options>
  152. #else
  153. template<class O1 = void, class O2 = void, class O3 = void, class O4 = void>
  154. #endif
  155. struct make_set_member_hook
  156. {
  157. /// @cond
  158. typedef typename pack_options
  159. < hook_defaults,
  160. #if !defined(BOOST_INTRUSIVE_VARIADIC_TEMPLATES)
  161. O1, O2, O3, O4
  162. #else
  163. Options...
  164. #endif
  165. >::type packed_options;
  166. typedef generic_hook
  167. < rbtree_algorithms<rbtree_node_traits<typename packed_options::void_pointer, packed_options::optimize_size> >
  168. , member_tag
  169. , packed_options::link_mode
  170. , NoBaseHookId
  171. > implementation_defined;
  172. /// @endcond
  173. typedef implementation_defined type;
  174. };
  175. //! Put a public data member set_member_hook in order to store objects of this class in
  176. //! a set/multiset. set_member_hook holds the data necessary for maintaining the
  177. //! set/multiset and provides an appropriate value_traits class for set/multiset.
  178. //!
  179. //! The hook admits the following options: \c void_pointer<>,
  180. //! \c link_mode<> and \c optimize_size<>.
  181. //!
  182. //! \c void_pointer<> is the pointer type that will be used internally in the hook
  183. //! and the container configured to use this hook.
  184. //!
  185. //! \c link_mode<> will specify the linking mode of the hook (\c normal_link,
  186. //! \c auto_unlink or \c safe_link).
  187. //!
  188. //! \c optimize_size<> will tell the hook to optimize the hook for size instead
  189. //! of speed.
  190. #if defined(BOOST_INTRUSIVE_DOXYGEN_INVOKED) || defined(BOOST_INTRUSIVE_VARIADIC_TEMPLATES)
  191. template<class ...Options>
  192. #else
  193. template<class O1, class O2, class O3, class O4>
  194. #endif
  195. class set_member_hook
  196. : public make_set_member_hook<
  197. #if !defined(BOOST_INTRUSIVE_VARIADIC_TEMPLATES)
  198. O1, O2, O3, O4
  199. #else
  200. Options...
  201. #endif
  202. >::type
  203. {
  204. #if defined(BOOST_INTRUSIVE_DOXYGEN_INVOKED)
  205. public:
  206. //! <b>Effects</b>: If link_mode is \c auto_unlink or \c safe_link
  207. //! initializes the node to an unlinked state.
  208. //!
  209. //! <b>Throws</b>: Nothing.
  210. set_member_hook();
  211. //! <b>Effects</b>: If link_mode is \c auto_unlink or \c safe_link
  212. //! initializes the node to an unlinked state. The argument is ignored.
  213. //!
  214. //! <b>Throws</b>: Nothing.
  215. //!
  216. //! <b>Rationale</b>: Providing a copy-constructor
  217. //! makes classes using the hook STL-compliant without forcing the
  218. //! user to do some additional work. \c swap can be used to emulate
  219. //! move-semantics.
  220. set_member_hook(const set_member_hook& );
  221. //! <b>Effects</b>: Empty function. The argument is ignored.
  222. //!
  223. //! <b>Throws</b>: Nothing.
  224. //!
  225. //! <b>Rationale</b>: Providing an assignment operator
  226. //! makes classes using the hook STL-compliant without forcing the
  227. //! user to do some additional work. \c swap can be used to emulate
  228. //! move-semantics.
  229. set_member_hook& operator=(const set_member_hook& );
  230. //! <b>Effects</b>: If link_mode is \c normal_link, the destructor does
  231. //! nothing (ie. no code is generated). If link_mode is \c safe_link and the
  232. //! object is stored in a set an assertion is raised. If link_mode is
  233. //! \c auto_unlink and \c is_linked() is true, the node is unlinked.
  234. //!
  235. //! <b>Throws</b>: Nothing.
  236. ~set_member_hook();
  237. //! <b>Effects</b>: Swapping two nodes swaps the position of the elements
  238. //! related to those nodes in one or two containers. That is, if the node
  239. //! this is part of the element e1, the node x is part of the element e2
  240. //! and both elements are included in the containers s1 and s2, then after
  241. //! the swap-operation e1 is in s2 at the position of e2 and e2 is in s1
  242. //! at the position of e1. If one element is not in a container, then
  243. //! after the swap-operation the other element is not in a container.
  244. //! Iterators to e1 and e2 related to those nodes are invalidated.
  245. //!
  246. //! <b>Complexity</b>: Constant
  247. //!
  248. //! <b>Throws</b>: Nothing.
  249. void swap_nodes(set_member_hook &other);
  250. //! <b>Precondition</b>: link_mode must be \c safe_link or \c auto_unlink.
  251. //!
  252. //! <b>Returns</b>: true, if the node belongs to a container, false
  253. //! otherwise. This function can be used to test whether \c set::iterator_to
  254. //! will return a valid iterator.
  255. //!
  256. //! <b>Complexity</b>: Constant
  257. bool is_linked() const;
  258. //! <b>Effects</b>: Removes the node if it's inserted in a container.
  259. //! This function is only allowed if link_mode is \c auto_unlink.
  260. //!
  261. //! <b>Throws</b>: Nothing.
  262. void unlink();
  263. #endif
  264. };
  265. } //namespace intrusive
  266. } //namespace boost
  267. #include <boost/intrusive/detail/config_end.hpp>
  268. #endif //BOOST_INTRUSIVE_SET_HOOK_HPP