2014-02-20 10:41:45 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2012 The Android Open Source Project
|
2014-02-20 10:42:17 +00:00
|
|
|
* Copyright (C) 2013 Mozilla Foundation
|
2014-02-20 10:41:45 +00:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
//#define LOG_NDEBUG 0
|
2014-02-20 10:42:17 +00:00
|
|
|
#define LOG_TAG "GonkNativeWindow"
|
2014-02-20 10:41:45 +00:00
|
|
|
#define ATRACE_TAG ATRACE_TAG_GRAPHICS
|
|
|
|
#include <utils/Log.h>
|
|
|
|
|
2014-02-20 10:42:17 +00:00
|
|
|
#include "GonkNativeWindowKK.h"
|
|
|
|
#include "GrallocImages.h"
|
2014-02-20 10:41:45 +00:00
|
|
|
|
2014-03-31 15:24:28 +00:00
|
|
|
using namespace mozilla;
|
2014-02-20 10:42:17 +00:00
|
|
|
using namespace mozilla::layers;
|
2014-02-20 10:41:45 +00:00
|
|
|
|
|
|
|
namespace android {
|
|
|
|
|
2014-05-19 01:52:47 +00:00
|
|
|
GonkNativeWindow::GonkNativeWindow(int bufferCount) :
|
2014-09-28 17:33:00 +00:00
|
|
|
GonkConsumerBase(new GonkBufferQueue(true), false),
|
|
|
|
mNewFrameCallback(nullptr)
|
2014-02-20 10:42:17 +00:00
|
|
|
{
|
2014-05-19 01:52:47 +00:00
|
|
|
mConsumer->setMaxAcquiredBufferCount(bufferCount);
|
2014-02-20 10:42:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
GonkNativeWindow::GonkNativeWindow(const sp<GonkBufferQueue>& bq,
|
2014-02-20 10:41:45 +00:00
|
|
|
uint32_t consumerUsage, int bufferCount, bool controlledByApp) :
|
2014-02-20 10:42:17 +00:00
|
|
|
GonkConsumerBase(bq, controlledByApp)
|
2014-02-20 10:41:45 +00:00
|
|
|
{
|
|
|
|
mConsumer->setConsumerUsageBits(consumerUsage);
|
|
|
|
mConsumer->setMaxAcquiredBufferCount(bufferCount);
|
|
|
|
}
|
|
|
|
|
2014-02-20 10:42:17 +00:00
|
|
|
GonkNativeWindow::~GonkNativeWindow() {
|
2014-02-20 10:41:45 +00:00
|
|
|
}
|
|
|
|
|
2014-02-20 10:42:17 +00:00
|
|
|
void GonkNativeWindow::setName(const String8& name) {
|
2014-02-20 10:41:45 +00:00
|
|
|
Mutex::Autolock _l(mMutex);
|
|
|
|
mName = name;
|
|
|
|
mConsumer->setConsumerName(name);
|
|
|
|
}
|
|
|
|
|
2014-02-20 10:42:17 +00:00
|
|
|
status_t GonkNativeWindow::acquireBuffer(BufferItem *item,
|
2014-02-20 10:41:45 +00:00
|
|
|
nsecs_t presentWhen, bool waitForFence) {
|
|
|
|
status_t err;
|
|
|
|
|
|
|
|
if (!item) return BAD_VALUE;
|
|
|
|
|
|
|
|
Mutex::Autolock _l(mMutex);
|
|
|
|
|
|
|
|
err = acquireBufferLocked(item, presentWhen);
|
|
|
|
if (err != OK) {
|
|
|
|
if (err != NO_BUFFER_AVAILABLE) {
|
2014-07-03 14:24:52 +00:00
|
|
|
ALOGE("Error acquiring buffer: %s (%d)", strerror(err), err);
|
2014-02-20 10:41:45 +00:00
|
|
|
}
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (waitForFence) {
|
2014-02-20 10:42:17 +00:00
|
|
|
err = item->mFence->waitForever("GonkNativeWindow::acquireBuffer");
|
2014-02-20 10:41:45 +00:00
|
|
|
if (err != OK) {
|
2014-07-03 14:24:52 +00:00
|
|
|
ALOGE("Failed to wait for fence of acquired buffer: %s (%d)",
|
2014-02-20 10:41:45 +00:00
|
|
|
strerror(-err), err);
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
item->mGraphicBuffer = mSlots[item->mBuf].mGraphicBuffer;
|
|
|
|
|
|
|
|
return OK;
|
|
|
|
}
|
|
|
|
|
2014-02-20 10:42:17 +00:00
|
|
|
status_t GonkNativeWindow::releaseBuffer(const BufferItem &item,
|
2014-02-20 10:41:45 +00:00
|
|
|
const sp<Fence>& releaseFence) {
|
|
|
|
status_t err;
|
|
|
|
|
|
|
|
Mutex::Autolock _l(mMutex);
|
|
|
|
|
|
|
|
err = addReleaseFenceLocked(item.mBuf, item.mGraphicBuffer, releaseFence);
|
|
|
|
|
2014-02-25 07:51:46 +00:00
|
|
|
err = releaseBufferLocked(item.mBuf, item.mGraphicBuffer);
|
2014-02-20 10:41:45 +00:00
|
|
|
if (err != OK) {
|
2014-07-03 14:24:52 +00:00
|
|
|
ALOGE("Failed to release buffer: %s (%d)",
|
2014-02-20 10:41:45 +00:00
|
|
|
strerror(-err), err);
|
|
|
|
}
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2014-02-20 10:42:17 +00:00
|
|
|
status_t GonkNativeWindow::setDefaultBufferSize(uint32_t w, uint32_t h) {
|
2014-02-20 10:41:45 +00:00
|
|
|
Mutex::Autolock _l(mMutex);
|
|
|
|
return mConsumer->setDefaultBufferSize(w, h);
|
|
|
|
}
|
|
|
|
|
2014-02-20 10:42:17 +00:00
|
|
|
status_t GonkNativeWindow::setDefaultBufferFormat(uint32_t defaultFormat) {
|
2014-02-20 10:41:45 +00:00
|
|
|
Mutex::Autolock _l(mMutex);
|
|
|
|
return mConsumer->setDefaultBufferFormat(defaultFormat);
|
|
|
|
}
|
|
|
|
|
2015-06-17 14:00:52 +00:00
|
|
|
already_AddRefed<TextureClient>
|
2014-03-31 15:24:28 +00:00
|
|
|
GonkNativeWindow::getCurrentBuffer() {
|
2014-02-20 10:42:17 +00:00
|
|
|
Mutex::Autolock _l(mMutex);
|
|
|
|
BufferItem item;
|
|
|
|
|
|
|
|
// In asynchronous mode the list is guaranteed to be one buffer
|
|
|
|
// deep, while in synchronous mode we use the oldest buffer.
|
|
|
|
status_t err = acquireBufferLocked(&item, 0); //???
|
|
|
|
if (err != NO_ERROR) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2015-10-18 05:24:48 +00:00
|
|
|
RefPtr<TextureClient> textureClient =
|
2014-03-31 15:24:28 +00:00
|
|
|
mConsumer->getTextureClientFromBuffer(item.mGraphicBuffer.get());
|
|
|
|
if (!textureClient) {
|
|
|
|
return NULL;
|
|
|
|
}
|
2015-05-01 13:14:16 +00:00
|
|
|
textureClient->SetRecycleCallback(GonkNativeWindow::RecycleCallback, this);
|
|
|
|
return textureClient.forget();
|
2014-03-31 15:24:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* static */ void
|
|
|
|
GonkNativeWindow::RecycleCallback(TextureClient* client, void* closure) {
|
|
|
|
GonkNativeWindow* nativeWindow =
|
|
|
|
static_cast<GonkNativeWindow*>(closure);
|
2014-02-20 10:42:17 +00:00
|
|
|
|
2015-05-29 20:41:28 +00:00
|
|
|
MOZ_ASSERT(client && !client->IsDead());
|
2014-03-31 15:24:28 +00:00
|
|
|
client->ClearRecycleCallback();
|
|
|
|
nativeWindow->returnBuffer(client);
|
2014-02-20 10:42:17 +00:00
|
|
|
}
|
|
|
|
|
2014-03-31 15:24:28 +00:00
|
|
|
void GonkNativeWindow::returnBuffer(TextureClient* client) {
|
2014-07-03 14:24:52 +00:00
|
|
|
ALOGD("GonkNativeWindow::returnBuffer");
|
2014-02-20 10:42:17 +00:00
|
|
|
Mutex::Autolock lock(mMutex);
|
|
|
|
|
2014-03-31 15:24:28 +00:00
|
|
|
int index = mConsumer->getSlotFromTextureClientLocked(client);
|
|
|
|
if (index < 0) {
|
|
|
|
}
|
|
|
|
|
2015-05-12 23:42:00 +00:00
|
|
|
FenceHandle handle = client->GetAndResetReleaseFenceHandle();
|
2015-10-18 05:24:48 +00:00
|
|
|
RefPtr<FenceHandle::FdObj> fdObj = handle.GetAndResetFdObj();
|
2015-05-12 23:42:00 +00:00
|
|
|
sp<Fence> fence = new Fence(fdObj->GetAndResetFd());
|
2014-02-20 10:42:17 +00:00
|
|
|
|
2014-11-26 23:13:49 +00:00
|
|
|
addReleaseFenceLocked(index,
|
|
|
|
mSlots[index].mGraphicBuffer,
|
|
|
|
fence);
|
2014-03-03 15:12:52 +00:00
|
|
|
|
2014-11-26 23:13:49 +00:00
|
|
|
releaseBufferLocked(index, mSlots[index].mGraphicBuffer);
|
2014-02-20 10:42:17 +00:00
|
|
|
}
|
|
|
|
|
2015-06-17 14:00:52 +00:00
|
|
|
already_AddRefed<TextureClient>
|
2014-03-31 15:24:28 +00:00
|
|
|
GonkNativeWindow::getTextureClientFromBuffer(ANativeWindowBuffer* buffer) {
|
2014-02-20 10:42:17 +00:00
|
|
|
Mutex::Autolock lock(mMutex);
|
2014-03-31 15:24:28 +00:00
|
|
|
return mConsumer->getTextureClientFromBuffer(buffer);
|
2014-02-20 10:42:17 +00:00
|
|
|
}
|
2014-03-31 15:24:28 +00:00
|
|
|
|
2014-02-20 10:42:17 +00:00
|
|
|
void GonkNativeWindow::setNewFrameCallback(
|
2014-03-31 15:24:28 +00:00
|
|
|
GonkNativeWindowNewFrameCallback* callback) {
|
2014-07-03 14:24:52 +00:00
|
|
|
ALOGD("setNewFrameCallback");
|
2014-02-20 10:42:17 +00:00
|
|
|
Mutex::Autolock lock(mMutex);
|
2014-03-31 15:24:28 +00:00
|
|
|
mNewFrameCallback = callback;
|
2014-02-20 10:42:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void GonkNativeWindow::onFrameAvailable() {
|
|
|
|
GonkConsumerBase::onFrameAvailable();
|
|
|
|
|
|
|
|
if (mNewFrameCallback) {
|
|
|
|
mNewFrameCallback->OnNewFrame();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-20 10:41:45 +00:00
|
|
|
} // namespace android
|