]> git.ipfire.org Git - thirdparty/gcc.git/blob - libstdc++-v3/include/ext/pb_ds/detail/bin_search_tree_/insert_fn_imps.hpp
macro.h (_GLIBCXX_DEBUG_VERIFY_AT): New.
[thirdparty/gcc.git] / libstdc++-v3 / include / ext / pb_ds / detail / bin_search_tree_ / insert_fn_imps.hpp
1 // -*- C++ -*-
2
3 // Copyright (C) 2005, 2006, 2009, 2010, 2011 Free Software Foundation, Inc.
4 //
5 // This file is part of the GNU ISO C++ Library. This library is free
6 // software; you can redistribute it and/or modify it under the terms
7 // of the GNU General Public License as published by the Free Software
8 // Foundation; either version 3, or (at your option) any later
9 // version.
10
11 // This library is distributed in the hope that it will be useful, but
12 // WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 // General Public License for more details.
15
16 // Under Section 7 of GPL version 3, you are granted additional
17 // permissions described in the GCC Runtime Library Exception, version
18 // 3.1, as published by the Free Software Foundation.
19
20 // You should have received a copy of the GNU General Public License and
21 // a copy of the GCC Runtime Library Exception along with this program;
22 // see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
23 // <http://www.gnu.org/licenses/>.
24
25 // Copyright (C) 2004 Ami Tavory and Vladimir Dreizin, IBM-HRL.
26
27 // Permission to use, copy, modify, sell, and distribute this software
28 // is hereby granted without fee, provided that the above copyright
29 // notice appears in all copies, and that both that copyright notice
30 // and this permission notice appear in supporting documentation. None
31 // of the above authors, nor IBM Haifa Research Laboratories, make any
32 // representation about the suitability of this software for any
33 // purpose. It is provided "as is" without express or implied
34 // warranty.
35
36 /**
37 * @file insert_fn_imps.hpp
38 * Contains an implementation class for bin_search_tree_.
39 */
40
41 PB_DS_CLASS_T_DEC
42 inline std::pair<typename PB_DS_CLASS_C_DEC::point_iterator, bool>
43 PB_DS_CLASS_C_DEC::
44 insert_leaf(const_reference r_value)
45 {
46 PB_DS_STRUCT_ONLY_ASSERT_VALID((*this))
47
48 if (m_size == 0)
49 return std::make_pair(insert_imp_empty(r_value),
50 true);
51
52 node_pointer p_nd = m_p_head->m_p_parent;
53 node_pointer p_pot = m_p_head;
54
55 while (p_nd != 0)
56 if (!Cmp_Fn::operator()(PB_DS_V2F(p_nd->m_value),
57 PB_DS_V2F(r_value)))
58 {
59 p_pot = p_nd;
60
61 p_nd = p_nd->m_p_left;
62 }
63 else
64 p_nd = p_nd->m_p_right;
65
66 if (p_pot == m_p_head)
67 return std::make_pair(insert_leaf_new(r_value, m_p_head->m_p_right, false),
68 true);
69
70 if (!Cmp_Fn::operator()(PB_DS_V2F(r_value),
71 PB_DS_V2F(p_pot->m_value)))
72 {
73 PB_DS_STRUCT_ONLY_ASSERT_VALID((*this))
74 PB_DS_CHECK_KEY_EXISTS(PB_DS_V2F(r_value))
75 return std::make_pair(p_pot, false);
76 }
77
78 PB_DS_CHECK_KEY_DOES_NOT_EXIST(PB_DS_V2F(r_value))
79
80 p_nd = p_pot->m_p_left;
81 if (p_nd == 0)
82 return std::make_pair(insert_leaf_new(r_value, p_pot, true),
83 true);
84
85 while (p_nd->m_p_right != 0)
86 p_nd = p_nd->m_p_right;
87
88 return std::make_pair(insert_leaf_new(r_value, p_nd, false),
89 true);
90 }
91
92 PB_DS_CLASS_T_DEC
93 inline typename PB_DS_CLASS_C_DEC::iterator
94 PB_DS_CLASS_C_DEC::
95 insert_leaf_new(const_reference r_value, node_pointer p_nd, bool left_nd)
96 {
97 node_pointer p_new_nd =
98 get_new_node_for_leaf_insert(r_value,
99 traits_base::m_no_throw_copies_indicator);
100
101 if (left_nd)
102 {
103 _GLIBCXX_DEBUG_ASSERT(p_nd->m_p_left == 0);
104 _GLIBCXX_DEBUG_ASSERT(Cmp_Fn::operator()(
105 PB_DS_V2F(r_value),
106 PB_DS_V2F(p_nd->m_value)));
107
108 p_nd->m_p_left = p_new_nd;
109
110 if (m_p_head->m_p_left == p_nd)
111 m_p_head->m_p_left = p_new_nd;
112 }
113 else
114 {
115 _GLIBCXX_DEBUG_ASSERT(p_nd->m_p_right == 0);
116 _GLIBCXX_DEBUG_ASSERT(Cmp_Fn::operator()(
117 PB_DS_V2F(p_nd->m_value),
118 PB_DS_V2F(r_value)));
119
120 p_nd->m_p_right = p_new_nd;
121
122 if (m_p_head->m_p_right == p_nd)
123 m_p_head->m_p_right = p_new_nd;
124 }
125
126 p_new_nd->m_p_parent = p_nd;
127
128 p_new_nd->m_p_left = p_new_nd->m_p_right = 0;
129
130 PB_DS_ASSERT_NODE_CONSISTENT(p_nd)
131
132 update_to_top(p_new_nd, (node_update* )this);
133
134 _GLIBCXX_DEBUG_ONLY(debug_base::insert_new(PB_DS_V2F(r_value));)
135
136 return iterator(p_new_nd);
137 }
138
139 PB_DS_CLASS_T_DEC
140 inline typename PB_DS_CLASS_C_DEC::iterator
141 PB_DS_CLASS_C_DEC::
142 insert_imp_empty(const_reference r_value)
143 {
144 node_pointer p_new_node =
145 get_new_node_for_leaf_insert(r_value, traits_base::m_no_throw_copies_indicator);
146
147 m_p_head->m_p_left = m_p_head->m_p_right =
148 m_p_head->m_p_parent = p_new_node;
149
150 p_new_node->m_p_parent = m_p_head;
151
152 p_new_node->m_p_left = p_new_node->m_p_right = 0;
153
154 _GLIBCXX_DEBUG_ONLY(debug_base::insert_new(PB_DS_V2F(r_value));)
155
156 update_to_top(m_p_head->m_p_parent, (node_update*)this);
157
158 return iterator(p_new_node);
159 }
160
161 PB_DS_CLASS_T_DEC
162 inline typename PB_DS_CLASS_C_DEC::node_pointer
163 PB_DS_CLASS_C_DEC::
164 get_new_node_for_leaf_insert(const_reference r_val, false_type)
165 {
166 node_pointer p_new_nd = s_node_allocator.allocate(1);
167
168 cond_dealtor_t cond(p_new_nd);
169
170 new (const_cast<void* >(static_cast<const void* >(&p_new_nd->m_value)))
171 typename node::value_type(r_val);
172
173 cond.set_no_action();
174
175 p_new_nd->m_p_left = p_new_nd->m_p_right = 0;
176
177 ++m_size;
178
179 return p_new_nd;
180 }
181
182 PB_DS_CLASS_T_DEC
183 inline typename PB_DS_CLASS_C_DEC::node_pointer
184 PB_DS_CLASS_C_DEC::
185 get_new_node_for_leaf_insert(const_reference r_val, true_type)
186 {
187 node_pointer p_new_nd = s_node_allocator.allocate(1);
188
189 new (const_cast<void* >(static_cast<const void* >(&p_new_nd->m_value)))
190 typename node::value_type(r_val);
191
192 p_new_nd->m_p_left = p_new_nd->m_p_right = 0;
193
194 ++m_size;
195
196 return p_new_nd;
197 }
198