/usr/include/InsightToolkit/Common/itkAutoPointer.h 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 | /*=========================================================================
Program: Insight Segmentation & Registration Toolkit
Module: itkAutoPointer.h
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 __itkAutoPointer_h
#define __itkAutoPointer_h
#include "itkMacro.h"
#include <iostream>
namespace itk
{
/** \class AutoPointer
* \brief Implements an Automatic Pointer to an object.
*
* AutoPointer is intended to facilitate the construction of
* objects on the fly for those objects that are not to be shared.
* An AutoPointer destroys its object when it goes out of scope.
* Ownership of the object is transferred from one AutoPointer
* to another AutoPointer when the assignement operator is used.
* An AutoPointer can release ownership of the object it holds.
*
* This class follows the design of the std::auto_ptr class. The main
* reason for not using the std version is to avoid templated methods,
* which greatly increase the difficulty of wrapping for Tcl, Python
* and Java.
*
* \ingroup ITKSystemObjects
* \ingroup DataAccess
*/
template <class TObjectType>
class ITK_EXPORT AutoPointer
{
public:
/** Extract information from template parameter. */
typedef TObjectType ObjectType;
typedef AutoPointer Self;
/** Constructor. */
AutoPointer (): m_Pointer(0),m_IsOwner(false)
{ }
/** Copy constructor. */
explicit AutoPointer ( AutoPointer & p )
{
m_IsOwner = p.IsOwner(); // Ownership can only be taken from another owner
m_Pointer = p.ReleaseOwnership(); // release ownership if appropriate
}
/** Constructor to pointer p. */
explicit AutoPointer ( ObjectType * p, bool takeOwnership ):
m_Pointer(p), m_IsOwner(takeOwnership)
{ }
/** Destructor. */
~AutoPointer ()
{
if( m_IsOwner && m_Pointer )
{
delete m_Pointer;
}
m_Pointer = 0;
m_IsOwner = false;
}
/** Overload operator ->. */
ObjectType *operator -> () const
{ return m_Pointer; }
/** Clear the AutoPointer. If it had a pointer the object
is deleted and the pointer is set to null. */
void Reset( void )
{
if( m_IsOwner && m_Pointer )
{
delete m_Pointer;
}
m_Pointer = 0;
m_IsOwner = false;
}
/** Explicitly set the ownership */
void TakeOwnership(void)
{ m_IsOwner = true; }
/** Explicitly set the ownership */
void TakeOwnership(ObjectType * objectptr)
{
if( m_IsOwner && m_Pointer )
{
delete m_Pointer; // remove the current one
}
m_Pointer = objectptr;
m_IsOwner = true;
}
/** Explicitly reject ownership */
void TakeNoOwnership(ObjectType * objectptr)
{
if( m_IsOwner && m_Pointer )
{
delete m_Pointer; // remove the current one
}
m_Pointer = objectptr;
m_IsOwner = false;
}
/** Query for the ownership */
bool IsOwner(void) const
{ return m_IsOwner; }
/** Release the pointer hold by the current AutoPointer
* and return the raw pointer so it can be hold by
* another AutoPointer. This operation is intended to
* be used for facilitating polymorphism.
*
* Example: if class Cow derives from Mammal,
* AutoPointer<Cow> onecow = new Cow;
* AutoPointer<Mammal> onemammal = onecow.ReleaseOwnership();
*
* Note that the AutoPointer still points to the object after the
* ReleaseOwnership operation, but it doesn't own the object any
* more. */
ObjectType * ReleaseOwnership( void )
{
m_IsOwner = false;
return m_Pointer;
}
/** Access function to pointer. */
ObjectType *GetPointer () const
{ return m_Pointer; }
/** Comparison of pointers. Equal comparison. */
bool operator == (const AutoPointer &r) const
{ return (void*)m_Pointer == (void*) r.m_Pointer; }
/** Comparison of pointers. NonEqual comparison. */
bool operator != (const AutoPointer &r) const
{ return (void*)m_Pointer != (void*) r.m_Pointer; }
/** Comparison of pointers. Less than comparison. */
bool operator < (const AutoPointer &r) const
{ return (void*)m_Pointer < (void*) r.m_Pointer; }
/** Comparison of pointers. Greater than comparison. */
bool operator > (const AutoPointer &r) const
{ return (void*)m_Pointer > (void*) r.m_Pointer; }
/** Comparison of pointers. Less than or equal to comparison. */
bool operator <= (const AutoPointer &r) const
{ return (void*)m_Pointer <= (void*) r.m_Pointer; }
/** Comparison of pointers. Greater than or equal to comparison. */
bool operator >= (const AutoPointer &r) const
{ return (void*)m_Pointer >= (void*) r.m_Pointer; }
/** Overload operator assignment. */
AutoPointer &operator = (AutoPointer &r)
{
AutoPointer( r ).Swap( *this );
return *this;
}
/** Casting operator to boolean. This is used in conditional
statments to check the content of the pointer against null */
operator bool () const
{ return (m_Pointer!=NULL); }
/** Function to print object pointed to. */
/* ObjectType *Print (std::ostream& os) const
{
// This prints the object pointed to by the pointer
(*m_Pointer).Print(os);
os << "Owner: " << m_IsOwner << std::endl;
return m_Pointer;
}
*/
private:
/** Exchange the content of two AutoPointers */
void Swap(AutoPointer &r) throw()
{
ObjectType * temp = m_Pointer;
m_Pointer = r.m_Pointer;
r.m_Pointer = temp;
}
/** The pointer to the object referrred to by this smart pointer. */
ObjectType* m_Pointer;
bool m_IsOwner;
};
template <typename T>
std::ostream& operator<< (std::ostream& os, AutoPointer<T> p)
{
p.Print(os);
os << "Owner: " << p.IsOwner() << std::endl;
return os;
}
/** This templated function is intended to facilitate the
transfer between AutoPointers of Derived class to Base class */
template <typename TAutoPointerBase, typename TAutoPointerDerived>
void
ITK_EXPORT TransferAutoPointer(TAutoPointerBase & pa, TAutoPointerDerived & pb)
{
// give a chance to natural polymorphism
pa.TakeNoOwnership( pb.GetPointer() );
if( pb.IsOwner() )
{
pa.TakeOwnership(); // pa Take Ownership
pb.ReleaseOwnership(); // pb Release Ownership and clears
}
}
} // end namespace itk
#endif
|