From ff28e201ec0c6d620eaaa29814ab52958487dc31 Mon Sep 17 00:00:00 2001 From: Mathias Agopian Date: Thu, 20 Sep 2012 23:24:19 -0700 Subject: Display events now always carry the display id they happened on Change-Id: I12de1d883c23927722bc3a71b782f0079de4e831 --- include/gui/DisplayEventReceiver.h | 2 +- services/surfaceflinger/EventThread.cpp | 78 ++++++++++++++++++++++----------- services/surfaceflinger/EventThread.h | 5 ++- 3 files changed, 57 insertions(+), 28 deletions(-) diff --git a/include/gui/DisplayEventReceiver.h b/include/gui/DisplayEventReceiver.h index 1117f95..f8267bf 100644 --- a/include/gui/DisplayEventReceiver.h +++ b/include/gui/DisplayEventReceiver.h @@ -48,6 +48,7 @@ public: struct Header { uint32_t type; + uint32_t id; nsecs_t timestamp; }; @@ -56,7 +57,6 @@ public: }; struct Hotplug { - int32_t id; bool connected; }; diff --git a/services/surfaceflinger/EventThread.cpp b/services/surfaceflinger/EventThread.cpp index 24e9f2b..6b7c78b 100644 --- a/services/surfaceflinger/EventThread.cpp +++ b/services/surfaceflinger/EventThread.cpp @@ -38,10 +38,15 @@ namespace android { EventThread::EventThread(const sp& flinger) : mFlinger(flinger), - mVSyncTimestamp(0), mUseSoftwareVSync(false), - mVSyncCount(0), mDebugVsyncEnabled(false) { + + for (int32_t i=0 ; i= HWC_DISPLAY_TYPES_SUPPORTED, + "received event for an invalid display (id=%d)", type); + Mutex::Autolock _l(mLock); - mVSyncTimestamp = timestamp; - mVSyncCount++; - mCondition.broadcast(); + if (type < HWC_DISPLAY_TYPES_SUPPORTED) { + mVSyncEvent[type].header.type = DisplayEventReceiver::DISPLAY_EVENT_VSYNC; + mVSyncEvent[type].header.id = type; + mVSyncEvent[type].header.timestamp = timestamp; + mVSyncEvent[type].vsync.count++; + mCondition.broadcast(); + } } void EventThread::onHotplugReceived(int type, bool connected) { + ALOGE_IF(type >= HWC_DISPLAY_TYPES_SUPPORTED, + "received event for an invalid display (id=%d)", type); + Mutex::Autolock _l(mLock); - DisplayEventReceiver::Event event; - event.header.type = DisplayEventReceiver::DISPLAY_EVENT_HOTPLUG; - event.header.timestamp = systemTime(); - event.hotplug.id = type; - event.hotplug.connected = connected; - mPendingEvents.add(event); - mCondition.broadcast(); + if (type < HWC_DISPLAY_TYPES_SUPPORTED) { + DisplayEventReceiver::Event event; + event.header.type = DisplayEventReceiver::DISPLAY_EVENT_HOTPLUG; + event.header.id = type; + event.header.timestamp = systemTime(); + event.hotplug.connected = connected; + mPendingEvents.add(event); + mCondition.broadcast(); + } } bool EventThread::threadLoop() { @@ -164,16 +181,22 @@ Vector< sp > EventThread::waitForEvent( do { bool eventPending = false; bool waitForVSync = false; - size_t vsyncCount = mVSyncCount; - nsecs_t timestamp = mVSyncTimestamp; - mVSyncTimestamp = 0; - - if (timestamp) { - // we have a vsync event to dispatch - event->header.type = DisplayEventReceiver::DISPLAY_EVENT_VSYNC; - event->header.timestamp = timestamp; - event->vsync.count = vsyncCount; - } else { + + size_t vsyncCount = 0; + nsecs_t timestamp = 0; + for (int32_t i=0 ; i > EventThread::waitForEvent( if (!softwareSync) { ALOGW("Timed out waiting for hw vsync; faking it"); } - mVSyncTimestamp = systemTime(SYSTEM_TIME_MONOTONIC); - mVSyncCount++; + // FIXME: how do we decide which display id the fake + // vsync came from ? + mVSyncEvent[0].header.type = DisplayEventReceiver::DISPLAY_EVENT_VSYNC; + mVSyncEvent[0].header.id = HWC_DISPLAY_PRIMARY; + mVSyncEvent[0].header.timestamp = systemTime(SYSTEM_TIME_MONOTONIC); + mVSyncEvent[0].vsync.count++; } } else { // Nobody is interested in vsync, so we just want to sleep. @@ -300,7 +327,8 @@ void EventThread::dump(String8& result, char* buffer, size_t SIZE) const { result.appendFormat(" soft-vsync: %s\n", mUseSoftwareVSync?"enabled":"disabled"); result.appendFormat(" numListeners=%u,\n events-delivered: %u\n", - mDisplayEventConnections.size(), mVSyncCount); + mDisplayEventConnections.size(), + mVSyncEvent[HWC_DISPLAY_PRIMARY].vsync.count); for (size_t i=0 ; i connection = mDisplayEventConnections.itemAt(i).promote(); diff --git a/services/surfaceflinger/EventThread.h b/services/surfaceflinger/EventThread.h index 1c6e637..1934f98 100644 --- a/services/surfaceflinger/EventThread.h +++ b/services/surfaceflinger/EventThread.h @@ -23,6 +23,8 @@ #include #include +#include + #include #include #include @@ -102,9 +104,8 @@ private: // protected by mLock SortedVector< wp > mDisplayEventConnections; Vector< DisplayEventReceiver::Event > mPendingEvents; - nsecs_t mVSyncTimestamp; + DisplayEventReceiver::Event mVSyncEvent[HWC_DISPLAY_TYPES_SUPPORTED]; bool mUseSoftwareVSync; - size_t mVSyncCount; // for debugging bool mDebugVsyncEnabled; -- cgit v1.1