2009-03-04 03:31:44 +00:00
|
|
|
/*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2012-02-26 02:48:35 +00:00
|
|
|
#ifndef ANDROID_GUI_SURFACE_H
|
|
|
|
#define ANDROID_GUI_SURFACE_H
|
2009-03-04 03:31:44 +00:00
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
2010-07-16 00:29:15 +00:00
|
|
|
#include <utils/KeyedVector.h>
|
2009-03-04 03:31:44 +00:00
|
|
|
#include <utils/RefBase.h>
|
|
|
|
#include <utils/threads.h>
|
|
|
|
|
|
|
|
#include <ui/PixelFormat.h>
|
|
|
|
#include <ui/Region.h>
|
2009-04-10 21:24:30 +00:00
|
|
|
|
2011-07-14 00:39:11 +00:00
|
|
|
#include <gui/SurfaceTextureClient.h>
|
2012-02-26 02:48:35 +00:00
|
|
|
#include <gui/ISurface.h>
|
|
|
|
#include <gui/ISurfaceComposerClient.h>
|
2010-02-10 01:46:37 +00:00
|
|
|
|
2010-04-12 23:22:15 +00:00
|
|
|
#define ANDROID_VIEW_SURFACE_JNI_ID "mNativeSurface"
|
|
|
|
|
2009-03-04 03:31:44 +00:00
|
|
|
namespace android {
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2011-06-22 22:52:53 +00:00
|
|
|
class ISurfaceTexture;
|
2009-05-04 21:17:04 +00:00
|
|
|
class Surface;
|
2009-03-04 03:31:44 +00:00
|
|
|
class SurfaceComposerClient;
|
2009-04-10 21:24:30 +00:00
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
2009-03-04 03:31:44 +00:00
|
|
|
|
2009-04-16 23:19:50 +00:00
|
|
|
class SurfaceControl : public RefBase
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
static bool isValid(const sp<SurfaceControl>& surface) {
|
2009-04-17 03:04:08 +00:00
|
|
|
return (surface != 0) && surface->isValid();
|
2009-04-16 23:19:50 +00:00
|
|
|
}
|
2009-04-17 03:04:08 +00:00
|
|
|
bool isValid() {
|
|
|
|
return mToken>=0 && mClient!=0;
|
|
|
|
}
|
|
|
|
static bool isSameSurface(
|
|
|
|
const sp<SurfaceControl>& lhs, const sp<SurfaceControl>& rhs);
|
2009-04-16 23:19:50 +00:00
|
|
|
|
|
|
|
uint32_t getIdentity() const { return mIdentity; }
|
|
|
|
|
|
|
|
// release surface data from java
|
|
|
|
void clear();
|
|
|
|
|
2012-08-25 03:00:51 +00:00
|
|
|
status_t setLayerStack(int32_t layerStack);
|
2009-04-16 23:19:50 +00:00
|
|
|
status_t setLayer(int32_t layer);
|
|
|
|
status_t setPosition(int32_t x, int32_t y);
|
|
|
|
status_t setSize(uint32_t w, uint32_t h);
|
|
|
|
status_t hide();
|
2012-08-27 05:49:35 +00:00
|
|
|
status_t show();
|
2009-04-16 23:19:50 +00:00
|
|
|
status_t setFlags(uint32_t flags, uint32_t mask);
|
|
|
|
status_t setTransparentRegionHint(const Region& transparent);
|
|
|
|
status_t setAlpha(float alpha=1.0f);
|
|
|
|
status_t setMatrix(float dsdx, float dtdx, float dsdy, float dtdy);
|
2012-05-11 03:43:55 +00:00
|
|
|
status_t setCrop(const Rect& crop);
|
2009-04-16 23:19:50 +00:00
|
|
|
|
2009-04-17 03:04:08 +00:00
|
|
|
static status_t writeSurfaceToParcel(
|
|
|
|
const sp<SurfaceControl>& control, Parcel* parcel);
|
|
|
|
|
|
|
|
sp<Surface> getSurface() const;
|
|
|
|
|
2009-04-16 23:19:50 +00:00
|
|
|
private:
|
2009-04-17 03:04:08 +00:00
|
|
|
// can't be copied
|
|
|
|
SurfaceControl& operator = (SurfaceControl& rhs);
|
|
|
|
SurfaceControl(const SurfaceControl& rhs);
|
|
|
|
|
2009-04-16 23:19:50 +00:00
|
|
|
friend class SurfaceComposerClient;
|
|
|
|
friend class Surface;
|
2009-04-17 03:04:08 +00:00
|
|
|
|
|
|
|
SurfaceControl(
|
|
|
|
const sp<SurfaceComposerClient>& client,
|
2009-04-16 23:19:50 +00:00
|
|
|
const sp<ISurface>& surface,
|
2011-07-20 23:46:11 +00:00
|
|
|
const ISurfaceComposerClient::surface_data_t& data);
|
2009-04-16 23:19:50 +00:00
|
|
|
|
|
|
|
~SurfaceControl();
|
2009-04-17 03:04:08 +00:00
|
|
|
|
2009-11-13 23:26:29 +00:00
|
|
|
status_t validate() const;
|
2009-04-16 23:19:50 +00:00
|
|
|
void destroy();
|
|
|
|
|
|
|
|
sp<SurfaceComposerClient> mClient;
|
|
|
|
sp<ISurface> mSurface;
|
|
|
|
SurfaceID mToken;
|
|
|
|
uint32_t mIdentity;
|
|
|
|
mutable Mutex mLock;
|
2009-04-17 03:04:08 +00:00
|
|
|
|
|
|
|
mutable sp<Surface> mSurfaceData;
|
2009-04-16 23:19:50 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2011-07-14 00:39:11 +00:00
|
|
|
class Surface : public SurfaceTextureClient
|
2009-04-10 21:24:30 +00:00
|
|
|
{
|
2009-03-04 03:31:44 +00:00
|
|
|
public:
|
|
|
|
struct SurfaceInfo {
|
|
|
|
uint32_t w;
|
|
|
|
uint32_t h;
|
2009-04-10 21:24:30 +00:00
|
|
|
uint32_t s;
|
|
|
|
uint32_t usage;
|
2009-03-04 03:31:44 +00:00
|
|
|
PixelFormat format;
|
|
|
|
void* bits;
|
|
|
|
uint32_t reserved[2];
|
|
|
|
};
|
|
|
|
|
2011-07-15 22:10:10 +00:00
|
|
|
explicit Surface(const sp<ISurfaceTexture>& st);
|
|
|
|
|
2011-07-20 23:46:11 +00:00
|
|
|
static status_t writeToParcel(const sp<Surface>& control, Parcel* parcel);
|
2011-07-15 22:10:10 +00:00
|
|
|
|
2010-07-16 00:29:15 +00:00
|
|
|
static sp<Surface> readFromParcel(const Parcel& data);
|
2009-04-15 01:21:47 +00:00
|
|
|
static bool isValid(const sp<Surface>& surface) {
|
2009-04-17 03:04:08 +00:00
|
|
|
return (surface != 0) && surface->isValid();
|
2009-04-15 01:21:47 +00:00
|
|
|
}
|
2009-08-15 01:52:17 +00:00
|
|
|
|
|
|
|
bool isValid();
|
|
|
|
uint32_t getIdentity() const { return mIdentity; }
|
2011-06-22 22:52:53 +00:00
|
|
|
sp<ISurfaceTexture> getSurfaceTexture();
|
2009-04-15 01:21:47 +00:00
|
|
|
|
2009-08-15 01:52:17 +00:00
|
|
|
// the lock/unlock APIs must be used from the same thread
|
2011-07-14 00:39:11 +00:00
|
|
|
status_t lock(SurfaceInfo* info, Region* dirty = NULL);
|
2009-03-04 03:31:44 +00:00
|
|
|
status_t unlockAndPost();
|
|
|
|
|
2011-04-05 22:44:20 +00:00
|
|
|
sp<IBinder> asBinder() const;
|
2009-03-04 03:31:44 +00:00
|
|
|
|
2010-04-27 23:41:19 +00:00
|
|
|
private:
|
2009-08-15 01:52:17 +00:00
|
|
|
// this is just to be able to write some unit tests
|
|
|
|
friend class Test;
|
2010-04-27 23:41:19 +00:00
|
|
|
friend class SurfaceControl;
|
2009-03-04 03:31:44 +00:00
|
|
|
|
2010-04-27 23:41:19 +00:00
|
|
|
// can't be copied
|
|
|
|
Surface& operator = (Surface& rhs);
|
|
|
|
Surface(const Surface& rhs);
|
2009-04-10 21:24:30 +00:00
|
|
|
|
2011-07-15 22:10:10 +00:00
|
|
|
explicit Surface(const sp<SurfaceControl>& control);
|
2010-06-05 01:26:32 +00:00
|
|
|
Surface(const Parcel& data, const sp<IBinder>& ref);
|
2010-04-27 23:41:19 +00:00
|
|
|
~Surface();
|
|
|
|
|
|
|
|
/*
|
|
|
|
* private stuff...
|
|
|
|
*/
|
2011-07-15 22:10:10 +00:00
|
|
|
void init(const sp<ISurfaceTexture>& surfaceTexture);
|
2010-04-27 23:41:19 +00:00
|
|
|
|
2010-12-14 00:47:31 +00:00
|
|
|
static void cleanCachedSurfacesLocked();
|
2010-07-16 00:29:15 +00:00
|
|
|
|
2011-07-14 00:39:11 +00:00
|
|
|
virtual int query(int what, int* value) const;
|
|
|
|
|
2009-08-15 01:52:17 +00:00
|
|
|
// constants
|
2009-03-04 03:31:44 +00:00
|
|
|
sp<ISurface> mSurface;
|
|
|
|
uint32_t mIdentity;
|
2009-08-15 01:52:17 +00:00
|
|
|
|
2010-07-16 00:29:15 +00:00
|
|
|
// A cache of Surface objects that have been deserialized into this process.
|
|
|
|
static Mutex sCachedSurfacesLock;
|
|
|
|
static DefaultKeyedVector<wp<IBinder>, wp<Surface> > sCachedSurfaces;
|
2009-03-04 03:31:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}; // namespace android
|
|
|
|
|
2012-02-26 02:48:35 +00:00
|
|
|
#endif // ANDROID_GUI_SURFACE_H
|