/usr/include/OGRE/OgreSharedPtr.h is in libogre-dev 1.7.4+dfsg1-7.
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 | /*
-----------------------------------------------------------------------------
This source file is part of OGRE
(Object-oriented Graphics Rendering Engine)
For the latest info, see http://www.ogre3d.org/
Copyright (c) 2000-2011 Torus Knot Software Ltd
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 __SharedPtr_H__
#define __SharedPtr_H__
#include "OgrePrerequisites.h"
namespace Ogre {
/** \addtogroup Core
* @{
*/
/** \addtogroup General
* @{
*/
/// The method to use to free memory on destruction
enum SharedPtrFreeMethod
{
/// Use OGRE_DELETE to free the memory
SPFM_DELETE,
/// Use OGRE_DELETE_T to free (only MEMCATEGORY_GENERAL supported)
SPFM_DELETE_T,
/// Use OGRE_FREE to free (only MEMCATEGORY_GENERAL supported)
SPFM_FREE
};
/** Reference-counted shared pointer, used for objects where implicit destruction is
required.
@remarks
This is a standard shared pointer implementation which uses a reference
count to work out when to delete the object.
@par
If OGRE_THREAD_SUPPORT is defined to be 1, use of this class is thread-safe.
*/
template<class T> class SharedPtr
{
protected:
T* pRep;
unsigned int* pUseCount;
SharedPtrFreeMethod useFreeMethod; // if we should use OGRE_FREE instead of OGRE_DELETE
public:
OGRE_AUTO_SHARED_MUTEX // public to allow external locking
/** Constructor, does not initialise the SharedPtr.
@remarks
<b>Dangerous!</b> You have to call bind() before using the SharedPtr.
*/
SharedPtr() : pRep(0), pUseCount(0), useFreeMethod(SPFM_DELETE)
{
OGRE_SET_AUTO_SHARED_MUTEX_NULL
}
/** Constructor.
@param rep The pointer to take ownership of
@param freeMode The mechanism to use to free the pointer
*/
template< class Y>
explicit SharedPtr(Y* rep, SharedPtrFreeMethod inFreeMethod = SPFM_DELETE)
: pRep(rep)
, pUseCount(rep ? OGRE_NEW_T(unsigned int, MEMCATEGORY_GENERAL)(1) : 0)
, useFreeMethod(inFreeMethod)
{
OGRE_SET_AUTO_SHARED_MUTEX_NULL
if (rep)
{
OGRE_NEW_AUTO_SHARED_MUTEX
}
}
SharedPtr(const SharedPtr& r)
: pRep(0), pUseCount(0), useFreeMethod(SPFM_DELETE)
{
// lock & copy other mutex pointer
OGRE_SET_AUTO_SHARED_MUTEX_NULL
OGRE_MUTEX_CONDITIONAL(r.OGRE_AUTO_MUTEX_NAME)
{
OGRE_LOCK_MUTEX(*r.OGRE_AUTO_MUTEX_NAME)
OGRE_COPY_AUTO_SHARED_MUTEX(r.OGRE_AUTO_MUTEX_NAME)
pRep = r.pRep;
pUseCount = r.pUseCount;
useFreeMethod = r.useFreeMethod;
// Handle zero pointer gracefully to manage STL containers
if(pUseCount)
{
++(*pUseCount);
}
}
}
SharedPtr& operator=(const SharedPtr& r) {
if (pRep == r.pRep)
return *this;
// Swap current data into a local copy
// this ensures we deal with rhs and this being dependent
SharedPtr<T> tmp(r);
swap(tmp);
return *this;
}
template< class Y>
SharedPtr(const SharedPtr<Y>& r)
: pRep(0), pUseCount(0), useFreeMethod(SPFM_DELETE)
{
// lock & copy other mutex pointer
OGRE_SET_AUTO_SHARED_MUTEX_NULL
OGRE_MUTEX_CONDITIONAL(r.OGRE_AUTO_MUTEX_NAME)
{
OGRE_LOCK_MUTEX(*r.OGRE_AUTO_MUTEX_NAME)
OGRE_COPY_AUTO_SHARED_MUTEX(r.OGRE_AUTO_MUTEX_NAME)
pRep = r.getPointer();
pUseCount = r.useCountPointer();
useFreeMethod = r.freeMethod();
// Handle zero pointer gracefully to manage STL containers
if(pUseCount)
{
++(*pUseCount);
}
}
}
template< class Y>
SharedPtr& operator=(const SharedPtr<Y>& r) {
if (pRep == r.getPointer())
return *this;
// Swap current data into a local copy
// this ensures we deal with rhs and this being dependent
SharedPtr<T> tmp(r);
swap(tmp);
return *this;
}
virtual ~SharedPtr() {
release();
}
inline T& operator*() const { assert(pRep); return *pRep; }
inline T* operator->() const { assert(pRep); return pRep; }
inline T* get() const { return pRep; }
/** Binds rep to the SharedPtr.
@remarks
Assumes that the SharedPtr is uninitialised!
*/
void bind(T* rep, SharedPtrFreeMethod inFreeMethod = SPFM_DELETE) {
assert(!pRep && !pUseCount);
OGRE_NEW_AUTO_SHARED_MUTEX
OGRE_LOCK_AUTO_SHARED_MUTEX
pUseCount = OGRE_NEW_T(unsigned int, MEMCATEGORY_GENERAL)(1);
pRep = rep;
useFreeMethod = inFreeMethod;
}
inline bool unique() const { OGRE_LOCK_AUTO_SHARED_MUTEX assert(pUseCount); return *pUseCount == 1; }
inline unsigned int useCount() const { OGRE_LOCK_AUTO_SHARED_MUTEX assert(pUseCount); return *pUseCount; }
inline unsigned int* useCountPointer() const { return pUseCount; }
inline T* getPointer() const { return pRep; }
inline SharedPtrFreeMethod freeMethod() const { return useFreeMethod; }
inline bool isNull(void) const { return pRep == 0; }
inline void setNull(void) {
if (pRep)
{
// can't scope lock mutex before release in case deleted
release();
pRep = 0;
pUseCount = 0;
}
}
protected:
inline void release(void)
{
bool destroyThis = false;
/* If the mutex is not initialized to a non-zero value, then
neither is pUseCount nor pRep.
*/
OGRE_MUTEX_CONDITIONAL(OGRE_AUTO_MUTEX_NAME)
{
// lock own mutex in limited scope (must unlock before destroy)
OGRE_LOCK_AUTO_SHARED_MUTEX
if (pUseCount)
{
if (--(*pUseCount) == 0)
{
destroyThis = true;
}
}
}
if (destroyThis)
destroy();
OGRE_SET_AUTO_SHARED_MUTEX_NULL
}
virtual void destroy(void)
{
// IF YOU GET A CRASH HERE, YOU FORGOT TO FREE UP POINTERS
// BEFORE SHUTTING OGRE DOWN
// Use setNull() before shutdown or make sure your pointer goes
// out of scope before OGRE shuts down to avoid this.
switch(useFreeMethod)
{
case SPFM_DELETE:
OGRE_DELETE pRep;
break;
case SPFM_DELETE_T:
OGRE_DELETE_T(pRep, T, MEMCATEGORY_GENERAL);
break;
case SPFM_FREE:
OGRE_FREE(pRep, MEMCATEGORY_GENERAL);
break;
};
// use OGRE_FREE instead of OGRE_DELETE_T since 'unsigned int' isn't a destructor
// we only used OGRE_NEW_T to be able to use constructor
OGRE_FREE(pUseCount, MEMCATEGORY_GENERAL);
OGRE_DELETE_AUTO_SHARED_MUTEX
}
virtual void swap(SharedPtr<T> &other)
{
std::swap(pRep, other.pRep);
std::swap(pUseCount, other.pUseCount);
std::swap(useFreeMethod, other.useFreeMethod);
#if OGRE_THREAD_SUPPORT
std::swap(OGRE_AUTO_MUTEX_NAME, other.OGRE_AUTO_MUTEX_NAME);
#endif
}
};
template<class T, class U> inline bool operator==(SharedPtr<T> const& a, SharedPtr<U> const& b)
{
return a.get() == b.get();
}
template<class T, class U> inline bool operator!=(SharedPtr<T> const& a, SharedPtr<U> const& b)
{
return a.get() != b.get();
}
template<class T, class U> inline bool operator<(SharedPtr<T> const& a, SharedPtr<U> const& b)
{
return std::less<const void*>()(a.get(), b.get());
}
/** @} */
/** @} */
}
#endif
|