Jason Sams | d19f10d | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 1 | /* |
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 Sams | b38d534 | 2010-10-21 14:06:55 -0700 | [diff] [blame] | 22 | #define RS_OBJECT_DEBUG 0 |
23 | |||||
Jason Sams | 31a7e42 | 2010-10-26 13:09:17 -0700 | [diff] [blame^] | 24 | #include <utils/CallStack.h> |
Jason Sams | d19f10d | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 25 | |
26 | namespace android { | ||||
27 | namespace renderscript { | ||||
28 | |||||
Jason Sams | a9e7a05 | 2009-09-25 14:51:22 -0700 | [diff] [blame] | 29 | class Context; |
Alex Sakhartchouk | aa7d288 | 2010-05-21 12:53:13 -0700 | [diff] [blame] | 30 | class OStream; |
Jason Sams | a9e7a05 | 2009-09-25 14:51:22 -0700 | [diff] [blame] | 31 | |
Jason Sams | d19f10d | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 32 | // An element is a group of Components that occupies one cell in a structure. |
33 | class ObjectBase | ||||
34 | { | ||||
35 | public: | ||||
Jason Sams | a9e7a05 | 2009-09-25 14:51:22 -0700 | [diff] [blame] | 36 | ObjectBase(Context *rsc); |
Jason Sams | d19f10d | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 37 | |
Jason Sams | 07ae406 | 2009-08-27 20:23:34 -0700 | [diff] [blame] | 38 | void incSysRef() const; |
Jason Sams | a9e7a05 | 2009-09-25 14:51:22 -0700 | [diff] [blame] | 39 | bool decSysRef() const; |
Jason Sams | 07ae406 | 2009-08-27 20:23:34 -0700 | [diff] [blame] | 40 | |
41 | void incUserRef() const; | ||||
Jason Sams | a9e7a05 | 2009-09-25 14:51:22 -0700 | [diff] [blame] | 42 | bool decUserRef() const; |
43 | bool zeroUserRef() const; | ||||
Jason Sams | b38d534 | 2010-10-21 14:06:55 -0700 | [diff] [blame] | 44 | |
45 | static bool checkDelete(const ObjectBase *); | ||||
Jason Sams | d19f10d | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 46 | |
Jason Sams | 3eaa338 | 2009-06-10 15:04:38 -0700 | [diff] [blame] | 47 | const char * getName() const { |
Alex Sakhartchouk | aa7d288 | 2010-05-21 12:53:13 -0700 | [diff] [blame] | 48 | return mName.string(); |
Jason Sams | 3eaa338 | 2009-06-10 15:04:38 -0700 | [diff] [blame] | 49 | } |
50 | void setName(const char *); | ||||
Jason Sams | d5680f9 | 2009-06-10 18:39:40 -0700 | [diff] [blame] | 51 | void setName(const char *, uint32_t len); |
Jason Sams | 3eaa338 | 2009-06-10 15:04:38 -0700 | [diff] [blame] | 52 | |
Jason Sams | a9e7a05 | 2009-09-25 14:51:22 -0700 | [diff] [blame] | 53 | Context * getContext() const {return mRSC;} |
Jason Sams | a9e7a05 | 2009-09-25 14:51:22 -0700 | [diff] [blame] | 54 | |
55 | static void zeroAllUserRef(Context *rsc); | ||||
Jason Sams | 715333b | 2009-11-17 17:26:46 -0800 | [diff] [blame] | 56 | static void dumpAll(Context *rsc); |
Jason Sams | a9e7a05 | 2009-09-25 14:51:22 -0700 | [diff] [blame] | 57 | |
Jason Sams | 3c0dfba | 2009-09-27 17:50:38 -0700 | [diff] [blame] | 58 | virtual void dumpLOGV(const char *prefix) const; |
Alex Sakhartchouk | aa7d288 | 2010-05-21 12:53:13 -0700 | [diff] [blame] | 59 | virtual void serialize(OStream *stream) const = 0; |
Alex Sakhartchouk | aae74ad | 2010-06-04 10:06:50 -0700 | [diff] [blame] | 60 | virtual RsA3DClassID getClassId() const = 0; |
Jason Sams | 61f08d6 | 2009-09-25 16:37:33 -0700 | [diff] [blame] | 61 | |
Jason Sams | f166d9b | 2010-09-30 18:15:52 -0700 | [diff] [blame] | 62 | static bool isValid(const Context *rsc, const ObjectBase *obj); |
63 | |||||
Jason Sams | b38d534 | 2010-10-21 14:06:55 -0700 | [diff] [blame] | 64 | // The async lock is taken during object creation in non-rs threads |
65 | // and object deletion in the rs thread. | ||||
66 | static void asyncLock(); | ||||
67 | static void asyncUnlock(); | ||||
Jason Sams | 3b9c52a | 2010-10-14 17:48:46 -0700 | [diff] [blame] | 68 | |
Jason Sams | 61f08d6 | 2009-09-25 16:37:33 -0700 | [diff] [blame] | 69 | protected: |
Jason Sams | b38d534 | 2010-10-21 14:06:55 -0700 | [diff] [blame] | 70 | // Called inside the async lock for any object list management that is |
71 | // necessary in derived classes. | ||||
72 | virtual void preDestroy() const; | ||||
73 | |||||
Jason Sams | e4c487a | 2010-02-17 15:38:10 -0800 | [diff] [blame] | 74 | Context *mRSC; |
Jason Sams | b38d534 | 2010-10-21 14:06:55 -0700 | [diff] [blame] | 75 | virtual ~ObjectBase(); |
Jason Sams | 61f08d6 | 2009-09-25 16:37:33 -0700 | [diff] [blame] | 76 | |
Jason Sams | d19f10d | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 77 | private: |
Jason Sams | 3b9c52a | 2010-10-14 17:48:46 -0700 | [diff] [blame] | 78 | static pthread_mutex_t gObjectInitMutex; |
79 | |||||
Jason Sams | a9e7a05 | 2009-09-25 14:51:22 -0700 | [diff] [blame] | 80 | void add() const; |
81 | void remove() const; | ||||
82 | |||||
Alex Sakhartchouk | aa7d288 | 2010-05-21 12:53:13 -0700 | [diff] [blame] | 83 | String8 mName; |
Jason Sams | 07ae406 | 2009-08-27 20:23:34 -0700 | [diff] [blame] | 84 | mutable int32_t mSysRefCount; |
85 | mutable int32_t mUserRefCount; | ||||
Jason Sams | d19f10d | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 86 | |
Jason Sams | a9e7a05 | 2009-09-25 14:51:22 -0700 | [diff] [blame] | 87 | mutable const ObjectBase * mPrev; |
88 | mutable const ObjectBase * mNext; | ||||
Jason Sams | b38d534 | 2010-10-21 14:06:55 -0700 | [diff] [blame] | 89 | |
90 | #if RS_OBJECT_DEBUG | ||||
91 | CallStack mStack; | ||||
92 | #endif | ||||
93 | |||||
Jason Sams | d19f10d | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 94 | }; |
95 | |||||
Jason Sams | 07ae406 | 2009-08-27 20:23:34 -0700 | [diff] [blame] | 96 | template<class T> |
97 | class ObjectBaseRef | ||||
Jason Sams | d19f10d | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 98 | { |
99 | public: | ||||
100 | ObjectBaseRef() { | ||||
101 | mRef = NULL; | ||||
102 | } | ||||
103 | |||||
Jason Sams | da423d8 | 2009-06-09 12:15:30 -0700 | [diff] [blame] | 104 | ObjectBaseRef(const ObjectBaseRef &ref) { |
105 | mRef = ref.get(); | ||||
Jason Sams | 3eaa338 | 2009-06-10 15:04:38 -0700 | [diff] [blame] | 106 | if (mRef) { |
Jason Sams | 07ae406 | 2009-08-27 20:23:34 -0700 | [diff] [blame] | 107 | mRef->incSysRef(); |
Jason Sams | 3eaa338 | 2009-06-10 15:04:38 -0700 | [diff] [blame] | 108 | } |
Jason Sams | da423d8 | 2009-06-09 12:15:30 -0700 | [diff] [blame] | 109 | } |
110 | |||||
111 | ObjectBaseRef(T *ref) { | ||||
112 | mRef = ref; | ||||
Jason Sams | 3eaa338 | 2009-06-10 15:04:38 -0700 | [diff] [blame] | 113 | if (mRef) { |
Jason Sams | 07ae406 | 2009-08-27 20:23:34 -0700 | [diff] [blame] | 114 | ref->incSysRef(); |
Jason Sams | 3eaa338 | 2009-06-10 15:04:38 -0700 | [diff] [blame] | 115 | } |
Jason Sams | da423d8 | 2009-06-09 12:15:30 -0700 | [diff] [blame] | 116 | } |
117 | |||||
Jason Sams | b38d534 | 2010-10-21 14:06:55 -0700 | [diff] [blame] | 118 | ObjectBaseRef & operator= (const ObjectBaseRef &ref) { |
119 | return ObjectBaseRef(ref); | ||||
120 | } | ||||
121 | |||||
Jason Sams | d19f10d | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 122 | ~ObjectBaseRef() { |
123 | clear(); | ||||
124 | } | ||||
125 | |||||
126 | void set(T *ref) { | ||||
127 | if (mRef != ref) { | ||||
128 | clear(); | ||||
129 | mRef = ref; | ||||
Jason Sams | 3eaa338 | 2009-06-10 15:04:38 -0700 | [diff] [blame] | 130 | if (mRef) { |
Jason Sams | 07ae406 | 2009-08-27 20:23:34 -0700 | [diff] [blame] | 131 | ref->incSysRef(); |
Jason Sams | 3eaa338 | 2009-06-10 15:04:38 -0700 | [diff] [blame] | 132 | } |
Jason Sams | d19f10d | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 133 | } |
134 | } | ||||
135 | |||||
Jason Sams | 3eaa338 | 2009-06-10 15:04:38 -0700 | [diff] [blame] | 136 | void set(const ObjectBaseRef &ref) { |
137 | set(ref.mRef); | ||||
138 | } | ||||
139 | |||||
Jason Sams | d19f10d | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 140 | void clear() { |
141 | if (mRef) { | ||||
Jason Sams | 07ae406 | 2009-08-27 20:23:34 -0700 | [diff] [blame] | 142 | mRef->decSysRef(); |
Jason Sams | d19f10d | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 143 | } |
144 | mRef = NULL; | ||||
145 | } | ||||
146 | |||||
147 | inline T * get() const { | ||||
148 | return mRef; | ||||
149 | } | ||||
150 | |||||
Jason Sams | 07ae406 | 2009-08-27 20:23:34 -0700 | [diff] [blame] | 151 | inline T * operator-> () const { |
152 | return mRef; | ||||
Jason Sams | d19f10d | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 153 | } |
154 | |||||
155 | protected: | ||||
156 | T * mRef; | ||||
157 | |||||
Jason Sams | d19f10d | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 158 | }; |
159 | |||||
160 | |||||
161 | } | ||||
162 | } | ||||
163 | |||||
164 | #endif //ANDROID_RS_OBJECT_BASE_H | ||||
165 |