File: bookkeeping.h

package info (click to toggle)
meshlab 2020.09%2Bdfsg1-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 45,132 kB
  • sloc: cpp: 400,238; ansic: 31,952; javascript: 1,578; sh: 387; yacc: 238; lex: 139; python: 86; makefile: 30
file content (342 lines) | stat: -rw-r--r-- 8,803 bytes parent folder | download | duplicates (6)
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
#ifndef GLW_BOOKKEEPING_H
#define GLW_BOOKKEEPING_H

#include "./common.h"

namespace glw
{

namespace detail
{

                                  struct NoType                    {                                                                         };
template <typename T>             struct DefaultDeleter            { void operator () (T * t) { delete t; }                                  };

template <typename T>             struct BaseOf                    { typedef NoType Type;                                                    };

template <typename T, typename B> struct RootOfType                { typedef typename RootOfType<B,  typename BaseOf<B>::Type>::Type  Type;  };
template <typename T>             struct RootOfType<T, NoType>     { typedef T                                                        Type;  };
template <typename T>             struct RootOf                    { typedef typename RootOfType<T, typename BaseOf<T>::Type>::Type   Type;  };

template <typename T, typename B> struct DeleterOfType             { typedef typename DeleterOfType<B, typename BaseOf<B>::Type>::Type Type; };
template <typename T>             struct DeleterOfType<T, NoType>  { typedef DefaultDeleter<T>                                         Type; };
template <typename T>             struct DeleterOf                 { typedef typename DeleterOfType<T, typename BaseOf<T>::Type>::Type Type; };

template <typename TObject, typename TDeleter, typename TBaseObject>
class RefCountedObject : public RefCountedObject<TBaseObject, TDeleter, typename BaseOf<TBaseObject>::Type>
{
	public:

		typedef RefCountedObject<TBaseObject, TDeleter, typename BaseOf<TBaseObject>::Type> BaseType;
		typedef RefCountedObject<TObject, TDeleter, TBaseObject>                            ThisType;
		typedef TObject                                                                     ObjectType;
		typedef TDeleter                                                                    DeleterType;
		typedef TBaseObject                                                                 BaseObjectType;

		RefCountedObject(ObjectType * object, const DeleterType & deleter)
			: BaseType(object, deleter)
		{
			;
		}

		const ObjectType * object(void) const
		{
			return static_cast<const ObjectType *>(BaseType::object());
		}

		ObjectType * object(void)
		{
			return static_cast<ObjectType *>(BaseType::object());
		}
};

template <typename TObject, typename TDeleter>
class RefCountedObject<TObject, TDeleter, NoType>
{
	public:

		typedef void                                        BaseType;
		typedef RefCountedObject<TObject, TDeleter, NoType> ThisType;
		typedef TObject                                     ObjectType;
		typedef TDeleter                                    DeleterType;
		typedef NoType                                      BaseObjectType;

		RefCountedObject(ObjectType * object, const DeleterType & deleter)
			: m_object   (object)
			, m_refCount (0)
			, m_deleter  (deleter)
		{
			GLW_ASSERT(this->m_object  != 0);
		}

		~RefCountedObject(void)
		{
			this->destroyObject();
		}

		bool isNull(void) const
		{
			return (this->m_object == 0);
		}

		void setNull(bool deleteObject)
		{
			if (deleteObject)
			{
				this->destroyObject();
			}
			this->m_object = 0;
		}

		const ObjectType * object(void) const
		{
			return this->m_object;
		}

		ObjectType * object(void)
		{
			return this->m_object;
		}

		const DeleterType & deleter(void) const
		{
			return this->m_deleter;
		}

		DeleterType & deleter(void)
		{
			return this->m_deleter;
		}

		void ref(void)
		{
			this->m_refCount++;
		}

		void unref(void)
		{
			GLW_ASSERT(this->m_refCount > 0);
			this->m_refCount--;
			if (this->m_refCount == 0)
			{
				delete this;
			}
		}

		int refCount(void) const
		{
			return this->m_refCount;
		}

	private:

		ObjectType * m_object;
		int          m_refCount;
		DeleterType  m_deleter;

		RefCountedObject(const ThisType & other);
		ThisType & operator = (const ThisType & other);

