blob: 3080220f4c562e93af33024ebfeffe2d837eee48 [file] [log] [blame]
Jamie Gennis8ba32fa2010-12-20 11:27:26 -08001/*
2 * Copyright (C) 2010 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 <stdint.h>
18#include <sys/types.h>
19
20#include <utils/Errors.h>
21#include <utils/RefBase.h>
22#include <utils/Vector.h>
23#include <utils/Timers.h>
24
25#include <binder/Parcel.h>
26#include <binder/IInterface.h>
27
Andy McFadden2adaf042012-12-18 09:49:45 -080028#include <gui/IGraphicBufferProducer.h>
Jamie Gennis8ba32fa2010-12-20 11:27:26 -080029
30namespace android {
31// ----------------------------------------------------------------------------
32
33enum {
34 REQUEST_BUFFER = IBinder::FIRST_CALL_TRANSACTION,
35 SET_BUFFER_COUNT,
36 DEQUEUE_BUFFER,
37 QUEUE_BUFFER,
38 CANCEL_BUFFER,
Mathias Agopianeafabcd2011-04-20 14:20:59 -070039 QUERY,
Jamie Gennisfe0a87b2011-07-13 19:12:20 -070040 CONNECT,
41 DISCONNECT,
Jamie Gennis8ba32fa2010-12-20 11:27:26 -080042};
43
44
Andy McFadden2adaf042012-12-18 09:49:45 -080045class BpGraphicBufferProducer : public BpInterface<IGraphicBufferProducer>
Jamie Gennis8ba32fa2010-12-20 11:27:26 -080046{
47public:
Andy McFadden2adaf042012-12-18 09:49:45 -080048 BpGraphicBufferProducer(const sp<IBinder>& impl)
49 : BpInterface<IGraphicBufferProducer>(impl)
Jamie Gennis8ba32fa2010-12-20 11:27:26 -080050 {
51 }
52
Jamie Gennis7b305ff2011-07-19 12:08:33 -070053 virtual status_t requestBuffer(int bufferIdx, sp<GraphicBuffer>* buf) {
Jamie Gennis8ba32fa2010-12-20 11:27:26 -080054 Parcel data, reply;
Andy McFadden2adaf042012-12-18 09:49:45 -080055 data.writeInterfaceToken(IGraphicBufferProducer::getInterfaceDescriptor());
Jamie Gennis8ba32fa2010-12-20 11:27:26 -080056 data.writeInt32(bufferIdx);
Jamie Gennis8a29ff22011-10-14 15:03:17 -070057 status_t result =remote()->transact(REQUEST_BUFFER, data, &reply);
58 if (result != NO_ERROR) {
59 return result;
60 }
Jamie Gennis8ba32fa2010-12-20 11:27:26 -080061 bool nonNull = reply.readInt32();
62 if (nonNull) {
Jamie Gennis7b305ff2011-07-19 12:08:33 -070063 *buf = new GraphicBuffer();
64 reply.read(**buf);
Jamie Gennis8ba32fa2010-12-20 11:27:26 -080065 }
Jamie Gennis8a29ff22011-10-14 15:03:17 -070066 result = reply.readInt32();
Jamie Gennis7b305ff2011-07-19 12:08:33 -070067 return result;
Jamie Gennis8ba32fa2010-12-20 11:27:26 -080068 }
69
70 virtual status_t setBufferCount(int bufferCount)
71 {
72 Parcel data, reply;
Andy McFadden2adaf042012-12-18 09:49:45 -080073 data.writeInterfaceToken(IGraphicBufferProducer::getInterfaceDescriptor());
Jamie Gennis8ba32fa2010-12-20 11:27:26 -080074 data.writeInt32(bufferCount);
Jamie Gennis8a29ff22011-10-14 15:03:17 -070075 status_t result =remote()->transact(SET_BUFFER_COUNT, data, &reply);
76 if (result != NO_ERROR) {
77 return result;
78 }
79 result = reply.readInt32();
80 return result;
Jamie Gennis8ba32fa2010-12-20 11:27:26 -080081 }
82
Mathias Agopian7cdd7862013-07-18 22:10:56 -070083 virtual status_t dequeueBuffer(int *buf, sp<Fence>* fence, bool async,
Jesse Hallf7857542012-06-14 15:26:33 -070084 uint32_t w, uint32_t h, uint32_t format, uint32_t usage) {
Jamie Gennis8ba32fa2010-12-20 11:27:26 -080085 Parcel data, reply;
Andy McFadden2adaf042012-12-18 09:49:45 -080086 data.writeInterfaceToken(IGraphicBufferProducer::getInterfaceDescriptor());
Mathias Agopian7cdd7862013-07-18 22:10:56 -070087 data.writeInt32(async);
Mathias Agopianc04f1532011-04-25 20:22:14 -070088 data.writeInt32(w);
89 data.writeInt32(h);
90 data.writeInt32(format);
91 data.writeInt32(usage);
Jamie Gennis8a29ff22011-10-14 15:03:17 -070092 status_t result = remote()->transact(DEQUEUE_BUFFER, data, &reply);
93 if (result != NO_ERROR) {
94 return result;
95 }
Jamie Gennis8ba32fa2010-12-20 11:27:26 -080096 *buf = reply.readInt32();
Mathias Agopianba93b3f2013-08-01 15:48:40 -070097 bool nonNull = reply.readInt32();
98 if (nonNull) {
Jesse Hall4c00cc12013-03-15 21:34:30 -070099 *fence = new Fence();
Mathias Agopianba93b3f2013-08-01 15:48:40 -0700100 reply.read(**fence);
Jesse Hallf7857542012-06-14 15:26:33 -0700101 }
Jamie Gennis8a29ff22011-10-14 15:03:17 -0700102 result = reply.readInt32();
Jamie Gennis8ba32fa2010-12-20 11:27:26 -0800103 return result;
104 }
105
Mathias Agopianf0bc2f12012-04-09 16:14:01 -0700106 virtual status_t queueBuffer(int buf,
107 const QueueBufferInput& input, QueueBufferOutput* output) {
Jamie Gennis8ba32fa2010-12-20 11:27:26 -0800108 Parcel data, reply;
Andy McFadden2adaf042012-12-18 09:49:45 -0800109 data.writeInterfaceToken(IGraphicBufferProducer::getInterfaceDescriptor());
Jamie Gennis8ba32fa2010-12-20 11:27:26 -0800110 data.writeInt32(buf);
Jesse Hallc777b0b2012-06-28 12:52:05 -0700111 data.write(input);
Jamie Gennis8a29ff22011-10-14 15:03:17 -0700112 status_t result = remote()->transact(QUEUE_BUFFER, data, &reply);
113 if (result != NO_ERROR) {
114 return result;
115 }
Mathias Agopianf0bc2f12012-04-09 16:14:01 -0700116 memcpy(output, reply.readInplace(sizeof(*output)), sizeof(*output));
Jamie Gennis8a29ff22011-10-14 15:03:17 -0700117 result = reply.readInt32();
Jamie Gennis8ba32fa2010-12-20 11:27:26 -0800118 return result;
119 }
120
Jesse Hall4c00cc12013-03-15 21:34:30 -0700121 virtual void cancelBuffer(int buf, const sp<Fence>& fence) {
Jamie Gennis8ba32fa2010-12-20 11:27:26 -0800122 Parcel data, reply;
Andy McFadden2adaf042012-12-18 09:49:45 -0800123 data.writeInterfaceToken(IGraphicBufferProducer::getInterfaceDescriptor());
Jamie Gennis8ba32fa2010-12-20 11:27:26 -0800124 data.writeInt32(buf);
Jamie Gennis1df8c342012-12-20 14:05:45 -0800125 data.write(*fence.get());
Jamie Gennis8ba32fa2010-12-20 11:27:26 -0800126 remote()->transact(CANCEL_BUFFER, data, &reply);
127 }
128
Mathias Agopianeafabcd2011-04-20 14:20:59 -0700129 virtual int query(int what, int* value) {
130 Parcel data, reply;
Andy McFadden2adaf042012-12-18 09:49:45 -0800131 data.writeInterfaceToken(IGraphicBufferProducer::getInterfaceDescriptor());
Mathias Agopianeafabcd2011-04-20 14:20:59 -0700132 data.writeInt32(what);
Jamie Gennis8a29ff22011-10-14 15:03:17 -0700133 status_t result = remote()->transact(QUERY, data, &reply);
134 if (result != NO_ERROR) {
135 return result;
136 }
Mathias Agopianeafabcd2011-04-20 14:20:59 -0700137 value[0] = reply.readInt32();
Jamie Gennis8a29ff22011-10-14 15:03:17 -0700138 result = reply.readInt32();
Mathias Agopianeafabcd2011-04-20 14:20:59 -0700139 return result;
140 }
141
Mathias Agopian595264f2013-07-16 22:56:09 -0700142 virtual status_t connect(int api, bool producerControlledByApp, QueueBufferOutput* output) {
Jamie Gennisfe0a87b2011-07-13 19:12:20 -0700143 Parcel data, reply;
Andy McFadden2adaf042012-12-18 09:49:45 -0800144 data.writeInterfaceToken(IGraphicBufferProducer::getInterfaceDescriptor());
Jamie Gennisfe0a87b2011-07-13 19:12:20 -0700145 data.writeInt32(api);
Mathias Agopian595264f2013-07-16 22:56:09 -0700146 data.writeInt32(producerControlledByApp);
Jamie Gennis8a29ff22011-10-14 15:03:17 -0700147 status_t result = remote()->transact(CONNECT, data, &reply);
148 if (result != NO_ERROR) {
149 return result;
150 }
Mathias Agopian24202f52012-04-23 14:28:58 -0700151 memcpy(output, reply.readInplace(sizeof(*output)), sizeof(*output));
Jamie Gennis8a29ff22011-10-14 15:03:17 -0700152 result = reply.readInt32();
Jamie Gennisfe0a87b2011-07-13 19:12:20 -0700153 return result;
154 }
Mathias Agopian80727112011-05-02 19:51:12 -0700155
Jamie Gennisfe0a87b2011-07-13 19:12:20 -0700156 virtual status_t disconnect(int api) {
157 Parcel data, reply;
Andy McFadden2adaf042012-12-18 09:49:45 -0800158 data.writeInterfaceToken(IGraphicBufferProducer::getInterfaceDescriptor());
Jamie Gennisfe0a87b2011-07-13 19:12:20 -0700159 data.writeInt32(api);
Jamie Gennis8a29ff22011-10-14 15:03:17 -0700160 status_t result =remote()->transact(DISCONNECT, data, &reply);
161 if (result != NO_ERROR) {
162 return result;
163 }
164 result = reply.readInt32();
Jamie Gennisfe0a87b2011-07-13 19:12:20 -0700165 return result;
166 }
Jamie Gennis8ba32fa2010-12-20 11:27:26 -0800167};
168
Andy McFadden466a1922013-01-08 11:25:51 -0800169IMPLEMENT_META_INTERFACE(GraphicBufferProducer, "android.gui.IGraphicBufferProducer");
Jamie Gennis8ba32fa2010-12-20 11:27:26 -0800170
171// ----------------------------------------------------------------------
172
Andy McFadden2adaf042012-12-18 09:49:45 -0800173status_t BnGraphicBufferProducer::onTransact(
Jamie Gennis8ba32fa2010-12-20 11:27:26 -0800174 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
175{
176 switch(code) {
177 case REQUEST_BUFFER: {
Andy McFadden2adaf042012-12-18 09:49:45 -0800178 CHECK_INTERFACE(IGraphicBufferProducer, data, reply);
Jamie Gennis8ba32fa2010-12-20 11:27:26 -0800179 int bufferIdx = data.readInt32();
Jamie Gennis7b305ff2011-07-19 12:08:33 -0700180 sp<GraphicBuffer> buffer;
181 int result = requestBuffer(bufferIdx, &buffer);
Jamie Gennis8ba32fa2010-12-20 11:27:26 -0800182 reply->writeInt32(buffer != 0);
183 if (buffer != 0) {
184 reply->write(*buffer);
185 }
Jamie Gennis7b305ff2011-07-19 12:08:33 -0700186 reply->writeInt32(result);
Jamie Gennis8ba32fa2010-12-20 11:27:26 -0800187 return NO_ERROR;
188 } break;
189 case SET_BUFFER_COUNT: {
Andy McFadden2adaf042012-12-18 09:49:45 -0800190 CHECK_INTERFACE(IGraphicBufferProducer, data, reply);
Jamie Gennis8ba32fa2010-12-20 11:27:26 -0800191 int bufferCount = data.readInt32();
192 int result = setBufferCount(bufferCount);
193 reply->writeInt32(result);
194 return NO_ERROR;
195 } break;
196 case DEQUEUE_BUFFER: {
Andy McFadden2adaf042012-12-18 09:49:45 -0800197 CHECK_INTERFACE(IGraphicBufferProducer, data, reply);
Mathias Agopian7cdd7862013-07-18 22:10:56 -0700198 bool async = data.readInt32();
Mathias Agopianc04f1532011-04-25 20:22:14 -0700199 uint32_t w = data.readInt32();
200 uint32_t h = data.readInt32();
201 uint32_t format = data.readInt32();
202 uint32_t usage = data.readInt32();
Jamie Gennis8ba32fa2010-12-20 11:27:26 -0800203 int buf;
Jesse Hallf7857542012-06-14 15:26:33 -0700204 sp<Fence> fence;
Mathias Agopian7cdd7862013-07-18 22:10:56 -0700205 int result = dequeueBuffer(&buf, &fence, async, w, h, format, usage);
Jamie Gennis8ba32fa2010-12-20 11:27:26 -0800206 reply->writeInt32(buf);
Jamie Gennis1df8c342012-12-20 14:05:45 -0800207 reply->writeInt32(fence != NULL);
208 if (fence != NULL) {
Mathias Agopianba93b3f2013-08-01 15:48:40 -0700209 reply->write(*fence);
Jesse Hallf7857542012-06-14 15:26:33 -0700210 }
Jamie Gennis8ba32fa2010-12-20 11:27:26 -0800211 reply->writeInt32(result);
212 return NO_ERROR;
213 } break;
214 case QUEUE_BUFFER: {
Andy McFadden2adaf042012-12-18 09:49:45 -0800215 CHECK_INTERFACE(IGraphicBufferProducer, data, reply);
Jamie Gennis8ba32fa2010-12-20 11:27:26 -0800216 int buf = data.readInt32();
Jesse Hallc777b0b2012-06-28 12:52:05 -0700217 QueueBufferInput input(data);
Mathias Agopianf0bc2f12012-04-09 16:14:01 -0700218 QueueBufferOutput* const output =
219 reinterpret_cast<QueueBufferOutput *>(
220 reply->writeInplace(sizeof(QueueBufferOutput)));
Jesse Hallc777b0b2012-06-28 12:52:05 -0700221 status_t result = queueBuffer(buf, input, output);
Jamie Gennis8ba32fa2010-12-20 11:27:26 -0800222 reply->writeInt32(result);
223 return NO_ERROR;
224 } break;
225 case CANCEL_BUFFER: {
Andy McFadden2adaf042012-12-18 09:49:45 -0800226 CHECK_INTERFACE(IGraphicBufferProducer, data, reply);
Jamie Gennis8ba32fa2010-12-20 11:27:26 -0800227 int buf = data.readInt32();
Jamie Gennis1df8c342012-12-20 14:05:45 -0800228 sp<Fence> fence = new Fence();
229 data.read(*fence.get());
Jesse Hallc777b0b2012-06-28 12:52:05 -0700230 cancelBuffer(buf, fence);
Jamie Gennis8ba32fa2010-12-20 11:27:26 -0800231 return NO_ERROR;
232 } break;
Mathias Agopianeafabcd2011-04-20 14:20:59 -0700233 case QUERY: {
Andy McFadden2adaf042012-12-18 09:49:45 -0800234 CHECK_INTERFACE(IGraphicBufferProducer, data, reply);
Mathias Agopianeafabcd2011-04-20 14:20:59 -0700235 int value;
236 int what = data.readInt32();
237 int res = query(what, &value);
238 reply->writeInt32(value);
239 reply->writeInt32(res);
240 return NO_ERROR;
241 } break;
Jamie Gennisfe0a87b2011-07-13 19:12:20 -0700242 case CONNECT: {
Andy McFadden2adaf042012-12-18 09:49:45 -0800243 CHECK_INTERFACE(IGraphicBufferProducer, data, reply);
Jamie Gennisfe0a87b2011-07-13 19:12:20 -0700244 int api = data.readInt32();
Mathias Agopian595264f2013-07-16 22:56:09 -0700245 bool producerControlledByApp = data.readInt32();
Mathias Agopian24202f52012-04-23 14:28:58 -0700246 QueueBufferOutput* const output =
247 reinterpret_cast<QueueBufferOutput *>(
248 reply->writeInplace(sizeof(QueueBufferOutput)));
Mathias Agopian595264f2013-07-16 22:56:09 -0700249 status_t res = connect(api, producerControlledByApp, output);
Jamie Gennisfe0a87b2011-07-13 19:12:20 -0700250 reply->writeInt32(res);
251 return NO_ERROR;
252 } break;
253 case DISCONNECT: {
Andy McFadden2adaf042012-12-18 09:49:45 -0800254 CHECK_INTERFACE(IGraphicBufferProducer, data, reply);
Jamie Gennisfe0a87b2011-07-13 19:12:20 -0700255 int api = data.readInt32();
Mathias Agopian27730042011-07-14 20:20:58 -0700256 status_t res = disconnect(api);
Jamie Gennisfe0a87b2011-07-13 19:12:20 -0700257 reply->writeInt32(res);
258 return NO_ERROR;
259 } break;
Jamie Gennis8ba32fa2010-12-20 11:27:26 -0800260 }
261 return BBinder::onTransact(code, data, reply, flags);
262}
263
264// ----------------------------------------------------------------------------
265
Andy McFadden2adaf042012-12-18 09:49:45 -0800266IGraphicBufferProducer::QueueBufferInput::QueueBufferInput(const Parcel& parcel) {
Jesse Hallc777b0b2012-06-28 12:52:05 -0700267 parcel.read(*this);
268}
269
Mathias Agopiane1424282013-07-29 21:24:40 -0700270size_t IGraphicBufferProducer::QueueBufferInput::getFlattenedSize() const {
Jesse Hallc777b0b2012-06-28 12:52:05 -0700271 return sizeof(timestamp)
Andy McFadden3c256212013-08-16 14:55:39 -0700272 + sizeof(isAutoTimestamp)
Jesse Hallc777b0b2012-06-28 12:52:05 -0700273 + sizeof(crop)
274 + sizeof(scalingMode)
275 + sizeof(transform)
Mathias Agopian7cdd7862013-07-18 22:10:56 -0700276 + sizeof(async)
Jamie Gennis1df8c342012-12-20 14:05:45 -0800277 + fence->getFlattenedSize();
Jesse Hallc777b0b2012-06-28 12:52:05 -0700278}
279
Mathias Agopiane1424282013-07-29 21:24:40 -0700280size_t IGraphicBufferProducer::QueueBufferInput::getFdCount() const {
Jamie Gennis1df8c342012-12-20 14:05:45 -0800281 return fence->getFdCount();
Jesse Hallc777b0b2012-06-28 12:52:05 -0700282}
283
Mathias Agopiane1424282013-07-29 21:24:40 -0700284status_t IGraphicBufferProducer::QueueBufferInput::flatten(
285 void*& buffer, size_t& size, int*& fds, size_t& count) const
Jesse Hallc777b0b2012-06-28 12:52:05 -0700286{
Mathias Agopiane1424282013-07-29 21:24:40 -0700287 if (size < getFlattenedSize()) {
288 return NO_MEMORY;
289 }
290 FlattenableUtils::write(buffer, size, timestamp);
Andy McFadden3c256212013-08-16 14:55:39 -0700291 FlattenableUtils::write(buffer, size, isAutoTimestamp);
Mathias Agopiane1424282013-07-29 21:24:40 -0700292 FlattenableUtils::write(buffer, size, crop);
293 FlattenableUtils::write(buffer, size, scalingMode);
294 FlattenableUtils::write(buffer, size, transform);
295 FlattenableUtils::write(buffer, size, async);
296 return fence->flatten(buffer, size, fds, count);
Jesse Hallc777b0b2012-06-28 12:52:05 -0700297}
298
Mathias Agopiane1424282013-07-29 21:24:40 -0700299status_t IGraphicBufferProducer::QueueBufferInput::unflatten(
300 void const*& buffer, size_t& size, int const*& fds, size_t& count)
Jesse Hallc777b0b2012-06-28 12:52:05 -0700301{
Mathias Agopiane1424282013-07-29 21:24:40 -0700302 size_t minNeeded =
303 sizeof(timestamp)
Andy McFadden3c256212013-08-16 14:55:39 -0700304 + sizeof(isAutoTimestamp)
Mathias Agopiane1424282013-07-29 21:24:40 -0700305 + sizeof(crop)
306 + sizeof(scalingMode)
307 + sizeof(transform)
308 + sizeof(async);
309
310 if (size < minNeeded) {
311 return NO_MEMORY;
312 }
313
314 FlattenableUtils::read(buffer, size, timestamp);
Andy McFadden3c256212013-08-16 14:55:39 -0700315 FlattenableUtils::read(buffer, size, isAutoTimestamp);
Mathias Agopiane1424282013-07-29 21:24:40 -0700316 FlattenableUtils::read(buffer, size, crop);
317 FlattenableUtils::read(buffer, size, scalingMode);
318 FlattenableUtils::read(buffer, size, transform);
319 FlattenableUtils::read(buffer, size, async);
320
Jamie Gennis1df8c342012-12-20 14:05:45 -0800321 fence = new Fence();
Mathias Agopiane1424282013-07-29 21:24:40 -0700322 return fence->unflatten(buffer, size, fds, count);
Jesse Hallc777b0b2012-06-28 12:52:05 -0700323}
324
Jamie Gennis8ba32fa2010-12-20 11:27:26 -0800325}; // namespace android