2011-11-18 01:49:17 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2011 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 <stdint.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
|
|
|
#include <gui/IDisplayEventConnection.h>
|
|
|
|
#include <gui/DisplayEventReceiver.h>
|
|
|
|
|
|
|
|
#include <utils/Errors.h>
|
|
|
|
|
|
|
|
#include "DisplayHardware/DisplayHardware.h"
|
|
|
|
#include "DisplayEventConnection.h"
|
|
|
|
#include "EventThread.h"
|
|
|
|
#include "SurfaceFlinger.h"
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
namespace android {
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
EventThread::EventThread(const sp<SurfaceFlinger>& flinger)
|
|
|
|
: mFlinger(flinger),
|
|
|
|
mHw(flinger->graphicPlane(0).displayHardware()),
|
|
|
|
mDeliveredEvents(0)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void EventThread::onFirstRef() {
|
|
|
|
run("EventThread", PRIORITY_URGENT_DISPLAY + PRIORITY_MORE_FAVORABLE);
|
|
|
|
}
|
|
|
|
|
|
|
|
status_t EventThread::registerDisplayEventConnection(
|
|
|
|
const sp<DisplayEventConnection>& connection) {
|
|
|
|
Mutex::Autolock _l(mLock);
|
2011-12-07 01:22:19 +00:00
|
|
|
ConnectionInfo info;
|
|
|
|
mDisplayEventConnections.add(connection, info);
|
2011-11-18 01:49:17 +00:00
|
|
|
mCondition.signal();
|
|
|
|
return NO_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
status_t EventThread::unregisterDisplayEventConnection(
|
|
|
|
const wp<DisplayEventConnection>& connection) {
|
|
|
|
Mutex::Autolock _l(mLock);
|
2011-12-07 01:22:19 +00:00
|
|
|
mDisplayEventConnections.removeItem(connection);
|
2011-11-18 01:49:17 +00:00
|
|
|
mCondition.signal();
|
|
|
|
return NO_ERROR;
|
|
|
|
}
|
|
|
|
|
2011-12-07 01:22:19 +00:00
|
|
|
void EventThread::removeDisplayEventConnection(
|
2011-12-05 22:33:34 +00:00
|
|
|
const wp<DisplayEventConnection>& connection) {
|
|
|
|
Mutex::Autolock _l(mLock);
|
2011-12-07 01:22:19 +00:00
|
|
|
mDisplayEventConnections.removeItem(connection);
|
|
|
|
}
|
|
|
|
|
|
|
|
EventThread::ConnectionInfo* EventThread::getConnectionInfoLocked(
|
|
|
|
const wp<DisplayEventConnection>& connection) {
|
|
|
|
ssize_t index = mDisplayEventConnections.indexOfKey(connection);
|
|
|
|
if (index < 0) return NULL;
|
|
|
|
return &mDisplayEventConnections.editValueAt(index);
|
|
|
|
}
|
|
|
|
|
|
|
|
void EventThread::setVsyncRate(uint32_t count,
|
|
|
|
const wp<DisplayEventConnection>& connection) {
|
|
|
|
if (int32_t(count) >= 0) { // server must protect against bad params
|
|
|
|
Mutex::Autolock _l(mLock);
|
|
|
|
ConnectionInfo* info = getConnectionInfoLocked(connection);
|
|
|
|
if (info) {
|
|
|
|
info->count = (count == 0) ? -1 : count;
|
|
|
|
mCondition.signal();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void EventThread::requestNextVsync(
|
|
|
|
const wp<DisplayEventConnection>& connection) {
|
|
|
|
Mutex::Autolock _l(mLock);
|
|
|
|
ConnectionInfo* info = getConnectionInfoLocked(connection);
|
|
|
|
if (info) {
|
|
|
|
if (info->count < 0) {
|
|
|
|
info->count = 0;
|
|
|
|
}
|
|
|
|
mCondition.signal();
|
|
|
|
}
|
2011-12-05 22:33:34 +00:00
|
|
|
}
|
|
|
|
|
2011-11-18 01:49:17 +00:00
|
|
|
bool EventThread::threadLoop() {
|
|
|
|
|
|
|
|
nsecs_t timestamp;
|
2011-12-05 22:33:34 +00:00
|
|
|
DisplayEventReceiver::Event vsync;
|
2012-01-13 00:13:54 +00:00
|
|
|
Vector< wp<DisplayEventConnection> > displayEventConnections;
|
2011-12-05 22:33:34 +00:00
|
|
|
|
|
|
|
{ // scope for the lock
|
|
|
|
Mutex::Autolock _l(mLock);
|
|
|
|
do {
|
2012-01-10 02:19:18 +00:00
|
|
|
// see if we need to wait for the VSYNC at all
|
2011-12-07 01:22:19 +00:00
|
|
|
do {
|
|
|
|
bool waitForNextVsync = false;
|
|
|
|
size_t count = mDisplayEventConnections.size();
|
|
|
|
for (size_t i=0 ; i<count ; i++) {
|
|
|
|
const ConnectionInfo& info(
|
|
|
|
mDisplayEventConnections.valueAt(i));
|
2012-01-10 02:19:18 +00:00
|
|
|
if (info.count >= 0) {
|
|
|
|
// at least one continuous mode or active one-shot event
|
2011-12-07 01:22:19 +00:00
|
|
|
waitForNextVsync = true;
|
2012-01-10 02:19:18 +00:00
|
|
|
break;
|
2011-12-07 01:22:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (waitForNextVsync)
|
|
|
|
break;
|
|
|
|
|
2011-12-05 22:33:34 +00:00
|
|
|
mCondition.wait(mLock);
|
2011-12-07 01:22:19 +00:00
|
|
|
} while(true);
|
2011-11-18 01:49:17 +00:00
|
|
|
|
2012-01-10 02:19:18 +00:00
|
|
|
// at least one listener requested VSYNC
|
2011-12-05 22:33:34 +00:00
|
|
|
mLock.unlock();
|
|
|
|
timestamp = mHw.waitForVSync();
|
|
|
|
mLock.lock();
|
2011-12-07 01:22:19 +00:00
|
|
|
mDeliveredEvents++;
|
2011-11-18 01:49:17 +00:00
|
|
|
|
2012-01-10 02:19:18 +00:00
|
|
|
// now see if we still need to report this VSYNC event
|
|
|
|
bool reportVsync = false;
|
|
|
|
size_t count = mDisplayEventConnections.size();
|
|
|
|
for (size_t i=0 ; i<count ; i++) {
|
|
|
|
const ConnectionInfo& info(
|
|
|
|
mDisplayEventConnections.valueAt(i));
|
|
|
|
if (info.count >= 1) {
|
|
|
|
if (info.count==1 || (mDeliveredEvents % info.count) == 0) {
|
|
|
|
// continuous event, and time to report it
|
|
|
|
reportVsync = true;
|
|
|
|
}
|
|
|
|
} else if (info.count >= -1) {
|
|
|
|
ConnectionInfo& info(
|
|
|
|
mDisplayEventConnections.editValueAt(i));
|
|
|
|
if (info.count == 0) {
|
|
|
|
// fired this time around
|
|
|
|
reportVsync = true;
|
|
|
|
}
|
|
|
|
info.count--;
|
|
|
|
}
|
2012-01-13 00:13:54 +00:00
|
|
|
if (reportVsync) {
|
|
|
|
displayEventConnections.add(mDisplayEventConnections.keyAt(i));
|
|
|
|
}
|
2012-01-10 02:19:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (reportVsync) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} while (true);
|
2011-11-18 01:49:17 +00:00
|
|
|
|
2011-12-05 22:33:34 +00:00
|
|
|
// dispatch vsync events to listeners...
|
|
|
|
vsync.header.type = DisplayEventReceiver::DISPLAY_EVENT_VSYNC;
|
|
|
|
vsync.header.timestamp = timestamp;
|
|
|
|
vsync.vsync.count = mDeliveredEvents;
|
|
|
|
}
|
|
|
|
|
|
|
|
const size_t count = displayEventConnections.size();
|
2011-11-18 01:49:17 +00:00
|
|
|
for (size_t i=0 ; i<count ; i++) {
|
2012-01-13 00:13:54 +00:00
|
|
|
sp<DisplayEventConnection> conn(displayEventConnections[i].promote());
|
2011-11-18 01:49:17 +00:00
|
|
|
// make sure the connection didn't die
|
|
|
|
if (conn != NULL) {
|
|
|
|
status_t err = conn->postEvent(vsync);
|
|
|
|
if (err == -EAGAIN || err == -EWOULDBLOCK) {
|
|
|
|
// The destination doesn't accept events anymore, it's probably
|
|
|
|
// full. For now, we just drop the events on the floor.
|
|
|
|
// Note that some events cannot be dropped and would have to be
|
|
|
|
// re-sent later. Right-now we don't have the ability to do
|
|
|
|
// this, but it doesn't matter for VSYNC.
|
|
|
|
} else if (err < 0) {
|
|
|
|
// handle any other error on the pipe as fatal. the only
|
|
|
|
// reasonable thing to do is to clean-up this connection.
|
|
|
|
// The most common error we'll get here is -EPIPE.
|
2012-01-13 00:13:54 +00:00
|
|
|
removeDisplayEventConnection(displayEventConnections[i]);
|
2011-11-18 01:49:17 +00:00
|
|
|
}
|
2011-12-05 22:33:34 +00:00
|
|
|
} else {
|
|
|
|
// somehow the connection is dead, but we still have it in our list
|
|
|
|
// just clean the list.
|
2012-01-13 00:13:54 +00:00
|
|
|
removeDisplayEventConnection(displayEventConnections[i]);
|
2011-11-18 01:49:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-12-05 22:33:34 +00:00
|
|
|
// clear all our references without holding mLock
|
|
|
|
displayEventConnections.clear();
|
|
|
|
|
2011-11-18 01:49:17 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
status_t EventThread::readyToRun() {
|
2012-01-04 20:05:49 +00:00
|
|
|
ALOGI("EventThread ready to run.");
|
2011-11-18 01:49:17 +00:00
|
|
|
return NO_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
void EventThread::dump(String8& result, char* buffer, size_t SIZE) const {
|
|
|
|
Mutex::Autolock _l(mLock);
|
|
|
|
result.append("VSYNC state:\n");
|
|
|
|
snprintf(buffer, SIZE, " numListeners=%u, events-delivered: %u\n",
|
|
|
|
mDisplayEventConnections.size(), mDeliveredEvents);
|
|
|
|
result.append(buffer);
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
}; // namespace android
|