/usr/include/openturns/SharedPointer.hxx is in libopenturns-dev 1.2-2.
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 | // -*- C++ -*-
/**
* @file SharedPointer.hxx
* @brief The class SharedPointer implements a shared pointer
*
* Copyright (C) 2005-2013 EDF-EADS-Phimeca
*
* This library is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* along with this library. If not, see <http://www.gnu.org/licenses/>.
*
* @author dutka
* @date 2007-05-10 16:43:31 +0200 (Thu, 10 May 2007)
*/
#ifndef OPENTURNS_SHAREDPOINTER_HXX
#define OPENTURNS_SHAREDPOINTER_HXX
#include <algorithm> // for std::swap
#include <iostream>
#if !defined(__APPLE__)
#include <malloc.h>
#endif
#include "AtomicFunctions.hxx"
#include "OTprivate.hxx"
BEGIN_NAMESPACE_OPENTURNS
#ifndef SWIG
/*
* class GenericCounterImplementation
*
* brief This class is in charge of the reference counter for the shared pointer.
*
* This class implements the base mechanisms of reference counting.
* It keeps track of the number of references to an hypothetic pointee (not defined here
* because the class is abstract).
*
* This class, its interface and its implementation are rewrittings of the BOOST shared_ptr
* template class. We forgived using BOOST because of some pain in compiling Open TURNS on
* some architectures (with the help of Debian autobuilder) but the implementation was
* so smart we decided to reimplement ours (with lesser dependencies) by cloning the interface
* and part of the implementation of the BOOST one. Many thanks to BOOST for its work.
*/
class GenericCounterImplementation
{
/* The number of references to the pointee */
AtomicInt use_count_;
public:
/*
* brief Default constructor.
*
* It initializes the reference counter to one.
*/
GenericCounterImplementation() : use_count_()
{
use_count_.increment();
}
/* Destructor */
virtual ~GenericCounterImplementation() {}
/*
* brief Delete the pointee.
*
* This method diposes of the pointee by deleting it because it isn't referenced any more.
* This method is pure because the allocation and deallocation are not handled here. The
* derived class is in charge ot this functionnality.
* See also: release()
*/
virtual void dispose() = 0;
/*
* brief Remove one reference.
*
* This method removes one reference to the counter. If it is the last one, it calls
* dispose() to delete the pointee.
* See also: dispose() and add_ref_copy()
*/
void release()
{
if ( use_count_.fetchAndAdd( -1 ) == 1 ) dispose();
}
/*
* brief Add one reference.
*
* This method adds one reference to the counter.
* See also: release()
*/
void add_ref_copy()
{
use_count_.increment();
}
/*
* brief Get the number of references.
*
* This methods returns the number of references currently owned by the counter.
* Return: the number of references
* See also: release() and add_ref_copy()
*/
UnsignedLong use_count()
{
return static_cast<int volatile>( use_count_.get() );
}
}; /* end class GenericCounterImplementation */
/*
* class CounterImplementation
*
* brief This class is in charge of the pointer allocation/deallocation
*/
template <class T>
class CounterImplementation
: public GenericCounterImplementation
{
T * ptr_;
public:
CounterImplementation(T * p) : ptr_( p ) {}
void dispose()
{
delete ptr_;
ptr_ = 0;
}
}; /* end class CounterImplementation */
class Counter
{
GenericCounterImplementation * p_impl_;
public:
Counter() : p_impl_(0) {}
~Counter()
{
if ( p_impl_ != 0 ) p_impl_->release();
if (use_count() == 0)
{
delete p_impl_;
p_impl_ = 0;
}
}
Counter( const Counter & other ) : p_impl_( other.p_impl_ )
{
if ( p_impl_ != 0 ) p_impl_->add_ref_copy();
}
template <class T> Counter(T * p) : p_impl_(0)
{
p_impl_ = new CounterImplementation< T >( p );
}
Counter & operator =( const Counter & other )
{
Counter newCounter( other );
swap( newCounter );
return *this;
}
Bool unique() const
{
return use_count() == 1;
}
UnsignedLong use_count() const
{
return ( p_impl_ != 0 ) ? p_impl_->use_count() : 0 ;
}
void swap(Counter & other)
{
std::swap( p_impl_, other.p_impl_ );
}
};
#endif /* SWIG */
class dynamic_cast_tag {};
/**
* @class SharedPointer
*
* @brief This class implements a shared pointer strategy
*/
template <class T>
class SharedPointer
{
template <class Y> friend class SharedPointer;
/**
* The actual pointer is \em ptr_
*/
T * ptr_;
Counter count_;
public:
/**
* Default constructor
*
* Constructed like this, the underlying pointer is NULL
*/
SharedPointer() : ptr_(0), count_()
{
// Nothing to do
}
/**
* Constructor from T * type
*
* The object pointed t is from now owned and taken in charge
* by the shared pointer. It MUST NOT be manually deleted
*/
explicit SharedPointer(T * ptr) : ptr_(ptr), count_(ptr)
{
// Nothing to do
}
/**
* Copy constructor adds one more reference
* on the underying object so its reference counter is
* incremented by one
*/
template <class Y>
SharedPointer(const SharedPointer<Y> & ref) : ptr_(ref.ptr_), count_(ref.count_)
{
// Nothing to do
}
template <class Y>
SharedPointer(const SharedPointer<Y> & ref, dynamic_cast_tag) : ptr_(dynamic_cast<T*>(ref.ptr_)), count_(ref.count_)
{
if (ptr_ == 0) count_ = Counter();
}
/**
* Method to cast objects passed as base class into
* derived class
*/
template <class Base>
SharedPointer & assign(const SharedPointer<Base> & ref)
{
// We want to do : ptr_ = ref.ptr_
// but ref.ptr_ is a base class of ptr_
// so we need to dynamic cast it...
// Dynamic cast using a temporary
// pointer_type tmp(ref.ptr_, dynamic_cast_tag());
// ptr_ = tmp;
SharedPointer( ref, dynamic_cast_tag() ).swap( *this );
return *this;
}
/**
* Reset forsakes its reference on the pointed-to object.
* If the shared pointer is the only owner of the object,
* reset leads to its deletion
*/
inline void reset()
{
SharedPointer().swap( *this);
}
/**
* Reset forsakes its reference on the pointed-to object.
* If the shared pointer is the only owner of the object,
* reset leads to its deletion. This method takes the new
* pointed-to object and takes it in charge inside the
* shared pointer
*/
template <class Y>
inline void reset(Y * p)
{
SharedPointer( p ).swap( *this);
}
/**
* Operator * dereferences the const shared pointer and gives
* access to the underlying object
*/
inline const T & operator * () const
{
return *ptr_;
}
/**
* Operator -> dereferences the const shared pointer and gives
* access to the underlying object
*/
inline const T * operator -> () const
{
return ptr_;
}
/**
* Operator * dereferences the shared pointer and gives
* access to the underlying object
*/
inline T & operator * ()
{
return *ptr_;
}
/**
* Operator -> dereferences the shared pointer and gives
* access to the underlying object
*/
inline T * operator -> ()
{
return ptr_;
}
/**
* Get returns a pointer to the underlying object
*/
inline T * get() const
{
return ptr_;
}
/**
* Method getImplementation() gives access to the
* underlying implementation object (for copy
* constructor needs)
*/
inline const T * getImplementation() const
{
return ptr_;
}
/**
* Unique returns true when the shared pointer is the only
* one that takes in charge the pointed-to object
* It is semantically equivalent to use_count() == 1
*/
inline Bool unique() const
{
return count_.unique();
}
/**
* Use_count returns the number of shared pointers that
* share the pointed-to object
*/
inline UnsignedLong use_count() const
{
return count_.use_count();
}
/**
* Swap exchanges the pointed-to objects between two
* shared pointers
*/
inline void swap(SharedPointer<T> & other)
{
std::swap( ptr_, other.ptr_ );
count_.swap( other.count_ );
}
} ; /* end class SharedPointer */
END_NAMESPACE_OPENTURNS
#endif /* OPENTURNS_SHAREDPOINTER_HXX */
|