3 // Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011
4 // Free Software Foundation, Inc.
6 // This file is part of the GNU ISO C++ Library. This library is free
7 // software; you can redistribute it and/or modify it under the terms
8 // of the GNU General Public License as published by the Free Software
9 // Foundation; either version 3, or (at your option) any later
12 // This library is distributed in the hope that it will be useful, but
13 // WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 // General Public License for more details.
17 // Under Section 7 of GPL version 3, you are granted additional
18 // permissions described in the GCC Runtime Library Exception, version
19 // 3.1, as published by the Free Software Foundation.
21 // You should have received a copy of the GNU General Public License and
22 // a copy of the GCC Runtime Library Exception along with this program;
23 // see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
24 // <http://www.gnu.org/licenses/>.
26 // Copyright (C) 2004 Ami Tavory and Vladimir Dreizin, IBM-HRL.
28 // Permission to use, copy, modify, sell, and distribute this software
29 // is hereby granted without fee, provided that the above copyright
30 // notice appears in all copies, and that both that copyright notice
31 // and this permission notice appear in supporting documentation. None
32 // of the above authors, nor IBM Haifa Research Laboratories, make any
33 // representation about the suitability of this software for any
34 // purpose. It is provided "as is" without express or implied
38 * @file constructors_destructor_fn_imps.hpp
39 * Contains an implementation class for left_child_next_sibling_heap_.
43 typename PB_DS_CLASS_C_DEC::node_allocator
44 PB_DS_CLASS_C_DEC::s_node_allocator;
47 typename PB_DS_CLASS_C_DEC::no_throw_copies_t
48 PB_DS_CLASS_C_DEC::s_no_throw_copies_ind;
52 left_child_next_sibling_heap_() :
56 PB_DS_ASSERT_VALID((*this))
61 left_child_next_sibling_heap_(const Cmp_Fn& r_cmp_fn) :
66 PB_DS_ASSERT_VALID((*this))
71 left_child_next_sibling_heap_(const PB_DS_CLASS_C_DEC& other)
72 : Cmp_Fn(other), m_p_root(0), m_size(0)
74 m_size = other.m_size;
75 PB_DS_ASSERT_VALID(other)
76 m_p_root = recursive_copy_node(other.m_p_root);
77 m_size = other.m_size;
78 PB_DS_ASSERT_VALID((*this))
84 swap(PB_DS_CLASS_C_DEC& other)
86 PB_DS_ASSERT_VALID((*this))
87 PB_DS_ASSERT_VALID(other)
89 std::swap((Cmp_Fn& )(*this), (Cmp_Fn& )other);
90 PB_DS_ASSERT_VALID((*this))
91 PB_DS_ASSERT_VALID(other)
97 value_swap(PB_DS_CLASS_C_DEC& other)
99 std::swap(m_p_root, other.m_p_root);
100 std::swap(m_size, other.m_size);
105 ~left_child_next_sibling_heap_()
111 typename PB_DS_CLASS_C_DEC::node_pointer
113 recursive_copy_node(const_node_pointer p_nd)
118 node_pointer p_ret = s_node_allocator.allocate(1);
122 new (p_ret) node(*p_nd);
126 s_node_allocator.deallocate(p_ret, 1);
127 __throw_exception_again;
130 p_ret->m_p_l_child = p_ret->m_p_next_sibling =
131 p_ret->m_p_prev_or_parent = 0;
135 p_ret->m_p_l_child = recursive_copy_node(p_nd->m_p_l_child);
136 p_ret->m_p_next_sibling = recursive_copy_node(p_nd->m_p_next_sibling);
141 __throw_exception_again;
144 if (p_ret->m_p_l_child != 0)
145 p_ret->m_p_l_child->m_p_prev_or_parent = p_ret;
147 if (p_ret->m_p_next_sibling != 0)
148 p_ret->m_p_next_sibling->m_p_prev_or_parent =
149 p_nd->m_p_next_sibling->m_p_prev_or_parent == p_nd ? p_ret : 0;