blob: b7e05d9c984c26ee56ac7b7ea24540b09b78b9e8 [file] [log] [blame]
Jason Sams36e612a2009-07-31 16:26:13 -07001/*
2 * Copyright (C) 2008 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
17package android.renderscript;
18
Mathew Inwoodf0c90b12018-08-01 10:05:11 +010019import android.annotation.UnsupportedAppUsage;
Yang Nieb4dd082016-03-24 09:40:32 -070020import dalvik.system.CloseGuard;
Tim Murray504abb32014-01-07 11:13:56 -080021import java.util.concurrent.locks.ReentrantReadWriteLock;
Jason Sams36e612a2009-07-31 16:26:13 -070022
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -070023/**
Tim Murrayc11e25c2013-04-09 11:01:01 -070024 * BaseObj is the base class for all RenderScript objects owned by a RS context.
25 * It is responsible for lifetime management and resource tracking. This class
26 * should not be used by a user application.
Jason Sams06d69de2010-11-09 17:11:40 -080027 *
Jason Sams36e612a2009-07-31 16:26:13 -070028 **/
Stephen Hinesef353dd2011-03-31 14:45:36 -070029public class BaseObj {
Tim Murray7a629fa2013-11-19 12:45:54 -080030 BaseObj(long id, RenderScript rs) {
Jason Sams718cd1f2009-12-23 14:35:29 -080031 rs.validate();
Jason Sams36e612a2009-07-31 16:26:13 -070032 mRS = rs;
Alex Sakhartchouk0de94442010-08-11 14:41:28 -070033 mID = id;
Jason Sams1bada8c2009-08-09 17:01:55 -070034 mDestroyed = false;
Jason Sams36e612a2009-07-31 16:26:13 -070035 }
36
Ashok Bhat0e0c0882014-02-04 14:57:58 +000037 void setID(long id) {
Jason Sams06d69de2010-11-09 17:11:40 -080038 if (mID != 0) {
39 throw new RSRuntimeException("Internal Error, reset of object ID.");
40 }
41 mID = id;
42 }
43
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -070044 /**
Jason Sams27676fe2010-11-10 17:00:59 -080045 * Lookup the native object ID for this object. Primarily used by the
46 * generated reflected code.
47 *
Jason Samse07694b2012-04-03 15:36:36 -070048 * @param rs Context to verify against internal context for
49 * match.
Jason Sams27676fe2010-11-10 17:00:59 -080050 *
Tim Murray7a629fa2013-11-19 12:45:54 -080051 * @return long
Jason Sams27676fe2010-11-10 17:00:59 -080052 */
Tim Murray7a629fa2013-11-19 12:45:54 -080053 long getID(RenderScript rs) {
Jason Samse07694b2012-04-03 15:36:36 -070054 mRS.validate();
Jason Sams7aa150c2010-09-21 14:47:22 -070055 if (mDestroyed) {
Jason Samsc1d62102010-11-04 14:32:19 -070056 throw new RSInvalidStateException("using a destroyed object.");
Jason Sams7aa150c2010-09-21 14:47:22 -070057 }
Jason Sams5476b452010-12-08 16:14:36 -080058 if (mID == 0) {
59 throw new RSRuntimeException("Internal error: Object id 0.");
60 }
Jason Samse07694b2012-04-03 15:36:36 -070061 if ((rs != null) && (rs != mRS)) {
62 throw new RSInvalidStateException("using object with mismatched context.");
63 }
Jason Sams36e612a2009-07-31 16:26:13 -070064 return mID;
65 }
66
Jason Samsbf6ef8d2010-12-06 15:59:59 -080067 void checkValid() {
68 if (mID == 0) {
69 throw new RSIllegalArgumentException("Invalid object.");
70 }
71 }
72
Tim Murray7a629fa2013-11-19 12:45:54 -080073 private long mID;
Yang Nieb4dd082016-03-24 09:40:32 -070074 final CloseGuard guard = CloseGuard.get();
Jason Sams06d69de2010-11-09 17:11:40 -080075 private boolean mDestroyed;
76 private String mName;
Mathew Inwoodf0c90b12018-08-01 10:05:11 +010077 @UnsupportedAppUsage
Jason Sams36e612a2009-07-31 16:26:13 -070078 RenderScript mRS;
79
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -070080 /**
Jason Sams27676fe2010-11-10 17:00:59 -080081 * setName assigns a name to an object. This object can later be looked up
Tim Murrayc11e25c2013-04-09 11:01:01 -070082 * by this name.
Jason Sams27676fe2010-11-10 17:00:59 -080083 *
84 * @param name The name to assign to the object.
85 */
86 public void setName(String name) {
Stephen Hines84a97ca2011-03-15 21:05:54 -070087 if (name == null) {
88 throw new RSIllegalArgumentException(
89 "setName requires a string of non-zero length.");
90 }
Jason Sams27676fe2010-11-10 17:00:59 -080091 if(name.length() < 1) {
Stephen Hines84a97ca2011-03-15 21:05:54 -070092 throw new RSIllegalArgumentException(
93 "setName does not accept a zero length string.");
Jason Sams36e612a2009-07-31 16:26:13 -070094 }
95 if(mName != null) {
Stephen Hines84a97ca2011-03-15 21:05:54 -070096 throw new RSIllegalArgumentException(
97 "setName object already has a name.");
Jason Sams36e612a2009-07-31 16:26:13 -070098 }
99
100 try {
Jason Sams27676fe2010-11-10 17:00:59 -0800101 byte[] bytes = name.getBytes("UTF-8");
Jason Sams36e612a2009-07-31 16:26:13 -0700102 mRS.nAssignName(mID, bytes);
Jason Sams27676fe2010-11-10 17:00:59 -0800103 mName = name;
Jason Sams36e612a2009-07-31 16:26:13 -0700104 } catch (java.io.UnsupportedEncodingException e) {
105 throw new RuntimeException(e);
106 }
107 }
108
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -0700109 /**
Alex Sakhartchouk0400b072011-07-26 14:13:32 -0700110 * @return name of the renderscript object
111 */
112 public String getName() {
113 return mName;
114 }
115
Tim Murray504abb32014-01-07 11:13:56 -0800116 private void helpDestroy() {
117 boolean shouldDestroy = false;
118 synchronized(this) {
119 if (!mDestroyed) {
120 shouldDestroy = true;
121 mDestroyed = true;
122 }
123 }
124
125 if (shouldDestroy) {
Yang Nieb4dd082016-03-24 09:40:32 -0700126 guard.close();
Tim Murray504abb32014-01-07 11:13:56 -0800127 // must include nObjDestroy in the critical section
128 ReentrantReadWriteLock.ReadLock rlock = mRS.mRWLock.readLock();
129 rlock.lock();
Tim Murray6d63c842014-02-12 11:16:17 -0800130 // AllocationAdapters are BaseObjs with an ID of 0 but should not be passed to nObjDestroy
131 if(mRS.isAlive() && mID != 0) {
Jason Samsd78be372010-08-17 19:28:29 -0700132 mRS.nObjDestroy(mID);
Jason Sams730ee652009-08-18 17:07:09 -0700133 }
Tim Murray504abb32014-01-07 11:13:56 -0800134 rlock.unlock();
Jason Samsa9e7a052009-09-25 14:51:22 -0700135 mRS = null;
Jason Sams730ee652009-08-18 17:07:09 -0700136 mID = 0;
Jason Sams36e612a2009-07-31 16:26:13 -0700137 }
Tim Murray504abb32014-01-07 11:13:56 -0800138 }
139
140 protected void finalize() throws Throwable {
Yang Nieb4dd082016-03-24 09:40:32 -0700141 try {
142 if (guard != null) {
143 guard.warnIfOpen();
144 }
145 helpDestroy();
146 } finally {
147 super.finalize();
148 }
Jason Sams36e612a2009-07-31 16:26:13 -0700149 }
Jason Sams7ce033d2009-08-18 14:14:24 -0700150
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -0700151 /**
Tim Murrayc11e25c2013-04-09 11:01:01 -0700152 * Frees any native resources associated with this object. The
153 * primary use is to force immediate cleanup of resources when it is
154 * believed the GC will not respond quickly enough.
Jason Sams27676fe2010-11-10 17:00:59 -0800155 */
Tim Murray504abb32014-01-07 11:13:56 -0800156 public void destroy() {
Jason Sams7ce033d2009-08-18 14:14:24 -0700157 if(mDestroyed) {
Jason Samsc1d62102010-11-04 14:32:19 -0700158 throw new RSInvalidStateException("Object already destroyed.");
Jason Sams7ce033d2009-08-18 14:14:24 -0700159 }
Tim Murray504abb32014-01-07 11:13:56 -0800160 helpDestroy();
Jason Sams7ce033d2009-08-18 14:14:24 -0700161 }
162
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -0700163 /**
Jason Sams27676fe2010-11-10 17:00:59 -0800164 * If an object came from an a3d file, java fields need to be
165 * created with objects from the native layer
166 */
Alex Sakhartchouk80a4c2c2010-07-12 15:50:32 -0700167 void updateFromNative() {
Jason Sams06d69de2010-11-09 17:11:40 -0800168 mRS.validate();
Jason Samse07694b2012-04-03 15:36:36 -0700169 mName = mRS.nGetName(getID(mRS));
Alex Sakhartchouk80a4c2c2010-07-12 15:50:32 -0700170 }
171
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -0700172 /**
Stephen Hines705d2ea2011-06-09 10:11:54 -0700173 * Calculates the hash code value for a BaseObj.
174 *
175 * @return int
176 */
177 @Override
178 public int hashCode() {
Tim Murray7a629fa2013-11-19 12:45:54 -0800179 return (int)((mID & 0xfffffff) ^ (mID >> 32));
Stephen Hines705d2ea2011-06-09 10:11:54 -0700180 }
181
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -0700182 /**
Stephen Hines705d2ea2011-06-09 10:11:54 -0700183 * Compare the current BaseObj with another BaseObj for equality.
184 *
185 * @param obj The object to check equality with.
186 *
187 * @return boolean
188 */
189 @Override
190 public boolean equals(Object obj) {
191 // Early-out check to see if both BaseObjs are actually the same
192 if (this == obj)
193 return true;
194
Tim Murray78214c952014-02-28 16:57:47 -0800195 if (obj == null) {
196 return false;
197 }
198
Stephen Hines705d2ea2011-06-09 10:11:54 -0700199 if (getClass() != obj.getClass()) {
200 return false;
201 }
202
203 BaseObj b = (BaseObj) obj;
204 return mID == b.mID;
205 }
Jason Sams36e612a2009-07-31 16:26:13 -0700206}
207