blob: 3d3637648c6aa4e9f0228a97ed31ebd8339c08b3 [file] [log] [blame]
Jamie Gennis1a4d8832012-08-02 20:11:05 -07001/*
2 * Copyright (C) 2010 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Mark Salyzyn91100452014-06-09 14:27:45 -070017#include <inttypes.h>
18
Jamie Gennis1a4d8832012-08-02 20:11:05 -070019#define LOG_TAG "ConsumerBase"
20#define ATRACE_TAG ATRACE_TAG_GRAPHICS
21//#define LOG_NDEBUG 0
22
Jamie Gennis1a4d8832012-08-02 20:11:05 -070023#define EGL_EGLEXT_PROTOTYPES
24
25#include <EGL/egl.h>
26#include <EGL/eglext.h>
27
28#include <hardware/hardware.h>
29
Mathias Agopiane9e9fe42017-02-28 16:25:16 -080030#include <cutils/atomic.h>
31
Dan Stozacf3834d2015-03-11 14:04:22 -070032#include <gui/BufferItem.h>
Jamie Gennis1a4d8832012-08-02 20:11:05 -070033#include <gui/ISurfaceComposer.h>
34#include <gui/SurfaceComposerClient.h>
35#include <gui/ConsumerBase.h>
36
37#include <private/gui/ComposerService.h>
38
39#include <utils/Log.h>
40#include <utils/String8.h>
41#include <utils/Trace.h>
42
43// Macros for including the ConsumerBase name in log messages
Dan Albert8b491252014-09-08 18:53:39 -070044#define CB_LOGV(x, ...) ALOGV("[%s] " x, mName.string(), ##__VA_ARGS__)
Dan Stoza3be1c6b2014-11-18 10:24:03 -080045//#define CB_LOGD(x, ...) ALOGD("[%s] " x, mName.string(), ##__VA_ARGS__)
46//#define CB_LOGI(x, ...) ALOGI("[%s] " x, mName.string(), ##__VA_ARGS__)
47//#define CB_LOGW(x, ...) ALOGW("[%s] " x, mName.string(), ##__VA_ARGS__)
Dan Albert8b491252014-09-08 18:53:39 -070048#define CB_LOGE(x, ...) ALOGE("[%s] " x, mName.string(), ##__VA_ARGS__)
Jamie Gennis1a4d8832012-08-02 20:11:05 -070049
50namespace android {
51
52// Get an ID that's unique within this process.
53static int32_t createProcessUniqueId() {
54 static volatile int32_t globalCounter = 0;
55 return android_atomic_inc(&globalCounter);
56}
57
Mathias Agopiandb89edc2013-08-02 01:40:18 -070058ConsumerBase::ConsumerBase(const sp<IGraphicBufferConsumer>& bufferQueue, bool controlledByApp) :
Jamie Gennis9fea3422012-08-07 18:03:04 -070059 mAbandoned(false),
Brian Anderson3546a3f2016-07-14 11:51:14 -070060 mConsumer(bufferQueue),
61 mPrevFinalReleaseFence(Fence::NO_FENCE) {
Jamie Gennis1a4d8832012-08-02 20:11:05 -070062 // Choose a name using the PID and a process-unique ID.
63 mName = String8::format("unnamed-%d-%d", getpid(), createProcessUniqueId());
64
65 // Note that we can't create an sp<...>(this) in a ctor that will not keep a
66 // reference once the ctor ends, as that would cause the refcount of 'this'
67 // dropping to 0 at the end of the ctor. Since all we need is a wp<...>
68 // that's what we create.
Mathias Agopiana4e19522013-07-31 20:09:53 -070069 wp<ConsumerListener> listener = static_cast<ConsumerListener*>(this);
70 sp<IConsumerListener> proxy = new BufferQueue::ProxyConsumerListener(listener);
Jamie Gennis1a4d8832012-08-02 20:11:05 -070071
Mathias Agopiandb89edc2013-08-02 01:40:18 -070072 status_t err = mConsumer->consumerConnect(proxy, controlledByApp);
Jamie Gennis1a4d8832012-08-02 20:11:05 -070073 if (err != NO_ERROR) {
Andy McFadden2adaf042012-12-18 09:49:45 -080074 CB_LOGE("ConsumerBase: error connecting to BufferQueue: %s (%d)",
Jamie Gennis1a4d8832012-08-02 20:11:05 -070075 strerror(-err), err);
76 } else {
Mathias Agopiandb89edc2013-08-02 01:40:18 -070077 mConsumer->setConsumerName(mName);
Jamie Gennis1a4d8832012-08-02 20:11:05 -070078 }
79}
80
81ConsumerBase::~ConsumerBase() {
Jamie Gennisad669b02013-04-05 16:41:27 -070082 CB_LOGV("~ConsumerBase");
Pablo Ceballos22b57022016-02-19 17:41:54 -080083 Mutex::Autolock lock(mMutex);
Pablo Ceballose07e3e52016-03-15 15:07:54 -070084
Jamie Gennisad669b02013-04-05 16:41:27 -070085 // Verify that abandon() has been called before we get here. This should
86 // be done by ConsumerBase::onLastStrongRef(), but it's possible for a
87 // derived class to override that method and not call
88 // ConsumerBase::onLastStrongRef().
89 LOG_ALWAYS_FATAL_IF(!mAbandoned, "[%s] ~ConsumerBase was called, but the "
90 "consumer is not abandoned!", mName.string());
91}
92
Igor Murashkin7d2d1602013-11-12 18:02:20 -080093void ConsumerBase::onLastStrongRef(const void* id __attribute__((unused))) {
Jamie Gennis1a4d8832012-08-02 20:11:05 -070094 abandon();
95}
96
97void ConsumerBase::freeBufferLocked(int slotIndex) {
98 CB_LOGV("freeBufferLocked: slotIndex=%d", slotIndex);
99 mSlots[slotIndex].mGraphicBuffer = 0;
Jamie Gennis1df8c342012-12-20 14:05:45 -0800100 mSlots[slotIndex].mFence = Fence::NO_FENCE;
Lajos Molnarc5d7b7d2013-05-03 14:50:50 -0700101 mSlots[slotIndex].mFrameNumber = 0;
Jamie Gennis1a4d8832012-08-02 20:11:05 -0700102}
103
Dan Stoza8dc55392014-11-04 11:37:46 -0800104void ConsumerBase::onFrameAvailable(const BufferItem& item) {
Jamie Gennis1a4d8832012-08-02 20:11:05 -0700105 CB_LOGV("onFrameAvailable");
106
107 sp<FrameAvailableListener> listener;
108 { // scope for the lock
Dan Stoza95971c82017-06-26 14:27:18 -0700109 Mutex::Autolock lock(mFrameAvailableMutex);
Igor Murashkina4a31492012-10-29 13:36:11 -0700110 listener = mFrameAvailableListener.promote();
Jamie Gennis1a4d8832012-08-02 20:11:05 -0700111 }
112
113 if (listener != NULL) {
114 CB_LOGV("actually calling onFrameAvailable");
Dan Stoza8dc55392014-11-04 11:37:46 -0800115 listener->onFrameAvailable(item);
Jamie Gennis1a4d8832012-08-02 20:11:05 -0700116 }
117}
118
Dan Stozadc13c5b2015-05-11 15:33:01 -0700119void ConsumerBase::onFrameReplaced(const BufferItem &item) {
120 CB_LOGV("onFrameReplaced");
121
122 sp<FrameAvailableListener> listener;
123 {
Dan Stoza95971c82017-06-26 14:27:18 -0700124 Mutex::Autolock lock(mFrameAvailableMutex);
Dan Stozadc13c5b2015-05-11 15:33:01 -0700125 listener = mFrameAvailableListener.promote();
126 }
127
128 if (listener != NULL) {
129 CB_LOGV("actually calling onFrameReplaced");
130 listener->onFrameReplaced(item);
131 }
132}
133
Jamie Gennis1a4d8832012-08-02 20:11:05 -0700134void ConsumerBase::onBuffersReleased() {
Jamie Gennis72c3f7d2012-12-07 00:41:56 -0800135 Mutex::Autolock lock(mMutex);
Jamie Gennis1a4d8832012-08-02 20:11:05 -0700136
Jamie Gennis72c3f7d2012-12-07 00:41:56 -0800137 CB_LOGV("onBuffersReleased");
Jamie Gennis1a4d8832012-08-02 20:11:05 -0700138
Jamie Gennis72c3f7d2012-12-07 00:41:56 -0800139 if (mAbandoned) {
140 // Nothing to do if we're already abandoned.
141 return;
Jamie Gennis1a4d8832012-08-02 20:11:05 -0700142 }
143
Dan Stozafebd4f42014-04-09 16:14:51 -0700144 uint64_t mask = 0;
Mathias Agopiandb89edc2013-08-02 01:40:18 -0700145 mConsumer->getReleasedBuffers(&mask);
Jamie Gennis1a4d8832012-08-02 20:11:05 -0700146 for (int i = 0; i < BufferQueue::NUM_BUFFER_SLOTS; i++) {
Dan Stozafebd4f42014-04-09 16:14:51 -0700147 if (mask & (1ULL << i)) {
Jamie Gennis72c3f7d2012-12-07 00:41:56 -0800148 freeBufferLocked(i);
149 }
Jamie Gennis1a4d8832012-08-02 20:11:05 -0700150 }
151}
152
Jesse Hall399184a2014-03-03 15:42:54 -0800153void ConsumerBase::onSidebandStreamChanged() {
154}
155
Jamie Gennis1a4d8832012-08-02 20:11:05 -0700156void ConsumerBase::abandon() {
157 CB_LOGV("abandon");
158 Mutex::Autolock lock(mMutex);
159
160 if (!mAbandoned) {
161 abandonLocked();
162 mAbandoned = true;
163 }
164}
165
166void ConsumerBase::abandonLocked() {
Brian Carlstrom83b1e682016-03-12 16:07:59 -0800167 CB_LOGV("abandonLocked");
Pablo Ceballos65d9f6d2016-05-04 13:59:35 -0700168 if (mAbandoned) {
169 CB_LOGE("abandonLocked: ConsumerBase is abandoned!");
170 return;
171 }
Jamie Gennis1a4d8832012-08-02 20:11:05 -0700172 for (int i =0; i < BufferQueue::NUM_BUFFER_SLOTS; i++) {
173 freeBufferLocked(i);
174 }
175 // disconnect from the BufferQueue
Mathias Agopiandb89edc2013-08-02 01:40:18 -0700176 mConsumer->consumerDisconnect();
177 mConsumer.clear();
Jamie Gennis1a4d8832012-08-02 20:11:05 -0700178}
179
John Recke4783052015-05-14 15:55:11 -0700180bool ConsumerBase::isAbandoned() {
181 Mutex::Autolock _l(mMutex);
182 return mAbandoned;
183}
184
Jamie Gennis1a4d8832012-08-02 20:11:05 -0700185void ConsumerBase::setFrameAvailableListener(
Igor Murashkina4a31492012-10-29 13:36:11 -0700186 const wp<FrameAvailableListener>& listener) {
Jamie Gennis1a4d8832012-08-02 20:11:05 -0700187 CB_LOGV("setFrameAvailableListener");
Dan Stoza95971c82017-06-26 14:27:18 -0700188 Mutex::Autolock lock(mFrameAvailableMutex);
Jamie Gennis1a4d8832012-08-02 20:11:05 -0700189 mFrameAvailableListener = listener;
190}
191
Dan Stoza634f5ee2015-04-03 14:22:05 -0700192status_t ConsumerBase::detachBuffer(int slot) {
193 CB_LOGV("detachBuffer");
194 Mutex::Autolock lock(mMutex);
195
Pablo Ceballos65d9f6d2016-05-04 13:59:35 -0700196 if (mAbandoned) {
197 CB_LOGE("detachBuffer: ConsumerBase is abandoned!");
198 return NO_INIT;
199 }
200
Dan Stoza634f5ee2015-04-03 14:22:05 -0700201 status_t result = mConsumer->detachBuffer(slot);
202 if (result != NO_ERROR) {
203 CB_LOGE("Failed to detach buffer: %d", result);
204 return result;
205 }
206
207 freeBufferLocked(slot);
208
209 return result;
210}
211
Michael Lentine847f11e2015-05-18 13:41:23 -0700212status_t ConsumerBase::setDefaultBufferSize(uint32_t width, uint32_t height) {
213 Mutex::Autolock _l(mMutex);
Pablo Ceballos65d9f6d2016-05-04 13:59:35 -0700214 if (mAbandoned) {
215 CB_LOGE("setDefaultBufferSize: ConsumerBase is abandoned!");
216 return NO_INIT;
217 }
Michael Lentine847f11e2015-05-18 13:41:23 -0700218 return mConsumer->setDefaultBufferSize(width, height);
219}
220
221status_t ConsumerBase::setDefaultBufferFormat(PixelFormat defaultFormat) {
222 Mutex::Autolock _l(mMutex);
Pablo Ceballos65d9f6d2016-05-04 13:59:35 -0700223 if (mAbandoned) {
224 CB_LOGE("setDefaultBufferFormat: ConsumerBase is abandoned!");
225 return NO_INIT;
226 }
Michael Lentine847f11e2015-05-18 13:41:23 -0700227 return mConsumer->setDefaultBufferFormat(defaultFormat);
228}
229
230status_t ConsumerBase::setDefaultBufferDataSpace(
231 android_dataspace defaultDataSpace) {
232 Mutex::Autolock _l(mMutex);
Pablo Ceballos65d9f6d2016-05-04 13:59:35 -0700233 if (mAbandoned) {
234 CB_LOGE("setDefaultBufferDataSpace: ConsumerBase is abandoned!");
235 return NO_INIT;
236 }
Michael Lentine847f11e2015-05-18 13:41:23 -0700237 return mConsumer->setDefaultBufferDataSpace(defaultDataSpace);
238}
239
Dan Stozae77c7662016-05-13 11:37:28 -0700240status_t ConsumerBase::getOccupancyHistory(bool forceFlush,
241 std::vector<OccupancyTracker::Segment>* outHistory) {
242 Mutex::Autolock _l(mMutex);
243 if (mAbandoned) {
244 CB_LOGE("getOccupancyHistory: ConsumerBase is abandoned!");
245 return NO_INIT;
246 }
247 return mConsumer->getOccupancyHistory(forceFlush, outHistory);
248}
249
Eino-Ville Talvalabc2df652016-07-21 17:06:58 -0700250status_t ConsumerBase::discardFreeBuffers() {
251 Mutex::Autolock _l(mMutex);
252 if (mAbandoned) {
253 CB_LOGE("discardFreeBuffers: ConsumerBase is abandoned!");
254 return NO_INIT;
255 }
Eino-Ville Talvalac6ff7982017-06-13 17:09:11 -0700256 status_t err = mConsumer->discardFreeBuffers();
257 if (err != OK) {
258 return err;
259 }
260 uint64_t mask;
261 mConsumer->getReleasedBuffers(&mask);
262 for (int i = 0; i < BufferQueue::NUM_BUFFER_SLOTS; i++) {
263 if (mask & (1ULL << i)) {
264 freeBufferLocked(i);
265 }
266 }
267 return OK;
Eino-Ville Talvalabc2df652016-07-21 17:06:58 -0700268}
269
Colin Crossdc782512016-09-26 18:10:16 -0700270void ConsumerBase::dumpState(String8& result) const {
271 dumpState(result, "");
Jamie Gennis1a4d8832012-08-02 20:11:05 -0700272}
273
Colin Crossdc782512016-09-26 18:10:16 -0700274void ConsumerBase::dumpState(String8& result, const char* prefix) const {
Jamie Gennis1a4d8832012-08-02 20:11:05 -0700275 Mutex::Autolock _l(mMutex);
Mathias Agopian74d211a2013-04-22 16:55:35 +0200276 dumpLocked(result, prefix);
Jamie Gennis1a4d8832012-08-02 20:11:05 -0700277}
278
Mathias Agopian74d211a2013-04-22 16:55:35 +0200279void ConsumerBase::dumpLocked(String8& result, const char* prefix) const {
280 result.appendFormat("%smAbandoned=%d\n", prefix, int(mAbandoned));
Jamie Gennis1a4d8832012-08-02 20:11:05 -0700281
282 if (!mAbandoned) {
Dan Stoza0c9a1ed2017-04-06 15:10:21 -0700283 String8 consumerState;
284 mConsumer->dumpState(String8(prefix), &consumerState);
285 result.append(consumerState);
Jamie Gennis1a4d8832012-08-02 20:11:05 -0700286 }
287}
288
Dan Stozacf3834d2015-03-11 14:04:22 -0700289status_t ConsumerBase::acquireBufferLocked(BufferItem *item,
Dan Stozaa4650a52015-05-12 12:56:16 -0700290 nsecs_t presentWhen, uint64_t maxFrameNumber) {
Pablo Ceballos65d9f6d2016-05-04 13:59:35 -0700291 if (mAbandoned) {
292 CB_LOGE("acquireBufferLocked: ConsumerBase is abandoned!");
293 return NO_INIT;
294 }
295
Dan Stozaa4650a52015-05-12 12:56:16 -0700296 status_t err = mConsumer->acquireBuffer(item, presentWhen, maxFrameNumber);
Jamie Gennis1a4d8832012-08-02 20:11:05 -0700297 if (err != NO_ERROR) {
298 return err;
299 }
300
301 if (item->mGraphicBuffer != NULL) {
Yin-Chia Yeh723c4892017-03-30 13:13:36 -0700302 if (mSlots[item->mSlot].mGraphicBuffer != NULL) {
303 freeBufferLocked(item->mSlot);
304 }
Pablo Ceballos47650f42015-08-04 16:38:17 -0700305 mSlots[item->mSlot].mGraphicBuffer = item->mGraphicBuffer;
Jamie Gennis1a4d8832012-08-02 20:11:05 -0700306 }
307
Pablo Ceballos47650f42015-08-04 16:38:17 -0700308 mSlots[item->mSlot].mFrameNumber = item->mFrameNumber;
309 mSlots[item->mSlot].mFence = item->mFence;
Jamie Gennisb2725412012-09-05 20:09:05 -0700310
Mark Salyzyn91100452014-06-09 14:27:45 -0700311 CB_LOGV("acquireBufferLocked: -> slot=%d/%" PRIu64,
Pablo Ceballos47650f42015-08-04 16:38:17 -0700312 item->mSlot, item->mFrameNumber);
Jamie Gennis1a4d8832012-08-02 20:11:05 -0700313
314 return OK;
315}
316
Lajos Molnarc5d7b7d2013-05-03 14:50:50 -0700317status_t ConsumerBase::addReleaseFence(int slot,
318 const sp<GraphicBuffer> graphicBuffer, const sp<Fence>& fence) {
Jesse Hall9504eb92012-10-05 14:34:21 -0700319 Mutex::Autolock lock(mMutex);
Lajos Molnarc5d7b7d2013-05-03 14:50:50 -0700320 return addReleaseFenceLocked(slot, graphicBuffer, fence);
Jesse Hall9504eb92012-10-05 14:34:21 -0700321}
322
Lajos Molnarc5d7b7d2013-05-03 14:50:50 -0700323status_t ConsumerBase::addReleaseFenceLocked(int slot,
324 const sp<GraphicBuffer> graphicBuffer, const sp<Fence>& fence) {
Jesse Hall9504eb92012-10-05 14:34:21 -0700325 CB_LOGV("addReleaseFenceLocked: slot=%d", slot);
Jamie Gennisb2725412012-09-05 20:09:05 -0700326
Lajos Molnarc5d7b7d2013-05-03 14:50:50 -0700327 // If consumer no longer tracks this graphicBuffer, we can safely
328 // drop this fence, as it will never be received by the producer.
329 if (!stillTracking(slot, graphicBuffer)) {
330 return OK;
331 }
332
Jamie Gennisb2725412012-09-05 20:09:05 -0700333 if (!mSlots[slot].mFence.get()) {
334 mSlots[slot].mFence = fence;
Matthew Bouyack377c2032016-10-07 15:06:15 -0700335 return OK;
336 }
337
Dan Stozaa34320a2017-02-16 14:55:03 -0800338 auto status = mSlots[slot].mFence->getStatus();
Matthew Bouyack377c2032016-10-07 15:06:15 -0700339
Dan Stozaa34320a2017-02-16 14:55:03 -0800340 if (status == Fence::Status::Invalid) {
Matthew Bouyack377c2032016-10-07 15:06:15 -0700341 CB_LOGE("fence has invalid state");
342 return BAD_VALUE;
343 }
344
Dan Stozaa34320a2017-02-16 14:55:03 -0800345 if (status == Fence::Status::Signaled) {
Matthew Bouyack377c2032016-10-07 15:06:15 -0700346 mSlots[slot].mFence = fence;
Dan Stozaa34320a2017-02-16 14:55:03 -0800347 } else { // status == Fence::Status::Unsignaled
Matthew Bouyackfd4c8c32016-10-07 14:26:47 -0700348 char fenceName[32] = {};
349 snprintf(fenceName, 32, "%.28s:%d", mName.string(), slot);
Jamie Gennisb2725412012-09-05 20:09:05 -0700350 sp<Fence> mergedFence = Fence::merge(
Matthew Bouyackfd4c8c32016-10-07 14:26:47 -0700351 fenceName, mSlots[slot].mFence, fence);
Jamie Gennisb2725412012-09-05 20:09:05 -0700352 if (!mergedFence.get()) {
353 CB_LOGE("failed to merge release fences");
354 // synchronization is broken, the best we can do is hope fences
355 // signal in order so the new fence will act like a union
356 mSlots[slot].mFence = fence;
357 return BAD_VALUE;
358 }
359 mSlots[slot].mFence = mergedFence;
360 }
361
362 return OK;
363}
364
Lajos Molnarc5d7b7d2013-05-03 14:50:50 -0700365status_t ConsumerBase::releaseBufferLocked(
366 int slot, const sp<GraphicBuffer> graphicBuffer,
367 EGLDisplay display, EGLSyncKHR eglFence) {
Pablo Ceballos65d9f6d2016-05-04 13:59:35 -0700368 if (mAbandoned) {
369 CB_LOGE("releaseBufferLocked: ConsumerBase is abandoned!");
370 return NO_INIT;
371 }
Lajos Molnarc5d7b7d2013-05-03 14:50:50 -0700372 // If consumer no longer tracks this graphicBuffer (we received a new
373 // buffer on the same slot), the buffer producer is definitely no longer
374 // tracking it.
375 if (!stillTracking(slot, graphicBuffer)) {
376 return OK;
377 }
378
Mark Salyzyn91100452014-06-09 14:27:45 -0700379 CB_LOGV("releaseBufferLocked: slot=%d/%" PRIu64,
Lajos Molnarc5d7b7d2013-05-03 14:50:50 -0700380 slot, mSlots[slot].mFrameNumber);
Mathias Agopiandb89edc2013-08-02 01:40:18 -0700381 status_t err = mConsumer->releaseBuffer(slot, mSlots[slot].mFrameNumber,
Lajos Molnarc5d7b7d2013-05-03 14:50:50 -0700382 display, eglFence, mSlots[slot].mFence);
Igor Murashkin7d2d1602013-11-12 18:02:20 -0800383 if (err == IGraphicBufferConsumer::STALE_BUFFER_SLOT) {
Jamie Gennis1a4d8832012-08-02 20:11:05 -0700384 freeBufferLocked(slot);
385 }
386
Brian Anderson3546a3f2016-07-14 11:51:14 -0700387 mPrevFinalReleaseFence = mSlots[slot].mFence;
Jamie Gennis1df8c342012-12-20 14:05:45 -0800388 mSlots[slot].mFence = Fence::NO_FENCE;
Jamie Gennis1a4d8832012-08-02 20:11:05 -0700389
390 return err;
391}
392
Lajos Molnarc5d7b7d2013-05-03 14:50:50 -0700393bool ConsumerBase::stillTracking(int slot,
394 const sp<GraphicBuffer> graphicBuffer) {
395 if (slot < 0 || slot >= BufferQueue::NUM_BUFFER_SLOTS) {
396 return false;
397 }
398 return (mSlots[slot].mGraphicBuffer != NULL &&
399 mSlots[slot].mGraphicBuffer->handle == graphicBuffer->handle);
400}
401
Andy McFadden2adaf042012-12-18 09:49:45 -0800402} // namespace android