Jamie Gennis | 8ba32fa | 2010-12-20 11:27:26 -0800 | [diff] [blame] | 1 | /* |
| 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> |
Jesse Hall | 399184a | 2014-03-03 15:42:54 -0800 | [diff] [blame] | 21 | #include <utils/NativeHandle.h> |
Jamie Gennis | 8ba32fa | 2010-12-20 11:27:26 -0800 | [diff] [blame] | 22 | #include <utils/RefBase.h> |
Jamie Gennis | 8ba32fa | 2010-12-20 11:27:26 -0800 | [diff] [blame] | 23 | #include <utils/Timers.h> |
Jesse Hall | 399184a | 2014-03-03 15:42:54 -0800 | [diff] [blame] | 24 | #include <utils/Vector.h> |
Jamie Gennis | 8ba32fa | 2010-12-20 11:27:26 -0800 | [diff] [blame] | 25 | |
| 26 | #include <binder/Parcel.h> |
| 27 | #include <binder/IInterface.h> |
| 28 | |
Andy McFadden | 2adaf04 | 2012-12-18 09:49:45 -0800 | [diff] [blame] | 29 | #include <gui/IGraphicBufferProducer.h> |
Dan Stoza | f0eaf25 | 2014-03-21 13:05:51 -0700 | [diff] [blame] | 30 | #include <gui/IProducerListener.h> |
Jamie Gennis | 8ba32fa | 2010-12-20 11:27:26 -0800 | [diff] [blame] | 31 | |
| 32 | namespace android { |
| 33 | // ---------------------------------------------------------------------------- |
| 34 | |
| 35 | enum { |
| 36 | REQUEST_BUFFER = IBinder::FIRST_CALL_TRANSACTION, |
Jamie Gennis | 8ba32fa | 2010-12-20 11:27:26 -0800 | [diff] [blame] | 37 | DEQUEUE_BUFFER, |
Dan Stoza | 9f3053d | 2014-03-06 15:14:33 -0800 | [diff] [blame] | 38 | DETACH_BUFFER, |
Dan Stoza | d9822a3 | 2014-03-28 15:25:31 -0700 | [diff] [blame] | 39 | DETACH_NEXT_BUFFER, |
Dan Stoza | 9f3053d | 2014-03-06 15:14:33 -0800 | [diff] [blame] | 40 | ATTACH_BUFFER, |
Jamie Gennis | 8ba32fa | 2010-12-20 11:27:26 -0800 | [diff] [blame] | 41 | QUEUE_BUFFER, |
| 42 | CANCEL_BUFFER, |
Mathias Agopian | eafabcd | 2011-04-20 14:20:59 -0700 | [diff] [blame] | 43 | QUERY, |
Jamie Gennis | fe0a87b | 2011-07-13 19:12:20 -0700 | [diff] [blame] | 44 | CONNECT, |
| 45 | DISCONNECT, |
Jesse Hall | 399184a | 2014-03-03 15:42:54 -0800 | [diff] [blame] | 46 | SET_SIDEBAND_STREAM, |
Dan Stoza | 29a3e90 | 2014-06-20 13:13:57 -0700 | [diff] [blame] | 47 | ALLOCATE_BUFFERS, |
Dan Stoza | 9de7293 | 2015-04-16 17:28:43 -0700 | [diff] [blame] | 48 | ALLOW_ALLOCATION, |
Dan Stoza | 812ed06 | 2015-06-02 15:45:22 -0700 | [diff] [blame] | 49 | SET_GENERATION_NUMBER, |
Dan Stoza | c6f30bd | 2015-06-08 09:32:50 -0700 | [diff] [blame] | 50 | GET_CONSUMER_NAME, |
Pablo Ceballos | fa45535 | 2015-08-12 17:47:47 -0700 | [diff] [blame] | 51 | SET_MAX_DEQUEUED_BUFFER_COUNT, |
Dan Stoza | 7dde599 | 2015-05-22 09:51:44 -0700 | [diff] [blame] | 52 | SET_ASYNC_MODE, |
Pablo Ceballos | ccdfd60 | 2015-10-07 15:05:45 -0700 | [diff] [blame] | 53 | GET_NEXT_FRAME_NUMBER, |
Pablo Ceballos | 3559fbf | 2016-03-17 15:50:23 -0700 | [diff] [blame] | 54 | SET_SHARED_BUFFER_MODE, |
Pablo Ceballos | ff95aab | 2016-01-13 17:09:58 -0800 | [diff] [blame] | 55 | SET_AUTO_REFRESH, |
Dan Stoza | 127fc63 | 2015-06-30 13:43:32 -0700 | [diff] [blame] | 56 | SET_DEQUEUE_TIMEOUT, |
Dan Stoza | 50101d0 | 2016-04-07 16:53:23 -0700 | [diff] [blame] | 57 | GET_LAST_QUEUED_BUFFER, |
Pablo Ceballos | 0ade247 | 2016-06-30 16:48:02 -0700 | [diff] [blame] | 58 | GET_FRAME_TIMESTAMPS, |
| 59 | GET_UNIQUE_ID |
Jamie Gennis | 8ba32fa | 2010-12-20 11:27:26 -0800 | [diff] [blame] | 60 | }; |
| 61 | |
Andy McFadden | 2adaf04 | 2012-12-18 09:49:45 -0800 | [diff] [blame] | 62 | class BpGraphicBufferProducer : public BpInterface<IGraphicBufferProducer> |
Jamie Gennis | 8ba32fa | 2010-12-20 11:27:26 -0800 | [diff] [blame] | 63 | { |
| 64 | public: |
Andy McFadden | 2adaf04 | 2012-12-18 09:49:45 -0800 | [diff] [blame] | 65 | BpGraphicBufferProducer(const sp<IBinder>& impl) |
| 66 | : BpInterface<IGraphicBufferProducer>(impl) |
Jamie Gennis | 8ba32fa | 2010-12-20 11:27:26 -0800 | [diff] [blame] | 67 | { |
| 68 | } |
| 69 | |
Dan Stoza | 3be1c6b | 2014-11-18 10:24:03 -0800 | [diff] [blame] | 70 | virtual ~BpGraphicBufferProducer(); |
| 71 | |
Jamie Gennis | 7b305ff | 2011-07-19 12:08:33 -0700 | [diff] [blame] | 72 | virtual status_t requestBuffer(int bufferIdx, sp<GraphicBuffer>* buf) { |
Jamie Gennis | 8ba32fa | 2010-12-20 11:27:26 -0800 | [diff] [blame] | 73 | Parcel data, reply; |
Andy McFadden | 2adaf04 | 2012-12-18 09:49:45 -0800 | [diff] [blame] | 74 | data.writeInterfaceToken(IGraphicBufferProducer::getInterfaceDescriptor()); |
Jamie Gennis | 8ba32fa | 2010-12-20 11:27:26 -0800 | [diff] [blame] | 75 | data.writeInt32(bufferIdx); |
Jamie Gennis | 8a29ff2 | 2011-10-14 15:03:17 -0700 | [diff] [blame] | 76 | status_t result =remote()->transact(REQUEST_BUFFER, data, &reply); |
| 77 | if (result != NO_ERROR) { |
| 78 | return result; |
| 79 | } |
Jamie Gennis | 8ba32fa | 2010-12-20 11:27:26 -0800 | [diff] [blame] | 80 | bool nonNull = reply.readInt32(); |
| 81 | if (nonNull) { |
Jamie Gennis | 7b305ff | 2011-07-19 12:08:33 -0700 | [diff] [blame] | 82 | *buf = new GraphicBuffer(); |
Lingyun Zhu | 2aff702 | 2012-11-20 19:24:35 +0800 | [diff] [blame] | 83 | result = reply.read(**buf); |
| 84 | if(result != NO_ERROR) { |
| 85 | (*buf).clear(); |
| 86 | return result; |
| 87 | } |
Jamie Gennis | 8ba32fa | 2010-12-20 11:27:26 -0800 | [diff] [blame] | 88 | } |
Jamie Gennis | 8a29ff2 | 2011-10-14 15:03:17 -0700 | [diff] [blame] | 89 | result = reply.readInt32(); |
Jamie Gennis | 7b305ff | 2011-07-19 12:08:33 -0700 | [diff] [blame] | 90 | return result; |
Jamie Gennis | 8ba32fa | 2010-12-20 11:27:26 -0800 | [diff] [blame] | 91 | } |
| 92 | |
Pablo Ceballos | fa45535 | 2015-08-12 17:47:47 -0700 | [diff] [blame] | 93 | virtual status_t setMaxDequeuedBufferCount(int maxDequeuedBuffers) { |
| 94 | Parcel data, reply; |
| 95 | data.writeInterfaceToken( |
| 96 | IGraphicBufferProducer::getInterfaceDescriptor()); |
| 97 | data.writeInt32(maxDequeuedBuffers); |
| 98 | status_t result = remote()->transact(SET_MAX_DEQUEUED_BUFFER_COUNT, |
| 99 | data, &reply); |
| 100 | if (result != NO_ERROR) { |
| 101 | return result; |
| 102 | } |
| 103 | result = reply.readInt32(); |
| 104 | return result; |
| 105 | } |
| 106 | |
| 107 | virtual status_t setAsyncMode(bool async) { |
| 108 | Parcel data, reply; |
| 109 | data.writeInterfaceToken( |
| 110 | IGraphicBufferProducer::getInterfaceDescriptor()); |
| 111 | data.writeInt32(async); |
| 112 | status_t result = remote()->transact(SET_ASYNC_MODE, |
| 113 | data, &reply); |
| 114 | if (result != NO_ERROR) { |
| 115 | return result; |
| 116 | } |
| 117 | result = reply.readInt32(); |
| 118 | return result; |
| 119 | } |
| 120 | |
Pablo Ceballos | 567dbbb | 2015-08-26 18:59:08 -0700 | [diff] [blame] | 121 | virtual status_t dequeueBuffer(int *buf, sp<Fence>* fence, uint32_t width, |
| 122 | uint32_t height, PixelFormat format, uint32_t usage) { |
Jamie Gennis | 8ba32fa | 2010-12-20 11:27:26 -0800 | [diff] [blame] | 123 | Parcel data, reply; |
Andy McFadden | 2adaf04 | 2012-12-18 09:49:45 -0800 | [diff] [blame] | 124 | data.writeInterfaceToken(IGraphicBufferProducer::getInterfaceDescriptor()); |
Dan Stoza | 3be1c6b | 2014-11-18 10:24:03 -0800 | [diff] [blame] | 125 | data.writeUint32(width); |
| 126 | data.writeUint32(height); |
| 127 | data.writeInt32(static_cast<int32_t>(format)); |
| 128 | data.writeUint32(usage); |
Jamie Gennis | 8a29ff2 | 2011-10-14 15:03:17 -0700 | [diff] [blame] | 129 | status_t result = remote()->transact(DEQUEUE_BUFFER, data, &reply); |
| 130 | if (result != NO_ERROR) { |
| 131 | return result; |
| 132 | } |
Jamie Gennis | 8ba32fa | 2010-12-20 11:27:26 -0800 | [diff] [blame] | 133 | *buf = reply.readInt32(); |
Mathias Agopian | ba93b3f | 2013-08-01 15:48:40 -0700 | [diff] [blame] | 134 | bool nonNull = reply.readInt32(); |
| 135 | if (nonNull) { |
Jesse Hall | 4c00cc1 | 2013-03-15 21:34:30 -0700 | [diff] [blame] | 136 | *fence = new Fence(); |
Pablo Ceballos | 70636b3 | 2016-07-06 15:24:54 -0700 | [diff] [blame^] | 137 | result = reply.read(**fence); |
| 138 | if (result != NO_ERROR) { |
| 139 | fence->clear(); |
| 140 | return result; |
| 141 | } |
Jesse Hall | f785754 | 2012-06-14 15:26:33 -0700 | [diff] [blame] | 142 | } |
Jamie Gennis | 8a29ff2 | 2011-10-14 15:03:17 -0700 | [diff] [blame] | 143 | result = reply.readInt32(); |
Jamie Gennis | 8ba32fa | 2010-12-20 11:27:26 -0800 | [diff] [blame] | 144 | return result; |
| 145 | } |
| 146 | |
Dan Stoza | 9f3053d | 2014-03-06 15:14:33 -0800 | [diff] [blame] | 147 | virtual status_t detachBuffer(int slot) { |
| 148 | Parcel data, reply; |
| 149 | data.writeInterfaceToken(IGraphicBufferProducer::getInterfaceDescriptor()); |
| 150 | data.writeInt32(slot); |
| 151 | status_t result = remote()->transact(DETACH_BUFFER, data, &reply); |
| 152 | if (result != NO_ERROR) { |
| 153 | return result; |
| 154 | } |
| 155 | result = reply.readInt32(); |
| 156 | return result; |
| 157 | } |
| 158 | |
Dan Stoza | d9822a3 | 2014-03-28 15:25:31 -0700 | [diff] [blame] | 159 | virtual status_t detachNextBuffer(sp<GraphicBuffer>* outBuffer, |
| 160 | sp<Fence>* outFence) { |
| 161 | if (outBuffer == NULL) { |
| 162 | ALOGE("detachNextBuffer: outBuffer must not be NULL"); |
| 163 | return BAD_VALUE; |
| 164 | } else if (outFence == NULL) { |
| 165 | ALOGE("detachNextBuffer: outFence must not be NULL"); |
| 166 | return BAD_VALUE; |
| 167 | } |
| 168 | Parcel data, reply; |
| 169 | data.writeInterfaceToken(IGraphicBufferProducer::getInterfaceDescriptor()); |
| 170 | status_t result = remote()->transact(DETACH_NEXT_BUFFER, data, &reply); |
| 171 | if (result != NO_ERROR) { |
| 172 | return result; |
| 173 | } |
| 174 | result = reply.readInt32(); |
| 175 | if (result == NO_ERROR) { |
| 176 | bool nonNull = reply.readInt32(); |
| 177 | if (nonNull) { |
| 178 | *outBuffer = new GraphicBuffer; |
Pablo Ceballos | 70636b3 | 2016-07-06 15:24:54 -0700 | [diff] [blame^] | 179 | result = reply.read(**outBuffer); |
| 180 | if (result != NO_ERROR) { |
| 181 | outBuffer->clear(); |
| 182 | return result; |
| 183 | } |
Dan Stoza | d9822a3 | 2014-03-28 15:25:31 -0700 | [diff] [blame] | 184 | } |
| 185 | nonNull = reply.readInt32(); |
| 186 | if (nonNull) { |
| 187 | *outFence = new Fence; |
Pablo Ceballos | 70636b3 | 2016-07-06 15:24:54 -0700 | [diff] [blame^] | 188 | result = reply.read(**outFence); |
| 189 | if (result != NO_ERROR) { |
| 190 | outBuffer->clear(); |
| 191 | outFence->clear(); |
| 192 | return result; |
| 193 | } |
Dan Stoza | d9822a3 | 2014-03-28 15:25:31 -0700 | [diff] [blame] | 194 | } |
| 195 | } |
| 196 | return result; |
| 197 | } |
| 198 | |
Dan Stoza | 9f3053d | 2014-03-06 15:14:33 -0800 | [diff] [blame] | 199 | virtual status_t attachBuffer(int* slot, const sp<GraphicBuffer>& buffer) { |
| 200 | Parcel data, reply; |
| 201 | data.writeInterfaceToken(IGraphicBufferProducer::getInterfaceDescriptor()); |
| 202 | data.write(*buffer.get()); |
| 203 | status_t result = remote()->transact(ATTACH_BUFFER, data, &reply); |
| 204 | if (result != NO_ERROR) { |
| 205 | return result; |
| 206 | } |
| 207 | *slot = reply.readInt32(); |
| 208 | result = reply.readInt32(); |
| 209 | return result; |
| 210 | } |
| 211 | |
Mathias Agopian | f0bc2f1 | 2012-04-09 16:14:01 -0700 | [diff] [blame] | 212 | virtual status_t queueBuffer(int buf, |
| 213 | const QueueBufferInput& input, QueueBufferOutput* output) { |
Jamie Gennis | 8ba32fa | 2010-12-20 11:27:26 -0800 | [diff] [blame] | 214 | Parcel data, reply; |
Andy McFadden | 2adaf04 | 2012-12-18 09:49:45 -0800 | [diff] [blame] | 215 | data.writeInterfaceToken(IGraphicBufferProducer::getInterfaceDescriptor()); |
Jamie Gennis | 8ba32fa | 2010-12-20 11:27:26 -0800 | [diff] [blame] | 216 | data.writeInt32(buf); |
Jesse Hall | c777b0b | 2012-06-28 12:52:05 -0700 | [diff] [blame] | 217 | data.write(input); |
Jamie Gennis | 8a29ff2 | 2011-10-14 15:03:17 -0700 | [diff] [blame] | 218 | status_t result = remote()->transact(QUEUE_BUFFER, data, &reply); |
| 219 | if (result != NO_ERROR) { |
| 220 | return result; |
| 221 | } |
Mathias Agopian | f0bc2f1 | 2012-04-09 16:14:01 -0700 | [diff] [blame] | 222 | memcpy(output, reply.readInplace(sizeof(*output)), sizeof(*output)); |
Jamie Gennis | 8a29ff2 | 2011-10-14 15:03:17 -0700 | [diff] [blame] | 223 | result = reply.readInt32(); |
Jamie Gennis | 8ba32fa | 2010-12-20 11:27:26 -0800 | [diff] [blame] | 224 | return result; |
| 225 | } |
| 226 | |
Pablo Ceballos | 583b1b3 | 2015-09-03 18:23:52 -0700 | [diff] [blame] | 227 | virtual status_t cancelBuffer(int buf, const sp<Fence>& fence) { |
Jamie Gennis | 8ba32fa | 2010-12-20 11:27:26 -0800 | [diff] [blame] | 228 | Parcel data, reply; |
Andy McFadden | 2adaf04 | 2012-12-18 09:49:45 -0800 | [diff] [blame] | 229 | data.writeInterfaceToken(IGraphicBufferProducer::getInterfaceDescriptor()); |
Jamie Gennis | 8ba32fa | 2010-12-20 11:27:26 -0800 | [diff] [blame] | 230 | data.writeInt32(buf); |
Jamie Gennis | 1df8c34 | 2012-12-20 14:05:45 -0800 | [diff] [blame] | 231 | data.write(*fence.get()); |
Pablo Ceballos | 583b1b3 | 2015-09-03 18:23:52 -0700 | [diff] [blame] | 232 | status_t result = remote()->transact(CANCEL_BUFFER, data, &reply); |
| 233 | if (result != NO_ERROR) { |
| 234 | return result; |
| 235 | } |
| 236 | result = reply.readInt32(); |
| 237 | return result; |
Jamie Gennis | 8ba32fa | 2010-12-20 11:27:26 -0800 | [diff] [blame] | 238 | } |
| 239 | |
Mathias Agopian | eafabcd | 2011-04-20 14:20:59 -0700 | [diff] [blame] | 240 | virtual int query(int what, int* value) { |
| 241 | Parcel data, reply; |
Andy McFadden | 2adaf04 | 2012-12-18 09:49:45 -0800 | [diff] [blame] | 242 | data.writeInterfaceToken(IGraphicBufferProducer::getInterfaceDescriptor()); |
Mathias Agopian | eafabcd | 2011-04-20 14:20:59 -0700 | [diff] [blame] | 243 | data.writeInt32(what); |
Jamie Gennis | 8a29ff2 | 2011-10-14 15:03:17 -0700 | [diff] [blame] | 244 | status_t result = remote()->transact(QUERY, data, &reply); |
| 245 | if (result != NO_ERROR) { |
| 246 | return result; |
| 247 | } |
Mathias Agopian | eafabcd | 2011-04-20 14:20:59 -0700 | [diff] [blame] | 248 | value[0] = reply.readInt32(); |
Jamie Gennis | 8a29ff2 | 2011-10-14 15:03:17 -0700 | [diff] [blame] | 249 | result = reply.readInt32(); |
Mathias Agopian | eafabcd | 2011-04-20 14:20:59 -0700 | [diff] [blame] | 250 | return result; |
| 251 | } |
| 252 | |
Dan Stoza | f0eaf25 | 2014-03-21 13:05:51 -0700 | [diff] [blame] | 253 | virtual status_t connect(const sp<IProducerListener>& listener, |
Mathias Agopian | 365857d | 2013-09-11 19:35:45 -0700 | [diff] [blame] | 254 | int api, bool producerControlledByApp, QueueBufferOutput* output) { |
Jamie Gennis | fe0a87b | 2011-07-13 19:12:20 -0700 | [diff] [blame] | 255 | Parcel data, reply; |
Andy McFadden | 2adaf04 | 2012-12-18 09:49:45 -0800 | [diff] [blame] | 256 | data.writeInterfaceToken(IGraphicBufferProducer::getInterfaceDescriptor()); |
Dan Stoza | f0eaf25 | 2014-03-21 13:05:51 -0700 | [diff] [blame] | 257 | if (listener != NULL) { |
| 258 | data.writeInt32(1); |
Marco Nelissen | 097ca27 | 2014-11-14 08:01:01 -0800 | [diff] [blame] | 259 | data.writeStrongBinder(IInterface::asBinder(listener)); |
Dan Stoza | f0eaf25 | 2014-03-21 13:05:51 -0700 | [diff] [blame] | 260 | } else { |
| 261 | data.writeInt32(0); |
| 262 | } |
Jamie Gennis | fe0a87b | 2011-07-13 19:12:20 -0700 | [diff] [blame] | 263 | data.writeInt32(api); |
Mathias Agopian | 595264f | 2013-07-16 22:56:09 -0700 | [diff] [blame] | 264 | data.writeInt32(producerControlledByApp); |
Jamie Gennis | 8a29ff2 | 2011-10-14 15:03:17 -0700 | [diff] [blame] | 265 | status_t result = remote()->transact(CONNECT, data, &reply); |
| 266 | if (result != NO_ERROR) { |
| 267 | return result; |
| 268 | } |
Mathias Agopian | 24202f5 | 2012-04-23 14:28:58 -0700 | [diff] [blame] | 269 | memcpy(output, reply.readInplace(sizeof(*output)), sizeof(*output)); |
Jamie Gennis | 8a29ff2 | 2011-10-14 15:03:17 -0700 | [diff] [blame] | 270 | result = reply.readInt32(); |
Jamie Gennis | fe0a87b | 2011-07-13 19:12:20 -0700 | [diff] [blame] | 271 | return result; |
| 272 | } |
Mathias Agopian | 8072711 | 2011-05-02 19:51:12 -0700 | [diff] [blame] | 273 | |
Jamie Gennis | fe0a87b | 2011-07-13 19:12:20 -0700 | [diff] [blame] | 274 | virtual status_t disconnect(int api) { |
| 275 | Parcel data, reply; |
Andy McFadden | 2adaf04 | 2012-12-18 09:49:45 -0800 | [diff] [blame] | 276 | data.writeInterfaceToken(IGraphicBufferProducer::getInterfaceDescriptor()); |
Jamie Gennis | fe0a87b | 2011-07-13 19:12:20 -0700 | [diff] [blame] | 277 | data.writeInt32(api); |
Jamie Gennis | 8a29ff2 | 2011-10-14 15:03:17 -0700 | [diff] [blame] | 278 | status_t result =remote()->transact(DISCONNECT, data, &reply); |
| 279 | if (result != NO_ERROR) { |
| 280 | return result; |
| 281 | } |
| 282 | result = reply.readInt32(); |
Jamie Gennis | fe0a87b | 2011-07-13 19:12:20 -0700 | [diff] [blame] | 283 | return result; |
| 284 | } |
Jesse Hall | 399184a | 2014-03-03 15:42:54 -0800 | [diff] [blame] | 285 | |
| 286 | virtual status_t setSidebandStream(const sp<NativeHandle>& stream) { |
| 287 | Parcel data, reply; |
| 288 | status_t result; |
| 289 | data.writeInterfaceToken(IGraphicBufferProducer::getInterfaceDescriptor()); |
| 290 | if (stream.get()) { |
| 291 | data.writeInt32(true); |
| 292 | data.writeNativeHandle(stream->handle()); |
| 293 | } else { |
| 294 | data.writeInt32(false); |
| 295 | } |
| 296 | if ((result = remote()->transact(SET_SIDEBAND_STREAM, data, &reply)) == NO_ERROR) { |
| 297 | result = reply.readInt32(); |
| 298 | } |
| 299 | return result; |
| 300 | } |
Dan Stoza | 29a3e90 | 2014-06-20 13:13:57 -0700 | [diff] [blame] | 301 | |
Pablo Ceballos | 567dbbb | 2015-08-26 18:59:08 -0700 | [diff] [blame] | 302 | virtual void allocateBuffers(uint32_t width, uint32_t height, |
Dan Stoza | 3be1c6b | 2014-11-18 10:24:03 -0800 | [diff] [blame] | 303 | PixelFormat format, uint32_t usage) { |
Dan Stoza | 29a3e90 | 2014-06-20 13:13:57 -0700 | [diff] [blame] | 304 | Parcel data, reply; |
| 305 | data.writeInterfaceToken(IGraphicBufferProducer::getInterfaceDescriptor()); |
Dan Stoza | 3be1c6b | 2014-11-18 10:24:03 -0800 | [diff] [blame] | 306 | data.writeUint32(width); |
| 307 | data.writeUint32(height); |
Dan Stoza | 29a3e90 | 2014-06-20 13:13:57 -0700 | [diff] [blame] | 308 | data.writeInt32(static_cast<int32_t>(format)); |
Dan Stoza | 3be1c6b | 2014-11-18 10:24:03 -0800 | [diff] [blame] | 309 | data.writeUint32(usage); |
Dan Stoza | 29a3e90 | 2014-06-20 13:13:57 -0700 | [diff] [blame] | 310 | status_t result = remote()->transact(ALLOCATE_BUFFERS, data, &reply); |
| 311 | if (result != NO_ERROR) { |
| 312 | ALOGE("allocateBuffers failed to transact: %d", result); |
| 313 | } |
| 314 | } |
Dan Stoza | 9de7293 | 2015-04-16 17:28:43 -0700 | [diff] [blame] | 315 | |
| 316 | virtual status_t allowAllocation(bool allow) { |
| 317 | Parcel data, reply; |
| 318 | data.writeInterfaceToken(IGraphicBufferProducer::getInterfaceDescriptor()); |
| 319 | data.writeInt32(static_cast<int32_t>(allow)); |
| 320 | status_t result = remote()->transact(ALLOW_ALLOCATION, data, &reply); |
| 321 | if (result != NO_ERROR) { |
| 322 | return result; |
| 323 | } |
| 324 | result = reply.readInt32(); |
| 325 | return result; |
| 326 | } |
Dan Stoza | 812ed06 | 2015-06-02 15:45:22 -0700 | [diff] [blame] | 327 | |
| 328 | virtual status_t setGenerationNumber(uint32_t generationNumber) { |
| 329 | Parcel data, reply; |
| 330 | data.writeInterfaceToken(IGraphicBufferProducer::getInterfaceDescriptor()); |
| 331 | data.writeUint32(generationNumber); |
| 332 | status_t result = remote()->transact(SET_GENERATION_NUMBER, data, &reply); |
| 333 | if (result == NO_ERROR) { |
| 334 | result = reply.readInt32(); |
| 335 | } |
| 336 | return result; |
| 337 | } |
Dan Stoza | c6f30bd | 2015-06-08 09:32:50 -0700 | [diff] [blame] | 338 | |
| 339 | virtual String8 getConsumerName() const { |
| 340 | Parcel data, reply; |
| 341 | data.writeInterfaceToken(IGraphicBufferProducer::getInterfaceDescriptor()); |
| 342 | status_t result = remote()->transact(GET_CONSUMER_NAME, data, &reply); |
| 343 | if (result != NO_ERROR) { |
| 344 | ALOGE("getConsumerName failed to transact: %d", result); |
| 345 | return String8("TransactFailed"); |
| 346 | } |
| 347 | return reply.readString8(); |
| 348 | } |
Dan Stoza | 7dde599 | 2015-05-22 09:51:44 -0700 | [diff] [blame] | 349 | |
| 350 | virtual uint64_t getNextFrameNumber() const { |
| 351 | Parcel data, reply; |
| 352 | data.writeInterfaceToken(IGraphicBufferProducer::getInterfaceDescriptor()); |
| 353 | status_t result = remote()->transact(GET_NEXT_FRAME_NUMBER, data, &reply); |
| 354 | if (result != NO_ERROR) { |
| 355 | ALOGE("getNextFrameNumber failed to transact: %d", result); |
| 356 | return 0; |
| 357 | } |
| 358 | uint64_t frameNumber = reply.readUint64(); |
| 359 | return frameNumber; |
| 360 | } |
Pablo Ceballos | ccdfd60 | 2015-10-07 15:05:45 -0700 | [diff] [blame] | 361 | |
Pablo Ceballos | 3559fbf | 2016-03-17 15:50:23 -0700 | [diff] [blame] | 362 | virtual status_t setSharedBufferMode(bool sharedBufferMode) { |
Pablo Ceballos | ccdfd60 | 2015-10-07 15:05:45 -0700 | [diff] [blame] | 363 | Parcel data, reply; |
| 364 | data.writeInterfaceToken( |
| 365 | IGraphicBufferProducer::getInterfaceDescriptor()); |
Pablo Ceballos | 3559fbf | 2016-03-17 15:50:23 -0700 | [diff] [blame] | 366 | data.writeInt32(sharedBufferMode); |
| 367 | status_t result = remote()->transact(SET_SHARED_BUFFER_MODE, data, |
Pablo Ceballos | ccdfd60 | 2015-10-07 15:05:45 -0700 | [diff] [blame] | 368 | &reply); |
| 369 | if (result == NO_ERROR) { |
| 370 | result = reply.readInt32(); |
| 371 | } |
| 372 | return result; |
| 373 | } |
Dan Stoza | 127fc63 | 2015-06-30 13:43:32 -0700 | [diff] [blame] | 374 | |
Pablo Ceballos | ff95aab | 2016-01-13 17:09:58 -0800 | [diff] [blame] | 375 | virtual status_t setAutoRefresh(bool autoRefresh) { |
| 376 | Parcel data, reply; |
| 377 | data.writeInterfaceToken( |
| 378 | IGraphicBufferProducer::getInterfaceDescriptor()); |
| 379 | data.writeInt32(autoRefresh); |
| 380 | status_t result = remote()->transact(SET_AUTO_REFRESH, data, &reply); |
| 381 | if (result == NO_ERROR) { |
| 382 | result = reply.readInt32(); |
| 383 | } |
| 384 | return result; |
| 385 | } |
| 386 | |
Dan Stoza | 127fc63 | 2015-06-30 13:43:32 -0700 | [diff] [blame] | 387 | virtual status_t setDequeueTimeout(nsecs_t timeout) { |
| 388 | Parcel data, reply; |
| 389 | data.writeInterfaceToken(IGraphicBufferProducer::getInterfaceDescriptor()); |
| 390 | data.writeInt64(timeout); |
| 391 | status_t result = remote()->transact(SET_DEQUEUE_TIMEOUT, data, &reply); |
| 392 | if (result != NO_ERROR) { |
| 393 | ALOGE("setDequeueTimeout failed to transact: %d", result); |
| 394 | return result; |
| 395 | } |
| 396 | return reply.readInt32(); |
| 397 | } |
Dan Stoza | 50101d0 | 2016-04-07 16:53:23 -0700 | [diff] [blame] | 398 | |
| 399 | virtual status_t getLastQueuedBuffer(sp<GraphicBuffer>* outBuffer, |
John Reck | 1a61da5 | 2016-04-28 13:18:15 -0700 | [diff] [blame] | 400 | sp<Fence>* outFence, float outTransformMatrix[16]) override { |
Dan Stoza | 50101d0 | 2016-04-07 16:53:23 -0700 | [diff] [blame] | 401 | Parcel data, reply; |
| 402 | data.writeInterfaceToken(IGraphicBufferProducer::getInterfaceDescriptor()); |
| 403 | status_t result = remote()->transact(GET_LAST_QUEUED_BUFFER, data, |
| 404 | &reply); |
| 405 | if (result != NO_ERROR) { |
| 406 | ALOGE("getLastQueuedBuffer failed to transact: %d", result); |
| 407 | return result; |
| 408 | } |
| 409 | result = reply.readInt32(); |
| 410 | if (result != NO_ERROR) { |
| 411 | return result; |
| 412 | } |
John Reck | ce8e5df | 2016-04-28 10:12:47 -0700 | [diff] [blame] | 413 | bool hasBuffer = reply.readBool(); |
| 414 | sp<GraphicBuffer> buffer; |
| 415 | if (hasBuffer) { |
| 416 | buffer = new GraphicBuffer(); |
| 417 | result = reply.read(*buffer); |
John Reck | 1a61da5 | 2016-04-28 13:18:15 -0700 | [diff] [blame] | 418 | if (result == NO_ERROR) { |
| 419 | result = reply.read(outTransformMatrix, sizeof(float) * 16); |
| 420 | } |
John Reck | ce8e5df | 2016-04-28 10:12:47 -0700 | [diff] [blame] | 421 | } |
Dan Stoza | 50101d0 | 2016-04-07 16:53:23 -0700 | [diff] [blame] | 422 | if (result != NO_ERROR) { |
| 423 | ALOGE("getLastQueuedBuffer failed to read buffer: %d", result); |
| 424 | return result; |
| 425 | } |
| 426 | sp<Fence> fence(new Fence); |
| 427 | result = reply.read(*fence); |
| 428 | if (result != NO_ERROR) { |
| 429 | ALOGE("getLastQueuedBuffer failed to read fence: %d", result); |
| 430 | return result; |
| 431 | } |
| 432 | *outBuffer = buffer; |
| 433 | *outFence = fence; |
| 434 | return result; |
| 435 | } |
Pablo Ceballos | ce796e7 | 2016-02-04 19:10:51 -0800 | [diff] [blame] | 436 | |
| 437 | virtual bool getFrameTimestamps(uint64_t frameNumber, |
| 438 | FrameTimestamps* outTimestamps) const { |
| 439 | Parcel data, reply; |
| 440 | status_t result = data.writeInterfaceToken( |
| 441 | IGraphicBufferProducer::getInterfaceDescriptor()); |
| 442 | if (result != NO_ERROR) { |
| 443 | ALOGE("getFrameTimestamps failed to write token: %d", result); |
| 444 | return false; |
| 445 | } |
| 446 | result = data.writeUint64(frameNumber); |
| 447 | if (result != NO_ERROR) { |
| 448 | ALOGE("getFrameTimestamps failed to write: %d", result); |
| 449 | return false; |
| 450 | } |
| 451 | result = remote()->transact(GET_FRAME_TIMESTAMPS, data, &reply); |
| 452 | if (result != NO_ERROR) { |
| 453 | ALOGE("getFrameTimestamps failed to transact: %d", result); |
| 454 | return false; |
| 455 | } |
| 456 | bool found = false; |
| 457 | result = reply.readBool(&found); |
| 458 | if (result != NO_ERROR) { |
| 459 | ALOGE("getFrameTimestamps failed to read: %d", result); |
| 460 | return false; |
| 461 | } |
| 462 | if (found) { |
| 463 | result = reply.read(*outTimestamps); |
| 464 | if (result != NO_ERROR) { |
| 465 | ALOGE("getFrameTimestamps failed to read timestamps: %d", |
| 466 | result); |
| 467 | return false; |
| 468 | } |
| 469 | } |
| 470 | return found; |
| 471 | } |
Pablo Ceballos | 0ade247 | 2016-06-30 16:48:02 -0700 | [diff] [blame] | 472 | |
Pablo Ceballos | 8e3e92b | 2016-06-27 17:56:53 -0700 | [diff] [blame] | 473 | virtual status_t getUniqueId(uint64_t* outId) const { |
| 474 | Parcel data, reply; |
| 475 | data.writeInterfaceToken(IGraphicBufferProducer::getInterfaceDescriptor()); |
| 476 | status_t result = remote()->transact(GET_UNIQUE_ID, data, &reply); |
| 477 | if (result != NO_ERROR) { |
| 478 | ALOGE("getUniqueId failed to transact: %d", result); |
| 479 | } |
| 480 | status_t actualResult = NO_ERROR; |
| 481 | result = reply.readInt32(&actualResult); |
| 482 | if (result != NO_ERROR) { |
| 483 | return result; |
| 484 | } |
| 485 | result = reply.readUint64(outId); |
| 486 | if (result != NO_ERROR) { |
| 487 | return result; |
| 488 | } |
| 489 | return actualResult; |
| 490 | } |
Jamie Gennis | 8ba32fa | 2010-12-20 11:27:26 -0800 | [diff] [blame] | 491 | }; |
| 492 | |
Dan Stoza | 3be1c6b | 2014-11-18 10:24:03 -0800 | [diff] [blame] | 493 | // Out-of-line virtual method definition to trigger vtable emission in this |
| 494 | // translation unit (see clang warning -Wweak-vtables) |
| 495 | BpGraphicBufferProducer::~BpGraphicBufferProducer() {} |
| 496 | |
Andy McFadden | 466a192 | 2013-01-08 11:25:51 -0800 | [diff] [blame] | 497 | IMPLEMENT_META_INTERFACE(GraphicBufferProducer, "android.gui.IGraphicBufferProducer"); |
Jamie Gennis | 8ba32fa | 2010-12-20 11:27:26 -0800 | [diff] [blame] | 498 | |
| 499 | // ---------------------------------------------------------------------- |
| 500 | |
Andy McFadden | 2adaf04 | 2012-12-18 09:49:45 -0800 | [diff] [blame] | 501 | status_t BnGraphicBufferProducer::onTransact( |
Jamie Gennis | 8ba32fa | 2010-12-20 11:27:26 -0800 | [diff] [blame] | 502 | uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) |
| 503 | { |
| 504 | switch(code) { |
| 505 | case REQUEST_BUFFER: { |
Andy McFadden | 2adaf04 | 2012-12-18 09:49:45 -0800 | [diff] [blame] | 506 | CHECK_INTERFACE(IGraphicBufferProducer, data, reply); |
Jamie Gennis | 8ba32fa | 2010-12-20 11:27:26 -0800 | [diff] [blame] | 507 | int bufferIdx = data.readInt32(); |
Jamie Gennis | 7b305ff | 2011-07-19 12:08:33 -0700 | [diff] [blame] | 508 | sp<GraphicBuffer> buffer; |
| 509 | int result = requestBuffer(bufferIdx, &buffer); |
Jamie Gennis | 8ba32fa | 2010-12-20 11:27:26 -0800 | [diff] [blame] | 510 | reply->writeInt32(buffer != 0); |
| 511 | if (buffer != 0) { |
| 512 | reply->write(*buffer); |
| 513 | } |
Jamie Gennis | 7b305ff | 2011-07-19 12:08:33 -0700 | [diff] [blame] | 514 | reply->writeInt32(result); |
Jamie Gennis | 8ba32fa | 2010-12-20 11:27:26 -0800 | [diff] [blame] | 515 | return NO_ERROR; |
Dan Stoza | 3be1c6b | 2014-11-18 10:24:03 -0800 | [diff] [blame] | 516 | } |
Pablo Ceballos | fa45535 | 2015-08-12 17:47:47 -0700 | [diff] [blame] | 517 | case SET_MAX_DEQUEUED_BUFFER_COUNT: { |
| 518 | CHECK_INTERFACE(IGraphicBufferProducer, data, reply); |
| 519 | int maxDequeuedBuffers = data.readInt32(); |
| 520 | int result = setMaxDequeuedBufferCount(maxDequeuedBuffers); |
| 521 | reply->writeInt32(result); |
| 522 | return NO_ERROR; |
| 523 | } |
| 524 | case SET_ASYNC_MODE: { |
| 525 | CHECK_INTERFACE(IGraphicBufferProducer, data, reply); |
| 526 | bool async = data.readInt32(); |
| 527 | int result = setAsyncMode(async); |
| 528 | reply->writeInt32(result); |
| 529 | return NO_ERROR; |
| 530 | } |
Jamie Gennis | 8ba32fa | 2010-12-20 11:27:26 -0800 | [diff] [blame] | 531 | case DEQUEUE_BUFFER: { |
Andy McFadden | 2adaf04 | 2012-12-18 09:49:45 -0800 | [diff] [blame] | 532 | CHECK_INTERFACE(IGraphicBufferProducer, data, reply); |
Dan Stoza | 3be1c6b | 2014-11-18 10:24:03 -0800 | [diff] [blame] | 533 | uint32_t width = data.readUint32(); |
| 534 | uint32_t height = data.readUint32(); |
| 535 | PixelFormat format = static_cast<PixelFormat>(data.readInt32()); |
| 536 | uint32_t usage = data.readUint32(); |
Naveen Leekha | 12ba0f5 | 2015-09-21 17:28:04 -0700 | [diff] [blame] | 537 | int buf = 0; |
Jesse Hall | f785754 | 2012-06-14 15:26:33 -0700 | [diff] [blame] | 538 | sp<Fence> fence; |
Pablo Ceballos | 567dbbb | 2015-08-26 18:59:08 -0700 | [diff] [blame] | 539 | int result = dequeueBuffer(&buf, &fence, width, height, format, |
| 540 | usage); |
Jamie Gennis | 8ba32fa | 2010-12-20 11:27:26 -0800 | [diff] [blame] | 541 | reply->writeInt32(buf); |
Jamie Gennis | 1df8c34 | 2012-12-20 14:05:45 -0800 | [diff] [blame] | 542 | reply->writeInt32(fence != NULL); |
| 543 | if (fence != NULL) { |
Mathias Agopian | ba93b3f | 2013-08-01 15:48:40 -0700 | [diff] [blame] | 544 | reply->write(*fence); |
Jesse Hall | f785754 | 2012-06-14 15:26:33 -0700 | [diff] [blame] | 545 | } |
Jamie Gennis | 8ba32fa | 2010-12-20 11:27:26 -0800 | [diff] [blame] | 546 | reply->writeInt32(result); |
| 547 | return NO_ERROR; |
Dan Stoza | 3be1c6b | 2014-11-18 10:24:03 -0800 | [diff] [blame] | 548 | } |
Dan Stoza | 9f3053d | 2014-03-06 15:14:33 -0800 | [diff] [blame] | 549 | case DETACH_BUFFER: { |
| 550 | CHECK_INTERFACE(IGraphicBufferProducer, data, reply); |
| 551 | int slot = data.readInt32(); |
| 552 | int result = detachBuffer(slot); |
| 553 | reply->writeInt32(result); |
| 554 | return NO_ERROR; |
Dan Stoza | 3be1c6b | 2014-11-18 10:24:03 -0800 | [diff] [blame] | 555 | } |
Dan Stoza | d9822a3 | 2014-03-28 15:25:31 -0700 | [diff] [blame] | 556 | case DETACH_NEXT_BUFFER: { |
| 557 | CHECK_INTERFACE(IGraphicBufferProducer, data, reply); |
| 558 | sp<GraphicBuffer> buffer; |
| 559 | sp<Fence> fence; |
| 560 | int32_t result = detachNextBuffer(&buffer, &fence); |
| 561 | reply->writeInt32(result); |
| 562 | if (result == NO_ERROR) { |
| 563 | reply->writeInt32(buffer != NULL); |
| 564 | if (buffer != NULL) { |
| 565 | reply->write(*buffer); |
| 566 | } |
| 567 | reply->writeInt32(fence != NULL); |
| 568 | if (fence != NULL) { |
| 569 | reply->write(*fence); |
| 570 | } |
| 571 | } |
| 572 | return NO_ERROR; |
Dan Stoza | 3be1c6b | 2014-11-18 10:24:03 -0800 | [diff] [blame] | 573 | } |
Dan Stoza | 9f3053d | 2014-03-06 15:14:33 -0800 | [diff] [blame] | 574 | case ATTACH_BUFFER: { |
| 575 | CHECK_INTERFACE(IGraphicBufferProducer, data, reply); |
| 576 | sp<GraphicBuffer> buffer = new GraphicBuffer(); |
Pablo Ceballos | 70636b3 | 2016-07-06 15:24:54 -0700 | [diff] [blame^] | 577 | status_t result = data.read(*buffer.get()); |
Naveen Leekha | 12ba0f5 | 2015-09-21 17:28:04 -0700 | [diff] [blame] | 578 | int slot = 0; |
Pablo Ceballos | 70636b3 | 2016-07-06 15:24:54 -0700 | [diff] [blame^] | 579 | if (result == NO_ERROR) { |
| 580 | result = attachBuffer(&slot, buffer); |
| 581 | } |
Dan Stoza | 9f3053d | 2014-03-06 15:14:33 -0800 | [diff] [blame] | 582 | reply->writeInt32(slot); |
| 583 | reply->writeInt32(result); |
| 584 | return NO_ERROR; |
Dan Stoza | 3be1c6b | 2014-11-18 10:24:03 -0800 | [diff] [blame] | 585 | } |
Jamie Gennis | 8ba32fa | 2010-12-20 11:27:26 -0800 | [diff] [blame] | 586 | case QUEUE_BUFFER: { |
Andy McFadden | 2adaf04 | 2012-12-18 09:49:45 -0800 | [diff] [blame] | 587 | CHECK_INTERFACE(IGraphicBufferProducer, data, reply); |
Jamie Gennis | 8ba32fa | 2010-12-20 11:27:26 -0800 | [diff] [blame] | 588 | int buf = data.readInt32(); |
Jesse Hall | c777b0b | 2012-06-28 12:52:05 -0700 | [diff] [blame] | 589 | QueueBufferInput input(data); |
Mathias Agopian | f0bc2f1 | 2012-04-09 16:14:01 -0700 | [diff] [blame] | 590 | QueueBufferOutput* const output = |
| 591 | reinterpret_cast<QueueBufferOutput *>( |
| 592 | reply->writeInplace(sizeof(QueueBufferOutput))); |
Robert Shih | d06421f | 2016-01-11 15:02:12 -0800 | [diff] [blame] | 593 | memset(output, 0, sizeof(QueueBufferOutput)); |
Jesse Hall | c777b0b | 2012-06-28 12:52:05 -0700 | [diff] [blame] | 594 | status_t result = queueBuffer(buf, input, output); |
Jamie Gennis | 8ba32fa | 2010-12-20 11:27:26 -0800 | [diff] [blame] | 595 | reply->writeInt32(result); |
| 596 | return NO_ERROR; |
Dan Stoza | 3be1c6b | 2014-11-18 10:24:03 -0800 | [diff] [blame] | 597 | } |
Jamie Gennis | 8ba32fa | 2010-12-20 11:27:26 -0800 | [diff] [blame] | 598 | case CANCEL_BUFFER: { |
Andy McFadden | 2adaf04 | 2012-12-18 09:49:45 -0800 | [diff] [blame] | 599 | CHECK_INTERFACE(IGraphicBufferProducer, data, reply); |
Jamie Gennis | 8ba32fa | 2010-12-20 11:27:26 -0800 | [diff] [blame] | 600 | int buf = data.readInt32(); |
Jamie Gennis | 1df8c34 | 2012-12-20 14:05:45 -0800 | [diff] [blame] | 601 | sp<Fence> fence = new Fence(); |
Pablo Ceballos | 70636b3 | 2016-07-06 15:24:54 -0700 | [diff] [blame^] | 602 | status_t result = data.read(*fence.get()); |
| 603 | if (result == NO_ERROR) { |
| 604 | result = cancelBuffer(buf, fence); |
| 605 | } |
Pablo Ceballos | 583b1b3 | 2015-09-03 18:23:52 -0700 | [diff] [blame] | 606 | reply->writeInt32(result); |
Jamie Gennis | 8ba32fa | 2010-12-20 11:27:26 -0800 | [diff] [blame] | 607 | return NO_ERROR; |
Dan Stoza | 3be1c6b | 2014-11-18 10:24:03 -0800 | [diff] [blame] | 608 | } |
Mathias Agopian | eafabcd | 2011-04-20 14:20:59 -0700 | [diff] [blame] | 609 | case QUERY: { |
Andy McFadden | 2adaf04 | 2012-12-18 09:49:45 -0800 | [diff] [blame] | 610 | CHECK_INTERFACE(IGraphicBufferProducer, data, reply); |
Naveen Leekha | 12ba0f5 | 2015-09-21 17:28:04 -0700 | [diff] [blame] | 611 | int value = 0; |
Mathias Agopian | eafabcd | 2011-04-20 14:20:59 -0700 | [diff] [blame] | 612 | int what = data.readInt32(); |
| 613 | int res = query(what, &value); |
| 614 | reply->writeInt32(value); |
| 615 | reply->writeInt32(res); |
| 616 | return NO_ERROR; |
Dan Stoza | 3be1c6b | 2014-11-18 10:24:03 -0800 | [diff] [blame] | 617 | } |
Jamie Gennis | fe0a87b | 2011-07-13 19:12:20 -0700 | [diff] [blame] | 618 | case CONNECT: { |
Andy McFadden | 2adaf04 | 2012-12-18 09:49:45 -0800 | [diff] [blame] | 619 | CHECK_INTERFACE(IGraphicBufferProducer, data, reply); |
Dan Stoza | f0eaf25 | 2014-03-21 13:05:51 -0700 | [diff] [blame] | 620 | sp<IProducerListener> listener; |
| 621 | if (data.readInt32() == 1) { |
| 622 | listener = IProducerListener::asInterface(data.readStrongBinder()); |
| 623 | } |
Jamie Gennis | fe0a87b | 2011-07-13 19:12:20 -0700 | [diff] [blame] | 624 | int api = data.readInt32(); |
Mathias Agopian | 595264f | 2013-07-16 22:56:09 -0700 | [diff] [blame] | 625 | bool producerControlledByApp = data.readInt32(); |
Mathias Agopian | 24202f5 | 2012-04-23 14:28:58 -0700 | [diff] [blame] | 626 | QueueBufferOutput* const output = |
| 627 | reinterpret_cast<QueueBufferOutput *>( |
| 628 | reply->writeInplace(sizeof(QueueBufferOutput))); |
Pablo Ceballos | 93c617f | 2016-03-15 18:10:49 -0700 | [diff] [blame] | 629 | memset(output, 0, sizeof(QueueBufferOutput)); |
Dan Stoza | f0eaf25 | 2014-03-21 13:05:51 -0700 | [diff] [blame] | 630 | status_t res = connect(listener, api, producerControlledByApp, output); |
Jamie Gennis | fe0a87b | 2011-07-13 19:12:20 -0700 | [diff] [blame] | 631 | reply->writeInt32(res); |
| 632 | return NO_ERROR; |
Dan Stoza | 3be1c6b | 2014-11-18 10:24:03 -0800 | [diff] [blame] | 633 | } |
Jamie Gennis | fe0a87b | 2011-07-13 19:12:20 -0700 | [diff] [blame] | 634 | case DISCONNECT: { |
Andy McFadden | 2adaf04 | 2012-12-18 09:49:45 -0800 | [diff] [blame] | 635 | CHECK_INTERFACE(IGraphicBufferProducer, data, reply); |
Jamie Gennis | fe0a87b | 2011-07-13 19:12:20 -0700 | [diff] [blame] | 636 | int api = data.readInt32(); |
Mathias Agopian | 2773004 | 2011-07-14 20:20:58 -0700 | [diff] [blame] | 637 | status_t res = disconnect(api); |
Jamie Gennis | fe0a87b | 2011-07-13 19:12:20 -0700 | [diff] [blame] | 638 | reply->writeInt32(res); |
| 639 | return NO_ERROR; |
Dan Stoza | 3be1c6b | 2014-11-18 10:24:03 -0800 | [diff] [blame] | 640 | } |
Jesse Hall | 399184a | 2014-03-03 15:42:54 -0800 | [diff] [blame] | 641 | case SET_SIDEBAND_STREAM: { |
| 642 | CHECK_INTERFACE(IGraphicBufferProducer, data, reply); |
| 643 | sp<NativeHandle> stream; |
| 644 | if (data.readInt32()) { |
Wonsik Kim | 0ec54e1 | 2014-03-21 10:46:24 +0900 | [diff] [blame] | 645 | stream = NativeHandle::create(data.readNativeHandle(), true); |
Jesse Hall | 399184a | 2014-03-03 15:42:54 -0800 | [diff] [blame] | 646 | } |
| 647 | status_t result = setSidebandStream(stream); |
| 648 | reply->writeInt32(result); |
| 649 | return NO_ERROR; |
Dan Stoza | 3be1c6b | 2014-11-18 10:24:03 -0800 | [diff] [blame] | 650 | } |
Dan Stoza | 9de7293 | 2015-04-16 17:28:43 -0700 | [diff] [blame] | 651 | case ALLOCATE_BUFFERS: { |
Dan Stoza | 29a3e90 | 2014-06-20 13:13:57 -0700 | [diff] [blame] | 652 | CHECK_INTERFACE(IGraphicBufferProducer, data, reply); |
Dan Stoza | 3be1c6b | 2014-11-18 10:24:03 -0800 | [diff] [blame] | 653 | uint32_t width = data.readUint32(); |
| 654 | uint32_t height = data.readUint32(); |
| 655 | PixelFormat format = static_cast<PixelFormat>(data.readInt32()); |
| 656 | uint32_t usage = data.readUint32(); |
Pablo Ceballos | 567dbbb | 2015-08-26 18:59:08 -0700 | [diff] [blame] | 657 | allocateBuffers(width, height, format, usage); |
Dan Stoza | 29a3e90 | 2014-06-20 13:13:57 -0700 | [diff] [blame] | 658 | return NO_ERROR; |
Dan Stoza | 9de7293 | 2015-04-16 17:28:43 -0700 | [diff] [blame] | 659 | } |
| 660 | case ALLOW_ALLOCATION: { |
| 661 | CHECK_INTERFACE(IGraphicBufferProducer, data, reply); |
| 662 | bool allow = static_cast<bool>(data.readInt32()); |
| 663 | status_t result = allowAllocation(allow); |
| 664 | reply->writeInt32(result); |
| 665 | return NO_ERROR; |
| 666 | } |
Dan Stoza | 812ed06 | 2015-06-02 15:45:22 -0700 | [diff] [blame] | 667 | case SET_GENERATION_NUMBER: { |
| 668 | CHECK_INTERFACE(IGraphicBufferProducer, data, reply); |
| 669 | uint32_t generationNumber = data.readUint32(); |
| 670 | status_t result = setGenerationNumber(generationNumber); |
| 671 | reply->writeInt32(result); |
| 672 | return NO_ERROR; |
| 673 | } |
Dan Stoza | c6f30bd | 2015-06-08 09:32:50 -0700 | [diff] [blame] | 674 | case GET_CONSUMER_NAME: { |
| 675 | CHECK_INTERFACE(IGraphicBufferProducer, data, reply); |
| 676 | reply->writeString8(getConsumerName()); |
| 677 | return NO_ERROR; |
| 678 | } |
Dan Stoza | 7dde599 | 2015-05-22 09:51:44 -0700 | [diff] [blame] | 679 | case GET_NEXT_FRAME_NUMBER: { |
| 680 | CHECK_INTERFACE(IGraphicBufferProducer, data, reply); |
| 681 | uint64_t frameNumber = getNextFrameNumber(); |
| 682 | reply->writeUint64(frameNumber); |
| 683 | return NO_ERROR; |
| 684 | } |
Pablo Ceballos | 3559fbf | 2016-03-17 15:50:23 -0700 | [diff] [blame] | 685 | case SET_SHARED_BUFFER_MODE: { |
Pablo Ceballos | ccdfd60 | 2015-10-07 15:05:45 -0700 | [diff] [blame] | 686 | CHECK_INTERFACE(IGraphicBufferProducer, data, reply); |
Pablo Ceballos | 3559fbf | 2016-03-17 15:50:23 -0700 | [diff] [blame] | 687 | bool sharedBufferMode = data.readInt32(); |
| 688 | status_t result = setSharedBufferMode(sharedBufferMode); |
Pablo Ceballos | ccdfd60 | 2015-10-07 15:05:45 -0700 | [diff] [blame] | 689 | reply->writeInt32(result); |
| 690 | return NO_ERROR; |
| 691 | } |
Pablo Ceballos | ff95aab | 2016-01-13 17:09:58 -0800 | [diff] [blame] | 692 | case SET_AUTO_REFRESH: { |
| 693 | CHECK_INTERFACE(IGraphicBuffer, data, reply); |
| 694 | bool autoRefresh = data.readInt32(); |
| 695 | status_t result = setAutoRefresh(autoRefresh); |
| 696 | reply->writeInt32(result); |
| 697 | return NO_ERROR; |
| 698 | } |
Dan Stoza | 127fc63 | 2015-06-30 13:43:32 -0700 | [diff] [blame] | 699 | case SET_DEQUEUE_TIMEOUT: { |
| 700 | CHECK_INTERFACE(IGraphicBufferProducer, data, reply); |
| 701 | nsecs_t timeout = data.readInt64(); |
| 702 | status_t result = setDequeueTimeout(timeout); |
| 703 | reply->writeInt32(result); |
| 704 | return NO_ERROR; |
| 705 | } |
Dan Stoza | 50101d0 | 2016-04-07 16:53:23 -0700 | [diff] [blame] | 706 | case GET_LAST_QUEUED_BUFFER: { |
| 707 | CHECK_INTERFACE(IGraphicBufferProducer, data, reply); |
| 708 | sp<GraphicBuffer> buffer(nullptr); |
| 709 | sp<Fence> fence(Fence::NO_FENCE); |
John Reck | 1a61da5 | 2016-04-28 13:18:15 -0700 | [diff] [blame] | 710 | float transform[16] = {}; |
| 711 | status_t result = getLastQueuedBuffer(&buffer, &fence, transform); |
Dan Stoza | 50101d0 | 2016-04-07 16:53:23 -0700 | [diff] [blame] | 712 | reply->writeInt32(result); |
| 713 | if (result != NO_ERROR) { |
| 714 | return result; |
| 715 | } |
John Reck | ce8e5df | 2016-04-28 10:12:47 -0700 | [diff] [blame] | 716 | if (!buffer.get()) { |
| 717 | reply->writeBool(false); |
| 718 | } else { |
| 719 | reply->writeBool(true); |
| 720 | result = reply->write(*buffer); |
John Reck | 1a61da5 | 2016-04-28 13:18:15 -0700 | [diff] [blame] | 721 | if (result == NO_ERROR) { |
| 722 | reply->write(transform, sizeof(float) * 16); |
| 723 | } |
John Reck | ce8e5df | 2016-04-28 10:12:47 -0700 | [diff] [blame] | 724 | } |
Dan Stoza | 50101d0 | 2016-04-07 16:53:23 -0700 | [diff] [blame] | 725 | if (result != NO_ERROR) { |
| 726 | ALOGE("getLastQueuedBuffer failed to write buffer: %d", result); |
| 727 | return result; |
| 728 | } |
| 729 | result = reply->write(*fence); |
| 730 | if (result != NO_ERROR) { |
| 731 | ALOGE("getLastQueuedBuffer failed to write fence: %d", result); |
| 732 | return result; |
| 733 | } |
| 734 | return NO_ERROR; |
| 735 | } |
Pablo Ceballos | ce796e7 | 2016-02-04 19:10:51 -0800 | [diff] [blame] | 736 | case GET_FRAME_TIMESTAMPS: { |
| 737 | CHECK_INTERFACE(IGraphicBufferProducer, data, reply); |
| 738 | uint64_t frameNumber = 0; |
| 739 | status_t result = data.readUint64(&frameNumber); |
| 740 | if (result != NO_ERROR) { |
| 741 | ALOGE("onTransact failed to read: %d", result); |
| 742 | return result; |
| 743 | } |
| 744 | FrameTimestamps timestamps; |
| 745 | bool found = getFrameTimestamps(frameNumber, ×tamps); |
| 746 | result = reply->writeBool(found); |
| 747 | if (result != NO_ERROR) { |
| 748 | ALOGE("onTransact failed to write: %d", result); |
| 749 | return result; |
| 750 | } |
| 751 | if (found) { |
| 752 | result = reply->write(timestamps); |
| 753 | if (result != NO_ERROR) { |
| 754 | ALOGE("onTransact failed to write timestamps: %d", result); |
| 755 | return result; |
| 756 | } |
| 757 | } |
| 758 | return NO_ERROR; |
| 759 | } |
Pablo Ceballos | 8e3e92b | 2016-06-27 17:56:53 -0700 | [diff] [blame] | 760 | case GET_UNIQUE_ID: { |
| 761 | CHECK_INTERFACE(IGraphicBufferProducer, data, reply); |
| 762 | uint64_t outId = 0; |
| 763 | status_t actualResult = getUniqueId(&outId); |
| 764 | status_t result = reply->writeInt32(actualResult); |
| 765 | if (result != NO_ERROR) { |
| 766 | return result; |
| 767 | } |
| 768 | result = reply->writeUint64(outId); |
| 769 | if (result != NO_ERROR) { |
| 770 | return result; |
| 771 | } |
| 772 | return NO_ERROR; |
| 773 | } |
Jamie Gennis | 8ba32fa | 2010-12-20 11:27:26 -0800 | [diff] [blame] | 774 | } |
| 775 | return BBinder::onTransact(code, data, reply, flags); |
| 776 | } |
| 777 | |
| 778 | // ---------------------------------------------------------------------------- |
| 779 | |
Andy McFadden | 2adaf04 | 2012-12-18 09:49:45 -0800 | [diff] [blame] | 780 | IGraphicBufferProducer::QueueBufferInput::QueueBufferInput(const Parcel& parcel) { |
Jesse Hall | c777b0b | 2012-06-28 12:52:05 -0700 | [diff] [blame] | 781 | parcel.read(*this); |
| 782 | } |
| 783 | |
Mathias Agopian | e142428 | 2013-07-29 21:24:40 -0700 | [diff] [blame] | 784 | size_t IGraphicBufferProducer::QueueBufferInput::getFlattenedSize() const { |
Jesse Hall | c777b0b | 2012-06-28 12:52:05 -0700 | [diff] [blame] | 785 | return sizeof(timestamp) |
Andy McFadden | 3c25621 | 2013-08-16 14:55:39 -0700 | [diff] [blame] | 786 | + sizeof(isAutoTimestamp) |
Eino-Ville Talvala | 82c6bcc | 2015-02-19 16:10:43 -0800 | [diff] [blame] | 787 | + sizeof(dataSpace) |
Jesse Hall | c777b0b | 2012-06-28 12:52:05 -0700 | [diff] [blame] | 788 | + sizeof(crop) |
| 789 | + sizeof(scalingMode) |
| 790 | + sizeof(transform) |
Ruben Brunk | 1681d95 | 2014-06-27 15:51:55 -0700 | [diff] [blame] | 791 | + sizeof(stickyTransform) |
Dan Stoza | 5065a55 | 2015-03-17 16:23:42 -0700 | [diff] [blame] | 792 | + fence->getFlattenedSize() |
| 793 | + surfaceDamage.getFlattenedSize(); |
Jesse Hall | c777b0b | 2012-06-28 12:52:05 -0700 | [diff] [blame] | 794 | } |
| 795 | |
Mathias Agopian | e142428 | 2013-07-29 21:24:40 -0700 | [diff] [blame] | 796 | size_t IGraphicBufferProducer::QueueBufferInput::getFdCount() const { |
Jamie Gennis | 1df8c34 | 2012-12-20 14:05:45 -0800 | [diff] [blame] | 797 | return fence->getFdCount(); |
Jesse Hall | c777b0b | 2012-06-28 12:52:05 -0700 | [diff] [blame] | 798 | } |
| 799 | |
Mathias Agopian | e142428 | 2013-07-29 21:24:40 -0700 | [diff] [blame] | 800 | status_t IGraphicBufferProducer::QueueBufferInput::flatten( |
| 801 | void*& buffer, size_t& size, int*& fds, size_t& count) const |
Jesse Hall | c777b0b | 2012-06-28 12:52:05 -0700 | [diff] [blame] | 802 | { |
Mathias Agopian | e142428 | 2013-07-29 21:24:40 -0700 | [diff] [blame] | 803 | if (size < getFlattenedSize()) { |
| 804 | return NO_MEMORY; |
| 805 | } |
| 806 | FlattenableUtils::write(buffer, size, timestamp); |
Andy McFadden | 3c25621 | 2013-08-16 14:55:39 -0700 | [diff] [blame] | 807 | FlattenableUtils::write(buffer, size, isAutoTimestamp); |
Eino-Ville Talvala | 82c6bcc | 2015-02-19 16:10:43 -0800 | [diff] [blame] | 808 | FlattenableUtils::write(buffer, size, dataSpace); |
Mathias Agopian | e142428 | 2013-07-29 21:24:40 -0700 | [diff] [blame] | 809 | FlattenableUtils::write(buffer, size, crop); |
| 810 | FlattenableUtils::write(buffer, size, scalingMode); |
| 811 | FlattenableUtils::write(buffer, size, transform); |
Ruben Brunk | 1681d95 | 2014-06-27 15:51:55 -0700 | [diff] [blame] | 812 | FlattenableUtils::write(buffer, size, stickyTransform); |
Dan Stoza | 5065a55 | 2015-03-17 16:23:42 -0700 | [diff] [blame] | 813 | status_t result = fence->flatten(buffer, size, fds, count); |
| 814 | if (result != NO_ERROR) { |
| 815 | return result; |
| 816 | } |
| 817 | return surfaceDamage.flatten(buffer, size); |
Jesse Hall | c777b0b | 2012-06-28 12:52:05 -0700 | [diff] [blame] | 818 | } |
| 819 | |
Mathias Agopian | e142428 | 2013-07-29 21:24:40 -0700 | [diff] [blame] | 820 | status_t IGraphicBufferProducer::QueueBufferInput::unflatten( |
| 821 | void const*& buffer, size_t& size, int const*& fds, size_t& count) |
Jesse Hall | c777b0b | 2012-06-28 12:52:05 -0700 | [diff] [blame] | 822 | { |
Mathias Agopian | e142428 | 2013-07-29 21:24:40 -0700 | [diff] [blame] | 823 | size_t minNeeded = |
| 824 | sizeof(timestamp) |
Andy McFadden | 3c25621 | 2013-08-16 14:55:39 -0700 | [diff] [blame] | 825 | + sizeof(isAutoTimestamp) |
Eino-Ville Talvala | 82c6bcc | 2015-02-19 16:10:43 -0800 | [diff] [blame] | 826 | + sizeof(dataSpace) |
Mathias Agopian | e142428 | 2013-07-29 21:24:40 -0700 | [diff] [blame] | 827 | + sizeof(crop) |
| 828 | + sizeof(scalingMode) |
| 829 | + sizeof(transform) |
Pablo Ceballos | 567dbbb | 2015-08-26 18:59:08 -0700 | [diff] [blame] | 830 | + sizeof(stickyTransform); |
Mathias Agopian | e142428 | 2013-07-29 21:24:40 -0700 | [diff] [blame] | 831 | |
| 832 | if (size < minNeeded) { |
| 833 | return NO_MEMORY; |
| 834 | } |
| 835 | |
| 836 | FlattenableUtils::read(buffer, size, timestamp); |
Andy McFadden | 3c25621 | 2013-08-16 14:55:39 -0700 | [diff] [blame] | 837 | FlattenableUtils::read(buffer, size, isAutoTimestamp); |
Eino-Ville Talvala | 82c6bcc | 2015-02-19 16:10:43 -0800 | [diff] [blame] | 838 | FlattenableUtils::read(buffer, size, dataSpace); |
Mathias Agopian | e142428 | 2013-07-29 21:24:40 -0700 | [diff] [blame] | 839 | FlattenableUtils::read(buffer, size, crop); |
| 840 | FlattenableUtils::read(buffer, size, scalingMode); |
| 841 | FlattenableUtils::read(buffer, size, transform); |
Ruben Brunk | 1681d95 | 2014-06-27 15:51:55 -0700 | [diff] [blame] | 842 | FlattenableUtils::read(buffer, size, stickyTransform); |
Mathias Agopian | e142428 | 2013-07-29 21:24:40 -0700 | [diff] [blame] | 843 | |
Jamie Gennis | 1df8c34 | 2012-12-20 14:05:45 -0800 | [diff] [blame] | 844 | fence = new Fence(); |
Dan Stoza | 5065a55 | 2015-03-17 16:23:42 -0700 | [diff] [blame] | 845 | status_t result = fence->unflatten(buffer, size, fds, count); |
| 846 | if (result != NO_ERROR) { |
| 847 | return result; |
| 848 | } |
| 849 | return surfaceDamage.unflatten(buffer, size); |
Jesse Hall | c777b0b | 2012-06-28 12:52:05 -0700 | [diff] [blame] | 850 | } |
| 851 | |
Jamie Gennis | 8ba32fa | 2010-12-20 11:27:26 -0800 | [diff] [blame] | 852 | }; // namespace android |