object.h 5.52 KB
Newer Older
Wenzel Jakob's avatar
Wenzel Jakob committed
1
2
3
4
#if !defined(__OBJECT_H)
#define __OBJECT_H

#include <atomic>
Dean Moldovan's avatar
Dean Moldovan committed
5
#include "constructor_stats.h"
Wenzel Jakob's avatar
Wenzel Jakob committed
6
7
8
9
10

/// Reference counted object base class
class Object {
public:
    /// Default constructor
11
    Object() { print_default_created(this); }
Wenzel Jakob's avatar
Wenzel Jakob committed
12
13

    /// Copy constructor
14
    Object(const Object &) : m_refCount(0) { print_copy_created(this); }
Wenzel Jakob's avatar
Wenzel Jakob committed
15

16
17
18
19
20
21
22
23
24
25
26
27
28
29
    /// Return the current reference count
    int getRefCount() const { return m_refCount; };

    /// Increase the object's reference count by one
    void incRef() const { ++m_refCount; }

    /** \brief Decrease the reference count of
     * the object and possibly deallocate it.
     *
     * The object will automatically be deallocated once
     * the reference count reaches zero.
     */
    void decRef(bool dealloc = true) const {
        --m_refCount;
30
        if (m_refCount == 0 && dealloc) {
Wenzel Jakob's avatar
Wenzel Jakob committed
31
            delete this;
32
        } else if (m_refCount < 0) {
33
            throw std::runtime_error("Internal error: reference count < 0!");
34
        }
Wenzel Jakob's avatar
Wenzel Jakob committed
35
36
37
38
    }

    virtual std::string toString() const = 0;
protected:
39
40
41
42
    /** \brief Virtual protected deconstructor.
     * (Will only be called by \ref ref)
     */
    virtual ~Object() { print_destroyed(this); }
Wenzel Jakob's avatar
Wenzel Jakob committed
43
44
45
46
private:
    mutable std::atomic<int> m_refCount { 0 };
};

47
48
49
50
51
52
// Tag class used to track constructions of ref objects.  When we track constructors, below, we
// track and print out the actual class (e.g. ref<MyObject>), and *also* add a fake tracker for
// ref_tag.  This lets us check that the total number of ref<Anything> constructors/destructors is
// correct without having to check each individual ref<Whatever> type individually.
class ref_tag {};

Wenzel Jakob's avatar
Wenzel Jakob committed
53
54
55
56
57
58
59
60
61
62
63
64
/**
 * \brief Reference counting helper
 *
 * The \a ref refeference template is a simple wrapper to store a
 * pointer to an object. It takes care of increasing and decreasing
 * the reference count of the object. When the last reference goes
 * out of scope, the associated object will be deallocated.
 *
 * \ingroup libcore
 */
