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
|
// Copyright (C) 2003 Davis E. King (davis@dlib.net)
// License: Boost Software License See LICENSE.txt for the full license.
#ifndef DLIB_REFERENCE_COUNTER_KERNEl_1_
#define DLIB_REFERENCE_COUNTER_KERNEl_1_
#include "reference_counter_kernel_abstract.h"
#include "../algs.h"
namespace dlib
{
template <
typename T,
typename copy = copy_functor<T>
>
class reference_counter_kernel_1
{
/*!
INITIAL VALUE
*data = item of type T with its initial value
*count = 1
CONVENTION
*data = pointer to item of type T
*count = number of references to *data
if clear() threw an exception then count = 0 and data is not a
valid pointer
!*/
public:
typedef T type;
reference_counter_kernel_1 (
);
inline reference_counter_kernel_1 (
const reference_counter_kernel_1& item
);
virtual ~reference_counter_kernel_1 (
);
void clear (
);
T& modify (
);
inline const T& access (
) const;
inline reference_counter_kernel_1& operator= (
const reference_counter_kernel_1& rhs
);
inline void swap (
reference_counter_kernel_1& item
);
private:
T* data;
unsigned long* count;
mutable copy copy_item;
};
template <
typename T,
typename copy
>
inline void swap (
reference_counter_kernel_1<T,copy>& a,
reference_counter_kernel_1<T,copy>& b
) { a.swap(b); }
// ----------------------------------------------------------------------------------------
// ----------------------------------------------------------------------------------------
// member function definitions
// ----------------------------------------------------------------------------------------
// ----------------------------------------------------------------------------------------
template <
typename T,
typename copy
>
reference_counter_kernel_1<T,copy>::
reference_counter_kernel_1 (
)
{
data = new T;
try { count = new unsigned long; }
catch (...) { delete data; throw; }
*count = 1;
}
// ----------------------------------------------------------------------------------------
template <
typename T,
typename copy
>
reference_counter_kernel_1<T,copy>::
reference_counter_kernel_1 (
const reference_counter_kernel_1<T,copy>& item
) :
data(item.data),
count(item.count)
{
++(*count);
}
// ----------------------------------------------------------------------------------------
template <
typename T,
typename copy
>
reference_counter_kernel_1<T,copy>::
~reference_counter_kernel_1 (
)
{
if (*count > 1)
{
// if there are other references to this data
--(*count);
}
else
{
// if there are no other references to this data
delete count;
delete data;
}
}
// ----------------------------------------------------------------------------------------
template <
typename T,
typename copy
>
void reference_counter_kernel_1<T,copy>::
clear (
)
{
// if an exception was thrown last time clear() was called then do this
if (count == 0)
{
data = new T;
try { count = new unsigned long; }
catch (...) { delete data; throw; }
*count = 1;
}
// if there are other references to the data then do this
else if (*count > 1)
{
--(*count);
try { data = new T; }
catch (...) { count = 0; throw; }
try { count = new unsigned long; }
catch (...) { delete data; count = 0; throw; }
*count = 1;
}
else
{
// if there are no other references to this data
*count = 1;
delete data;
try { data = new T; } catch (...) { delete count; count = 0; throw; }
}
}
// ----------------------------------------------------------------------------------------
template <
typename T,
typename copy
>
T& reference_counter_kernel_1<T,copy>::
modify (
)
{
// if this is not the only reference then make a new copy
if ( *count > 1 )
{
T& old_data = *data;
unsigned long& old_count = *count;
// get memory for the new copy
try { data = new T; }
catch (...) { data = &old_data; throw; }
try { count = new unsigned long; }
catch (...) {delete data; data = &old_data; count = &old_count; throw;}
// decrement the number of references to old_data
--(old_count);
*count = 1;
// make a copy of the old data
try { copy_item(old_data,*data); }
catch (...)
{ delete data; delete count; data = &old_data; count = &old_count; }
}
return *data;
}
// ----------------------------------------------------------------------------------------
template <
typename T,
typename copy
>
const T& reference_counter_kernel_1<T,copy>::
access (
) const
{
return *data;
}
// ----------------------------------------------------------------------------------------
template <
typename T,
typename copy
>
reference_counter_kernel_1<T,copy>& reference_counter_kernel_1<T,copy>::
operator= (
const reference_counter_kernel_1<T,copy>& rhs
)
{
if (this == &rhs)
return *this;
// delete the current data if this is the last reference to it
if (*count > 1)
{
// if there are other references to this data
--(*count);
}
else
{
// if there are no other references to this data
delete count;
delete data;
}
// copy the pointers
count = (rhs.count);
data = (rhs.data);
++(*count);
return *this;
}
// ----------------------------------------------------------------------------------------
template <
typename T,
typename copy
>
void reference_counter_kernel_1<T,copy>::
swap (
reference_counter_kernel_1<T,copy>& item
)
{
T* data_temp = data;
unsigned long* count_temp = count;
data = item.data;
count = item.count;
item.data = data_temp;
item.count = count_temp;
}
// ----------------------------------------------------------------------------------------
}
#endif // DLIB_REFERENCE_COUNTER_KERNEl_1_
|