blob: 64d21e49dee5808d176deadbafde760410da6d97 [file] [log] [blame]
Jason Sams69f0d312009-08-03 18:11:17 -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
Joe Onoratod7b37742009-08-09 22:57:44 -070019import android.content.res.Resources;
Joe Onoratod7b37742009-08-09 22:57:44 -070020
Shih-wei Liao6b32fab2010-12-10 01:03:59 -080021import java.io.File;
Jason Sams69f0d312009-08-03 18:11:17 -070022import java.io.IOException;
23import java.io.InputStream;
Joe Onoratof415cf22009-08-10 15:15:52 -070024
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -070025/**
Tim Murrayc11e25c2013-04-09 11:01:01 -070026 * The superclass for all user-defined scripts. This is only
27 * intended to be used by the generated derived classes.
Jason Sams69f0d312009-08-03 18:11:17 -070028 **/
29public class ScriptC extends Script {
Joe Onoratof415cf22009-08-10 15:15:52 -070030 private static final String TAG = "ScriptC";
31
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -070032 /**
Jason Sams67e3d202011-01-09 13:49:01 -080033 * Only intended for use by the generated derived classes.
34 *
35 * @param id
36 * @param rs
37 */
Jason Sams3ba02b32010-11-03 23:01:38 -070038 protected ScriptC(int id, RenderScript rs) {
Jason Sams69f0d312009-08-03 18:11:17 -070039 super(id, rs);
40 }
Ashok Bhat0e0c0882014-02-04 14:57:58 +000041 /**
42 * Only intended for use by the generated derived classes.
43 *
44 * @param id
45 * @param rs
46 *
Ashok Bhat0e0c0882014-02-04 14:57:58 +000047 */
48 protected ScriptC(long id, RenderScript rs) {
49 super(id, rs);
50 }
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -070051 /**
Jason Sams67e3d202011-01-09 13:49:01 -080052 * Only intended for use by the generated derived classes.
53 *
54 *
55 * @param rs
56 * @param resources
57 * @param resourceID
58 */
Jason Sams3ba02b32010-11-03 23:01:38 -070059 protected ScriptC(RenderScript rs, Resources resources, int resourceID) {
Jason Sams2d71bc72010-03-26 16:06:43 -070060 super(0, rs);
Ashok Bhat0e0c0882014-02-04 14:57:58 +000061 long id = internalCreate(rs, resources, resourceID);
Jason Samsfdc54a92011-01-19 16:14:21 -080062 if (id == 0) {
63 throw new RSRuntimeException("Loading of ScriptC script failed.");
64 }
Jason Sams06d69de2010-11-09 17:11:40 -080065 setID(id);
Jason Sams2d71bc72010-03-26 16:06:43 -070066 }
67
Stephen Hines7d25a822013-04-09 23:51:56 -070068 /**
Tim Murray56f9e6f2014-05-16 11:47:26 -070069 * Only intended for use by the generated derived classes.
70 *
71 * @param rs
Tim Murray56f9e6f2014-05-16 11:47:26 -070072 */
73 protected ScriptC(RenderScript rs, String resName, byte[] bitcode32, byte[] bitcode64) {
74 super(0, rs);
75 long id = 0;
76 if (RenderScript.sPointerSize == 4) {
77 id = internalStringCreate(rs, resName, bitcode32);
78 } else {
79 id = internalStringCreate(rs, resName, bitcode64);
80 }
81 if (id == 0) {
82 throw new RSRuntimeException("Loading of ScriptC script failed.");
83 }
84 setID(id);
85 }
86
87 /**
Stephen Hines7d25a822013-04-09 23:51:56 -070088 * Name of the file that holds the object cache.
89 */
90 private static final String CACHE_PATH = "com.android.renderscript.cache";
91
92 static String mCachePath;
Jason Sams2d71bc72010-03-26 16:06:43 -070093
Ashok Bhat0e0c0882014-02-04 14:57:58 +000094 private static synchronized long internalCreate(RenderScript rs, Resources resources, int resourceID) {
Jason Sams2d71bc72010-03-26 16:06:43 -070095 byte[] pgm;
96 int pgmLength;
97 InputStream is = resources.openRawResource(resourceID);
98 try {
99 try {
100 pgm = new byte[1024];
101 pgmLength = 0;
102 while(true) {
103 int bytesLeft = pgm.length - pgmLength;
104 if (bytesLeft == 0) {
105 byte[] buf2 = new byte[pgm.length * 2];
106 System.arraycopy(pgm, 0, buf2, 0, pgm.length);
107 pgm = buf2;
108 bytesLeft = pgm.length - pgmLength;
109 }
110 int bytesRead = is.read(pgm, pgmLength, bytesLeft);
111 if (bytesRead <= 0) {
112 break;
113 }
114 pgmLength += bytesRead;
115 }
116 } finally {
117 is.close();
118 }
119 } catch(IOException e) {
120 throw new Resources.NotFoundException();
121 }
122
Logan Chienef72ff22011-07-11 15:32:24 +0800123 String resName = resources.getResourceEntryName(resourceID);
Shih-wei Liaoeeca4352010-12-20 20:45:56 +0800124
Stephen Hines7d25a822013-04-09 23:51:56 -0700125 // Create the RS cache path if we haven't done so already.
126 if (mCachePath == null) {
127 File f = new File(rs.mCacheDir, CACHE_PATH);
128 mCachePath = f.getAbsolutePath();
129 f.mkdirs();
130 }
Tim Murrayda67deb2013-05-09 12:02:50 -0700131 // Log.v(TAG, "Create script for resource = " + resName);
Stephen Hines7d25a822013-04-09 23:51:56 -0700132 return rs.nScriptCCreate(resName, mCachePath, pgm, pgmLength);
Jason Sams2d71bc72010-03-26 16:06:43 -0700133 }
Tim Murray56f9e6f2014-05-16 11:47:26 -0700134
135 private static synchronized long internalStringCreate(RenderScript rs, String resName, byte[] bitcode) {
136 // Create the RS cache path if we haven't done so already.
137 if (mCachePath == null) {
138 File f = new File(rs.mCacheDir, CACHE_PATH);
139 mCachePath = f.getAbsolutePath();
140 f.mkdirs();
141 }
142 // Log.v(TAG, "Create script for resource = " + resName);
143 return rs.nScriptCCreate(resName, mCachePath, bitcode, bitcode.length);
144 }
145
146
Jason Sams69f0d312009-08-03 18:11:17 -0700147}