/usr/include/mdds/node.hpp is in libmdds-dev 0.5.4-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 | /*************************************************************************
*
* Copyright (c) 2008-2010 Kohei Yoshida
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation
* files (the "Software"), to deal in the Software without
* restriction, including without limitation the rights to use,
* copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following
* conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
* OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
* HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
* OTHER DEALINGS IN THE SOFTWARE.
*
************************************************************************/
#ifndef __MDDS_NODE_HXX__
#define __MDDS_NODE_HXX__
#include <iostream>
#include <list>
#include <cassert>
#include <boost/intrusive_ptr.hpp>
namespace mdds {
#ifdef DEBUG_NODE_BASE
size_t node_instance_count = 0;
#endif
template<typename T>
struct node_traits
{
typedef typename T::nonleaf_value_type nonleaf_value_type;
typedef typename T::leaf_value_type leaf_value_type;
typedef typename T::fill_nonleaf_value_handler fill_nonleaf_value_handler;
typedef typename T::to_string_handler to_string_handler;
typedef typename T::init_handler init_handler;
typedef typename T::dispose_handler dispose_handler;
};
template<typename T>
struct node
{
typedef ::boost::intrusive_ptr<node> node_ptr;
typedef typename node_traits<T>::nonleaf_value_type nonleaf_value_type;
typedef typename node_traits<T>::leaf_value_type leaf_value_type;
typedef typename node_traits<T>::fill_nonleaf_value_handler fill_nonleaf_value_handler;
typedef typename node_traits<T>::to_string_handler to_string_handler;
typedef typename node_traits<T>::init_handler init_handler;
typedef typename node_traits<T>::dispose_handler dispose_handler;
static size_t get_instance_count()
{
#ifdef DEBUG_NODE_BASE
return node_instance_count;
#else
return 0;
#endif
}
union {
nonleaf_value_type value_nonleaf;
leaf_value_type value_leaf;
};
node_ptr parent; /// parent node
node_ptr left; /// left child node or previous sibling if it's a leaf node.
node_ptr right; /// right child node or next sibling if it's aleaf node.
bool is_leaf;
size_t refcount;
private:
fill_nonleaf_value_handler _hdl_fill_nonleaf;
to_string_handler _hdl_to_string;
init_handler _hdl_init;
dispose_handler _hdl_dispose;
public:
node(bool _is_leaf) :
is_leaf(_is_leaf),
refcount(0)
{
#ifdef DEBUG_NODE_BASE
++node_instance_count;
#endif
_hdl_init(*this);
}
/**
* When copying node, only the stored values should be copied.
* Connections to the parent, left and right nodes must not be copied.
*/
node(const node& r) :
is_leaf(r.is_leaf),
refcount(0)
{
#ifdef DEBUG_NODE_BASE
++node_instance_count;
#endif
if (is_leaf)
value_leaf = r.value_leaf;
else
value_nonleaf = r.value_nonleaf;
}
/**
* Like the copy constructor, only the stored values should be copied.
*/
node& operator=(const node& r)
{
if (this == &r)
// assignment to self.
return *this;
is_leaf = r.is_leaf;
if (is_leaf)
value_leaf = r.value_leaf;
else
value_nonleaf = r.value_nonleaf;
return *this;
}
~node()
{
#ifdef DEBUG_NODE_BASE
--node_instance_count;
#endif
dispose();
}
void dispose()
{
_hdl_dispose(*this);
}
bool equals(const node& r) const
{
if (is_leaf != r.is_leaf)
return false;
if (is_leaf)
return value_leaf == r.value_leaf;
else
return value_nonleaf == r.value_nonleaf;
return true;
}
void fill_nonleaf_value(const node_ptr& left_node, const node_ptr& right_node)
{
_hdl_fill_nonleaf(*this, left_node, right_node);
}
#ifdef UNIT_TEST
void dump_value() const
{
::std::cout << _hdl_to_string(*this);
}
::std::string to_string() const
{
return _hdl_to_string(*this);
}
#endif
};
template<typename T>
inline void intrusive_ptr_add_ref(::mdds::node<T>* p)
{
++p->refcount;
}
template<typename T>
inline void intrusive_ptr_release(::mdds::node<T>* p)
{
--p->refcount;
if (!p->refcount)
delete p;
}
template<typename T>
void disconnect_all_nodes(::mdds::node<T>* p)
{
if (!p)
return;
p->left.reset();
p->right.reset();
p->parent.reset();
}
template<typename T>
void disconnect_leaf_nodes(::mdds::node<T>* left_node, ::mdds::node<T>* right_node)
{
if (!left_node || !right_node)
return;
// Go through all leaf nodes, and disconnect their links.
::mdds::node<T>* cur_node = left_node;
do
{
::mdds::node<T>* next_node = cur_node->right.get();
disconnect_all_nodes(cur_node);
cur_node = next_node;
}
while (cur_node != right_node);
disconnect_all_nodes(right_node);
}
template<typename _NodePtr>
void link_nodes(_NodePtr& left, _NodePtr& right)
{
left->right = right;
right->left = left;
}
/**
* Disconnect all non-leaf nodes so that their ref-counted instances will
* all get destroyed afterwards.
*/
template<typename T>
void clear_tree(::mdds::node<T>* node)
{
if (!node)
// Nothing to do.
return;
if (node->is_leaf)
{
node->parent.reset();
return;
}
clear_tree(node->left.get());
clear_tree(node->right.get());
disconnect_all_nodes(node);
}
template<typename _NodePtr, typename _NodeType>
_NodePtr make_parent_node(const _NodePtr& node1, const _NodePtr& node2)
{
_NodePtr parent_node(new _NodeType(false));
node1->parent = parent_node;
parent_node->left = node1;
if (node2)
{
node2->parent = parent_node;
parent_node->right = node2;
}
parent_node->fill_nonleaf_value(node1, node2);
return parent_node;
}
template<typename _NodePtr, typename _NodeType>
_NodePtr build_tree_non_leaf(const ::std::list<_NodePtr>& node_list)
{
size_t node_count = node_list.size();
if (node_count == 1)
{
return node_list.front();
}
else if (node_count == 0)
return _NodePtr();
::std::list<_NodePtr> new_node_list;
_NodePtr node_pair[2];
typename ::std::list<_NodePtr>::const_iterator itr = node_list.begin();
typename ::std::list<_NodePtr>::const_iterator itr_end = node_list.end();
for (bool even_itr = false; itr != itr_end; ++itr, even_itr = !even_itr)
{
node_pair[even_itr] = *itr;
if (even_itr)
{
_NodePtr parent_node = make_parent_node<_NodePtr, _NodeType>(node_pair[0], node_pair[1]);
node_pair[0].reset();
node_pair[1].reset();
new_node_list.push_back(parent_node);
}
}
if (node_pair[0])
{
// Un-paired node still needs a parent...
_NodePtr parent_node = make_parent_node<_NodePtr, _NodeType>(node_pair[0], _NodePtr());
node_pair[0].reset();
node_pair[1].reset();
new_node_list.push_back(parent_node);
}
// Move up one level, and do the same procedure until the root node is reached.
return build_tree_non_leaf<_NodePtr, _NodeType>(new_node_list);
}
template<typename _NodePtr, typename _NodeType>
_NodePtr build_tree(const _NodePtr& left_leaf_node)
{
if (!left_leaf_node)
// The left leaf node is empty. Nothing to build.
return _NodePtr();
_NodePtr node1, node2;
node1 = left_leaf_node;
::std::list<_NodePtr> node_list;
while (true)
{
node2 = node1->right;
_NodePtr parent_node = make_parent_node<_NodePtr, _NodeType>(node1, node2);
node_list.push_back(parent_node);
if (!node2 || !node2->right)
// no more nodes. Break out of the loop.
break;
node1 = node2->right;
}
return build_tree_non_leaf<_NodePtr, _NodeType>(node_list);
}
#ifdef UNIT_TEST
template<typename _NodePtr>
size_t dump_tree_layer(const ::std::list<_NodePtr>& node_list, unsigned int level)
{
using ::std::cout;
using ::std::endl;
if (node_list.empty())
return 0;
size_t node_count = node_list.size();
bool isLeaf = node_list.front()->is_leaf;
cout << "level " << level << " (" << (isLeaf?"leaf":"non-leaf") << ")" << endl;
::std::list<_NodePtr> newList;
typename ::std::list<_NodePtr>::const_iterator itr = node_list.begin(), itrEnd = node_list.end();
for (; itr != itrEnd; ++itr)
{
const _NodePtr& p = *itr;
if (!p)
{
cout << "(x) ";
continue;
}
p->dump_value();
if (p->is_leaf)
continue;
if (p->left)
{
newList.push_back(p->left.get());
if (p->right)
newList.push_back(p->right.get());
}
}
cout << endl;
if (!newList.empty())
node_count += dump_tree_layer(newList, level+1);
return node_count;
}
template<typename _NodePtr>
size_t dump_tree(_NodePtr root_node)
{
if (!root_node)
return 0;
::std::list<_NodePtr> node_list;
node_list.push_back(root_node);
return dump_tree_layer(node_list, 0);
}
#endif
}
#endif
|