blob: 9c311a314f2503308b9266e9a10bf1077282434c [file] [log] [blame]
Dan Stoza289ade12014-02-28 11:17:17 -08001/*
2 * Copyright 2014 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
Mark Salyzyn8f515ce2014-06-09 14:32:04 -070017#include <inttypes.h>
18
Dan Stoza3e96f192014-03-03 10:16:19 -080019#define LOG_TAG "BufferQueueProducer"
20#define ATRACE_TAG ATRACE_TAG_GRAPHICS
21//#define LOG_NDEBUG 0
22
Pablo Ceballos9e314332016-01-12 13:49:19 -080023#if DEBUG_ONLY_CODE
24#define VALIDATE_CONSISTENCY() do { mCore->validateConsistencyLocked(); } while (0)
25#else
26#define VALIDATE_CONSISTENCY()
27#endif
28
Dan Stoza289ade12014-02-28 11:17:17 -080029#define EGL_EGLEXT_PROTOTYPES
30
Robert Carr97b9c862016-09-08 13:54:35 -070031#include <binder/IPCThreadState.h>
Dan Stoza289ade12014-02-28 11:17:17 -080032#include <gui/BufferItem.h>
33#include <gui/BufferQueueCore.h>
34#include <gui/BufferQueueProducer.h>
John Reck1a61da52016-04-28 13:18:15 -070035#include <gui/GLConsumer.h>
Dan Stoza289ade12014-02-28 11:17:17 -080036#include <gui/IConsumerListener.h>
Dan Stozaf0eaf252014-03-21 13:05:51 -070037#include <gui/IProducerListener.h>
Jayant Chowdharyad9fe272019-03-07 22:36:06 -080038#include <private/gui/BufferQueueThreadState.h>
Dan Stoza289ade12014-02-28 11:17:17 -080039
40#include <utils/Log.h>
41#include <utils/Trace.h>
42
Mathias Agopian6a3c05b2017-04-27 20:06:55 -070043#include <system/window.h>
44
Dan Stoza289ade12014-02-28 11:17:17 -080045namespace android {
46
Craig Donner6ebc46a2016-10-21 15:23:44 -070047static constexpr uint32_t BQ_LAYER_COUNT = 1;
48
Irvel468051e2016-06-13 16:44:44 -070049BufferQueueProducer::BufferQueueProducer(const sp<BufferQueueCore>& core,
50 bool consumerIsSurfaceFlinger) :
Dan Stoza289ade12014-02-28 11:17:17 -080051 mCore(core),
52 mSlots(core->mSlots),
Ruben Brunk1681d952014-06-27 15:51:55 -070053 mConsumerName(),
Eric Penner99a0afb2014-09-30 11:28:30 -070054 mStickyTransform(0),
Irvel468051e2016-06-13 16:44:44 -070055 mConsumerIsSurfaceFlinger(consumerIsSurfaceFlinger),
Dan Stoza8dc55392014-11-04 11:37:46 -080056 mLastQueueBufferFence(Fence::NO_FENCE),
Pablo Ceballosbd3577e2016-06-20 17:40:34 -070057 mLastQueuedTransform(0),
Dan Stoza8dc55392014-11-04 11:37:46 -080058 mCallbackMutex(),
59 mNextCallbackTicket(0),
60 mCurrentCallbackTicket(0),
Dan Stoza127fc632015-06-30 13:43:32 -070061 mCallbackCondition(),
Jorim Jaggi35b4e382019-03-28 00:44:03 +010062 mDequeueTimeout(-1),
63 mDequeueWaitingForAllocation(false) {}
Dan Stoza289ade12014-02-28 11:17:17 -080064
65BufferQueueProducer::~BufferQueueProducer() {}
66
67status_t BufferQueueProducer::requestBuffer(int slot, sp<GraphicBuffer>* buf) {
68 ATRACE_CALL();
69 BQ_LOGV("requestBuffer: slot %d", slot);
Jorim Jaggi6ae55032019-04-02 02:27:44 +020070 std::lock_guard<std::mutex> lock(mCore->mMutex);
Dan Stoza289ade12014-02-28 11:17:17 -080071
72 if (mCore->mIsAbandoned) {
73 BQ_LOGE("requestBuffer: BufferQueue has been abandoned");
74 return NO_INIT;
75 }
76
Pablo Ceballos583b1b32015-09-03 18:23:52 -070077 if (mCore->mConnectedApi == BufferQueueCore::NO_CONNECTED_API) {
78 BQ_LOGE("requestBuffer: BufferQueue has no connected producer");
79 return NO_INIT;
80 }
81
Dan Stoza3e96f192014-03-03 10:16:19 -080082 if (slot < 0 || slot >= BufferQueueDefs::NUM_BUFFER_SLOTS) {
Dan Stoza289ade12014-02-28 11:17:17 -080083 BQ_LOGE("requestBuffer: slot index %d out of range [0, %d)",
Dan Stoza3e96f192014-03-03 10:16:19 -080084 slot, BufferQueueDefs::NUM_BUFFER_SLOTS);
Dan Stoza289ade12014-02-28 11:17:17 -080085 return BAD_VALUE;
Pablo Ceballosccdfd602015-10-07 15:05:45 -070086 } else if (!mSlots[slot].mBufferState.isDequeued()) {
Dan Stoza289ade12014-02-28 11:17:17 -080087 BQ_LOGE("requestBuffer: slot %d is not owned by the producer "
Pablo Ceballosccdfd602015-10-07 15:05:45 -070088 "(state = %s)", slot, mSlots[slot].mBufferState.string());
Dan Stoza289ade12014-02-28 11:17:17 -080089 return BAD_VALUE;
90 }
91
92 mSlots[slot].mRequestBufferCalled = true;
93 *buf = mSlots[slot].mGraphicBuffer;
94 return NO_ERROR;
95}
96
Pablo Ceballosfa455352015-08-12 17:47:47 -070097status_t BufferQueueProducer::setMaxDequeuedBufferCount(
98 int maxDequeuedBuffers) {
99 ATRACE_CALL();
100 BQ_LOGV("setMaxDequeuedBufferCount: maxDequeuedBuffers = %d",
101 maxDequeuedBuffers);
102
Pablo Ceballos981066c2016-02-18 12:54:37 -0800103 sp<IConsumerListener> listener;
Pablo Ceballosfa455352015-08-12 17:47:47 -0700104 { // Autolock scope
Jorim Jaggi6ae55032019-04-02 02:27:44 +0200105 std::unique_lock<std::mutex> lock(mCore->mMutex);
106 mCore->waitWhileAllocatingLocked(lock);
Pablo Ceballosfa455352015-08-12 17:47:47 -0700107
108 if (mCore->mIsAbandoned) {
109 BQ_LOGE("setMaxDequeuedBufferCount: BufferQueue has been "
110 "abandoned");
111 return NO_INIT;
112 }
113
Pablo Ceballos245cc5b2016-04-19 11:33:00 -0700114 if (maxDequeuedBuffers == mCore->mMaxDequeuedBufferCount) {
115 return NO_ERROR;
116 }
117
Pablo Ceballos72daab62015-12-07 16:38:43 -0800118 // The new maxDequeuedBuffer count should not be violated by the number
119 // of currently dequeued buffers
120 int dequeuedCount = 0;
Pablo Ceballos23b4abe2016-01-08 12:15:22 -0800121 for (int s : mCore->mActiveBuffers) {
Pablo Ceballosccdfd602015-10-07 15:05:45 -0700122 if (mSlots[s].mBufferState.isDequeued()) {
Pablo Ceballos72daab62015-12-07 16:38:43 -0800123 dequeuedCount++;
Pablo Ceballosfa455352015-08-12 17:47:47 -0700124 }
125 }
Pablo Ceballos72daab62015-12-07 16:38:43 -0800126 if (dequeuedCount > maxDequeuedBuffers) {
127 BQ_LOGE("setMaxDequeuedBufferCount: the requested maxDequeuedBuffer"
128 "count (%d) exceeds the current dequeued buffer count (%d)",
129 maxDequeuedBuffers, dequeuedCount);
130 return BAD_VALUE;
131 }
Pablo Ceballosfa455352015-08-12 17:47:47 -0700132
Pablo Ceballos567dbbb2015-08-26 18:59:08 -0700133 int bufferCount = mCore->getMinUndequeuedBufferCountLocked();
Pablo Ceballosfa455352015-08-12 17:47:47 -0700134 bufferCount += maxDequeuedBuffers;
135
136 if (bufferCount > BufferQueueDefs::NUM_BUFFER_SLOTS) {
137 BQ_LOGE("setMaxDequeuedBufferCount: bufferCount %d too large "
138 "(max %d)", bufferCount, BufferQueueDefs::NUM_BUFFER_SLOTS);
139 return BAD_VALUE;
140 }
141
Pablo Ceballos567dbbb2015-08-26 18:59:08 -0700142 const int minBufferSlots = mCore->getMinMaxBufferCountLocked();
Pablo Ceballosfa455352015-08-12 17:47:47 -0700143 if (bufferCount < minBufferSlots) {
144 BQ_LOGE("setMaxDequeuedBufferCount: requested buffer count %d is "
145 "less than minimum %d", bufferCount, minBufferSlots);
146 return BAD_VALUE;
147 }
148
Pablo Ceballos19e3e062015-08-19 16:16:06 -0700149 if (bufferCount > mCore->mMaxBufferCount) {
150 BQ_LOGE("setMaxDequeuedBufferCount: %d dequeued buffers would "
Pablo Ceballos567dbbb2015-08-26 18:59:08 -0700151 "exceed the maxBufferCount (%d) (maxAcquired %d async %d "
152 "mDequeuedBufferCannotBlock %d)", maxDequeuedBuffers,
153 mCore->mMaxBufferCount, mCore->mMaxAcquiredBufferCount,
154 mCore->mAsyncMode, mCore->mDequeueBufferCannotBlock);
Pablo Ceballos19e3e062015-08-19 16:16:06 -0700155 return BAD_VALUE;
156 }
157
Pablo Ceballos72daab62015-12-07 16:38:43 -0800158 int delta = maxDequeuedBuffers - mCore->mMaxDequeuedBufferCount;
Pablo Ceballos981066c2016-02-18 12:54:37 -0800159 if (!mCore->adjustAvailableSlotsLocked(delta)) {
Pablo Ceballos23b4abe2016-01-08 12:15:22 -0800160 return BAD_VALUE;
161 }
Pablo Ceballosfa455352015-08-12 17:47:47 -0700162 mCore->mMaxDequeuedBufferCount = maxDequeuedBuffers;
Pablo Ceballos9e314332016-01-12 13:49:19 -0800163 VALIDATE_CONSISTENCY();
Pablo Ceballos72daab62015-12-07 16:38:43 -0800164 if (delta < 0) {
Pablo Ceballos981066c2016-02-18 12:54:37 -0800165 listener = mCore->mConsumerListener;
Pablo Ceballos72daab62015-12-07 16:38:43 -0800166 }
Jorim Jaggi6ae55032019-04-02 02:27:44 +0200167 mCore->mDequeueCondition.notify_all();
Pablo Ceballosfa455352015-08-12 17:47:47 -0700168 } // Autolock scope
169
170 // Call back without lock held
Yi Kong48a619f2018-06-05 16:34:59 -0700171 if (listener != nullptr) {
Pablo Ceballos981066c2016-02-18 12:54:37 -0800172 listener->onBuffersReleased();
Pablo Ceballosfa455352015-08-12 17:47:47 -0700173 }
174
175 return NO_ERROR;
176}
177
178status_t BufferQueueProducer::setAsyncMode(bool async) {
179 ATRACE_CALL();
180 BQ_LOGV("setAsyncMode: async = %d", async);
181
Pablo Ceballos981066c2016-02-18 12:54:37 -0800182 sp<IConsumerListener> listener;
Pablo Ceballosfa455352015-08-12 17:47:47 -0700183 { // Autolock scope
Jorim Jaggi6ae55032019-04-02 02:27:44 +0200184 std::unique_lock<std::mutex> lock(mCore->mMutex);
185 mCore->waitWhileAllocatingLocked(lock);
Pablo Ceballosfa455352015-08-12 17:47:47 -0700186
187 if (mCore->mIsAbandoned) {
188 BQ_LOGE("setAsyncMode: BufferQueue has been abandoned");
189 return NO_INIT;
190 }
191
Pablo Ceballos245cc5b2016-04-19 11:33:00 -0700192 if (async == mCore->mAsyncMode) {
193 return NO_ERROR;
194 }
195
Pablo Ceballos19e3e062015-08-19 16:16:06 -0700196 if ((mCore->mMaxAcquiredBufferCount + mCore->mMaxDequeuedBufferCount +
Pablo Ceballos567dbbb2015-08-26 18:59:08 -0700197 (async || mCore->mDequeueBufferCannotBlock ? 1 : 0)) >
198 mCore->mMaxBufferCount) {
Pablo Ceballos19e3e062015-08-19 16:16:06 -0700199 BQ_LOGE("setAsyncMode(%d): this call would cause the "
200 "maxBufferCount (%d) to be exceeded (maxAcquired %d "
Pablo Ceballos567dbbb2015-08-26 18:59:08 -0700201 "maxDequeued %d mDequeueBufferCannotBlock %d)", async,
202 mCore->mMaxBufferCount, mCore->mMaxAcquiredBufferCount,
203 mCore->mMaxDequeuedBufferCount,
204 mCore->mDequeueBufferCannotBlock);
Pablo Ceballos19e3e062015-08-19 16:16:06 -0700205 return BAD_VALUE;
206 }
207
Pablo Ceballos23b4abe2016-01-08 12:15:22 -0800208 int delta = mCore->getMaxBufferCountLocked(async,
209 mCore->mDequeueBufferCannotBlock, mCore->mMaxBufferCount)
210 - mCore->getMaxBufferCountLocked();
211
Pablo Ceballos981066c2016-02-18 12:54:37 -0800212 if (!mCore->adjustAvailableSlotsLocked(delta)) {
Pablo Ceballos23b4abe2016-01-08 12:15:22 -0800213 BQ_LOGE("setAsyncMode: BufferQueue failed to adjust the number of "
214 "available slots. Delta = %d", delta);
215 return BAD_VALUE;
216 }
Pablo Ceballosfa455352015-08-12 17:47:47 -0700217 mCore->mAsyncMode = async;
Pablo Ceballos9e314332016-01-12 13:49:19 -0800218 VALIDATE_CONSISTENCY();
Jorim Jaggi6ae55032019-04-02 02:27:44 +0200219 mCore->mDequeueCondition.notify_all();
Pablo Ceballos245cc5b2016-04-19 11:33:00 -0700220 if (delta < 0) {
221 listener = mCore->mConsumerListener;
222 }
Pablo Ceballosfa455352015-08-12 17:47:47 -0700223 } // Autolock scope
224
225 // Call back without lock held
Yi Kong48a619f2018-06-05 16:34:59 -0700226 if (listener != nullptr) {
Pablo Ceballos981066c2016-02-18 12:54:37 -0800227 listener->onBuffersReleased();
Pablo Ceballosfa455352015-08-12 17:47:47 -0700228 }
229 return NO_ERROR;
230}
231
Dan Stoza5ecfb682016-01-04 17:01:02 -0800232int BufferQueueProducer::getFreeBufferLocked() const {
233 if (mCore->mFreeBuffers.empty()) {
234 return BufferQueueCore::INVALID_BUFFER_SLOT;
235 }
Pablo Ceballos23b4abe2016-01-08 12:15:22 -0800236 int slot = mCore->mFreeBuffers.front();
Dan Stoza5ecfb682016-01-04 17:01:02 -0800237 mCore->mFreeBuffers.pop_front();
238 return slot;
239}
240
Pablo Ceballos23b4abe2016-01-08 12:15:22 -0800241int BufferQueueProducer::getFreeSlotLocked() const {
Dan Stoza5ecfb682016-01-04 17:01:02 -0800242 if (mCore->mFreeSlots.empty()) {
243 return BufferQueueCore::INVALID_BUFFER_SLOT;
244 }
Pablo Ceballosdce5c552016-02-10 15:43:22 -0800245 int slot = *(mCore->mFreeSlots.begin());
Pablo Ceballos23b4abe2016-01-08 12:15:22 -0800246 mCore->mFreeSlots.erase(slot);
Pablo Ceballosdce5c552016-02-10 15:43:22 -0800247 return slot;
Dan Stoza5ecfb682016-01-04 17:01:02 -0800248}
249
250status_t BufferQueueProducer::waitForFreeSlotThenRelock(FreeSlotCaller caller,
Jorim Jaggi6ae55032019-04-02 02:27:44 +0200251 std::unique_lock<std::mutex>& lock, int* found) const {
Dan Stoza5ecfb682016-01-04 17:01:02 -0800252 auto callerString = (caller == FreeSlotCaller::Dequeue) ?
253 "dequeueBuffer" : "attachBuffer";
Dan Stoza9f3053d2014-03-06 15:14:33 -0800254 bool tryAgain = true;
255 while (tryAgain) {
256 if (mCore->mIsAbandoned) {
Dan Stoza5ecfb682016-01-04 17:01:02 -0800257 BQ_LOGE("%s: BufferQueue has been abandoned", callerString);
Dan Stoza9f3053d2014-03-06 15:14:33 -0800258 return NO_INIT;
259 }
260
Dan Stoza9f3053d2014-03-06 15:14:33 -0800261 int dequeuedCount = 0;
262 int acquiredCount = 0;
Pablo Ceballos23b4abe2016-01-08 12:15:22 -0800263 for (int s : mCore->mActiveBuffers) {
Pablo Ceballosccdfd602015-10-07 15:05:45 -0700264 if (mSlots[s].mBufferState.isDequeued()) {
265 ++dequeuedCount;
266 }
267 if (mSlots[s].mBufferState.isAcquired()) {
268 ++acquiredCount;
Dan Stoza9f3053d2014-03-06 15:14:33 -0800269 }
270 }
271
Pablo Ceballose5b755a2015-08-13 16:18:19 -0700272 // Producers are not allowed to dequeue more than
273 // mMaxDequeuedBufferCount buffers.
274 // This check is only done if a buffer has already been queued
275 if (mCore->mBufferHasBeenQueued &&
276 dequeuedCount >= mCore->mMaxDequeuedBufferCount) {
Sungtak Leeaf141242019-04-24 16:36:44 -0700277 // Supress error logs when timeout is non-negative.
278 if (mDequeueTimeout < 0) {
279 BQ_LOGE("%s: attempting to exceed the max dequeued buffer "
280 "count (%d)", callerString,
281 mCore->mMaxDequeuedBufferCount);
282 }
Dan Stoza9f3053d2014-03-06 15:14:33 -0800283 return INVALID_OPERATION;
284 }
285
Dan Stoza0de7ea72015-04-23 13:20:51 -0700286 *found = BufferQueueCore::INVALID_BUFFER_SLOT;
287
Dan Stozaae3c3682014-04-18 15:43:35 -0700288 // If we disconnect and reconnect quickly, we can be in a state where
289 // our slots are empty but we have many buffers in the queue. This can
290 // cause us to run out of memory if we outrun the consumer. Wait here if
291 // it looks like we have too many buffers queued up.
Pablo Ceballos23b4abe2016-01-08 12:15:22 -0800292 const int maxBufferCount = mCore->getMaxBufferCountLocked();
Mark Salyzyn8f515ce2014-06-09 14:32:04 -0700293 bool tooManyBuffers = mCore->mQueue.size()
294 > static_cast<size_t>(maxBufferCount);
Dan Stozaae3c3682014-04-18 15:43:35 -0700295 if (tooManyBuffers) {
Dan Stoza5ecfb682016-01-04 17:01:02 -0800296 BQ_LOGV("%s: queue size is %zu, waiting", callerString,
Dan Stozaae3c3682014-04-18 15:43:35 -0700297 mCore->mQueue.size());
Dan Stoza0de7ea72015-04-23 13:20:51 -0700298 } else {
Pablo Ceballos3559fbf2016-03-17 15:50:23 -0700299 // If in shared buffer mode and a shared buffer exists, always
Pablo Ceballosccdfd602015-10-07 15:05:45 -0700300 // return it.
Pablo Ceballos3559fbf2016-03-17 15:50:23 -0700301 if (mCore->mSharedBufferMode && mCore->mSharedBufferSlot !=
Pablo Ceballosccdfd602015-10-07 15:05:45 -0700302 BufferQueueCore::INVALID_BUFFER_SLOT) {
Pablo Ceballos3559fbf2016-03-17 15:50:23 -0700303 *found = mCore->mSharedBufferSlot;
Dan Stoza5ecfb682016-01-04 17:01:02 -0800304 } else {
305 if (caller == FreeSlotCaller::Dequeue) {
306 // If we're calling this from dequeue, prefer free buffers
Pablo Ceballos23b4abe2016-01-08 12:15:22 -0800307 int slot = getFreeBufferLocked();
Dan Stoza5ecfb682016-01-04 17:01:02 -0800308 if (slot != BufferQueueCore::INVALID_BUFFER_SLOT) {
309 *found = slot;
310 } else if (mCore->mAllowAllocation) {
Pablo Ceballos23b4abe2016-01-08 12:15:22 -0800311 *found = getFreeSlotLocked();
Dan Stoza5ecfb682016-01-04 17:01:02 -0800312 }
313 } else {
314 // If we're calling this from attach, prefer free slots
Pablo Ceballos23b4abe2016-01-08 12:15:22 -0800315 int slot = getFreeSlotLocked();
Dan Stoza5ecfb682016-01-04 17:01:02 -0800316 if (slot != BufferQueueCore::INVALID_BUFFER_SLOT) {
317 *found = slot;
318 } else {
319 *found = getFreeBufferLocked();
320 }
Dan Stoza0de7ea72015-04-23 13:20:51 -0700321 }
322 }
Dan Stozaae3c3682014-04-18 15:43:35 -0700323 }
324
325 // If no buffer is found, or if the queue has too many buffers
326 // outstanding, wait for a buffer to be acquired or released, or for the
327 // max buffer count to change.
328 tryAgain = (*found == BufferQueueCore::INVALID_BUFFER_SLOT) ||
329 tooManyBuffers;
Dan Stoza9f3053d2014-03-06 15:14:33 -0800330 if (tryAgain) {
331 // Return an error if we're in non-blocking mode (producer and
332 // consumer are controlled by the application).
333 // However, the consumer is allowed to briefly acquire an extra
334 // buffer (which could cause us to have to wait here), which is
335 // okay, since it is only used to implement an atomic acquire +
336 // release (e.g., in GLConsumer::updateTexImage())
Pablo Ceballosfa455352015-08-12 17:47:47 -0700337 if ((mCore->mDequeueBufferCannotBlock || mCore->mAsyncMode) &&
Dan Stoza9f3053d2014-03-06 15:14:33 -0800338 (acquiredCount <= mCore->mMaxAcquiredBufferCount)) {
339 return WOULD_BLOCK;
340 }
Dan Stoza127fc632015-06-30 13:43:32 -0700341 if (mDequeueTimeout >= 0) {
Jorim Jaggi6ae55032019-04-02 02:27:44 +0200342 std::cv_status result = mCore->mDequeueCondition.wait_for(lock,
343 std::chrono::nanoseconds(mDequeueTimeout));
344 if (result == std::cv_status::timeout) {
345 return TIMED_OUT;
Dan Stoza127fc632015-06-30 13:43:32 -0700346 }
347 } else {
Jorim Jaggi6ae55032019-04-02 02:27:44 +0200348 mCore->mDequeueCondition.wait(lock);
Dan Stoza127fc632015-06-30 13:43:32 -0700349 }
Dan Stoza9f3053d2014-03-06 15:14:33 -0800350 }
351 } // while (tryAgain)
352
353 return NO_ERROR;
354}
355
Ian Elliottd11b0442017-07-18 11:05:49 -0600356status_t BufferQueueProducer::dequeueBuffer(int* outSlot, sp<android::Fence>* outFence,
357 uint32_t width, uint32_t height, PixelFormat format,
358 uint64_t usage, uint64_t* outBufferAge,
359 FrameEventHistoryDelta* outTimestamps) {
Dan Stoza289ade12014-02-28 11:17:17 -0800360 ATRACE_CALL();
361 { // Autolock scope
Jorim Jaggi6ae55032019-04-02 02:27:44 +0200362 std::lock_guard<std::mutex> lock(mCore->mMutex);
Dan Stoza289ade12014-02-28 11:17:17 -0800363 mConsumerName = mCore->mConsumerName;
Pablo Ceballos583b1b32015-09-03 18:23:52 -0700364
365 if (mCore->mIsAbandoned) {
366 BQ_LOGE("dequeueBuffer: BufferQueue has been abandoned");
367 return NO_INIT;
368 }
369
370 if (mCore->mConnectedApi == BufferQueueCore::NO_CONNECTED_API) {
371 BQ_LOGE("dequeueBuffer: BufferQueue has no connected producer");
372 return NO_INIT;
373 }
Dan Stoza289ade12014-02-28 11:17:17 -0800374 } // Autolock scope
375
Mathias Agopiancb496ac2017-05-22 14:21:00 -0700376 BQ_LOGV("dequeueBuffer: w=%u h=%u format=%#x, usage=%#" PRIx64, width, height, format, usage);
Dan Stoza289ade12014-02-28 11:17:17 -0800377
378 if ((width && !height) || (!width && height)) {
379 BQ_LOGE("dequeueBuffer: invalid size: w=%u h=%u", width, height);
380 return BAD_VALUE;
381 }
382
383 status_t returnFlags = NO_ERROR;
384 EGLDisplay eglDisplay = EGL_NO_DISPLAY;
385 EGLSyncKHR eglFence = EGL_NO_SYNC_KHR;
Dan Stoza9f3053d2014-03-06 15:14:33 -0800386 bool attachedByConsumer = false;
Dan Stoza289ade12014-02-28 11:17:17 -0800387
388 { // Autolock scope
Jorim Jaggi6ae55032019-04-02 02:27:44 +0200389 std::unique_lock<std::mutex> lock(mCore->mMutex);
Dan Stoza289ade12014-02-28 11:17:17 -0800390
Jorim Jaggi35b4e382019-03-28 00:44:03 +0100391 // If we don't have a free buffer, but we are currently allocating, we wait until allocation
392 // is finished such that we don't allocate in parallel.
393 if (mCore->mFreeBuffers.empty() && mCore->mIsAllocating) {
394 mDequeueWaitingForAllocation = true;
395 mCore->waitWhileAllocatingLocked(lock);
396 mDequeueWaitingForAllocation = false;
397 mDequeueWaitingForAllocationCondition.notify_all();
398 }
Dan Stoza289ade12014-02-28 11:17:17 -0800399
400 if (format == 0) {
401 format = mCore->mDefaultBufferFormat;
402 }
403
404 // Enable the usage bits the consumer requested
405 usage |= mCore->mConsumerUsageBits;
406
Dan Stoza9de72932015-04-16 17:28:43 -0700407 const bool useDefaultSize = !width && !height;
408 if (useDefaultSize) {
409 width = mCore->mDefaultWidth;
410 height = mCore->mDefaultHeight;
Dan Stoza9f3053d2014-03-06 15:14:33 -0800411 }
Dan Stoza289ade12014-02-28 11:17:17 -0800412
Pablo Ceballos981066c2016-02-18 12:54:37 -0800413 int found = BufferItem::INVALID_BUFFER_SLOT;
Dan Stoza9de72932015-04-16 17:28:43 -0700414 while (found == BufferItem::INVALID_BUFFER_SLOT) {
Jorim Jaggi6ae55032019-04-02 02:27:44 +0200415 status_t status = waitForFreeSlotThenRelock(FreeSlotCaller::Dequeue, lock, &found);
Dan Stoza9de72932015-04-16 17:28:43 -0700416 if (status != NO_ERROR) {
417 return status;
418 }
419
420 // This should not happen
421 if (found == BufferQueueCore::INVALID_BUFFER_SLOT) {
422 BQ_LOGE("dequeueBuffer: no available buffer slots");
423 return -EBUSY;
424 }
425
426 const sp<GraphicBuffer>& buffer(mSlots[found].mGraphicBuffer);
427
428 // If we are not allowed to allocate new buffers,
429 // waitForFreeSlotThenRelock must have returned a slot containing a
430 // buffer. If this buffer would require reallocation to meet the
431 // requested attributes, we free it and attempt to get another one.
432 if (!mCore->mAllowAllocation) {
Mathias Agopiancb496ac2017-05-22 14:21:00 -0700433 if (buffer->needsReallocation(width, height, format, BQ_LAYER_COUNT, usage)) {
Pablo Ceballos3559fbf2016-03-17 15:50:23 -0700434 if (mCore->mSharedBufferSlot == found) {
Mathias Agopiancb496ac2017-05-22 14:21:00 -0700435 BQ_LOGE("dequeueBuffer: cannot re-allocate a sharedbuffer");
Pablo Ceballosccdfd602015-10-07 15:05:45 -0700436 return BAD_VALUE;
437 }
Pablo Ceballos23b4abe2016-01-08 12:15:22 -0800438 mCore->mFreeSlots.insert(found);
439 mCore->clearBufferSlotLocked(found);
Dan Stoza9de72932015-04-16 17:28:43 -0700440 found = BufferItem::INVALID_BUFFER_SLOT;
441 continue;
442 }
443 }
Dan Stoza289ade12014-02-28 11:17:17 -0800444 }
445
Pablo Ceballos23b4abe2016-01-08 12:15:22 -0800446 const sp<GraphicBuffer>& buffer(mSlots[found].mGraphicBuffer);
Pablo Ceballos3559fbf2016-03-17 15:50:23 -0700447 if (mCore->mSharedBufferSlot == found &&
Mathias Agopiancb496ac2017-05-22 14:21:00 -0700448 buffer->needsReallocation(width, height, format, BQ_LAYER_COUNT, usage)) {
Pablo Ceballos23b4abe2016-01-08 12:15:22 -0800449 BQ_LOGE("dequeueBuffer: cannot re-allocate a shared"
450 "buffer");
451
452 return BAD_VALUE;
453 }
454
Pablo Ceballos3559fbf2016-03-17 15:50:23 -0700455 if (mCore->mSharedBufferSlot != found) {
Pablo Ceballos23b4abe2016-01-08 12:15:22 -0800456 mCore->mActiveBuffers.insert(found);
457 }
Dan Stoza289ade12014-02-28 11:17:17 -0800458 *outSlot = found;
459 ATRACE_BUFFER_INDEX(found);
460
Pablo Ceballos23b4abe2016-01-08 12:15:22 -0800461 attachedByConsumer = mSlots[found].mNeedsReallocation;
462 mSlots[found].mNeedsReallocation = false;
Dan Stoza9f3053d2014-03-06 15:14:33 -0800463
Pablo Ceballosccdfd602015-10-07 15:05:45 -0700464 mSlots[found].mBufferState.dequeue();
465
Yi Kong48a619f2018-06-05 16:34:59 -0700466 if ((buffer == nullptr) ||
Mathias Agopian0556d792017-03-22 15:49:32 -0700467 buffer->needsReallocation(width, height, format, BQ_LAYER_COUNT, usage))
Dan Stoza289ade12014-02-28 11:17:17 -0800468 {
469 mSlots[found].mAcquireCalled = false;
Yi Kong48a619f2018-06-05 16:34:59 -0700470 mSlots[found].mGraphicBuffer = nullptr;
Dan Stoza289ade12014-02-28 11:17:17 -0800471 mSlots[found].mRequestBufferCalled = false;
472 mSlots[found].mEglDisplay = EGL_NO_DISPLAY;
473 mSlots[found].mEglFence = EGL_NO_SYNC_KHR;
474 mSlots[found].mFence = Fence::NO_FENCE;
Dan Stoza4afd8b62015-02-25 16:49:08 -0800475 mCore->mBufferAge = 0;
Pablo Ceballosccdfd602015-10-07 15:05:45 -0700476 mCore->mIsAllocating = true;
Dan Stoza289ade12014-02-28 11:17:17 -0800477
478 returnFlags |= BUFFER_NEEDS_REALLOCATION;
Dan Stoza4afd8b62015-02-25 16:49:08 -0800479 } else {
480 // We add 1 because that will be the frame number when this buffer
481 // is queued
Mathias Agopiancb496ac2017-05-22 14:21:00 -0700482 mCore->mBufferAge = mCore->mFrameCounter + 1 - mSlots[found].mFrameNumber;
Dan Stoza289ade12014-02-28 11:17:17 -0800483 }
484
Dan Stoza800b41a2015-04-28 14:20:04 -0700485 BQ_LOGV("dequeueBuffer: setting buffer age to %" PRIu64,
486 mCore->mBufferAge);
Dan Stoza4afd8b62015-02-25 16:49:08 -0800487
Yi Kong48a619f2018-06-05 16:34:59 -0700488 if (CC_UNLIKELY(mSlots[found].mFence == nullptr)) {
Dan Stoza289ade12014-02-28 11:17:17 -0800489 BQ_LOGE("dequeueBuffer: about to return a NULL fence - "
490 "slot=%d w=%d h=%d format=%u",
491 found, buffer->width, buffer->height, buffer->format);
492 }
493
494 eglDisplay = mSlots[found].mEglDisplay;
495 eglFence = mSlots[found].mEglFence;
Pablo Ceballos28c65ad2016-06-01 15:03:21 -0700496 // Don't return a fence in shared buffer mode, except for the first
497 // frame.
498 *outFence = (mCore->mSharedBufferMode &&
499 mCore->mSharedBufferSlot == found) ?
500 Fence::NO_FENCE : mSlots[found].mFence;
Dan Stoza289ade12014-02-28 11:17:17 -0800501 mSlots[found].mEglFence = EGL_NO_SYNC_KHR;
502 mSlots[found].mFence = Fence::NO_FENCE;
Pablo Ceballos28c65ad2016-06-01 15:03:21 -0700503
504 // If shared buffer mode has just been enabled, cache the slot of the
505 // first buffer that is dequeued and mark it as the shared buffer.
506 if (mCore->mSharedBufferMode && mCore->mSharedBufferSlot ==
507 BufferQueueCore::INVALID_BUFFER_SLOT) {
508 mCore->mSharedBufferSlot = found;
509 mSlots[found].mBufferState.mShared = true;
510 }
Dan Stoza289ade12014-02-28 11:17:17 -0800511 } // Autolock scope
512
513 if (returnFlags & BUFFER_NEEDS_REALLOCATION) {
Dan Stoza29a3e902014-06-20 13:13:57 -0700514 BQ_LOGV("dequeueBuffer: allocating a new buffer for slot %d", *outSlot);
Mathias Agopian0556d792017-03-22 15:49:32 -0700515 sp<GraphicBuffer> graphicBuffer = new GraphicBuffer(
Chris Forbesf3ef3ea2017-04-20 12:43:28 -0700516 width, height, format, BQ_LAYER_COUNT, usage,
Mathias Agopian0556d792017-03-22 15:49:32 -0700517 {mConsumerName.string(), mConsumerName.size()});
518
519 status_t error = graphicBuffer->initCheck();
520
Dan Stoza289ade12014-02-28 11:17:17 -0800521 { // Autolock scope
Jorim Jaggi6ae55032019-04-02 02:27:44 +0200522 std::lock_guard<std::mutex> lock(mCore->mMutex);
Dan Stoza289ade12014-02-28 11:17:17 -0800523
Chia-I Wufeec3b12017-05-25 09:34:56 -0700524 if (error == NO_ERROR && !mCore->mIsAbandoned) {
Pablo Ceballosccdfd602015-10-07 15:05:45 -0700525 graphicBuffer->setGenerationNumber(mCore->mGenerationNumber);
526 mSlots[*outSlot].mGraphicBuffer = graphicBuffer;
527 }
528
529 mCore->mIsAllocating = false;
Jorim Jaggi6ae55032019-04-02 02:27:44 +0200530 mCore->mIsAllocatingCondition.notify_all();
Pablo Ceballosccdfd602015-10-07 15:05:45 -0700531
Chia-I Wufeec3b12017-05-25 09:34:56 -0700532 if (error != NO_ERROR) {
Pablo Ceballos0a068092016-06-29 15:08:33 -0700533 mCore->mFreeSlots.insert(*outSlot);
534 mCore->clearBufferSlotLocked(*outSlot);
Pablo Ceballosccdfd602015-10-07 15:05:45 -0700535 BQ_LOGE("dequeueBuffer: createGraphicBuffer failed");
536 return error;
537 }
538
Dan Stoza289ade12014-02-28 11:17:17 -0800539 if (mCore->mIsAbandoned) {
Pablo Ceballos0a068092016-06-29 15:08:33 -0700540 mCore->mFreeSlots.insert(*outSlot);
541 mCore->clearBufferSlotLocked(*outSlot);
Dan Stoza289ade12014-02-28 11:17:17 -0800542 BQ_LOGE("dequeueBuffer: BufferQueue has been abandoned");
543 return NO_INIT;
544 }
Pablo Ceballos23b4abe2016-01-08 12:15:22 -0800545
Pablo Ceballos9e314332016-01-12 13:49:19 -0800546 VALIDATE_CONSISTENCY();
Dan Stoza289ade12014-02-28 11:17:17 -0800547 } // Autolock scope
548 }
549
Dan Stoza9f3053d2014-03-06 15:14:33 -0800550 if (attachedByConsumer) {
551 returnFlags |= BUFFER_NEEDS_REALLOCATION;
552 }
553
Dan Stoza289ade12014-02-28 11:17:17 -0800554 if (eglFence != EGL_NO_SYNC_KHR) {
555 EGLint result = eglClientWaitSyncKHR(eglDisplay, eglFence, 0,
556 1000000000);
557 // If something goes wrong, log the error, but return the buffer without
558 // synchronizing access to it. It's too late at this point to abort the
559 // dequeue operation.
560 if (result == EGL_FALSE) {
561 BQ_LOGE("dequeueBuffer: error %#x waiting for fence",
562 eglGetError());
563 } else if (result == EGL_TIMEOUT_EXPIRED_KHR) {
564 BQ_LOGE("dequeueBuffer: timeout waiting for fence");
565 }
566 eglDestroySyncKHR(eglDisplay, eglFence);
567 }
568
Mark Salyzyn8f515ce2014-06-09 14:32:04 -0700569 BQ_LOGV("dequeueBuffer: returning slot=%d/%" PRIu64 " buf=%p flags=%#x",
570 *outSlot,
Dan Stoza289ade12014-02-28 11:17:17 -0800571 mSlots[*outSlot].mFrameNumber,
572 mSlots[*outSlot].mGraphicBuffer->handle, returnFlags);
573
Ian Elliottd11b0442017-07-18 11:05:49 -0600574 if (outBufferAge) {
575 *outBufferAge = mCore->mBufferAge;
576 }
Brian Anderson7c3ba8a2016-07-25 12:48:08 -0700577 addAndGetFrameTimestamps(nullptr, outTimestamps);
578
Dan Stoza289ade12014-02-28 11:17:17 -0800579 return returnFlags;
580}
581
Dan Stoza9f3053d2014-03-06 15:14:33 -0800582status_t BufferQueueProducer::detachBuffer(int slot) {
583 ATRACE_CALL();
584 ATRACE_BUFFER_INDEX(slot);
Pablo Ceballosccdfd602015-10-07 15:05:45 -0700585 BQ_LOGV("detachBuffer: slot %d", slot);
Dan Stoza9f3053d2014-03-06 15:14:33 -0800586
Eino-Ville Talvala93dd0512016-06-10 14:21:02 -0700587 sp<IConsumerListener> listener;
588 {
Jorim Jaggi6ae55032019-04-02 02:27:44 +0200589 std::lock_guard<std::mutex> lock(mCore->mMutex);
Eino-Ville Talvala93dd0512016-06-10 14:21:02 -0700590
591 if (mCore->mIsAbandoned) {
592 BQ_LOGE("detachBuffer: BufferQueue has been abandoned");
593 return NO_INIT;
594 }
595
596 if (mCore->mConnectedApi == BufferQueueCore::NO_CONNECTED_API) {
597 BQ_LOGE("detachBuffer: BufferQueue has no connected producer");
598 return NO_INIT;
599 }
600
601 if (mCore->mSharedBufferMode || mCore->mSharedBufferSlot == slot) {
602 BQ_LOGE("detachBuffer: cannot detach a buffer in shared buffer mode");
603 return BAD_VALUE;
604 }
605
606 if (slot < 0 || slot >= BufferQueueDefs::NUM_BUFFER_SLOTS) {
607 BQ_LOGE("detachBuffer: slot index %d out of range [0, %d)",
608 slot, BufferQueueDefs::NUM_BUFFER_SLOTS);
609 return BAD_VALUE;
610 } else if (!mSlots[slot].mBufferState.isDequeued()) {
611 BQ_LOGE("detachBuffer: slot %d is not owned by the producer "
612 "(state = %s)", slot, mSlots[slot].mBufferState.string());
613 return BAD_VALUE;
614 } else if (!mSlots[slot].mRequestBufferCalled) {
615 BQ_LOGE("detachBuffer: buffer in slot %d has not been requested",
616 slot);
617 return BAD_VALUE;
618 }
619
620 mSlots[slot].mBufferState.detachProducer();
621 mCore->mActiveBuffers.erase(slot);
622 mCore->mFreeSlots.insert(slot);
623 mCore->clearBufferSlotLocked(slot);
Jorim Jaggi6ae55032019-04-02 02:27:44 +0200624 mCore->mDequeueCondition.notify_all();
Eino-Ville Talvala93dd0512016-06-10 14:21:02 -0700625 VALIDATE_CONSISTENCY();
626 listener = mCore->mConsumerListener;
Dan Stoza9f3053d2014-03-06 15:14:33 -0800627 }
628
Yi Kong48a619f2018-06-05 16:34:59 -0700629 if (listener != nullptr) {
Eino-Ville Talvala93dd0512016-06-10 14:21:02 -0700630 listener->onBuffersReleased();
Pablo Ceballos583b1b32015-09-03 18:23:52 -0700631 }
Pablo Ceballos981066c2016-02-18 12:54:37 -0800632
Dan Stoza9f3053d2014-03-06 15:14:33 -0800633 return NO_ERROR;
634}
635
Dan Stozad9822a32014-03-28 15:25:31 -0700636status_t BufferQueueProducer::detachNextBuffer(sp<GraphicBuffer>* outBuffer,
637 sp<Fence>* outFence) {
638 ATRACE_CALL();
639
Yi Kong48a619f2018-06-05 16:34:59 -0700640 if (outBuffer == nullptr) {
Dan Stozad9822a32014-03-28 15:25:31 -0700641 BQ_LOGE("detachNextBuffer: outBuffer must not be NULL");
642 return BAD_VALUE;
Yi Kong48a619f2018-06-05 16:34:59 -0700643 } else if (outFence == nullptr) {
Dan Stozad9822a32014-03-28 15:25:31 -0700644 BQ_LOGE("detachNextBuffer: outFence must not be NULL");
645 return BAD_VALUE;
646 }
647
Eino-Ville Talvala2672dec2017-06-13 16:39:11 -0700648 sp<IConsumerListener> listener;
649 {
Jorim Jaggi6ae55032019-04-02 02:27:44 +0200650 std::unique_lock<std::mutex> lock(mCore->mMutex);
Dan Stozad9822a32014-03-28 15:25:31 -0700651
Eino-Ville Talvala2672dec2017-06-13 16:39:11 -0700652 if (mCore->mIsAbandoned) {
653 BQ_LOGE("detachNextBuffer: BufferQueue has been abandoned");
654 return NO_INIT;
655 }
656
657 if (mCore->mConnectedApi == BufferQueueCore::NO_CONNECTED_API) {
658 BQ_LOGE("detachNextBuffer: BufferQueue has no connected producer");
659 return NO_INIT;
660 }
661
662 if (mCore->mSharedBufferMode) {
663 BQ_LOGE("detachNextBuffer: cannot detach a buffer in shared buffer "
664 "mode");
665 return BAD_VALUE;
666 }
667
Jorim Jaggi6ae55032019-04-02 02:27:44 +0200668 mCore->waitWhileAllocatingLocked(lock);
Eino-Ville Talvala2672dec2017-06-13 16:39:11 -0700669
670 if (mCore->mFreeBuffers.empty()) {
671 return NO_MEMORY;
672 }
673
674 int found = mCore->mFreeBuffers.front();
675 mCore->mFreeBuffers.remove(found);
676 mCore->mFreeSlots.insert(found);
677
678 BQ_LOGV("detachNextBuffer detached slot %d", found);
679
680 *outBuffer = mSlots[found].mGraphicBuffer;
681 *outFence = mSlots[found].mFence;
682 mCore->clearBufferSlotLocked(found);
683 VALIDATE_CONSISTENCY();
684 listener = mCore->mConsumerListener;
Dan Stozad9822a32014-03-28 15:25:31 -0700685 }
686
Yi Kong48a619f2018-06-05 16:34:59 -0700687 if (listener != nullptr) {
Eino-Ville Talvala2672dec2017-06-13 16:39:11 -0700688 listener->onBuffersReleased();
Pablo Ceballos583b1b32015-09-03 18:23:52 -0700689 }
Pablo Ceballos981066c2016-02-18 12:54:37 -0800690
Dan Stozad9822a32014-03-28 15:25:31 -0700691 return NO_ERROR;
692}
693
Dan Stoza9f3053d2014-03-06 15:14:33 -0800694status_t BufferQueueProducer::attachBuffer(int* outSlot,
695 const sp<android::GraphicBuffer>& buffer) {
696 ATRACE_CALL();
697
Yi Kong48a619f2018-06-05 16:34:59 -0700698 if (outSlot == nullptr) {
Pablo Ceballosccdfd602015-10-07 15:05:45 -0700699 BQ_LOGE("attachBuffer: outSlot must not be NULL");
Dan Stoza9f3053d2014-03-06 15:14:33 -0800700 return BAD_VALUE;
Yi Kong48a619f2018-06-05 16:34:59 -0700701 } else if (buffer == nullptr) {
Pablo Ceballosccdfd602015-10-07 15:05:45 -0700702 BQ_LOGE("attachBuffer: cannot attach NULL buffer");
Dan Stoza9f3053d2014-03-06 15:14:33 -0800703 return BAD_VALUE;
704 }
705
Jorim Jaggi6ae55032019-04-02 02:27:44 +0200706 std::unique_lock<std::mutex> lock(mCore->mMutex);
Pablo Ceballos583b1b32015-09-03 18:23:52 -0700707
708 if (mCore->mIsAbandoned) {
Pablo Ceballosccdfd602015-10-07 15:05:45 -0700709 BQ_LOGE("attachBuffer: BufferQueue has been abandoned");
Pablo Ceballos583b1b32015-09-03 18:23:52 -0700710 return NO_INIT;
711 }
712
713 if (mCore->mConnectedApi == BufferQueueCore::NO_CONNECTED_API) {
Pablo Ceballosccdfd602015-10-07 15:05:45 -0700714 BQ_LOGE("attachBuffer: BufferQueue has no connected producer");
Pablo Ceballos583b1b32015-09-03 18:23:52 -0700715 return NO_INIT;
716 }
Dan Stoza9f3053d2014-03-06 15:14:33 -0800717
Pablo Ceballos3559fbf2016-03-17 15:50:23 -0700718 if (mCore->mSharedBufferMode) {
719 BQ_LOGE("attachBuffer: cannot attach a buffer in shared buffer mode");
Pablo Ceballosccdfd602015-10-07 15:05:45 -0700720 return BAD_VALUE;
721 }
722
Dan Stoza812ed062015-06-02 15:45:22 -0700723 if (buffer->getGenerationNumber() != mCore->mGenerationNumber) {
724 BQ_LOGE("attachBuffer: generation number mismatch [buffer %u] "
725 "[queue %u]", buffer->getGenerationNumber(),
726 mCore->mGenerationNumber);
727 return BAD_VALUE;
728 }
729
Jorim Jaggi6ae55032019-04-02 02:27:44 +0200730 mCore->waitWhileAllocatingLocked(lock);
Pablo Ceballos583b1b32015-09-03 18:23:52 -0700731
Dan Stoza9f3053d2014-03-06 15:14:33 -0800732 status_t returnFlags = NO_ERROR;
733 int found;
Jorim Jaggi6ae55032019-04-02 02:27:44 +0200734 status_t status = waitForFreeSlotThenRelock(FreeSlotCaller::Attach, lock, &found);
Dan Stoza9f3053d2014-03-06 15:14:33 -0800735 if (status != NO_ERROR) {
736 return status;
737 }
738
739 // This should not happen
740 if (found == BufferQueueCore::INVALID_BUFFER_SLOT) {
Pablo Ceballosccdfd602015-10-07 15:05:45 -0700741 BQ_LOGE("attachBuffer: no available buffer slots");
Dan Stoza9f3053d2014-03-06 15:14:33 -0800742 return -EBUSY;
743 }
744
745 *outSlot = found;
746 ATRACE_BUFFER_INDEX(*outSlot);
Pablo Ceballosccdfd602015-10-07 15:05:45 -0700747 BQ_LOGV("attachBuffer: returning slot %d flags=%#x",
Dan Stoza9f3053d2014-03-06 15:14:33 -0800748 *outSlot, returnFlags);
749
750 mSlots[*outSlot].mGraphicBuffer = buffer;
Pablo Ceballosccdfd602015-10-07 15:05:45 -0700751 mSlots[*outSlot].mBufferState.attachProducer();
Dan Stoza9f3053d2014-03-06 15:14:33 -0800752 mSlots[*outSlot].mEglFence = EGL_NO_SYNC_KHR;
753 mSlots[*outSlot].mFence = Fence::NO_FENCE;
Dan Stoza2443c792014-03-24 15:03:46 -0700754 mSlots[*outSlot].mRequestBufferCalled = true;
Pablo Ceballos23b4abe2016-01-08 12:15:22 -0800755 mSlots[*outSlot].mAcquireCalled = false;
Jammy Yu69958b82017-02-22 16:41:38 -0800756 mSlots[*outSlot].mNeedsReallocation = false;
Pablo Ceballos23b4abe2016-01-08 12:15:22 -0800757 mCore->mActiveBuffers.insert(found);
Pablo Ceballos9e314332016-01-12 13:49:19 -0800758 VALIDATE_CONSISTENCY();
Dan Stoza0de7ea72015-04-23 13:20:51 -0700759
Dan Stoza9f3053d2014-03-06 15:14:33 -0800760 return returnFlags;
761}
762
Dan Stoza289ade12014-02-28 11:17:17 -0800763status_t BufferQueueProducer::queueBuffer(int slot,
764 const QueueBufferInput &input, QueueBufferOutput *output) {
765 ATRACE_CALL();
766 ATRACE_BUFFER_INDEX(slot);
767
Brian Andersond6927fb2016-07-23 23:37:30 -0700768 int64_t requestedPresentTimestamp;
Dan Stoza289ade12014-02-28 11:17:17 -0800769 bool isAutoTimestamp;
Eino-Ville Talvala82c6bcc2015-02-19 16:10:43 -0800770 android_dataspace dataSpace;
Pablo Ceballos60d69222015-08-07 14:47:20 -0700771 Rect crop(Rect::EMPTY_RECT);
Dan Stoza289ade12014-02-28 11:17:17 -0800772 int scalingMode;
773 uint32_t transform;
Ruben Brunk1681d952014-06-27 15:51:55 -0700774 uint32_t stickyTransform;
Brian Andersond6927fb2016-07-23 23:37:30 -0700775 sp<Fence> acquireFence;
Brian Anderson7c3ba8a2016-07-25 12:48:08 -0700776 bool getFrameTimestamps = false;
Brian Andersond6927fb2016-07-23 23:37:30 -0700777 input.deflate(&requestedPresentTimestamp, &isAutoTimestamp, &dataSpace,
Brian Anderson7c3ba8a2016-07-25 12:48:08 -0700778 &crop, &scalingMode, &transform, &acquireFence, &stickyTransform,
779 &getFrameTimestamps);
Chih-Hung Hsiehcb057c22017-08-03 15:48:25 -0700780 const Region& surfaceDamage = input.getSurfaceDamage();
Courtney Goeltzenleuchter9bad0d72017-12-19 12:34:34 -0700781 const HdrMetadata& hdrMetadata = input.getHdrMetadata();
Dan Stoza289ade12014-02-28 11:17:17 -0800782
Yi Kong48a619f2018-06-05 16:34:59 -0700783 if (acquireFence == nullptr) {
Dan Stoza289ade12014-02-28 11:17:17 -0800784 BQ_LOGE("queueBuffer: fence is NULL");
Jesse Hallde288fe2014-11-04 08:30:48 -0800785 return BAD_VALUE;
Dan Stoza289ade12014-02-28 11:17:17 -0800786 }
787
Brian Anderson3d4039d2016-09-23 16:31:30 -0700788 auto acquireFenceTime = std::make_shared<FenceTime>(acquireFence);
789
Dan Stoza289ade12014-02-28 11:17:17 -0800790 switch (scalingMode) {
791 case NATIVE_WINDOW_SCALING_MODE_FREEZE:
792 case NATIVE_WINDOW_SCALING_MODE_SCALE_TO_WINDOW:
793 case NATIVE_WINDOW_SCALING_MODE_SCALE_CROP:
794 case NATIVE_WINDOW_SCALING_MODE_NO_SCALE_CROP:
795 break;
796 default:
797 BQ_LOGE("queueBuffer: unknown scaling mode %d", scalingMode);
Dan Stoza9f3053d2014-03-06 15:14:33 -0800798 return BAD_VALUE;
Dan Stoza289ade12014-02-28 11:17:17 -0800799 }
800
Dan Stoza8dc55392014-11-04 11:37:46 -0800801 sp<IConsumerListener> frameAvailableListener;
802 sp<IConsumerListener> frameReplacedListener;
803 int callbackTicket = 0;
Brian Andersond6927fb2016-07-23 23:37:30 -0700804 uint64_t currentFrameNumber = 0;
Dan Stoza8dc55392014-11-04 11:37:46 -0800805 BufferItem item;
Dan Stoza289ade12014-02-28 11:17:17 -0800806 { // Autolock scope
Jorim Jaggi6ae55032019-04-02 02:27:44 +0200807 std::lock_guard<std::mutex> lock(mCore->mMutex);
Dan Stoza289ade12014-02-28 11:17:17 -0800808
809 if (mCore->mIsAbandoned) {
810 BQ_LOGE("queueBuffer: BufferQueue has been abandoned");
811 return NO_INIT;
812 }
813
Pablo Ceballos583b1b32015-09-03 18:23:52 -0700814 if (mCore->mConnectedApi == BufferQueueCore::NO_CONNECTED_API) {
815 BQ_LOGE("queueBuffer: BufferQueue has no connected producer");
816 return NO_INIT;
817 }
818
Pablo Ceballos23b4abe2016-01-08 12:15:22 -0800819 if (slot < 0 || slot >= BufferQueueDefs::NUM_BUFFER_SLOTS) {
Dan Stoza289ade12014-02-28 11:17:17 -0800820 BQ_LOGE("queueBuffer: slot index %d out of range [0, %d)",
Pablo Ceballos23b4abe2016-01-08 12:15:22 -0800821 slot, BufferQueueDefs::NUM_BUFFER_SLOTS);
Dan Stoza9f3053d2014-03-06 15:14:33 -0800822 return BAD_VALUE;
Pablo Ceballosccdfd602015-10-07 15:05:45 -0700823 } else if (!mSlots[slot].mBufferState.isDequeued()) {
Dan Stoza289ade12014-02-28 11:17:17 -0800824 BQ_LOGE("queueBuffer: slot %d is not owned by the producer "
Pablo Ceballosccdfd602015-10-07 15:05:45 -0700825 "(state = %s)", slot, mSlots[slot].mBufferState.string());
Dan Stoza9f3053d2014-03-06 15:14:33 -0800826 return BAD_VALUE;
Dan Stoza289ade12014-02-28 11:17:17 -0800827 } else if (!mSlots[slot].mRequestBufferCalled) {
828 BQ_LOGE("queueBuffer: slot %d was queued without requesting "
829 "a buffer", slot);
Dan Stoza9f3053d2014-03-06 15:14:33 -0800830 return BAD_VALUE;
Dan Stoza289ade12014-02-28 11:17:17 -0800831 }
832
Pablo Ceballos3559fbf2016-03-17 15:50:23 -0700833 // If shared buffer mode has just been enabled, cache the slot of the
Pablo Ceballos295a9fc2016-03-14 16:02:19 -0700834 // first buffer that is queued and mark it as the shared buffer.
Pablo Ceballos3559fbf2016-03-17 15:50:23 -0700835 if (mCore->mSharedBufferMode && mCore->mSharedBufferSlot ==
Pablo Ceballos295a9fc2016-03-14 16:02:19 -0700836 BufferQueueCore::INVALID_BUFFER_SLOT) {
Pablo Ceballos3559fbf2016-03-17 15:50:23 -0700837 mCore->mSharedBufferSlot = slot;
Pablo Ceballos295a9fc2016-03-14 16:02:19 -0700838 mSlots[slot].mBufferState.mShared = true;
839 }
840
Eino-Ville Talvala82c6bcc2015-02-19 16:10:43 -0800841 BQ_LOGV("queueBuffer: slot=%d/%" PRIu64 " time=%" PRIu64 " dataSpace=%d"
Courtney Goeltzenleuchter9bad0d72017-12-19 12:34:34 -0700842 " validHdrMetadataTypes=0x%x crop=[%d,%d,%d,%d] transform=%#x scale=%s",
843 slot, mCore->mFrameCounter + 1, requestedPresentTimestamp, dataSpace,
844 hdrMetadata.validTypes, crop.left, crop.top, crop.right, crop.bottom,
Brian Andersond6927fb2016-07-23 23:37:30 -0700845 transform,
Dan Stoza3be1c6b2014-11-18 10:24:03 -0800846 BufferItem::scalingModeName(static_cast<uint32_t>(scalingMode)));
Dan Stoza289ade12014-02-28 11:17:17 -0800847
848 const sp<GraphicBuffer>& graphicBuffer(mSlots[slot].mGraphicBuffer);
849 Rect bufferRect(graphicBuffer->getWidth(), graphicBuffer->getHeight());
Pablo Ceballos60d69222015-08-07 14:47:20 -0700850 Rect croppedRect(Rect::EMPTY_RECT);
Dan Stoza289ade12014-02-28 11:17:17 -0800851 crop.intersect(bufferRect, &croppedRect);
852 if (croppedRect != crop) {
853 BQ_LOGE("queueBuffer: crop rect is not contained within the "
854 "buffer in slot %d", slot);
Dan Stoza9f3053d2014-03-06 15:14:33 -0800855 return BAD_VALUE;
Dan Stoza289ade12014-02-28 11:17:17 -0800856 }
857
Eino-Ville Talvala82c6bcc2015-02-19 16:10:43 -0800858 // Override UNKNOWN dataspace with consumer default
859 if (dataSpace == HAL_DATASPACE_UNKNOWN) {
860 dataSpace = mCore->mDefaultBufferDataSpace;
861 }
862
Brian Andersond6927fb2016-07-23 23:37:30 -0700863 mSlots[slot].mFence = acquireFence;
Pablo Ceballosccdfd602015-10-07 15:05:45 -0700864 mSlots[slot].mBufferState.queue();
865
Brian Andersond6927fb2016-07-23 23:37:30 -0700866 // Increment the frame counter and store a local version of it
867 // for use outside the lock on mCore->mMutex.
Dan Stoza289ade12014-02-28 11:17:17 -0800868 ++mCore->mFrameCounter;
Brian Andersond6927fb2016-07-23 23:37:30 -0700869 currentFrameNumber = mCore->mFrameCounter;
870 mSlots[slot].mFrameNumber = currentFrameNumber;
Dan Stoza289ade12014-02-28 11:17:17 -0800871
Dan Stoza289ade12014-02-28 11:17:17 -0800872 item.mAcquireCalled = mSlots[slot].mAcquireCalled;
873 item.mGraphicBuffer = mSlots[slot].mGraphicBuffer;
874 item.mCrop = crop;
Dan Stoza3be1c6b2014-11-18 10:24:03 -0800875 item.mTransform = transform &
876 ~static_cast<uint32_t>(NATIVE_WINDOW_TRANSFORM_INVERSE_DISPLAY);
Dan Stoza289ade12014-02-28 11:17:17 -0800877 item.mTransformToDisplayInverse =
Dan Stoza3be1c6b2014-11-18 10:24:03 -0800878 (transform & NATIVE_WINDOW_TRANSFORM_INVERSE_DISPLAY) != 0;
879 item.mScalingMode = static_cast<uint32_t>(scalingMode);
Brian Andersond6927fb2016-07-23 23:37:30 -0700880 item.mTimestamp = requestedPresentTimestamp;
Dan Stoza289ade12014-02-28 11:17:17 -0800881 item.mIsAutoTimestamp = isAutoTimestamp;
Eino-Ville Talvala82c6bcc2015-02-19 16:10:43 -0800882 item.mDataSpace = dataSpace;
Courtney Goeltzenleuchter9bad0d72017-12-19 12:34:34 -0700883 item.mHdrMetadata = hdrMetadata;
Brian Andersond6927fb2016-07-23 23:37:30 -0700884 item.mFrameNumber = currentFrameNumber;
Dan Stoza289ade12014-02-28 11:17:17 -0800885 item.mSlot = slot;
Brian Andersond6927fb2016-07-23 23:37:30 -0700886 item.mFence = acquireFence;
Brian Anderson3d4039d2016-09-23 16:31:30 -0700887 item.mFenceTime = acquireFenceTime;
Pablo Ceballos567dbbb2015-08-26 18:59:08 -0700888 item.mIsDroppable = mCore->mAsyncMode ||
Sungtak Lee45e9e0b2019-05-28 13:38:23 -0700889 (mConsumerIsSurfaceFlinger && mCore->mQueueBufferCanDrop) ||
Sungtak Lee3249fb62019-03-02 16:40:47 -0800890 (mCore->mLegacyBufferDrop && mCore->mQueueBufferCanDrop) ||
Pablo Ceballos3559fbf2016-03-17 15:50:23 -0700891 (mCore->mSharedBufferMode && mCore->mSharedBufferSlot == slot);
Dan Stoza5065a552015-03-17 16:23:42 -0700892 item.mSurfaceDamage = surfaceDamage;
Pablo Ceballos06312182015-10-07 16:32:12 -0700893 item.mQueuedBuffer = true;
Pablo Ceballos3559fbf2016-03-17 15:50:23 -0700894 item.mAutoRefresh = mCore->mSharedBufferMode && mCore->mAutoRefresh;
Chia-I Wu5c6e4632018-01-11 08:54:38 -0800895 item.mApi = mCore->mConnectedApi;
Dan Stoza289ade12014-02-28 11:17:17 -0800896
Ruben Brunk1681d952014-06-27 15:51:55 -0700897 mStickyTransform = stickyTransform;
898
Pablo Ceballosccdfd602015-10-07 15:05:45 -0700899 // Cache the shared buffer data so that the BufferItem can be recreated.
Pablo Ceballos3559fbf2016-03-17 15:50:23 -0700900 if (mCore->mSharedBufferMode) {
901 mCore->mSharedBufferCache.crop = crop;
902 mCore->mSharedBufferCache.transform = transform;
903 mCore->mSharedBufferCache.scalingMode = static_cast<uint32_t>(
Pablo Ceballosccdfd602015-10-07 15:05:45 -0700904 scalingMode);
Pablo Ceballos3559fbf2016-03-17 15:50:23 -0700905 mCore->mSharedBufferCache.dataspace = dataSpace;
Pablo Ceballosccdfd602015-10-07 15:05:45 -0700906 }
907
Shuzhen Wang22f842b2017-01-18 23:02:36 -0800908 output->bufferReplaced = false;
Dan Stoza289ade12014-02-28 11:17:17 -0800909 if (mCore->mQueue.empty()) {
910 // When the queue is empty, we can ignore mDequeueBufferCannotBlock
911 // and simply queue this buffer
912 mCore->mQueue.push_back(item);
Dan Stoza8dc55392014-11-04 11:37:46 -0800913 frameAvailableListener = mCore->mConsumerListener;
Dan Stoza289ade12014-02-28 11:17:17 -0800914 } else {
Pablo Ceballos4d85da42016-04-19 20:11:56 -0700915 // When the queue is not empty, we need to look at the last buffer
916 // in the queue to see if we need to replace it
917 const BufferItem& last = mCore->mQueue.itemAt(
918 mCore->mQueue.size() - 1);
919 if (last.mIsDroppable) {
Pablo Ceballos23b4abe2016-01-08 12:15:22 -0800920
Pablo Ceballos4d85da42016-04-19 20:11:56 -0700921 if (!last.mIsStale) {
922 mSlots[last.mSlot].mBufferState.freeQueued();
Pablo Ceballosccdfd602015-10-07 15:05:45 -0700923
Pablo Ceballos3559fbf2016-03-17 15:50:23 -0700924 // After leaving shared buffer mode, the shared buffer will
Pablo Ceballosccdfd602015-10-07 15:05:45 -0700925 // still be around. Mark it as no longer shared if this
926 // operation causes it to be free.
Pablo Ceballos3559fbf2016-03-17 15:50:23 -0700927 if (!mCore->mSharedBufferMode &&
Pablo Ceballos4d85da42016-04-19 20:11:56 -0700928 mSlots[last.mSlot].mBufferState.isFree()) {
929 mSlots[last.mSlot].mBufferState.mShared = false;
Pablo Ceballosccdfd602015-10-07 15:05:45 -0700930 }
931 // Don't put the shared buffer on the free list.
Pablo Ceballos4d85da42016-04-19 20:11:56 -0700932 if (!mSlots[last.mSlot].mBufferState.isShared()) {
933 mCore->mActiveBuffers.erase(last.mSlot);
934 mCore->mFreeBuffers.push_back(last.mSlot);
Shuzhen Wang22f842b2017-01-18 23:02:36 -0800935 output->bufferReplaced = true;
Pablo Ceballosccdfd602015-10-07 15:05:45 -0700936 }
Dan Stoza289ade12014-02-28 11:17:17 -0800937 }
Pablo Ceballos23b4abe2016-01-08 12:15:22 -0800938
Dan Stoza289ade12014-02-28 11:17:17 -0800939 // Overwrite the droppable buffer with the incoming one
Pablo Ceballos4d85da42016-04-19 20:11:56 -0700940 mCore->mQueue.editItemAt(mCore->mQueue.size() - 1) = item;
Dan Stoza8dc55392014-11-04 11:37:46 -0800941 frameReplacedListener = mCore->mConsumerListener;
Dan Stoza289ade12014-02-28 11:17:17 -0800942 } else {
943 mCore->mQueue.push_back(item);
Dan Stoza8dc55392014-11-04 11:37:46 -0800944 frameAvailableListener = mCore->mConsumerListener;
Dan Stoza289ade12014-02-28 11:17:17 -0800945 }
946 }
947
948 mCore->mBufferHasBeenQueued = true;
Jorim Jaggi6ae55032019-04-02 02:27:44 +0200949 mCore->mDequeueCondition.notify_all();
Dan Stoza50101d02016-04-07 16:53:23 -0700950 mCore->mLastQueuedSlot = slot;
Dan Stoza289ade12014-02-28 11:17:17 -0800951
Brian Anderson7c3ba8a2016-07-25 12:48:08 -0700952 output->width = mCore->mDefaultWidth;
953 output->height = mCore->mDefaultHeight;
954 output->transformHint = mCore->mTransformHint;
955 output->numPendingBuffers = static_cast<uint32_t>(mCore->mQueue.size());
956 output->nextFrameNumber = mCore->mFrameCounter + 1;
Dan Stoza289ade12014-02-28 11:17:17 -0800957
Colin Cross152c3b72016-09-27 14:08:19 -0700958 ATRACE_INT(mCore->mConsumerName.string(),
959 static_cast<int32_t>(mCore->mQueue.size()));
Dan Stozae77c7662016-05-13 11:37:28 -0700960 mCore->mOccupancyTracker.registerOccupancyChange(mCore->mQueue.size());
Dan Stoza8dc55392014-11-04 11:37:46 -0800961
962 // Take a ticket for the callback functions
963 callbackTicket = mNextCallbackTicket++;
Dan Stoza0de7ea72015-04-23 13:20:51 -0700964
Pablo Ceballos9e314332016-01-12 13:49:19 -0800965 VALIDATE_CONSISTENCY();
Dan Stoza289ade12014-02-28 11:17:17 -0800966 } // Autolock scope
967
Irvel468051e2016-06-13 16:44:44 -0700968 // It is okay not to clear the GraphicBuffer when the consumer is SurfaceFlinger because
969 // it is guaranteed that the BufferQueue is inside SurfaceFlinger's process and
970 // there will be no Binder call
971 if (!mConsumerIsSurfaceFlinger) {
972 item.mGraphicBuffer.clear();
973 }
974
Dan Stoza8dc55392014-11-04 11:37:46 -0800975 // Call back without the main BufferQueue lock held, but with the callback
976 // lock held so we can ensure that callbacks occur in order
Mathias Agopian4f6ce7c2017-04-03 17:14:31 -0700977
978 int connectedApi;
979 sp<Fence> lastQueuedFence;
980
981 { // scope for the lock
Jorim Jaggi6ae55032019-04-02 02:27:44 +0200982 std::unique_lock<std::mutex> lock(mCallbackMutex);
Dan Stoza8dc55392014-11-04 11:37:46 -0800983 while (callbackTicket != mCurrentCallbackTicket) {
Jorim Jaggi6ae55032019-04-02 02:27:44 +0200984 mCallbackCondition.wait(lock);
Dan Stoza8dc55392014-11-04 11:37:46 -0800985 }
986
Yi Kong48a619f2018-06-05 16:34:59 -0700987 if (frameAvailableListener != nullptr) {
Dan Stoza8dc55392014-11-04 11:37:46 -0800988 frameAvailableListener->onFrameAvailable(item);
Yi Kong48a619f2018-06-05 16:34:59 -0700989 } else if (frameReplacedListener != nullptr) {
Dan Stoza8dc55392014-11-04 11:37:46 -0800990 frameReplacedListener->onFrameReplaced(item);
991 }
992
Mathias Agopian4f6ce7c2017-04-03 17:14:31 -0700993 connectedApi = mCore->mConnectedApi;
994 lastQueuedFence = std::move(mLastQueueBufferFence);
995
996 mLastQueueBufferFence = std::move(acquireFence);
997 mLastQueuedCrop = item.mCrop;
998 mLastQueuedTransform = item.mTransform;
999
Dan Stoza8dc55392014-11-04 11:37:46 -08001000 ++mCurrentCallbackTicket;
Jorim Jaggi6ae55032019-04-02 02:27:44 +02001001 mCallbackCondition.notify_all();
Dan Stoza289ade12014-02-28 11:17:17 -08001002 }
1003
Brian Andersond6927fb2016-07-23 23:37:30 -07001004 // Update and get FrameEventHistory.
1005 nsecs_t postedTime = systemTime(SYSTEM_TIME_MONOTONIC);
1006 NewFrameEventsEntry newFrameEventsEntry = {
1007 currentFrameNumber,
1008 postedTime,
1009 requestedPresentTimestamp,
Brian Anderson3d4039d2016-09-23 16:31:30 -07001010 std::move(acquireFenceTime)
Brian Andersond6927fb2016-07-23 23:37:30 -07001011 };
Brian Anderson7c3ba8a2016-07-25 12:48:08 -07001012 addAndGetFrameTimestamps(&newFrameEventsEntry,
1013 getFrameTimestamps ? &output->frameTimestamps : nullptr);
Brian Andersond6927fb2016-07-23 23:37:30 -07001014
Yiwei Zhangcb7dd002019-04-16 11:03:01 -07001015 // Wait without lock held
1016 if (connectedApi == NATIVE_WINDOW_API_EGL) {
1017 // Waiting here allows for two full buffers to be queued but not a
1018 // third. In the event that frames take varying time, this makes a
1019 // small trade-off in favor of latency rather than throughput.
1020 lastQueuedFence->waitForever("Throttling EGL Production");
1021 }
1022
Dan Stoza289ade12014-02-28 11:17:17 -08001023 return NO_ERROR;
1024}
1025
Pablo Ceballos583b1b32015-09-03 18:23:52 -07001026status_t BufferQueueProducer::cancelBuffer(int slot, const sp<Fence>& fence) {
Dan Stoza289ade12014-02-28 11:17:17 -08001027 ATRACE_CALL();
1028 BQ_LOGV("cancelBuffer: slot %d", slot);
Jorim Jaggi6ae55032019-04-02 02:27:44 +02001029 std::lock_guard<std::mutex> lock(mCore->mMutex);
Dan Stoza289ade12014-02-28 11:17:17 -08001030
1031 if (mCore->mIsAbandoned) {
1032 BQ_LOGE("cancelBuffer: BufferQueue has been abandoned");
Pablo Ceballos583b1b32015-09-03 18:23:52 -07001033 return NO_INIT;
1034 }
1035
1036 if (mCore->mConnectedApi == BufferQueueCore::NO_CONNECTED_API) {
1037 BQ_LOGE("cancelBuffer: BufferQueue has no connected producer");
1038 return NO_INIT;
Dan Stoza289ade12014-02-28 11:17:17 -08001039 }
1040
Pablo Ceballos3559fbf2016-03-17 15:50:23 -07001041 if (mCore->mSharedBufferMode) {
1042 BQ_LOGE("cancelBuffer: cannot cancel a buffer in shared buffer mode");
Pablo Ceballosccdfd602015-10-07 15:05:45 -07001043 return BAD_VALUE;
1044 }
1045
Dan Stoza3e96f192014-03-03 10:16:19 -08001046 if (slot < 0 || slot >= BufferQueueDefs::NUM_BUFFER_SLOTS) {
Dan Stoza289ade12014-02-28 11:17:17 -08001047 BQ_LOGE("cancelBuffer: slot index %d out of range [0, %d)",
Dan Stoza3e96f192014-03-03 10:16:19 -08001048 slot, BufferQueueDefs::NUM_BUFFER_SLOTS);
Pablo Ceballos583b1b32015-09-03 18:23:52 -07001049 return BAD_VALUE;
Pablo Ceballosccdfd602015-10-07 15:05:45 -07001050 } else if (!mSlots[slot].mBufferState.isDequeued()) {
Dan Stoza289ade12014-02-28 11:17:17 -08001051 BQ_LOGE("cancelBuffer: slot %d is not owned by the producer "
Pablo Ceballosccdfd602015-10-07 15:05:45 -07001052 "(state = %s)", slot, mSlots[slot].mBufferState.string());
Pablo Ceballos583b1b32015-09-03 18:23:52 -07001053 return BAD_VALUE;
Yi Kong48a619f2018-06-05 16:34:59 -07001054 } else if (fence == nullptr) {
Dan Stoza289ade12014-02-28 11:17:17 -08001055 BQ_LOGE("cancelBuffer: fence is NULL");
Pablo Ceballos583b1b32015-09-03 18:23:52 -07001056 return BAD_VALUE;
Dan Stoza289ade12014-02-28 11:17:17 -08001057 }
1058
Pablo Ceballosccdfd602015-10-07 15:05:45 -07001059 mSlots[slot].mBufferState.cancel();
1060
Pablo Ceballos3559fbf2016-03-17 15:50:23 -07001061 // After leaving shared buffer mode, the shared buffer will still be around.
Pablo Ceballosccdfd602015-10-07 15:05:45 -07001062 // Mark it as no longer shared if this operation causes it to be free.
Pablo Ceballos3559fbf2016-03-17 15:50:23 -07001063 if (!mCore->mSharedBufferMode && mSlots[slot].mBufferState.isFree()) {
Pablo Ceballosccdfd602015-10-07 15:05:45 -07001064 mSlots[slot].mBufferState.mShared = false;
1065 }
1066
1067 // Don't put the shared buffer on the free list.
1068 if (!mSlots[slot].mBufferState.isShared()) {
Pablo Ceballos23b4abe2016-01-08 12:15:22 -08001069 mCore->mActiveBuffers.erase(slot);
1070 mCore->mFreeBuffers.push_back(slot);
Pablo Ceballosccdfd602015-10-07 15:05:45 -07001071 }
Pablo Ceballos23b4abe2016-01-08 12:15:22 -08001072
Dan Stoza289ade12014-02-28 11:17:17 -08001073 mSlots[slot].mFence = fence;
Jorim Jaggi6ae55032019-04-02 02:27:44 +02001074 mCore->mDequeueCondition.notify_all();
Pablo Ceballos9e314332016-01-12 13:49:19 -08001075 VALIDATE_CONSISTENCY();
Pablo Ceballos583b1b32015-09-03 18:23:52 -07001076
1077 return NO_ERROR;
Dan Stoza289ade12014-02-28 11:17:17 -08001078}
1079
1080int BufferQueueProducer::query(int what, int *outValue) {
1081 ATRACE_CALL();
Jorim Jaggi6ae55032019-04-02 02:27:44 +02001082 std::lock_guard<std::mutex> lock(mCore->mMutex);
Dan Stoza289ade12014-02-28 11:17:17 -08001083
Yi Kong48a619f2018-06-05 16:34:59 -07001084 if (outValue == nullptr) {
Dan Stoza289ade12014-02-28 11:17:17 -08001085 BQ_LOGE("query: outValue was NULL");
1086 return BAD_VALUE;
1087 }
1088
1089 if (mCore->mIsAbandoned) {
1090 BQ_LOGE("query: BufferQueue has been abandoned");
1091 return NO_INIT;
1092 }
1093
1094 int value;
1095 switch (what) {
1096 case NATIVE_WINDOW_WIDTH:
Dan Stoza3be1c6b2014-11-18 10:24:03 -08001097 value = static_cast<int32_t>(mCore->mDefaultWidth);
Dan Stoza289ade12014-02-28 11:17:17 -08001098 break;
1099 case NATIVE_WINDOW_HEIGHT:
Dan Stoza3be1c6b2014-11-18 10:24:03 -08001100 value = static_cast<int32_t>(mCore->mDefaultHeight);
Dan Stoza289ade12014-02-28 11:17:17 -08001101 break;
1102 case NATIVE_WINDOW_FORMAT:
Dan Stoza3be1c6b2014-11-18 10:24:03 -08001103 value = static_cast<int32_t>(mCore->mDefaultBufferFormat);
Dan Stoza289ade12014-02-28 11:17:17 -08001104 break;
Craig Donner6ebc46a2016-10-21 15:23:44 -07001105 case NATIVE_WINDOW_LAYER_COUNT:
1106 // All BufferQueue buffers have a single layer.
1107 value = BQ_LAYER_COUNT;
1108 break;
Dan Stoza289ade12014-02-28 11:17:17 -08001109 case NATIVE_WINDOW_MIN_UNDEQUEUED_BUFFERS:
Pablo Ceballos567dbbb2015-08-26 18:59:08 -07001110 value = mCore->getMinUndequeuedBufferCountLocked();
Dan Stoza289ade12014-02-28 11:17:17 -08001111 break;
Ruben Brunk1681d952014-06-27 15:51:55 -07001112 case NATIVE_WINDOW_STICKY_TRANSFORM:
Dan Stoza3be1c6b2014-11-18 10:24:03 -08001113 value = static_cast<int32_t>(mStickyTransform);
Ruben Brunk1681d952014-06-27 15:51:55 -07001114 break;
Dan Stoza289ade12014-02-28 11:17:17 -08001115 case NATIVE_WINDOW_CONSUMER_RUNNING_BEHIND:
1116 value = (mCore->mQueue.size() > 1);
1117 break;
1118 case NATIVE_WINDOW_CONSUMER_USAGE_BITS:
Chia-I Wue2786ea2017-08-07 10:36:08 -07001119 // deprecated; higher 32 bits are truncated
Dan Stoza3be1c6b2014-11-18 10:24:03 -08001120 value = static_cast<int32_t>(mCore->mConsumerUsageBits);
Dan Stoza289ade12014-02-28 11:17:17 -08001121 break;
Eino-Ville Talvala82c6bcc2015-02-19 16:10:43 -08001122 case NATIVE_WINDOW_DEFAULT_DATASPACE:
1123 value = static_cast<int32_t>(mCore->mDefaultBufferDataSpace);
1124 break;
Dan Stoza4afd8b62015-02-25 16:49:08 -08001125 case NATIVE_WINDOW_BUFFER_AGE:
1126 if (mCore->mBufferAge > INT32_MAX) {
1127 value = 0;
1128 } else {
1129 value = static_cast<int32_t>(mCore->mBufferAge);
1130 }
1131 break;
Jiwen 'Steve' Cai20419132017-04-21 18:49:53 -07001132 case NATIVE_WINDOW_CONSUMER_IS_PROTECTED:
1133 value = static_cast<int32_t>(mCore->mConsumerIsProtected);
1134 break;
Yiwei Zhangdbd96152018-02-08 14:22:53 -08001135 case NATIVE_WINDOW_MAX_BUFFER_COUNT:
1136 value = static_cast<int32_t>(mCore->mMaxBufferCount);
1137 break;
Dan Stoza289ade12014-02-28 11:17:17 -08001138 default:
1139 return BAD_VALUE;
1140 }
1141
1142 BQ_LOGV("query: %d? %d", what, value);
1143 *outValue = value;
1144 return NO_ERROR;
1145}
1146
Dan Stozaf0eaf252014-03-21 13:05:51 -07001147status_t BufferQueueProducer::connect(const sp<IProducerListener>& listener,
Dan Stoza289ade12014-02-28 11:17:17 -08001148 int api, bool producerControlledByApp, QueueBufferOutput *output) {
1149 ATRACE_CALL();
Jorim Jaggi6ae55032019-04-02 02:27:44 +02001150 std::lock_guard<std::mutex> lock(mCore->mMutex);
Pablo Ceballos981066c2016-02-18 12:54:37 -08001151 mConsumerName = mCore->mConsumerName;
1152 BQ_LOGV("connect: api=%d producerControlledByApp=%s", api,
1153 producerControlledByApp ? "true" : "false");
1154
1155 if (mCore->mIsAbandoned) {
1156 BQ_LOGE("connect: BufferQueue has been abandoned");
1157 return NO_INIT;
1158 }
1159
Yi Kong48a619f2018-06-05 16:34:59 -07001160 if (mCore->mConsumerListener == nullptr) {
Pablo Ceballos981066c2016-02-18 12:54:37 -08001161 BQ_LOGE("connect: BufferQueue has no consumer");
1162 return NO_INIT;
1163 }
1164
Yi Kong48a619f2018-06-05 16:34:59 -07001165 if (output == nullptr) {
Pablo Ceballos981066c2016-02-18 12:54:37 -08001166 BQ_LOGE("connect: output was NULL");
1167 return BAD_VALUE;
1168 }
1169
1170 if (mCore->mConnectedApi != BufferQueueCore::NO_CONNECTED_API) {
1171 BQ_LOGE("connect: already connected (cur=%d req=%d)",
1172 mCore->mConnectedApi, api);
1173 return BAD_VALUE;
1174 }
1175
1176 int delta = mCore->getMaxBufferCountLocked(mCore->mAsyncMode,
1177 mDequeueTimeout < 0 ?
1178 mCore->mConsumerControlledByApp && producerControlledByApp : false,
1179 mCore->mMaxBufferCount) -
1180 mCore->getMaxBufferCountLocked();
1181 if (!mCore->adjustAvailableSlotsLocked(delta)) {
1182 BQ_LOGE("connect: BufferQueue failed to adjust the number of available "
1183 "slots. Delta = %d", delta);
1184 return BAD_VALUE;
1185 }
1186
Dan Stoza289ade12014-02-28 11:17:17 -08001187 int status = NO_ERROR;
Pablo Ceballos981066c2016-02-18 12:54:37 -08001188 switch (api) {
1189 case NATIVE_WINDOW_API_EGL:
1190 case NATIVE_WINDOW_API_CPU:
1191 case NATIVE_WINDOW_API_MEDIA:
1192 case NATIVE_WINDOW_API_CAMERA:
1193 mCore->mConnectedApi = api;
Brian Anderson7c3ba8a2016-07-25 12:48:08 -07001194
1195 output->width = mCore->mDefaultWidth;
1196 output->height = mCore->mDefaultHeight;
1197 output->transformHint = mCore->mTransformHint;
1198 output->numPendingBuffers =
1199 static_cast<uint32_t>(mCore->mQueue.size());
1200 output->nextFrameNumber = mCore->mFrameCounter + 1;
Shuzhen Wang22f842b2017-01-18 23:02:36 -08001201 output->bufferReplaced = false;
Dan Stoza289ade12014-02-28 11:17:17 -08001202
Yi Kong48a619f2018-06-05 16:34:59 -07001203 if (listener != nullptr) {
Matthew Bouyack3b8e6b22016-10-03 16:24:26 -07001204 // Set up a death notification so that we can disconnect
1205 // automatically if the remote producer dies
Yi Kong48a619f2018-06-05 16:34:59 -07001206 if (IInterface::asBinder(listener)->remoteBinder() != nullptr) {
Matthew Bouyack3b8e6b22016-10-03 16:24:26 -07001207 status = IInterface::asBinder(listener)->linkToDeath(
1208 static_cast<IBinder::DeathRecipient*>(this));
1209 if (status != NO_ERROR) {
1210 BQ_LOGE("connect: linkToDeath failed: %s (%d)",
1211 strerror(-status), status);
1212 }
1213 mCore->mLinkedToDeath = listener;
1214 }
1215 if (listener->needsReleaseNotify()) {
1216 mCore->mConnectedProducerListener = listener;
Dan Stoza289ade12014-02-28 11:17:17 -08001217 }
Pablo Ceballos981066c2016-02-18 12:54:37 -08001218 }
Pablo Ceballos981066c2016-02-18 12:54:37 -08001219 break;
1220 default:
1221 BQ_LOGE("connect: unknown API %d", api);
1222 status = BAD_VALUE;
1223 break;
Dan Stoza289ade12014-02-28 11:17:17 -08001224 }
Jayant Chowdharyad9fe272019-03-07 22:36:06 -08001225 mCore->mConnectedPid = BufferQueueThreadState::getCallingPid();
Pablo Ceballos981066c2016-02-18 12:54:37 -08001226 mCore->mBufferHasBeenQueued = false;
1227 mCore->mDequeueBufferCannotBlock = false;
Sungtak Lee3249fb62019-03-02 16:40:47 -08001228 mCore->mQueueBufferCanDrop = false;
1229 mCore->mLegacyBufferDrop = true;
1230 if (mCore->mConsumerControlledByApp && producerControlledByApp) {
1231 mCore->mDequeueBufferCannotBlock = mDequeueTimeout < 0;
1232 mCore->mQueueBufferCanDrop = mDequeueTimeout <= 0;
Dan Stoza127fc632015-06-30 13:43:32 -07001233 }
Dan Stoza289ade12014-02-28 11:17:17 -08001234
Pablo Ceballos981066c2016-02-18 12:54:37 -08001235 mCore->mAllowAllocation = true;
1236 VALIDATE_CONSISTENCY();
Dan Stoza289ade12014-02-28 11:17:17 -08001237 return status;
1238}
1239
Robert Carr97b9c862016-09-08 13:54:35 -07001240status_t BufferQueueProducer::disconnect(int api, DisconnectMode mode) {
Dan Stoza289ade12014-02-28 11:17:17 -08001241 ATRACE_CALL();
Pablo Ceballosccdfd602015-10-07 15:05:45 -07001242 BQ_LOGV("disconnect: api %d", api);
Dan Stoza289ade12014-02-28 11:17:17 -08001243
1244 int status = NO_ERROR;
1245 sp<IConsumerListener> listener;
1246 { // Autolock scope
Jorim Jaggi6ae55032019-04-02 02:27:44 +02001247 std::unique_lock<std::mutex> lock(mCore->mMutex);
Robert Carr97b9c862016-09-08 13:54:35 -07001248
1249 if (mode == DisconnectMode::AllLocal) {
Jayant Chowdharyad9fe272019-03-07 22:36:06 -08001250 if (BufferQueueThreadState::getCallingPid() != mCore->mConnectedPid) {
Robert Carr97b9c862016-09-08 13:54:35 -07001251 return NO_ERROR;
1252 }
1253 api = BufferQueueCore::CURRENTLY_CONNECTED_API;
1254 }
1255
Jorim Jaggi6ae55032019-04-02 02:27:44 +02001256 mCore->waitWhileAllocatingLocked(lock);
Dan Stoza289ade12014-02-28 11:17:17 -08001257
1258 if (mCore->mIsAbandoned) {
1259 // It's not really an error to disconnect after the surface has
1260 // been abandoned; it should just be a no-op.
1261 return NO_ERROR;
1262 }
1263
Chong Zhang1b3a9ac2016-02-29 16:47:47 -08001264 if (api == BufferQueueCore::CURRENTLY_CONNECTED_API) {
Chong Zhang5ac51482017-02-16 15:52:33 -08001265 if (mCore->mConnectedApi == NATIVE_WINDOW_API_MEDIA) {
1266 ALOGD("About to force-disconnect API_MEDIA, mode=%d", mode);
1267 }
Chong Zhang1b3a9ac2016-02-29 16:47:47 -08001268 api = mCore->mConnectedApi;
Chong Zhang26bb2b12016-03-08 12:08:33 -08001269 // If we're asked to disconnect the currently connected api but
1270 // nobody is connected, it's not really an error.
1271 if (api == BufferQueueCore::NO_CONNECTED_API) {
1272 return NO_ERROR;
1273 }
Chong Zhang1b3a9ac2016-02-29 16:47:47 -08001274 }
1275
Dan Stoza289ade12014-02-28 11:17:17 -08001276 switch (api) {
1277 case NATIVE_WINDOW_API_EGL:
1278 case NATIVE_WINDOW_API_CPU:
1279 case NATIVE_WINDOW_API_MEDIA:
1280 case NATIVE_WINDOW_API_CAMERA:
1281 if (mCore->mConnectedApi == api) {
1282 mCore->freeAllBuffersLocked();
1283
1284 // Remove our death notification callback if we have one
Yi Kong48a619f2018-06-05 16:34:59 -07001285 if (mCore->mLinkedToDeath != nullptr) {
Dan Stozaf0eaf252014-03-21 13:05:51 -07001286 sp<IBinder> token =
Matthew Bouyack3b8e6b22016-10-03 16:24:26 -07001287 IInterface::asBinder(mCore->mLinkedToDeath);
Dan Stoza289ade12014-02-28 11:17:17 -08001288 // This can fail if we're here because of the death
1289 // notification, but we just ignore it
1290 token->unlinkToDeath(
1291 static_cast<IBinder::DeathRecipient*>(this));
1292 }
Pablo Ceballos3559fbf2016-03-17 15:50:23 -07001293 mCore->mSharedBufferSlot =
Pablo Ceballos23b4abe2016-01-08 12:15:22 -08001294 BufferQueueCore::INVALID_BUFFER_SLOT;
Yi Kong48a619f2018-06-05 16:34:59 -07001295 mCore->mLinkedToDeath = nullptr;
1296 mCore->mConnectedProducerListener = nullptr;
Dan Stoza289ade12014-02-28 11:17:17 -08001297 mCore->mConnectedApi = BufferQueueCore::NO_CONNECTED_API;
Robert Carr97b9c862016-09-08 13:54:35 -07001298 mCore->mConnectedPid = -1;
Jesse Hall399184a2014-03-03 15:42:54 -08001299 mCore->mSidebandStream.clear();
Jorim Jaggi6ae55032019-04-02 02:27:44 +02001300 mCore->mDequeueCondition.notify_all();
Dan Stoza289ade12014-02-28 11:17:17 -08001301 listener = mCore->mConsumerListener;
Wonsik Kim3e198b22017-04-07 15:43:16 -07001302 } else if (mCore->mConnectedApi == BufferQueueCore::NO_CONNECTED_API) {
1303 BQ_LOGE("disconnect: not connected (req=%d)", api);
1304 status = NO_INIT;
1305 } else {
Pablo Ceballosccdfd602015-10-07 15:05:45 -07001306 BQ_LOGE("disconnect: still connected to another API "
Dan Stoza289ade12014-02-28 11:17:17 -08001307 "(cur=%d req=%d)", mCore->mConnectedApi, api);
Dan Stoza9f3053d2014-03-06 15:14:33 -08001308 status = BAD_VALUE;
Dan Stoza289ade12014-02-28 11:17:17 -08001309 }
1310 break;
1311 default:
Pablo Ceballosccdfd602015-10-07 15:05:45 -07001312 BQ_LOGE("disconnect: unknown API %d", api);
Dan Stoza9f3053d2014-03-06 15:14:33 -08001313 status = BAD_VALUE;
Dan Stoza289ade12014-02-28 11:17:17 -08001314 break;
1315 }
1316 } // Autolock scope
1317
1318 // Call back without lock held
Yi Kong48a619f2018-06-05 16:34:59 -07001319 if (listener != nullptr) {
Dan Stoza289ade12014-02-28 11:17:17 -08001320 listener->onBuffersReleased();
Brian Anderson5ea5e592016-12-01 16:54:33 -08001321 listener->onDisconnect();
Dan Stoza289ade12014-02-28 11:17:17 -08001322 }
1323
1324 return status;
1325}
1326
Jesse Hall399184a2014-03-03 15:42:54 -08001327status_t BufferQueueProducer::setSidebandStream(const sp<NativeHandle>& stream) {
Wonsik Kimafe30812014-03-31 23:16:08 +09001328 sp<IConsumerListener> listener;
1329 { // Autolock scope
Jorim Jaggi6ae55032019-04-02 02:27:44 +02001330 std::lock_guard<std::mutex> _l(mCore->mMutex);
Wonsik Kimafe30812014-03-31 23:16:08 +09001331 mCore->mSidebandStream = stream;
1332 listener = mCore->mConsumerListener;
1333 } // Autolock scope
1334
Yi Kong48a619f2018-06-05 16:34:59 -07001335 if (listener != nullptr) {
Wonsik Kimafe30812014-03-31 23:16:08 +09001336 listener->onSidebandStreamChanged();
1337 }
Jesse Hall399184a2014-03-03 15:42:54 -08001338 return NO_ERROR;
1339}
1340
Pablo Ceballos567dbbb2015-08-26 18:59:08 -07001341void BufferQueueProducer::allocateBuffers(uint32_t width, uint32_t height,
Mathias Agopiancb496ac2017-05-22 14:21:00 -07001342 PixelFormat format, uint64_t usage) {
Antoine Labour78014f32014-07-15 21:17:03 -07001343 ATRACE_CALL();
1344 while (true) {
Antoine Labour78014f32014-07-15 21:17:03 -07001345 size_t newBufferCount = 0;
1346 uint32_t allocWidth = 0;
1347 uint32_t allocHeight = 0;
Dan Stoza3be1c6b2014-11-18 10:24:03 -08001348 PixelFormat allocFormat = PIXEL_FORMAT_UNKNOWN;
Mathias Agopiancb496ac2017-05-22 14:21:00 -07001349 uint64_t allocUsage = 0;
Chia-I Wu1dbf0e32018-02-07 14:40:08 -08001350 std::string allocName;
Antoine Labour78014f32014-07-15 21:17:03 -07001351 { // Autolock scope
Jorim Jaggi6ae55032019-04-02 02:27:44 +02001352 std::unique_lock<std::mutex> lock(mCore->mMutex);
1353 mCore->waitWhileAllocatingLocked(lock);
Dan Stoza29a3e902014-06-20 13:13:57 -07001354
Dan Stoza9de72932015-04-16 17:28:43 -07001355 if (!mCore->mAllowAllocation) {
1356 BQ_LOGE("allocateBuffers: allocation is not allowed for this "
1357 "BufferQueue");
1358 return;
1359 }
1360
Jorim Jaggi0a3e7842018-07-17 13:48:33 +02001361 // Only allocate one buffer at a time to reduce risks of overlapping an allocation from
1362 // both allocateBuffers and dequeueBuffer.
1363 newBufferCount = mCore->mFreeSlots.empty() ? 0 : 1;
Pablo Ceballos23b4abe2016-01-08 12:15:22 -08001364 if (newBufferCount == 0) {
Antoine Labour78014f32014-07-15 21:17:03 -07001365 return;
1366 }
Pablo Ceballos23b4abe2016-01-08 12:15:22 -08001367
Antoine Labour78014f32014-07-15 21:17:03 -07001368 allocWidth = width > 0 ? width : mCore->mDefaultWidth;
1369 allocHeight = height > 0 ? height : mCore->mDefaultHeight;
1370 allocFormat = format != 0 ? format : mCore->mDefaultBufferFormat;
1371 allocUsage = usage | mCore->mConsumerUsageBits;
Chia-I Wu1dbf0e32018-02-07 14:40:08 -08001372 allocName.assign(mCore->mConsumerName.string(), mCore->mConsumerName.size());
Antoine Labour78014f32014-07-15 21:17:03 -07001373
1374 mCore->mIsAllocating = true;
1375 } // Autolock scope
1376
Dan Stoza3be1c6b2014-11-18 10:24:03 -08001377 Vector<sp<GraphicBuffer>> buffers;
Jorim Jaggi0a3e7842018-07-17 13:48:33 +02001378 for (size_t i = 0; i < newBufferCount; ++i) {
Mathias Agopian0556d792017-03-22 15:49:32 -07001379 sp<GraphicBuffer> graphicBuffer = new GraphicBuffer(
Craig Donner6ebc46a2016-10-21 15:23:44 -07001380 allocWidth, allocHeight, allocFormat, BQ_LAYER_COUNT,
Chia-I Wu1dbf0e32018-02-07 14:40:08 -08001381 allocUsage, allocName);
Mathias Agopian0556d792017-03-22 15:49:32 -07001382
1383 status_t result = graphicBuffer->initCheck();
1384
Antoine Labour78014f32014-07-15 21:17:03 -07001385 if (result != NO_ERROR) {
1386 BQ_LOGE("allocateBuffers: failed to allocate buffer (%u x %u, format"
Mathias Agopiancb496ac2017-05-22 14:21:00 -07001387 " %u, usage %#" PRIx64 ")", width, height, format, usage);
Jorim Jaggi6ae55032019-04-02 02:27:44 +02001388 std::lock_guard<std::mutex> lock(mCore->mMutex);
Antoine Labour78014f32014-07-15 21:17:03 -07001389 mCore->mIsAllocating = false;
Jorim Jaggi6ae55032019-04-02 02:27:44 +02001390 mCore->mIsAllocatingCondition.notify_all();
Antoine Labour78014f32014-07-15 21:17:03 -07001391 return;
1392 }
1393 buffers.push_back(graphicBuffer);
1394 }
1395
1396 { // Autolock scope
Jorim Jaggi6ae55032019-04-02 02:27:44 +02001397 std::unique_lock<std::mutex> lock(mCore->mMutex);
Antoine Labour78014f32014-07-15 21:17:03 -07001398 uint32_t checkWidth = width > 0 ? width : mCore->mDefaultWidth;
1399 uint32_t checkHeight = height > 0 ? height : mCore->mDefaultHeight;
Dan Stoza3be1c6b2014-11-18 10:24:03 -08001400 PixelFormat checkFormat = format != 0 ?
1401 format : mCore->mDefaultBufferFormat;
Mathias Agopiancb496ac2017-05-22 14:21:00 -07001402 uint64_t checkUsage = usage | mCore->mConsumerUsageBits;
Antoine Labour78014f32014-07-15 21:17:03 -07001403 if (checkWidth != allocWidth || checkHeight != allocHeight ||
1404 checkFormat != allocFormat || checkUsage != allocUsage) {
1405 // Something changed while we released the lock. Retry.
1406 BQ_LOGV("allocateBuffers: size/format/usage changed while allocating. Retrying.");
1407 mCore->mIsAllocating = false;
Jorim Jaggi6ae55032019-04-02 02:27:44 +02001408 mCore->mIsAllocatingCondition.notify_all();
Dan Stoza29a3e902014-06-20 13:13:57 -07001409 continue;
1410 }
1411
Antoine Labour78014f32014-07-15 21:17:03 -07001412 for (size_t i = 0; i < newBufferCount; ++i) {
Pablo Ceballos23b4abe2016-01-08 12:15:22 -08001413 if (mCore->mFreeSlots.empty()) {
1414 BQ_LOGV("allocateBuffers: a slot was occupied while "
1415 "allocating. Dropping allocated buffer.");
Antoine Labour78014f32014-07-15 21:17:03 -07001416 continue;
1417 }
Pablo Ceballos23b4abe2016-01-08 12:15:22 -08001418 auto slot = mCore->mFreeSlots.begin();
1419 mCore->clearBufferSlotLocked(*slot); // Clean up the slot first
1420 mSlots[*slot].mGraphicBuffer = buffers[i];
1421 mSlots[*slot].mFence = Fence::NO_FENCE;
Dan Stoza0de7ea72015-04-23 13:20:51 -07001422
1423 // freeBufferLocked puts this slot on the free slots list. Since
1424 // we then attached a buffer, move the slot to free buffer list.
Pablo Ceballos23b4abe2016-01-08 12:15:22 -08001425 mCore->mFreeBuffers.push_front(*slot);
Dan Stoza0de7ea72015-04-23 13:20:51 -07001426
Pablo Ceballos23b4abe2016-01-08 12:15:22 -08001427 BQ_LOGV("allocateBuffers: allocated a new buffer in slot %d",
1428 *slot);
Christopher Ferris87e94cd2016-04-26 11:29:08 -07001429
1430 // Make sure the erase is done after all uses of the slot
1431 // iterator since it will be invalid after this point.
1432 mCore->mFreeSlots.erase(slot);
Antoine Labour78014f32014-07-15 21:17:03 -07001433 }
Dan Stoza29a3e902014-06-20 13:13:57 -07001434
Antoine Labour78014f32014-07-15 21:17:03 -07001435 mCore->mIsAllocating = false;
Jorim Jaggi6ae55032019-04-02 02:27:44 +02001436 mCore->mIsAllocatingCondition.notify_all();
Pablo Ceballos9e314332016-01-12 13:49:19 -08001437 VALIDATE_CONSISTENCY();
Jorim Jaggi35b4e382019-03-28 00:44:03 +01001438
1439 // If dequeue is waiting for to allocate a buffer, release the lock until it's not
1440 // waiting anymore so it can use the buffer we just allocated.
1441 while (mDequeueWaitingForAllocation) {
1442 mDequeueWaitingForAllocationCondition.wait(lock);
1443 }
Antoine Labour78014f32014-07-15 21:17:03 -07001444 } // Autolock scope
Dan Stoza29a3e902014-06-20 13:13:57 -07001445 }
1446}
1447
Dan Stoza9de72932015-04-16 17:28:43 -07001448status_t BufferQueueProducer::allowAllocation(bool allow) {
1449 ATRACE_CALL();
1450 BQ_LOGV("allowAllocation: %s", allow ? "true" : "false");
1451
Jorim Jaggi6ae55032019-04-02 02:27:44 +02001452 std::lock_guard<std::mutex> lock(mCore->mMutex);
Dan Stoza9de72932015-04-16 17:28:43 -07001453 mCore->mAllowAllocation = allow;
1454 return NO_ERROR;
1455}
1456
Dan Stoza812ed062015-06-02 15:45:22 -07001457status_t BufferQueueProducer::setGenerationNumber(uint32_t generationNumber) {
1458 ATRACE_CALL();
1459 BQ_LOGV("setGenerationNumber: %u", generationNumber);
1460
Jorim Jaggi6ae55032019-04-02 02:27:44 +02001461 std::lock_guard<std::mutex> lock(mCore->mMutex);
Dan Stoza812ed062015-06-02 15:45:22 -07001462 mCore->mGenerationNumber = generationNumber;
1463 return NO_ERROR;
1464}
1465
Dan Stozac6f30bd2015-06-08 09:32:50 -07001466String8 BufferQueueProducer::getConsumerName() const {
1467 ATRACE_CALL();
Jorim Jaggi6ae55032019-04-02 02:27:44 +02001468 std::lock_guard<std::mutex> lock(mCore->mMutex);
Dan Stozac6f30bd2015-06-08 09:32:50 -07001469 BQ_LOGV("getConsumerName: %s", mConsumerName.string());
1470 return mConsumerName;
1471}
1472
Pablo Ceballos3559fbf2016-03-17 15:50:23 -07001473status_t BufferQueueProducer::setSharedBufferMode(bool sharedBufferMode) {
Pablo Ceballosccdfd602015-10-07 15:05:45 -07001474 ATRACE_CALL();
Pablo Ceballos3559fbf2016-03-17 15:50:23 -07001475 BQ_LOGV("setSharedBufferMode: %d", sharedBufferMode);
Pablo Ceballosccdfd602015-10-07 15:05:45 -07001476
Jorim Jaggi6ae55032019-04-02 02:27:44 +02001477 std::lock_guard<std::mutex> lock(mCore->mMutex);
Pablo Ceballos3559fbf2016-03-17 15:50:23 -07001478 if (!sharedBufferMode) {
1479 mCore->mSharedBufferSlot = BufferQueueCore::INVALID_BUFFER_SLOT;
Pablo Ceballosccdfd602015-10-07 15:05:45 -07001480 }
Pablo Ceballos3559fbf2016-03-17 15:50:23 -07001481 mCore->mSharedBufferMode = sharedBufferMode;
Dan Stoza127fc632015-06-30 13:43:32 -07001482 return NO_ERROR;
1483}
Pablo Ceballosccdfd602015-10-07 15:05:45 -07001484
Pablo Ceballosff95aab2016-01-13 17:09:58 -08001485status_t BufferQueueProducer::setAutoRefresh(bool autoRefresh) {
1486 ATRACE_CALL();
1487 BQ_LOGV("setAutoRefresh: %d", autoRefresh);
1488
Jorim Jaggi6ae55032019-04-02 02:27:44 +02001489 std::lock_guard<std::mutex> lock(mCore->mMutex);
Pablo Ceballosff95aab2016-01-13 17:09:58 -08001490
1491 mCore->mAutoRefresh = autoRefresh;
1492 return NO_ERROR;
1493}
1494
Dan Stoza127fc632015-06-30 13:43:32 -07001495status_t BufferQueueProducer::setDequeueTimeout(nsecs_t timeout) {
1496 ATRACE_CALL();
1497 BQ_LOGV("setDequeueTimeout: %" PRId64, timeout);
1498
Jorim Jaggi6ae55032019-04-02 02:27:44 +02001499 std::lock_guard<std::mutex> lock(mCore->mMutex);
Sungtak Lee42a94c62019-05-24 14:27:14 -07001500 bool dequeueBufferCannotBlock =
1501 timeout >= 0 ? false : mCore->mDequeueBufferCannotBlock;
1502 int delta = mCore->getMaxBufferCountLocked(mCore->mAsyncMode, dequeueBufferCannotBlock,
Pablo Ceballos981066c2016-02-18 12:54:37 -08001503 mCore->mMaxBufferCount) - mCore->getMaxBufferCountLocked();
1504 if (!mCore->adjustAvailableSlotsLocked(delta)) {
1505 BQ_LOGE("setDequeueTimeout: BufferQueue failed to adjust the number of "
1506 "available slots. Delta = %d", delta);
1507 return BAD_VALUE;
Pablo Ceballos23b4abe2016-01-08 12:15:22 -08001508 }
1509
Pablo Ceballos981066c2016-02-18 12:54:37 -08001510 mDequeueTimeout = timeout;
Sungtak Lee42a94c62019-05-24 14:27:14 -07001511 mCore->mDequeueBufferCannotBlock = dequeueBufferCannotBlock;
1512 if (timeout > 0) {
1513 mCore->mQueueBufferCanDrop = false;
Sungtak Lee3249fb62019-03-02 16:40:47 -08001514 }
Pablo Ceballos9e314332016-01-12 13:49:19 -08001515
Pablo Ceballos981066c2016-02-18 12:54:37 -08001516 VALIDATE_CONSISTENCY();
Pablo Ceballosccdfd602015-10-07 15:05:45 -07001517 return NO_ERROR;
1518}
1519
Sungtak Lee3249fb62019-03-02 16:40:47 -08001520status_t BufferQueueProducer::setLegacyBufferDrop(bool drop) {
1521 ATRACE_CALL();
1522 BQ_LOGV("setLegacyBufferDrop: drop = %d", drop);
1523
1524 std::lock_guard<std::mutex> lock(mCore->mMutex);
1525 mCore->mLegacyBufferDrop = drop;
1526 return NO_ERROR;
1527}
1528
Dan Stoza50101d02016-04-07 16:53:23 -07001529status_t BufferQueueProducer::getLastQueuedBuffer(sp<GraphicBuffer>* outBuffer,
John Reck1a61da52016-04-28 13:18:15 -07001530 sp<Fence>* outFence, float outTransformMatrix[16]) {
Dan Stoza50101d02016-04-07 16:53:23 -07001531 ATRACE_CALL();
1532 BQ_LOGV("getLastQueuedBuffer");
1533
Jorim Jaggi6ae55032019-04-02 02:27:44 +02001534 std::lock_guard<std::mutex> lock(mCore->mMutex);
Dan Stoza50101d02016-04-07 16:53:23 -07001535 if (mCore->mLastQueuedSlot == BufferItem::INVALID_BUFFER_SLOT) {
1536 *outBuffer = nullptr;
1537 *outFence = Fence::NO_FENCE;
1538 return NO_ERROR;
1539 }
1540
1541 *outBuffer = mSlots[mCore->mLastQueuedSlot].mGraphicBuffer;
1542 *outFence = mLastQueueBufferFence;
1543
John Reck1a61da52016-04-28 13:18:15 -07001544 // Currently only SurfaceFlinger internally ever changes
1545 // GLConsumer's filtering mode, so we just use 'true' here as
1546 // this is slightly specialized for the current client of this API,
1547 // which does want filtering.
1548 GLConsumer::computeTransformMatrix(outTransformMatrix,
1549 mSlots[mCore->mLastQueuedSlot].mGraphicBuffer, mLastQueuedCrop,
1550 mLastQueuedTransform, true /* filter */);
1551
Dan Stoza50101d02016-04-07 16:53:23 -07001552 return NO_ERROR;
1553}
1554
Brian Anderson3890c392016-07-25 12:48:08 -07001555void BufferQueueProducer::getFrameTimestamps(FrameEventHistoryDelta* outDelta) {
1556 addAndGetFrameTimestamps(nullptr, outDelta);
Brian Andersond6927fb2016-07-23 23:37:30 -07001557}
Pablo Ceballosce796e72016-02-04 19:10:51 -08001558
Brian Anderson3890c392016-07-25 12:48:08 -07001559void BufferQueueProducer::addAndGetFrameTimestamps(
Brian Andersond6927fb2016-07-23 23:37:30 -07001560 const NewFrameEventsEntry* newTimestamps,
Brian Anderson3890c392016-07-25 12:48:08 -07001561 FrameEventHistoryDelta* outDelta) {
1562 if (newTimestamps == nullptr && outDelta == nullptr) {
1563 return;
Brian Andersond6927fb2016-07-23 23:37:30 -07001564 }
1565
1566 ATRACE_CALL();
1567 BQ_LOGV("addAndGetFrameTimestamps");
1568 sp<IConsumerListener> listener;
Pablo Ceballosce796e72016-02-04 19:10:51 -08001569 {
Jorim Jaggi6ae55032019-04-02 02:27:44 +02001570 std::lock_guard<std::mutex> lock(mCore->mMutex);
Pablo Ceballosce796e72016-02-04 19:10:51 -08001571 listener = mCore->mConsumerListener;
1572 }
Yi Kong48a619f2018-06-05 16:34:59 -07001573 if (listener != nullptr) {
Brian Anderson3890c392016-07-25 12:48:08 -07001574 listener->addAndGetFrameTimestamps(newTimestamps, outDelta);
Pablo Ceballosce796e72016-02-04 19:10:51 -08001575 }
Pablo Ceballosce796e72016-02-04 19:10:51 -08001576}
1577
Dan Stoza289ade12014-02-28 11:17:17 -08001578void BufferQueueProducer::binderDied(const wp<android::IBinder>& /* who */) {
1579 // If we're here, it means that a producer we were connected to died.
1580 // We're guaranteed that we are still connected to it because we remove
1581 // this callback upon disconnect. It's therefore safe to read mConnectedApi
1582 // without synchronization here.
1583 int api = mCore->mConnectedApi;
1584 disconnect(api);
1585}
1586
Pablo Ceballos8e3e92b2016-06-27 17:56:53 -07001587status_t BufferQueueProducer::getUniqueId(uint64_t* outId) const {
1588 BQ_LOGV("getUniqueId");
1589
1590 *outId = mCore->mUniqueId;
1591 return NO_ERROR;
1592}
1593
Chia-I Wue2786ea2017-08-07 10:36:08 -07001594status_t BufferQueueProducer::getConsumerUsage(uint64_t* outUsage) const {
1595 BQ_LOGV("getConsumerUsage");
1596
Jorim Jaggi6ae55032019-04-02 02:27:44 +02001597 std::lock_guard<std::mutex> lock(mCore->mMutex);
Chia-I Wue2786ea2017-08-07 10:36:08 -07001598 *outUsage = mCore->mConsumerUsageBits;
1599 return NO_ERROR;
1600}
1601
Dan Stoza289ade12014-02-28 11:17:17 -08001602} // namespace android