2009-03-04 03:31:44 +00:00
|
|
|
/*
|
2012-02-02 23:14:13 +00:00
|
|
|
* Copyright (C) 2012 The Android Open Source Project
|
2009-03-04 03:31:44 +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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef ANDROID_DISPLAY_HARDWARE_BASE_H
|
|
|
|
#define ANDROID_DISPLAY_HARDWARE_BASE_H
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <utils/RefBase.h>
|
|
|
|
#include <utils/threads.h>
|
|
|
|
#include "Barrier.h"
|
|
|
|
|
|
|
|
namespace android {
|
|
|
|
|
|
|
|
class SurfaceFlinger;
|
|
|
|
|
|
|
|
class DisplayHardwareBase
|
|
|
|
{
|
|
|
|
public:
|
2012-02-02 23:14:13 +00:00
|
|
|
DisplayHardwareBase(
|
|
|
|
const sp<SurfaceFlinger>& flinger,
|
|
|
|
uint32_t displayIndex);
|
2009-03-04 03:31:44 +00:00
|
|
|
|
2012-02-02 23:14:13 +00:00
|
|
|
~DisplayHardwareBase();
|
2009-03-04 03:31:44 +00:00
|
|
|
|
2012-02-05 10:15:28 +00:00
|
|
|
void startSleepManagement() const;
|
|
|
|
|
2011-08-01 23:32:21 +00:00
|
|
|
// console management
|
2009-03-04 03:31:44 +00:00
|
|
|
void releaseScreen() const;
|
|
|
|
void acquireScreen() const;
|
2010-10-11 19:37:43 +00:00
|
|
|
bool isScreenAcquired() const;
|
|
|
|
|
2009-03-04 03:31:44 +00:00
|
|
|
bool canDraw() const;
|
2010-10-11 19:37:43 +00:00
|
|
|
|
2009-03-04 03:31:44 +00:00
|
|
|
|
|
|
|
private:
|
2012-02-02 23:14:13 +00:00
|
|
|
class DisplayEventThread : public Thread {
|
2009-03-04 03:31:44 +00:00
|
|
|
wp<SurfaceFlinger> mFlinger;
|
|
|
|
mutable Barrier mBarrier;
|
2012-02-02 23:14:13 +00:00
|
|
|
status_t waitForFbSleep();
|
|
|
|
status_t waitForFbWake();
|
2009-03-04 03:31:44 +00:00
|
|
|
public:
|
2012-02-02 23:14:13 +00:00
|
|
|
DisplayEventThread(const sp<SurfaceFlinger>& flinger);
|
2009-03-04 03:31:44 +00:00
|
|
|
virtual ~DisplayEventThread();
|
|
|
|
virtual bool threadLoop();
|
2012-02-02 23:14:13 +00:00
|
|
|
status_t releaseScreen() const;
|
|
|
|
status_t initCheck() const;
|
2009-03-04 03:31:44 +00:00
|
|
|
};
|
|
|
|
|
2012-02-02 23:14:13 +00:00
|
|
|
sp<DisplayEventThread> mDisplayEventThread;
|
|
|
|
mutable int mScreenAcquired;
|
2009-03-04 03:31:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}; // namespace android
|
|
|
|
|
|
|
|
#endif // ANDROID_DISPLAY_HARDWARE_BASE_H
|