		void destroyObject(void)
		{
			if (this->m_object == 0) return;
			this->m_deleter(this->m_object);
			this->m_object = 0;
		}
};

template <typename T> struct RefCountedObjectTraits { typedef RefCountedObject<T, typename DeleterOf<T>::Type, typename BaseOf<T>::Type> Type; };

template <typename TObject, typename TDeleter, typename TBaseObject>
class ObjectSharedPointer : public ObjectSharedPointer<TBaseObject, TDeleter, typename BaseOf<TBaseObject>::Type>
{
	public:

		typedef ObjectSharedPointer<TBaseObject, TDeleter, typename BaseOf<TBaseObject>::Type>  BaseType;
		typedef ObjectSharedPointer<TObject, TDeleter, TBaseObject>                             ThisType;
		typedef TObject                                                                         ObjectType;
		typedef TDeleter                                                                        DeleterType;
		typedef TBaseObject                                                                     BaseObjectType;
		typedef RefCountedObject<ObjectType, DeleterType, BaseObjectType>                       RefCountedObjectType;

		ObjectSharedPointer(void)
			: BaseType()
		{
			;
		}

		ObjectSharedPointer(const ThisType & other)
			: BaseType(other)
		{
			;
		}

		ObjectSharedPointer(RefCountedObjectType * refObject)
			: BaseType(refObject)
		{
			;
		}

		const ObjectType & operator * (void) const
		{
			return (*(this->object()));
		}

		ObjectType & operator * (void)
		{
			return (*(this->object()));
		}

		const ObjectType * operator -> (void) const
		{
			return this->object();
		}

		ObjectType * operator -> (void)
		{
			return this->object();
		}

	protected:

		const ObjectType * object(void) const
		{
			return static_cast<const ObjectType *>(BaseType::object());
		}

		ObjectType * object(void)
		{
			return static_cast<ObjectType *>(BaseType::object());
		}

		RefCountedObjectType * refObject(void) const
		{
			return static_cast<RefCountedObjectType *>(BaseType::refObject());
		}
};

template <typename TObject, typename TDeleter>
class ObjectSharedPointer<TObject, TDeleter, NoType>
{
	public:

		typedef void                                              BaseType;
		typedef ObjectSharedPointer<TObject, TDeleter, NoType>    ThisType;
		typedef TObject                                           ObjectType;
		typedef TDeleter                                          DeleterType;
		typedef NoType                                            BaseObjectType;
		typedef RefCountedObject<ObjectType, DeleterType, NoType> RefCountedObjectType;

		ObjectSharedPointer(void)
			: m_refObject(0)
		{
			;
		}

		ObjectSharedPointer(const ThisType & other)
			: m_refObject(0)
		{
			this->attach(other.refObject());
		}

		ObjectSharedPointer(RefCountedObjectType * refObject)
			: m_refObject(0)
		{
			this->attach(refObject);
		}

		~ObjectSharedPointer(void)
		{
			this->detach();
		}

		bool isNull(void) const
		{
			if (this->m_refObject == 0) return true;
			return this->m_refObject->isNull();
		}

		void setNull(void)
		{
			this->detach();
		}

		const ObjectType & operator * (void) const
		{
			return (*(this->object()));
		}

		ObjectType & operator * (void)
		{
			return (*(this->object()));
		}

		const ObjectType * operator -> (void) const
		{
			return this->object();
		}

		ObjectType * operator -> (void)
		{
			return this->object();
		}

		operator bool (void) const
		{
			return (!this->isNull());
		}

		ThisType & operator = (const ThisType & other)
		{
			this->attach(other.refObject());
			return (*this);
		}

	protected:

		const ObjectType * object(void) const
		{
			GLW_ASSERT(!this->isNull());
			return this->m_refObject->object();
		}

		ObjectType * object(void)
		{
			GLW_ASSERT(!this->isNull());
			return this->m_refObject->object();
		}

		RefCountedObjectType * refObject(void) const
		{
			return this->m_refObject;
		}

	private:

		RefCountedObjectType * m_refObject;

		void attach(RefCountedObjectType * reObject)
		{
			this->detach();
			this->m_refObject = reObject;
			if (this->m_refObject != 0)
			{
				this->m_refObject->ref();
			}
		}

		void detach(void)
		{
			if (this->m_refObject == 0) return;
			this->m_refObject->unref();
			this->m_refObject = 0;
		}
};

template <typename T> struct ObjectSharedPointerTraits { typedef ObjectSharedPointer<T, typename DeleterOf<typename RootOf<T>::Type>::Type, typename BaseOf<T>::Type> Type; };

};

};

#endif // GLW_BOOKKEEPING_H