blob: e05667e89552fcbb183b191c7ec9371ef6cebe25 [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;
Yiwei Zhang538cedc2019-06-24 19:35:03 -0700411 if (mCore->mAutoPrerotation &&
412 (mCore->mTransformHintInUse & NATIVE_WINDOW_TRANSFORM_ROT_90)) {
413 std::swap(width, height);
414 }
Dan Stoza9f3053d2014-03-06 15:14:33 -0800415 }
Dan Stoza289ade12014-02-28 11:17:17 -0800416
Pablo Ceballos981066c2016-02-18 12:54:37 -0800417 int found = BufferItem::INVALID_BUFFER_SLOT;
Dan Stoza9de72932015-04-16 17:28:43 -0700418 while (found == BufferItem::INVALID_BUFFER_SLOT) {
Jorim Jaggi6ae55032019-04-02 02:27:44 +0200419 status_t status = waitForFreeSlotThenRelock(FreeSlotCaller::Dequeue, lock, &found);
Dan Stoza9de72932015-04-16 17:28:43 -0700420 if (status != NO_ERROR) {
421 return status;
422 }
423
424 // This should not happen
425 if (found == BufferQueueCore::INVALID_BUFFER_SLOT) {
426 BQ_LOGE("dequeueBuffer: no available buffer slots");
427 return -EBUSY;
428 }
429
430 const sp<GraphicBuffer>& buffer(mSlots[found].mGraphicBuffer);
431
432 // If we are not allowed to allocate new buffers,
433 // waitForFreeSlotThenRelock must have returned a slot containing a
434 // buffer. If this buffer would require reallocation to meet the
435 // requested attributes, we free it and attempt to get another one.
436 if (!mCore->mAllowAllocation) {
Mathias Agopiancb496ac2017-05-22 14:21:00 -0700437 if (buffer->needsReallocation(width, height, format, BQ_LAYER_COUNT, usage)) {
Pablo Ceballos3559fbf2016-03-17 15:50:23 -0700438 if (mCore->mSharedBufferSlot == found) {
Mathias Agopiancb496ac2017-05-22 14:21:00 -0700439 BQ_LOGE("dequeueBuffer: cannot re-allocate a sharedbuffer");
Pablo Ceballosccdfd602015-10-07 15:05:45 -0700440 return BAD_VALUE;
441 }
Pablo Ceballos23b4abe2016-01-08 12:15:22 -0800442 mCore->mFreeSlots.insert(found);
443 mCore->clearBufferSlotLocked(found);
Dan Stoza9de72932015-04-16 17:28:43 -0700444 found = BufferItem::INVALID_BUFFER_SLOT;
445 continue;
446 }
447 }
Dan Stoza289ade12014-02-28 11:17:17 -0800448 }
449
Pablo Ceballos23b4abe2016-01-08 12:15:22 -0800450 const sp<GraphicBuffer>& buffer(mSlots[found].mGraphicBuffer);
Pablo Ceballos3559fbf2016-03-17 15:50:23 -0700451 if (mCore->mSharedBufferSlot == found &&
Mathias Agopiancb496ac2017-05-22 14:21:00 -0700452 buffer->needsReallocation(width, height, format, BQ_LAYER_COUNT, usage)) {
Pablo Ceballos23b4abe2016-01-08 12:15:22 -0800453 BQ_LOGE("dequeueBuffer: cannot re-allocate a shared"
454 "buffer");
455
456 return BAD_VALUE;
457 }
458
Pablo Ceballos3559fbf2016-03-17 15:50:23 -0700459 if (mCore->mSharedBufferSlot != found) {
Pablo Ceballos23b4abe2016-01-08 12:15:22 -0800460 mCore->mActiveBuffers.insert(found);
461 }
Dan Stoza289ade12014-02-28 11:17:17 -0800462 *outSlot = found;
463 ATRACE_BUFFER_INDEX(found);
464
Pablo Ceballos23b4abe2016-01-08 12:15:22 -0800465 attachedByConsumer = mSlots[found].mNeedsReallocation;
466 mSlots[found].mNeedsReallocation = false;
Dan Stoza9f3053d2014-03-06 15:14:33 -0800467
Pablo Ceballosccdfd602015-10-07 15:05:45 -0700468 mSlots[found].mBufferState.dequeue();
469
Yi Kong48a619f2018-06-05 16:34:59 -0700470 if ((buffer == nullptr) ||
Mathias Agopian0556d792017-03-22 15:49:32 -0700471 buffer->needsReallocation(width, height, format, BQ_LAYER_COUNT, usage))
Dan Stoza289ade12014-02-28 11:17:17 -0800472 {
473 mSlots[found].mAcquireCalled = false;
Yi Kong48a619f2018-06-05 16:34:59 -0700474 mSlots[found].mGraphicBuffer = nullptr;
Dan Stoza289ade12014-02-28 11:17:17 -0800475 mSlots[found].mRequestBufferCalled = false;
476 mSlots[found].mEglDisplay = EGL_NO_DISPLAY;
477 mSlots[found].mEglFence = EGL_NO_SYNC_KHR;
478 mSlots[found].mFence = Fence::NO_FENCE;
Dan Stoza4afd8b62015-02-25 16:49:08 -0800479 mCore->mBufferAge = 0;
Pablo Ceballosccdfd602015-10-07 15:05:45 -0700480 mCore->mIsAllocating = true;
Dan Stoza289ade12014-02-28 11:17:17 -0800481
482 returnFlags |= BUFFER_NEEDS_REALLOCATION;
Dan Stoza4afd8b62015-02-25 16:49:08 -0800483 } else {
484 // We add 1 because that will be the frame number when this buffer
485 // is queued
Mathias Agopiancb496ac2017-05-22 14:21:00 -0700486 mCore->mBufferAge = mCore->mFrameCounter + 1 - mSlots[found].mFrameNumber;
Dan Stoza289ade12014-02-28 11:17:17 -0800487 }
488
Dan Stoza800b41a2015-04-28 14:20:04 -0700489 BQ_LOGV("dequeueBuffer: setting buffer age to %" PRIu64,
490 mCore->mBufferAge);
Dan Stoza4afd8b62015-02-25 16:49:08 -0800491
Yi Kong48a619f2018-06-05 16:34:59 -0700492 if (CC_UNLIKELY(mSlots[found].mFence == nullptr)) {
Dan Stoza289ade12014-02-28 11:17:17 -0800493 BQ_LOGE("dequeueBuffer: about to return a NULL fence - "
494 "slot=%d w=%d h=%d format=%u",
495 found, buffer->width, buffer->height, buffer->format);
496 }
497
498 eglDisplay = mSlots[found].mEglDisplay;
499 eglFence = mSlots[found].mEglFence;
Pablo Ceballos28c65ad2016-06-01 15:03:21 -0700500 // Don't return a fence in shared buffer mode, except for the first
501 // frame.
502 *outFence = (mCore->mSharedBufferMode &&
503 mCore->mSharedBufferSlot == found) ?
504 Fence::NO_FENCE : mSlots[found].mFence;
Dan Stoza289ade12014-02-28 11:17:17 -0800505 mSlots[found].mEglFence = EGL_NO_SYNC_KHR;
506 mSlots[found].mFence = Fence::NO_FENCE;
Pablo Ceballos28c65ad2016-06-01 15:03:21 -0700507
508 // If shared buffer mode has just been enabled, cache the slot of the
509 // first buffer that is dequeued and mark it as the shared buffer.
510 if (mCore->mSharedBufferMode && mCore->mSharedBufferSlot ==
511 BufferQueueCore::INVALID_BUFFER_SLOT) {
512 mCore->mSharedBufferSlot = found;
513 mSlots[found].mBufferState.mShared = true;
514 }
Dan Stoza289ade12014-02-28 11:17:17 -0800515 } // Autolock scope
516
517 if (returnFlags & BUFFER_NEEDS_REALLOCATION) {
Dan Stoza29a3e902014-06-20 13:13:57 -0700518 BQ_LOGV("dequeueBuffer: allocating a new buffer for slot %d", *outSlot);
Mathias Agopian0556d792017-03-22 15:49:32 -0700519 sp<GraphicBuffer> graphicBuffer = new GraphicBuffer(
Chris Forbesf3ef3ea2017-04-20 12:43:28 -0700520 width, height, format, BQ_LAYER_COUNT, usage,
Mathias Agopian0556d792017-03-22 15:49:32 -0700521 {mConsumerName.string(), mConsumerName.size()});
522
523 status_t error = graphicBuffer->initCheck();
524
Dan Stoza289ade12014-02-28 11:17:17 -0800525 { // Autolock scope
Jorim Jaggi6ae55032019-04-02 02:27:44 +0200526 std::lock_guard<std::mutex> lock(mCore->mMutex);
Dan Stoza289ade12014-02-28 11:17:17 -0800527
Chia-I Wufeec3b12017-05-25 09:34:56 -0700528 if (error == NO_ERROR && !mCore->mIsAbandoned) {
Pablo Ceballosccdfd602015-10-07 15:05:45 -0700529 graphicBuffer->setGenerationNumber(mCore->mGenerationNumber);
530 mSlots[*outSlot].mGraphicBuffer = graphicBuffer;
531 }
532
533 mCore->mIsAllocating = false;
Jorim Jaggi6ae55032019-04-02 02:27:44 +0200534 mCore->mIsAllocatingCondition.notify_all();
Pablo Ceballosccdfd602015-10-07 15:05:45 -0700535
Chia-I Wufeec3b12017-05-25 09:34:56 -0700536 if (error != NO_ERROR) {
Pablo Ceballos0a068092016-06-29 15:08:33 -0700537 mCore->mFreeSlots.insert(*outSlot);
538 mCore->clearBufferSlotLocked(*outSlot);
Pablo Ceballosccdfd602015-10-07 15:05:45 -0700539 BQ_LOGE("dequeueBuffer: createGraphicBuffer failed");
540 return error;
541 }
542
Dan Stoza289ade12014-02-28 11:17:17 -0800543 if (mCore->mIsAbandoned) {
Pablo Ceballos0a068092016-06-29 15:08:33 -0700544 mCore->mFreeSlots.insert(*outSlot);
545 mCore->clearBufferSlotLocked(*outSlot);
Dan Stoza289ade12014-02-28 11:17:17 -0800546 BQ_LOGE("dequeueBuffer: BufferQueue has been abandoned");
547 return NO_INIT;
548 }
Pablo Ceballos23b4abe2016-01-08 12:15:22 -0800549
Pablo Ceballos9e314332016-01-12 13:49:19 -0800550 VALIDATE_CONSISTENCY();
Dan Stoza289ade12014-02-28 11:17:17 -0800551 } // Autolock scope
552 }
553
Dan Stoza9f3053d2014-03-06 15:14:33 -0800554 if (attachedByConsumer) {
555 returnFlags |= BUFFER_NEEDS_REALLOCATION;
556 }
557
Dan Stoza289ade12014-02-28 11:17:17 -0800558 if (eglFence != EGL_NO_SYNC_KHR) {
559 EGLint result = eglClientWaitSyncKHR(eglDisplay, eglFence, 0,
560 1000000000);
561 // If something goes wrong, log the error, but return the buffer without
562 // synchronizing access to it. It's too late at this point to abort the
563 // dequeue operation.
564 if (result == EGL_FALSE) {
565 BQ_LOGE("dequeueBuffer: error %#x waiting for fence",
566 eglGetError());
567 } else if (result == EGL_TIMEOUT_EXPIRED_KHR) {
568 BQ_LOGE("dequeueBuffer: timeout waiting for fence");
569 }
570 eglDestroySyncKHR(eglDisplay, eglFence);
571 }
572
Mark Salyzyn8f515ce2014-06-09 14:32:04 -0700573 BQ_LOGV("dequeueBuffer: returning slot=%d/%" PRIu64 " buf=%p flags=%#x",
574 *outSlot,
Dan Stoza289ade12014-02-28 11:17:17 -0800575 mSlots[*outSlot].mFrameNumber,
576 mSlots[*outSlot].mGraphicBuffer->handle, returnFlags);
577
Ian Elliottd11b0442017-07-18 11:05:49 -0600578 if (outBufferAge) {
579 *outBufferAge = mCore->mBufferAge;
580 }
Brian Anderson7c3ba8a2016-07-25 12:48:08 -0700581 addAndGetFrameTimestamps(nullptr, outTimestamps);
582
Dan Stoza289ade12014-02-28 11:17:17 -0800583 return returnFlags;
584}
585
Dan Stoza9f3053d2014-03-06 15:14:33 -0800586status_t BufferQueueProducer::detachBuffer(int slot) {
587 ATRACE_CALL();
588 ATRACE_BUFFER_INDEX(slot);
Pablo Ceballosccdfd602015-10-07 15:05:45 -0700589 BQ_LOGV("detachBuffer: slot %d", slot);
Dan Stoza9f3053d2014-03-06 15:14:33 -0800590
Eino-Ville Talvala93dd0512016-06-10 14:21:02 -0700591 sp<IConsumerListener> listener;
592 {
Jorim Jaggi6ae55032019-04-02 02:27:44 +0200593 std::lock_guard<std::mutex> lock(mCore->mMutex);
Eino-Ville Talvala93dd0512016-06-10 14:21:02 -0700594
595 if (mCore->mIsAbandoned) {
596 BQ_LOGE("detachBuffer: BufferQueue has been abandoned");
597 return NO_INIT;
598 }
599
600 if (mCore->mConnectedApi == BufferQueueCore::NO_CONNECTED_API) {
601 BQ_LOGE("detachBuffer: BufferQueue has no connected producer");
602 return NO_INIT;
603 }
604
605 if (mCore->mSharedBufferMode || mCore->mSharedBufferSlot == slot) {
606 BQ_LOGE("detachBuffer: cannot detach a buffer in shared buffer mode");
607 return BAD_VALUE;
608 }
609
610 if (slot < 0 || slot >= BufferQueueDefs::NUM_BUFFER_SLOTS) {
611 BQ_LOGE("detachBuffer: slot index %d out of range [0, %d)",
612 slot, BufferQueueDefs::NUM_BUFFER_SLOTS);
613 return BAD_VALUE;
614 } else if (!mSlots[slot].mBufferState.isDequeued()) {
615 BQ_LOGE("detachBuffer: slot %d is not owned by the producer "
616 "(state = %s)", slot, mSlots[slot].mBufferState.string());
617 return BAD_VALUE;
618 } else if (!mSlots[slot].mRequestBufferCalled) {
619 BQ_LOGE("detachBuffer: buffer in slot %d has not been requested",
620 slot);
621 return BAD_VALUE;
622 }
623
624 mSlots[slot].mBufferState.detachProducer();
625 mCore->mActiveBuffers.erase(slot);
626 mCore->mFreeSlots.insert(slot);
627 mCore->clearBufferSlotLocked(slot);
Jorim Jaggi6ae55032019-04-02 02:27:44 +0200628 mCore->mDequeueCondition.notify_all();
Eino-Ville Talvala93dd0512016-06-10 14:21:02 -0700629 VALIDATE_CONSISTENCY();
630 listener = mCore->mConsumerListener;
Dan Stoza9f3053d2014-03-06 15:14:33 -0800631 }
632
Yi Kong48a619f2018-06-05 16:34:59 -0700633 if (listener != nullptr) {
Eino-Ville Talvala93dd0512016-06-10 14:21:02 -0700634 listener->onBuffersReleased();
Pablo Ceballos583b1b32015-09-03 18:23:52 -0700635 }
Pablo Ceballos981066c2016-02-18 12:54:37 -0800636
Dan Stoza9f3053d2014-03-06 15:14:33 -0800637 return NO_ERROR;
638}
639
Dan Stozad9822a32014-03-28 15:25:31 -0700640status_t BufferQueueProducer::detachNextBuffer(sp<GraphicBuffer>* outBuffer,
641 sp<Fence>* outFence) {
642 ATRACE_CALL();
643
Yi Kong48a619f2018-06-05 16:34:59 -0700644 if (outBuffer == nullptr) {
Dan Stozad9822a32014-03-28 15:25:31 -0700645 BQ_LOGE("detachNextBuffer: outBuffer must not be NULL");
646 return BAD_VALUE;
Yi Kong48a619f2018-06-05 16:34:59 -0700647 } else if (outFence == nullptr) {
Dan Stozad9822a32014-03-28 15:25:31 -0700648 BQ_LOGE("detachNextBuffer: outFence must not be NULL");
649 return BAD_VALUE;
650 }
651
Eino-Ville Talvala2672dec2017-06-13 16:39:11 -0700652 sp<IConsumerListener> listener;
653 {
Jorim Jaggi6ae55032019-04-02 02:27:44 +0200654 std::unique_lock<std::mutex> lock(mCore->mMutex);
Dan Stozad9822a32014-03-28 15:25:31 -0700655
Eino-Ville Talvala2672dec2017-06-13 16:39:11 -0700656 if (mCore->mIsAbandoned) {
657 BQ_LOGE("detachNextBuffer: BufferQueue has been abandoned");
658 return NO_INIT;
659 }
660
661 if (mCore->mConnectedApi == BufferQueueCore::NO_CONNECTED_API) {
662 BQ_LOGE("detachNextBuffer: BufferQueue has no connected producer");
663 return NO_INIT;
664 }
665
666 if (mCore->mSharedBufferMode) {
667 BQ_LOGE("detachNextBuffer: cannot detach a buffer in shared buffer "
668 "mode");
669 return BAD_VALUE;
670 }
671
Jorim Jaggi6ae55032019-04-02 02:27:44 +0200672 mCore->waitWhileAllocatingLocked(lock);
Eino-Ville Talvala2672dec2017-06-13 16:39:11 -0700673
674 if (mCore->mFreeBuffers.empty()) {
675 return NO_MEMORY;
676 }
677
678 int found = mCore->mFreeBuffers.front();
679 mCore->mFreeBuffers.remove(found);
680 mCore->mFreeSlots.insert(found);
681
682 BQ_LOGV("detachNextBuffer detached slot %d", found);
683
684 *outBuffer = mSlots[found].mGraphicBuffer;
685 *outFence = mSlots[found].mFence;
686 mCore->clearBufferSlotLocked(found);
687 VALIDATE_CONSISTENCY();
688 listener = mCore->mConsumerListener;
Dan Stozad9822a32014-03-28 15:25:31 -0700689 }
690
Yi Kong48a619f2018-06-05 16:34:59 -0700691 if (listener != nullptr) {
Eino-Ville Talvala2672dec2017-06-13 16:39:11 -0700692 listener->onBuffersReleased();
Pablo Ceballos583b1b32015-09-03 18:23:52 -0700693 }
Pablo Ceballos981066c2016-02-18 12:54:37 -0800694
Dan Stozad9822a32014-03-28 15:25:31 -0700695 return NO_ERROR;
696}
697
Dan Stoza9f3053d2014-03-06 15:14:33 -0800698status_t BufferQueueProducer::attachBuffer(int* outSlot,
699 const sp<android::GraphicBuffer>& buffer) {
700 ATRACE_CALL();
701
Yi Kong48a619f2018-06-05 16:34:59 -0700702 if (outSlot == nullptr) {
Pablo Ceballosccdfd602015-10-07 15:05:45 -0700703 BQ_LOGE("attachBuffer: outSlot must not be NULL");
Dan Stoza9f3053d2014-03-06 15:14:33 -0800704 return BAD_VALUE;
Yi Kong48a619f2018-06-05 16:34:59 -0700705 } else if (buffer == nullptr) {
Pablo Ceballosccdfd602015-10-07 15:05:45 -0700706 BQ_LOGE("attachBuffer: cannot attach NULL buffer");
Dan Stoza9f3053d2014-03-06 15:14:33 -0800707 return BAD_VALUE;
708 }
709
Jorim Jaggi6ae55032019-04-02 02:27:44 +0200710 std::unique_lock<std::mutex> lock(mCore->mMutex);
Pablo Ceballos583b1b32015-09-03 18:23:52 -0700711
712 if (mCore->mIsAbandoned) {
Pablo Ceballosccdfd602015-10-07 15:05:45 -0700713 BQ_LOGE("attachBuffer: BufferQueue has been abandoned");
Pablo Ceballos583b1b32015-09-03 18:23:52 -0700714 return NO_INIT;
715 }
716
717 if (mCore->mConnectedApi == BufferQueueCore::NO_CONNECTED_API) {
Pablo Ceballosccdfd602015-10-07 15:05:45 -0700718 BQ_LOGE("attachBuffer: BufferQueue has no connected producer");
Pablo Ceballos583b1b32015-09-03 18:23:52 -0700719 return NO_INIT;
720 }
Dan Stoza9f3053d2014-03-06 15:14:33 -0800721
Pablo Ceballos3559fbf2016-03-17 15:50:23 -0700722 if (mCore->mSharedBufferMode) {
723 BQ_LOGE("attachBuffer: cannot attach a buffer in shared buffer mode");
Pablo Ceballosccdfd602015-10-07 15:05:45 -0700724 return BAD_VALUE;
725 }
726
Dan Stoza812ed062015-06-02 15:45:22 -0700727 if (buffer->getGenerationNumber() != mCore->mGenerationNumber) {
728 BQ_LOGE("attachBuffer: generation number mismatch [buffer %u] "
729 "[queue %u]", buffer->getGenerationNumber(),
730 mCore->mGenerationNumber);
731 return BAD_VALUE;
732 }
733
Jorim Jaggi6ae55032019-04-02 02:27:44 +0200734 mCore->waitWhileAllocatingLocked(lock);
Pablo Ceballos583b1b32015-09-03 18:23:52 -0700735
Dan Stoza9f3053d2014-03-06 15:14:33 -0800736 status_t returnFlags = NO_ERROR;
737 int found;
Jorim Jaggi6ae55032019-04-02 02:27:44 +0200738 status_t status = waitForFreeSlotThenRelock(FreeSlotCaller::Attach, lock, &found);
Dan Stoza9f3053d2014-03-06 15:14:33 -0800739 if (status != NO_ERROR) {
740 return status;
741 }
742
743 // This should not happen
744 if (found == BufferQueueCore::INVALID_BUFFER_SLOT) {
Pablo Ceballosccdfd602015-10-07 15:05:45 -0700745 BQ_LOGE("attachBuffer: no available buffer slots");
Dan Stoza9f3053d2014-03-06 15:14:33 -0800746 return -EBUSY;
747 }
748
749 *outSlot = found;
750 ATRACE_BUFFER_INDEX(*outSlot);
Pablo Ceballosccdfd602015-10-07 15:05:45 -0700751 BQ_LOGV("attachBuffer: returning slot %d flags=%#x",
Dan Stoza9f3053d2014-03-06 15:14:33 -0800752 *outSlot, returnFlags);
753
754 mSlots[*outSlot].mGraphicBuffer = buffer;
Pablo Ceballosccdfd602015-10-07 15:05:45 -0700755 mSlots[*outSlot].mBufferState.attachProducer();
Dan Stoza9f3053d2014-03-06 15:14:33 -0800756 mSlots[*outSlot].mEglFence = EGL_NO_SYNC_KHR;
757 mSlots[*outSlot].mFence = Fence::NO_FENCE;
Dan Stoza2443c792014-03-24 15:03:46 -0700758 mSlots[*outSlot].mRequestBufferCalled = true;
Pablo Ceballos23b4abe2016-01-08 12:15:22 -0800759 mSlots[*outSlot].mAcquireCalled = false;
Jammy Yu69958b82017-02-22 16:41:38 -0800760 mSlots[*outSlot].mNeedsReallocation = false;
Pablo Ceballos23b4abe2016-01-08 12:15:22 -0800761 mCore->mActiveBuffers.insert(found);
Pablo Ceballos9e314332016-01-12 13:49:19 -0800762 VALIDATE_CONSISTENCY();
Dan Stoza0de7ea72015-04-23 13:20:51 -0700763
Dan Stoza9f3053d2014-03-06 15:14:33 -0800764 return returnFlags;
765}
766
Dan Stoza289ade12014-02-28 11:17:17 -0800767status_t BufferQueueProducer::queueBuffer(int slot,
768 const QueueBufferInput &input, QueueBufferOutput *output) {
769 ATRACE_CALL();
770 ATRACE_BUFFER_INDEX(slot);
771
Brian Andersond6927fb2016-07-23 23:37:30 -0700772 int64_t requestedPresentTimestamp;
Dan Stoza289ade12014-02-28 11:17:17 -0800773 bool isAutoTimestamp;
Eino-Ville Talvala82c6bcc2015-02-19 16:10:43 -0800774 android_dataspace dataSpace;
Pablo Ceballos60d69222015-08-07 14:47:20 -0700775 Rect crop(Rect::EMPTY_RECT);
Dan Stoza289ade12014-02-28 11:17:17 -0800776 int scalingMode;
777 uint32_t transform;
Ruben Brunk1681d952014-06-27 15:51:55 -0700778 uint32_t stickyTransform;
Brian Andersond6927fb2016-07-23 23:37:30 -0700779 sp<Fence> acquireFence;
Brian Anderson7c3ba8a2016-07-25 12:48:08 -0700780 bool getFrameTimestamps = false;
Brian Andersond6927fb2016-07-23 23:37:30 -0700781 input.deflate(&requestedPresentTimestamp, &isAutoTimestamp, &dataSpace,
Brian Anderson7c3ba8a2016-07-25 12:48:08 -0700782 &crop, &scalingMode, &transform, &acquireFence, &stickyTransform,
783 &getFrameTimestamps);
Chih-Hung Hsiehcb057c22017-08-03 15:48:25 -0700784 const Region& surfaceDamage = input.getSurfaceDamage();
Courtney Goeltzenleuchter9bad0d72017-12-19 12:34:34 -0700785 const HdrMetadata& hdrMetadata = input.getHdrMetadata();
Dan Stoza289ade12014-02-28 11:17:17 -0800786
Yi Kong48a619f2018-06-05 16:34:59 -0700787 if (acquireFence == nullptr) {
Dan Stoza289ade12014-02-28 11:17:17 -0800788 BQ_LOGE("queueBuffer: fence is NULL");
Jesse Hallde288fe2014-11-04 08:30:48 -0800789 return BAD_VALUE;
Dan Stoza289ade12014-02-28 11:17:17 -0800790 }
791
Brian Anderson3d4039d2016-09-23 16:31:30 -0700792 auto acquireFenceTime = std::make_shared<FenceTime>(acquireFence);
793
Dan Stoza289ade12014-02-28 11:17:17 -0800794 switch (scalingMode) {
795 case NATIVE_WINDOW_SCALING_MODE_FREEZE:
796 case NATIVE_WINDOW_SCALING_MODE_SCALE_TO_WINDOW:
797 case NATIVE_WINDOW_SCALING_MODE_SCALE_CROP:
798 case NATIVE_WINDOW_SCALING_MODE_NO_SCALE_CROP:
799 break;
800 default:
801 BQ_LOGE("queueBuffer: unknown scaling mode %d", scalingMode);
Dan Stoza9f3053d2014-03-06 15:14:33 -0800802 return BAD_VALUE;
Dan Stoza289ade12014-02-28 11:17:17 -0800803 }
804
Dan Stoza8dc55392014-11-04 11:37:46 -0800805 sp<IConsumerListener> frameAvailableListener;
806 sp<IConsumerListener> frameReplacedListener;
807 int callbackTicket = 0;
Brian Andersond6927fb2016-07-23 23:37:30 -0700808 uint64_t currentFrameNumber = 0;
Dan Stoza8dc55392014-11-04 11:37:46 -0800809 BufferItem item;
Dan Stoza289ade12014-02-28 11:17:17 -0800810 { // Autolock scope
Jorim Jaggi6ae55032019-04-02 02:27:44 +0200811 std::lock_guard<std::mutex> lock(mCore->mMutex);
Dan Stoza289ade12014-02-28 11:17:17 -0800812
813 if (mCore->mIsAbandoned) {
814 BQ_LOGE("queueBuffer: BufferQueue has been abandoned");
815 return NO_INIT;
816 }
817
Pablo Ceballos583b1b32015-09-03 18:23:52 -0700818 if (mCore->mConnectedApi == BufferQueueCore::NO_CONNECTED_API) {
819 BQ_LOGE("queueBuffer: BufferQueue has no connected producer");
820 return NO_INIT;
821 }
822
Pablo Ceballos23b4abe2016-01-08 12:15:22 -0800823 if (slot < 0 || slot >= BufferQueueDefs::NUM_BUFFER_SLOTS) {
Dan Stoza289ade12014-02-28 11:17:17 -0800824 BQ_LOGE("queueBuffer: slot index %d out of range [0, %d)",
Pablo Ceballos23b4abe2016-01-08 12:15:22 -0800825 slot, BufferQueueDefs::NUM_BUFFER_SLOTS);
Dan Stoza9f3053d2014-03-06 15:14:33 -0800826 return BAD_VALUE;
Pablo Ceballosccdfd602015-10-07 15:05:45 -0700827 } else if (!mSlots[slot].mBufferState.isDequeued()) {
Dan Stoza289ade12014-02-28 11:17:17 -0800828 BQ_LOGE("queueBuffer: slot %d is not owned by the producer "
Pablo Ceballosccdfd602015-10-07 15:05:45 -0700829 "(state = %s)", slot, mSlots[slot].mBufferState.string());
Dan Stoza9f3053d2014-03-06 15:14:33 -0800830 return BAD_VALUE;
Dan Stoza289ade12014-02-28 11:17:17 -0800831 } else if (!mSlots[slot].mRequestBufferCalled) {
832 BQ_LOGE("queueBuffer: slot %d was queued without requesting "
833 "a buffer", slot);
Dan Stoza9f3053d2014-03-06 15:14:33 -0800834 return BAD_VALUE;
Dan Stoza289ade12014-02-28 11:17:17 -0800835 }
836
Pablo Ceballos3559fbf2016-03-17 15:50:23 -0700837 // If shared buffer mode has just been enabled, cache the slot of the
Pablo Ceballos295a9fc2016-03-14 16:02:19 -0700838 // first buffer that is queued and mark it as the shared buffer.
Pablo Ceballos3559fbf2016-03-17 15:50:23 -0700839 if (mCore->mSharedBufferMode && mCore->mSharedBufferSlot ==
Pablo Ceballos295a9fc2016-03-14 16:02:19 -0700840 BufferQueueCore::INVALID_BUFFER_SLOT) {
Pablo Ceballos3559fbf2016-03-17 15:50:23 -0700841 mCore->mSharedBufferSlot = slot;
Pablo Ceballos295a9fc2016-03-14 16:02:19 -0700842 mSlots[slot].mBufferState.mShared = true;
843 }
844
Eino-Ville Talvala82c6bcc2015-02-19 16:10:43 -0800845 BQ_LOGV("queueBuffer: slot=%d/%" PRIu64 " time=%" PRIu64 " dataSpace=%d"
Courtney Goeltzenleuchter9bad0d72017-12-19 12:34:34 -0700846 " validHdrMetadataTypes=0x%x crop=[%d,%d,%d,%d] transform=%#x scale=%s",
847 slot, mCore->mFrameCounter + 1, requestedPresentTimestamp, dataSpace,
848 hdrMetadata.validTypes, crop.left, crop.top, crop.right, crop.bottom,
Brian Andersond6927fb2016-07-23 23:37:30 -0700849 transform,
Dan Stoza3be1c6b2014-11-18 10:24:03 -0800850 BufferItem::scalingModeName(static_cast<uint32_t>(scalingMode)));
Dan Stoza289ade12014-02-28 11:17:17 -0800851
852 const sp<GraphicBuffer>& graphicBuffer(mSlots[slot].mGraphicBuffer);
853 Rect bufferRect(graphicBuffer->getWidth(), graphicBuffer->getHeight());
Pablo Ceballos60d69222015-08-07 14:47:20 -0700854 Rect croppedRect(Rect::EMPTY_RECT);
Dan Stoza289ade12014-02-28 11:17:17 -0800855 crop.intersect(bufferRect, &croppedRect);
856 if (croppedRect != crop) {
857 BQ_LOGE("queueBuffer: crop rect is not contained within the "
858 "buffer in slot %d", slot);
Dan Stoza9f3053d2014-03-06 15:14:33 -0800859 return BAD_VALUE;
Dan Stoza289ade12014-02-28 11:17:17 -0800860 }
861
Eino-Ville Talvala82c6bcc2015-02-19 16:10:43 -0800862 // Override UNKNOWN dataspace with consumer default
863 if (dataSpace == HAL_DATASPACE_UNKNOWN) {
864 dataSpace = mCore->mDefaultBufferDataSpace;
865 }
866
Brian Andersond6927fb2016-07-23 23:37:30 -0700867 mSlots[slot].mFence = acquireFence;
Pablo Ceballosccdfd602015-10-07 15:05:45 -0700868 mSlots[slot].mBufferState.queue();
869
Brian Andersond6927fb2016-07-23 23:37:30 -0700870 // Increment the frame counter and store a local version of it
871 // for use outside the lock on mCore->mMutex.
Dan Stoza289ade12014-02-28 11:17:17 -0800872 ++mCore->mFrameCounter;
Brian Andersond6927fb2016-07-23 23:37:30 -0700873 currentFrameNumber = mCore->mFrameCounter;
874 mSlots[slot].mFrameNumber = currentFrameNumber;
Dan Stoza289ade12014-02-28 11:17:17 -0800875
Dan Stoza289ade12014-02-28 11:17:17 -0800876 item.mAcquireCalled = mSlots[slot].mAcquireCalled;
877 item.mGraphicBuffer = mSlots[slot].mGraphicBuffer;
878 item.mCrop = crop;
Dan Stoza3be1c6b2014-11-18 10:24:03 -0800879 item.mTransform = transform &
880 ~static_cast<uint32_t>(NATIVE_WINDOW_TRANSFORM_INVERSE_DISPLAY);
Dan Stoza289ade12014-02-28 11:17:17 -0800881 item.mTransformToDisplayInverse =
Dan Stoza3be1c6b2014-11-18 10:24:03 -0800882 (transform & NATIVE_WINDOW_TRANSFORM_INVERSE_DISPLAY) != 0;
883 item.mScalingMode = static_cast<uint32_t>(scalingMode);
Brian Andersond6927fb2016-07-23 23:37:30 -0700884 item.mTimestamp = requestedPresentTimestamp;
Dan Stoza289ade12014-02-28 11:17:17 -0800885 item.mIsAutoTimestamp = isAutoTimestamp;
Eino-Ville Talvala82c6bcc2015-02-19 16:10:43 -0800886 item.mDataSpace = dataSpace;
Courtney Goeltzenleuchter9bad0d72017-12-19 12:34:34 -0700887 item.mHdrMetadata = hdrMetadata;
Brian Andersond6927fb2016-07-23 23:37:30 -0700888 item.mFrameNumber = currentFrameNumber;
Dan Stoza289ade12014-02-28 11:17:17 -0800889 item.mSlot = slot;
Brian Andersond6927fb2016-07-23 23:37:30 -0700890 item.mFence = acquireFence;
Brian Anderson3d4039d2016-09-23 16:31:30 -0700891 item.mFenceTime = acquireFenceTime;
Pablo Ceballos567dbbb2015-08-26 18:59:08 -0700892 item.mIsDroppable = mCore->mAsyncMode ||
Sungtak Lee45e9e0b2019-05-28 13:38:23 -0700893 (mConsumerIsSurfaceFlinger && mCore->mQueueBufferCanDrop) ||
Sungtak Lee3249fb62019-03-02 16:40:47 -0800894 (mCore->mLegacyBufferDrop && mCore->mQueueBufferCanDrop) ||
Pablo Ceballos3559fbf2016-03-17 15:50:23 -0700895 (mCore->mSharedBufferMode && mCore->mSharedBufferSlot == slot);
Dan Stoza5065a552015-03-17 16:23:42 -0700896 item.mSurfaceDamage = surfaceDamage;
Pablo Ceballos06312182015-10-07 16:32:12 -0700897 item.mQueuedBuffer = true;
Pablo Ceballos3559fbf2016-03-17 15:50:23 -0700898 item.mAutoRefresh = mCore->mSharedBufferMode && mCore->mAutoRefresh;
Chia-I Wu5c6e4632018-01-11 08:54:38 -0800899 item.mApi = mCore->mConnectedApi;
Dan Stoza289ade12014-02-28 11:17:17 -0800900
Ruben Brunk1681d952014-06-27 15:51:55 -0700901 mStickyTransform = stickyTransform;
902
Pablo Ceballosccdfd602015-10-07 15:05:45 -0700903 // Cache the shared buffer data so that the BufferItem can be recreated.
Pablo Ceballos3559fbf2016-03-17 15:50:23 -0700904 if (mCore->mSharedBufferMode) {
905 mCore->mSharedBufferCache.crop = crop;
906 mCore->mSharedBufferCache.transform = transform;
907 mCore->mSharedBufferCache.scalingMode = static_cast<uint32_t>(
Pablo Ceballosccdfd602015-10-07 15:05:45 -0700908 scalingMode);
Pablo Ceballos3559fbf2016-03-17 15:50:23 -0700909 mCore->mSharedBufferCache.dataspace = dataSpace;
Pablo Ceballosccdfd602015-10-07 15:05:45 -0700910 }
911
Shuzhen Wang22f842b2017-01-18 23:02:36 -0800912 output->bufferReplaced = false;
Dan Stoza289ade12014-02-28 11:17:17 -0800913 if (mCore->mQueue.empty()) {
914 // When the queue is empty, we can ignore mDequeueBufferCannotBlock
915 // and simply queue this buffer
916 mCore->mQueue.push_back(item);
Dan Stoza8dc55392014-11-04 11:37:46 -0800917 frameAvailableListener = mCore->mConsumerListener;
Dan Stoza289ade12014-02-28 11:17:17 -0800918 } else {
Pablo Ceballos4d85da42016-04-19 20:11:56 -0700919 // When the queue is not empty, we need to look at the last buffer
920 // in the queue to see if we need to replace it
921 const BufferItem& last = mCore->mQueue.itemAt(
922 mCore->mQueue.size() - 1);
923 if (last.mIsDroppable) {
Pablo Ceballos23b4abe2016-01-08 12:15:22 -0800924
Pablo Ceballos4d85da42016-04-19 20:11:56 -0700925 if (!last.mIsStale) {
926 mSlots[last.mSlot].mBufferState.freeQueued();
Pablo Ceballosccdfd602015-10-07 15:05:45 -0700927
Pablo Ceballos3559fbf2016-03-17 15:50:23 -0700928 // After leaving shared buffer mode, the shared buffer will
Pablo Ceballosccdfd602015-10-07 15:05:45 -0700929 // still be around. Mark it as no longer shared if this
930 // operation causes it to be free.
Pablo Ceballos3559fbf2016-03-17 15:50:23 -0700931 if (!mCore->mSharedBufferMode &&
Pablo Ceballos4d85da42016-04-19 20:11:56 -0700932 mSlots[last.mSlot].mBufferState.isFree()) {
933 mSlots[last.mSlot].mBufferState.mShared = false;
Pablo Ceballosccdfd602015-10-07 15:05:45 -0700934 }
935 // Don't put the shared buffer on the free list.
Pablo Ceballos4d85da42016-04-19 20:11:56 -0700936 if (!mSlots[last.mSlot].mBufferState.isShared()) {
937 mCore->mActiveBuffers.erase(last.mSlot);
938 mCore->mFreeBuffers.push_back(last.mSlot);
Shuzhen Wang22f842b2017-01-18 23:02:36 -0800939 output->bufferReplaced = true;
Pablo Ceballosccdfd602015-10-07 15:05:45 -0700940 }
Dan Stoza289ade12014-02-28 11:17:17 -0800941 }
Pablo Ceballos23b4abe2016-01-08 12:15:22 -0800942
Dan Stoza289ade12014-02-28 11:17:17 -0800943 // Overwrite the droppable buffer with the incoming one
Pablo Ceballos4d85da42016-04-19 20:11:56 -0700944 mCore->mQueue.editItemAt(mCore->mQueue.size() - 1) = item;
Dan Stoza8dc55392014-11-04 11:37:46 -0800945 frameReplacedListener = mCore->mConsumerListener;
Dan Stoza289ade12014-02-28 11:17:17 -0800946 } else {
947 mCore->mQueue.push_back(item);
Dan Stoza8dc55392014-11-04 11:37:46 -0800948 frameAvailableListener = mCore->mConsumerListener;
Dan Stoza289ade12014-02-28 11:17:17 -0800949 }
950 }
951
952 mCore->mBufferHasBeenQueued = true;
Jorim Jaggi6ae55032019-04-02 02:27:44 +0200953 mCore->mDequeueCondition.notify_all();
Dan Stoza50101d02016-04-07 16:53:23 -0700954 mCore->mLastQueuedSlot = slot;
Dan Stoza289ade12014-02-28 11:17:17 -0800955
Brian Anderson7c3ba8a2016-07-25 12:48:08 -0700956 output->width = mCore->mDefaultWidth;
957 output->height = mCore->mDefaultHeight;
Yiwei Zhang538cedc2019-06-24 19:35:03 -0700958 output->transformHint = mCore->mTransformHintInUse = mCore->mTransformHint;
Brian Anderson7c3ba8a2016-07-25 12:48:08 -0700959 output->numPendingBuffers = static_cast<uint32_t>(mCore->mQueue.size());
960 output->nextFrameNumber = mCore->mFrameCounter + 1;
Dan Stoza289ade12014-02-28 11:17:17 -0800961
Colin Cross152c3b72016-09-27 14:08:19 -0700962 ATRACE_INT(mCore->mConsumerName.string(),
963 static_cast<int32_t>(mCore->mQueue.size()));
Dan Stozae77c7662016-05-13 11:37:28 -0700964 mCore->mOccupancyTracker.registerOccupancyChange(mCore->mQueue.size());
Dan Stoza8dc55392014-11-04 11:37:46 -0800965
966 // Take a ticket for the callback functions
967 callbackTicket = mNextCallbackTicket++;
Dan Stoza0de7ea72015-04-23 13:20:51 -0700968
Pablo Ceballos9e314332016-01-12 13:49:19 -0800969 VALIDATE_CONSISTENCY();
Dan Stoza289ade12014-02-28 11:17:17 -0800970 } // Autolock scope
971
Irvel468051e2016-06-13 16:44:44 -0700972 // It is okay not to clear the GraphicBuffer when the consumer is SurfaceFlinger because
973 // it is guaranteed that the BufferQueue is inside SurfaceFlinger's process and
974 // there will be no Binder call
975 if (!mConsumerIsSurfaceFlinger) {
976 item.mGraphicBuffer.clear();
977 }
978
Dan Stoza8dc55392014-11-04 11:37:46 -0800979 // Call back without the main BufferQueue lock held, but with the callback
980 // lock held so we can ensure that callbacks occur in order
Mathias Agopian4f6ce7c2017-04-03 17:14:31 -0700981
982 int connectedApi;
983 sp<Fence> lastQueuedFence;
984
985 { // scope for the lock
Jorim Jaggi6ae55032019-04-02 02:27:44 +0200986 std::unique_lock<std::mutex> lock(mCallbackMutex);
Dan Stoza8dc55392014-11-04 11:37:46 -0800987 while (callbackTicket != mCurrentCallbackTicket) {
Jorim Jaggi6ae55032019-04-02 02:27:44 +0200988 mCallbackCondition.wait(lock);
Dan Stoza8dc55392014-11-04 11:37:46 -0800989 }
990
Yi Kong48a619f2018-06-05 16:34:59 -0700991 if (frameAvailableListener != nullptr) {
Dan Stoza8dc55392014-11-04 11:37:46 -0800992 frameAvailableListener->onFrameAvailable(item);
Yi Kong48a619f2018-06-05 16:34:59 -0700993 } else if (frameReplacedListener != nullptr) {
Dan Stoza8dc55392014-11-04 11:37:46 -0800994 frameReplacedListener->onFrameReplaced(item);
995 }
996
Mathias Agopian4f6ce7c2017-04-03 17:14:31 -0700997 connectedApi = mCore->mConnectedApi;
998 lastQueuedFence = std::move(mLastQueueBufferFence);
999
1000 mLastQueueBufferFence = std::move(acquireFence);
1001 mLastQueuedCrop = item.mCrop;
1002 mLastQueuedTransform = item.mTransform;
1003
Dan Stoza8dc55392014-11-04 11:37:46 -08001004 ++mCurrentCallbackTicket;
Jorim Jaggi6ae55032019-04-02 02:27:44 +02001005 mCallbackCondition.notify_all();
Dan Stoza289ade12014-02-28 11:17:17 -08001006 }
1007
Brian Andersond6927fb2016-07-23 23:37:30 -07001008 // Update and get FrameEventHistory.
1009 nsecs_t postedTime = systemTime(SYSTEM_TIME_MONOTONIC);
1010 NewFrameEventsEntry newFrameEventsEntry = {
1011 currentFrameNumber,
1012 postedTime,
1013 requestedPresentTimestamp,
Brian Anderson3d4039d2016-09-23 16:31:30 -07001014 std::move(acquireFenceTime)
Brian Andersond6927fb2016-07-23 23:37:30 -07001015 };
Brian Anderson7c3ba8a2016-07-25 12:48:08 -07001016 addAndGetFrameTimestamps(&newFrameEventsEntry,
1017 getFrameTimestamps ? &output->frameTimestamps : nullptr);
Brian Andersond6927fb2016-07-23 23:37:30 -07001018
Yiwei Zhangcb7dd002019-04-16 11:03:01 -07001019 // Wait without lock held
1020 if (connectedApi == NATIVE_WINDOW_API_EGL) {
1021 // Waiting here allows for two full buffers to be queued but not a
1022 // third. In the event that frames take varying time, this makes a
1023 // small trade-off in favor of latency rather than throughput.
1024 lastQueuedFence->waitForever("Throttling EGL Production");
1025 }
1026
Dan Stoza289ade12014-02-28 11:17:17 -08001027 return NO_ERROR;
1028}
1029
Pablo Ceballos583b1b32015-09-03 18:23:52 -07001030status_t BufferQueueProducer::cancelBuffer(int slot, const sp<Fence>& fence) {
Dan Stoza289ade12014-02-28 11:17:17 -08001031 ATRACE_CALL();
1032 BQ_LOGV("cancelBuffer: slot %d", slot);
Jorim Jaggi6ae55032019-04-02 02:27:44 +02001033 std::lock_guard<std::mutex> lock(mCore->mMutex);
Dan Stoza289ade12014-02-28 11:17:17 -08001034
1035 if (mCore->mIsAbandoned) {
1036 BQ_LOGE("cancelBuffer: BufferQueue has been abandoned");
Pablo Ceballos583b1b32015-09-03 18:23:52 -07001037 return NO_INIT;
1038 }
1039
1040 if (mCore->mConnectedApi == BufferQueueCore::NO_CONNECTED_API) {
1041 BQ_LOGE("cancelBuffer: BufferQueue has no connected producer");
1042 return NO_INIT;
Dan Stoza289ade12014-02-28 11:17:17 -08001043 }
1044
Pablo Ceballos3559fbf2016-03-17 15:50:23 -07001045 if (mCore->mSharedBufferMode) {
1046 BQ_LOGE("cancelBuffer: cannot cancel a buffer in shared buffer mode");
Pablo Ceballosccdfd602015-10-07 15:05:45 -07001047 return BAD_VALUE;
1048 }
1049
Dan Stoza3e96f192014-03-03 10:16:19 -08001050 if (slot < 0 || slot >= BufferQueueDefs::NUM_BUFFER_SLOTS) {
Dan Stoza289ade12014-02-28 11:17:17 -08001051 BQ_LOGE("cancelBuffer: slot index %d out of range [0, %d)",
Dan Stoza3e96f192014-03-03 10:16:19 -08001052 slot, BufferQueueDefs::NUM_BUFFER_SLOTS);
Pablo Ceballos583b1b32015-09-03 18:23:52 -07001053 return BAD_VALUE;
Pablo Ceballosccdfd602015-10-07 15:05:45 -07001054 } else if (!mSlots[slot].mBufferState.isDequeued()) {
Dan Stoza289ade12014-02-28 11:17:17 -08001055 BQ_LOGE("cancelBuffer: slot %d is not owned by the producer "
Pablo Ceballosccdfd602015-10-07 15:05:45 -07001056 "(state = %s)", slot, mSlots[slot].mBufferState.string());
Pablo Ceballos583b1b32015-09-03 18:23:52 -07001057 return BAD_VALUE;
Yi Kong48a619f2018-06-05 16:34:59 -07001058 } else if (fence == nullptr) {
Dan Stoza289ade12014-02-28 11:17:17 -08001059 BQ_LOGE("cancelBuffer: fence is NULL");
Pablo Ceballos583b1b32015-09-03 18:23:52 -07001060 return BAD_VALUE;
Dan Stoza289ade12014-02-28 11:17:17 -08001061 }
1062
Pablo Ceballosccdfd602015-10-07 15:05:45 -07001063 mSlots[slot].mBufferState.cancel();
1064
Pablo Ceballos3559fbf2016-03-17 15:50:23 -07001065 // After leaving shared buffer mode, the shared buffer will still be around.
Pablo Ceballosccdfd602015-10-07 15:05:45 -07001066 // Mark it as no longer shared if this operation causes it to be free.
Pablo Ceballos3559fbf2016-03-17 15:50:23 -07001067 if (!mCore->mSharedBufferMode && mSlots[slot].mBufferState.isFree()) {
Pablo Ceballosccdfd602015-10-07 15:05:45 -07001068 mSlots[slot].mBufferState.mShared = false;
1069 }
1070
1071 // Don't put the shared buffer on the free list.
1072 if (!mSlots[slot].mBufferState.isShared()) {
Pablo Ceballos23b4abe2016-01-08 12:15:22 -08001073 mCore->mActiveBuffers.erase(slot);
1074 mCore->mFreeBuffers.push_back(slot);
Pablo Ceballosccdfd602015-10-07 15:05:45 -07001075 }
Pablo Ceballos23b4abe2016-01-08 12:15:22 -08001076
Dan Stoza289ade12014-02-28 11:17:17 -08001077 mSlots[slot].mFence = fence;
Jorim Jaggi6ae55032019-04-02 02:27:44 +02001078 mCore->mDequeueCondition.notify_all();
Pablo Ceballos9e314332016-01-12 13:49:19 -08001079 VALIDATE_CONSISTENCY();
Pablo Ceballos583b1b32015-09-03 18:23:52 -07001080
1081 return NO_ERROR;
Dan Stoza289ade12014-02-28 11:17:17 -08001082}
1083
1084int BufferQueueProducer::query(int what, int *outValue) {
1085 ATRACE_CALL();
Jorim Jaggi6ae55032019-04-02 02:27:44 +02001086 std::lock_guard<std::mutex> lock(mCore->mMutex);
Dan Stoza289ade12014-02-28 11:17:17 -08001087
Yi Kong48a619f2018-06-05 16:34:59 -07001088 if (outValue == nullptr) {
Dan Stoza289ade12014-02-28 11:17:17 -08001089 BQ_LOGE("query: outValue was NULL");
1090 return BAD_VALUE;
1091 }
1092
1093 if (mCore->mIsAbandoned) {
1094 BQ_LOGE("query: BufferQueue has been abandoned");
1095 return NO_INIT;
1096 }
1097
1098 int value;
1099 switch (what) {
1100 case NATIVE_WINDOW_WIDTH:
Dan Stoza3be1c6b2014-11-18 10:24:03 -08001101 value = static_cast<int32_t>(mCore->mDefaultWidth);
Dan Stoza289ade12014-02-28 11:17:17 -08001102 break;
1103 case NATIVE_WINDOW_HEIGHT:
Dan Stoza3be1c6b2014-11-18 10:24:03 -08001104 value = static_cast<int32_t>(mCore->mDefaultHeight);
Dan Stoza289ade12014-02-28 11:17:17 -08001105 break;
1106 case NATIVE_WINDOW_FORMAT:
Dan Stoza3be1c6b2014-11-18 10:24:03 -08001107 value = static_cast<int32_t>(mCore->mDefaultBufferFormat);
Dan Stoza289ade12014-02-28 11:17:17 -08001108 break;
Craig Donner6ebc46a2016-10-21 15:23:44 -07001109 case NATIVE_WINDOW_LAYER_COUNT:
1110 // All BufferQueue buffers have a single layer.
1111 value = BQ_LAYER_COUNT;
1112 break;
Dan Stoza289ade12014-02-28 11:17:17 -08001113 case NATIVE_WINDOW_MIN_UNDEQUEUED_BUFFERS:
Pablo Ceballos567dbbb2015-08-26 18:59:08 -07001114 value = mCore->getMinUndequeuedBufferCountLocked();
Dan Stoza289ade12014-02-28 11:17:17 -08001115 break;
Ruben Brunk1681d952014-06-27 15:51:55 -07001116 case NATIVE_WINDOW_STICKY_TRANSFORM:
Dan Stoza3be1c6b2014-11-18 10:24:03 -08001117 value = static_cast<int32_t>(mStickyTransform);
Ruben Brunk1681d952014-06-27 15:51:55 -07001118 break;
Dan Stoza289ade12014-02-28 11:17:17 -08001119 case NATIVE_WINDOW_CONSUMER_RUNNING_BEHIND:
1120 value = (mCore->mQueue.size() > 1);
1121 break;
1122 case NATIVE_WINDOW_CONSUMER_USAGE_BITS:
Chia-I Wue2786ea2017-08-07 10:36:08 -07001123 // deprecated; higher 32 bits are truncated
Dan Stoza3be1c6b2014-11-18 10:24:03 -08001124 value = static_cast<int32_t>(mCore->mConsumerUsageBits);
Dan Stoza289ade12014-02-28 11:17:17 -08001125 break;
Eino-Ville Talvala82c6bcc2015-02-19 16:10:43 -08001126 case NATIVE_WINDOW_DEFAULT_DATASPACE:
1127 value = static_cast<int32_t>(mCore->mDefaultBufferDataSpace);
1128 break;
Dan Stoza4afd8b62015-02-25 16:49:08 -08001129 case NATIVE_WINDOW_BUFFER_AGE:
1130 if (mCore->mBufferAge > INT32_MAX) {
1131 value = 0;
1132 } else {
1133 value = static_cast<int32_t>(mCore->mBufferAge);
1134 }
1135 break;
Jiwen 'Steve' Cai20419132017-04-21 18:49:53 -07001136 case NATIVE_WINDOW_CONSUMER_IS_PROTECTED:
1137 value = static_cast<int32_t>(mCore->mConsumerIsProtected);
1138 break;
Yiwei Zhangdbd96152018-02-08 14:22:53 -08001139 case NATIVE_WINDOW_MAX_BUFFER_COUNT:
1140 value = static_cast<int32_t>(mCore->mMaxBufferCount);
1141 break;
Dan Stoza289ade12014-02-28 11:17:17 -08001142 default:
1143 return BAD_VALUE;
1144 }
1145
1146 BQ_LOGV("query: %d? %d", what, value);
1147 *outValue = value;
1148 return NO_ERROR;
1149}
1150
Dan Stozaf0eaf252014-03-21 13:05:51 -07001151status_t BufferQueueProducer::connect(const sp<IProducerListener>& listener,
Dan Stoza289ade12014-02-28 11:17:17 -08001152 int api, bool producerControlledByApp, QueueBufferOutput *output) {
1153 ATRACE_CALL();
Jorim Jaggi6ae55032019-04-02 02:27:44 +02001154 std::lock_guard<std::mutex> lock(mCore->mMutex);
Pablo Ceballos981066c2016-02-18 12:54:37 -08001155 mConsumerName = mCore->mConsumerName;
1156 BQ_LOGV("connect: api=%d producerControlledByApp=%s", api,
1157 producerControlledByApp ? "true" : "false");
1158
1159 if (mCore->mIsAbandoned) {
1160 BQ_LOGE("connect: BufferQueue has been abandoned");
1161 return NO_INIT;
1162 }
1163
Yi Kong48a619f2018-06-05 16:34:59 -07001164 if (mCore->mConsumerListener == nullptr) {
Pablo Ceballos981066c2016-02-18 12:54:37 -08001165 BQ_LOGE("connect: BufferQueue has no consumer");
1166 return NO_INIT;
1167 }
1168
Yi Kong48a619f2018-06-05 16:34:59 -07001169 if (output == nullptr) {
Pablo Ceballos981066c2016-02-18 12:54:37 -08001170 BQ_LOGE("connect: output was NULL");
1171 return BAD_VALUE;
1172 }
1173
1174 if (mCore->mConnectedApi != BufferQueueCore::NO_CONNECTED_API) {
1175 BQ_LOGE("connect: already connected (cur=%d req=%d)",
1176 mCore->mConnectedApi, api);
1177 return BAD_VALUE;
1178 }
1179
1180 int delta = mCore->getMaxBufferCountLocked(mCore->mAsyncMode,
1181 mDequeueTimeout < 0 ?
1182 mCore->mConsumerControlledByApp && producerControlledByApp : false,
1183 mCore->mMaxBufferCount) -
1184 mCore->getMaxBufferCountLocked();
1185 if (!mCore->adjustAvailableSlotsLocked(delta)) {
1186 BQ_LOGE("connect: BufferQueue failed to adjust the number of available "
1187 "slots. Delta = %d", delta);
1188 return BAD_VALUE;
1189 }
1190
Dan Stoza289ade12014-02-28 11:17:17 -08001191 int status = NO_ERROR;
Pablo Ceballos981066c2016-02-18 12:54:37 -08001192 switch (api) {
1193 case NATIVE_WINDOW_API_EGL:
1194 case NATIVE_WINDOW_API_CPU:
1195 case NATIVE_WINDOW_API_MEDIA:
1196 case NATIVE_WINDOW_API_CAMERA:
1197 mCore->mConnectedApi = api;
Brian Anderson7c3ba8a2016-07-25 12:48:08 -07001198
1199 output->width = mCore->mDefaultWidth;
1200 output->height = mCore->mDefaultHeight;
Yiwei Zhang538cedc2019-06-24 19:35:03 -07001201 output->transformHint = mCore->mTransformHintInUse = mCore->mTransformHint;
Brian Anderson7c3ba8a2016-07-25 12:48:08 -07001202 output->numPendingBuffers =
1203 static_cast<uint32_t>(mCore->mQueue.size());
1204 output->nextFrameNumber = mCore->mFrameCounter + 1;
Shuzhen Wang22f842b2017-01-18 23:02:36 -08001205 output->bufferReplaced = false;
Dan Stoza289ade12014-02-28 11:17:17 -08001206
Yi Kong48a619f2018-06-05 16:34:59 -07001207 if (listener != nullptr) {
Matthew Bouyack3b8e6b22016-10-03 16:24:26 -07001208 // Set up a death notification so that we can disconnect
1209 // automatically if the remote producer dies
Yi Kong48a619f2018-06-05 16:34:59 -07001210 if (IInterface::asBinder(listener)->remoteBinder() != nullptr) {
Matthew Bouyack3b8e6b22016-10-03 16:24:26 -07001211 status = IInterface::asBinder(listener)->linkToDeath(
1212 static_cast<IBinder::DeathRecipient*>(this));
1213 if (status != NO_ERROR) {
1214 BQ_LOGE("connect: linkToDeath failed: %s (%d)",
1215 strerror(-status), status);
1216 }
1217 mCore->mLinkedToDeath = listener;
1218 }
1219 if (listener->needsReleaseNotify()) {
1220 mCore->mConnectedProducerListener = listener;
Dan Stoza289ade12014-02-28 11:17:17 -08001221 }
Pablo Ceballos981066c2016-02-18 12:54:37 -08001222 }
Pablo Ceballos981066c2016-02-18 12:54:37 -08001223 break;
1224 default:
1225 BQ_LOGE("connect: unknown API %d", api);
1226 status = BAD_VALUE;
1227 break;
Dan Stoza289ade12014-02-28 11:17:17 -08001228 }
Jayant Chowdharyad9fe272019-03-07 22:36:06 -08001229 mCore->mConnectedPid = BufferQueueThreadState::getCallingPid();
Pablo Ceballos981066c2016-02-18 12:54:37 -08001230 mCore->mBufferHasBeenQueued = false;
1231 mCore->mDequeueBufferCannotBlock = false;
Sungtak Lee3249fb62019-03-02 16:40:47 -08001232 mCore->mQueueBufferCanDrop = false;
1233 mCore->mLegacyBufferDrop = true;
1234 if (mCore->mConsumerControlledByApp && producerControlledByApp) {
1235 mCore->mDequeueBufferCannotBlock = mDequeueTimeout < 0;
1236 mCore->mQueueBufferCanDrop = mDequeueTimeout <= 0;
Dan Stoza127fc632015-06-30 13:43:32 -07001237 }
Dan Stoza289ade12014-02-28 11:17:17 -08001238
Pablo Ceballos981066c2016-02-18 12:54:37 -08001239 mCore->mAllowAllocation = true;
1240 VALIDATE_CONSISTENCY();
Dan Stoza289ade12014-02-28 11:17:17 -08001241 return status;
1242}
1243
Robert Carr97b9c862016-09-08 13:54:35 -07001244status_t BufferQueueProducer::disconnect(int api, DisconnectMode mode) {
Dan Stoza289ade12014-02-28 11:17:17 -08001245 ATRACE_CALL();
Pablo Ceballosccdfd602015-10-07 15:05:45 -07001246 BQ_LOGV("disconnect: api %d", api);
Dan Stoza289ade12014-02-28 11:17:17 -08001247
1248 int status = NO_ERROR;
1249 sp<IConsumerListener> listener;
1250 { // Autolock scope
Jorim Jaggi6ae55032019-04-02 02:27:44 +02001251 std::unique_lock<std::mutex> lock(mCore->mMutex);
Robert Carr97b9c862016-09-08 13:54:35 -07001252
1253 if (mode == DisconnectMode::AllLocal) {
Jayant Chowdharyad9fe272019-03-07 22:36:06 -08001254 if (BufferQueueThreadState::getCallingPid() != mCore->mConnectedPid) {
Robert Carr97b9c862016-09-08 13:54:35 -07001255 return NO_ERROR;
1256 }
1257 api = BufferQueueCore::CURRENTLY_CONNECTED_API;
1258 }
1259
Jorim Jaggi6ae55032019-04-02 02:27:44 +02001260 mCore->waitWhileAllocatingLocked(lock);
Dan Stoza289ade12014-02-28 11:17:17 -08001261
1262 if (mCore->mIsAbandoned) {
1263 // It's not really an error to disconnect after the surface has
1264 // been abandoned; it should just be a no-op.
1265 return NO_ERROR;
1266 }
1267
Chong Zhang1b3a9ac2016-02-29 16:47:47 -08001268 if (api == BufferQueueCore::CURRENTLY_CONNECTED_API) {
Chong Zhang5ac51482017-02-16 15:52:33 -08001269 if (mCore->mConnectedApi == NATIVE_WINDOW_API_MEDIA) {
1270 ALOGD("About to force-disconnect API_MEDIA, mode=%d", mode);
1271 }
Chong Zhang1b3a9ac2016-02-29 16:47:47 -08001272 api = mCore->mConnectedApi;
Chong Zhang26bb2b12016-03-08 12:08:33 -08001273 // If we're asked to disconnect the currently connected api but
1274 // nobody is connected, it's not really an error.
1275 if (api == BufferQueueCore::NO_CONNECTED_API) {
1276 return NO_ERROR;
1277 }
Chong Zhang1b3a9ac2016-02-29 16:47:47 -08001278 }
1279
Dan Stoza289ade12014-02-28 11:17:17 -08001280 switch (api) {
1281 case NATIVE_WINDOW_API_EGL:
1282 case NATIVE_WINDOW_API_CPU:
1283 case NATIVE_WINDOW_API_MEDIA:
1284 case NATIVE_WINDOW_API_CAMERA:
1285 if (mCore->mConnectedApi == api) {
1286 mCore->freeAllBuffersLocked();
1287
1288 // Remove our death notification callback if we have one
Yi Kong48a619f2018-06-05 16:34:59 -07001289 if (mCore->mLinkedToDeath != nullptr) {
Dan Stozaf0eaf252014-03-21 13:05:51 -07001290 sp<IBinder> token =
Matthew Bouyack3b8e6b22016-10-03 16:24:26 -07001291 IInterface::asBinder(mCore->mLinkedToDeath);
Dan Stoza289ade12014-02-28 11:17:17 -08001292 // This can fail if we're here because of the death
1293 // notification, but we just ignore it
1294 token->unlinkToDeath(
1295 static_cast<IBinder::DeathRecipient*>(this));
1296 }
Pablo Ceballos3559fbf2016-03-17 15:50:23 -07001297 mCore->mSharedBufferSlot =
Pablo Ceballos23b4abe2016-01-08 12:15:22 -08001298 BufferQueueCore::INVALID_BUFFER_SLOT;
Yi Kong48a619f2018-06-05 16:34:59 -07001299 mCore->mLinkedToDeath = nullptr;
1300 mCore->mConnectedProducerListener = nullptr;
Dan Stoza289ade12014-02-28 11:17:17 -08001301 mCore->mConnectedApi = BufferQueueCore::NO_CONNECTED_API;
Robert Carr97b9c862016-09-08 13:54:35 -07001302 mCore->mConnectedPid = -1;
Jesse Hall399184a2014-03-03 15:42:54 -08001303 mCore->mSidebandStream.clear();
Jorim Jaggi6ae55032019-04-02 02:27:44 +02001304 mCore->mDequeueCondition.notify_all();
Yiwei Zhang538cedc2019-06-24 19:35:03 -07001305 mCore->mAutoPrerotation = false;
Dan Stoza289ade12014-02-28 11:17:17 -08001306 listener = mCore->mConsumerListener;
Wonsik Kim3e198b22017-04-07 15:43:16 -07001307 } else if (mCore->mConnectedApi == BufferQueueCore::NO_CONNECTED_API) {
1308 BQ_LOGE("disconnect: not connected (req=%d)", api);
1309 status = NO_INIT;
1310 } else {
Pablo Ceballosccdfd602015-10-07 15:05:45 -07001311 BQ_LOGE("disconnect: still connected to another API "
Dan Stoza289ade12014-02-28 11:17:17 -08001312 "(cur=%d req=%d)", mCore->mConnectedApi, api);
Dan Stoza9f3053d2014-03-06 15:14:33 -08001313 status = BAD_VALUE;
Dan Stoza289ade12014-02-28 11:17:17 -08001314 }
1315 break;
1316 default:
Pablo Ceballosccdfd602015-10-07 15:05:45 -07001317 BQ_LOGE("disconnect: unknown API %d", api);
Dan Stoza9f3053d2014-03-06 15:14:33 -08001318 status = BAD_VALUE;
Dan Stoza289ade12014-02-28 11:17:17 -08001319 break;
1320 }
1321 } // Autolock scope
1322
1323 // Call back without lock held
Yi Kong48a619f2018-06-05 16:34:59 -07001324 if (listener != nullptr) {
Dan Stoza289ade12014-02-28 11:17:17 -08001325 listener->onBuffersReleased();
Brian Anderson5ea5e592016-12-01 16:54:33 -08001326 listener->onDisconnect();
Dan Stoza289ade12014-02-28 11:17:17 -08001327 }
1328
1329 return status;
1330}
1331
Jesse Hall399184a2014-03-03 15:42:54 -08001332status_t BufferQueueProducer::setSidebandStream(const sp<NativeHandle>& stream) {
Wonsik Kimafe30812014-03-31 23:16:08 +09001333 sp<IConsumerListener> listener;
1334 { // Autolock scope
Jorim Jaggi6ae55032019-04-02 02:27:44 +02001335 std::lock_guard<std::mutex> _l(mCore->mMutex);
Wonsik Kimafe30812014-03-31 23:16:08 +09001336 mCore->mSidebandStream = stream;
1337 listener = mCore->mConsumerListener;
1338 } // Autolock scope
1339
Yi Kong48a619f2018-06-05 16:34:59 -07001340 if (listener != nullptr) {
Wonsik Kimafe30812014-03-31 23:16:08 +09001341 listener->onSidebandStreamChanged();
1342 }
Jesse Hall399184a2014-03-03 15:42:54 -08001343 return NO_ERROR;
1344}
1345
Pablo Ceballos567dbbb2015-08-26 18:59:08 -07001346void BufferQueueProducer::allocateBuffers(uint32_t width, uint32_t height,
Mathias Agopiancb496ac2017-05-22 14:21:00 -07001347 PixelFormat format, uint64_t usage) {
Antoine Labour78014f32014-07-15 21:17:03 -07001348 ATRACE_CALL();
Yiwei Zhang538cedc2019-06-24 19:35:03 -07001349
1350 const bool useDefaultSize = !width && !height;
Antoine Labour78014f32014-07-15 21:17:03 -07001351 while (true) {
Antoine Labour78014f32014-07-15 21:17:03 -07001352 size_t newBufferCount = 0;
1353 uint32_t allocWidth = 0;
1354 uint32_t allocHeight = 0;
Dan Stoza3be1c6b2014-11-18 10:24:03 -08001355 PixelFormat allocFormat = PIXEL_FORMAT_UNKNOWN;
Mathias Agopiancb496ac2017-05-22 14:21:00 -07001356 uint64_t allocUsage = 0;
Chia-I Wu1dbf0e32018-02-07 14:40:08 -08001357 std::string allocName;
Antoine Labour78014f32014-07-15 21:17:03 -07001358 { // Autolock scope
Jorim Jaggi6ae55032019-04-02 02:27:44 +02001359 std::unique_lock<std::mutex> lock(mCore->mMutex);
1360 mCore->waitWhileAllocatingLocked(lock);
Dan Stoza29a3e902014-06-20 13:13:57 -07001361
Dan Stoza9de72932015-04-16 17:28:43 -07001362 if (!mCore->mAllowAllocation) {
1363 BQ_LOGE("allocateBuffers: allocation is not allowed for this "
1364 "BufferQueue");
1365 return;
1366 }
1367
Jorim Jaggi0a3e7842018-07-17 13:48:33 +02001368 // Only allocate one buffer at a time to reduce risks of overlapping an allocation from
1369 // both allocateBuffers and dequeueBuffer.
1370 newBufferCount = mCore->mFreeSlots.empty() ? 0 : 1;
Pablo Ceballos23b4abe2016-01-08 12:15:22 -08001371 if (newBufferCount == 0) {
Antoine Labour78014f32014-07-15 21:17:03 -07001372 return;
1373 }
Pablo Ceballos23b4abe2016-01-08 12:15:22 -08001374
Antoine Labour78014f32014-07-15 21:17:03 -07001375 allocWidth = width > 0 ? width : mCore->mDefaultWidth;
1376 allocHeight = height > 0 ? height : mCore->mDefaultHeight;
Yiwei Zhang538cedc2019-06-24 19:35:03 -07001377 if (useDefaultSize && mCore->mAutoPrerotation &&
1378 (mCore->mTransformHintInUse & NATIVE_WINDOW_TRANSFORM_ROT_90)) {
1379 std::swap(allocWidth, allocHeight);
1380 }
1381
Antoine Labour78014f32014-07-15 21:17:03 -07001382 allocFormat = format != 0 ? format : mCore->mDefaultBufferFormat;
1383 allocUsage = usage | mCore->mConsumerUsageBits;
Chia-I Wu1dbf0e32018-02-07 14:40:08 -08001384 allocName.assign(mCore->mConsumerName.string(), mCore->mConsumerName.size());
Antoine Labour78014f32014-07-15 21:17:03 -07001385
1386 mCore->mIsAllocating = true;
1387 } // Autolock scope
1388
Dan Stoza3be1c6b2014-11-18 10:24:03 -08001389 Vector<sp<GraphicBuffer>> buffers;
Jorim Jaggi0a3e7842018-07-17 13:48:33 +02001390 for (size_t i = 0; i < newBufferCount; ++i) {
Mathias Agopian0556d792017-03-22 15:49:32 -07001391 sp<GraphicBuffer> graphicBuffer = new GraphicBuffer(
Craig Donner6ebc46a2016-10-21 15:23:44 -07001392 allocWidth, allocHeight, allocFormat, BQ_LAYER_COUNT,
Chia-I Wu1dbf0e32018-02-07 14:40:08 -08001393 allocUsage, allocName);
Mathias Agopian0556d792017-03-22 15:49:32 -07001394
1395 status_t result = graphicBuffer->initCheck();
1396
Antoine Labour78014f32014-07-15 21:17:03 -07001397 if (result != NO_ERROR) {
1398 BQ_LOGE("allocateBuffers: failed to allocate buffer (%u x %u, format"
Mathias Agopiancb496ac2017-05-22 14:21:00 -07001399 " %u, usage %#" PRIx64 ")", width, height, format, usage);
Jorim Jaggi6ae55032019-04-02 02:27:44 +02001400 std::lock_guard<std::mutex> lock(mCore->mMutex);
Antoine Labour78014f32014-07-15 21:17:03 -07001401 mCore->mIsAllocating = false;
Jorim Jaggi6ae55032019-04-02 02:27:44 +02001402 mCore->mIsAllocatingCondition.notify_all();
Antoine Labour78014f32014-07-15 21:17:03 -07001403 return;
1404 }
1405 buffers.push_back(graphicBuffer);
1406 }
1407
1408 { // Autolock scope
Jorim Jaggi6ae55032019-04-02 02:27:44 +02001409 std::unique_lock<std::mutex> lock(mCore->mMutex);
Antoine Labour78014f32014-07-15 21:17:03 -07001410 uint32_t checkWidth = width > 0 ? width : mCore->mDefaultWidth;
1411 uint32_t checkHeight = height > 0 ? height : mCore->mDefaultHeight;
Yiwei Zhang538cedc2019-06-24 19:35:03 -07001412 if (useDefaultSize && mCore->mAutoPrerotation &&
1413 (mCore->mTransformHintInUse & NATIVE_WINDOW_TRANSFORM_ROT_90)) {
1414 std::swap(checkWidth, checkHeight);
1415 }
1416
Dan Stoza3be1c6b2014-11-18 10:24:03 -08001417 PixelFormat checkFormat = format != 0 ?
1418 format : mCore->mDefaultBufferFormat;
Mathias Agopiancb496ac2017-05-22 14:21:00 -07001419 uint64_t checkUsage = usage | mCore->mConsumerUsageBits;
Antoine Labour78014f32014-07-15 21:17:03 -07001420 if (checkWidth != allocWidth || checkHeight != allocHeight ||
1421 checkFormat != allocFormat || checkUsage != allocUsage) {
1422 // Something changed while we released the lock. Retry.
1423 BQ_LOGV("allocateBuffers: size/format/usage changed while allocating. Retrying.");
1424 mCore->mIsAllocating = false;
Jorim Jaggi6ae55032019-04-02 02:27:44 +02001425 mCore->mIsAllocatingCondition.notify_all();
Dan Stoza29a3e902014-06-20 13:13:57 -07001426 continue;
1427 }
1428
Antoine Labour78014f32014-07-15 21:17:03 -07001429 for (size_t i = 0; i < newBufferCount; ++i) {
Pablo Ceballos23b4abe2016-01-08 12:15:22 -08001430 if (mCore->mFreeSlots.empty()) {
1431 BQ_LOGV("allocateBuffers: a slot was occupied while "
1432 "allocating. Dropping allocated buffer.");
Antoine Labour78014f32014-07-15 21:17:03 -07001433 continue;
1434 }
Pablo Ceballos23b4abe2016-01-08 12:15:22 -08001435 auto slot = mCore->mFreeSlots.begin();
1436 mCore->clearBufferSlotLocked(*slot); // Clean up the slot first
1437 mSlots[*slot].mGraphicBuffer = buffers[i];
1438 mSlots[*slot].mFence = Fence::NO_FENCE;
Dan Stoza0de7ea72015-04-23 13:20:51 -07001439
1440 // freeBufferLocked puts this slot on the free slots list. Since
1441 // we then attached a buffer, move the slot to free buffer list.
Pablo Ceballos23b4abe2016-01-08 12:15:22 -08001442 mCore->mFreeBuffers.push_front(*slot);
Dan Stoza0de7ea72015-04-23 13:20:51 -07001443
Pablo Ceballos23b4abe2016-01-08 12:15:22 -08001444 BQ_LOGV("allocateBuffers: allocated a new buffer in slot %d",
1445 *slot);
Christopher Ferris87e94cd2016-04-26 11:29:08 -07001446
1447 // Make sure the erase is done after all uses of the slot
1448 // iterator since it will be invalid after this point.
1449 mCore->mFreeSlots.erase(slot);
Antoine Labour78014f32014-07-15 21:17:03 -07001450 }
Dan Stoza29a3e902014-06-20 13:13:57 -07001451
Antoine Labour78014f32014-07-15 21:17:03 -07001452 mCore->mIsAllocating = false;
Jorim Jaggi6ae55032019-04-02 02:27:44 +02001453 mCore->mIsAllocatingCondition.notify_all();
Pablo Ceballos9e314332016-01-12 13:49:19 -08001454 VALIDATE_CONSISTENCY();
Jorim Jaggi35b4e382019-03-28 00:44:03 +01001455
1456 // If dequeue is waiting for to allocate a buffer, release the lock until it's not
1457 // waiting anymore so it can use the buffer we just allocated.
1458 while (mDequeueWaitingForAllocation) {
1459 mDequeueWaitingForAllocationCondition.wait(lock);
1460 }
Antoine Labour78014f32014-07-15 21:17:03 -07001461 } // Autolock scope
Dan Stoza29a3e902014-06-20 13:13:57 -07001462 }
1463}
1464
Dan Stoza9de72932015-04-16 17:28:43 -07001465status_t BufferQueueProducer::allowAllocation(bool allow) {
1466 ATRACE_CALL();
1467 BQ_LOGV("allowAllocation: %s", allow ? "true" : "false");
1468
Jorim Jaggi6ae55032019-04-02 02:27:44 +02001469 std::lock_guard<std::mutex> lock(mCore->mMutex);
Dan Stoza9de72932015-04-16 17:28:43 -07001470 mCore->mAllowAllocation = allow;
1471 return NO_ERROR;
1472}
1473
Dan Stoza812ed062015-06-02 15:45:22 -07001474status_t BufferQueueProducer::setGenerationNumber(uint32_t generationNumber) {
1475 ATRACE_CALL();
1476 BQ_LOGV("setGenerationNumber: %u", generationNumber);
1477
Jorim Jaggi6ae55032019-04-02 02:27:44 +02001478 std::lock_guard<std::mutex> lock(mCore->mMutex);
Dan Stoza812ed062015-06-02 15:45:22 -07001479 mCore->mGenerationNumber = generationNumber;
1480 return NO_ERROR;
1481}
1482
Dan Stozac6f30bd2015-06-08 09:32:50 -07001483String8 BufferQueueProducer::getConsumerName() const {
1484 ATRACE_CALL();
Jorim Jaggi6ae55032019-04-02 02:27:44 +02001485 std::lock_guard<std::mutex> lock(mCore->mMutex);
Dan Stozac6f30bd2015-06-08 09:32:50 -07001486 BQ_LOGV("getConsumerName: %s", mConsumerName.string());
1487 return mConsumerName;
1488}
1489
Pablo Ceballos3559fbf2016-03-17 15:50:23 -07001490status_t BufferQueueProducer::setSharedBufferMode(bool sharedBufferMode) {
Pablo Ceballosccdfd602015-10-07 15:05:45 -07001491 ATRACE_CALL();
Pablo Ceballos3559fbf2016-03-17 15:50:23 -07001492 BQ_LOGV("setSharedBufferMode: %d", sharedBufferMode);
Pablo Ceballosccdfd602015-10-07 15:05:45 -07001493
Jorim Jaggi6ae55032019-04-02 02:27:44 +02001494 std::lock_guard<std::mutex> lock(mCore->mMutex);
Pablo Ceballos3559fbf2016-03-17 15:50:23 -07001495 if (!sharedBufferMode) {
1496 mCore->mSharedBufferSlot = BufferQueueCore::INVALID_BUFFER_SLOT;
Pablo Ceballosccdfd602015-10-07 15:05:45 -07001497 }
Pablo Ceballos3559fbf2016-03-17 15:50:23 -07001498 mCore->mSharedBufferMode = sharedBufferMode;
Dan Stoza127fc632015-06-30 13:43:32 -07001499 return NO_ERROR;
1500}
Pablo Ceballosccdfd602015-10-07 15:05:45 -07001501
Pablo Ceballosff95aab2016-01-13 17:09:58 -08001502status_t BufferQueueProducer::setAutoRefresh(bool autoRefresh) {
1503 ATRACE_CALL();
1504 BQ_LOGV("setAutoRefresh: %d", autoRefresh);
1505
Jorim Jaggi6ae55032019-04-02 02:27:44 +02001506 std::lock_guard<std::mutex> lock(mCore->mMutex);
Pablo Ceballosff95aab2016-01-13 17:09:58 -08001507
1508 mCore->mAutoRefresh = autoRefresh;
1509 return NO_ERROR;
1510}
1511
Dan Stoza127fc632015-06-30 13:43:32 -07001512status_t BufferQueueProducer::setDequeueTimeout(nsecs_t timeout) {
1513 ATRACE_CALL();
1514 BQ_LOGV("setDequeueTimeout: %" PRId64, timeout);
1515
Jorim Jaggi6ae55032019-04-02 02:27:44 +02001516 std::lock_guard<std::mutex> lock(mCore->mMutex);
Sungtak Lee42a94c62019-05-24 14:27:14 -07001517 bool dequeueBufferCannotBlock =
1518 timeout >= 0 ? false : mCore->mDequeueBufferCannotBlock;
1519 int delta = mCore->getMaxBufferCountLocked(mCore->mAsyncMode, dequeueBufferCannotBlock,
Pablo Ceballos981066c2016-02-18 12:54:37 -08001520 mCore->mMaxBufferCount) - mCore->getMaxBufferCountLocked();
1521 if (!mCore->adjustAvailableSlotsLocked(delta)) {
1522 BQ_LOGE("setDequeueTimeout: BufferQueue failed to adjust the number of "
1523 "available slots. Delta = %d", delta);
1524 return BAD_VALUE;
Pablo Ceballos23b4abe2016-01-08 12:15:22 -08001525 }
1526
Pablo Ceballos981066c2016-02-18 12:54:37 -08001527 mDequeueTimeout = timeout;
Sungtak Lee42a94c62019-05-24 14:27:14 -07001528 mCore->mDequeueBufferCannotBlock = dequeueBufferCannotBlock;
1529 if (timeout > 0) {
1530 mCore->mQueueBufferCanDrop = false;
Sungtak Lee3249fb62019-03-02 16:40:47 -08001531 }
Pablo Ceballos9e314332016-01-12 13:49:19 -08001532
Pablo Ceballos981066c2016-02-18 12:54:37 -08001533 VALIDATE_CONSISTENCY();
Pablo Ceballosccdfd602015-10-07 15:05:45 -07001534 return NO_ERROR;
1535}
1536
Sungtak Lee3249fb62019-03-02 16:40:47 -08001537status_t BufferQueueProducer::setLegacyBufferDrop(bool drop) {
1538 ATRACE_CALL();
1539 BQ_LOGV("setLegacyBufferDrop: drop = %d", drop);
1540
1541 std::lock_guard<std::mutex> lock(mCore->mMutex);
1542 mCore->mLegacyBufferDrop = drop;
1543 return NO_ERROR;
1544}
1545
Dan Stoza50101d02016-04-07 16:53:23 -07001546status_t BufferQueueProducer::getLastQueuedBuffer(sp<GraphicBuffer>* outBuffer,
John Reck1a61da52016-04-28 13:18:15 -07001547 sp<Fence>* outFence, float outTransformMatrix[16]) {
Dan Stoza50101d02016-04-07 16:53:23 -07001548 ATRACE_CALL();
1549 BQ_LOGV("getLastQueuedBuffer");
1550
Jorim Jaggi6ae55032019-04-02 02:27:44 +02001551 std::lock_guard<std::mutex> lock(mCore->mMutex);
Dan Stoza50101d02016-04-07 16:53:23 -07001552 if (mCore->mLastQueuedSlot == BufferItem::INVALID_BUFFER_SLOT) {
1553 *outBuffer = nullptr;
1554 *outFence = Fence::NO_FENCE;
1555 return NO_ERROR;
1556 }
1557
1558 *outBuffer = mSlots[mCore->mLastQueuedSlot].mGraphicBuffer;
1559 *outFence = mLastQueueBufferFence;
1560
John Reck1a61da52016-04-28 13:18:15 -07001561 // Currently only SurfaceFlinger internally ever changes
1562 // GLConsumer's filtering mode, so we just use 'true' here as
1563 // this is slightly specialized for the current client of this API,
1564 // which does want filtering.
1565 GLConsumer::computeTransformMatrix(outTransformMatrix,
1566 mSlots[mCore->mLastQueuedSlot].mGraphicBuffer, mLastQueuedCrop,
1567 mLastQueuedTransform, true /* filter */);
1568
Dan Stoza50101d02016-04-07 16:53:23 -07001569 return NO_ERROR;
1570}
1571
Brian Anderson3890c392016-07-25 12:48:08 -07001572void BufferQueueProducer::getFrameTimestamps(FrameEventHistoryDelta* outDelta) {
1573 addAndGetFrameTimestamps(nullptr, outDelta);
Brian Andersond6927fb2016-07-23 23:37:30 -07001574}
Pablo Ceballosce796e72016-02-04 19:10:51 -08001575
Brian Anderson3890c392016-07-25 12:48:08 -07001576void BufferQueueProducer::addAndGetFrameTimestamps(
Brian Andersond6927fb2016-07-23 23:37:30 -07001577 const NewFrameEventsEntry* newTimestamps,
Brian Anderson3890c392016-07-25 12:48:08 -07001578 FrameEventHistoryDelta* outDelta) {
1579 if (newTimestamps == nullptr && outDelta == nullptr) {
1580 return;
Brian Andersond6927fb2016-07-23 23:37:30 -07001581 }
1582
1583 ATRACE_CALL();
1584 BQ_LOGV("addAndGetFrameTimestamps");
1585 sp<IConsumerListener> listener;
Pablo Ceballosce796e72016-02-04 19:10:51 -08001586 {
Jorim Jaggi6ae55032019-04-02 02:27:44 +02001587 std::lock_guard<std::mutex> lock(mCore->mMutex);
Pablo Ceballosce796e72016-02-04 19:10:51 -08001588 listener = mCore->mConsumerListener;
1589 }
Yi Kong48a619f2018-06-05 16:34:59 -07001590 if (listener != nullptr) {
Brian Anderson3890c392016-07-25 12:48:08 -07001591 listener->addAndGetFrameTimestamps(newTimestamps, outDelta);
Pablo Ceballosce796e72016-02-04 19:10:51 -08001592 }
Pablo Ceballosce796e72016-02-04 19:10:51 -08001593}
1594
Dan Stoza289ade12014-02-28 11:17:17 -08001595void BufferQueueProducer::binderDied(const wp<android::IBinder>& /* who */) {
1596 // If we're here, it means that a producer we were connected to died.
1597 // We're guaranteed that we are still connected to it because we remove
1598 // this callback upon disconnect. It's therefore safe to read mConnectedApi
1599 // without synchronization here.
1600 int api = mCore->mConnectedApi;
1601 disconnect(api);
1602}
1603
Pablo Ceballos8e3e92b2016-06-27 17:56:53 -07001604status_t BufferQueueProducer::getUniqueId(uint64_t* outId) const {
1605 BQ_LOGV("getUniqueId");
1606
1607 *outId = mCore->mUniqueId;
1608 return NO_ERROR;
1609}
1610
Chia-I Wue2786ea2017-08-07 10:36:08 -07001611status_t BufferQueueProducer::getConsumerUsage(uint64_t* outUsage) const {
1612 BQ_LOGV("getConsumerUsage");
1613
Jorim Jaggi6ae55032019-04-02 02:27:44 +02001614 std::lock_guard<std::mutex> lock(mCore->mMutex);
Chia-I Wue2786ea2017-08-07 10:36:08 -07001615 *outUsage = mCore->mConsumerUsageBits;
1616 return NO_ERROR;
1617}
1618
Yiwei Zhang538cedc2019-06-24 19:35:03 -07001619status_t BufferQueueProducer::setAutoPrerotation(bool autoPrerotation) {
1620 ATRACE_CALL();
1621 BQ_LOGV("setAutoPrerotation: %d", autoPrerotation);
1622
1623 std::lock_guard<std::mutex> lock(mCore->mMutex);
1624
1625 mCore->mAutoPrerotation = autoPrerotation;
1626 return NO_ERROR;
1627}
1628
Dan Stoza289ade12014-02-28 11:17:17 -08001629} // namespace android