blob: 5f03db5d18cfb468996a10becd9d8c1027c25415 [file] [log] [blame]
Jason Sams326e0dd2009-05-22 14:03:28 -07001/*
2 * Copyright (C) 2009 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_RS_OBJECT_BASE_H
18#define ANDROID_RS_OBJECT_BASE_H
19
20#include "rsUtils.h"
21
Jason Sams225afd32010-10-21 14:06:55 -070022#define RS_OBJECT_DEBUG 0
23
24#if RS_OBJECT_DEBUG
25 #include <utils/CallStack.h>
26#endif
Jason Sams326e0dd2009-05-22 14:03:28 -070027
28namespace android {
29namespace renderscript {
30
Jason Samse514b452009-09-25 14:51:22 -070031class Context;
Alex Sakhartchoukfb6b6142010-05-21 12:53:13 -070032class OStream;
Jason Samse514b452009-09-25 14:51:22 -070033
Jason Sams326e0dd2009-05-22 14:03:28 -070034// An element is a group of Components that occupies one cell in a structure.
35class ObjectBase
36{
37public:
Jason Samse514b452009-09-25 14:51:22 -070038 ObjectBase(Context *rsc);
Jason Sams326e0dd2009-05-22 14:03:28 -070039
Jason Sams9397e302009-08-27 20:23:34 -070040 void incSysRef() const;
Jason Samse514b452009-09-25 14:51:22 -070041 bool decSysRef() const;
Jason Sams9397e302009-08-27 20:23:34 -070042
43 void incUserRef() const;
Jason Samse514b452009-09-25 14:51:22 -070044 bool decUserRef() const;
45 bool zeroUserRef() const;
Jason Sams225afd32010-10-21 14:06:55 -070046
47 static bool checkDelete(const ObjectBase *);
Jason Sams326e0dd2009-05-22 14:03:28 -070048
Jason Samsa0a1b6f2009-06-10 15:04:38 -070049 const char * getName() const {
Alex Sakhartchoukfb6b6142010-05-21 12:53:13 -070050 return mName.string();
Jason Samsa0a1b6f2009-06-10 15:04:38 -070051 }
52 void setName(const char *);
Jason Samsa4a54e42009-06-10 18:39:40 -070053 void setName(const char *, uint32_t len);
Jason Samsa0a1b6f2009-06-10 15:04:38 -070054
Jason Samse514b452009-09-25 14:51:22 -070055 Context * getContext() const {return mRSC;}
Jason Samse514b452009-09-25 14:51:22 -070056
57 static void zeroAllUserRef(Context *rsc);
Jason Samsc21cf402009-11-17 17:26:46 -080058 static void dumpAll(Context *rsc);
Jason Samse514b452009-09-25 14:51:22 -070059
Jason Samse12c1c52009-09-27 17:50:38 -070060 virtual void dumpLOGV(const char *prefix) const;
Alex Sakhartchoukfb6b6142010-05-21 12:53:13 -070061 virtual void serialize(OStream *stream) const = 0;
Alex Sakhartchoukb825f672010-06-04 10:06:50 -070062 virtual RsA3DClassID getClassId() const = 0;
Jason Samsf2649a92009-09-25 16:37:33 -070063
Jason Sams605048a2010-09-30 18:15:52 -070064 static bool isValid(const Context *rsc, const ObjectBase *obj);
65
Jason Sams225afd32010-10-21 14:06:55 -070066 // The async lock is taken during object creation in non-rs threads
67 // and object deletion in the rs thread.
68 static void asyncLock();
69 static void asyncUnlock();
Jason Sams2353ae32010-10-14 17:48:46 -070070
Jason Samsf2649a92009-09-25 16:37:33 -070071protected:
Jason Sams225afd32010-10-21 14:06:55 -070072 // Called inside the async lock for any object list management that is
73 // necessary in derived classes.
74 virtual void preDestroy() const;
75
Jason Sams81549542010-02-17 15:38:10 -080076 Context *mRSC;
Jason Sams225afd32010-10-21 14:06:55 -070077 virtual ~ObjectBase();
Jason Samsf2649a92009-09-25 16:37:33 -070078
Jason Sams326e0dd2009-05-22 14:03:28 -070079private:
Jason Sams2353ae32010-10-14 17:48:46 -070080 static pthread_mutex_t gObjectInitMutex;
81
Jason Samse514b452009-09-25 14:51:22 -070082 void add() const;
83 void remove() const;
84
Alex Sakhartchoukfb6b6142010-05-21 12:53:13 -070085 String8 mName;
Jason Sams9397e302009-08-27 20:23:34 -070086 mutable int32_t mSysRefCount;
87 mutable int32_t mUserRefCount;
Jason Sams326e0dd2009-05-22 14:03:28 -070088
Jason Samse514b452009-09-25 14:51:22 -070089 mutable const ObjectBase * mPrev;
90 mutable const ObjectBase * mNext;
Jason Sams225afd32010-10-21 14:06:55 -070091
92#if RS_OBJECT_DEBUG
93 CallStack mStack;
94#endif
95
Jason Sams326e0dd2009-05-22 14:03:28 -070096};
97
Jason Sams9397e302009-08-27 20:23:34 -070098template<class T>
99class ObjectBaseRef
Jason Sams326e0dd2009-05-22 14:03:28 -0700100{
101public:
102 ObjectBaseRef() {
103 mRef = NULL;
104 }
105
Jason Sams10308932009-06-09 12:15:30 -0700106 ObjectBaseRef(const ObjectBaseRef &ref) {
107 mRef = ref.get();
Jason Samsa0a1b6f2009-06-10 15:04:38 -0700108 if (mRef) {
Jason Sams9397e302009-08-27 20:23:34 -0700109 mRef->incSysRef();
Jason Samsa0a1b6f2009-06-10 15:04:38 -0700110 }
Jason Sams10308932009-06-09 12:15:30 -0700111 }
112
113 ObjectBaseRef(T *ref) {
114 mRef = ref;
Jason Samsa0a1b6f2009-06-10 15:04:38 -0700115 if (mRef) {
Jason Sams9397e302009-08-27 20:23:34 -0700116 ref->incSysRef();
Jason Samsa0a1b6f2009-06-10 15:04:38 -0700117 }
Jason Sams10308932009-06-09 12:15:30 -0700118 }
119
Jason Sams225afd32010-10-21 14:06:55 -0700120 ObjectBaseRef & operator= (const ObjectBaseRef &ref) {
121 return ObjectBaseRef(ref);
122 }
123
Jason Sams326e0dd2009-05-22 14:03:28 -0700124 ~ObjectBaseRef() {
125 clear();
126 }
127
128 void set(T *ref) {
129 if (mRef != ref) {
130 clear();
131 mRef = ref;
Jason Samsa0a1b6f2009-06-10 15:04:38 -0700132 if (mRef) {
Jason Sams9397e302009-08-27 20:23:34 -0700133 ref->incSysRef();
Jason Samsa0a1b6f2009-06-10 15:04:38 -0700134 }
Jason Sams326e0dd2009-05-22 14:03:28 -0700135 }
136 }
137
Jason Samsa0a1b6f2009-06-10 15:04:38 -0700138 void set(const ObjectBaseRef &ref) {
139 set(ref.mRef);
140 }
141
Jason Sams326e0dd2009-05-22 14:03:28 -0700142 void clear() {
143 if (mRef) {
Jason Sams9397e302009-08-27 20:23:34 -0700144 mRef->decSysRef();
Jason Sams326e0dd2009-05-22 14:03:28 -0700145 }
146 mRef = NULL;
147 }
148
149 inline T * get() const {
150 return mRef;
151 }
152
Jason Sams9397e302009-08-27 20:23:34 -0700153 inline T * operator-> () const {
154 return mRef;
Jason Sams326e0dd2009-05-22 14:03:28 -0700155 }
156
157protected:
158 T * mRef;
159
Jason Sams326e0dd2009-05-22 14:03:28 -0700160};
161
162
163}
164}
165
166#endif //ANDROID_RS_OBJECT_BASE_H
167