1 /////////////////////////////////////////////////////////////////////////////
3 // (C) Copyright Olaf Krzikalla 2004-2006.
4 // (C) Copyright Ion Gaztanaga 2006-2008
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)
10 // See http://www.boost.org/libs/intrusive for documentation.
12 /////////////////////////////////////////////////////////////////////////////
14 #ifndef BOOST_INTRUSIVE_LIST_HOOK_HPP
15 #define BOOST_INTRUSIVE_LIST_HOOK_HPP
17 #include <boost/intrusive/detail/config_begin.hpp>
18 #include <boost/intrusive/intrusive_fwd.hpp>
19 #include <boost/intrusive/detail/utilities.hpp>
20 #include <boost/intrusive/detail/list_node.hpp>
21 #include <boost/intrusive/circular_list_algorithms.hpp>
22 #include <boost/intrusive/options.hpp>
23 #include <boost/intrusive/detail/generic_hook.hpp>
29 template<class VoidPointer
>
30 struct get_list_node_algo
32 typedef circular_list_algorithms
<list_node_traits
<VoidPointer
> > type
;
36 //! Helper metafunction to define a \c \c list_base_hook that yields to the same
37 //! type when the same options (either explicitly or implicitly) are used.
38 #if defined(BOOST_INTRUSIVE_DOXYGEN_INVOKED) || defined(BOOST_INTRUSIVE_VARIADIC_TEMPLATES)
39 template<class ...Options
>
41 template<class O1
= none
, class O2
= none
, class O3
= none
>
43 struct make_list_base_hook
46 typedef typename pack_options
48 #if !defined(BOOST_INTRUSIVE_VARIADIC_TEMPLATES)
53 >::type packed_options
;
55 typedef detail::generic_hook
56 < get_list_node_algo
<typename
packed_options::void_pointer
>
57 , typename
packed_options::tag
58 , packed_options::link_mode
59 , detail::ListBaseHook
60 > implementation_defined
;
62 typedef implementation_defined type
;
65 //! Derive a class from this hook in order to store objects of that class
68 //! The hook admits the following options: \c tag<>, \c void_pointer<> and
71 //! \c tag<> defines a tag to identify the node.
72 //! The same tag value can be used in different classes, but if a class is
73 //! derived from more than one \c list_base_hook, then each \c list_base_hook needs its
76 //! \c link_mode<> will specify the linking mode of the hook (\c normal_link,
77 //! \c auto_unlink or \c safe_link).
79 //! \c void_pointer<> is the pointer type that will be used internally in the hook
80 //! and the the container configured to use this hook.
81 #if defined(BOOST_INTRUSIVE_DOXYGEN_INVOKED) || defined(BOOST_INTRUSIVE_VARIADIC_TEMPLATES)
82 template<class ...Options
>
84 template<class O1
, class O2
, class O3
>
87 : public make_list_base_hook
88 #if !defined(BOOST_INTRUSIVE_VARIADIC_TEMPLATES)
95 #if defined(BOOST_INTRUSIVE_DOXYGEN_INVOKED)
96 //! <b>Effects</b>: If link_mode is \c auto_unlink or \c safe_link
97 //! initializes the node to an unlinked state.
99 //! <b>Throws</b>: Nothing.
102 //! <b>Effects</b>: If link_mode is \c auto_unlink or \c safe_link
103 //! initializes the node to an unlinked state. The argument is ignored.
105 //! <b>Throws</b>: Nothing.
107 //! <b>Rationale</b>: Providing a copy-constructor
108 //! makes classes using the hook STL-compliant without forcing the
109 //! user to do some additional work. \c swap can be used to emulate
111 list_base_hook(const list_base_hook
& );
113 //! <b>Effects</b>: Empty function. The argument is ignored.
115 //! <b>Throws</b>: Nothing.
117 //! <b>Rationale</b>: Providing an assignment operator
118 //! makes classes using the hook STL-compliant without forcing the
119 //! user to do some additional work. \c swap can be used to emulate
121 list_base_hook
& operator=(const list_base_hook
& );
123 //! <b>Effects</b>: If link_mode is \c normal_link, the destructor does
124 //! nothing (ie. no code is generated). If link_mode is \c safe_link and the
125 //! object is stored in an list an assertion is raised. If link_mode is
126 //! \c auto_unlink and \c is_linked() is true, the node is unlinked.
128 //! <b>Throws</b>: Nothing.
131 //! <b>Effects</b>: Swapping two nodes swaps the position of the elements
132 //! related to those nodes in one or two containers. That is, if the node
133 //! this is part of the element e1, the node x is part of the element e2
134 //! and both elements are included in the containers s1 and s2, then after
135 //! the swap-operation e1 is in s2 at the position of e2 and e2 is in s1
136 //! at the position of e1. If one element is not in a container, then
137 //! after the swap-operation the other element is not in a container.
138 //! Iterators to e1 and e2 related to those nodes are invalidated.
140 //! <b>Complexity</b>: Constant
142 //! <b>Throws</b>: Nothing.
143 void swap_nodes(list_base_hook
&other
);
145 //! <b>Precondition</b>: link_mode must be \c safe_link or \c auto_unlink.
147 //! <b>Returns</b>: true, if the node belongs to a container, false
148 //! otherwise. This function can be used to test whether \c list::iterator_to
149 //! will return a valid iterator.
151 //! <b>Complexity</b>: Constant
152 bool is_linked() const;
154 //! <b>Effects</b>: Removes the node if it's inserted in a container.
155 //! This function is only allowed if link_mode is \c auto_unlink.
157 //! <b>Throws</b>: Nothing.
162 //! Helper metafunction to define a \c \c list_member_hook that yields to the same
163 //! type when the same options (either explicitly or implicitly) are used.
164 #if defined(BOOST_INTRUSIVE_DOXYGEN_INVOKED) || defined(BOOST_INTRUSIVE_VARIADIC_TEMPLATES)
165 template<class ...Options
>
167 template<class O1
= none
, class O2
= none
, class O3
= none
>
169 struct make_list_member_hook
172 typedef typename pack_options
174 #if !defined(BOOST_INTRUSIVE_VARIADIC_TEMPLATES)
179 >::type packed_options
;
181 typedef detail::generic_hook
182 < get_list_node_algo
<typename
packed_options::void_pointer
>
184 , packed_options::link_mode
186 > implementation_defined
;
188 typedef implementation_defined type
;
191 //! Store this hook in a class to be inserted
194 //! The hook admits the following options: \c void_pointer<> and
197 //! \c link_mode<> will specify the linking mode of the hook (\c normal_link,
198 //! \c auto_unlink or \c safe_link).
200 //! \c void_pointer<> is the pointer type that will be used internally in the hook
201 //! and the the container configured to use this hook.
202 #if defined(BOOST_INTRUSIVE_DOXYGEN_INVOKED) || defined(BOOST_INTRUSIVE_VARIADIC_TEMPLATES)
203 template<class ...Options
>
205 template<class O1
, class O2
, class O3
>
207 class list_member_hook
208 : public make_list_member_hook
209 #if !defined(BOOST_INTRUSIVE_VARIADIC_TEMPLATES)
216 #if defined(BOOST_INTRUSIVE_DOXYGEN_INVOKED)
217 //! <b>Effects</b>: If link_mode is \c auto_unlink or \c safe_link
218 //! initializes the node to an unlinked state.
220 //! <b>Throws</b>: Nothing.
223 //! <b>Effects</b>: If link_mode is \c auto_unlink or \c safe_link
224 //! initializes the node to an unlinked state. The argument is ignored.
226 //! <b>Throws</b>: Nothing.
228 //! <b>Rationale</b>: Providing a copy-constructor
229 //! makes classes using the hook STL-compliant without forcing the
230 //! user to do some additional work. \c swap can be used to emulate
232 list_member_hook(const list_member_hook
& );
234 //! <b>Effects</b>: Empty function. The argument is ignored.
236 //! <b>Throws</b>: Nothing.
238 //! <b>Rationale</b>: Providing an assignment operator
239 //! makes classes using the hook STL-compliant without forcing the
240 //! user to do some additional work. \c swap can be used to emulate
242 list_member_hook
& operator=(const list_member_hook
& );
244 //! <b>Effects</b>: If link_mode is \c normal_link, the destructor does
245 //! nothing (ie. no code is generated). If link_mode is \c safe_link and the
246 //! object is stored in an list an assertion is raised. If link_mode is
247 //! \c auto_unlink and \c is_linked() is true, the node is unlinked.
249 //! <b>Throws</b>: Nothing.
252 //! <b>Effects</b>: Swapping two nodes swaps the position of the elements
253 //! related to those nodes in one or two containers. That is, if the node
254 //! this is part of the element e1, the node x is part of the element e2
255 //! and both elements are included in the containers s1 and s2, then after
256 //! the swap-operation e1 is in s2 at the position of e2 and e2 is in s1
257 //! at the position of e1. If one element is not in a container, then
258 //! after the swap-operation the other element is not in a container.
259 //! Iterators to e1 and e2 related to those nodes are invalidated.
261 //! <b>Complexity</b>: Constant
263 //! <b>Throws</b>: Nothing.
264 void swap_nodes(list_member_hook
&other
);
266 //! <b>Precondition</b>: link_mode must be \c safe_link or \c auto_unlink.
268 //! <b>Returns</b>: true, if the node belongs to a container, false
269 //! otherwise. This function can be used to test whether \c list::iterator_to
270 //! will return a valid iterator.
272 //! <b>Complexity</b>: Constant
273 bool is_linked() const;
275 //! <b>Effects</b>: Removes the node if it's inserted in a container.
276 //! This function is only allowed if link_mode is \c auto_unlink.
278 //! <b>Throws</b>: Nothing.
283 } //namespace intrusive
286 #include <boost/intrusive/detail/config_end.hpp>
288 #endif //BOOST_INTRUSIVE_LIST_HOOK_HPP