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 | |||||
22 | |||||
23 | namespace android { | ||||
24 | namespace renderscript { | ||||
25 | |||||
Jason Sams | a9e7a05 | 2009-09-25 14:51:22 -0700 | [diff] [blame] | 26 | class Context; |
27 | |||||
Jason Sams | d19f10d | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 28 | // An element is a group of Components that occupies one cell in a structure. |
29 | class ObjectBase | ||||
30 | { | ||||
31 | public: | ||||
Jason Sams | a9e7a05 | 2009-09-25 14:51:22 -0700 | [diff] [blame] | 32 | ObjectBase(Context *rsc); |
Jason Sams | d19f10d | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 33 | virtual ~ObjectBase(); |
34 | |||||
Jason Sams | 07ae406 | 2009-08-27 20:23:34 -0700 | [diff] [blame] | 35 | void incSysRef() const; |
Jason Sams | a9e7a05 | 2009-09-25 14:51:22 -0700 | [diff] [blame] | 36 | bool decSysRef() const; |
Jason Sams | 07ae406 | 2009-08-27 20:23:34 -0700 | [diff] [blame] | 37 | |
38 | void incUserRef() const; | ||||
Jason Sams | a9e7a05 | 2009-09-25 14:51:22 -0700 | [diff] [blame] | 39 | bool decUserRef() const; |
40 | bool zeroUserRef() const; | ||||
Jason Sams | d19f10d | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 41 | |
Jason Sams | 3eaa338 | 2009-06-10 15:04:38 -0700 | [diff] [blame] | 42 | const char * getName() const { |
43 | return mName; | ||||
44 | } | ||||
45 | void setName(const char *); | ||||
Jason Sams | d5680f9 | 2009-06-10 18:39:40 -0700 | [diff] [blame] | 46 | void setName(const char *, uint32_t len); |
Jason Sams | 3eaa338 | 2009-06-10 15:04:38 -0700 | [diff] [blame] | 47 | |
Jason Sams | a9e7a05 | 2009-09-25 14:51:22 -0700 | [diff] [blame] | 48 | Context * getContext() const {return mRSC;} |
49 | void setContext(Context *); | ||||
50 | |||||
51 | static void zeroAllUserRef(Context *rsc); | ||||
Jason Sams | 715333b | 2009-11-17 17:26:46 -0800 | [diff] [blame] | 52 | static void dumpAll(Context *rsc); |
Jason Sams | a9e7a05 | 2009-09-25 14:51:22 -0700 | [diff] [blame] | 53 | |
Jason Sams | 3c0dfba | 2009-09-27 17:50:38 -0700 | [diff] [blame] | 54 | virtual void dumpLOGV(const char *prefix) const; |
Jason Sams | 61f08d6 | 2009-09-25 16:37:33 -0700 | [diff] [blame] | 55 | |
56 | protected: | ||||
57 | const char *mAllocFile; | ||||
58 | uint32_t mAllocLine; | ||||
Jason Sams | e4c487a | 2010-02-17 15:38:10 -0800 | [diff] [blame] | 59 | Context *mRSC; |
Jason Sams | 61f08d6 | 2009-09-25 16:37:33 -0700 | [diff] [blame] | 60 | |
Jason Sams | d19f10d | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 61 | private: |
Jason Sams | a9e7a05 | 2009-09-25 14:51:22 -0700 | [diff] [blame] | 62 | void add() const; |
63 | void remove() const; | ||||
64 | |||||
65 | bool checkDelete() const; | ||||
66 | |||||
Jason Sams | 3eaa338 | 2009-06-10 15:04:38 -0700 | [diff] [blame] | 67 | char * mName; |
Jason Sams | 07ae406 | 2009-08-27 20:23:34 -0700 | [diff] [blame] | 68 | mutable int32_t mSysRefCount; |
69 | mutable int32_t mUserRefCount; | ||||
Jason Sams | d19f10d | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 70 | |
Jason Sams | a9e7a05 | 2009-09-25 14:51:22 -0700 | [diff] [blame] | 71 | mutable const ObjectBase * mPrev; |
72 | mutable const ObjectBase * mNext; | ||||
Jason Sams | d19f10d | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 73 | }; |
74 | |||||
Jason Sams | 07ae406 | 2009-08-27 20:23:34 -0700 | [diff] [blame] | 75 | template<class T> |
76 | class ObjectBaseRef | ||||
Jason Sams | d19f10d | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 77 | { |
78 | public: | ||||
79 | ObjectBaseRef() { | ||||
80 | mRef = NULL; | ||||
81 | } | ||||
82 | |||||
Jason Sams | da423d8 | 2009-06-09 12:15:30 -0700 | [diff] [blame] | 83 | ObjectBaseRef(const ObjectBaseRef &ref) { |
84 | mRef = ref.get(); | ||||
Jason Sams | 3eaa338 | 2009-06-10 15:04:38 -0700 | [diff] [blame] | 85 | if (mRef) { |
Jason Sams | 07ae406 | 2009-08-27 20:23:34 -0700 | [diff] [blame] | 86 | mRef->incSysRef(); |
Jason Sams | 3eaa338 | 2009-06-10 15:04:38 -0700 | [diff] [blame] | 87 | } |
Jason Sams | da423d8 | 2009-06-09 12:15:30 -0700 | [diff] [blame] | 88 | } |
89 | |||||
90 | ObjectBaseRef(T *ref) { | ||||
91 | mRef = ref; | ||||
Jason Sams | 3eaa338 | 2009-06-10 15:04:38 -0700 | [diff] [blame] | 92 | if (mRef) { |
Jason Sams | 07ae406 | 2009-08-27 20:23:34 -0700 | [diff] [blame] | 93 | ref->incSysRef(); |
Jason Sams | 3eaa338 | 2009-06-10 15:04:38 -0700 | [diff] [blame] | 94 | } |
Jason Sams | da423d8 | 2009-06-09 12:15:30 -0700 | [diff] [blame] | 95 | } |
96 | |||||
Jason Sams | d19f10d | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 97 | ~ObjectBaseRef() { |
98 | clear(); | ||||
99 | } | ||||
100 | |||||
101 | void set(T *ref) { | ||||
102 | if (mRef != ref) { | ||||
103 | clear(); | ||||
104 | mRef = ref; | ||||
Jason Sams | 3eaa338 | 2009-06-10 15:04:38 -0700 | [diff] [blame] | 105 | if (mRef) { |
Jason Sams | 07ae406 | 2009-08-27 20:23:34 -0700 | [diff] [blame] | 106 | ref->incSysRef(); |
Jason Sams | 3eaa338 | 2009-06-10 15:04:38 -0700 | [diff] [blame] | 107 | } |
Jason Sams | d19f10d | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 108 | } |
109 | } | ||||
110 | |||||
Jason Sams | 3eaa338 | 2009-06-10 15:04:38 -0700 | [diff] [blame] | 111 | void set(const ObjectBaseRef &ref) { |
112 | set(ref.mRef); | ||||
113 | } | ||||
114 | |||||
Jason Sams | d19f10d | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 115 | void clear() { |
116 | if (mRef) { | ||||
Jason Sams | 07ae406 | 2009-08-27 20:23:34 -0700 | [diff] [blame] | 117 | mRef->decSysRef(); |
Jason Sams | d19f10d | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 118 | } |
119 | mRef = NULL; | ||||
120 | } | ||||
121 | |||||
122 | inline T * get() const { | ||||
123 | return mRef; | ||||
124 | } | ||||
125 | |||||
Jason Sams | 07ae406 | 2009-08-27 20:23:34 -0700 | [diff] [blame] | 126 | inline T * operator-> () const { |
127 | return mRef; | ||||
Jason Sams | d19f10d | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 128 | } |
129 | |||||
130 | protected: | ||||
131 | T * mRef; | ||||
132 | |||||
Jason Sams | d19f10d | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 133 | }; |
134 | |||||
135 | |||||
136 | } | ||||
137 | } | ||||
138 | |||||
139 | #endif //ANDROID_RS_OBJECT_BASE_H | ||||
140 |