Merged branch 'master' of https://github.com/Nemo1369/libcds
[libcds.git] / cds / intrusive / details / raw_ptr_disposer.h
1 /*
2     This file is a part of libcds - Concurrent Data Structures library
3
4     (C) Copyright Maxim Khizhinsky (libcds.dev@gmail.com) 2006-2017
5
6     Source code repo: http://github.com/khizmax/libcds/
7     Download: http://sourceforge.net/projects/libcds/files/
8
9     Redistribution and use in source and binary forms, with or without
10     modification, are permitted provided that the following conditions are met:
11
12     * Redistributions of source code must retain the above copyright notice, this
13       list of conditions and the following disclaimer.
14
15     * Redistributions in binary form must reproduce the above copyright notice,
16       this list of conditions and the following disclaimer in the documentation
17       and/or other materials provided with the distribution.
18
19     THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
20     AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21     IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
22     DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
23     FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24     DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
25     SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
26     CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
27     OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28     OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */
30
31 #ifndef CDSLIB_INTRUSIVE_DETAILS_RAW_PTR_DISPOSER_H
32 #define CDSLIB_INTRUSIVE_DETAILS_RAW_PTR_DISPOSER_H
33
34 #include <cds/details/defs.h>
35
36 //@cond
37 namespace cds { namespace intrusive { namespace details {
38
39     template <typename RCU, typename NodeType, typename Disposer>
40     struct raw_ptr_disposer
41     {
42         typedef RCU gc;
43         typedef NodeType node_type;
44         typedef Disposer disposer;
45
46         node_type *     pReclaimedChain;
47
48         raw_ptr_disposer()
49             : pReclaimedChain( nullptr )
50         {}
51
52         template <typename Position>
53         explicit raw_ptr_disposer( Position& pos )
54             : pReclaimedChain( pos.pDelChain )
55         {
56             pos.pDelChain = nullptr;
57         }
58
59         raw_ptr_disposer( raw_ptr_disposer&& d )
60             : pReclaimedChain( d.pReclaimedChain )
61         {
62             d.pReclaimedChain = nullptr;
63         }
64
65         raw_ptr_disposer( raw_ptr_disposer const& ) = delete;
66
67         ~raw_ptr_disposer()
68         {
69             apply();
70         }
71
72         raw_ptr_disposer& combine(raw_ptr_disposer&& d)
73         {
74             if ( pReclaimedChain == nullptr )
75                 pReclaimedChain = d.pReclaimedChain;
76             else if ( d.pReclaimedChain ) {
77                 // union reclaimed chains
78                 node_type * pEnd = d.pReclaimedChain;
79                 for ( ; pEnd->m_pDelChain; pEnd = pEnd->m_pDelChain );
80                 pEnd->m_pDelChain = pReclaimedChain;
81                 pReclaimedChain = d.pReclaimedChain;
82             }
83             d.pReclaimedChain = nullptr;
84             return *this;
85         }
86
87         raw_ptr_disposer& operator=(raw_ptr_disposer const& d) = delete;
88         raw_ptr_disposer& operator=( raw_ptr_disposer&& d ) = delete;
89
90         void apply()
91         {
92             if ( pReclaimedChain ) {
93                 assert( !gc::is_locked());
94                 disposer()( pReclaimedChain );
95                 pReclaimedChain = nullptr;
96             }
97         }
98     };
99
100 }}} // namespace cds::intrusive::details
101 //@endcond
102
103 #endif // #ifndef CDSLIB_INTRUSIVE_DETAILS_RAW_PTR_DISPOSER_H