123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322 |
- /*
- * Copyright (C) 2010 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- #include <inttypes.h>
- #define LOG_TAG "ConsumerBase"
- #define ATRACE_TAG ATRACE_TAG_GRAPHICS
- //#define LOG_NDEBUG 0
- #define EGL_EGLEXT_PROTOTYPES
- #include <EGL/egl.h>
- #include <EGL/eglext.h>
- #include <hardware/hardware.h>
- #include <gui/BufferItem.h>
- #include <gui/IGraphicBufferAlloc.h>
- #include <gui/ISurfaceComposer.h>
- #include <gui/SurfaceComposerClient.h>
- #include <gui/ConsumerBase.h>
- #include <private/gui/ComposerService.h>
- #include <utils/Log.h>
- #include <utils/String8.h>
- #include <utils/Trace.h>
- // Macros for including the ConsumerBase name in log messages
- #define CB_LOGV(x, ...) ALOGV("[%s] " x, mName.string(), ##__VA_ARGS__)
- //#define CB_LOGD(x, ...) ALOGD("[%s] " x, mName.string(), ##__VA_ARGS__)
- //#define CB_LOGI(x, ...) ALOGI("[%s] " x, mName.string(), ##__VA_ARGS__)
- //#define CB_LOGW(x, ...) ALOGW("[%s] " x, mName.string(), ##__VA_ARGS__)
- #define CB_LOGE(x, ...) ALOGE("[%s] " x, mName.string(), ##__VA_ARGS__)
- namespace android {
- // Get an ID that's unique within this process.
- static int32_t createProcessUniqueId() {
- static volatile int32_t globalCounter = 0;
- return android_atomic_inc(&globalCounter);
- }
- ConsumerBase::ConsumerBase(const sp<IGraphicBufferConsumer>& bufferQueue, bool controlledByApp) :
- mAbandoned(false),
- mConsumer(bufferQueue) {
- // Choose a name using the PID and a process-unique ID.
- mName = String8::format("unnamed-%d-%d", getpid(), createProcessUniqueId());
- // Note that we can't create an sp<...>(this) in a ctor that will not keep a
- // reference once the ctor ends, as that would cause the refcount of 'this'
- // dropping to 0 at the end of the ctor. Since all we need is a wp<...>
- // that's what we create.
- wp<ConsumerListener> listener = static_cast<ConsumerListener*>(this);
- sp<IConsumerListener> proxy = new BufferQueue::ProxyConsumerListener(listener);
- status_t err = mConsumer->consumerConnect(proxy, controlledByApp);
- if (err != NO_ERROR) {
- CB_LOGE("ConsumerBase: error connecting to BufferQueue: %s (%d)",
- strerror(-err), err);
- } else {
- mConsumer->setConsumerName(mName);
- }
- }
- ConsumerBase::~ConsumerBase() {
- CB_LOGV("~ConsumerBase");
- Mutex::Autolock lock(mMutex);
- // Verify that abandon() has been called before we get here. This should
- // be done by ConsumerBase::onLastStrongRef(), but it's possible for a
- // derived class to override that method and not call
- // ConsumerBase::onLastStrongRef().
- LOG_ALWAYS_FATAL_IF(!mAbandoned, "[%s] ~ConsumerBase was called, but the "
- "consumer is not abandoned!", mName.string());
- }
- void ConsumerBase::onLastStrongRef(const void* id __attribute__((unused))) {
- abandon();
- }
- void ConsumerBase::freeBufferLocked(int slotIndex) {
- CB_LOGV("freeBufferLocked: slotIndex=%d", slotIndex);
- mSlots[slotIndex].mGraphicBuffer = 0;
- mSlots[slotIndex].mFence = Fence::NO_FENCE;
- mSlots[slotIndex].mFrameNumber = 0;
- }
- void ConsumerBase::onFrameAvailable(const BufferItem& item) {
- CB_LOGV("onFrameAvailable");
- sp<FrameAvailableListener> listener;
- { // scope for the lock
- Mutex::Autolock lock(mMutex);
- listener = mFrameAvailableListener.promote();
- }
- if (listener != NULL) {
- CB_LOGV("actually calling onFrameAvailable");
- listener->onFrameAvailable(item);
- }
- }
- void ConsumerBase::onFrameReplaced(const BufferItem &item) {
- CB_LOGV("onFrameReplaced");
- sp<FrameAvailableListener> listener;
- {
- Mutex::Autolock lock(mMutex);
- listener = mFrameAvailableListener.promote();
- }
- if (listener != NULL) {
- CB_LOGV("actually calling onFrameReplaced");
- listener->onFrameReplaced(item);
- }
- }
- void ConsumerBase::onBuffersReleased() {
- Mutex::Autolock lock(mMutex);
- CB_LOGV("onBuffersReleased");
- if (mAbandoned) {
- // Nothing to do if we're already abandoned.
- return;
- }
- uint64_t mask = 0;
- mConsumer->getReleasedBuffers(&mask);
- for (int i = 0; i < BufferQueue::NUM_BUFFER_SLOTS; i++) {
- if (mask & (1ULL << i)) {
- freeBufferLocked(i);
- }
- }
- }
- void ConsumerBase::onSidebandStreamChanged() {
- }
- void ConsumerBase::abandon() {
- CB_LOGV("abandon");
- Mutex::Autolock lock(mMutex);
- if (!mAbandoned) {
- abandonLocked();
- mAbandoned = true;
- }
- }
- void ConsumerBase::abandonLocked() {
- CB_LOGV("abandonLocked");
- for (int i =0; i < BufferQueue::NUM_BUFFER_SLOTS; i++) {
- freeBufferLocked(i);
- }
- // disconnect from the BufferQueue
- mConsumer->consumerDisconnect();
- mConsumer.clear();
- }
- bool ConsumerBase::isAbandoned() {
- Mutex::Autolock _l(mMutex);
- return mAbandoned;
- }
- void ConsumerBase::setFrameAvailableListener(
- const wp<FrameAvailableListener>& listener) {
- CB_LOGV("setFrameAvailableListener");
- Mutex::Autolock lock(mMutex);
- mFrameAvailableListener = listener;
- }
- status_t ConsumerBase::detachBuffer(int slot) {
- CB_LOGV("detachBuffer");
- Mutex::Autolock lock(mMutex);
- status_t result = mConsumer->detachBuffer(slot);
- if (result != NO_ERROR) {
- CB_LOGE("Failed to detach buffer: %d", result);
- return result;
- }
- freeBufferLocked(slot);
- return result;
- }
- status_t ConsumerBase::setDefaultBufferSize(uint32_t width, uint32_t height) {
- Mutex::Autolock _l(mMutex);
- return mConsumer->setDefaultBufferSize(width, height);
- }
- status_t ConsumerBase::setDefaultBufferFormat(PixelFormat defaultFormat) {
- Mutex::Autolock _l(mMutex);
- return mConsumer->setDefaultBufferFormat(defaultFormat);
- }
- status_t ConsumerBase::setDefaultBufferDataSpace(
- android_dataspace defaultDataSpace) {
- Mutex::Autolock _l(mMutex);
- return mConsumer->setDefaultBufferDataSpace(defaultDataSpace);
- }
- void ConsumerBase::dump(String8& result) const {
- dump(result, "");
- }
- void ConsumerBase::dump(String8& result, const char* prefix) const {
- Mutex::Autolock _l(mMutex);
- dumpLocked(result, prefix);
- }
- void ConsumerBase::dumpLocked(String8& result, const char* prefix) const {
- result.appendFormat("%smAbandoned=%d\n", prefix, int(mAbandoned));
- if (!mAbandoned) {
- mConsumer->dump(result, prefix);
- }
- }
- status_t ConsumerBase::acquireBufferLocked(BufferItem *item,
- nsecs_t presentWhen, uint64_t maxFrameNumber) {
- status_t err = mConsumer->acquireBuffer(item, presentWhen, maxFrameNumber);
- if (err != NO_ERROR) {
- return err;
- }
- if (item->mGraphicBuffer != NULL) {
- mSlots[item->mBuf].mGraphicBuffer = item->mGraphicBuffer;
- }
- mSlots[item->mBuf].mFrameNumber = item->mFrameNumber;
- mSlots[item->mBuf].mFence = item->mFence;
- CB_LOGV("acquireBufferLocked: -> slot=%d/%" PRIu64,
- item->mBuf, item->mFrameNumber);
- return OK;
- }
- status_t ConsumerBase::addReleaseFence(int slot,
- const sp<GraphicBuffer> graphicBuffer, const sp<Fence>& fence) {
- Mutex::Autolock lock(mMutex);
- return addReleaseFenceLocked(slot, graphicBuffer, fence);
- }
- status_t ConsumerBase::addReleaseFenceLocked(int slot,
- const sp<GraphicBuffer> graphicBuffer, const sp<Fence>& fence) {
- CB_LOGV("addReleaseFenceLocked: slot=%d", slot);
- // If consumer no longer tracks this graphicBuffer, we can safely
- // drop this fence, as it will never be received by the producer.
- if (!stillTracking(slot, graphicBuffer)) {
- return OK;
- }
- if (!mSlots[slot].mFence.get()) {
- mSlots[slot].mFence = fence;
- } else {
- sp<Fence> mergedFence = Fence::merge(
- String8::format("%.28s:%d", mName.string(), slot),
- mSlots[slot].mFence, fence);
- if (!mergedFence.get()) {
- CB_LOGE("failed to merge release fences");
- // synchronization is broken, the best we can do is hope fences
- // signal in order so the new fence will act like a union
- mSlots[slot].mFence = fence;
- return BAD_VALUE;
- }
- mSlots[slot].mFence = mergedFence;
- }
- return OK;
- }
- status_t ConsumerBase::releaseBufferLocked(
- int slot, const sp<GraphicBuffer> graphicBuffer,
- EGLDisplay display, EGLSyncKHR eglFence) {
- // If consumer no longer tracks this graphicBuffer (we received a new
- // buffer on the same slot), the buffer producer is definitely no longer
- // tracking it.
- if (!stillTracking(slot, graphicBuffer)) {
- return OK;
- }
- CB_LOGV("releaseBufferLocked: slot=%d/%" PRIu64,
- slot, mSlots[slot].mFrameNumber);
- status_t err = mConsumer->releaseBuffer(slot, mSlots[slot].mFrameNumber,
- display, eglFence, mSlots[slot].mFence);
- if (err == IGraphicBufferConsumer::STALE_BUFFER_SLOT) {
- freeBufferLocked(slot);
- }
- mSlots[slot].mFence = Fence::NO_FENCE;
- return err;
- }
- bool ConsumerBase::stillTracking(int slot,
- const sp<GraphicBuffer> graphicBuffer) {
- if (slot < 0 || slot >= BufferQueue::NUM_BUFFER_SLOTS) {
- return false;
- }
- return (mSlots[slot].mGraphicBuffer != NULL &&
- mSlots[slot].mGraphicBuffer->handle == graphicBuffer->handle);
- }
- } // namespace android
|