]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/include/ext/pb_ds/detail/left_child_next_sibling_heap_/constructors_destructor_fn_imps.hpp
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / include / ext / pb_ds / detail / left_child_next_sibling_heap_ / constructors_destructor_fn_imps.hpp
CommitLineData
36fed23c 1// -*- C++ -*-
2
fbd26352 3// Copyright (C) 2005-2019 Free Software Foundation, Inc.
36fed23c 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
6bc9506f 8// Foundation; either version 3, or (at your option) any later
36fed23c 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
6bc9506f 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.
36fed23c 19
6bc9506f 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/>.
36fed23c 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/**
4f4a327e 37 * @file left_child_next_sibling_heap_/constructors_destructor_fn_imps.hpp
36fed23c 38 * Contains an implementation class for left_child_next_sibling_heap_.
39 */
40
41PB_DS_CLASS_T_DEC
42typename PB_DS_CLASS_C_DEC::node_allocator
43PB_DS_CLASS_C_DEC::s_node_allocator;
44
45PB_DS_CLASS_T_DEC
46typename PB_DS_CLASS_C_DEC::no_throw_copies_t
47PB_DS_CLASS_C_DEC::s_no_throw_copies_ind;
48
49PB_DS_CLASS_T_DEC
50PB_DS_CLASS_C_DEC::
4f4a327e 51left_child_next_sibling_heap() :
e4bb1925 52 m_p_root(0),
36fed23c 53 m_size(0)
54{
2548203e 55 PB_DS_ASSERT_VALID((*this))
c4f08cc0 56}
36fed23c 57
58PB_DS_CLASS_T_DEC
59PB_DS_CLASS_C_DEC::
4f4a327e 60left_child_next_sibling_heap(const Cmp_Fn& r_cmp_fn) :
36fed23c 61 Cmp_Fn(r_cmp_fn),
e4bb1925 62 m_p_root(0),
36fed23c 63 m_size(0)
64{
2548203e 65 PB_DS_ASSERT_VALID((*this))
c4f08cc0 66}
36fed23c 67
68PB_DS_CLASS_T_DEC
69PB_DS_CLASS_C_DEC::
4f4a327e 70left_child_next_sibling_heap(const PB_DS_CLASS_C_DEC& other)
e4bb1925 71: Cmp_Fn(other), m_p_root(0), m_size(0)
36fed23c 72{
73 m_size = other.m_size;
2548203e 74 PB_DS_ASSERT_VALID(other)
c4f08cc0 75 m_p_root = recursive_copy_node(other.m_p_root);
36fed23c 76 m_size = other.m_size;
2548203e 77 PB_DS_ASSERT_VALID((*this))
c4f08cc0 78}
36fed23c 79
80PB_DS_CLASS_T_DEC
81void
82PB_DS_CLASS_C_DEC::
83swap(PB_DS_CLASS_C_DEC& other)
84{
2548203e 85 PB_DS_ASSERT_VALID((*this))
86 PB_DS_ASSERT_VALID(other)
c4f08cc0 87 value_swap(other);
36fed23c 88 std::swap((Cmp_Fn& )(*this), (Cmp_Fn& )other);
2548203e 89 PB_DS_ASSERT_VALID((*this))
90 PB_DS_ASSERT_VALID(other)
c4f08cc0 91}
36fed23c 92
93PB_DS_CLASS_T_DEC
94void
95PB_DS_CLASS_C_DEC::
96value_swap(PB_DS_CLASS_C_DEC& other)
97{
98 std::swap(m_p_root, other.m_p_root);
36fed23c 99 std::swap(m_size, other.m_size);
100}
101
102PB_DS_CLASS_T_DEC
103PB_DS_CLASS_C_DEC::
4f4a327e 104~left_child_next_sibling_heap()
36fed23c 105{
106 clear();
107}
108
109PB_DS_CLASS_T_DEC
110typename PB_DS_CLASS_C_DEC::node_pointer
111PB_DS_CLASS_C_DEC::
4f4a327e 112recursive_copy_node(node_const_pointer p_nd)
36fed23c 113{
e4bb1925 114 if (p_nd == 0)
115 return (0);
36fed23c 116
117 node_pointer p_ret = s_node_allocator.allocate(1);
118
b1a09c64 119 __try
36fed23c 120 {
121 new (p_ret) node(*p_nd);
122 }
b1a09c64 123 __catch(...)
36fed23c 124 {
125 s_node_allocator.deallocate(p_ret, 1);
c4f08cc0 126 __throw_exception_again;
36fed23c 127 }
128
129 p_ret->m_p_l_child = p_ret->m_p_next_sibling =
e4bb1925 130 p_ret->m_p_prev_or_parent = 0;
36fed23c 131
b1a09c64 132 __try
36fed23c 133 {
134 p_ret->m_p_l_child = recursive_copy_node(p_nd->m_p_l_child);
36fed23c 135 p_ret->m_p_next_sibling = recursive_copy_node(p_nd->m_p_next_sibling);
136 }
b1a09c64 137 __catch(...)
36fed23c 138 {
139 clear_imp(p_ret);
c4f08cc0 140 __throw_exception_again;
36fed23c 141 }
142
e4bb1925 143 if (p_ret->m_p_l_child != 0)
36fed23c 144 p_ret->m_p_l_child->m_p_prev_or_parent = p_ret;
145
e4bb1925 146 if (p_ret->m_p_next_sibling != 0)
36fed23c 147 p_ret->m_p_next_sibling->m_p_prev_or_parent =
e4bb1925 148 p_nd->m_p_next_sibling->m_p_prev_or_parent == p_nd ? p_ret : 0;
36fed23c 149
c4f08cc0 150 return p_ret;
36fed23c 151}
152