blob: 9b0e7d8a44d33f1657cc21376c3ad5ca791377e3 [file] [log] [blame]
The Android Open Source Projectcbb10112009-03-03 19:31:44 -08001/*
2 * Copyright (C) 2005 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#ifndef ANDROID_REF_BASE_H
18#define ANDROID_REF_BASE_H
19
20#include <cutils/atomic.h>
The Android Open Source Projectcbb10112009-03-03 19:31:44 -080021
22#include <stdint.h>
23#include <sys/types.h>
24#include <stdlib.h>
Mathias Agopianb26ea8b2011-02-16 20:23:43 -080025#include <string.h>
26
27#include <utils/StrongPointer.h>
The Android Open Source Projectcbb10112009-03-03 19:31:44 -080028
29// ---------------------------------------------------------------------------
30namespace android {
31
Mathias Agopian84a23fa2011-02-16 15:23:08 -080032class TextOutput;
Mathias Agopian84a23fa2011-02-16 15:23:08 -080033TextOutput& printWeakPointer(TextOutput& to, const void* val);
34
The Android Open Source Projectcbb10112009-03-03 19:31:44 -080035// ---------------------------------------------------------------------------
36
Mathias Agopianff49de72011-02-09 18:38:55 -080037#define COMPARE_WEAK(_op_) \
The Android Open Source Projectcbb10112009-03-03 19:31:44 -080038inline bool operator _op_ (const sp<T>& o) const { \
39 return m_ptr _op_ o.m_ptr; \
40} \
The Android Open Source Projectcbb10112009-03-03 19:31:44 -080041inline bool operator _op_ (const T* o) const { \
42 return m_ptr _op_ o; \
43} \
44template<typename U> \
45inline bool operator _op_ (const sp<U>& o) const { \
46 return m_ptr _op_ o.m_ptr; \
47} \
48template<typename U> \
Mathias Agopianff49de72011-02-09 18:38:55 -080049inline bool operator _op_ (const U* o) const { \
50 return m_ptr _op_ o; \
51}
52
Mathias Agopianb26ea8b2011-02-16 20:23:43 -080053// ---------------------------------------------------------------------------
54
55class ReferenceMover;
56class ReferenceConverterBase {
57public:
58 virtual size_t getReferenceTypeSize() const = 0;
59 virtual void* getReferenceBase(void const*) const = 0;
60 inline virtual ~ReferenceConverterBase() { }
61};
The Android Open Source Projectcbb10112009-03-03 19:31:44 -080062
63// ---------------------------------------------------------------------------
64
65class RefBase
66{
67public:
68 void incStrong(const void* id) const;
69 void decStrong(const void* id) const;
70
71 void forceIncStrong(const void* id) const;
72
73 //! DEBUGGING ONLY: Get current strong ref count.
74 int32_t getStrongCount() const;
75
76 class weakref_type
77 {
78 public:
79 RefBase* refBase() const;
80
81 void incWeak(const void* id);
82 void decWeak(const void* id);
83
84 bool attemptIncStrong(const void* id);
85
86 //! This is only safe if you have set OBJECT_LIFETIME_FOREVER.
87 bool attemptIncWeak(const void* id);
88
89 //! DEBUGGING ONLY: Get current weak ref count.
90 int32_t getWeakCount() const;
91
92 //! DEBUGGING ONLY: Print references held on object.
93 void printRefs() const;
94
95 //! DEBUGGING ONLY: Enable tracking for this object.
96 // enable -- enable/disable tracking
97 // retain -- when tracking is enable, if true, then we save a stack trace
98 // for each reference and dereference; when retain == false, we
99 // match up references and dereferences and keep only the
100 // outstanding ones.
101
102 void trackMe(bool enable, bool retain);
103 };
104
105 weakref_type* createWeak(const void* id) const;
106
107 weakref_type* getWeakRefs() const;
108
109 //! DEBUGGING ONLY: Print references held on object.
110 inline void printRefs() const { getWeakRefs()->printRefs(); }
111
112 //! DEBUGGING ONLY: Enable tracking of object.
113 inline void trackMe(bool enable, bool retain)
114 {
115 getWeakRefs()->trackMe(enable, retain);
116 }
117
Mathias Agopianb26ea8b2011-02-16 20:23:43 -0800118 typedef RefBase basetype;
119
The Android Open Source Projectcbb10112009-03-03 19:31:44 -0800120protected:
121 RefBase();
122 virtual ~RefBase();
123
124 //! Flags for extendObjectLifetime()
125 enum {
126 OBJECT_LIFETIME_WEAK = 0x0001,
127 OBJECT_LIFETIME_FOREVER = 0x0003
128 };
129
130 void extendObjectLifetime(int32_t mode);
131
132 //! Flags for onIncStrongAttempted()
133 enum {
134 FIRST_INC_STRONG = 0x0001
135 };
136
137 virtual void onFirstRef();
138 virtual void onLastStrongRef(const void* id);
139 virtual bool onIncStrongAttempted(uint32_t flags, const void* id);
140 virtual void onLastWeakRef(const void* id);
141
142private:
Mathias Agopianb26ea8b2011-02-16 20:23:43 -0800143 friend class ReferenceMover;
144 static void moveReferences(void* d, void const* s, size_t n,
145 const ReferenceConverterBase& caster);
146
147private:
The Android Open Source Projectcbb10112009-03-03 19:31:44 -0800148 friend class weakref_type;
149 class weakref_impl;
150
151 RefBase(const RefBase& o);
152 RefBase& operator=(const RefBase& o);
153
154 weakref_impl* const mRefs;
155};
156
157// ---------------------------------------------------------------------------
158
159template <class T>
160class LightRefBase
161{
162public:
163 inline LightRefBase() : mCount(0) { }
164 inline void incStrong(const void* id) const {
165 android_atomic_inc(&mCount);
166 }
167 inline void decStrong(const void* id) const {
168 if (android_atomic_dec(&mCount) == 1) {
169 delete static_cast<const T*>(this);
170 }
171 }
Mathias Agopian019f8ed2009-05-04 14:17:04 -0700172 //! DEBUGGING ONLY: Get current strong ref count.
173 inline int32_t getStrongCount() const {
174 return mCount;
175 }
Mathias Agopianb26ea8b2011-02-16 20:23:43 -0800176
177 typedef LightRefBase<T> basetype;
178
The Android Open Source Projectcbb10112009-03-03 19:31:44 -0800179protected:
180 inline ~LightRefBase() { }
Mathias Agopianb26ea8b2011-02-16 20:23:43 -0800181
182private:
183 friend class ReferenceMover;
184 inline static void moveReferences(void* d, void const* s, size_t n,
185 const ReferenceConverterBase& caster) { }
186
The Android Open Source Projectcbb10112009-03-03 19:31:44 -0800187private:
188 mutable volatile int32_t mCount;
189};
190
191// ---------------------------------------------------------------------------
192
193template <typename T>
The Android Open Source Projectcbb10112009-03-03 19:31:44 -0800194class wp
195{
196public:
197 typedef typename RefBase::weakref_type weakref_type;
198
199 inline wp() : m_ptr(0) { }
200
201 wp(T* other);
202 wp(const wp<T>& other);
203 wp(const sp<T>& other);
204 template<typename U> wp(U* other);
205 template<typename U> wp(const sp<U>& other);
206 template<typename U> wp(const wp<U>& other);
207
208 ~wp();
209
210 // Assignment
211
212 wp& operator = (T* other);
213 wp& operator = (const wp<T>& other);
214 wp& operator = (const sp<T>& other);
215
216 template<typename U> wp& operator = (U* other);
217 template<typename U> wp& operator = (const wp<U>& other);
218 template<typename U> wp& operator = (const sp<U>& other);
219
220 void set_object_and_refs(T* other, weakref_type* refs);
221
222 // promotion to sp
223
224 sp<T> promote() const;
225
226 // Reset
227
228 void clear();
229
230 // Accessors
231
232 inline weakref_type* get_refs() const { return m_refs; }
233
234 inline T* unsafe_get() const { return m_ptr; }
235
236 // Operators
Mathias Agopianff49de72011-02-09 18:38:55 -0800237
238 COMPARE_WEAK(==)
239 COMPARE_WEAK(!=)
240 COMPARE_WEAK(>)
241 COMPARE_WEAK(<)
242 COMPARE_WEAK(<=)
243 COMPARE_WEAK(>=)
244
245 inline bool operator == (const wp<T>& o) const {
246 return (m_ptr == o.m_ptr) && (m_refs == o.m_refs);
247 }
248 template<typename U>
249 inline bool operator == (const wp<U>& o) const {
250 return m_ptr == o.m_ptr;
251 }
252
253 inline bool operator > (const wp<T>& o) const {
254 return (m_ptr == o.m_ptr) ? (m_refs > o.m_refs) : (m_ptr > o.m_ptr);
255 }
256 template<typename U>
257 inline bool operator > (const wp<U>& o) const {
258 return (m_ptr == o.m_ptr) ? (m_refs > o.m_refs) : (m_ptr > o.m_ptr);
259 }
260
261 inline bool operator < (const wp<T>& o) const {
262 return (m_ptr == o.m_ptr) ? (m_refs < o.m_refs) : (m_ptr < o.m_ptr);
263 }
264 template<typename U>
265 inline bool operator < (const wp<U>& o) const {
266 return (m_ptr == o.m_ptr) ? (m_refs < o.m_refs) : (m_ptr < o.m_ptr);
267 }
268 inline bool operator != (const wp<T>& o) const { return m_refs != o.m_refs; }
269 template<typename U> inline bool operator != (const wp<U>& o) const { return !operator == (o); }
270 inline bool operator <= (const wp<T>& o) const { return !operator > (o); }
271 template<typename U> inline bool operator <= (const wp<U>& o) const { return !operator > (o); }
272 inline bool operator >= (const wp<T>& o) const { return !operator < (o); }
273 template<typename U> inline bool operator >= (const wp<U>& o) const { return !operator < (o); }
The Android Open Source Projectcbb10112009-03-03 19:31:44 -0800274
275private:
276 template<typename Y> friend class sp;
277 template<typename Y> friend class wp;
278
279 T* m_ptr;
280 weakref_type* m_refs;
281};
282
283template <typename T>
284TextOutput& operator<<(TextOutput& to, const wp<T>& val);
285
Mathias Agopianff49de72011-02-09 18:38:55 -0800286#undef COMPARE_WEAK
The Android Open Source Projectcbb10112009-03-03 19:31:44 -0800287
288// ---------------------------------------------------------------------------
289// No user serviceable parts below here.
290
291template<typename T>
The Android Open Source Projectcbb10112009-03-03 19:31:44 -0800292wp<T>::wp(T* other)
293 : m_ptr(other)
294{
295 if (other) m_refs = other->createWeak(this);
296}
297
298template<typename T>
299wp<T>::wp(const wp<T>& other)
300 : m_ptr(other.m_ptr), m_refs(other.m_refs)
301{
302 if (m_ptr) m_refs->incWeak(this);
303}
304
305template<typename T>
306wp<T>::wp(const sp<T>& other)
307 : m_ptr(other.m_ptr)
308{
309 if (m_ptr) {
310 m_refs = m_ptr->createWeak(this);
311 }
312}
313
314template<typename T> template<typename U>
315wp<T>::wp(U* other)
316 : m_ptr(other)
317{
318 if (other) m_refs = other->createWeak(this);
319}
320
321template<typename T> template<typename U>
322wp<T>::wp(const wp<U>& other)
323 : m_ptr(other.m_ptr)
324{
325 if (m_ptr) {
326 m_refs = other.m_refs;
327 m_refs->incWeak(this);
328 }
329}
330
331template<typename T> template<typename U>
332wp<T>::wp(const sp<U>& other)
333 : m_ptr(other.m_ptr)
334{
335 if (m_ptr) {
336 m_refs = m_ptr->createWeak(this);
337 }
338}
339
340template<typename T>
341wp<T>::~wp()
342{
343 if (m_ptr) m_refs->decWeak(this);
344}
345
346template<typename T>
347wp<T>& wp<T>::operator = (T* other)
348{
349 weakref_type* newRefs =
350 other ? other->createWeak(this) : 0;
351 if (m_ptr) m_refs->decWeak(this);
352 m_ptr = other;
353 m_refs = newRefs;
354 return *this;
355}
356
357template<typename T>
358wp<T>& wp<T>::operator = (const wp<T>& other)
359{
Mathias Agopian7b151672010-06-24 21:49:02 -0700360 weakref_type* otherRefs(other.m_refs);
361 T* otherPtr(other.m_ptr);
362 if (otherPtr) otherRefs->incWeak(this);
The Android Open Source Projectcbb10112009-03-03 19:31:44 -0800363 if (m_ptr) m_refs->decWeak(this);
Mathias Agopian7b151672010-06-24 21:49:02 -0700364 m_ptr = otherPtr;
365 m_refs = otherRefs;
The Android Open Source Projectcbb10112009-03-03 19:31:44 -0800366 return *this;
367}
368
369template<typename T>
370wp<T>& wp<T>::operator = (const sp<T>& other)
371{
372 weakref_type* newRefs =
373 other != NULL ? other->createWeak(this) : 0;
Mathias Agopian7b151672010-06-24 21:49:02 -0700374 T* otherPtr(other.m_ptr);
The Android Open Source Projectcbb10112009-03-03 19:31:44 -0800375 if (m_ptr) m_refs->decWeak(this);
Mathias Agopian7b151672010-06-24 21:49:02 -0700376 m_ptr = otherPtr;
The Android Open Source Projectcbb10112009-03-03 19:31:44 -0800377 m_refs = newRefs;
378 return *this;
379}
380
381template<typename T> template<typename U>
382wp<T>& wp<T>::operator = (U* other)
383{
384 weakref_type* newRefs =
385 other ? other->createWeak(this) : 0;
386 if (m_ptr) m_refs->decWeak(this);
387 m_ptr = other;
388 m_refs = newRefs;
389 return *this;
390}
391
392template<typename T> template<typename U>
393wp<T>& wp<T>::operator = (const wp<U>& other)
394{
Mathias Agopian7b151672010-06-24 21:49:02 -0700395 weakref_type* otherRefs(other.m_refs);
396 U* otherPtr(other.m_ptr);
397 if (otherPtr) otherRefs->incWeak(this);
The Android Open Source Projectcbb10112009-03-03 19:31:44 -0800398 if (m_ptr) m_refs->decWeak(this);
Mathias Agopian7b151672010-06-24 21:49:02 -0700399 m_ptr = otherPtr;
400 m_refs = otherRefs;
The Android Open Source Projectcbb10112009-03-03 19:31:44 -0800401 return *this;
402}
403
404template<typename T> template<typename U>
405wp<T>& wp<T>::operator = (const sp<U>& other)
406{
407 weakref_type* newRefs =
408 other != NULL ? other->createWeak(this) : 0;
Mathias Agopian7b151672010-06-24 21:49:02 -0700409 U* otherPtr(other.m_ptr);
The Android Open Source Projectcbb10112009-03-03 19:31:44 -0800410 if (m_ptr) m_refs->decWeak(this);
Mathias Agopian7b151672010-06-24 21:49:02 -0700411 m_ptr = otherPtr;
The Android Open Source Projectcbb10112009-03-03 19:31:44 -0800412 m_refs = newRefs;
413 return *this;
414}
415
416template<typename T>
417void wp<T>::set_object_and_refs(T* other, weakref_type* refs)
418{
419 if (other) refs->incWeak(this);
420 if (m_ptr) m_refs->decWeak(this);
421 m_ptr = other;
422 m_refs = refs;
423}
424
425template<typename T>
426sp<T> wp<T>::promote() const
427{
Mathias Agopianb26ea8b2011-02-16 20:23:43 -0800428 T* p = (m_ptr && m_refs->attemptIncStrong(this)) ? m_ptr : 0;
429 return sp<T>(p, true);
The Android Open Source Projectcbb10112009-03-03 19:31:44 -0800430}
431
432template<typename T>
433void wp<T>::clear()
434{
435 if (m_ptr) {
436 m_refs->decWeak(this);
437 m_ptr = 0;
438 }
439}
440
441template <typename T>
442inline TextOutput& operator<<(TextOutput& to, const wp<T>& val)
443{
Mathias Agopian84a23fa2011-02-16 15:23:08 -0800444 return printWeakPointer(to, val.unsafe_get());
The Android Open Source Projectcbb10112009-03-03 19:31:44 -0800445}
446
Mathias Agopianb26ea8b2011-02-16 20:23:43 -0800447// ---------------------------------------------------------------------------
448
449// this class just serves as a namespace so TYPE::moveReferences can stay
450// private.
451
452class ReferenceMover {
453 // StrongReferenceCast and WeakReferenceCast do the impedance matching
454 // between the generic (void*) implementation in Refbase and the strongly typed
455 // template specializations below.
456
457 template <typename TYPE>
458 struct StrongReferenceCast : public ReferenceConverterBase {
459 virtual size_t getReferenceTypeSize() const { return sizeof( sp<TYPE> ); }
460 virtual void* getReferenceBase(void const* p) const {
461 sp<TYPE> const* sptr(reinterpret_cast<sp<TYPE> const*>(p));
462 return static_cast<typename TYPE::basetype *>(sptr->get());
463 }
464 };
465
466 template <typename TYPE>
467 struct WeakReferenceCast : public ReferenceConverterBase {
468 virtual size_t getReferenceTypeSize() const { return sizeof( wp<TYPE> ); }
469 virtual void* getReferenceBase(void const* p) const {
470 wp<TYPE> const* sptr(reinterpret_cast<wp<TYPE> const*>(p));
471 return static_cast<typename TYPE::basetype *>(sptr->unsafe_get());
472 }
473 };
474
475public:
476 template<typename TYPE> static inline
477 void move_references(sp<TYPE>* d, sp<TYPE> const* s, size_t n) {
478 memmove(d, s, n*sizeof(sp<TYPE>));
479 StrongReferenceCast<TYPE> caster;
480 TYPE::moveReferences(d, s, n, caster);
481 }
482 template<typename TYPE> static inline
483 void move_references(wp<TYPE>* d, wp<TYPE> const* s, size_t n) {
484 memmove(d, s, n*sizeof(wp<TYPE>));
485 WeakReferenceCast<TYPE> caster;
486 TYPE::moveReferences(d, s, n, caster);
487 }
488};
489
490// specialization for moving sp<> and wp<> types.
491// these are used by the [Sorted|Keyed]Vector<> implementations
492// sp<> and wp<> need to be handled specially, because they do not
493// have trivial copy operation in the general case (see RefBase.cpp
494// when DEBUG ops are enabled), but can be implemented very
495// efficiently in most cases.
496
497template<typename TYPE> inline
498void move_forward_type(sp<TYPE>* d, sp<TYPE> const* s, size_t n) {
499 ReferenceMover::move_references(d, s, n);
500}
501
502template<typename TYPE> inline
503void move_backward_type(sp<TYPE>* d, sp<TYPE> const* s, size_t n) {
504 ReferenceMover::move_references(d, s, n);
505}
506
507template<typename TYPE> inline
508void move_forward_type(wp<TYPE>* d, wp<TYPE> const* s, size_t n) {
509 ReferenceMover::move_references(d, s, n);
510}
511
512template<typename TYPE> inline
513void move_backward_type(wp<TYPE>* d, wp<TYPE> const* s, size_t n) {
514 ReferenceMover::move_references(d, s, n);
515}
516
517
The Android Open Source Projectcbb10112009-03-03 19:31:44 -0800518}; // namespace android
519
520// ---------------------------------------------------------------------------
521
522#endif // ANDROID_REF_BASE_H