template <typename T> class ref {
public:
65
    /// Create a nullptr reference
66
    ref() : m_ptr(nullptr) { print_default_created(this); track_default_created((ref_tag*) this); }
Wenzel Jakob's avatar
Wenzel Jakob committed
67
68

    /// Construct a reference from a pointer
69
    explicit ref(T *ptr) : m_ptr(ptr) {
70
71
72
        if (m_ptr) {
            ((Object *) m_ptr)->incRef();
        }
73
74
75

        print_created(this, "from pointer", m_ptr); track_created((ref_tag*) this, "from pointer");

76
    }
Wenzel Jakob's avatar
Wenzel Jakob committed
77

78
    /// Copy constructor
Wenzel Jakob's avatar
Wenzel Jakob committed
79
    ref(const ref &r) : m_ptr(r.m_ptr) {
80
        if (m_ptr) {
Wenzel Jakob's avatar
Wenzel Jakob committed
81
            ((Object *) m_ptr)->incRef();
82
        }
83
84

        print_copy_created(this, "with pointer", m_ptr); track_copy_created((ref_tag*) this);
Wenzel Jakob's avatar
Wenzel Jakob committed
85
86
87
    }

    /// Move constructor
88
    ref(ref &&r) noexcept : m_ptr(r.m_ptr) {
Wenzel Jakob's avatar
Wenzel Jakob committed
89
        r.m_ptr = nullptr;
90
91

        print_move_created(this, "with pointer", m_ptr); track_move_created((ref_tag*) this);
Wenzel Jakob's avatar
Wenzel Jakob committed
92
93
94
95
    }

    /// Destroy this reference
    ~ref() {
96
        if (m_ptr) {
Wenzel Jakob's avatar
Wenzel Jakob committed
97
            ((Object *) m_ptr)->decRef();
98
        }
99
100

        print_destroyed(this); track_destroyed((ref_tag*) this);
Wenzel Jakob's avatar
Wenzel Jakob committed
101
102
103
    }

    /// Move another reference into the current one
104
    ref &operator=(ref &&r) noexcept {
105
106
        print_move_assigned(this, "pointer", r.m_ptr); track_move_assigned((ref_tag*) this);

107
        if (*this == r) {
108
            return *this;
109
110
        }
        if (m_ptr) {
111
            ((Object *) m_ptr)->decRef();
112
        }
113
114
115
116
117
118
119
        m_ptr = r.m_ptr;
        r.m_ptr = nullptr;
        return *this;
    }

    /// Overwrite this reference with another reference
    ref& operator=(const ref& r) {
120
121
122
123
124
        if (this == &r) {
            return *this;
        }
        print_copy_assigned(this, "pointer", r.m_ptr);
        track_copy_assigned((ref_tag *) this);
125

126
        if (m_ptr == r.m_ptr) {
127
            return *this;
128
129
        }
        if (m_ptr) {
130
            ((Object *) m_ptr)->decRef();
131
        }
132
        m_ptr = r.m_ptr;
133
        if (m_ptr) {
134
            ((Object *) m_ptr)->incRef();
135
        }
136
137
138
139
140
        return *this;
    }

    /// Overwrite this reference with a pointer to another object
    ref& operator=(T *ptr) {
141
142
        print_values(this, "assigned pointer"); track_values((ref_tag*) this, "assigned pointer");

143
        if (m_ptr == ptr) {
144
            return *this;
145
146
        }
        if (m_ptr) {
147
            ((Object *) m_ptr)->decRef();
148
        }
149
        m_ptr = ptr;
150
        if (m_ptr) {
151
            ((Object *) m_ptr)->incRef();
152
        }
153
154
        return *this;
    }
Wenzel Jakob's avatar
Wenzel Jakob committed
155

156
157
    /// Compare this reference with another reference
    bool operator==(const ref &r) const { return m_ptr == r.m_ptr; }
Wenzel Jakob's avatar
Wenzel Jakob committed
158

159
160
    /// Compare this reference with another reference
    bool operator!=(const ref &r) const { return m_ptr != r.m_ptr; }
Wenzel Jakob's avatar
Wenzel Jakob committed
161

162
163
    /// Compare this reference with a pointer
    bool operator==(const T* ptr) const { return m_ptr == ptr; }
Wenzel Jakob's avatar
Wenzel Jakob committed
164

165
166
    /// Compare this reference with a pointer
    bool operator!=(const T* ptr) const { return m_ptr != ptr; }
Wenzel Jakob's avatar
Wenzel Jakob committed
167

168
169
    /// Access the object referenced by this reference
    T* operator->() { return m_ptr; }
Wenzel Jakob's avatar
Wenzel Jakob committed
170

171
172
    /// Access the object referenced by this reference
    const T* operator->() const { return m_ptr; }
Wenzel Jakob's avatar
Wenzel Jakob committed
173

174
175
    /// Return a C++ reference to the referenced object
    T& operator*() { return *m_ptr; }
Wenzel Jakob's avatar
Wenzel Jakob committed
176

177
178
    /// Return a const C++ reference to the referenced object
    const T& operator*() const { return *m_ptr; }
Wenzel Jakob's avatar
Wenzel Jakob committed
179

180
    /// Return a pointer to the referenced object
181
    explicit operator T* () { return m_ptr; }
Wenzel Jakob's avatar
Wenzel Jakob committed
182

183
    /// Return a const pointer to the referenced object
184
    T* get_ptr() { return m_ptr; }
Wenzel Jakob's avatar
Wenzel Jakob committed
185

186
    /// Return a pointer to the referenced object
187
    const T* get_ptr() const { return m_ptr; }
Wenzel Jakob's avatar
Wenzel Jakob committed
188
private:
189
    T *m_ptr;
Wenzel Jakob's avatar
Wenzel Jakob committed
190
191
192
};

#endif /* __OBJECT_H */