/* * Copyright (C) 2007 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. */ #ifndef ANDROID_SURFACE_FLINGER_H #define ANDROID_SURFACE_FLINGER_H #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "Barrier.h" #include "MessageQueue.h" #include "DisplayHardware/HWComposer.h" namespace android { // --------------------------------------------------------------------------- class Client; class DisplayEventConnection; class DisplayHardware; class EventThread; class Layer; class LayerBase; class LayerBaseClient; class LayerDim; class LayerScreenshot; class SurfaceTextureClient; // --------------------------------------------------------------------------- class GraphicBufferAlloc : public BnGraphicBufferAlloc { public: GraphicBufferAlloc(); virtual ~GraphicBufferAlloc(); virtual sp createGraphicBuffer(uint32_t w, uint32_t h, PixelFormat format, uint32_t usage, status_t* error); }; // --------------------------------------------------------------------------- enum { eTransactionNeeded = 0x01, eTraversalNeeded = 0x02 }; class SurfaceFlinger : public BinderService, public BnSurfaceComposer, private IBinder::DeathRecipient, private Thread, private HWComposer::EventHandler { public: static char const* getServiceName() { return "SurfaceFlinger"; } SurfaceFlinger(); enum { EVENT_VSYNC = HWC_EVENT_VSYNC }; // post an asynchronous message to the main thread status_t postMessageAsync(const sp& msg, nsecs_t reltime = 0, uint32_t flags = 0); // post a synchronous message to the main thread status_t postMessageSync(const sp& msg, nsecs_t reltime = 0, uint32_t flags = 0); // force full composition on all displays void repaintEverything(); // renders content on given display to a texture. thread-safe version. status_t renderScreenToTexture(DisplayID dpy, GLuint* textureName, GLfloat* uOut, GLfloat* vOut); // renders content on given display to a texture, w/o acquiring main lock status_t renderScreenToTextureLocked(DisplayID dpy, GLuint* textureName, GLfloat* uOut, GLfloat* vOut); // returns the default Display const DisplayHardware& getDefaultDisplayHardware() const { return getDisplayHardware(0); } // utility function to delete a texture on the main thread void deleteTextureAsync(GLuint texture); // enable/disable h/w composer event // TODO: this should be made accessible only to EventThread void eventControl(int event, int enabled); // called on the main thread by MessageQueue when an internal message // is received // TODO: this should be made accessible only to MessageQueue void onMessageReceived(int32_t what); private: friend class Client; friend class DisplayEventConnection; friend class LayerBase; friend class LayerBaseClient; friend class Layer; // We're reference counted, never destroy SurfaceFlinger directly virtual ~SurfaceFlinger(); /* ------------------------------------------------------------------------ * Internal data structures */ class LayerVector : public SortedVector > { public: LayerVector(); LayerVector(const LayerVector& rhs); virtual int do_compare(const void* lhs, const void* rhs) const; }; struct State { State(); LayerVector layersSortedByZ; uint8_t orientation; uint8_t orientationFlags; }; /* ------------------------------------------------------------------------ * IBinder interface */ virtual status_t onTransact(uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags); virtual status_t dump(int fd, const Vector& args); /* ------------------------------------------------------------------------ * ISurfaceComposer interface */ virtual sp createConnection(); virtual sp createGraphicBufferAlloc(); virtual void bootFinished(); virtual void setTransactionState(const Vector& state, const Vector& displays, uint32_t flags); virtual bool authenticateSurfaceTexture( const sp& surface) const; virtual sp createDisplayEventConnection(); virtual status_t captureScreen(DisplayID dpy, sp* heap, uint32_t* width, uint32_t* height, PixelFormat* format, uint32_t reqWidth, uint32_t reqHeight, uint32_t minLayerZ, uint32_t maxLayerZ); virtual status_t turnElectronBeamOff(int32_t mode); virtual status_t turnElectronBeamOn(int32_t mode); // called when screen needs to turn off virtual void blank(); // called when screen is turning back on virtual void unblank(); virtual status_t getDisplayInfo(DisplayID dpy, DisplayInfo* info); virtual void connectDisplay(const sp display); /* ------------------------------------------------------------------------ * DeathRecipient interface */ virtual void binderDied(const wp& who); /* ------------------------------------------------------------------------ * Thread interface */ virtual bool threadLoop(); virtual status_t readyToRun(); virtual void onFirstRef(); /* ------------------------------------------------------------------------ * HWComposer::EventHandler interface */ virtual void onVSyncReceived(int dpy, nsecs_t timestamp); /* ------------------------------------------------------------------------ * Message handling */ void waitForEvent(); void signalTransaction(); void signalLayerUpdate(); void signalRefresh(); // called on the main thread in response to screenReleased() void onScreenReleased(); // called on the main thread in response to screenAcquired() void onScreenAcquired(); void handleMessageTransaction(); void handleMessageInvalidate(); void handleMessageRefresh(); Region handleTransaction(uint32_t transactionFlags); Region handleTransactionLocked(uint32_t transactionFlags); /* handlePageFilp: this is were we latch a new buffer * if available and compute the dirty region. * The return value is the dirty region expressed in the * window manager's coordinate space (or the layer's state * space, which is the same thing), in particular the dirty * region is independent from a specific display's orientation. */ Region handlePageFlip(); void handleRefresh(); void handleWorkList(const DisplayHardware& hw); void handleRepaint(const DisplayHardware& hw); /* ------------------------------------------------------------------------ * Transactions */ uint32_t getTransactionFlags(uint32_t flags); uint32_t peekTransactionFlags(uint32_t flags); uint32_t setTransactionFlags(uint32_t flags); void commitTransaction(); uint32_t setClientStateLocked(const sp& client, const layer_state_t& s); /* ------------------------------------------------------------------------ * Layer management */ sp createLayer(ISurfaceComposerClient::surface_data_t* params, const String8& name, const sp& client, DisplayID display, uint32_t w, uint32_t h, PixelFormat format, uint32_t flags); sp createNormalLayer(const sp& client, DisplayID display, uint32_t w, uint32_t h, uint32_t flags, PixelFormat& format); sp createDimLayer(const sp& client, DisplayID display, uint32_t w, uint32_t h, uint32_t flags); sp createScreenshotLayer(const sp& client, DisplayID display, uint32_t w, uint32_t h, uint32_t flags); // called in response to the window-manager calling // ISurfaceComposerClient::destroySurface() // The specified layer is first placed in a purgatory list // until all references from the client are released. status_t onLayerRemoved(const sp& client, SurfaceID sid); // called when all clients have released all their references to // this layer meaning it is entirely safe to destroy all // resources associated to this layer. status_t onLayerDestroyed(const wp& layer); // remove a layer from SurfaceFlinger immediately status_t removeLayer(const sp& layer); // add a layer to SurfaceFlinger ssize_t addClientLayer(const sp& client, const sp& lbc); status_t removeLayer_l(const sp& layer); status_t purgatorizeLayer_l(const sp& layer); /* ------------------------------------------------------------------------ * Boot animation, on/off animations and screen capture */ void startBootAnim(); status_t captureScreenImplLocked(DisplayID dpy, sp* heap, uint32_t* width, uint32_t* height, PixelFormat* format, uint32_t reqWidth, uint32_t reqHeight, uint32_t minLayerZ, uint32_t maxLayerZ); status_t turnElectronBeamOffImplLocked(int32_t mode); status_t turnElectronBeamOnImplLocked(int32_t mode); status_t electronBeamOffAnimationImplLocked(); status_t electronBeamOnAnimationImplLocked(); /* ------------------------------------------------------------------------ * EGL */ static status_t selectConfigForPixelFormat(EGLDisplay dpy, EGLint const* attrs, PixelFormat format, EGLConfig* outConfig); static EGLConfig selectEGLConfig(EGLDisplay disp, EGLint visualId); static EGLContext createGLContext(EGLDisplay disp, EGLConfig config); void initializeGL(EGLDisplay display, EGLSurface surface); uint32_t getMaxTextureSize() const; uint32_t getMaxViewportDims() const; /* ------------------------------------------------------------------------ * Display management */ const DisplayHardware& getDisplayHardware(DisplayID dpy) const { return *mDisplayHardwares[dpy]; } /* ------------------------------------------------------------------------ * H/W composer */ HWComposer& getHwComposer() const { return *mHwc; } /* ------------------------------------------------------------------------ * Compositing */ void invalidateHwcGeometry(); void computeVisibleRegions(const LayerVector& currentLayers, Region& dirtyRegion, Region& wormholeRegion); void postFramebuffer(); void setupHardwareComposer(const DisplayHardware& hw); void composeSurfaces(const DisplayHardware& hw, const Region& dirty); void setInvalidateRegion(const Region& reg); Region getAndClearInvalidateRegion(); void drawWormhole() const; GLuint getProtectedTexName() const { return mProtectedTexName; } /* ------------------------------------------------------------------------ * Debugging & dumpsys */ void debugFlashRegions(const DisplayHardware& hw); void listLayersLocked(const Vector& args, size_t& index, String8& result, char* buffer, size_t SIZE) const; void dumpStatsLocked(const Vector& args, size_t& index, String8& result, char* buffer, size_t SIZE) const; void clearStatsLocked(const Vector& args, size_t& index, String8& result, char* buffer, size_t SIZE) const; void dumpAllLocked(String8& result, char* buffer, size_t SIZE) const; /* ------------------------------------------------------------------------ * Attributes */ // access must be protected by mStateLock mutable Mutex mStateLock; State mCurrentState; volatile int32_t mTransactionFlags; Condition mTransactionCV; SortedVector > mLayerPurgatory; bool mTransationPending; Vector > mLayersPendingRemoval; // protected by mStateLock (but we could use another lock) DisplayHardware* mDisplayHardwares[1]; bool mLayersRemoved; // access must be protected by mInvalidateLock mutable Mutex mInvalidateLock; Region mInvalidateRegion; // constant members (no synchronization needed for access) HWComposer* mHwc; GLuint mWormholeTexName; GLuint mProtectedTexName; nsecs_t mBootTime; sp mEventThread; GLint mMaxViewportDims[2]; GLint mMaxTextureSize; EGLContext mEGLContext; EGLConfig mEGLConfig; // Can only accessed from the main thread, these members // don't need synchronization State mDrawingState; Region mDirtyRegion; Region mDirtyRegionRemovedLayer; Region mSwapRegion; Region mWormholeRegion; bool mVisibleRegionsDirty; bool mHwWorkListDirty; int32_t mElectronBeamAnimationMode; // don't use a lock for these, we don't care int mDebugRegion; int mDebugDDMS; int mDebugDisableHWC; int mDebugDisableTransformHint; volatile nsecs_t mDebugInSwapBuffers; nsecs_t mLastSwapBufferTime; volatile nsecs_t mDebugInTransaction; nsecs_t mLastTransactionTime; bool mBootFinished; // these are thread safe mutable MessageQueue mEventQueue; mutable Barrier mReadyToRunBarrier; // protected by mDestroyedLayerLock; mutable Mutex mDestroyedLayerLock; Vector mDestroyedLayers; /* ------------------------------------------------------------------------ * Feature prototyping */ EGLSurface getExternalDisplaySurface() const; sp mExternalDisplayNativeWindow; EGLSurface mExternalDisplaySurface; }; // --------------------------------------------------------------------------- }; // namespace android #endif // ANDROID_SURFACE_FLINGER_H