blob: cfae09dbf2b38822cabd022798c635e44c7a07ae [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#ifndef ANDROID_RS_THREAD_IO_H
18#define ANDROID_RS_THREAD_IO_H
19
Jason Sams1aa5a4e2009-06-22 17:15:15 -070020#include "rsUtils.h"
Jason Sams1a4efa32011-05-17 15:01:29 -070021#include "rsFifoSocket.h"
Jason Sams326e0dd2009-05-22 14:03:28 -070022
23// ---------------------------------------------------------------------------
24namespace android {
25namespace renderscript {
26
27class Context;
28
29class ThreadIO {
30public:
31 ThreadIO();
32 ~ThreadIO();
33
Yang Ni9ed983b2017-04-18 12:19:01 -070034 bool init();
Jason Sams8c0ee652009-08-25 14:49:07 -070035 void shutdown();
36
Jason Samsbda75a92012-02-16 17:21:32 -080037 size_t getMaxInlineSize() {
38 return mMaxInlineSize;
39 }
Jason Samsbda75a92012-02-16 17:21:32 -080040
Jason Samsa44cb292009-06-04 17:58:03 -070041 // Plays back commands from the client.
42 // Returns true if any commands were processed.
Jason Sams963a2fb2012-02-09 14:36:14 -080043 bool playCoreCommands(Context *con, int waitFd);
Jason Sams326e0dd2009-05-22 14:03:28 -070044
Jason Sams5f27d6f2012-02-07 15:32:08 -080045 void setTimeoutCallback(void (*)(void *), void *, uint64_t timeout);
Jason Sams326e0dd2009-05-22 14:03:28 -070046
Jason Sams1a4efa32011-05-17 15:01:29 -070047 void * coreHeader(uint32_t, size_t dataLen);
Jason Sams1a4efa32011-05-17 15:01:29 -070048 void coreCommit();
Jason Samsbda75a92012-02-16 17:21:32 -080049
Jason Sams1a4efa32011-05-17 15:01:29 -070050 void coreSetReturn(const void *data, size_t dataLen);
51 void coreGetReturn(void *data, size_t dataLen);
Jason Samsbda75a92012-02-16 17:21:32 -080052 void coreWrite(const void *data, size_t len);
53 void coreRead(void *data, size_t len);
54
55 void asyncSetReturn(const void *data, size_t dataLen);
56 void asyncGetReturn(void *data, size_t dataLen);
57 void asyncWrite(const void *data, size_t len);
58 void asyncRead(void *data, size_t len);
Jason Sams1a4efa32011-05-17 15:01:29 -070059
60
61 RsMessageToClientType getClientHeader(size_t *receiveLen, uint32_t *usrID);
62 RsMessageToClientType getClientPayload(void *data, size_t *receiveLen, uint32_t *subID, size_t bufferLen);
63 bool sendToClient(RsMessageToClientType cmdID, uint32_t usrID, const void *data, size_t dataLen, bool waitForSpace);
64 void clientShutdown();
65
66
67protected:
68 typedef struct CoreCmdHeaderRec {
69 uint32_t cmdID;
70 uint32_t bytes;
71 } CoreCmdHeader;
72 typedef struct ClientCmdHeaderRec {
73 uint32_t cmdID;
74 uint32_t bytes;
75 uint32_t userID;
76 } ClientCmdHeader;
77 ClientCmdHeader mLastClientHeader;
78
Jason Sams5f27d6f2012-02-07 15:32:08 -080079 bool mRunning;
Jason Samsbda75a92012-02-16 17:21:32 -080080 size_t mMaxInlineSize;
Jason Sams1a4efa32011-05-17 15:01:29 -070081
Jason Sams5f27d6f2012-02-07 15:32:08 -080082 FifoSocket mToClient;
83 FifoSocket mToCore;
Jason Sams326e0dd2009-05-22 14:03:28 -070084
85 intptr_t mToCoreRet;
Jason Sams1a4efa32011-05-17 15:01:29 -070086
Jason Sams5f27d6f2012-02-07 15:32:08 -080087 size_t mSendLen;
Vladimir Stefanovica05e8dd2012-09-05 19:46:02 +020088 uint8_t mSendBuffer[2 * 1024] __attribute__((aligned(sizeof(double))));
Jason Sams5f27d6f2012-02-07 15:32:08 -080089
Jason Sams326e0dd2009-05-22 14:03:28 -070090};
91
Jason Sams326e0dd2009-05-22 14:03:28 -070092
Rahul Chaudhry7974fc02017-02-09 12:33:28 -080093} // namespace renderscript
94} // namespace android
Jason Sams326e0dd2009-05-22 14:03:28 -070095#endif
96