blob: 64d9a88f6866cb5d2138901ef20d5a27c768ad1a (
plain)
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
|
#ifndef __base_object_h
#define __base_object_h
#include <assert.h>
// #define OBJECT_DEBUG
#include <lib/base/smartptr.h>
#ifdef OBJECT_DEBUG
#include <lib/base/eerror.h>
#endif
typedef int RESULT;
class iObject
{
private:
/* we don't allow the default operator here, as it would break the refcount. */
void operator=(const iObject &);
protected:
virtual ~iObject() { }
public:
virtual void AddRef()=0;
virtual void Release()=0;
};
class oRefCount
{
int ref;
public:
oRefCount(): ref(0) { }
operator int&() { return ref; }
~oRefCount() {
#ifdef OBJECT_DEBUG
if (ref) eDebug("OBJECT_DEBUG FATAL: %p has %d references!", this, ref); else eDebug("OBJECT_DEBUG refcount ok! (%p)", this);
#endif
}
};
#define DECLARE_REF private: oRefCount ref; public: void AddRef(); void Release();
#ifdef OBJECT_DEBUG
extern int object_total_remaining;
#define DEFINE_REF(c) void c::AddRef() { ++object_total_remaining; ++ref; eDebug("OBJECT_DEBUG " #c "+%p now %d", this, (int)ref); } void c::Release() { --object_total_remaining; eDebug("OBJECT_DEBUG " #c "-%p now %d", this, ref-1); if (!--ref) delete this; }
#else
#define DEFINE_REF(c) void c::AddRef() { ++ref; } void c::Release() { if (!--ref) delete this; }
#endif
#endif
|