blob: b4055882ab2a55b118a4b3f8095156f392f4f164 [file] [log] [blame]
Jason Sams69f0d312009-08-03 18:11:17 -07001/*
Stephen Hinesadeb8092012-04-20 14:26:06 -07002 * Copyright (C) 2008-2012 The Android Open Source Project
Jason Sams69f0d312009-08-03 18:11:17 -07003 *
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
Jason Sams08a81582012-09-18 12:32:10 -070019import android.util.SparseArray;
20
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -070021/**
Jason Samsa23d4e72011-01-04 18:59:12 -080022 *
Jason Sams69f0d312009-08-03 18:11:17 -070023 **/
24public class Script extends BaseObj {
Jason Sams08a81582012-09-18 12:32:10 -070025
26 /**
27 * KernelID is an identifier for a Script + root function pair. It is used
28 * as an identifier for ScriptGroup creation.
29 *
30 * This class should not be directly created. Instead use the method in the
31 * reflected or intrinsic code "getKernelID_funcname()".
32 *
33 */
34 public static final class KernelID extends BaseObj {
35 Script mScript;
36 int mSlot;
37 int mSig;
38 KernelID(int id, RenderScript rs, Script s, int slot, int sig) {
39 super(id, rs);
40 mScript = s;
41 mSlot = slot;
42 mSig = sig;
43 }
44 }
45
46 private final SparseArray<KernelID> mKIDs = new SparseArray<KernelID>();
47 /**
48 * Only to be used by generated reflected classes.
49 *
50 *
51 * @param slot
52 * @param sig
53 * @param ein
54 * @param eout
55 *
56 * @return KernelID
57 */
58 protected KernelID createKernelID(int slot, int sig, Element ein, Element eout) {
59 KernelID k = mKIDs.get(slot);
60 if (k != null) {
61 return k;
62 }
63
64 int id = mRS.nScriptKernelIDCreate(getID(mRS), slot, sig);
65 if (id == 0) {
66 throw new RSDriverException("Failed to create KernelID");
67 }
68
69 k = new KernelID(id, mRS, this, slot, sig);
70 mKIDs.put(slot, k);
71 return k;
72 }
73
74 /**
75 * FieldID is an identifier for a Script + exported field pair. It is used
76 * as an identifier for ScriptGroup creation.
77 *
78 * This class should not be directly created. Instead use the method in the
79 * reflected or intrinsic code "getFieldID_funcname()".
80 *
81 */
82 public static final class FieldID extends BaseObj {
83 Script mScript;
84 int mSlot;
85 FieldID(int id, RenderScript rs, Script s, int slot) {
86 super(id, rs);
87 mScript = s;
88 mSlot = slot;
89 }
90 }
91
92 private final SparseArray<FieldID> mFIDs = new SparseArray();
93 /**
94 * Only to be used by generated reflected classes.
95 *
96 * @param slot
97 * @param e
98 *
99 * @return FieldID
100 */
101 protected FieldID createFieldID(int slot, Element e) {
102 FieldID f = mFIDs.get(slot);
103 if (f != null) {
104 return f;
105 }
106
107 int id = mRS.nScriptFieldIDCreate(getID(mRS), slot);
108 if (id == 0) {
109 throw new RSDriverException("Failed to create FieldID");
110 }
111
112 f = new FieldID(id, mRS, this, slot);
113 mFIDs.put(slot, f);
114 return f;
115 }
116
117
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -0700118 /**
Jason Sams67e3d202011-01-09 13:49:01 -0800119 * Only intended for use by generated reflected code.
120 *
121 * @param slot
122 */
Jason Sams2d71bc72010-03-26 16:06:43 -0700123 protected void invoke(int slot) {
Jason Samse07694b2012-04-03 15:36:36 -0700124 mRS.nScriptInvoke(getID(mRS), slot);
Jason Sams2d71bc72010-03-26 16:06:43 -0700125 }
126
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -0700127 /**
Jason Sams67e3d202011-01-09 13:49:01 -0800128 * Only intended for use by generated reflected code.
129 *
130 * @param slot
131 * @param v
132 */
Jason Sams96ed4cf2010-06-15 12:15:57 -0700133 protected void invoke(int slot, FieldPacker v) {
134 if (v != null) {
Jason Samse07694b2012-04-03 15:36:36 -0700135 mRS.nScriptInvokeV(getID(mRS), slot, v.getData());
Jason Sams96ed4cf2010-06-15 12:15:57 -0700136 } else {
Jason Samse07694b2012-04-03 15:36:36 -0700137 mRS.nScriptInvoke(getID(mRS), slot);
Jason Sams96ed4cf2010-06-15 12:15:57 -0700138 }
Jason Sams4d339932010-05-11 14:03:58 -0700139 }
140
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -0700141 /**
Jason Sams6e494d32011-04-27 16:33:11 -0700142 * Only intended for use by generated reflected code.
143 *
144 * @param slot
145 * @param ain
146 * @param aout
147 * @param v
148 */
149 protected void forEach(int slot, Allocation ain, Allocation aout, FieldPacker v) {
150 if (ain == null && aout == null) {
151 throw new RSIllegalArgumentException(
152 "At least one of ain or aout is required to be non-null.");
153 }
154 int in_id = 0;
155 if (ain != null) {
Jason Samse07694b2012-04-03 15:36:36 -0700156 in_id = ain.getID(mRS);
Jason Sams6e494d32011-04-27 16:33:11 -0700157 }
158 int out_id = 0;
159 if (aout != null) {
Jason Samse07694b2012-04-03 15:36:36 -0700160 out_id = aout.getID(mRS);
Jason Sams6e494d32011-04-27 16:33:11 -0700161 }
162 byte[] params = null;
163 if (v != null) {
164 params = v.getData();
165 }
Jason Samse07694b2012-04-03 15:36:36 -0700166 mRS.nScriptForEach(getID(mRS), slot, in_id, out_id, params);
Jason Sams6e494d32011-04-27 16:33:11 -0700167 }
168
Tim Murrayeb8c29c2013-02-07 12:16:41 -0800169 protected void forEach(int slot, Allocation ain, Allocation aout, FieldPacker v, LaunchOptions sc) {
170 if (ain == null && aout == null) {
171 throw new RSIllegalArgumentException(
172 "At least one of ain or aout is required to be non-null.");
173 }
Tim Murrayba9dd062013-02-12 16:22:34 -0800174
175 if (sc == null) {
176 forEach(slot, ain, aout, v);
177 return;
178 }
Tim Murrayeb8c29c2013-02-07 12:16:41 -0800179 int in_id = 0;
180 if (ain != null) {
181 in_id = ain.getID(mRS);
182 }
183 int out_id = 0;
184 if (aout != null) {
185 out_id = aout.getID(mRS);
186 }
187 byte[] params = null;
188 if (v != null) {
189 params = v.getData();
190 }
191 mRS.nScriptForEachClipped(getID(mRS), slot, in_id, out_id, params, sc.xstart, sc.xend, sc.ystart, sc.yend, sc.zstart, sc.zend);
192 }
Jason Sams4d339932010-05-11 14:03:58 -0700193
Jason Sams69f0d312009-08-03 18:11:17 -0700194 Script(int id, RenderScript rs) {
Alex Sakhartchouk0de94442010-08-11 14:41:28 -0700195 super(id, rs);
Jason Sams69f0d312009-08-03 18:11:17 -0700196 }
197
Jason Sams67e3d202011-01-09 13:49:01 -0800198
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -0700199 /**
Jason Sams67e3d202011-01-09 13:49:01 -0800200 * Only intended for use by generated reflected code.
201 *
202 * @param va
203 * @param slot
204 */
Jason Sams69f0d312009-08-03 18:11:17 -0700205 public void bindAllocation(Allocation va, int slot) {
Jason Sams771bebb2009-12-07 12:40:12 -0800206 mRS.validate();
Jason Sams4d339932010-05-11 14:03:58 -0700207 if (va != null) {
Jason Samse07694b2012-04-03 15:36:36 -0700208 mRS.nScriptBindAllocation(getID(mRS), va.getID(mRS), slot);
Jason Sams4d339932010-05-11 14:03:58 -0700209 } else {
Jason Samse07694b2012-04-03 15:36:36 -0700210 mRS.nScriptBindAllocation(getID(mRS), 0, slot);
Jason Sams4d339932010-05-11 14:03:58 -0700211 }
212 }
213
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -0700214 /**
Jason Sams67e3d202011-01-09 13:49:01 -0800215 * Only intended for use by generated reflected code.
216 *
217 * @param index
218 * @param v
219 */
Jason Sams4d339932010-05-11 14:03:58 -0700220 public void setVar(int index, float v) {
Jason Samse07694b2012-04-03 15:36:36 -0700221 mRS.nScriptSetVarF(getID(mRS), index, v);
Jason Sams4d339932010-05-11 14:03:58 -0700222 }
223
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -0700224 /**
Jason Sams67e3d202011-01-09 13:49:01 -0800225 * Only intended for use by generated reflected code.
226 *
227 * @param index
228 * @param v
229 */
Stephen Hinesca54ec32010-09-20 17:20:30 -0700230 public void setVar(int index, double v) {
Jason Samse07694b2012-04-03 15:36:36 -0700231 mRS.nScriptSetVarD(getID(mRS), index, v);
Stephen Hinesca54ec32010-09-20 17:20:30 -0700232 }
233
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -0700234 /**
Jason Sams67e3d202011-01-09 13:49:01 -0800235 * Only intended for use by generated reflected code.
236 *
237 * @param index
238 * @param v
239 */
Jason Sams4d339932010-05-11 14:03:58 -0700240 public void setVar(int index, int v) {
Jason Samse07694b2012-04-03 15:36:36 -0700241 mRS.nScriptSetVarI(getID(mRS), index, v);
Jason Sams4d339932010-05-11 14:03:58 -0700242 }
243
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -0700244 /**
Jason Sams67e3d202011-01-09 13:49:01 -0800245 * Only intended for use by generated reflected code.
246 *
247 * @param index
248 * @param v
249 */
Stephen Hines031ec58c2010-10-11 10:54:21 -0700250 public void setVar(int index, long v) {
Jason Samse07694b2012-04-03 15:36:36 -0700251 mRS.nScriptSetVarJ(getID(mRS), index, v);
Stephen Hines031ec58c2010-10-11 10:54:21 -0700252 }
253
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -0700254 /**
Jason Sams67e3d202011-01-09 13:49:01 -0800255 * Only intended for use by generated reflected code.
256 *
257 * @param index
258 * @param v
259 */
Jason Sams0b9a22c2010-07-02 15:35:19 -0700260 public void setVar(int index, boolean v) {
Jason Samse07694b2012-04-03 15:36:36 -0700261 mRS.nScriptSetVarI(getID(mRS), index, v ? 1 : 0);
Jason Sams0b9a22c2010-07-02 15:35:19 -0700262 }
263
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -0700264 /**
Jason Sams67e3d202011-01-09 13:49:01 -0800265 * Only intended for use by generated reflected code.
266 *
267 * @param index
268 * @param o
269 */
Jason Sams6f4cf0b2010-11-16 17:37:02 -0800270 public void setVar(int index, BaseObj o) {
Jason Samse07694b2012-04-03 15:36:36 -0700271 mRS.nScriptSetVarObj(getID(mRS), index, (o == null) ? 0 : o.getID(mRS));
Jason Sams6f4cf0b2010-11-16 17:37:02 -0800272 }
273
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -0700274 /**
Jason Sams67e3d202011-01-09 13:49:01 -0800275 * Only intended for use by generated reflected code.
276 *
277 * @param index
278 * @param v
279 */
Jason Sams4d339932010-05-11 14:03:58 -0700280 public void setVar(int index, FieldPacker v) {
Jason Samse07694b2012-04-03 15:36:36 -0700281 mRS.nScriptSetVarV(getID(mRS), index, v.getData());
Jason Sams69f0d312009-08-03 18:11:17 -0700282 }
283
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -0700284 /**
Stephen Hinesadeb8092012-04-20 14:26:06 -0700285 * Only intended for use by generated reflected code.
286 *
287 * @param index
288 * @param v
289 * @param e
290 * @param dims
291 */
292 public void setVar(int index, FieldPacker v, Element e, int[] dims) {
293 mRS.nScriptSetVarVE(getID(mRS), index, v.getData(), e.getID(mRS), dims);
294 }
295
Jason Sams22534172009-08-04 16:58:20 -0700296 public void setTimeZone(String timeZone) {
Jason Sams771bebb2009-12-07 12:40:12 -0800297 mRS.validate();
Jason Sams22534172009-08-04 16:58:20 -0700298 try {
Jason Samse07694b2012-04-03 15:36:36 -0700299 mRS.nScriptSetTimeZone(getID(mRS), timeZone.getBytes("UTF-8"));
Jason Sams22534172009-08-04 16:58:20 -0700300 } catch (java.io.UnsupportedEncodingException e) {
301 throw new RuntimeException(e);
302 }
303 }
Jason Sams69f0d312009-08-03 18:11:17 -0700304
305 public static class Builder {
306 RenderScript mRS;
Jason Sams69f0d312009-08-03 18:11:17 -0700307
308 Builder(RenderScript rs) {
309 mRS = rs;
310 }
Jason Sams69f0d312009-08-03 18:11:17 -0700311 }
312
Jason Sams2d71bc72010-03-26 16:06:43 -0700313
314 public static class FieldBase {
315 protected Element mElement;
Jason Sams2d71bc72010-03-26 16:06:43 -0700316 protected Allocation mAllocation;
317
318 protected void init(RenderScript rs, int dimx) {
Jason Sams5476b452010-12-08 16:14:36 -0800319 mAllocation = Allocation.createSized(rs, mElement, dimx, Allocation.USAGE_SCRIPT);
320 }
321
322 protected void init(RenderScript rs, int dimx, int usages) {
323 mAllocation = Allocation.createSized(rs, mElement, dimx, Allocation.USAGE_SCRIPT | usages);
Jason Sams2d71bc72010-03-26 16:06:43 -0700324 }
325
326 protected FieldBase() {
327 }
328
329 public Element getElement() {
330 return mElement;
331 }
332
333 public Type getType() {
Jason Sams31a7e422010-10-26 13:09:17 -0700334 return mAllocation.getType();
Jason Sams2d71bc72010-03-26 16:06:43 -0700335 }
336
337 public Allocation getAllocation() {
338 return mAllocation;
339 }
340
341 //@Override
342 public void updateAllocation() {
343 }
Jason Sams2d71bc72010-03-26 16:06:43 -0700344 }
Tim Murrayfbfaa852012-12-14 16:01:58 -0800345
346 public static final class LaunchOptions {
Tim Murrayeb8c29c2013-02-07 12:16:41 -0800347 protected int xstart = 0;
348 protected int ystart = 0;
349 protected int xend = 0;
350 protected int yend = 0;
351 protected int zstart = 0;
352 protected int zend = 0;
Tim Murrayfbfaa852012-12-14 16:01:58 -0800353
354 protected int strategy;
355
Tim Murrayeb8c29c2013-02-07 12:16:41 -0800356 public LaunchOptions setX(int xstartArg, int xendArg) {
Tim Murrayfbfaa852012-12-14 16:01:58 -0800357 if (xstartArg < 0 || xendArg <= xstartArg) {
358 throw new RSIllegalArgumentException("Invalid dimensions");
359 }
360 xstart = xstartArg;
361 xend = xendArg;
Tim Murrayeb8c29c2013-02-07 12:16:41 -0800362 return this;
Tim Murrayfbfaa852012-12-14 16:01:58 -0800363 }
364
Tim Murrayeb8c29c2013-02-07 12:16:41 -0800365 public LaunchOptions setY(int ystartArg, int yendArg) {
Tim Murrayfbfaa852012-12-14 16:01:58 -0800366 if (ystartArg < 0 || yendArg <= ystartArg) {
367 throw new RSIllegalArgumentException("Invalid dimensions");
368 }
369 ystart = ystartArg;
370 yend = yendArg;
Tim Murrayeb8c29c2013-02-07 12:16:41 -0800371 return this;
Tim Murrayfbfaa852012-12-14 16:01:58 -0800372 }
373
Tim Murrayeb8c29c2013-02-07 12:16:41 -0800374 public LaunchOptions setZ(int zstartArg, int zendArg) {
375 if (zstartArg < 0 || zendArg <= zstartArg) {
376 throw new RSIllegalArgumentException("Invalid dimensions");
377 }
378 zstart = zstartArg;
379 zend = zendArg;
380 return this;
381 }
382
383
Tim Murrayfbfaa852012-12-14 16:01:58 -0800384 public int getXStart() {
385 return xstart;
386 }
387 public int getXEnd() {
388 return xend;
389 }
390 public int getYStart() {
391 return ystart;
392 }
393 public int getYEnd() {
394 return yend;
395 }
Tim Murrayeb8c29c2013-02-07 12:16:41 -0800396 public int getZStart() {
397 return zstart;
398 }
399 public int getZEnd() {
400 return zend;
401 }
Tim Murrayfbfaa852012-12-14 16:01:58 -0800402
403 }
Jason Sams69f0d312009-08-03 18:11:17 -0700404}
405