blob: 964901a0426ddab45385f3b3c028b0116bf52476 [file] [log] [blame]
Jason Sams326e0dd2009-05-22 14:03:28 -07001/*
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#include "rsContext.h"
18
Jason Sams326e0dd2009-05-22 14:03:28 -070019#include "rsThreadIO.h"
20
21using namespace android;
22using namespace android::renderscript;
23
Jason Sams326e0dd2009-05-22 14:03:28 -070024ThreadIO::ThreadIO()
25{
26 mToCore.init(16 * 1024);
27}
28
29ThreadIO::~ThreadIO()
30{
31}
32
Jason Sams8c0ee652009-08-25 14:49:07 -070033void ThreadIO::shutdown()
34{
35 mToCore.shutdown();
36}
37
Jason Sams732f1c02009-06-18 16:58:42 -070038bool ThreadIO::playCoreCommands(Context *con, bool waitForCommand)
Jason Sams326e0dd2009-05-22 14:03:28 -070039{
Jason Samsa44cb292009-06-04 17:58:03 -070040 bool ret = false;
Jason Sams732f1c02009-06-18 16:58:42 -070041 while(!mToCore.isEmpty() || waitForCommand) {
Jason Sams24371d92009-08-19 12:17:14 -070042 uint32_t cmdID = 0;
43 uint32_t cmdSize = 0;
Jason Samsa44cb292009-06-04 17:58:03 -070044 ret = true;
Joe Onorato76371ff2009-09-23 16:37:36 -070045 if (con->logTimes) {
46 con->timerSet(Context::RS_TIMER_IDLE);
47 }
Jason Sams326e0dd2009-05-22 14:03:28 -070048 const void * data = mToCore.get(&cmdID, &cmdSize);
Jason Samse514b452009-09-25 14:51:22 -070049 if (!cmdSize) {
50 // exception occured, probably shutdown.
51 return false;
52 }
Joe Onorato76371ff2009-09-23 16:37:36 -070053 if (con->logTimes) {
54 con->timerSet(Context::RS_TIMER_INTERNAL);
55 }
Jason Sams732f1c02009-06-18 16:58:42 -070056 waitForCommand = false;
Jason Sams992a0b72009-06-23 12:22:47 -070057 //LOGV("playCoreCommands 3 %i %i", cmdID, cmdSize);
Jason Sams326e0dd2009-05-22 14:03:28 -070058
59 gPlaybackFuncs[cmdID](con, data);
Jason Sams326e0dd2009-05-22 14:03:28 -070060 mToCore.next();
Jason Sams326e0dd2009-05-22 14:03:28 -070061 }
Jason Samsa44cb292009-06-04 17:58:03 -070062 return ret;
Jason Sams326e0dd2009-05-22 14:03:28 -070063}
64
65