blob: 3be195f80873dac71117da98dbe7c6441d092ac2 [file] [log] [blame]
Jason Sams221a4b12012-02-22 15:22:41 -08001/*
Tim Murraya4230962013-07-17 16:50:10 -07002 * Copyright (C) 2013 The Android Open Source Project
Jason Sams221a4b12012-02-22 15:22:41 -08003 *
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
Jason Sams221a4b12012-02-22 15:22:41 -080017#include <malloc.h>
18#include <string.h>
Tim Murray84bf2b82012-10-31 16:03:16 -070019#include <pthread.h>
Jason Sams221a4b12012-02-22 15:22:41 -080020
21#include "RenderScript.h"
Tim Murray89daad62013-07-29 14:30:02 -070022#include "rsCppStructs.h"
Tim Murrayeeaf7142013-09-09 15:03:50 -070023#include "rsCppInternal.h"
Jason Sams221a4b12012-02-22 15:22:41 -080024
Tim Murraya4230962013-07-17 16:50:10 -070025#include <dlfcn.h>
26
Tim Murray4a92d122013-07-22 10:56:18 -070027#if !defined(RS_SERVER) && defined(HAVE_ANDROID_OS)
28#include <cutils/properties.h>
29#endif
30
Jason Sams69cccdf2012-04-02 19:11:49 -070031using namespace android;
Tim Murray9eb7f4b2012-11-16 14:02:18 -080032using namespace RSC;
Jason Sams69cccdf2012-04-02 19:11:49 -070033
Tim Murray84bf2b82012-10-31 16:03:16 -070034bool RS::gInitialized = false;
Tim Murray4a92d122013-07-22 10:56:18 -070035bool RS::usingNative = false;
Tim Murray84bf2b82012-10-31 16:03:16 -070036pthread_mutex_t RS::gInitMutex = PTHREAD_MUTEX_INITIALIZER;
Tim Murraya4230962013-07-17 16:50:10 -070037dispatchTable* RS::dispatch = NULL;
Tim Murraya4230962013-07-17 16:50:10 -070038static int gInitError = 0;
Jason Sams221a4b12012-02-22 15:22:41 -080039
Tim Murray84bf2b82012-10-31 16:03:16 -070040RS::RS() {
Jason Sams221a4b12012-02-22 15:22:41 -080041 mDev = NULL;
42 mContext = NULL;
43 mErrorFunc = NULL;
44 mMessageFunc = NULL;
45 mMessageRun = false;
Tim Murraya4230962013-07-17 16:50:10 -070046 mInit = false;
Tim Murray21fa7a02013-08-15 16:25:03 -070047 mCurrentError = RS_SUCCESS;
Jason Sams221a4b12012-02-22 15:22:41 -080048
49 memset(&mElements, 0, sizeof(mElements));
Tim Murray729b6fe2013-07-23 16:20:42 -070050 memset(&mSamplers, 0, sizeof(mSamplers));
Jason Sams221a4b12012-02-22 15:22:41 -080051}
52
Tim Murray84bf2b82012-10-31 16:03:16 -070053RS::~RS() {
Tim Murraya4230962013-07-17 16:50:10 -070054 if (mInit == true) {
55 mMessageRun = false;
Jason Sams221a4b12012-02-22 15:22:41 -080056
Tim Murraya4230962013-07-17 16:50:10 -070057 RS::dispatch->ContextDeinitToClient(mContext);
Jason Sams221a4b12012-02-22 15:22:41 -080058
Tim Murraya4230962013-07-17 16:50:10 -070059 void *res = NULL;
60 int status = pthread_join(mMessageThreadId, &res);
Jason Sams221a4b12012-02-22 15:22:41 -080061
Tim Murraya4230962013-07-17 16:50:10 -070062 RS::dispatch->ContextDestroy(mContext);
63 mContext = NULL;
64 RS::dispatch->DeviceDestroy(mDev);
65 mDev = NULL;
66 }
Jason Sams221a4b12012-02-22 15:22:41 -080067}
68
Tim Murray84e3dea2013-09-09 16:12:51 -070069bool RS::init(uint32_t flags) {
70 return RS::init(RS_VERSION, flags);
Tim Murray84bf2b82012-10-31 16:03:16 -070071}
72
Tim Murray0b8a2be2013-07-23 16:25:41 -070073static bool loadSymbols(void* handle) {
74
75 RS::dispatch->AllocationGetType = (AllocationGetTypeFnPtr)dlsym(handle, "rsaAllocationGetType");
76 if (RS::dispatch->AllocationGetType == NULL) {
77 ALOGE("Couldn't initialize RS::dispatch->AllocationGetType");
78 return false;
79 }
80 RS::dispatch->TypeGetNativeData = (TypeGetNativeDataFnPtr)dlsym(handle, "rsaTypeGetNativeData");
81 if (RS::dispatch->TypeGetNativeData == NULL) {
82 ALOGE("Couldn't initialize RS::dispatch->TypeGetNativeData");
83 return false;
84 }
85 RS::dispatch->ElementGetNativeData = (ElementGetNativeDataFnPtr)dlsym(handle, "rsaElementGetNativeData");
86 if (RS::dispatch->ElementGetNativeData == NULL) {
87 ALOGE("Couldn't initialize RS::dispatch->ElementGetNativeData");
88 return false;
89 }
90 RS::dispatch->ElementGetSubElements = (ElementGetSubElementsFnPtr)dlsym(handle, "rsaElementGetSubElements");
91 if (RS::dispatch->ElementGetSubElements == NULL) {
92 ALOGE("Couldn't initialize RS::dispatch->ElementGetSubElements");
93 return false;
94 }
95 RS::dispatch->DeviceCreate = (DeviceCreateFnPtr)dlsym(handle, "rsDeviceCreate");
96 if (RS::dispatch->DeviceCreate == NULL) {
97 ALOGE("Couldn't initialize RS::dispatch->DeviceCreate");
98 return false;
99 }
100 RS::dispatch->DeviceDestroy = (DeviceDestroyFnPtr)dlsym(handle, "rsDeviceDestroy");
101 if (RS::dispatch->DeviceDestroy == NULL) {
102 ALOGE("Couldn't initialize RS::dispatch->DeviceDestroy");
103 return false;
104 }
105 RS::dispatch->DeviceSetConfig = (DeviceSetConfigFnPtr)dlsym(handle, "rsDeviceSetConfig");
106 if (RS::dispatch->DeviceSetConfig == NULL) {
107 ALOGE("Couldn't initialize RS::dispatch->DeviceSetConfig");
108 return false;
109 }
110 RS::dispatch->ContextCreate = (ContextCreateFnPtr)dlsym(handle, "rsContextCreate");;
111 if (RS::dispatch->ContextCreate == NULL) {
112 ALOGE("Couldn't initialize RS::dispatch->ContextCreate");
113 return false;
114 }
Tim Murray4a92d122013-07-22 10:56:18 -0700115 RS::dispatch->GetName = (GetNameFnPtr)dlsym(handle, "rsaGetName");;
116 if (RS::dispatch->GetName == NULL) {
117 ALOGE("Couldn't initialize RS::dispatch->GetName");
118 return false;
119 }
Tim Murray0b8a2be2013-07-23 16:25:41 -0700120 RS::dispatch->ContextDestroy = (ContextDestroyFnPtr)dlsym(handle, "rsContextDestroy");
121 if (RS::dispatch->ContextDestroy == NULL) {
122 ALOGE("Couldn't initialize RS::dispatch->ContextDestroy");
123 return false;
124 }
125 RS::dispatch->ContextGetMessage = (ContextGetMessageFnPtr)dlsym(handle, "rsContextGetMessage");
126 if (RS::dispatch->ContextGetMessage == NULL) {
127 ALOGE("Couldn't initialize RS::dispatch->ContextGetMessage");
128 return false;
129 }
130 RS::dispatch->ContextPeekMessage = (ContextPeekMessageFnPtr)dlsym(handle, "rsContextPeekMessage");
131 if (RS::dispatch->ContextPeekMessage == NULL) {
132 ALOGE("Couldn't initialize RS::dispatch->ContextPeekMessage");
133 return false;
134 }
135 RS::dispatch->ContextSendMessage = (ContextSendMessageFnPtr)dlsym(handle, "rsContextSendMessage");
136 if (RS::dispatch->ContextSendMessage == NULL) {
137 ALOGE("Couldn't initialize RS::dispatch->ContextSendMessage");
138 return false;
139 }
140 RS::dispatch->ContextInitToClient = (ContextInitToClientFnPtr)dlsym(handle, "rsContextInitToClient");
141 if (RS::dispatch->ContextInitToClient == NULL) {
142 ALOGE("Couldn't initialize RS::dispatch->ContextInitToClient");
143 return false;
144 }
145 RS::dispatch->ContextDeinitToClient = (ContextDeinitToClientFnPtr)dlsym(handle, "rsContextDeinitToClient");
146 if (RS::dispatch->ContextDeinitToClient == NULL) {
147 ALOGE("Couldn't initialize RS::dispatch->ContextDeinitToClient");
148 return false;
149 }
150 RS::dispatch->TypeCreate = (TypeCreateFnPtr)dlsym(handle, "rsTypeCreate");
151 if (RS::dispatch->TypeCreate == NULL) {
152 ALOGE("Couldn't initialize RS::dispatch->TypeCreate");
153 return false;
154 }
155 RS::dispatch->AllocationCreateTyped = (AllocationCreateTypedFnPtr)dlsym(handle, "rsAllocationCreateTyped");
156 if (RS::dispatch->AllocationCreateTyped == NULL) {
157 ALOGE("Couldn't initialize RS::dispatch->AllocationCreateTyped");
158 return false;
159 }
160 RS::dispatch->AllocationCreateFromBitmap = (AllocationCreateFromBitmapFnPtr)dlsym(handle, "rsAllocationCreateFromBitmap");
161 if (RS::dispatch->AllocationCreateFromBitmap == NULL) {
162 ALOGE("Couldn't initialize RS::dispatch->AllocationCreateFromBitmap");
163 return false;
164 }
165 RS::dispatch->AllocationCubeCreateFromBitmap = (AllocationCubeCreateFromBitmapFnPtr)dlsym(handle, "rsAllocationCubeCreateFromBitmap");
166 if (RS::dispatch->AllocationCubeCreateFromBitmap == NULL) {
167 ALOGE("Couldn't initialize RS::dispatch->AllocationCubeCreateFromBitmap");
168 return false;
169 }
170 RS::dispatch->AllocationGetSurface = (AllocationGetSurfaceFnPtr)dlsym(handle, "rsAllocationGetSurface");
171 if (RS::dispatch->AllocationGetSurface == NULL) {
172 ALOGE("Couldn't initialize RS::dispatch->AllocationGetSurface");
173 return false;
174 }
175 RS::dispatch->AllocationSetSurface = (AllocationSetSurfaceFnPtr)dlsym(handle, "rsAllocationSetSurface");
176 if (RS::dispatch->AllocationSetSurface == NULL) {
177 ALOGE("Couldn't initialize RS::dispatch->AllocationSetSurface");
178 return false;
179 }
180 RS::dispatch->ContextFinish = (ContextFinishFnPtr)dlsym(handle, "rsContextFinish");
181 if (RS::dispatch->ContextFinish == NULL) {
182 ALOGE("Couldn't initialize RS::dispatch->ContextFinish");
183 return false;
184 }
185 RS::dispatch->ContextDump = (ContextDumpFnPtr)dlsym(handle, "rsContextDump");
186 if (RS::dispatch->ContextDump == NULL) {
187 ALOGE("Couldn't initialize RS::dispatch->ContextDump");
188 return false;
189 }
190 RS::dispatch->ContextSetPriority = (ContextSetPriorityFnPtr)dlsym(handle, "rsContextSetPriority");
191 if (RS::dispatch->ContextSetPriority == NULL) {
192 ALOGE("Couldn't initialize RS::dispatch->ContextSetPriority");
193 return false;
194 }
195 RS::dispatch->AssignName = (AssignNameFnPtr)dlsym(handle, "rsAssignName");
196 if (RS::dispatch->AssignName == NULL) {
197 ALOGE("Couldn't initialize RS::dispatch->AssignName");
198 return false;
199 }
200 RS::dispatch->ObjDestroy = (ObjDestroyFnPtr)dlsym(handle, "rsObjDestroy");
201 if (RS::dispatch->ObjDestroy == NULL) {
202 ALOGE("Couldn't initialize RS::dispatch->ObjDestroy");
203 return false;
204 }
205 RS::dispatch->ElementCreate = (ElementCreateFnPtr)dlsym(handle, "rsElementCreate");
206 if (RS::dispatch->ElementCreate == NULL) {
207 ALOGE("Couldn't initialize RS::dispatch->ElementCreate");
208 return false;
209 }
210 RS::dispatch->ElementCreate2 = (ElementCreate2FnPtr)dlsym(handle, "rsElementCreate2");
211 if (RS::dispatch->ElementCreate2 == NULL) {
212 ALOGE("Couldn't initialize RS::dispatch->ElementCreate2");
213 return false;
214 }
215 RS::dispatch->AllocationCopyToBitmap = (AllocationCopyToBitmapFnPtr)dlsym(handle, "rsAllocationCopyToBitmap");
216 if (RS::dispatch->AllocationCopyToBitmap == NULL) {
217 ALOGE("Couldn't initialize RS::dispatch->AllocationCopyToBitmap");
218 return false;
219 }
220 RS::dispatch->Allocation1DData = (Allocation1DDataFnPtr)dlsym(handle, "rsAllocation1DData");
221 if (RS::dispatch->Allocation1DData == NULL) {
222 ALOGE("Couldn't initialize RS::dispatch->Allocation1DData");
223 return false;
224 }
225 RS::dispatch->Allocation1DElementData = (Allocation1DElementDataFnPtr)dlsym(handle, "rsAllocation1DElementData");
226 if (RS::dispatch->Allocation1DElementData == NULL) {
227 ALOGE("Couldn't initialize RS::dispatch->Allocation1DElementData");
228 return false;
229 }
230 RS::dispatch->Allocation2DData = (Allocation2DDataFnPtr)dlsym(handle, "rsAllocation2DData");
231 if (RS::dispatch->Allocation2DData == NULL) {
232 ALOGE("Couldn't initialize RS::dispatch->Allocation2DData");
233 return false;
234 }
235 RS::dispatch->Allocation3DData = (Allocation3DDataFnPtr)dlsym(handle, "rsAllocation3DData");
236 if (RS::dispatch->Allocation3DData == NULL) {
237 ALOGE("Couldn't initialize RS::dispatch->Allocation3DData");
238 return false;
239 }
240 RS::dispatch->AllocationGenerateMipmaps = (AllocationGenerateMipmapsFnPtr)dlsym(handle, "rsAllocationGenerateMipmaps");
241 if (RS::dispatch->AllocationGenerateMipmaps == NULL) {
242 ALOGE("Couldn't initialize RS::dispatch->AllocationGenerateMipmaps");
243 return false;
244 }
245 RS::dispatch->AllocationRead = (AllocationReadFnPtr)dlsym(handle, "rsAllocationRead");
246 if (RS::dispatch->AllocationRead == NULL) {
247 ALOGE("Couldn't initialize RS::dispatch->AllocationRead");
248 return false;
249 }
250 RS::dispatch->Allocation1DRead = (Allocation1DReadFnPtr)dlsym(handle, "rsAllocation1DRead");
251 if (RS::dispatch->Allocation1DRead == NULL) {
252 ALOGE("Couldn't initialize RS::dispatch->Allocation1DRead");
253 return false;
254 }
255 RS::dispatch->Allocation2DRead = (Allocation2DReadFnPtr)dlsym(handle, "rsAllocation2DRead");
256 if (RS::dispatch->Allocation2DRead == NULL) {
257 ALOGE("Couldn't initialize RS::dispatch->Allocation2DRead");
258 return false;
259 }
260 RS::dispatch->AllocationSyncAll = (AllocationSyncAllFnPtr)dlsym(handle, "rsAllocationSyncAll");
261 if (RS::dispatch->AllocationSyncAll == NULL) {
262 ALOGE("Couldn't initialize RS::dispatch->AllocationSyncAll");
263 return false;
264 }
265 RS::dispatch->AllocationResize1D = (AllocationResize1DFnPtr)dlsym(handle, "rsAllocationResize1D");
266 if (RS::dispatch->AllocationResize1D == NULL) {
267 ALOGE("Couldn't initialize RS::dispatch->AllocationResize1D");
268 return false;
269 }
270 RS::dispatch->AllocationCopy2DRange = (AllocationCopy2DRangeFnPtr)dlsym(handle, "rsAllocationCopy2DRange");
271 if (RS::dispatch->AllocationCopy2DRange == NULL) {
272 ALOGE("Couldn't initialize RS::dispatch->AllocationCopy2DRange");
273 return false;
274 }
275 RS::dispatch->AllocationCopy3DRange = (AllocationCopy3DRangeFnPtr)dlsym(handle, "rsAllocationCopy3DRange");
276 if (RS::dispatch->AllocationCopy3DRange == NULL) {
277 ALOGE("Couldn't initialize RS::dispatch->AllocationCopy3DRange");
278 return false;
279 }
280 RS::dispatch->SamplerCreate = (SamplerCreateFnPtr)dlsym(handle, "rsSamplerCreate");
281 if (RS::dispatch->SamplerCreate == NULL) {
282 ALOGE("Couldn't initialize RS::dispatch->SamplerCreate");
283 return false;
284 }
285 RS::dispatch->ScriptBindAllocation = (ScriptBindAllocationFnPtr)dlsym(handle, "rsScriptBindAllocation");
286 if (RS::dispatch->ScriptBindAllocation == NULL) {
287 ALOGE("Couldn't initialize RS::dispatch->ScriptBindAllocation");
288 return false;
289 }
290 RS::dispatch->ScriptSetTimeZone = (ScriptSetTimeZoneFnPtr)dlsym(handle, "rsScriptSetTimeZone");
291 if (RS::dispatch->ScriptSetTimeZone == NULL) {
292 ALOGE("Couldn't initialize RS::dispatch->ScriptSetTimeZone");
293 return false;
294 }
295 RS::dispatch->ScriptInvoke = (ScriptInvokeFnPtr)dlsym(handle, "rsScriptInvoke");
296 if (RS::dispatch->ScriptInvoke == NULL) {
297 ALOGE("Couldn't initialize RS::dispatch->ScriptInvoke");
298 return false;
299 }
300 RS::dispatch->ScriptInvokeV = (ScriptInvokeVFnPtr)dlsym(handle, "rsScriptInvokeV");
301 if (RS::dispatch->ScriptInvokeV == NULL) {
302 ALOGE("Couldn't initialize RS::dispatch->ScriptInvokeV");
303 return false;
304 }
305 RS::dispatch->ScriptForEach = (ScriptForEachFnPtr)dlsym(handle, "rsScriptForEach");
306 if (RS::dispatch->ScriptForEach == NULL) {
307 ALOGE("Couldn't initialize RS::dispatch->ScriptForEach");
308 return false;
309 }
310 RS::dispatch->ScriptSetVarI = (ScriptSetVarIFnPtr)dlsym(handle, "rsScriptSetVarI");
311 if (RS::dispatch->ScriptSetVarI == NULL) {
312 ALOGE("Couldn't initialize RS::dispatch->ScriptSetVarI");
313 return false;
314 }
315 RS::dispatch->ScriptSetVarObj = (ScriptSetVarObjFnPtr)dlsym(handle, "rsScriptSetVarObj");
316 if (RS::dispatch->ScriptSetVarObj == NULL) {
317 ALOGE("Couldn't initialize RS::dispatch->ScriptSetVarObj");
318 return false;
319 }
320 RS::dispatch->ScriptSetVarJ = (ScriptSetVarJFnPtr)dlsym(handle, "rsScriptSetVarJ");
321 if (RS::dispatch->ScriptSetVarJ == NULL) {
322 ALOGE("Couldn't initialize RS::dispatch->ScriptSetVarJ");
323 return false;
324 }
325 RS::dispatch->ScriptSetVarF = (ScriptSetVarFFnPtr)dlsym(handle, "rsScriptSetVarF");
326 if (RS::dispatch->ScriptSetVarF == NULL) {
327 ALOGE("Couldn't initialize RS::dispatch->ScriptSetVarF");
328 return false;
329 }
330 RS::dispatch->ScriptSetVarD = (ScriptSetVarDFnPtr)dlsym(handle, "rsScriptSetVarD");
331 if (RS::dispatch->ScriptSetVarD == NULL) {
332 ALOGE("Couldn't initialize RS::dispatch->ScriptSetVarD");
333 return false;
334 }
335 RS::dispatch->ScriptSetVarV = (ScriptSetVarVFnPtr)dlsym(handle, "rsScriptSetVarV");
336 if (RS::dispatch->ScriptSetVarV == NULL) {
337 ALOGE("Couldn't initialize RS::dispatch->ScriptSetVarV");
338 return false;
339 }
340 RS::dispatch->ScriptGetVarV = (ScriptGetVarVFnPtr)dlsym(handle, "rsScriptGetVarV");
341 if (RS::dispatch->ScriptGetVarV == NULL) {
342 ALOGE("Couldn't initialize RS::dispatch->ScriptGetVarV");
343 return false;
344 }
345 RS::dispatch->ScriptSetVarVE = (ScriptSetVarVEFnPtr)dlsym(handle, "rsScriptSetVarVE");
346 if (RS::dispatch->ScriptSetVarVE == NULL) {
347 ALOGE("Couldn't initialize RS::dispatch->ScriptSetVarVE");
348 return false;
349 }
350 RS::dispatch->ScriptCCreate = (ScriptCCreateFnPtr)dlsym(handle, "rsScriptCCreate");
351 if (RS::dispatch->ScriptCCreate == NULL) {
352 ALOGE("Couldn't initialize RS::dispatch->ScriptCCreate");
353 return false;
354 }
355 RS::dispatch->ScriptIntrinsicCreate = (ScriptIntrinsicCreateFnPtr)dlsym(handle, "rsScriptIntrinsicCreate");
356 if (RS::dispatch->ScriptIntrinsicCreate == NULL) {
357 ALOGE("Couldn't initialize RS::dispatch->ScriptIntrinsicCreate");
358 return false;
359 }
360 RS::dispatch->ScriptKernelIDCreate = (ScriptKernelIDCreateFnPtr)dlsym(handle, "rsScriptKernelIDCreate");
361 if (RS::dispatch->ScriptKernelIDCreate == NULL) {
362 ALOGE("Couldn't initialize RS::dispatch->ScriptKernelIDCreate");
363 return false;
364 }
365 RS::dispatch->ScriptFieldIDCreate = (ScriptFieldIDCreateFnPtr)dlsym(handle, "rsScriptFieldIDCreate");
366 if (RS::dispatch->ScriptFieldIDCreate == NULL) {
367 ALOGE("Couldn't initialize RS::dispatch->ScriptFieldIDCreate");
368 return false;
369 }
370 RS::dispatch->ScriptGroupCreate = (ScriptGroupCreateFnPtr)dlsym(handle, "rsScriptGroupCreate");
371 if (RS::dispatch->ScriptGroupCreate == NULL) {
372 ALOGE("Couldn't initialize RS::dispatch->ScriptGroupCreate");
373 return false;
374 }
375 RS::dispatch->ScriptGroupSetOutput = (ScriptGroupSetOutputFnPtr)dlsym(handle, "rsScriptGroupSetOutput");
376 if (RS::dispatch->ScriptGroupSetOutput == NULL) {
377 ALOGE("Couldn't initialize RS::dispatch->ScriptGroupSetOutput");
378 return false;
379 }
380 RS::dispatch->ScriptGroupSetInput = (ScriptGroupSetInputFnPtr)dlsym(handle, "rsScriptGroupSetInput");
381 if (RS::dispatch->ScriptGroupSetInput == NULL) {
382 ALOGE("Couldn't initialize RS::dispatch->ScriptGroupSetInput");
383 return false;
384 }
385 RS::dispatch->ScriptGroupExecute = (ScriptGroupExecuteFnPtr)dlsym(handle, "rsScriptGroupExecute");
386 if (RS::dispatch->ScriptGroupExecute == NULL) {
387 ALOGE("Couldn't initialize RS::dispatch->ScriptGroupExecute");
388 return false;
389 }
390 RS::dispatch->AllocationIoSend = (AllocationIoSendFnPtr)dlsym(handle, "rsAllocationIoSend");
391 if (RS::dispatch->AllocationIoSend == NULL) {
392 ALOGE("Couldn't initialize RS::dispatch->AllocationIoSend");
393 return false;
394 }
395 RS::dispatch->AllocationIoReceive = (AllocationIoReceiveFnPtr)dlsym(handle, "rsAllocationIoReceive");
396 if (RS::dispatch->AllocationIoReceive == NULL) {
397 ALOGE("Couldn't initialize RS::dispatch->AllocationIoReceive");
398 return false;
399 }
400
401 return true;
402}
403
Tim Murray4a92d122013-07-22 10:56:18 -0700404static bool loadSO(const char* filename) {
405 void* handle = dlopen(filename, RTLD_LAZY | RTLD_LOCAL);
406 if (handle == NULL) {
407 ALOGE("couldn't dlopen %s, %s", filename, dlerror());
408 return false;
409 }
Tim Murraya4230962013-07-17 16:50:10 -0700410
Tim Murray4a92d122013-07-22 10:56:18 -0700411 if (loadSymbols(handle) == false) {
412 ALOGE("%s init failed!", filename);
413 return false;
414 }
Tim Murray84e3dea2013-09-09 16:12:51 -0700415 //ALOGE("Successfully loaded %s", filename);
Tim Murray4a92d122013-07-22 10:56:18 -0700416 return true;
417}
418
419static uint32_t getProp(const char *str) {
420#if !defined(RS_SERVER) && defined(HAVE_ANDROID_OS)
421 char buf[256];
422 property_get(str, buf, "0");
423 return atoi(buf);
424#else
425 return 0;
426#endif
427}
428
429bool RS::initDispatch(int targetApi) {
Tim Murraya4230962013-07-17 16:50:10 -0700430 pthread_mutex_lock(&gInitMutex);
431 if (gInitError) {
432 goto error;
433 } else if (gInitialized) {
Tim Murray47666f52013-07-29 14:32:34 -0700434 pthread_mutex_unlock(&gInitMutex);
Tim Murraya4230962013-07-17 16:50:10 -0700435 return true;
436 }
Tim Murraya4230962013-07-17 16:50:10 -0700437
438 RS::dispatch = new dispatchTable;
Tim Murray4a92d122013-07-22 10:56:18 -0700439
440 // attempt to load libRS, load libRSSupport on failure
441 // if property is set, proceed directly to libRSSupport
442 if (getProp("debug.rs.forcecompat") == 0) {
443 usingNative = loadSO("libRS.so");
444 }
445 if (usingNative == false) {
446 if (loadSO("libRSSupport.so") == false) {
447 ALOGE("Failed to load libRS.so and libRSSupport.so");
448 goto error;
449 }
Tim Murraya4230962013-07-17 16:50:10 -0700450 }
451
452 gInitialized = true;
453
454 pthread_mutex_unlock(&gInitMutex);
455 return true;
456
457 error:
458 gInitError = 1;
459 pthread_mutex_unlock(&gInitMutex);
460 return false;
461}
462
Tim Murray84e3dea2013-09-09 16:12:51 -0700463bool RS::init(int targetApi, uint32_t flags) {
Tim Murraya4230962013-07-17 16:50:10 -0700464 if (initDispatch(targetApi) == false) {
465 ALOGE("Couldn't initialize dispatch table");
466 return false;
467 }
468
469 mDev = RS::dispatch->DeviceCreate();
Jason Sams221a4b12012-02-22 15:22:41 -0800470 if (mDev == 0) {
471 ALOGE("Device creation failed");
472 return false;
473 }
474
Tim Murray84e3dea2013-09-09 16:12:51 -0700475 if (flags >= RS_CONTEXT_MAX) {
476 ALOGE("Invalid flags passed");
477 return false;
478 }
479
480 mContext = RS::dispatch->ContextCreate(mDev, 0, targetApi, RS_CONTEXT_TYPE_NORMAL, flags);
Jason Sams221a4b12012-02-22 15:22:41 -0800481 if (mContext == 0) {
482 ALOGE("Context creation failed");
483 return false;
484 }
485
Jason Sams221a4b12012-02-22 15:22:41 -0800486 pid_t mNativeMessageThreadId;
487
488 int status = pthread_create(&mMessageThreadId, NULL, threadProc, this);
489 if (status) {
Tim Murray84bf2b82012-10-31 16:03:16 -0700490 ALOGE("Failed to start RS message thread.");
Jason Sams221a4b12012-02-22 15:22:41 -0800491 return false;
492 }
493 // Wait for the message thread to be active.
494 while (!mMessageRun) {
495 usleep(1000);
496 }
497
Tim Murraya4230962013-07-17 16:50:10 -0700498 mInit = true;
499
Jason Sams221a4b12012-02-22 15:22:41 -0800500 return true;
501}
502
Tim Murray21fa7a02013-08-15 16:25:03 -0700503void RS::throwError(RSError error, const char *errMsg) {
504 if (mCurrentError == RS_SUCCESS) {
505 mCurrentError = error;
506 ALOGE("RS CPP error: %s", errMsg);
507 } else {
508 ALOGE("RS CPP error (masked by previous error): %s", errMsg);
509 }
Jason Samsb2e3dc52012-02-23 17:14:39 -0800510}
511
Tim Murray10913a52013-08-20 17:19:47 -0700512RSError RS::getError() {
513 return mCurrentError;
514}
515
Jason Samsb2e3dc52012-02-23 17:14:39 -0800516
Tim Murray84bf2b82012-10-31 16:03:16 -0700517void * RS::threadProc(void *vrsc) {
518 RS *rs = static_cast<RS *>(vrsc);
Jason Sams221a4b12012-02-22 15:22:41 -0800519 size_t rbuf_size = 256;
520 void * rbuf = malloc(rbuf_size);
521
Tim Murraya4230962013-07-17 16:50:10 -0700522 RS::dispatch->ContextInitToClient(rs->mContext);
Jason Sams221a4b12012-02-22 15:22:41 -0800523 rs->mMessageRun = true;
524
525 while (rs->mMessageRun) {
526 size_t receiveLen = 0;
527 uint32_t usrID = 0;
528 uint32_t subID = 0;
Tim Murraya4230962013-07-17 16:50:10 -0700529 RsMessageToClientType r = RS::dispatch->ContextPeekMessage(rs->mContext,
530 &receiveLen, sizeof(receiveLen),
531 &usrID, sizeof(usrID));
Jason Sams221a4b12012-02-22 15:22:41 -0800532
533 if (receiveLen >= rbuf_size) {
534 rbuf_size = receiveLen + 32;
535 rbuf = realloc(rbuf, rbuf_size);
536 }
537 if (!rbuf) {
Tim Murray84bf2b82012-10-31 16:03:16 -0700538 ALOGE("RS::message handler realloc error %zu", rbuf_size);
Jason Sams221a4b12012-02-22 15:22:41 -0800539 // No clean way to recover now?
540 }
Tim Murraya4230962013-07-17 16:50:10 -0700541 RS::dispatch->ContextGetMessage(rs->mContext, rbuf, rbuf_size, &receiveLen, sizeof(receiveLen),
Jason Sams221a4b12012-02-22 15:22:41 -0800542 &subID, sizeof(subID));
543
544 switch(r) {
545 case RS_MESSAGE_TO_CLIENT_ERROR:
546 ALOGE("RS Error %s", (const char *)rbuf);
Tim Murray21fa7a02013-08-15 16:25:03 -0700547 rs->throwError(RS_ERROR_RUNTIME_ERROR, "Error returned from runtime");
Jason Sams221a4b12012-02-22 15:22:41 -0800548 if(rs->mMessageFunc != NULL) {
549 rs->mErrorFunc(usrID, (const char *)rbuf);
550 }
551 break;
Stephen Hines76a1be42012-11-26 16:26:03 -0800552 case RS_MESSAGE_TO_CLIENT_NONE:
Jason Sams221a4b12012-02-22 15:22:41 -0800553 case RS_MESSAGE_TO_CLIENT_EXCEPTION:
Stephen Hines76a1be42012-11-26 16:26:03 -0800554 case RS_MESSAGE_TO_CLIENT_RESIZE:
Jason Sams221a4b12012-02-22 15:22:41 -0800555 // teardown. But we want to avoid starving other threads during
556 // teardown by yielding until the next line in the destructor can
Stephen Hines76a1be42012-11-26 16:26:03 -0800557 // execute to set mRun = false. Note that the FIFO sends an
558 // empty NONE message when it reaches its destructor.
Jason Sams221a4b12012-02-22 15:22:41 -0800559 usleep(1000);
560 break;
561 case RS_MESSAGE_TO_CLIENT_USER:
562 if(rs->mMessageFunc != NULL) {
563 rs->mMessageFunc(usrID, rbuf, receiveLen);
564 } else {
565 ALOGE("Received a message from the script with no message handler installed.");
566 }
567 break;
568
569 default:
Tim Murray84bf2b82012-10-31 16:03:16 -0700570 ALOGE("RS unknown message type %i", r);
Jason Sams221a4b12012-02-22 15:22:41 -0800571 }
572 }
573
574 if (rbuf) {
575 free(rbuf);
576 }
Tim Murray84bf2b82012-10-31 16:03:16 -0700577 ALOGE("RS Message thread exiting.");
Jason Sams221a4b12012-02-22 15:22:41 -0800578 return NULL;
579}
580
Tim Murray84bf2b82012-10-31 16:03:16 -0700581void RS::setErrorHandler(ErrorHandlerFunc_t func) {
Jason Sams221a4b12012-02-22 15:22:41 -0800582 mErrorFunc = func;
583}
584
Tim Murray84bf2b82012-10-31 16:03:16 -0700585void RS::setMessageHandler(MessageHandlerFunc_t func) {
Jason Sams221a4b12012-02-22 15:22:41 -0800586 mMessageFunc = func;
587}
Tim Murraybaca6c32012-11-14 16:51:46 -0800588
589void RS::finish() {
Tim Murraya4230962013-07-17 16:50:10 -0700590 RS::dispatch->ContextFinish(mContext);
Tim Murraybaca6c32012-11-14 16:51:46 -0800591}