/usr/include/InsightToolkit/Common/itkTreeNode.txx is in libinsighttoolkit3-dev 3.20.1-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 | /*=========================================================================
Program: Insight Segmentation & Registration Toolkit
Module: itkTreeNode.txx
Language: C++
Date: $Date$
Version: $Revision$
Copyright (c) Insight Software Consortium. All rights reserved.
See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notices for more information.
=========================================================================*/
#ifndef __itkTreeNode_txx
#define __itkTreeNode_txx
#include "itkTreeNode.h"
#include <cstring>
#include <string.h>
namespace itk
{
/** Constructor */
template <class TValueType>
TreeNode<TValueType>::TreeNode() : m_Parent(NULL)
{
}
/** Destructor */
template <class TValueType>
TreeNode<TValueType>::~TreeNode()
{
if ( m_Parent )
{
m_Parent->Remove(this);
}
for ( size_t i=m_Children.size(); i > 0; i-- )
{
m_Children[i-1]->SetParent(NULL);
}
m_Children.clear();
m_Parent = NULL;
m_Data = 0;
}
/** Return the parent node */
template <class TValueType>
TreeNode<TValueType>*
TreeNode<TValueType>
::GetParent( ) const
{
return m_Parent;
}
/** Get a child */
template <class TValueType>
TreeNode<TValueType>*
TreeNode<TValueType>
::GetChild( int number ) const
{
if ( (unsigned int)number < m_Children.size() )
{
return m_Children[number];
}
else
{
return NULL;
}
}
/** Set the value of a node */
template <class TValueType>
TValueType TreeNode<TValueType>::Set(const TValueType data)
{
TValueType help = m_Data;
m_Data = data;
return help;
}
/** Get the data of node */
template <class TValueType>
const TValueType& TreeNode<TValueType>::Get() const
{
return m_Data;
}
/** Return true if has a parent */
template <class TValueType>
bool
TreeNode<TValueType>::HasParent() const
{
return (m_Parent)?true:false;
}
/** Set the parent node */
template <class TValueType>
void
TreeNode<TValueType>::SetParent( TreeNode<TValueType>* node)
{
//keep ourself alive just a bit longer
Pointer ourself = this;
if(m_Parent != NULL)
{
m_Parent->Remove(this);
}
m_Parent = node;
}
/** Return true if the node has children */
template <class TValueType>
bool TreeNode<TValueType>::HasChildren() const
{
return (m_Children.size()>0)?true:false;
}
/** Return the number of children */
template <class TValueType>
int
TreeNode<TValueType>
::CountChildren( ) const
{
return static_cast<int>(m_Children.size());
}
/** Remove a child node from the current node */
template <class TValueType>
bool
TreeNode<TValueType>
::Remove( TreeNode<TValueType> *n )
{
typename std::vector<Pointer>::iterator pos;
pos = std::find(m_Children.begin(), m_Children.end(), n );
if ( pos != m_Children.end() )
{
//keep node alive just a bit longer
Pointer position = n;
m_Children.erase(pos);
n->SetParent(NULL);
return true;
}
return false;
}
/** Replace a child by a new one */
template <class TValueType>
bool TreeNode<TValueType>::ReplaceChild( TreeNode<TValueType> *oldChild, TreeNode<TValueType> *newChild )
{
int size = m_Children.size();
for ( int i=0; i<size; i++ )
{
if ( m_Children[i] == oldChild )
{
m_Children[i] = newChild;
return true;
}
}
return false;
}
/** Return the child position given a node */
template <class TValueType>
int TreeNode<TValueType>::ChildPosition( const TreeNode<TValueType> *node ) const
{
for ( unsigned int i=0; i < m_Children.size(); i++ )
{
if ( m_Children[i] == node )
{
return i;
}
}
return -1;
}
/** Return the child position given an element, the first child found. */
template <class TValueType>
int TreeNode<TValueType>::ChildPosition( TValueType element ) const
{
for ( unsigned int i=0; i < m_Children.size(); i++ )
{
if ( m_Children[i]->Get() == element )
return i;
}
return -1;
}
/** Add a child node */
template <class TValueType>
void TreeNode<TValueType>::AddChild( TreeNode<TValueType> *node )
{
Pointer nodeKeepAlive = node;
node->SetParent(this);
m_Children.push_back(node);
}
/** Add a child at a specific position in the children list */
template <class TValueType>
void
TreeNode<TValueType>
::AddChild( int number, TreeNode<TValueType> *node )
{
size_t size = m_Children.size();
if ( (size_t)number > size )
{
for ( size_t i=size; i <= (size_t)number; i++ )
{
m_Children[i] = NULL;
}
m_Children[number] = node;
return;
}
m_Children[number] = node;
}
/** Get the number of children given a name and a depth */
template <class TValueType>
unsigned int
TreeNode<TValueType>
::GetNumberOfChildren( unsigned int depth, char * name ) const
{
typename ChildrenListType::const_iterator it = m_Children.begin();
typename ChildrenListType::const_iterator itEnd = m_Children.end();
unsigned int cnt = 0;
while(it != itEnd)
{
if(name == NULL || strstr(typeid(**it).name(), name))
{
cnt++;
}
it++;
}
it = m_Children.begin();
itEnd = m_Children.end();
if( depth > 0 )
{
while(it != itEnd)
{
cnt += (*it)->GetNumberOfChildren( depth-1, name );
it++;
}
}
return cnt;
}
/** Get children given a name and a depth */
#if !defined(CABLE_CONFIGURATION)
template <class TValueType>
typename TreeNode<TValueType>::ChildrenListType*
TreeNode<TValueType>
::GetChildren( unsigned int depth, char * name) const
{
ChildrenListType * children = new ChildrenListType;
typename ChildrenListType::const_iterator childrenListIt =
m_Children.begin();
typename ChildrenListType::const_iterator childrenListEnd =
m_Children.end();
while( childrenListIt != childrenListEnd )
{
if( name == NULL || strstr(typeid(**childrenListIt).name(), name) )
{
children->push_back(*childrenListIt);
}
if( depth > 0 )
{
ChildrenListType * nextchildren = (**childrenListIt).GetChildren(depth-1,
name);
// Add the child to the current list
typename ChildrenListType::const_iterator nextIt = nextchildren->begin();
while(nextIt != nextchildren->end())
{
children->push_back(*nextIt);
nextIt++;
}
delete nextchildren;
}
childrenListIt++;
}
return children;
}
#endif
} // namespace itk
#endif
|