blob: ae5d69a11276ab3b473fa5b04647fa746d020b1c [file] [log] [blame]
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001/*
2 * Copyright (C) 2007 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Mathias Agopian90ac7992012-02-25 18:48:35 -080017#ifndef ANDROID_GUI_SURFACE_COMPOSER_CLIENT_H
18#define ANDROID_GUI_SURFACE_COMPOSER_CLIENT_H
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080019
20#include <stdint.h>
21#include <sys/types.h>
22
Mathias Agopiandd3423c2009-09-23 15:44:05 -070023#include <binder/IBinder.h>
24
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080025#include <utils/RefBase.h>
Mathias Agopianb7e930d2010-06-01 15:12:58 -070026#include <utils/Singleton.h>
27#include <utils/SortedVector.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080028#include <utils/threads.h>
29
30#include <ui/PixelFormat.h>
Mathias Agopian9cce3252010-02-09 17:46:37 -080031
Mathias Agopian90ac7992012-02-25 18:48:35 -080032#include <gui/Surface.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080033
34namespace android {
35
36// ---------------------------------------------------------------------------
37
Mathias Agopian9cce3252010-02-09 17:46:37 -080038class DisplayInfo;
Mathias Agopian698c0872011-06-28 19:09:31 -070039class Composer;
Mathias Agopiana67932f2011-04-20 14:20:59 -070040class IMemoryHeap;
Mathias Agopian41f673c2011-11-17 17:48:35 -080041class ISurfaceComposerClient;
Jeff Brown9d4e3d22012-08-24 20:00:51 -070042class ISurfaceTexture;
Mathias Agopiana67932f2011-04-20 14:20:59 -070043class Region;
Mathias Agopianb7e930d2010-06-01 15:12:58 -070044
45// ---------------------------------------------------------------------------
46
Mathias Agopiand4784a32010-05-27 19:41:15 -070047class SurfaceComposerClient : public RefBase
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080048{
Mathias Agopian698c0872011-06-28 19:09:31 -070049 friend class Composer;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080050public:
51 SurfaceComposerClient();
52 virtual ~SurfaceComposerClient();
53
54 // Always make sure we could initialize
55 status_t initCheck() const;
56
57 // Return the connection of this client
58 sp<IBinder> connection() const;
59
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080060 // Forcibly remove connection before all references have gone away.
61 void dispose();
62
Mathias Agopiane57f2922012-08-09 16:29:12 -070063 // callback when the composer is dies
64 status_t linkToComposerDeath(const sp<IBinder::DeathRecipient>& recipient,
65 void* cookie = NULL, uint32_t flags = 0);
66
67 // Get information about a display
Jeff Brown9d4e3d22012-08-24 20:00:51 -070068 static status_t getDisplayInfo(const sp<IBinder>& display, DisplayInfo* info);
Mathias Agopiane57f2922012-08-09 16:29:12 -070069
Jeff Brown2a09bb32012-10-08 19:13:57 -070070 /* triggers screen off and waits for it to complete */
71 static void blankDisplay(const sp<IBinder>& display);
72
73 /* triggers screen on and waits for it to complete */
74 static void unblankDisplay(const sp<IBinder>& display);
75
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080076 // ------------------------------------------------------------------------
77 // surface creation / destruction
78
79 //! Create a surface
Mathias Agopian01b76682009-04-16 20:04:08 -070080 sp<SurfaceControl> createSurface(
Mathias Agopian285dbde2010-03-01 16:09:43 -080081 const String8& name,// name of the surface
Mathias Agopiancbb288b2009-09-07 16:32:45 -070082 uint32_t w, // width in pixel
83 uint32_t h, // height in pixel
84 PixelFormat format, // pixel-format desired
85 uint32_t flags = 0 // usage flags
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080086 );
87
Jeff Brown9d4e3d22012-08-24 20:00:51 -070088 //! Create a display
Jamie Gennisdd3cb842012-10-19 18:19:11 -070089 static sp<IBinder> createDisplay(const String8& displayName, bool secure);
Mathias Agopian285dbde2010-03-01 16:09:43 -080090
Jeff Brown9d4e3d22012-08-24 20:00:51 -070091 //! Get the token for the existing default displays.
92 //! Possible values for id are eDisplayIdMain and eDisplayIdHdmi.
93 static sp<IBinder> getBuiltInDisplay(int32_t id);
94
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080095 // ------------------------------------------------------------------------
96 // Composer parameters
97 // All composer parameters must be changed within a transaction
98 // several surfaces can be updated in one transaction, all changes are
99 // committed at once when the transaction is closed.
Mathias Agopiane57f2922012-08-09 16:29:12 -0700100 // closeGlobalTransaction() requires an IPC with the server.
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800101
102 //! Open a composer transaction on all active SurfaceComposerClients.
103 static void openGlobalTransaction();
Jamie Gennis2d5e2302012-10-15 18:24:43 -0700104
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800105 //! Close a composer transaction on all active SurfaceComposerClients.
Jamie Gennis28378392011-10-12 17:39:00 -0700106 static void closeGlobalTransaction(bool synchronous = false);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800107
Jamie Gennis2d5e2302012-10-15 18:24:43 -0700108 //! Flag the currently open transaction as an animation transaction.
109 static void setAnimationTransaction();
110
Mathias Agopian62185b72009-04-16 16:19:50 -0700111 status_t hide(SurfaceID id);
Jeff Brown380223b2012-08-26 22:49:35 -0700112 status_t show(SurfaceID id);
Mathias Agopian62185b72009-04-16 16:19:50 -0700113 status_t setFlags(SurfaceID id, uint32_t flags, uint32_t mask);
114 status_t setTransparentRegionHint(SurfaceID id, const Region& transparent);
115 status_t setLayer(SurfaceID id, int32_t layer);
116 status_t setAlpha(SurfaceID id, float alpha=1.0f);
Mathias Agopian62185b72009-04-16 16:19:50 -0700117 status_t setMatrix(SurfaceID id, float dsdx, float dtdx, float dsdy, float dtdy);
Mathias Agopian41b6aab2011-08-30 18:51:54 -0700118 status_t setPosition(SurfaceID id, float x, float y);
Mathias Agopian62185b72009-04-16 16:19:50 -0700119 status_t setSize(SurfaceID id, uint32_t w, uint32_t h);
Jamie Gennisf15a83f2012-05-10 20:43:55 -0700120 status_t setCrop(SurfaceID id, const Rect& crop);
Mathias Agopian87855782012-07-24 21:41:09 -0700121 status_t setLayerStack(SurfaceID id, uint32_t layerStack);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800122 status_t destroySurface(SurfaceID sid);
123
Mathias Agopiane57f2922012-08-09 16:29:12 -0700124 static void setDisplaySurface(const sp<IBinder>& token,
125 const sp<ISurfaceTexture>& surface);
126 static void setDisplayLayerStack(const sp<IBinder>& token,
127 uint32_t layerStack);
Mathias Agopian00e8c7a2012-09-04 19:30:46 -0700128
129 /* setDisplayProjection() defines the projection of layer stacks
130 * to a given display.
131 *
132 * - orientation defines the display's orientation.
133 * - layerStackRect defines which area of the window manager coordinate
134 * space will be used.
135 * - displayRect defines where on the display will layerStackRect be
136 * mapped to. displayRect is specified post-orientation, that is
137 * it uses the orientation seen by the end-user.
138 */
139 static void setDisplayProjection(const sp<IBinder>& token,
140 uint32_t orientation,
141 const Rect& layerStackRect,
142 const Rect& displayRect);
Mathias Agopiane57f2922012-08-09 16:29:12 -0700143
Mathias Agopian631f3582010-05-25 17:51:34 -0700144private:
Mathias Agopiand4784a32010-05-27 19:41:15 -0700145 virtual void onFirstRef();
Mathias Agopian698c0872011-06-28 19:09:31 -0700146 Composer& getComposer();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800147
Mathias Agopian698c0872011-06-28 19:09:31 -0700148 mutable Mutex mLock;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800149 status_t mStatus;
Mathias Agopian7e27f052010-05-28 14:22:23 -0700150 sp<ISurfaceComposerClient> mClient;
Mathias Agopian698c0872011-06-28 19:09:31 -0700151 Composer& mComposer;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800152};
153
Mathias Agopiand4784a32010-05-27 19:41:15 -0700154// ---------------------------------------------------------------------------
Mathias Agopian74c40c02010-09-29 13:02:36 -0700155
156class ScreenshotClient
157{
158 sp<IMemoryHeap> mHeap;
159 uint32_t mWidth;
160 uint32_t mHeight;
161 PixelFormat mFormat;
162public:
163 ScreenshotClient();
164
165 // frees the previous screenshot and capture a new one
Jeff Brown9d4e3d22012-08-24 20:00:51 -0700166 status_t update(const sp<IBinder>& display);
167 status_t update(const sp<IBinder>& display,
168 uint32_t reqWidth, uint32_t reqHeight);
169 status_t update(const sp<IBinder>& display,
170 uint32_t reqWidth, uint32_t reqHeight,
Mathias Agopianbf2c6a62010-12-10 16:22:31 -0800171 uint32_t minLayerZ, uint32_t maxLayerZ);
Mathias Agopian74c40c02010-09-29 13:02:36 -0700172
173 // release memory occupied by the screenshot
174 void release();
175
176 // pixels are valid until this object is freed or
177 // release() or update() is called
178 void const* getPixels() const;
179
180 uint32_t getWidth() const;
181 uint32_t getHeight() const;
182 PixelFormat getFormat() const;
183 uint32_t getStride() const;
184 // size of allocated memory in bytes
185 size_t getSize() const;
186};
187
188// ---------------------------------------------------------------------------
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800189}; // namespace android
190
Mathias Agopian90ac7992012-02-25 18:48:35 -0800191#endif // ANDROID_GUI_SURFACE_COMPOSER_CLIENT_H