blob: ba8f6308b1a00260efbd99d8d2a1b244c23cef38 [file] [log] [blame]
The Android Open Source Project9066cfe2009-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
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080017#include <stdlib.h>
18#include <stdio.h>
19#include <stdint.h>
20#include <unistd.h>
21#include <fcntl.h>
22#include <errno.h>
23#include <math.h>
Jean-Baptiste Queru20763732009-01-26 11:51:12 -080024#include <limits.h>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080025#include <sys/types.h>
26#include <sys/stat.h>
27#include <sys/ioctl.h>
28
29#include <cutils/log.h>
30#include <cutils/properties.h>
31
Mathias Agopian07952722009-05-19 19:08:10 -070032#include <binder/IPCThreadState.h>
33#include <binder/IServiceManager.h>
Mathias Agopiand763b5d2009-07-02 18:11:53 -070034#include <binder/MemoryHeapBase.h>
Mathias Agopian0dd593f2011-06-27 16:05:52 -070035#include <binder/PermissionCache.h>
Mathias Agopiand763b5d2009-07-02 18:11:53 -070036
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080037#include <utils/String8.h>
38#include <utils/String16.h>
39#include <utils/StopWatch.h>
40
Mathias Agopian6950e422009-10-05 17:07:12 -070041#include <ui/GraphicBufferAllocator.h>
Mathias Agopian04262e92010-09-13 22:57:58 -070042#include <ui/GraphicLog.h>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080043#include <ui/PixelFormat.h>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080044
45#include <pixelflinger/pixelflinger.h>
46#include <GLES/gl.h>
47
48#include "clz.h"
Mathias Agopian781953d2010-06-25 18:02:21 -070049#include "GLExtensions.h"
Mathias Agopian93d75ec2011-08-15 20:44:40 -070050#include "DdmConnection.h"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080051#include "Layer.h"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080052#include "LayerDim.h"
Mathias Agopian0ab84ef2011-10-13 16:02:48 -070053#include "LayerScreenshot.h"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080054#include "SurfaceFlinger.h"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080055
56#include "DisplayHardware/DisplayHardware.h"
Mathias Agopiane0d5f5b2010-08-10 17:14:02 -070057#include "DisplayHardware/HWComposer.h"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080058
Mathias Agopian7bb843c2011-04-20 14:20:59 -070059#include <private/surfaceflinger/SharedBufferStack.h>
60
Mathias Agopian627e7b52009-05-21 19:21:59 -070061/* ideally AID_GRAPHICS would be in a semi-public header
62 * or there would be a way to map a user/group name to its id
63 */
64#ifndef AID_GRAPHICS
65#define AID_GRAPHICS 1003
66#endif
67
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080068#define DISPLAY_COUNT 1
69
70namespace android {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080071// ---------------------------------------------------------------------------
72
Mathias Agopian0dd593f2011-06-27 16:05:52 -070073const String16 sHardwareTest("android.permission.HARDWARE_TEST");
74const String16 sAccessSurfaceFlinger("android.permission.ACCESS_SURFACE_FLINGER");
75const String16 sReadFramebuffer("android.permission.READ_FRAME_BUFFER");
76const String16 sDump("android.permission.DUMP");
77
78// ---------------------------------------------------------------------------
79
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080080SurfaceFlinger::SurfaceFlinger()
81 : BnSurfaceComposer(), Thread(false),
82 mTransactionFlags(0),
Mathias Agopian9779b222009-09-07 16:32:45 -070083 mResizeTransationPending(false),
Mathias Agopian1473f462009-04-10 14:24:30 -070084 mLayersRemoved(false),
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080085 mBootTime(systemTime()),
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080086 mVisibleRegionsDirty(false),
Mathias Agopiane0d5f5b2010-08-10 17:14:02 -070087 mHwWorkListDirty(false),
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080088 mFreezeDisplay(false),
Mathias Agopiand4e03f32010-10-14 14:54:06 -070089 mElectronBeamAnimationMode(0),
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080090 mFreezeCount(0),
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -070091 mFreezeDisplayTime(0),
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080092 mDebugRegion(0),
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080093 mDebugBackground(0),
Mathias Agopian93d75ec2011-08-15 20:44:40 -070094 mDebugDDMS(0),
Mathias Agopian6a969242010-09-22 18:58:01 -070095 mDebugDisableHWC(0),
Mathias Agopian2143fe02011-08-23 18:03:18 -070096 mDebugDisableTransformHint(0),
Mathias Agopiana8d49172009-08-26 16:36:26 -070097 mDebugInSwapBuffers(0),
98 mLastSwapBufferTime(0),
99 mDebugInTransaction(0),
100 mLastTransactionTime(0),
Mathias Agopian6950e422009-10-05 17:07:12 -0700101 mBootFinished(false),
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800102 mConsoleSignals(0),
103 mSecureFrameBuffer(0)
104{
105 init();
106}
107
108void SurfaceFlinger::init()
109{
110 LOGI("SurfaceFlinger is starting");
111
112 // debugging stuff...
113 char value[PROPERTY_VALUE_MAX];
Mathias Agopian93d75ec2011-08-15 20:44:40 -0700114
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800115 property_get("debug.sf.showupdates", value, "0");
116 mDebugRegion = atoi(value);
Mathias Agopian93d75ec2011-08-15 20:44:40 -0700117
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800118 property_get("debug.sf.showbackground", value, "0");
119 mDebugBackground = atoi(value);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800120
Mathias Agopian93d75ec2011-08-15 20:44:40 -0700121 property_get("debug.sf.ddms", value, "0");
122 mDebugDDMS = atoi(value);
123 if (mDebugDDMS) {
124 DdmConnection::start(getServiceName());
125 }
126
Mathias Agopiane5c0a7b2010-04-20 14:51:04 -0700127 LOGI_IF(mDebugRegion, "showupdates enabled");
128 LOGI_IF(mDebugBackground, "showbackground enabled");
Mathias Agopian93d75ec2011-08-15 20:44:40 -0700129 LOGI_IF(mDebugDDMS, "DDMS debugging enabled");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800130}
131
132SurfaceFlinger::~SurfaceFlinger()
133{
134 glDeleteTextures(1, &mWormholeTexName);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800135}
136
Mathias Agopiand763b5d2009-07-02 18:11:53 -0700137sp<IMemoryHeap> SurfaceFlinger::getCblk() const
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800138{
Mathias Agopiand763b5d2009-07-02 18:11:53 -0700139 return mServerHeap;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800140}
141
Mathias Agopian770492c2010-05-28 14:22:23 -0700142sp<ISurfaceComposerClient> SurfaceFlinger::createConnection()
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800143{
Mathias Agopian593c05c2010-06-02 23:28:45 -0700144 sp<ISurfaceComposerClient> bclient;
145 sp<Client> client(new Client(this));
146 status_t err = client->initCheck();
147 if (err == NO_ERROR) {
148 bclient = client;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800149 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800150 return bclient;
151}
152
Jamie Gennisf7acf162011-01-12 18:30:40 -0800153sp<IGraphicBufferAlloc> SurfaceFlinger::createGraphicBufferAlloc()
154{
155 sp<GraphicBufferAlloc> gba(new GraphicBufferAlloc());
156 return gba;
157}
Mathias Agopian7623da42010-06-01 15:12:58 -0700158
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800159const GraphicPlane& SurfaceFlinger::graphicPlane(int dpy) const
160{
161 LOGE_IF(uint32_t(dpy) >= DISPLAY_COUNT, "Invalid DisplayID %d", dpy);
162 const GraphicPlane& plane(mGraphicPlanes[dpy]);
163 return plane;
164}
165
166GraphicPlane& SurfaceFlinger::graphicPlane(int dpy)
167{
168 return const_cast<GraphicPlane&>(
169 const_cast<SurfaceFlinger const *>(this)->graphicPlane(dpy));
170}
171
172void SurfaceFlinger::bootFinished()
173{
174 const nsecs_t now = systemTime();
175 const nsecs_t duration = now - mBootTime;
Andreas Hubere3c01832010-08-16 08:49:37 -0700176 LOGI("Boot is finished (%ld ms)", long(ns2ms(duration)) );
Mathias Agopian6950e422009-10-05 17:07:12 -0700177 mBootFinished = true;
Mathias Agopian0c63ef52011-07-01 17:08:43 -0700178
179 // wait patiently for the window manager death
180 const String16 name("window");
181 sp<IBinder> window(defaultServiceManager()->getService(name));
182 if (window != 0) {
183 window->linkToDeath(this);
184 }
185
186 // stop boot animation
Mathias Agopian627e7b52009-05-21 19:21:59 -0700187 property_set("ctl.stop", "bootanim");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800188}
189
Mathias Agopian0c63ef52011-07-01 17:08:43 -0700190void SurfaceFlinger::binderDied(const wp<IBinder>& who)
191{
192 // the window manager died on us. prepare its eulogy.
193
194 // unfreeze the screen in case it was... frozen
195 mFreezeDisplayTime = 0;
196 mFreezeCount = 0;
197 mFreezeDisplay = false;
198
199 // reset screen orientation
200 setOrientation(0, eOrientationDefault, 0);
201
202 // restart the boot-animation
203 property_set("ctl.start", "bootanim");
204}
205
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800206void SurfaceFlinger::onFirstRef()
207{
208 run("SurfaceFlinger", PRIORITY_URGENT_DISPLAY);
209
210 // Wait for the main thread to be done with its initialization
211 mReadyToRunBarrier.wait();
212}
213
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800214static inline uint16_t pack565(int r, int g, int b) {
215 return (r<<11)|(g<<5)|b;
216}
217
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800218status_t SurfaceFlinger::readyToRun()
219{
220 LOGI( "SurfaceFlinger's main thread ready to run. "
221 "Initializing graphics H/W...");
222
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800223 // we only support one display currently
224 int dpy = 0;
225
226 {
227 // initialize the main display
228 GraphicPlane& plane(graphicPlane(dpy));
229 DisplayHardware* const hw = new DisplayHardware(this, dpy);
230 plane.setDisplayHardware(hw);
231 }
232
Mathias Agopiand763b5d2009-07-02 18:11:53 -0700233 // create the shared control-block
234 mServerHeap = new MemoryHeapBase(4096,
235 MemoryHeapBase::READ_ONLY, "SurfaceFlinger read-only heap");
236 LOGE_IF(mServerHeap==0, "can't create shared memory dealer");
Andreas Hubere3c01832010-08-16 08:49:37 -0700237
Mathias Agopiand763b5d2009-07-02 18:11:53 -0700238 mServerCblk = static_cast<surface_flinger_cblk_t*>(mServerHeap->getBase());
239 LOGE_IF(mServerCblk==0, "can't get to shared control block's address");
Andreas Hubere3c01832010-08-16 08:49:37 -0700240
Mathias Agopiand763b5d2009-07-02 18:11:53 -0700241 new(mServerCblk) surface_flinger_cblk_t;
242
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800243 // initialize primary screen
244 // (other display should be initialized in the same manner, but
245 // asynchronously, as they could come and go. None of this is supported
246 // yet).
247 const GraphicPlane& plane(graphicPlane(dpy));
248 const DisplayHardware& hw = plane.displayHardware();
249 const uint32_t w = hw.getWidth();
250 const uint32_t h = hw.getHeight();
251 const uint32_t f = hw.getFormat();
252 hw.makeCurrent();
253
254 // initialize the shared control block
255 mServerCblk->connected |= 1<<dpy;
256 display_cblk_t* dcblk = mServerCblk->displays + dpy;
257 memset(dcblk, 0, sizeof(display_cblk_t));
Mathias Agopian66c77a52010-02-08 15:49:35 -0800258 dcblk->w = plane.getWidth();
259 dcblk->h = plane.getHeight();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800260 dcblk->format = f;
261 dcblk->orientation = ISurfaceComposer::eOrientationDefault;
262 dcblk->xdpi = hw.getDpiX();
263 dcblk->ydpi = hw.getDpiY();
264 dcblk->fps = hw.getRefreshRate();
265 dcblk->density = hw.getDensity();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800266
267 // Initialize OpenGL|ES
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800268 glPixelStorei(GL_UNPACK_ALIGNMENT, 4);
Andreas Hubere3c01832010-08-16 08:49:37 -0700269 glPixelStorei(GL_PACK_ALIGNMENT, 4);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800270 glEnableClientState(GL_VERTEX_ARRAY);
271 glEnable(GL_SCISSOR_TEST);
272 glShadeModel(GL_FLAT);
273 glDisable(GL_DITHER);
274 glDisable(GL_CULL_FACE);
275
276 const uint16_t g0 = pack565(0x0F,0x1F,0x0F);
277 const uint16_t g1 = pack565(0x17,0x2f,0x17);
Jamie Gennis830d0832011-10-07 14:51:16 -0700278 const uint16_t wormholeTexData[4] = { g0, g1, g1, g0 };
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800279 glGenTextures(1, &mWormholeTexName);
280 glBindTexture(GL_TEXTURE_2D, mWormholeTexName);
281 glTexParameterx(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST);
282 glTexParameterx(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST);
283 glTexParameterx(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_REPEAT);
284 glTexParameterx(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_REPEAT);
285 glTexImage2D(GL_TEXTURE_2D, 0, GL_RGB, 2, 2, 0,
Jamie Gennis830d0832011-10-07 14:51:16 -0700286 GL_RGB, GL_UNSIGNED_SHORT_5_6_5, wormholeTexData);
287
288 const uint16_t protTexData[] = { pack565(0x03, 0x03, 0x03) };
289 glGenTextures(1, &mProtectedTexName);
290 glBindTexture(GL_TEXTURE_2D, mProtectedTexName);
291 glTexParameterx(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST);
292 glTexParameterx(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST);
293 glTexParameterx(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_REPEAT);
294 glTexParameterx(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_REPEAT);
295 glTexImage2D(GL_TEXTURE_2D, 0, GL_RGB, 1, 1, 0,
296 GL_RGB, GL_UNSIGNED_SHORT_5_6_5, protTexData);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800297
298 glViewport(0, 0, w, h);
299 glMatrixMode(GL_PROJECTION);
300 glLoadIdentity();
Mathias Agopian3a831d22011-07-07 17:30:31 -0700301 // put the origin in the left-bottom corner
302 glOrthof(0, w, 0, h, 0, 1); // l=0, r=w ; b=0, t=h
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800303
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800304 mReadyToRunBarrier.open();
305
306 /*
307 * We're now ready to accept clients...
308 */
309
Mathias Agopian627e7b52009-05-21 19:21:59 -0700310 // start boot animation
311 property_set("ctl.start", "bootanim");
Andreas Hubere3c01832010-08-16 08:49:37 -0700312
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800313 return NO_ERROR;
314}
315
316// ----------------------------------------------------------------------------
317#if 0
318#pragma mark -
319#pragma mark Events Handler
320#endif
321
322void SurfaceFlinger::waitForEvent()
323{
Mathias Agopian6ead5d92009-04-20 19:39:12 -0700324 while (true) {
325 nsecs_t timeout = -1;
Mathias Agopian0e449762009-12-01 17:23:28 -0800326 const nsecs_t freezeDisplayTimeout = ms2ns(5000);
Mathias Agopian6ead5d92009-04-20 19:39:12 -0700327 if (UNLIKELY(isFrozen())) {
328 // wait 5 seconds
Mathias Agopian6ead5d92009-04-20 19:39:12 -0700329 const nsecs_t now = systemTime();
330 if (mFreezeDisplayTime == 0) {
331 mFreezeDisplayTime = now;
332 }
333 nsecs_t waitTime = freezeDisplayTimeout - (now - mFreezeDisplayTime);
334 timeout = waitTime>0 ? waitTime : 0;
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -0700335 }
Mathias Agopian6ead5d92009-04-20 19:39:12 -0700336
Mathias Agopian898c4c92010-05-18 17:06:55 -0700337 sp<MessageBase> msg = mEventQueue.waitMessage(timeout);
Mathias Agopian0e449762009-12-01 17:23:28 -0800338
339 // see if we timed out
340 if (isFrozen()) {
341 const nsecs_t now = systemTime();
342 nsecs_t frozenTime = (now - mFreezeDisplayTime);
343 if (frozenTime >= freezeDisplayTimeout) {
344 // we timed out and are still frozen
345 LOGW("timeout expired mFreezeDisplay=%d, mFreezeCount=%d",
346 mFreezeDisplay, mFreezeCount);
347 mFreezeDisplayTime = 0;
348 mFreezeCount = 0;
349 mFreezeDisplay = false;
350 }
351 }
352
Mathias Agopian6ead5d92009-04-20 19:39:12 -0700353 if (msg != 0) {
Mathias Agopian6ead5d92009-04-20 19:39:12 -0700354 switch (msg->what) {
355 case MessageQueue::INVALIDATE:
356 // invalidate message, just return to the main loop
357 return;
358 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800359 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800360 }
361}
362
363void SurfaceFlinger::signalEvent() {
Mathias Agopian6ead5d92009-04-20 19:39:12 -0700364 mEventQueue.invalidate();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800365}
366
Jamie Gennis9b8fc652011-08-17 18:19:00 -0700367bool SurfaceFlinger::authenticateSurfaceTexture(
368 const sp<ISurfaceTexture>& surfaceTexture) const {
Jamie Gennisd2acedf2011-03-08 12:18:54 -0800369 Mutex::Autolock _l(mStateLock);
Jamie Gennis9b8fc652011-08-17 18:19:00 -0700370 sp<IBinder> surfaceTextureBinder(surfaceTexture->asBinder());
Jamie Gennisd2acedf2011-03-08 12:18:54 -0800371
372 // Check the visible layer list for the ISurface
373 const LayerVector& currentLayers = mCurrentState.layersSortedByZ;
374 size_t count = currentLayers.size();
375 for (size_t i=0 ; i<count ; i++) {
376 const sp<LayerBase>& layer(currentLayers[i]);
377 sp<LayerBaseClient> lbc(layer->getLayerBaseClient());
Jamie Gennis9b8fc652011-08-17 18:19:00 -0700378 if (lbc != NULL) {
379 wp<IBinder> lbcBinder = lbc->getSurfaceTextureBinder();
380 if (lbcBinder == surfaceTextureBinder) {
381 return true;
382 }
Jamie Gennisd2acedf2011-03-08 12:18:54 -0800383 }
384 }
385
386 // Check the layers in the purgatory. This check is here so that if a
Jamie Gennis9b8fc652011-08-17 18:19:00 -0700387 // SurfaceTexture gets destroyed before all the clients are done using it,
388 // the error will not be reported as "surface XYZ is not authenticated", but
Jamie Gennisd2acedf2011-03-08 12:18:54 -0800389 // will instead fail later on when the client tries to use the surface,
390 // which should be reported as "surface XYZ returned an -ENODEV". The
391 // purgatorized layers are no less authentic than the visible ones, so this
392 // should not cause any harm.
393 size_t purgatorySize = mLayerPurgatory.size();
394 for (size_t i=0 ; i<purgatorySize ; i++) {
395 const sp<LayerBase>& layer(mLayerPurgatory.itemAt(i));
396 sp<LayerBaseClient> lbc(layer->getLayerBaseClient());
Jamie Gennis9b8fc652011-08-17 18:19:00 -0700397 if (lbc != NULL) {
398 wp<IBinder> lbcBinder = lbc->getSurfaceTextureBinder();
399 if (lbcBinder == surfaceTextureBinder) {
400 return true;
401 }
Jamie Gennisd2acedf2011-03-08 12:18:54 -0800402 }
403 }
404
405 return false;
406}
407
Mathias Agopian898c4c92010-05-18 17:06:55 -0700408status_t SurfaceFlinger::postMessageAsync(const sp<MessageBase>& msg,
409 nsecs_t reltime, uint32_t flags)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800410{
Mathias Agopian898c4c92010-05-18 17:06:55 -0700411 return mEventQueue.postMessage(msg, reltime, flags);
412}
413
414status_t SurfaceFlinger::postMessageSync(const sp<MessageBase>& msg,
415 nsecs_t reltime, uint32_t flags)
416{
417 status_t res = mEventQueue.postMessage(msg, reltime, flags);
418 if (res == NO_ERROR) {
419 msg->wait();
420 }
421 return res;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800422}
423
424// ----------------------------------------------------------------------------
425#if 0
426#pragma mark -
427#pragma mark Main loop
428#endif
429
430bool SurfaceFlinger::threadLoop()
431{
432 waitForEvent();
433
434 // check for transactions
435 if (UNLIKELY(mConsoleSignals)) {
436 handleConsoleEvents();
437 }
438
Mathias Agopian439863f2011-06-28 19:09:31 -0700439 // if we're in a global transaction, don't do anything.
440 const uint32_t mask = eTransactionNeeded | eTraversalNeeded;
441 uint32_t transactionFlags = peekTransactionFlags(mask);
442 if (UNLIKELY(transactionFlags)) {
443 handleTransaction(transactionFlags);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800444 }
445
446 // post surfaces (if needed)
447 handlePageFlip();
448
Mathias Agopian0d0fba42011-10-18 17:36:28 -0700449 if (mDirtyRegion.isEmpty()) {
450 // nothing new to do.
451 return true;
452 }
453
Mathias Agopiane0d5f5b2010-08-10 17:14:02 -0700454 if (UNLIKELY(mHwWorkListDirty)) {
455 // build the h/w work list
456 handleWorkList();
457 }
458
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800459 const DisplayHardware& hw(graphicPlane(0).displayHardware());
Mathias Agopiane757a872011-10-16 18:46:35 -0700460 if (LIKELY(hw.canDraw())) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800461 // repaint the framebuffer (if needed)
Mathias Agopian04262e92010-09-13 22:57:58 -0700462
463 const int index = hw.getCurrentBufferIndex();
464 GraphicLog& logger(GraphicLog::getInstance());
465
466 logger.log(GraphicLog::SF_REPAINT, index);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800467 handleRepaint();
468
Mathias Agopianb1a18742009-09-17 16:18:16 -0700469 // inform the h/w that we're done compositing
Mathias Agopian04262e92010-09-13 22:57:58 -0700470 logger.log(GraphicLog::SF_COMPOSITION_COMPLETE, index);
Mathias Agopianb1a18742009-09-17 16:18:16 -0700471 hw.compositionComplete();
472
Mathias Agopian04262e92010-09-13 22:57:58 -0700473 logger.log(GraphicLog::SF_SWAP_BUFFERS, index);
Antti Hatala4c0a4a22010-09-08 06:37:14 -0700474 postFramebuffer();
475
Mathias Agopian04262e92010-09-13 22:57:58 -0700476 logger.log(GraphicLog::SF_REPAINT_DONE, index);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800477 } else {
478 // pretend we did the post
Mathias Agopiana6b8c1c2010-12-15 14:41:59 -0800479 hw.compositionComplete();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800480 usleep(16667); // 60 fps period
481 }
482 return true;
483}
484
485void SurfaceFlinger::postFramebuffer()
486{
Mathias Agopian0d0fba42011-10-18 17:36:28 -0700487 // this should never happen. we do the flip anyways so we don't
488 // risk to cause a deadlock with hwc
489 LOGW_IF(mSwapRegion.isEmpty(), "mSwapRegion is empty");
Mathias Agopiane757a872011-10-16 18:46:35 -0700490 const DisplayHardware& hw(graphicPlane(0).displayHardware());
491 const nsecs_t now = systemTime();
492 mDebugInSwapBuffers = now;
493 hw.flip(mSwapRegion);
494 mLastSwapBufferTime = systemTime() - now;
495 mDebugInSwapBuffers = 0;
496 mSwapRegion.clear();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800497}
498
499void SurfaceFlinger::handleConsoleEvents()
500{
501 // something to do with the console
502 const DisplayHardware& hw = graphicPlane(0).displayHardware();
503
504 int what = android_atomic_and(0, &mConsoleSignals);
505 if (what & eConsoleAcquired) {
506 hw.acquireScreen();
Mathias Agopian2d2b8032010-10-12 16:05:48 -0700507 // this is a temporary work-around, eventually this should be called
508 // by the power-manager
Mathias Agopiand4e03f32010-10-14 14:54:06 -0700509 SurfaceFlinger::turnElectronBeamOn(mElectronBeamAnimationMode);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800510 }
511
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800512 if (what & eConsoleReleased) {
Mathias Agopianaab758e2010-10-11 12:37:43 -0700513 if (hw.isScreenAcquired()) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800514 hw.releaseScreen();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800515 }
516 }
517
518 mDirtyRegion.set(hw.bounds());
519}
520
521void SurfaceFlinger::handleTransaction(uint32_t transactionFlags)
522{
Mathias Agopian69608112011-05-19 15:38:14 -0700523 Mutex::Autolock _l(mStateLock);
524 const nsecs_t now = systemTime();
525 mDebugInTransaction = now;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800526
Mathias Agopian69608112011-05-19 15:38:14 -0700527 // Here we're guaranteed that some transaction flags are set
528 // so we can call handleTransactionLocked() unconditionally.
529 // We call getTransactionFlags(), which will also clear the flags,
530 // with mStateLock held to guarantee that mCurrentState won't change
531 // until the transaction is committed.
Mathias Agopianff1d4102010-08-10 17:19:56 -0700532
Mathias Agopian69608112011-05-19 15:38:14 -0700533 const uint32_t mask = eTransactionNeeded | eTraversalNeeded;
534 transactionFlags = getTransactionFlags(mask);
535 handleTransactionLocked(transactionFlags);
Mathias Agopian6dcb1552011-05-03 17:04:02 -0700536
Mathias Agopian69608112011-05-19 15:38:14 -0700537 mLastTransactionTime = systemTime() - now;
538 mDebugInTransaction = 0;
539 invalidateHwcGeometry();
540 // here the transaction has been committed
Mathias Agopian2d5ee252009-06-04 18:46:21 -0700541}
542
Mathias Agopian69608112011-05-19 15:38:14 -0700543void SurfaceFlinger::handleTransactionLocked(uint32_t transactionFlags)
Mathias Agopian2d5ee252009-06-04 18:46:21 -0700544{
545 const LayerVector& currentLayers(mCurrentState.layersSortedByZ);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800546 const size_t count = currentLayers.size();
547
548 /*
549 * Traversal of the children
550 * (perform the transaction for each of them if needed)
551 */
552
553 const bool layersNeedTransaction = transactionFlags & eTraversalNeeded;
554 if (layersNeedTransaction) {
555 for (size_t i=0 ; i<count ; i++) {
Mathias Agopian1473f462009-04-10 14:24:30 -0700556 const sp<LayerBase>& layer = currentLayers[i];
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800557 uint32_t trFlags = layer->getTransactionFlags(eTransactionNeeded);
558 if (!trFlags) continue;
559
560 const uint32_t flags = layer->doTransaction(0);
561 if (flags & Layer::eVisibleRegion)
562 mVisibleRegionsDirty = true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800563 }
564 }
565
566 /*
567 * Perform our own transaction if needed
568 */
569
570 if (transactionFlags & eTransactionNeeded) {
571 if (mCurrentState.orientation != mDrawingState.orientation) {
572 // the orientation has changed, recompute all visible regions
573 // and invalidate everything.
574
575 const int dpy = 0;
576 const int orientation = mCurrentState.orientation;
Jeff Brown01a98dd2011-09-20 15:08:29 -0700577 // Currently unused: const uint32_t flags = mCurrentState.orientationFlags;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800578 GraphicPlane& plane(graphicPlane(dpy));
579 plane.setOrientation(orientation);
580
581 // update the shared control block
582 const DisplayHardware& hw(plane.displayHardware());
583 volatile display_cblk_t* dcblk = mServerCblk->displays + dpy;
584 dcblk->orientation = orientation;
Mathias Agopian66c77a52010-02-08 15:49:35 -0800585 dcblk->w = plane.getWidth();
586 dcblk->h = plane.getHeight();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800587
588 mVisibleRegionsDirty = true;
589 mDirtyRegion.set(hw.bounds());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800590 }
591
592 if (mCurrentState.freezeDisplay != mDrawingState.freezeDisplay) {
593 // freezing or unfreezing the display -> trigger animation if needed
594 mFreezeDisplay = mCurrentState.freezeDisplay;
Mathias Agopian31901cc2010-03-01 17:51:17 -0800595 if (mFreezeDisplay)
596 mFreezeDisplayTime = 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800597 }
598
Mathias Agopiana3aa6c92009-04-22 15:23:34 -0700599 if (currentLayers.size() > mDrawingState.layersSortedByZ.size()) {
600 // layers have been added
601 mVisibleRegionsDirty = true;
602 }
603
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800604 // some layers might have been removed, so
605 // we need to update the regions they're exposing.
Mathias Agopian1473f462009-04-10 14:24:30 -0700606 if (mLayersRemoved) {
Mathias Agopian248b5bd2009-09-10 19:41:18 -0700607 mLayersRemoved = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800608 mVisibleRegionsDirty = true;
Mathias Agopiana3aa6c92009-04-22 15:23:34 -0700609 const LayerVector& previousLayers(mDrawingState.layersSortedByZ);
Mathias Agopian2d5ee252009-06-04 18:46:21 -0700610 const size_t count = previousLayers.size();
611 for (size_t i=0 ; i<count ; i++) {
Mathias Agopiana3aa6c92009-04-22 15:23:34 -0700612 const sp<LayerBase>& layer(previousLayers[i]);
613 if (currentLayers.indexOf( layer ) < 0) {
614 // this layer is not visible anymore
Mathias Agopian33863dd2009-07-28 14:20:21 -0700615 mDirtyRegionRemovedLayer.orSelf(layer->visibleRegionScreen);
Mathias Agopiana3aa6c92009-04-22 15:23:34 -0700616 }
617 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800618 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800619 }
620
621 commitTransaction();
622}
623
624sp<FreezeLock> SurfaceFlinger::getFreezeLock() const
625{
626 return new FreezeLock(const_cast<SurfaceFlinger *>(this));
627}
628
629void SurfaceFlinger::computeVisibleRegions(
Mathias Agopianf0ff9062011-03-11 16:54:47 -0800630 const LayerVector& currentLayers, Region& dirtyRegion, Region& opaqueRegion)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800631{
632 const GraphicPlane& plane(graphicPlane(0));
633 const Transform& planeTransform(plane.transform());
Mathias Agopian9c041bb2010-03-16 16:41:46 -0700634 const DisplayHardware& hw(plane.displayHardware());
635 const Region screenRegion(hw.bounds());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800636
637 Region aboveOpaqueLayers;
638 Region aboveCoveredLayers;
639 Region dirty;
640
641 bool secureFrameBuffer = false;
642
643 size_t i = currentLayers.size();
644 while (i--) {
Mathias Agopian1473f462009-04-10 14:24:30 -0700645 const sp<LayerBase>& layer = currentLayers[i];
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800646 layer->validateVisibility(planeTransform);
647
648 // start with the whole surface at its current location
Mathias Agopian12cedff2009-07-28 10:57:27 -0700649 const Layer::State& s(layer->drawingState());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800650
Mathias Agopian9c041bb2010-03-16 16:41:46 -0700651 /*
652 * opaqueRegion: area of a surface that is fully opaque.
653 */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800654 Region opaqueRegion;
Mathias Agopian9c041bb2010-03-16 16:41:46 -0700655
656 /*
657 * visibleRegion: area of a surface that is visible on screen
658 * and not fully transparent. This is essentially the layer's
659 * footprint minus the opaque regions above it.
660 * Areas covered by a translucent surface are considered visible.
661 */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800662 Region visibleRegion;
Mathias Agopian9c041bb2010-03-16 16:41:46 -0700663
664 /*
665 * coveredRegion: area of a surface that is covered by all
666 * visible regions above it (which includes the translucent areas).
667 */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800668 Region coveredRegion;
Mathias Agopian9c041bb2010-03-16 16:41:46 -0700669
670
671 // handle hidden surfaces by setting the visible region to empty
Mathias Agopian12cedff2009-07-28 10:57:27 -0700672 if (LIKELY(!(s.flags & ISurfaceComposer::eLayerHidden) && s.alpha)) {
Mathias Agopian7bb843c2011-04-20 14:20:59 -0700673 const bool translucent = !layer->isOpaque();
Mathias Agopian12cedff2009-07-28 10:57:27 -0700674 const Rect bounds(layer->visibleBounds());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800675 visibleRegion.set(bounds);
Mathias Agopian9c041bb2010-03-16 16:41:46 -0700676 visibleRegion.andSelf(screenRegion);
677 if (!visibleRegion.isEmpty()) {
678 // Remove the transparent area from the visible region
679 if (translucent) {
680 visibleRegion.subtractSelf(layer->transparentRegionScreen);
681 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800682
Mathias Agopian9c041bb2010-03-16 16:41:46 -0700683 // compute the opaque region
684 const int32_t layerOrientation = layer->getOrientation();
685 if (s.alpha==255 && !translucent &&
686 ((layerOrientation & Transform::ROT_INVALID) == false)) {
687 // the opaque region is the layer's footprint
688 opaqueRegion = visibleRegion;
689 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800690 }
691 }
692
Mathias Agopian9c041bb2010-03-16 16:41:46 -0700693 // Clip the covered region to the visible region
694 coveredRegion = aboveCoveredLayers.intersect(visibleRegion);
695
696 // Update aboveCoveredLayers for next (lower) layer
697 aboveCoveredLayers.orSelf(visibleRegion);
698
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800699 // subtract the opaque region covered by the layers above us
700 visibleRegion.subtractSelf(aboveOpaqueLayers);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800701
702 // compute this layer's dirty region
703 if (layer->contentDirty) {
704 // we need to invalidate the whole region
705 dirty = visibleRegion;
706 // as well, as the old visible region
707 dirty.orSelf(layer->visibleRegionScreen);
708 layer->contentDirty = false;
709 } else {
Mathias Agopian0aed7e92009-06-28 02:54:16 -0700710 /* compute the exposed region:
Mathias Agopian9c041bb2010-03-16 16:41:46 -0700711 * the exposed region consists of two components:
712 * 1) what's VISIBLE now and was COVERED before
713 * 2) what's EXPOSED now less what was EXPOSED before
714 *
715 * note that (1) is conservative, we start with the whole
716 * visible region but only keep what used to be covered by
717 * something -- which mean it may have been exposed.
718 *
719 * (2) handles areas that were not covered by anything but got
720 * exposed because of a resize.
Mathias Agopian0aed7e92009-06-28 02:54:16 -0700721 */
Mathias Agopian9c041bb2010-03-16 16:41:46 -0700722 const Region newExposed = visibleRegion - coveredRegion;
723 const Region oldVisibleRegion = layer->visibleRegionScreen;
724 const Region oldCoveredRegion = layer->coveredRegionScreen;
725 const Region oldExposed = oldVisibleRegion - oldCoveredRegion;
726 dirty = (visibleRegion&oldCoveredRegion) | (newExposed-oldExposed);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800727 }
728 dirty.subtractSelf(aboveOpaqueLayers);
729
730 // accumulate to the screen dirty region
731 dirtyRegion.orSelf(dirty);
732
Mathias Agopian9c041bb2010-03-16 16:41:46 -0700733 // Update aboveOpaqueLayers for next (lower) layer
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800734 aboveOpaqueLayers.orSelf(opaqueRegion);
Andreas Hubere3c01832010-08-16 08:49:37 -0700735
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800736 // Store the visible region is screen space
737 layer->setVisibleRegion(visibleRegion);
738 layer->setCoveredRegion(coveredRegion);
739
Mathias Agopian12cedff2009-07-28 10:57:27 -0700740 // If a secure layer is partially visible, lock-down the screen!
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800741 if (layer->isSecure() && !visibleRegion.isEmpty()) {
742 secureFrameBuffer = true;
743 }
744 }
745
Mathias Agopian12cedff2009-07-28 10:57:27 -0700746 // invalidate the areas where a layer was removed
747 dirtyRegion.orSelf(mDirtyRegionRemovedLayer);
748 mDirtyRegionRemovedLayer.clear();
749
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800750 mSecureFrameBuffer = secureFrameBuffer;
751 opaqueRegion = aboveOpaqueLayers;
752}
753
754
755void SurfaceFlinger::commitTransaction()
756{
757 mDrawingState = mCurrentState;
Mathias Agopian9779b222009-09-07 16:32:45 -0700758 mResizeTransationPending = false;
759 mTransactionCV.broadcast();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800760}
761
762void SurfaceFlinger::handlePageFlip()
763{
764 bool visibleRegions = mVisibleRegionsDirty;
Mathias Agopianf0ff9062011-03-11 16:54:47 -0800765 const LayerVector& currentLayers(mDrawingState.layersSortedByZ);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800766 visibleRegions |= lockPageFlip(currentLayers);
767
768 const DisplayHardware& hw = graphicPlane(0).displayHardware();
769 const Region screenRegion(hw.bounds());
770 if (visibleRegions) {
771 Region opaqueRegion;
772 computeVisibleRegions(currentLayers, mDirtyRegion, opaqueRegion);
Mathias Agopianff1d4102010-08-10 17:19:56 -0700773
774 /*
775 * rebuild the visible layer list
776 */
Mathias Agopianf0ff9062011-03-11 16:54:47 -0800777 const size_t count = currentLayers.size();
Mathias Agopianff1d4102010-08-10 17:19:56 -0700778 mVisibleLayersSortedByZ.clear();
Mathias Agopianff1d4102010-08-10 17:19:56 -0700779 mVisibleLayersSortedByZ.setCapacity(count);
780 for (size_t i=0 ; i<count ; i++) {
781 if (!currentLayers[i]->visibleRegionScreen.isEmpty())
782 mVisibleLayersSortedByZ.add(currentLayers[i]);
783 }
784
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800785 mWormholeRegion = screenRegion.subtract(opaqueRegion);
786 mVisibleRegionsDirty = false;
Mathias Agopianfb4dcb12011-01-13 17:53:01 -0800787 invalidateHwcGeometry();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800788 }
789
790 unlockPageFlip(currentLayers);
Mathias Agopian6497eab2011-10-21 15:18:28 -0700791
792 mDirtyRegion.orSelf(getAndClearInvalidateRegion());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800793 mDirtyRegion.andSelf(screenRegion);
794}
795
Mathias Agopianfb4dcb12011-01-13 17:53:01 -0800796void SurfaceFlinger::invalidateHwcGeometry()
797{
798 mHwWorkListDirty = true;
799}
800
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800801bool SurfaceFlinger::lockPageFlip(const LayerVector& currentLayers)
802{
803 bool recomputeVisibleRegions = false;
804 size_t count = currentLayers.size();
Mathias Agopian1473f462009-04-10 14:24:30 -0700805 sp<LayerBase> const* layers = currentLayers.array();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800806 for (size_t i=0 ; i<count ; i++) {
Mathias Agopian7623da42010-06-01 15:12:58 -0700807 const sp<LayerBase>& layer(layers[i]);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800808 layer->lockPageFlip(recomputeVisibleRegions);
809 }
810 return recomputeVisibleRegions;
811}
812
813void SurfaceFlinger::unlockPageFlip(const LayerVector& currentLayers)
814{
815 const GraphicPlane& plane(graphicPlane(0));
816 const Transform& planeTransform(plane.transform());
817 size_t count = currentLayers.size();
Mathias Agopian1473f462009-04-10 14:24:30 -0700818 sp<LayerBase> const* layers = currentLayers.array();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800819 for (size_t i=0 ; i<count ; i++) {
Mathias Agopian7623da42010-06-01 15:12:58 -0700820 const sp<LayerBase>& layer(layers[i]);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800821 layer->unlockPageFlip(planeTransform, mDirtyRegion);
822 }
823}
824
Mathias Agopiane0d5f5b2010-08-10 17:14:02 -0700825void SurfaceFlinger::handleWorkList()
826{
827 mHwWorkListDirty = false;
828 HWComposer& hwc(graphicPlane(0).displayHardware().getHwComposer());
829 if (hwc.initCheck() == NO_ERROR) {
830 const Vector< sp<LayerBase> >& currentLayers(mVisibleLayersSortedByZ);
831 const size_t count = currentLayers.size();
832 hwc.createWorkList(count);
Mathias Agopianf8e705d2010-08-12 15:03:26 -0700833 hwc_layer_t* const cur(hwc.getLayers());
834 for (size_t i=0 ; cur && i<count ; i++) {
835 currentLayers[i]->setGeometry(&cur[i]);
Mathias Agopian7f76a3c2011-08-22 21:44:41 -0700836 if (mDebugDisableHWC || mDebugRegion) {
Mathias Agopian6a969242010-09-22 18:58:01 -0700837 cur[i].compositionType = HWC_FRAMEBUFFER;
838 cur[i].flags |= HWC_SKIP_LAYER;
839 }
Mathias Agopiane0d5f5b2010-08-10 17:14:02 -0700840 }
841 }
842}
Mathias Agopian8c9687a2009-06-26 19:06:36 -0700843
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800844void SurfaceFlinger::handleRepaint()
845{
Mathias Agopian8c9687a2009-06-26 19:06:36 -0700846 // compute the invalid region
Mathias Agopiand0f2f0d2011-09-20 17:22:44 -0700847 mSwapRegion.orSelf(mDirtyRegion);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800848
849 if (UNLIKELY(mDebugRegion)) {
850 debugFlashRegions();
851 }
852
Mathias Agopian8c9687a2009-06-26 19:06:36 -0700853 // set the frame buffer
854 const DisplayHardware& hw(graphicPlane(0).displayHardware());
855 glMatrixMode(GL_MODELVIEW);
856 glLoadIdentity();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800857
858 uint32_t flags = hw.getFlags();
Andreas Hubere3c01832010-08-16 08:49:37 -0700859 if ((flags & DisplayHardware::SWAP_RECTANGLE) ||
860 (flags & DisplayHardware::BUFFER_PRESERVED))
Mathias Agopian2e20bff2009-05-04 19:29:25 -0700861 {
Mathias Agopianecfa7cc2009-06-29 18:49:56 -0700862 // we can redraw only what's dirty, but since SWAP_RECTANGLE only
863 // takes a rectangle, we must make sure to update that whole
864 // rectangle in that case
865 if (flags & DisplayHardware::SWAP_RECTANGLE) {
Mathias Agopian7623da42010-06-01 15:12:58 -0700866 // TODO: we really should be able to pass a region to
Mathias Agopianecfa7cc2009-06-29 18:49:56 -0700867 // SWAP_RECTANGLE so that we don't have to redraw all this.
Mathias Agopiand0f2f0d2011-09-20 17:22:44 -0700868 mDirtyRegion.set(mSwapRegion.bounds());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800869 } else {
Mathias Agopianecfa7cc2009-06-29 18:49:56 -0700870 // in the BUFFER_PRESERVED case, obviously, we can update only
871 // what's needed and nothing more.
872 // NOTE: this is NOT a common case, as preserving the backbuffer
873 // is costly and usually involves copying the whole update back.
874 }
875 } else {
Mathias Agopianf2d28b72009-09-24 14:57:26 -0700876 if (flags & DisplayHardware::PARTIAL_UPDATES) {
Mathias Agopianecfa7cc2009-06-29 18:49:56 -0700877 // We need to redraw the rectangle that will be updated
878 // (pushed to the framebuffer).
Mathias Agopianf2d28b72009-09-24 14:57:26 -0700879 // This is needed because PARTIAL_UPDATES only takes one
Mathias Agopianecfa7cc2009-06-29 18:49:56 -0700880 // rectangle instead of a region (see DisplayHardware::flip())
Mathias Agopiand0f2f0d2011-09-20 17:22:44 -0700881 mDirtyRegion.set(mSwapRegion.bounds());
Mathias Agopianecfa7cc2009-06-29 18:49:56 -0700882 } else {
883 // we need to redraw everything (the whole screen)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800884 mDirtyRegion.set(hw.bounds());
Mathias Agopiand0f2f0d2011-09-20 17:22:44 -0700885 mSwapRegion = mDirtyRegion;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800886 }
887 }
888
Mathias Agopian88cde072011-09-20 17:21:56 -0700889 setupHardwareComposer(mDirtyRegion);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800890 composeSurfaces(mDirtyRegion);
891
Mathias Agopian88cde072011-09-20 17:21:56 -0700892 // update the swap region and clear the dirty region
893 mSwapRegion.orSelf(mDirtyRegion);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800894 mDirtyRegion.clear();
895}
896
Mathias Agopian88cde072011-09-20 17:21:56 -0700897void SurfaceFlinger::setupHardwareComposer(Region& dirtyInOut)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800898{
Mathias Agopiane0d5f5b2010-08-10 17:14:02 -0700899 const DisplayHardware& hw(graphicPlane(0).displayHardware());
900 HWComposer& hwc(hw.getHwComposer());
Mathias Agopianf8e705d2010-08-12 15:03:26 -0700901 hwc_layer_t* const cur(hwc.getLayers());
Mathias Agopian4bacc9d2011-09-08 18:31:55 -0700902 if (!cur) {
Mathias Agopian88cde072011-09-20 17:21:56 -0700903 return;
Mathias Agopian4bacc9d2011-09-08 18:31:55 -0700904 }
Mathias Agopiane0d5f5b2010-08-10 17:14:02 -0700905
Mathias Agopian4bacc9d2011-09-08 18:31:55 -0700906 const Vector< sp<LayerBase> >& layers(mVisibleLayersSortedByZ);
907 size_t count = layers.size();
908
909 LOGE_IF(hwc.getNumLayers() != count,
Mathias Agopianf8e705d2010-08-12 15:03:26 -0700910 "HAL number of layers (%d) doesn't match surfaceflinger (%d)",
911 hwc.getNumLayers(), count);
912
913 // just to be extra-safe, use the smallest count
Erik Gilling0cf2f432010-08-12 23:21:40 -0700914 if (hwc.initCheck() == NO_ERROR) {
915 count = count < hwc.getNumLayers() ? count : hwc.getNumLayers();
916 }
Mathias Agopianf8e705d2010-08-12 15:03:26 -0700917
918 /*
919 * update the per-frame h/w composer data for each layer
920 * and build the transparent region of the FB
921 */
Mathias Agopian4bacc9d2011-09-08 18:31:55 -0700922 for (size_t i=0 ; i<count ; i++) {
923 const sp<LayerBase>& layer(layers[i]);
924 layer->setPerFrameData(&cur[i]);
925 }
Mathias Agopian88cde072011-09-20 17:21:56 -0700926 const size_t fbLayerCount = hwc.getLayerCount(HWC_FRAMEBUFFER);
Mathias Agopian4bacc9d2011-09-08 18:31:55 -0700927 status_t err = hwc.prepare();
928 LOGE_IF(err, "HWComposer::prepare failed (%s)", strerror(-err));
Mathias Agopiane0d5f5b2010-08-10 17:14:02 -0700929
Mathias Agopian4bacc9d2011-09-08 18:31:55 -0700930 if (err == NO_ERROR) {
Mathias Agopian88cde072011-09-20 17:21:56 -0700931 // what's happening here is tricky.
932 // we want to clear all the layers with the CLEAR_FB flags
933 // that are opaque.
934 // however, since some GPU are efficient at preserving
935 // the backbuffer, we want to take advantage of that so we do the
936 // clear only in the dirty region (other areas will be preserved
937 // on those GPUs).
938 // NOTE: on non backbuffer preserving GPU, the dirty region
939 // has already been expanded as needed, so the code is correct
940 // there too.
941 //
942 // However, the content of the framebuffer cannot be trusted when
943 // we switch to/from FB/OVERLAY, in which case we need to
944 // expand the dirty region to those areas too.
945 //
946 // Note also that there is a special case when switching from
947 // "no layers in FB" to "some layers in FB", where we need to redraw
948 // the entire FB, since some areas might contain uninitialized
949 // data.
950 //
951 // Also we want to make sure to not clear areas that belong to
Mathias Agopian0d0fba42011-10-18 17:36:28 -0700952 // layers above that won't redraw (we would just be erasing them),
Mathias Agopian88cde072011-09-20 17:21:56 -0700953 // that is, we can't erase anything outside the dirty region.
954
Mathias Agopian0a5abdb2011-09-09 01:47:48 -0700955 Region transparent;
Mathias Agopian4bacc9d2011-09-08 18:31:55 -0700956
Mathias Agopian88cde072011-09-20 17:21:56 -0700957 if (!fbLayerCount && hwc.getLayerCount(HWC_FRAMEBUFFER)) {
958 transparent.set(hw.getBounds());
959 dirtyInOut = transparent;
960 } else {
961 for (size_t i=0 ; i<count ; i++) {
962 const sp<LayerBase>& layer(layers[i]);
963 if ((cur[i].hints & HWC_HINT_CLEAR_FB) && layer->isOpaque()) {
964 transparent.orSelf(layer->visibleRegionScreen);
965 }
966 bool isOverlay = (cur[i].compositionType != HWC_FRAMEBUFFER);
967 if (isOverlay != layer->isOverlay()) {
968 // we transitioned to/from overlay, so add this layer
969 // to the dirty region so the framebuffer can be either
970 // cleared or redrawn.
971 dirtyInOut.orSelf(layer->visibleRegionScreen);
972 }
973 layer->setOverlay(isOverlay);
Mathias Agopian45491692011-01-19 15:24:23 -0800974 }
Mathias Agopian88cde072011-09-20 17:21:56 -0700975 // don't erase stuff outside the dirty region
976 transparent.andSelf(dirtyInOut);
Mathias Agopian4bacc9d2011-09-08 18:31:55 -0700977 }
978
979 /*
980 * clear the area of the FB that need to be transparent
981 */
Mathias Agopian4bacc9d2011-09-08 18:31:55 -0700982 if (!transparent.isEmpty()) {
983 glClearColor(0,0,0,0);
984 Region::const_iterator it = transparent.begin();
985 Region::const_iterator const end = transparent.end();
986 const int32_t height = hw.getHeight();
987 while (it != end) {
988 const Rect& r(*it++);
989 const GLint sy = height - (r.top + r.height());
990 glScissor(r.left, sy, r.width(), r.height());
991 glClear(GL_COLOR_BUFFER_BIT);
Mathias Agopian45491692011-01-19 15:24:23 -0800992 }
Mathias Agopiane0d5f5b2010-08-10 17:14:02 -0700993 }
994 }
Mathias Agopian4bacc9d2011-09-08 18:31:55 -0700995}
Mathias Agopianf8e705d2010-08-12 15:03:26 -0700996
Mathias Agopian4bacc9d2011-09-08 18:31:55 -0700997void SurfaceFlinger::composeSurfaces(const Region& dirty)
998{
Mathias Agopian9fe96542011-09-22 20:57:04 -0700999 const DisplayHardware& hw(graphicPlane(0).displayHardware());
1000 HWComposer& hwc(hw.getHwComposer());
1001
1002 const size_t fbLayerCount = hwc.getLayerCount(HWC_FRAMEBUFFER);
1003 if (UNLIKELY(fbLayerCount && !mWormholeRegion.isEmpty())) {
Mathias Agopian4bacc9d2011-09-08 18:31:55 -07001004 // should never happen unless the window manager has a bug
1005 // draw something...
1006 drawWormhole();
1007 }
1008
Mathias Agopianf8e705d2010-08-12 15:03:26 -07001009 /*
1010 * and then, render the layers targeted at the framebuffer
1011 */
Mathias Agopian9fe96542011-09-22 20:57:04 -07001012 hwc_layer_t* const cur(hwc.getLayers());
Mathias Agopian4bacc9d2011-09-08 18:31:55 -07001013 const Vector< sp<LayerBase> >& layers(mVisibleLayersSortedByZ);
1014 size_t count = layers.size();
Mathias Agopianf8e705d2010-08-12 15:03:26 -07001015 for (size_t i=0 ; i<count ; i++) {
Mathias Agopian88cde072011-09-20 17:21:56 -07001016 if (cur && (cur[i].compositionType != HWC_FRAMEBUFFER)) {
Mathias Agopian4bacc9d2011-09-08 18:31:55 -07001017 continue;
Mathias Agopianf8e705d2010-08-12 15:03:26 -07001018 }
1019 const sp<LayerBase>& layer(layers[i]);
1020 const Region clip(dirty.intersect(layer->visibleRegionScreen));
1021 if (!clip.isEmpty()) {
1022 layer->draw(clip);
1023 }
1024 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001025}
1026
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001027void SurfaceFlinger::debugFlashRegions()
1028{
Mathias Agopianf8b4b442010-06-14 21:20:00 -07001029 const DisplayHardware& hw(graphicPlane(0).displayHardware());
1030 const uint32_t flags = hw.getFlags();
Mathias Agopian7f76a3c2011-08-22 21:44:41 -07001031 const int32_t height = hw.getHeight();
Mathias Agopiand0f2f0d2011-09-20 17:22:44 -07001032 if (mSwapRegion.isEmpty()) {
Mathias Agopian7f76a3c2011-08-22 21:44:41 -07001033 return;
1034 }
Mathias Agopian2e20bff2009-05-04 19:29:25 -07001035
Mathias Agopianf8b4b442010-06-14 21:20:00 -07001036 if (!((flags & DisplayHardware::SWAP_RECTANGLE) ||
1037 (flags & DisplayHardware::BUFFER_PRESERVED))) {
1038 const Region repaint((flags & DisplayHardware::PARTIAL_UPDATES) ?
1039 mDirtyRegion.bounds() : hw.bounds());
1040 composeSurfaces(repaint);
1041 }
1042
Mathias Agopian9044ef02011-10-18 14:49:27 -07001043 glDisable(GL_TEXTURE_EXTERNAL_OES);
1044 glDisable(GL_TEXTURE_2D);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001045 glDisable(GL_BLEND);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001046 glDisable(GL_SCISSOR_TEST);
1047
Mathias Agopiandff8e582009-05-04 14:17:04 -07001048 static int toggle = 0;
1049 toggle = 1 - toggle;
1050 if (toggle) {
Mathias Agopianf8b4b442010-06-14 21:20:00 -07001051 glColor4f(1, 0, 1, 1);
Mathias Agopiandff8e582009-05-04 14:17:04 -07001052 } else {
Mathias Agopianf8b4b442010-06-14 21:20:00 -07001053 glColor4f(1, 1, 0, 1);
Mathias Agopiandff8e582009-05-04 14:17:04 -07001054 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001055
Mathias Agopian6158b1b2009-05-11 00:03:41 -07001056 Region::const_iterator it = mDirtyRegion.begin();
1057 Region::const_iterator const end = mDirtyRegion.end();
1058 while (it != end) {
1059 const Rect& r = *it++;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001060 GLfloat vertices[][2] = {
Mathias Agopian7f76a3c2011-08-22 21:44:41 -07001061 { r.left, height - r.top },
1062 { r.left, height - r.bottom },
1063 { r.right, height - r.bottom },
1064 { r.right, height - r.top }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001065 };
1066 glVertexPointer(2, GL_FLOAT, 0, vertices);
1067 glDrawArrays(GL_TRIANGLE_FAN, 0, 4);
1068 }
Mathias Agopianf8b4b442010-06-14 21:20:00 -07001069
Mathias Agopiand0f2f0d2011-09-20 17:22:44 -07001070 hw.flip(mSwapRegion);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001071
1072 if (mDebugRegion > 1)
Mathias Agopianf8b4b442010-06-14 21:20:00 -07001073 usleep(mDebugRegion * 1000);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001074
1075 glEnable(GL_SCISSOR_TEST);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001076}
1077
1078void SurfaceFlinger::drawWormhole() const
1079{
1080 const Region region(mWormholeRegion.intersect(mDirtyRegion));
1081 if (region.isEmpty())
1082 return;
1083
1084 const DisplayHardware& hw(graphicPlane(0).displayHardware());
1085 const int32_t width = hw.getWidth();
1086 const int32_t height = hw.getHeight();
1087
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001088 if (LIKELY(!mDebugBackground)) {
Mathias Agopianf8b4b442010-06-14 21:20:00 -07001089 glClearColor(0,0,0,0);
Mathias Agopian6158b1b2009-05-11 00:03:41 -07001090 Region::const_iterator it = region.begin();
1091 Region::const_iterator const end = region.end();
1092 while (it != end) {
1093 const Rect& r = *it++;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001094 const GLint sy = height - (r.top + r.height());
1095 glScissor(r.left, sy, r.width(), r.height());
1096 glClear(GL_COLOR_BUFFER_BIT);
1097 }
1098 } else {
1099 const GLshort vertices[][2] = { { 0, 0 }, { width, 0 },
1100 { width, height }, { 0, height } };
1101 const GLshort tcoords[][2] = { { 0, 0 }, { 1, 0 }, { 1, 1 }, { 0, 1 } };
Mathias Agopian9044ef02011-10-18 14:49:27 -07001102
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001103 glVertexPointer(2, GL_SHORT, 0, vertices);
1104 glTexCoordPointer(2, GL_SHORT, 0, tcoords);
1105 glEnableClientState(GL_TEXTURE_COORD_ARRAY);
Mathias Agopian9044ef02011-10-18 14:49:27 -07001106
1107 glDisable(GL_TEXTURE_EXTERNAL_OES);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001108 glEnable(GL_TEXTURE_2D);
1109 glBindTexture(GL_TEXTURE_2D, mWormholeTexName);
1110 glTexEnvx(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE);
1111 glMatrixMode(GL_TEXTURE);
1112 glLoadIdentity();
Mathias Agopian9044ef02011-10-18 14:49:27 -07001113
1114 glDisable(GL_BLEND);
1115
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001116 glScalef(width*(1.0f/32.0f), height*(1.0f/32.0f), 1);
Mathias Agopian6158b1b2009-05-11 00:03:41 -07001117 Region::const_iterator it = region.begin();
1118 Region::const_iterator const end = region.end();
1119 while (it != end) {
1120 const Rect& r = *it++;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001121 const GLint sy = height - (r.top + r.height());
1122 glScissor(r.left, sy, r.width(), r.height());
1123 glDrawArrays(GL_TRIANGLE_FAN, 0, 4);
1124 }
1125 glDisableClientState(GL_TEXTURE_COORD_ARRAY);
Mathias Agopian7bb843c2011-04-20 14:20:59 -07001126 glDisable(GL_TEXTURE_2D);
Mathias Agopian04a709e42010-12-14 18:38:36 -08001127 glLoadIdentity();
1128 glMatrixMode(GL_MODELVIEW);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001129 }
1130}
1131
1132void SurfaceFlinger::debugShowFPS() const
1133{
1134 static int mFrameCount;
1135 static int mLastFrameCount = 0;
1136 static nsecs_t mLastFpsTime = 0;
1137 static float mFps = 0;
1138 mFrameCount++;
1139 nsecs_t now = systemTime();
1140 nsecs_t diff = now - mLastFpsTime;
1141 if (diff > ms2ns(250)) {
1142 mFps = ((mFrameCount - mLastFrameCount) * float(s2ns(1))) / diff;
1143 mLastFpsTime = now;
1144 mLastFrameCount = mFrameCount;
1145 }
1146 // XXX: mFPS has the value we want
1147 }
1148
Mathias Agopian1473f462009-04-10 14:24:30 -07001149status_t SurfaceFlinger::addLayer(const sp<LayerBase>& layer)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001150{
1151 Mutex::Autolock _l(mStateLock);
1152 addLayer_l(layer);
1153 setTransactionFlags(eTransactionNeeded|eTraversalNeeded);
1154 return NO_ERROR;
1155}
1156
Mathias Agopian593c05c2010-06-02 23:28:45 -07001157status_t SurfaceFlinger::addLayer_l(const sp<LayerBase>& layer)
1158{
Mathias Agopian1efba9a2010-08-10 18:09:09 -07001159 ssize_t i = mCurrentState.layersSortedByZ.add(layer);
Mathias Agopian593c05c2010-06-02 23:28:45 -07001160 return (i < 0) ? status_t(i) : status_t(NO_ERROR);
1161}
1162
1163ssize_t SurfaceFlinger::addClientLayer(const sp<Client>& client,
1164 const sp<LayerBaseClient>& lbc)
1165{
Mathias Agopian593c05c2010-06-02 23:28:45 -07001166 // attach this layer to the client
Mathias Agopian5fa7ad62011-05-03 16:21:41 -07001167 size_t name = client->attachLayer(lbc);
1168
1169 Mutex::Autolock _l(mStateLock);
Mathias Agopian593c05c2010-06-02 23:28:45 -07001170
1171 // add this layer to the current state list
1172 addLayer_l(lbc);
1173
Mathias Agopian5fa7ad62011-05-03 16:21:41 -07001174 return ssize_t(name);
Mathias Agopian593c05c2010-06-02 23:28:45 -07001175}
1176
Mathias Agopian1473f462009-04-10 14:24:30 -07001177status_t SurfaceFlinger::removeLayer(const sp<LayerBase>& layer)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001178{
1179 Mutex::Autolock _l(mStateLock);
Mathias Agopian2d5ee252009-06-04 18:46:21 -07001180 status_t err = purgatorizeLayer_l(layer);
1181 if (err == NO_ERROR)
1182 setTransactionFlags(eTransactionNeeded);
1183 return err;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001184}
1185
Mathias Agopian1473f462009-04-10 14:24:30 -07001186status_t SurfaceFlinger::removeLayer_l(const sp<LayerBase>& layerBase)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001187{
Mathias Agopian7623da42010-06-01 15:12:58 -07001188 sp<LayerBaseClient> lbc(layerBase->getLayerBaseClient());
1189 if (lbc != 0) {
Mathias Agopiand35c6662011-01-25 20:17:45 -08001190 mLayerMap.removeItem( lbc->getSurfaceBinder() );
Mathias Agopian7623da42010-06-01 15:12:58 -07001191 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001192 ssize_t index = mCurrentState.layersSortedByZ.remove(layerBase);
1193 if (index >= 0) {
Mathias Agopian1473f462009-04-10 14:24:30 -07001194 mLayersRemoved = true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001195 return NO_ERROR;
1196 }
Mathias Agopian2d5ee252009-06-04 18:46:21 -07001197 return status_t(index);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001198}
1199
Mathias Agopian6cf0db22009-04-17 19:36:26 -07001200status_t SurfaceFlinger::purgatorizeLayer_l(const sp<LayerBase>& layerBase)
1201{
Mathias Agopianf4dfe1b2011-01-14 17:37:42 -08001202 // First add the layer to the purgatory list, which makes sure it won't
1203 // go away, then remove it from the main list (through a transaction).
Mathias Agopian6cf0db22009-04-17 19:36:26 -07001204 ssize_t err = removeLayer_l(layerBase);
Mathias Agopianf4dfe1b2011-01-14 17:37:42 -08001205 if (err >= 0) {
1206 mLayerPurgatory.add(layerBase);
1207 }
Mathias Agopian2e4b68d2009-09-23 16:44:00 -07001208
Mathias Agopian0c4cec72009-10-02 18:12:30 -07001209 layerBase->onRemoved();
1210
Mathias Agopian2d5ee252009-06-04 18:46:21 -07001211 // it's possible that we don't find a layer, because it might
1212 // have been destroyed already -- this is not technically an error
Mathias Agopian593c05c2010-06-02 23:28:45 -07001213 // from the user because there is a race between Client::destroySurface(),
1214 // ~Client() and ~ISurface().
Mathias Agopian6cf0db22009-04-17 19:36:26 -07001215 return (err == NAME_NOT_FOUND) ? status_t(NO_ERROR) : err;
1216}
1217
Mathias Agopian593c05c2010-06-02 23:28:45 -07001218status_t SurfaceFlinger::invalidateLayerVisibility(const sp<LayerBase>& layer)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001219{
Mathias Agopian593c05c2010-06-02 23:28:45 -07001220 layer->forceVisibilityTransaction();
1221 setTransactionFlags(eTraversalNeeded);
1222 return NO_ERROR;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001223}
1224
Mathias Agopian6dcb1552011-05-03 17:04:02 -07001225uint32_t SurfaceFlinger::peekTransactionFlags(uint32_t flags)
1226{
1227 return android_atomic_release_load(&mTransactionFlags);
1228}
1229
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001230uint32_t SurfaceFlinger::getTransactionFlags(uint32_t flags)
1231{
1232 return android_atomic_and(~flags, &mTransactionFlags) & flags;
1233}
1234
Mathias Agopian898c4c92010-05-18 17:06:55 -07001235uint32_t SurfaceFlinger::setTransactionFlags(uint32_t flags)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001236{
1237 uint32_t old = android_atomic_or(flags, &mTransactionFlags);
1238 if ((old & flags)==0) { // wake the server up
Mathias Agopian898c4c92010-05-18 17:06:55 -07001239 signalEvent();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001240 }
1241 return old;
1242}
1243
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001244
Jamie Gennise2909e12011-10-10 15:48:06 -07001245void SurfaceFlinger::setTransactionState(const Vector<ComposerState>& state,
1246 int orientation) {
Mathias Agopian439863f2011-06-28 19:09:31 -07001247 Mutex::Autolock _l(mStateLock);
Mathias Agopian9779b222009-09-07 16:32:45 -07001248
Mathias Agopian439863f2011-06-28 19:09:31 -07001249 uint32_t flags = 0;
Jamie Gennise2909e12011-10-10 15:48:06 -07001250 if (mCurrentState.orientation != orientation) {
1251 if (uint32_t(orientation)<=eOrientation270 || orientation==42) {
1252 mCurrentState.orientation = orientation;
1253 flags |= eTransactionNeeded;
1254 mResizeTransationPending = true;
1255 } else if (orientation != eOrientationUnchanged) {
1256 LOGW("setTransactionState: ignoring unrecognized orientation: %d",
1257 orientation);
1258 }
1259 }
1260
Mathias Agopian439863f2011-06-28 19:09:31 -07001261 const size_t count = state.size();
1262 for (size_t i=0 ; i<count ; i++) {
1263 const ComposerState& s(state[i]);
1264 sp<Client> client( static_cast<Client *>(s.client.get()) );
1265 flags |= setClientStateLocked(client, s.state);
1266 }
1267 if (flags) {
1268 setTransactionFlags(flags);
1269 }
1270
1271 signalEvent();
1272
1273 // if there is a transaction with a resize, wait for it to
1274 // take effect before returning.
1275 while (mResizeTransationPending) {
1276 status_t err = mTransactionCV.waitRelative(mStateLock, s2ns(5));
1277 if (CC_UNLIKELY(err != NO_ERROR)) {
1278 // just in case something goes wrong in SF, return to the
1279 // called after a few seconds.
1280 LOGW_IF(err == TIMED_OUT, "closeGlobalTransaction timed out!");
1281 mResizeTransationPending = false;
1282 break;
Mathias Agopian9779b222009-09-07 16:32:45 -07001283 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001284 }
1285}
1286
1287status_t SurfaceFlinger::freezeDisplay(DisplayID dpy, uint32_t flags)
1288{
1289 if (UNLIKELY(uint32_t(dpy) >= DISPLAY_COUNT))
1290 return BAD_VALUE;
1291
1292 Mutex::Autolock _l(mStateLock);
1293 mCurrentState.freezeDisplay = 1;
1294 setTransactionFlags(eTransactionNeeded);
1295
1296 // flags is intended to communicate some sort of animation behavior
Mathias Agopianed81f222009-04-14 23:02:51 -07001297 // (for instance fading)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001298 return NO_ERROR;
1299}
1300
1301status_t SurfaceFlinger::unfreezeDisplay(DisplayID dpy, uint32_t flags)
1302{
1303 if (UNLIKELY(uint32_t(dpy) >= DISPLAY_COUNT))
1304 return BAD_VALUE;
1305
1306 Mutex::Autolock _l(mStateLock);
1307 mCurrentState.freezeDisplay = 0;
1308 setTransactionFlags(eTransactionNeeded);
1309
1310 // flags is intended to communicate some sort of animation behavior
Mathias Agopianed81f222009-04-14 23:02:51 -07001311 // (for instance fading)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001312 return NO_ERROR;
1313}
1314
Andreas Hubere3c01832010-08-16 08:49:37 -07001315int SurfaceFlinger::setOrientation(DisplayID dpy,
Mathias Agopianeb0c86e2009-03-27 18:11:38 -07001316 int orientation, uint32_t flags)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001317{
1318 if (UNLIKELY(uint32_t(dpy) >= DISPLAY_COUNT))
1319 return BAD_VALUE;
1320
1321 Mutex::Autolock _l(mStateLock);
1322 if (mCurrentState.orientation != orientation) {
1323 if (uint32_t(orientation)<=eOrientation270 || orientation==42) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07001324 mCurrentState.orientationFlags = flags;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001325 mCurrentState.orientation = orientation;
1326 setTransactionFlags(eTransactionNeeded);
1327 mTransactionCV.wait(mStateLock);
1328 } else {
1329 orientation = BAD_VALUE;
1330 }
1331 }
1332 return orientation;
1333}
1334
Mathias Agopian9638e5c2011-04-20 14:19:32 -07001335sp<ISurface> SurfaceFlinger::createSurface(
1336 ISurfaceComposerClient::surface_data_t* params,
1337 const String8& name,
1338 const sp<Client>& client,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001339 DisplayID d, uint32_t w, uint32_t h, PixelFormat format,
1340 uint32_t flags)
1341{
Mathias Agopian1473f462009-04-10 14:24:30 -07001342 sp<LayerBaseClient> layer;
Mathias Agopian7bb843c2011-04-20 14:20:59 -07001343 sp<ISurface> surfaceHandle;
Mathias Agopian4d2dbeb2009-07-09 18:16:43 -07001344
1345 if (int32_t(w|h) < 0) {
1346 LOGE("createSurface() failed, w or h is negative (w=%d, h=%d)",
1347 int(w), int(h));
1348 return surfaceHandle;
1349 }
Andreas Hubere3c01832010-08-16 08:49:37 -07001350
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001351 //LOGD("createSurface for pid %d (%d x %d)", pid, w, h);
Mathias Agopian7623da42010-06-01 15:12:58 -07001352 sp<Layer> normalLayer;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001353 switch (flags & eFXSurfaceMask) {
1354 case eFXSurfaceNormal:
Mathias Agopiand2112302010-12-07 19:38:17 -08001355 normalLayer = createNormalSurface(client, d, w, h, flags, format);
1356 layer = normalLayer;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001357 break;
1358 case eFXSurfaceBlur:
Mathias Agopianc3802d22010-12-08 17:13:19 -08001359 // for now we treat Blur as Dim, until we can implement it
1360 // efficiently.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001361 case eFXSurfaceDim:
Mathias Agopian593c05c2010-06-02 23:28:45 -07001362 layer = createDimSurface(client, d, w, h, flags);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001363 break;
Mathias Agopian0ab84ef2011-10-13 16:02:48 -07001364 case eFXSurfaceScreenshot:
1365 layer = createScreenshotSurface(client, d, w, h, flags);
1366 break;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001367 }
1368
Mathias Agopian1473f462009-04-10 14:24:30 -07001369 if (layer != 0) {
Mathias Agopian593c05c2010-06-02 23:28:45 -07001370 layer->initStates(w, h, flags);
Mathias Agopian5d26c1e2010-03-01 16:09:43 -08001371 layer->setName(name);
Mathias Agopian593c05c2010-06-02 23:28:45 -07001372 ssize_t token = addClientLayer(client, layer);
Mathias Agopian7623da42010-06-01 15:12:58 -07001373
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001374 surfaceHandle = layer->getSurface();
Andreas Hubere3c01832010-08-16 08:49:37 -07001375 if (surfaceHandle != 0) {
Mathias Agopian593c05c2010-06-02 23:28:45 -07001376 params->token = token;
Mathias Agopian7bb843c2011-04-20 14:20:59 -07001377 params->identity = layer->getIdentity();
Mathias Agopian7623da42010-06-01 15:12:58 -07001378 if (normalLayer != 0) {
1379 Mutex::Autolock _l(mStateLock);
Mathias Agopian7bb843c2011-04-20 14:20:59 -07001380 mLayerMap.add(layer->getSurfaceBinder(), normalLayer);
Mathias Agopian7623da42010-06-01 15:12:58 -07001381 }
Mathias Agopian18b6b492009-08-19 17:46:26 -07001382 }
Mathias Agopian7623da42010-06-01 15:12:58 -07001383
Mathias Agopian593c05c2010-06-02 23:28:45 -07001384 setTransactionFlags(eTransactionNeeded);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001385 }
1386
1387 return surfaceHandle;
1388}
1389
Mathias Agopian7623da42010-06-01 15:12:58 -07001390sp<Layer> SurfaceFlinger::createNormalSurface(
Mathias Agopian6edf5af2009-06-19 17:00:27 -07001391 const sp<Client>& client, DisplayID display,
Mathias Agopian593c05c2010-06-02 23:28:45 -07001392 uint32_t w, uint32_t h, uint32_t flags,
Mathias Agopian18b6b492009-08-19 17:46:26 -07001393 PixelFormat& format)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001394{
1395 // initialize the surfaces
1396 switch (format) { // TODO: take h/w into account
1397 case PIXEL_FORMAT_TRANSPARENT:
1398 case PIXEL_FORMAT_TRANSLUCENT:
1399 format = PIXEL_FORMAT_RGBA_8888;
1400 break;
1401 case PIXEL_FORMAT_OPAQUE:
Mathias Agopian4cfb3a62010-06-30 15:43:47 -07001402#ifdef NO_RGBX_8888
1403 format = PIXEL_FORMAT_RGB_565;
1404#else
Mathias Agopian59962ce2010-04-05 18:01:24 -07001405 format = PIXEL_FORMAT_RGBX_8888;
Mathias Agopian4cfb3a62010-06-30 15:43:47 -07001406#endif
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001407 break;
1408 }
1409
Mathias Agopian4cfb3a62010-06-30 15:43:47 -07001410#ifdef NO_RGBX_8888
1411 if (format == PIXEL_FORMAT_RGBX_8888)
1412 format = PIXEL_FORMAT_RGBA_8888;
1413#endif
1414
Mathias Agopian593c05c2010-06-02 23:28:45 -07001415 sp<Layer> layer = new Layer(this, display, client);
Mathias Agopian6edf5af2009-06-19 17:00:27 -07001416 status_t err = layer->setBuffers(w, h, format, flags);
Mathias Agopian593c05c2010-06-02 23:28:45 -07001417 if (LIKELY(err != NO_ERROR)) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001418 LOGE("createNormalSurfaceLocked() failed (%s)", strerror(-err));
Mathias Agopian1473f462009-04-10 14:24:30 -07001419 layer.clear();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001420 }
1421 return layer;
1422}
1423
Mathias Agopian7623da42010-06-01 15:12:58 -07001424sp<LayerDim> SurfaceFlinger::createDimSurface(
Mathias Agopian6edf5af2009-06-19 17:00:27 -07001425 const sp<Client>& client, DisplayID display,
Mathias Agopian593c05c2010-06-02 23:28:45 -07001426 uint32_t w, uint32_t h, uint32_t flags)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001427{
Mathias Agopian593c05c2010-06-02 23:28:45 -07001428 sp<LayerDim> layer = new LayerDim(this, display, client);
Mathias Agopian0ab84ef2011-10-13 16:02:48 -07001429 return layer;
1430}
1431
1432sp<LayerScreenshot> SurfaceFlinger::createScreenshotSurface(
1433 const sp<Client>& client, DisplayID display,
1434 uint32_t w, uint32_t h, uint32_t flags)
1435{
1436 sp<LayerScreenshot> layer = new LayerScreenshot(this, display, client);
1437 status_t err = layer->capture();
1438 if (err != NO_ERROR) {
1439 layer.clear();
1440 LOGW("createScreenshotSurface failed (%s)", strerror(-err));
1441 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001442 return layer;
1443}
1444
Mathias Agopian593c05c2010-06-02 23:28:45 -07001445status_t SurfaceFlinger::removeSurface(const sp<Client>& client, SurfaceID sid)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001446{
Mathias Agopian6cf0db22009-04-17 19:36:26 -07001447 /*
1448 * called by the window manager, when a surface should be marked for
1449 * destruction.
Andreas Hubere3c01832010-08-16 08:49:37 -07001450 *
Mathias Agopiana3aa6c92009-04-22 15:23:34 -07001451 * The surface is removed from the current and drawing lists, but placed
1452 * in the purgatory queue, so it's not destroyed right-away (we need
1453 * to wait for all client's references to go away first).
Mathias Agopian6cf0db22009-04-17 19:36:26 -07001454 */
Mathias Agopian6cf0db22009-04-17 19:36:26 -07001455
Mathias Agopian248b5bd2009-09-10 19:41:18 -07001456 status_t err = NAME_NOT_FOUND;
Mathias Agopiana3aa6c92009-04-22 15:23:34 -07001457 Mutex::Autolock _l(mStateLock);
Mathias Agopian593c05c2010-06-02 23:28:45 -07001458 sp<LayerBaseClient> layer = client->getLayerUser(sid);
Mathias Agopian248b5bd2009-09-10 19:41:18 -07001459 if (layer != 0) {
1460 err = purgatorizeLayer_l(layer);
1461 if (err == NO_ERROR) {
Mathias Agopian248b5bd2009-09-10 19:41:18 -07001462 setTransactionFlags(eTransactionNeeded);
1463 }
Mathias Agopian6cf0db22009-04-17 19:36:26 -07001464 }
1465 return err;
1466}
1467
Mathias Agopian69608112011-05-19 15:38:14 -07001468status_t SurfaceFlinger::destroySurface(const wp<LayerBaseClient>& layer)
Mathias Agopian6cf0db22009-04-17 19:36:26 -07001469{
Mathias Agopian359140c2009-07-02 17:33:40 -07001470 // called by ~ISurface() when all references are gone
Mathias Agopian69608112011-05-19 15:38:14 -07001471 status_t err = NO_ERROR;
1472 sp<LayerBaseClient> l(layer.promote());
1473 if (l != NULL) {
1474 Mutex::Autolock _l(mStateLock);
1475 err = removeLayer_l(l);
1476 if (err == NAME_NOT_FOUND) {
1477 // The surface wasn't in the current list, which means it was
1478 // removed already, which means it is in the purgatory,
1479 // and need to be removed from there.
1480 ssize_t idx = mLayerPurgatory.remove(l);
1481 LOGE_IF(idx < 0,
1482 "layer=%p is not in the purgatory list", l.get());
Mathias Agopian6ead5d92009-04-20 19:39:12 -07001483 }
Mathias Agopian69608112011-05-19 15:38:14 -07001484 LOGE_IF(err<0 && err != NAME_NOT_FOUND,
1485 "error removing layer=%p (%s)", l.get(), strerror(-err));
1486 }
1487 return err;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001488}
1489
Mathias Agopian439863f2011-06-28 19:09:31 -07001490uint32_t SurfaceFlinger::setClientStateLocked(
Mathias Agopian593c05c2010-06-02 23:28:45 -07001491 const sp<Client>& client,
Mathias Agopian439863f2011-06-28 19:09:31 -07001492 const layer_state_t& s)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001493{
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001494 uint32_t flags = 0;
Mathias Agopian439863f2011-06-28 19:09:31 -07001495 sp<LayerBaseClient> layer(client->getLayerUser(s.surface));
1496 if (layer != 0) {
1497 const uint32_t what = s.what;
1498 if (what & ePositionChanged) {
1499 if (layer->setPosition(s.x, s.y))
1500 flags |= eTraversalNeeded;
1501 }
1502 if (what & eLayerChanged) {
1503 ssize_t idx = mCurrentState.layersSortedByZ.indexOf(layer);
1504 if (layer->setLayer(s.z)) {
1505 mCurrentState.layersSortedByZ.removeAt(idx);
1506 mCurrentState.layersSortedByZ.add(layer);
1507 // we need traversal (state changed)
1508 // AND transaction (list changed)
1509 flags |= eTransactionNeeded|eTraversalNeeded;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001510 }
1511 }
Mathias Agopian439863f2011-06-28 19:09:31 -07001512 if (what & eSizeChanged) {
1513 if (layer->setSize(s.w, s.h)) {
1514 flags |= eTraversalNeeded;
1515 mResizeTransationPending = true;
1516 }
1517 }
1518 if (what & eAlphaChanged) {
1519 if (layer->setAlpha(uint8_t(255.0f*s.alpha+0.5f)))
1520 flags |= eTraversalNeeded;
1521 }
1522 if (what & eMatrixChanged) {
1523 if (layer->setMatrix(s.matrix))
1524 flags |= eTraversalNeeded;
1525 }
1526 if (what & eTransparentRegionChanged) {
1527 if (layer->setTransparentRegionHint(s.transparentRegion))
1528 flags |= eTraversalNeeded;
1529 }
1530 if (what & eVisibilityChanged) {
1531 if (layer->setFlags(s.flags, s.mask))
1532 flags |= eTraversalNeeded;
1533 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001534 }
Mathias Agopian439863f2011-06-28 19:09:31 -07001535 return flags;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001536}
1537
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001538void SurfaceFlinger::screenReleased(int dpy)
1539{
1540 // this may be called by a signal handler, we can't do too much in here
1541 android_atomic_or(eConsoleReleased, &mConsoleSignals);
1542 signalEvent();
1543}
1544
1545void SurfaceFlinger::screenAcquired(int dpy)
1546{
1547 // this may be called by a signal handler, we can't do too much in here
1548 android_atomic_or(eConsoleAcquired, &mConsoleSignals);
1549 signalEvent();
1550}
1551
1552status_t SurfaceFlinger::dump(int fd, const Vector<String16>& args)
1553{
Erik Gilling94720d72010-12-01 16:38:01 -08001554 const size_t SIZE = 4096;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001555 char buffer[SIZE];
1556 String8 result;
Mathias Agopian0dd593f2011-06-27 16:05:52 -07001557
1558 if (!PermissionCache::checkCallingPermission(sDump)) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001559 snprintf(buffer, SIZE, "Permission Denial: "
1560 "can't dump SurfaceFlinger from pid=%d, uid=%d\n",
1561 IPCThreadState::self()->getCallingPid(),
1562 IPCThreadState::self()->getCallingUid());
1563 result.append(buffer);
1564 } else {
Mathias Agopiana8d49172009-08-26 16:36:26 -07001565
1566 // figure out if we're stuck somewhere
1567 const nsecs_t now = systemTime();
1568 const nsecs_t inSwapBuffers(mDebugInSwapBuffers);
1569 const nsecs_t inTransaction(mDebugInTransaction);
1570 nsecs_t inSwapBuffersDuration = (inSwapBuffers) ? now-inSwapBuffers : 0;
1571 nsecs_t inTransactionDuration = (inTransaction) ? now-inTransaction : 0;
1572
1573 // Try to get the main lock, but don't insist if we can't
1574 // (this would indicate SF is stuck, but we want to be able to
1575 // print something in dumpsys).
1576 int retry = 3;
1577 while (mStateLock.tryLock()<0 && --retry>=0) {
1578 usleep(1000000);
1579 }
1580 const bool locked(retry >= 0);
1581 if (!locked) {
Andreas Hubere3c01832010-08-16 08:49:37 -07001582 snprintf(buffer, SIZE,
Mathias Agopiana8d49172009-08-26 16:36:26 -07001583 "SurfaceFlinger appears to be unresponsive, "
1584 "dumping anyways (no locks held)\n");
1585 result.append(buffer);
1586 }
1587
Mathias Agopian06a61e22011-01-19 16:15:53 -08001588 /*
1589 * Dump the visible layer list
1590 */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001591 const LayerVector& currentLayers = mCurrentState.layersSortedByZ;
1592 const size_t count = currentLayers.size();
Mathias Agopian06a61e22011-01-19 16:15:53 -08001593 snprintf(buffer, SIZE, "Visible layers (count = %d)\n", count);
1594 result.append(buffer);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001595 for (size_t i=0 ; i<count ; i++) {
Mathias Agopian9bce8732010-04-20 17:55:49 -07001596 const sp<LayerBase>& layer(currentLayers[i]);
1597 layer->dump(result, buffer, SIZE);
1598 const Layer::State& s(layer->drawingState());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001599 s.transparentRegion.dump(result, "transparentRegion");
1600 layer->transparentRegionScreen.dump(result, "transparentRegionScreen");
1601 layer->visibleRegionScreen.dump(result, "visibleRegionScreen");
1602 }
Mathias Agopian9bce8732010-04-20 17:55:49 -07001603
Mathias Agopian06a61e22011-01-19 16:15:53 -08001604 /*
1605 * Dump the layers in the purgatory
1606 */
1607
1608 const size_t purgatorySize = mLayerPurgatory.size();
1609 snprintf(buffer, SIZE, "Purgatory state (%d entries)\n", purgatorySize);
1610 result.append(buffer);
1611 for (size_t i=0 ; i<purgatorySize ; i++) {
1612 const sp<LayerBase>& layer(mLayerPurgatory.itemAt(i));
1613 layer->shortDump(result, buffer, SIZE);
1614 }
1615
1616 /*
1617 * Dump SurfaceFlinger global state
1618 */
1619
Mathias Agopianab951172011-07-14 18:01:49 -07001620 snprintf(buffer, SIZE, "SurfaceFlinger global state:\n");
Mathias Agopian06a61e22011-01-19 16:15:53 -08001621 result.append(buffer);
Mathias Agopianab951172011-07-14 18:01:49 -07001622
1623 const GLExtensions& extensions(GLExtensions::getInstance());
1624 snprintf(buffer, SIZE, "GLES: %s, %s, %s\n",
1625 extensions.getVendor(),
1626 extensions.getRenderer(),
1627 extensions.getVersion());
1628 result.append(buffer);
1629 snprintf(buffer, SIZE, "EXTS: %s\n", extensions.getExtension());
1630 result.append(buffer);
1631
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001632 mWormholeRegion.dump(result, "WormholeRegion");
1633 const DisplayHardware& hw(graphicPlane(0).displayHardware());
1634 snprintf(buffer, SIZE,
1635 " display frozen: %s, freezeCount=%d, orientation=%d, canDraw=%d\n",
1636 mFreezeDisplay?"yes":"no", mFreezeCount,
1637 mCurrentState.orientation, hw.canDraw());
1638 result.append(buffer);
Mathias Agopiana8d49172009-08-26 16:36:26 -07001639 snprintf(buffer, SIZE,
1640 " last eglSwapBuffers() time: %f us\n"
Mathias Agopianabf88be2011-10-20 17:22:38 -07001641 " last transaction time : %f us\n"
1642 " refresh-rate : %f fps\n"
1643 " x-dpi : %f\n"
1644 " y-dpi : %f\n",
1645 mLastSwapBufferTime/1000.0,
1646 mLastTransactionTime/1000.0,
1647 hw.getRefreshRate(),
1648 hw.getDpiX(),
1649 hw.getDpiY());
Mathias Agopiana8d49172009-08-26 16:36:26 -07001650 result.append(buffer);
Mathias Agopian9bce8732010-04-20 17:55:49 -07001651
Mathias Agopiana8d49172009-08-26 16:36:26 -07001652 if (inSwapBuffersDuration || !locked) {
1653 snprintf(buffer, SIZE, " eglSwapBuffers time: %f us\n",
1654 inSwapBuffersDuration/1000.0);
1655 result.append(buffer);
1656 }
Mathias Agopian9bce8732010-04-20 17:55:49 -07001657
Mathias Agopiana8d49172009-08-26 16:36:26 -07001658 if (inTransactionDuration || !locked) {
1659 snprintf(buffer, SIZE, " transaction time: %f us\n",
1660 inTransactionDuration/1000.0);
1661 result.append(buffer);
1662 }
Mathias Agopian9bce8732010-04-20 17:55:49 -07001663
Mathias Agopian06a61e22011-01-19 16:15:53 -08001664 /*
1665 * Dump HWComposer state
1666 */
Mathias Agopian6a969242010-09-22 18:58:01 -07001667 HWComposer& hwc(hw.getHwComposer());
1668 snprintf(buffer, SIZE, " h/w composer %s and %s\n",
1669 hwc.initCheck()==NO_ERROR ? "present" : "not present",
Mathias Agopian7f76a3c2011-08-22 21:44:41 -07001670 (mDebugDisableHWC || mDebugRegion) ? "disabled" : "enabled");
Mathias Agopian6a969242010-09-22 18:58:01 -07001671 result.append(buffer);
Mathias Agopian5bd1b272011-09-09 00:49:11 -07001672 hwc.dump(result, buffer, SIZE, mVisibleLayersSortedByZ);
Mathias Agopian6a969242010-09-22 18:58:01 -07001673
Mathias Agopian06a61e22011-01-19 16:15:53 -08001674 /*
1675 * Dump gralloc state
1676 */
Mathias Agopian6950e422009-10-05 17:07:12 -07001677 const GraphicBufferAllocator& alloc(GraphicBufferAllocator::get());
Mathias Agopian1473f462009-04-10 14:24:30 -07001678 alloc.dump(result);
Erik Gilling94720d72010-12-01 16:38:01 -08001679 hw.dump(result);
Mathias Agopiana8d49172009-08-26 16:36:26 -07001680
1681 if (locked) {
1682 mStateLock.unlock();
1683 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001684 }
1685 write(fd, result.string(), result.size());
1686 return NO_ERROR;
1687}
1688
1689status_t SurfaceFlinger::onTransact(
1690 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
1691{
1692 switch (code) {
1693 case CREATE_CONNECTION:
Mathias Agopian439863f2011-06-28 19:09:31 -07001694 case SET_TRANSACTION_STATE:
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001695 case SET_ORIENTATION:
1696 case FREEZE_DISPLAY:
1697 case UNFREEZE_DISPLAY:
1698 case BOOT_FINISHED:
Mathias Agopianaab758e2010-10-11 12:37:43 -07001699 case TURN_ELECTRON_BEAM_OFF:
Mathias Agopian2d2b8032010-10-12 16:05:48 -07001700 case TURN_ELECTRON_BEAM_ON:
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001701 {
1702 // codes that require permission check
1703 IPCThreadState* ipc = IPCThreadState::self();
1704 const int pid = ipc->getCallingPid();
Mathias Agopian627e7b52009-05-21 19:21:59 -07001705 const int uid = ipc->getCallingUid();
Mathias Agopian0dd593f2011-06-27 16:05:52 -07001706 if ((uid != AID_GRAPHICS) &&
1707 !PermissionCache::checkPermission(sAccessSurfaceFlinger, pid, uid)) {
Mathias Agopian151e8592009-06-15 18:24:59 -07001708 LOGE("Permission Denial: "
1709 "can't access SurfaceFlinger pid=%d, uid=%d", pid, uid);
1710 return PERMISSION_DENIED;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001711 }
Mathias Agopianca5edbe2010-09-24 11:26:58 -07001712 break;
1713 }
1714 case CAPTURE_SCREEN:
1715 {
1716 // codes that require permission check
1717 IPCThreadState* ipc = IPCThreadState::self();
1718 const int pid = ipc->getCallingPid();
1719 const int uid = ipc->getCallingUid();
Mathias Agopian0dd593f2011-06-27 16:05:52 -07001720 if ((uid != AID_GRAPHICS) &&
1721 !PermissionCache::checkPermission(sReadFramebuffer, pid, uid)) {
Mathias Agopianca5edbe2010-09-24 11:26:58 -07001722 LOGE("Permission Denial: "
1723 "can't read framebuffer pid=%d, uid=%d", pid, uid);
1724 return PERMISSION_DENIED;
1725 }
1726 break;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001727 }
1728 }
Mathias Agopianca5edbe2010-09-24 11:26:58 -07001729
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001730 status_t err = BnSurfaceComposer::onTransact(code, data, reply, flags);
1731 if (err == UNKNOWN_TRANSACTION || err == PERMISSION_DENIED) {
Mathias Agopian8c9687a2009-06-26 19:06:36 -07001732 CHECK_INTERFACE(ISurfaceComposer, data, reply);
Mathias Agopian0dd593f2011-06-27 16:05:52 -07001733 if (UNLIKELY(!PermissionCache::checkCallingPermission(sHardwareTest))) {
Mathias Agopian151e8592009-06-15 18:24:59 -07001734 IPCThreadState* ipc = IPCThreadState::self();
1735 const int pid = ipc->getCallingPid();
1736 const int uid = ipc->getCallingUid();
1737 LOGE("Permission Denial: "
1738 "can't access SurfaceFlinger pid=%d, uid=%d", pid, uid);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001739 return PERMISSION_DENIED;
1740 }
1741 int n;
1742 switch (code) {
Mathias Agopian17f638b2009-04-16 20:04:08 -07001743 case 1000: // SHOW_CPU, NOT SUPPORTED ANYMORE
Mathias Agopian04262e92010-09-13 22:57:58 -07001744 case 1001: // SHOW_FPS, NOT SUPPORTED ANYMORE
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001745 return NO_ERROR;
1746 case 1002: // SHOW_UPDATES
1747 n = data.readInt32();
1748 mDebugRegion = n ? n : (mDebugRegion ? 0 : 1);
Mathias Agopian7f76a3c2011-08-22 21:44:41 -07001749 invalidateHwcGeometry();
1750 repaintEverything();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001751 return NO_ERROR;
1752 case 1003: // SHOW_BACKGROUND
1753 n = data.readInt32();
1754 mDebugBackground = n ? 1 : 0;
1755 return NO_ERROR;
1756 case 1004:{ // repaint everything
Mathias Agopian7f76a3c2011-08-22 21:44:41 -07001757 repaintEverything();
Mathias Agopian9779b222009-09-07 16:32:45 -07001758 return NO_ERROR;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001759 }
Mathias Agopian9779b222009-09-07 16:32:45 -07001760 case 1005:{ // force transaction
1761 setTransactionFlags(eTransactionNeeded|eTraversalNeeded);
1762 return NO_ERROR;
1763 }
Mathias Agopian04262e92010-09-13 22:57:58 -07001764 case 1006:{ // enable/disable GraphicLog
1765 int enabled = data.readInt32();
1766 GraphicLog::getInstance().setEnabled(enabled);
1767 return NO_ERROR;
1768 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001769 case 1007: // set mFreezeCount
1770 mFreezeCount = data.readInt32();
Mathias Agopian0e449762009-12-01 17:23:28 -08001771 mFreezeDisplayTime = 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001772 return NO_ERROR;
Mathias Agopian7f76a3c2011-08-22 21:44:41 -07001773 case 1008: // toggle use of hw composer
1774 n = data.readInt32();
1775 mDebugDisableHWC = n ? 1 : 0;
1776 invalidateHwcGeometry();
1777 repaintEverything();
1778 return NO_ERROR;
Mathias Agopian2143fe02011-08-23 18:03:18 -07001779 case 1009: // toggle use of transform hint
1780 n = data.readInt32();
1781 mDebugDisableTransformHint = n ? 1 : 0;
1782 invalidateHwcGeometry();
1783 repaintEverything();
1784 return NO_ERROR;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001785 case 1010: // interrogate.
Mathias Agopian17f638b2009-04-16 20:04:08 -07001786 reply->writeInt32(0);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001787 reply->writeInt32(0);
1788 reply->writeInt32(mDebugRegion);
1789 reply->writeInt32(mDebugBackground);
1790 return NO_ERROR;
1791 case 1013: {
1792 Mutex::Autolock _l(mStateLock);
1793 const DisplayHardware& hw(graphicPlane(0).displayHardware());
1794 reply->writeInt32(hw.getPageFlipCount());
1795 }
1796 return NO_ERROR;
1797 }
1798 }
1799 return err;
1800}
1801
Mathias Agopian7f76a3c2011-08-22 21:44:41 -07001802void SurfaceFlinger::repaintEverything() {
Mathias Agopian7f76a3c2011-08-22 21:44:41 -07001803 const DisplayHardware& hw(graphicPlane(0).displayHardware());
Mathias Agopian6497eab2011-10-21 15:18:28 -07001804 const Rect bounds(hw.getBounds());
1805 setInvalidateRegion(Region(bounds));
Mathias Agopian7f76a3c2011-08-22 21:44:41 -07001806 signalEvent();
1807}
1808
Mathias Agopian6497eab2011-10-21 15:18:28 -07001809void SurfaceFlinger::setInvalidateRegion(const Region& reg) {
1810 Mutex::Autolock _l(mInvalidateLock);
1811 mInvalidateRegion = reg;
1812}
1813
1814Region SurfaceFlinger::getAndClearInvalidateRegion() {
1815 Mutex::Autolock _l(mInvalidateLock);
1816 Region reg(mInvalidateRegion);
1817 mInvalidateRegion.clear();
1818 return reg;
1819}
1820
Mathias Agopianaab758e2010-10-11 12:37:43 -07001821// ---------------------------------------------------------------------------
1822
Mathias Agopian0ab84ef2011-10-13 16:02:48 -07001823status_t SurfaceFlinger::renderScreenToTexture(DisplayID dpy,
1824 GLuint* textureName, GLfloat* uOut, GLfloat* vOut)
1825{
1826 Mutex::Autolock _l(mStateLock);
1827 return renderScreenToTextureLocked(dpy, textureName, uOut, vOut);
1828}
1829
Mathias Agopian2d2b8032010-10-12 16:05:48 -07001830status_t SurfaceFlinger::renderScreenToTextureLocked(DisplayID dpy,
1831 GLuint* textureName, GLfloat* uOut, GLfloat* vOut)
Mathias Agopianaab758e2010-10-11 12:37:43 -07001832{
Mathias Agopianaab758e2010-10-11 12:37:43 -07001833 if (!GLExtensions::getInstance().haveFramebufferObject())
1834 return INVALID_OPERATION;
1835
1836 // get screen geometry
Mathias Agopianaab758e2010-10-11 12:37:43 -07001837 const DisplayHardware& hw(graphicPlane(dpy).displayHardware());
Mathias Agopianaab758e2010-10-11 12:37:43 -07001838 const uint32_t hw_w = hw.getWidth();
1839 const uint32_t hw_h = hw.getHeight();
Mathias Agopianaab758e2010-10-11 12:37:43 -07001840 GLfloat u = 1;
1841 GLfloat v = 1;
1842
1843 // make sure to clear all GL error flags
1844 while ( glGetError() != GL_NO_ERROR ) ;
1845
1846 // create a FBO
1847 GLuint name, tname;
1848 glGenTextures(1, &tname);
1849 glBindTexture(GL_TEXTURE_2D, tname);
Mathias Agopian2d2b8032010-10-12 16:05:48 -07001850 glTexImage2D(GL_TEXTURE_2D, 0, GL_RGB,
1851 hw_w, hw_h, 0, GL_RGB, GL_UNSIGNED_BYTE, 0);
Mathias Agopianaab758e2010-10-11 12:37:43 -07001852 if (glGetError() != GL_NO_ERROR) {
Mathias Agopiana6cd6d32010-10-14 12:19:37 -07001853 while ( glGetError() != GL_NO_ERROR ) ;
Mathias Agopianaab758e2010-10-11 12:37:43 -07001854 GLint tw = (2 << (31 - clz(hw_w)));
1855 GLint th = (2 << (31 - clz(hw_h)));
Mathias Agopian2d2b8032010-10-12 16:05:48 -07001856 glTexImage2D(GL_TEXTURE_2D, 0, GL_RGB,
1857 tw, th, 0, GL_RGB, GL_UNSIGNED_BYTE, 0);
Mathias Agopianaab758e2010-10-11 12:37:43 -07001858 u = GLfloat(hw_w) / tw;
1859 v = GLfloat(hw_h) / th;
1860 }
1861 glGenFramebuffersOES(1, &name);
1862 glBindFramebufferOES(GL_FRAMEBUFFER_OES, name);
Mathias Agopian2d2b8032010-10-12 16:05:48 -07001863 glFramebufferTexture2DOES(GL_FRAMEBUFFER_OES,
1864 GL_COLOR_ATTACHMENT0_OES, GL_TEXTURE_2D, tname, 0);
Mathias Agopianaab758e2010-10-11 12:37:43 -07001865
Mathias Agopian2d2b8032010-10-12 16:05:48 -07001866 // redraw the screen entirely...
Mathias Agopian9044ef02011-10-18 14:49:27 -07001867 glDisable(GL_TEXTURE_EXTERNAL_OES);
1868 glDisable(GL_TEXTURE_2D);
Mathias Agopian2d2b8032010-10-12 16:05:48 -07001869 glClearColor(0,0,0,1);
1870 glClear(GL_COLOR_BUFFER_BIT);
Mathias Agopianb946a562011-10-10 19:02:07 -07001871 glMatrixMode(GL_MODELVIEW);
1872 glLoadIdentity();
Mathias Agopian2d2b8032010-10-12 16:05:48 -07001873 const Vector< sp<LayerBase> >& layers(mVisibleLayersSortedByZ);
1874 const size_t count = layers.size();
1875 for (size_t i=0 ; i<count ; ++i) {
1876 const sp<LayerBase>& layer(layers[i]);
1877 layer->drawForSreenShot();
1878 }
1879
Mathias Agopian0ab84ef2011-10-13 16:02:48 -07001880 hw.compositionComplete();
1881
Mathias Agopian2d2b8032010-10-12 16:05:48 -07001882 // back to main framebuffer
1883 glBindFramebufferOES(GL_FRAMEBUFFER_OES, 0);
1884 glDisable(GL_SCISSOR_TEST);
1885 glDeleteFramebuffersOES(1, &name);
1886
1887 *textureName = tname;
1888 *uOut = u;
1889 *vOut = v;
1890 return NO_ERROR;
1891}
1892
1893// ---------------------------------------------------------------------------
1894
1895status_t SurfaceFlinger::electronBeamOffAnimationImplLocked()
1896{
Mathias Agopian2d2b8032010-10-12 16:05:48 -07001897 // get screen geometry
1898 const DisplayHardware& hw(graphicPlane(0).displayHardware());
1899 const uint32_t hw_w = hw.getWidth();
1900 const uint32_t hw_h = hw.getHeight();
Mathias Agopianb946a562011-10-10 19:02:07 -07001901 const Region screenBounds(hw.getBounds());
Mathias Agopian2d2b8032010-10-12 16:05:48 -07001902
1903 GLfloat u, v;
1904 GLuint tname;
Mathias Agopian0ab84ef2011-10-13 16:02:48 -07001905 status_t result = renderScreenToTextureLocked(0, &tname, &u, &v);
Mathias Agopian2d2b8032010-10-12 16:05:48 -07001906 if (result != NO_ERROR) {
1907 return result;
1908 }
1909
1910 GLfloat vtx[8];
Mathias Agopianb946a562011-10-10 19:02:07 -07001911 const GLfloat texCoords[4][2] = { {0,0}, {0,v}, {u,v}, {u,0} };
Mathias Agopian2d2b8032010-10-12 16:05:48 -07001912 glBindTexture(GL_TEXTURE_2D, tname);
1913 glTexEnvx(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE);
1914 glTexParameterx(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
1915 glTexParameterx(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
1916 glTexCoordPointer(2, GL_FLOAT, 0, texCoords);
1917 glEnableClientState(GL_TEXTURE_COORD_ARRAY);
1918 glVertexPointer(2, GL_FLOAT, 0, vtx);
1919
Mathias Agopian3a831d22011-07-07 17:30:31 -07001920 /*
1921 * Texture coordinate mapping
1922 *
1923 * u
1924 * 1 +----------+---+
1925 * | | | | image is inverted
1926 * | V | | w.r.t. the texture
1927 * 1-v +----------+ | coordinates
1928 * | |
1929 * | |
1930 * | |
1931 * 0 +--------------+
1932 * 0 1
1933 *
1934 */
1935
Mathias Agopian2d2b8032010-10-12 16:05:48 -07001936 class s_curve_interpolator {
1937 const float nbFrames, s, v;
1938 public:
1939 s_curve_interpolator(int nbFrames, float s)
1940 : nbFrames(1.0f / (nbFrames-1)), s(s),
1941 v(1.0f + expf(-s + 0.5f*s)) {
1942 }
1943 float operator()(int f) {
1944 const float x = f * nbFrames;
1945 return ((1.0f/(1.0f + expf(-x*s + 0.5f*s))) - 0.5f) * v + 0.5f;
1946 }
1947 };
1948
1949 class v_stretch {
1950 const GLfloat hw_w, hw_h;
1951 public:
1952 v_stretch(uint32_t hw_w, uint32_t hw_h)
1953 : hw_w(hw_w), hw_h(hw_h) {
1954 }
1955 void operator()(GLfloat* vtx, float v) {
1956 const GLfloat w = hw_w + (hw_w * v);
1957 const GLfloat h = hw_h - (hw_h * v);
1958 const GLfloat x = (hw_w - w) * 0.5f;
1959 const GLfloat y = (hw_h - h) * 0.5f;
Mathias Agopian3a831d22011-07-07 17:30:31 -07001960 vtx[0] = x; vtx[1] = y;
1961 vtx[2] = x; vtx[3] = y + h;
1962 vtx[4] = x + w; vtx[5] = y + h;
1963 vtx[6] = x + w; vtx[7] = y;
Mathias Agopian2d2b8032010-10-12 16:05:48 -07001964 }
1965 };
1966
1967 class h_stretch {
1968 const GLfloat hw_w, hw_h;
1969 public:
1970 h_stretch(uint32_t hw_w, uint32_t hw_h)
1971 : hw_w(hw_w), hw_h(hw_h) {
1972 }
1973 void operator()(GLfloat* vtx, float v) {
1974 const GLfloat w = hw_w - (hw_w * v);
1975 const GLfloat h = 1.0f;
1976 const GLfloat x = (hw_w - w) * 0.5f;
1977 const GLfloat y = (hw_h - h) * 0.5f;
Mathias Agopian3a831d22011-07-07 17:30:31 -07001978 vtx[0] = x; vtx[1] = y;
1979 vtx[2] = x; vtx[3] = y + h;
1980 vtx[4] = x + w; vtx[5] = y + h;
1981 vtx[6] = x + w; vtx[7] = y;
Mathias Agopian2d2b8032010-10-12 16:05:48 -07001982 }
1983 };
1984
1985 // the full animation is 24 frames
Mathias Agopian3a831d22011-07-07 17:30:31 -07001986 char value[PROPERTY_VALUE_MAX];
1987 property_get("debug.sf.electron_frames", value, "24");
1988 int nbFrames = (atoi(value) + 1) >> 1;
1989 if (nbFrames <= 0) // just in case
1990 nbFrames = 24;
1991
Mathias Agopian2d2b8032010-10-12 16:05:48 -07001992 s_curve_interpolator itr(nbFrames, 7.5f);
1993 s_curve_interpolator itg(nbFrames, 8.0f);
1994 s_curve_interpolator itb(nbFrames, 8.5f);
1995
1996 v_stretch vverts(hw_w, hw_h);
Mathias Agopianb946a562011-10-10 19:02:07 -07001997
1998 glMatrixMode(GL_TEXTURE);
1999 glLoadIdentity();
2000 glMatrixMode(GL_MODELVIEW);
2001 glLoadIdentity();
2002
Mathias Agopian2d2b8032010-10-12 16:05:48 -07002003 glEnable(GL_BLEND);
2004 glBlendFunc(GL_ONE, GL_ONE);
2005 for (int i=0 ; i<nbFrames ; i++) {
2006 float x, y, w, h;
2007 const float vr = itr(i);
2008 const float vg = itg(i);
2009 const float vb = itb(i);
2010
2011 // clear screen
2012 glColorMask(1,1,1,1);
Mathias Agopianaab758e2010-10-11 12:37:43 -07002013 glClear(GL_COLOR_BUFFER_BIT);
Mathias Agopianaab758e2010-10-11 12:37:43 -07002014 glEnable(GL_TEXTURE_2D);
Mathias Agopianaab758e2010-10-11 12:37:43 -07002015
Mathias Agopian2d2b8032010-10-12 16:05:48 -07002016 // draw the red plane
2017 vverts(vtx, vr);
2018 glColorMask(1,0,0,1);
2019 glDrawArrays(GL_TRIANGLE_FAN, 0, 4);
Mathias Agopianaab758e2010-10-11 12:37:43 -07002020
Mathias Agopian2d2b8032010-10-12 16:05:48 -07002021 // draw the green plane
2022 vverts(vtx, vg);
2023 glColorMask(0,1,0,1);
2024 glDrawArrays(GL_TRIANGLE_FAN, 0, 4);
Mathias Agopianaab758e2010-10-11 12:37:43 -07002025
Mathias Agopian2d2b8032010-10-12 16:05:48 -07002026 // draw the blue plane
2027 vverts(vtx, vb);
2028 glColorMask(0,0,1,1);
2029 glDrawArrays(GL_TRIANGLE_FAN, 0, 4);
Mathias Agopianaab758e2010-10-11 12:37:43 -07002030
Mathias Agopian2d2b8032010-10-12 16:05:48 -07002031 // draw the white highlight (we use the last vertices)
Mathias Agopianaab758e2010-10-11 12:37:43 -07002032 glDisable(GL_TEXTURE_2D);
2033 glColorMask(1,1,1,1);
Mathias Agopian2d2b8032010-10-12 16:05:48 -07002034 glColor4f(vg, vg, vg, 1);
2035 glDrawArrays(GL_TRIANGLE_FAN, 0, 4);
2036 hw.flip(screenBounds);
Mathias Agopianaab758e2010-10-11 12:37:43 -07002037 }
2038
Mathias Agopian2d2b8032010-10-12 16:05:48 -07002039 h_stretch hverts(hw_w, hw_h);
2040 glDisable(GL_BLEND);
2041 glDisable(GL_TEXTURE_2D);
2042 glColorMask(1,1,1,1);
2043 for (int i=0 ; i<nbFrames ; i++) {
2044 const float v = itg(i);
2045 hverts(vtx, v);
2046 glClear(GL_COLOR_BUFFER_BIT);
2047 glColor4f(1-v, 1-v, 1-v, 1);
2048 glDrawArrays(GL_TRIANGLE_FAN, 0, 4);
2049 hw.flip(screenBounds);
2050 }
2051
2052 glColorMask(1,1,1,1);
2053 glEnable(GL_SCISSOR_TEST);
2054 glDisableClientState(GL_TEXTURE_COORD_ARRAY);
2055 glDeleteTextures(1, &tname);
Mathias Agopian7bb843c2011-04-20 14:20:59 -07002056 glDisable(GL_TEXTURE_2D);
Mathias Agopian9044ef02011-10-18 14:49:27 -07002057 glDisable(GL_BLEND);
Mathias Agopian2d2b8032010-10-12 16:05:48 -07002058 return NO_ERROR;
2059}
2060
2061status_t SurfaceFlinger::electronBeamOnAnimationImplLocked()
2062{
2063 status_t result = PERMISSION_DENIED;
2064
2065 if (!GLExtensions::getInstance().haveFramebufferObject())
2066 return INVALID_OPERATION;
2067
2068
2069 // get screen geometry
2070 const DisplayHardware& hw(graphicPlane(0).displayHardware());
2071 const uint32_t hw_w = hw.getWidth();
2072 const uint32_t hw_h = hw.getHeight();
2073 const Region screenBounds(hw.bounds());
2074
2075 GLfloat u, v;
2076 GLuint tname;
2077 result = renderScreenToTextureLocked(0, &tname, &u, &v);
2078 if (result != NO_ERROR) {
2079 return result;
2080 }
2081
Mathias Agopian2d2b8032010-10-12 16:05:48 -07002082 GLfloat vtx[8];
2083 const GLfloat texCoords[4][2] = { {0,v}, {0,0}, {u,0}, {u,v} };
Mathias Agopian2d2b8032010-10-12 16:05:48 -07002084 glBindTexture(GL_TEXTURE_2D, tname);
2085 glTexEnvx(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE);
2086 glTexParameterx(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
2087 glTexParameterx(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
2088 glTexCoordPointer(2, GL_FLOAT, 0, texCoords);
2089 glEnableClientState(GL_TEXTURE_COORD_ARRAY);
2090 glVertexPointer(2, GL_FLOAT, 0, vtx);
2091
2092 class s_curve_interpolator {
2093 const float nbFrames, s, v;
2094 public:
2095 s_curve_interpolator(int nbFrames, float s)
2096 : nbFrames(1.0f / (nbFrames-1)), s(s),
2097 v(1.0f + expf(-s + 0.5f*s)) {
2098 }
2099 float operator()(int f) {
2100 const float x = f * nbFrames;
2101 return ((1.0f/(1.0f + expf(-x*s + 0.5f*s))) - 0.5f) * v + 0.5f;
2102 }
2103 };
2104
2105 class v_stretch {
2106 const GLfloat hw_w, hw_h;
2107 public:
2108 v_stretch(uint32_t hw_w, uint32_t hw_h)
2109 : hw_w(hw_w), hw_h(hw_h) {
2110 }
2111 void operator()(GLfloat* vtx, float v) {
2112 const GLfloat w = hw_w + (hw_w * v);
2113 const GLfloat h = hw_h - (hw_h * v);
2114 const GLfloat x = (hw_w - w) * 0.5f;
2115 const GLfloat y = (hw_h - h) * 0.5f;
2116 vtx[0] = x; vtx[1] = y;
2117 vtx[2] = x; vtx[3] = y + h;
2118 vtx[4] = x + w; vtx[5] = y + h;
2119 vtx[6] = x + w; vtx[7] = y;
2120 }
2121 };
2122
2123 class h_stretch {
2124 const GLfloat hw_w, hw_h;
2125 public:
2126 h_stretch(uint32_t hw_w, uint32_t hw_h)
2127 : hw_w(hw_w), hw_h(hw_h) {
2128 }
2129 void operator()(GLfloat* vtx, float v) {
2130 const GLfloat w = hw_w - (hw_w * v);
2131 const GLfloat h = 1.0f;
2132 const GLfloat x = (hw_w - w) * 0.5f;
2133 const GLfloat y = (hw_h - h) * 0.5f;
2134 vtx[0] = x; vtx[1] = y;
2135 vtx[2] = x; vtx[3] = y + h;
2136 vtx[4] = x + w; vtx[5] = y + h;
2137 vtx[6] = x + w; vtx[7] = y;
2138 }
2139 };
2140
Mathias Agopiandfa08fb2010-10-14 12:33:07 -07002141 // the full animation is 12 frames
2142 int nbFrames = 8;
Mathias Agopian2d2b8032010-10-12 16:05:48 -07002143 s_curve_interpolator itr(nbFrames, 7.5f);
2144 s_curve_interpolator itg(nbFrames, 8.0f);
2145 s_curve_interpolator itb(nbFrames, 8.5f);
2146
2147 h_stretch hverts(hw_w, hw_h);
2148 glDisable(GL_BLEND);
2149 glDisable(GL_TEXTURE_2D);
2150 glColorMask(1,1,1,1);
2151 for (int i=nbFrames-1 ; i>=0 ; i--) {
2152 const float v = itg(i);
2153 hverts(vtx, v);
2154 glClear(GL_COLOR_BUFFER_BIT);
2155 glColor4f(1-v, 1-v, 1-v, 1);
2156 glDrawArrays(GL_TRIANGLE_FAN, 0, 4);
2157 hw.flip(screenBounds);
2158 }
2159
Mathias Agopiandfa08fb2010-10-14 12:33:07 -07002160 nbFrames = 4;
Mathias Agopian2d2b8032010-10-12 16:05:48 -07002161 v_stretch vverts(hw_w, hw_h);
2162 glEnable(GL_BLEND);
2163 glBlendFunc(GL_ONE, GL_ONE);
2164 for (int i=nbFrames-1 ; i>=0 ; i--) {
2165 float x, y, w, h;
2166 const float vr = itr(i);
2167 const float vg = itg(i);
2168 const float vb = itb(i);
2169
2170 // clear screen
2171 glColorMask(1,1,1,1);
2172 glClear(GL_COLOR_BUFFER_BIT);
2173 glEnable(GL_TEXTURE_2D);
2174
2175 // draw the red plane
2176 vverts(vtx, vr);
2177 glColorMask(1,0,0,1);
2178 glDrawArrays(GL_TRIANGLE_FAN, 0, 4);
2179
2180 // draw the green plane
2181 vverts(vtx, vg);
2182 glColorMask(0,1,0,1);
2183 glDrawArrays(GL_TRIANGLE_FAN, 0, 4);
2184
2185 // draw the blue plane
2186 vverts(vtx, vb);
2187 glColorMask(0,0,1,1);
2188 glDrawArrays(GL_TRIANGLE_FAN, 0, 4);
2189
2190 hw.flip(screenBounds);
2191 }
2192
2193 glColorMask(1,1,1,1);
2194 glEnable(GL_SCISSOR_TEST);
2195 glDisableClientState(GL_TEXTURE_COORD_ARRAY);
Mathias Agopianaab758e2010-10-11 12:37:43 -07002196 glDeleteTextures(1, &tname);
Mathias Agopian7bb843c2011-04-20 14:20:59 -07002197 glDisable(GL_TEXTURE_2D);
Mathias Agopian9044ef02011-10-18 14:49:27 -07002198 glDisable(GL_BLEND);
Mathias Agopianaab758e2010-10-11 12:37:43 -07002199
Mathias Agopian2d2b8032010-10-12 16:05:48 -07002200 return NO_ERROR;
2201}
2202
2203// ---------------------------------------------------------------------------
2204
Mathias Agopiand4e03f32010-10-14 14:54:06 -07002205status_t SurfaceFlinger::turnElectronBeamOffImplLocked(int32_t mode)
Mathias Agopian2d2b8032010-10-12 16:05:48 -07002206{
2207 DisplayHardware& hw(graphicPlane(0).editDisplayHardware());
2208 if (!hw.canDraw()) {
2209 // we're already off
2210 return NO_ERROR;
2211 }
Mathias Agopian7f972582011-09-02 12:22:39 -07002212
2213 // turn off hwc while we're doing the animation
2214 hw.getHwComposer().disable();
2215 // and make sure to turn it back on (if needed) next time we compose
2216 invalidateHwcGeometry();
2217
Mathias Agopiand4e03f32010-10-14 14:54:06 -07002218 if (mode & ISurfaceComposer::eElectronBeamAnimationOff) {
2219 electronBeamOffAnimationImplLocked();
2220 }
2221
2222 // always clear the whole screen at the end of the animation
2223 glClearColor(0,0,0,1);
2224 glDisable(GL_SCISSOR_TEST);
2225 glClear(GL_COLOR_BUFFER_BIT);
2226 glEnable(GL_SCISSOR_TEST);
2227 hw.flip( Region(hw.bounds()) );
2228
Mathias Agopiana6cd6d32010-10-14 12:19:37 -07002229 return NO_ERROR;
Mathias Agopianaab758e2010-10-11 12:37:43 -07002230}
2231
2232status_t SurfaceFlinger::turnElectronBeamOff(int32_t mode)
2233{
Mathias Agopianaab758e2010-10-11 12:37:43 -07002234 class MessageTurnElectronBeamOff : public MessageBase {
2235 SurfaceFlinger* flinger;
Mathias Agopiand4e03f32010-10-14 14:54:06 -07002236 int32_t mode;
Mathias Agopianaab758e2010-10-11 12:37:43 -07002237 status_t result;
2238 public:
Mathias Agopiand4e03f32010-10-14 14:54:06 -07002239 MessageTurnElectronBeamOff(SurfaceFlinger* flinger, int32_t mode)
2240 : flinger(flinger), mode(mode), result(PERMISSION_DENIED) {
Mathias Agopianaab758e2010-10-11 12:37:43 -07002241 }
2242 status_t getResult() const {
2243 return result;
2244 }
2245 virtual bool handler() {
2246 Mutex::Autolock _l(flinger->mStateLock);
Mathias Agopiand4e03f32010-10-14 14:54:06 -07002247 result = flinger->turnElectronBeamOffImplLocked(mode);
Mathias Agopianaab758e2010-10-11 12:37:43 -07002248 return true;
2249 }
2250 };
2251
Mathias Agopiand4e03f32010-10-14 14:54:06 -07002252 sp<MessageBase> msg = new MessageTurnElectronBeamOff(this, mode);
Mathias Agopianaab758e2010-10-11 12:37:43 -07002253 status_t res = postMessageSync(msg);
2254 if (res == NO_ERROR) {
2255 res = static_cast<MessageTurnElectronBeamOff*>( msg.get() )->getResult();
Mathias Agopian2d2b8032010-10-12 16:05:48 -07002256
2257 // work-around: when the power-manager calls us we activate the
2258 // animation. eventually, the "on" animation will be called
2259 // by the power-manager itself
Mathias Agopiand4e03f32010-10-14 14:54:06 -07002260 mElectronBeamAnimationMode = mode;
Mathias Agopianaab758e2010-10-11 12:37:43 -07002261 }
2262 return res;
2263}
2264
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002265// ---------------------------------------------------------------------------
Mathias Agopian7623da42010-06-01 15:12:58 -07002266
Mathias Agopiand4e03f32010-10-14 14:54:06 -07002267status_t SurfaceFlinger::turnElectronBeamOnImplLocked(int32_t mode)
Mathias Agopian2d2b8032010-10-12 16:05:48 -07002268{
2269 DisplayHardware& hw(graphicPlane(0).editDisplayHardware());
2270 if (hw.canDraw()) {
2271 // we're already on
2272 return NO_ERROR;
2273 }
Mathias Agopiand4e03f32010-10-14 14:54:06 -07002274 if (mode & ISurfaceComposer::eElectronBeamAnimationOn) {
2275 electronBeamOnAnimationImplLocked();
2276 }
Mathias Agopian8b6a0542010-10-14 12:46:24 -07002277
2278 // make sure to redraw the whole screen when the animation is done
2279 mDirtyRegion.set(hw.bounds());
2280 signalEvent();
2281
Mathias Agopiana6cd6d32010-10-14 12:19:37 -07002282 return NO_ERROR;
Mathias Agopian2d2b8032010-10-12 16:05:48 -07002283}
2284
2285status_t SurfaceFlinger::turnElectronBeamOn(int32_t mode)
2286{
Mathias Agopian2d2b8032010-10-12 16:05:48 -07002287 class MessageTurnElectronBeamOn : public MessageBase {
2288 SurfaceFlinger* flinger;
Mathias Agopiand4e03f32010-10-14 14:54:06 -07002289 int32_t mode;
Mathias Agopian2d2b8032010-10-12 16:05:48 -07002290 status_t result;
2291 public:
Mathias Agopiand4e03f32010-10-14 14:54:06 -07002292 MessageTurnElectronBeamOn(SurfaceFlinger* flinger, int32_t mode)
2293 : flinger(flinger), mode(mode), result(PERMISSION_DENIED) {
Mathias Agopian2d2b8032010-10-12 16:05:48 -07002294 }
2295 status_t getResult() const {
2296 return result;
2297 }
2298 virtual bool handler() {
2299 Mutex::Autolock _l(flinger->mStateLock);
Mathias Agopiand4e03f32010-10-14 14:54:06 -07002300 result = flinger->turnElectronBeamOnImplLocked(mode);
Mathias Agopian2d2b8032010-10-12 16:05:48 -07002301 return true;
2302 }
2303 };
2304
Mathias Agopiand4e03f32010-10-14 14:54:06 -07002305 postMessageAsync( new MessageTurnElectronBeamOn(this, mode) );
Mathias Agopian2d2b8032010-10-12 16:05:48 -07002306 return NO_ERROR;
2307}
2308
2309// ---------------------------------------------------------------------------
2310
Mathias Agopian38ed2e32010-09-29 13:02:36 -07002311status_t SurfaceFlinger::captureScreenImplLocked(DisplayID dpy,
2312 sp<IMemoryHeap>* heap,
2313 uint32_t* w, uint32_t* h, PixelFormat* f,
Mathias Agopian3dd25a62010-12-10 16:22:31 -08002314 uint32_t sw, uint32_t sh,
2315 uint32_t minLayerZ, uint32_t maxLayerZ)
Mathias Agopian38ed2e32010-09-29 13:02:36 -07002316{
2317 status_t result = PERMISSION_DENIED;
2318
2319 // only one display supported for now
2320 if (UNLIKELY(uint32_t(dpy) >= DISPLAY_COUNT))
2321 return BAD_VALUE;
2322
2323 if (!GLExtensions::getInstance().haveFramebufferObject())
2324 return INVALID_OPERATION;
2325
2326 // get screen geometry
2327 const DisplayHardware& hw(graphicPlane(dpy).displayHardware());
2328 const uint32_t hw_w = hw.getWidth();
2329 const uint32_t hw_h = hw.getHeight();
2330
2331 if ((sw > hw_w) || (sh > hw_h))
2332 return BAD_VALUE;
2333
2334 sw = (!sw) ? hw_w : sw;
2335 sh = (!sh) ? hw_h : sh;
2336 const size_t size = sw * sh * 4;
2337
Mathias Agopian32ae0942011-03-02 18:45:50 -08002338 //LOGD("screenshot: sw=%d, sh=%d, minZ=%d, maxZ=%d",
2339 // sw, sh, minLayerZ, maxLayerZ);
Mathias Agopiancd2cfb62011-01-16 14:05:02 -08002340
Mathias Agopian38ed2e32010-09-29 13:02:36 -07002341 // make sure to clear all GL error flags
2342 while ( glGetError() != GL_NO_ERROR ) ;
2343
2344 // create a FBO
2345 GLuint name, tname;
2346 glGenRenderbuffersOES(1, &tname);
2347 glBindRenderbufferOES(GL_RENDERBUFFER_OES, tname);
2348 glRenderbufferStorageOES(GL_RENDERBUFFER_OES, GL_RGBA8_OES, sw, sh);
2349 glGenFramebuffersOES(1, &name);
2350 glBindFramebufferOES(GL_FRAMEBUFFER_OES, name);
2351 glFramebufferRenderbufferOES(GL_FRAMEBUFFER_OES,
2352 GL_COLOR_ATTACHMENT0_OES, GL_RENDERBUFFER_OES, tname);
2353
2354 GLenum status = glCheckFramebufferStatusOES(GL_FRAMEBUFFER_OES);
Mathias Agopiancd2cfb62011-01-16 14:05:02 -08002355
Mathias Agopian38ed2e32010-09-29 13:02:36 -07002356 if (status == GL_FRAMEBUFFER_COMPLETE_OES) {
2357
2358 // invert everything, b/c glReadPixel() below will invert the FB
2359 glViewport(0, 0, sw, sh);
Mathias Agopian1c4e4fc02010-12-16 18:46:17 -08002360 glScissor(0, 0, sw, sh);
Mathias Agopian3a831d22011-07-07 17:30:31 -07002361 glEnable(GL_SCISSOR_TEST);
Mathias Agopian38ed2e32010-09-29 13:02:36 -07002362 glMatrixMode(GL_PROJECTION);
2363 glPushMatrix();
2364 glLoadIdentity();
Mathias Agopian3a831d22011-07-07 17:30:31 -07002365 glOrthof(0, hw_w, hw_h, 0, 0, 1);
Mathias Agopian38ed2e32010-09-29 13:02:36 -07002366 glMatrixMode(GL_MODELVIEW);
2367
2368 // redraw the screen entirely...
2369 glClearColor(0,0,0,1);
2370 glClear(GL_COLOR_BUFFER_BIT);
Mathias Agopian1c4e4fc02010-12-16 18:46:17 -08002371
Jamie Gennis830d0832011-10-07 14:51:16 -07002372 const LayerVector& layers(mDrawingState.layersSortedByZ);
2373 const size_t count = layers.size();
Mathias Agopian38ed2e32010-09-29 13:02:36 -07002374 for (size_t i=0 ; i<count ; ++i) {
2375 const sp<LayerBase>& layer(layers[i]);
Mathias Agopianec49d892011-08-25 14:36:43 -07002376 const uint32_t flags = layer->drawingState().flags;
2377 if (!(flags & ISurfaceComposer::eLayerHidden)) {
2378 const uint32_t z = layer->drawingState().z;
2379 if (z >= minLayerZ && z <= maxLayerZ) {
2380 layer->drawForSreenShot();
2381 }
Mathias Agopian3dd25a62010-12-10 16:22:31 -08002382 }
Mathias Agopian38ed2e32010-09-29 13:02:36 -07002383 }
2384
2385 // XXX: this is needed on tegra
Mathias Agopian3a831d22011-07-07 17:30:31 -07002386 glEnable(GL_SCISSOR_TEST);
Mathias Agopian38ed2e32010-09-29 13:02:36 -07002387 glScissor(0, 0, sw, sh);
2388
2389 // check for errors and return screen capture
2390 if (glGetError() != GL_NO_ERROR) {
2391 // error while rendering
2392 result = INVALID_OPERATION;
2393 } else {
2394 // allocate shared memory large enough to hold the
2395 // screen capture
2396 sp<MemoryHeapBase> base(
2397 new MemoryHeapBase(size, 0, "screen-capture") );
2398 void* const ptr = base->getBase();
2399 if (ptr) {
2400 // capture the screen with glReadPixels()
2401 glReadPixels(0, 0, sw, sh, GL_RGBA, GL_UNSIGNED_BYTE, ptr);
2402 if (glGetError() == GL_NO_ERROR) {
2403 *heap = base;
2404 *w = sw;
2405 *h = sh;
2406 *f = PIXEL_FORMAT_RGBA_8888;
2407 result = NO_ERROR;
2408 }
2409 } else {
2410 result = NO_MEMORY;
2411 }
2412 }
Mathias Agopian38ed2e32010-09-29 13:02:36 -07002413 glEnable(GL_SCISSOR_TEST);
2414 glViewport(0, 0, hw_w, hw_h);
2415 glMatrixMode(GL_PROJECTION);
2416 glPopMatrix();
2417 glMatrixMode(GL_MODELVIEW);
Mathias Agopian38ed2e32010-09-29 13:02:36 -07002418 } else {
2419 result = BAD_VALUE;
2420 }
2421
2422 // release FBO resources
2423 glBindFramebufferOES(GL_FRAMEBUFFER_OES, 0);
2424 glDeleteRenderbuffersOES(1, &tname);
2425 glDeleteFramebuffersOES(1, &name);
Mathias Agopiana6b8c1c2010-12-15 14:41:59 -08002426
2427 hw.compositionComplete();
2428
Mathias Agopian32ae0942011-03-02 18:45:50 -08002429 // LOGD("screenshot: result = %s", result<0 ? strerror(result) : "OK");
Mathias Agopiancd2cfb62011-01-16 14:05:02 -08002430
Mathias Agopian38ed2e32010-09-29 13:02:36 -07002431 return result;
2432}
2433
2434
Mathias Agopianca5edbe2010-09-24 11:26:58 -07002435status_t SurfaceFlinger::captureScreen(DisplayID dpy,
2436 sp<IMemoryHeap>* heap,
Mathias Agopian38ed2e32010-09-29 13:02:36 -07002437 uint32_t* width, uint32_t* height, PixelFormat* format,
Mathias Agopian3dd25a62010-12-10 16:22:31 -08002438 uint32_t sw, uint32_t sh,
2439 uint32_t minLayerZ, uint32_t maxLayerZ)
Mathias Agopianca5edbe2010-09-24 11:26:58 -07002440{
2441 // only one display supported for now
2442 if (UNLIKELY(uint32_t(dpy) >= DISPLAY_COUNT))
2443 return BAD_VALUE;
2444
2445 if (!GLExtensions::getInstance().haveFramebufferObject())
2446 return INVALID_OPERATION;
2447
2448 class MessageCaptureScreen : public MessageBase {
2449 SurfaceFlinger* flinger;
2450 DisplayID dpy;
2451 sp<IMemoryHeap>* heap;
2452 uint32_t* w;
2453 uint32_t* h;
2454 PixelFormat* f;
Mathias Agopian38ed2e32010-09-29 13:02:36 -07002455 uint32_t sw;
2456 uint32_t sh;
Mathias Agopian3dd25a62010-12-10 16:22:31 -08002457 uint32_t minLayerZ;
2458 uint32_t maxLayerZ;
Mathias Agopianca5edbe2010-09-24 11:26:58 -07002459 status_t result;
2460 public:
2461 MessageCaptureScreen(SurfaceFlinger* flinger, DisplayID dpy,
Mathias Agopian38ed2e32010-09-29 13:02:36 -07002462 sp<IMemoryHeap>* heap, uint32_t* w, uint32_t* h, PixelFormat* f,
Mathias Agopian3dd25a62010-12-10 16:22:31 -08002463 uint32_t sw, uint32_t sh,
2464 uint32_t minLayerZ, uint32_t maxLayerZ)
Mathias Agopianca5edbe2010-09-24 11:26:58 -07002465 : flinger(flinger), dpy(dpy),
Mathias Agopian3dd25a62010-12-10 16:22:31 -08002466 heap(heap), w(w), h(h), f(f), sw(sw), sh(sh),
2467 minLayerZ(minLayerZ), maxLayerZ(maxLayerZ),
2468 result(PERMISSION_DENIED)
Mathias Agopianca5edbe2010-09-24 11:26:58 -07002469 {
2470 }
2471 status_t getResult() const {
2472 return result;
2473 }
2474 virtual bool handler() {
2475 Mutex::Autolock _l(flinger->mStateLock);
2476
2477 // if we have secure windows, never allow the screen capture
2478 if (flinger->mSecureFrameBuffer)
2479 return true;
2480
Mathias Agopian38ed2e32010-09-29 13:02:36 -07002481 result = flinger->captureScreenImplLocked(dpy,
Mathias Agopian3dd25a62010-12-10 16:22:31 -08002482 heap, w, h, f, sw, sh, minLayerZ, maxLayerZ);
Mathias Agopianca5edbe2010-09-24 11:26:58 -07002483
Mathias Agopianca5edbe2010-09-24 11:26:58 -07002484 return true;
2485 }
2486 };
2487
2488 sp<MessageBase> msg = new MessageCaptureScreen(this,
Mathias Agopian3dd25a62010-12-10 16:22:31 -08002489 dpy, heap, width, height, format, sw, sh, minLayerZ, maxLayerZ);
Mathias Agopianca5edbe2010-09-24 11:26:58 -07002490 status_t res = postMessageSync(msg);
2491 if (res == NO_ERROR) {
2492 res = static_cast<MessageCaptureScreen*>( msg.get() )->getResult();
2493 }
2494 return res;
2495}
2496
2497// ---------------------------------------------------------------------------
2498
Mathias Agopian7623da42010-06-01 15:12:58 -07002499sp<Layer> SurfaceFlinger::getLayer(const sp<ISurface>& sur) const
2500{
2501 sp<Layer> result;
2502 Mutex::Autolock _l(mStateLock);
2503 result = mLayerMap.valueFor( sur->asBinder() ).promote();
2504 return result;
2505}
2506
2507// ---------------------------------------------------------------------------
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002508
Mathias Agopian593c05c2010-06-02 23:28:45 -07002509Client::Client(const sp<SurfaceFlinger>& flinger)
Mathias Agopian7623da42010-06-01 15:12:58 -07002510 : mFlinger(flinger), mNameGenerator(1)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002511{
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002512}
2513
Mathias Agopian593c05c2010-06-02 23:28:45 -07002514Client::~Client()
2515{
Mathias Agopian593c05c2010-06-02 23:28:45 -07002516 const size_t count = mLayers.size();
2517 for (size_t i=0 ; i<count ; i++) {
2518 sp<LayerBaseClient> layer(mLayers.valueAt(i).promote());
2519 if (layer != 0) {
2520 mFlinger->removeLayer(layer);
2521 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002522 }
2523}
2524
Mathias Agopian593c05c2010-06-02 23:28:45 -07002525status_t Client::initCheck() const {
Mathias Agopian7623da42010-06-01 15:12:58 -07002526 return NO_ERROR;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002527}
Mathias Agopian1473f462009-04-10 14:24:30 -07002528
Mathias Agopian5fa7ad62011-05-03 16:21:41 -07002529size_t Client::attachLayer(const sp<LayerBaseClient>& layer)
Mathias Agopian593c05c2010-06-02 23:28:45 -07002530{
Mathias Agopian5fa7ad62011-05-03 16:21:41 -07002531 Mutex::Autolock _l(mLock);
2532 size_t name = mNameGenerator++;
Mathias Agopian593c05c2010-06-02 23:28:45 -07002533 mLayers.add(name, layer);
2534 return name;
2535}
2536
Mathias Agopian7623da42010-06-01 15:12:58 -07002537void Client::detachLayer(const LayerBaseClient* layer)
Mathias Agopian593c05c2010-06-02 23:28:45 -07002538{
Mathias Agopian5fa7ad62011-05-03 16:21:41 -07002539 Mutex::Autolock _l(mLock);
Mathias Agopian593c05c2010-06-02 23:28:45 -07002540 // we do a linear search here, because this doesn't happen often
2541 const size_t count = mLayers.size();
2542 for (size_t i=0 ; i<count ; i++) {
2543 if (mLayers.valueAt(i) == layer) {
2544 mLayers.removeItemsAt(i, 1);
2545 break;
2546 }
2547 }
2548}
Mathias Agopian5fa7ad62011-05-03 16:21:41 -07002549sp<LayerBaseClient> Client::getLayerUser(int32_t i) const
2550{
2551 Mutex::Autolock _l(mLock);
Mathias Agopian1473f462009-04-10 14:24:30 -07002552 sp<LayerBaseClient> lbc;
Mathias Agopian5fa7ad62011-05-03 16:21:41 -07002553 wp<LayerBaseClient> layer(mLayers.valueFor(i));
Mathias Agopian593c05c2010-06-02 23:28:45 -07002554 if (layer != 0) {
2555 lbc = layer.promote();
2556 LOGE_IF(lbc==0, "getLayerUser(name=%d) is dead", int(i));
Mathias Agopian1473f462009-04-10 14:24:30 -07002557 }
2558 return lbc;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002559}
2560
Mathias Agopian7bb843c2011-04-20 14:20:59 -07002561
2562status_t Client::onTransact(
2563 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
2564{
2565 // these must be checked
2566 IPCThreadState* ipc = IPCThreadState::self();
2567 const int pid = ipc->getCallingPid();
2568 const int uid = ipc->getCallingUid();
2569 const int self_pid = getpid();
2570 if (UNLIKELY(pid != self_pid && uid != AID_GRAPHICS && uid != 0)) {
2571 // we're called from a different process, do the real check
Mathias Agopian0dd593f2011-06-27 16:05:52 -07002572 if (!PermissionCache::checkCallingPermission(sAccessSurfaceFlinger))
Mathias Agopian7bb843c2011-04-20 14:20:59 -07002573 {
2574 LOGE("Permission Denial: "
2575 "can't openGlobalTransaction pid=%d, uid=%d", pid, uid);
2576 return PERMISSION_DENIED;
2577 }
2578 }
2579 return BnSurfaceComposerClient::onTransact(code, data, reply, flags);
Mathias Agopian7623da42010-06-01 15:12:58 -07002580}
Mathias Agopian7bb843c2011-04-20 14:20:59 -07002581
2582
Mathias Agopian593c05c2010-06-02 23:28:45 -07002583sp<ISurface> Client::createSurface(
Mathias Agopian9638e5c2011-04-20 14:19:32 -07002584 ISurfaceComposerClient::surface_data_t* params,
Mathias Agopian7623da42010-06-01 15:12:58 -07002585 const String8& name,
2586 DisplayID display, uint32_t w, uint32_t h, PixelFormat format,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002587 uint32_t flags)
2588{
Mathias Agopian7bb843c2011-04-20 14:20:59 -07002589 /*
2590 * createSurface must be called from the GL thread so that it can
2591 * have access to the GL context.
2592 */
2593
2594 class MessageCreateSurface : public MessageBase {
2595 sp<ISurface> result;
2596 SurfaceFlinger* flinger;
2597 ISurfaceComposerClient::surface_data_t* params;
2598 Client* client;
2599 const String8& name;
2600 DisplayID display;
2601 uint32_t w, h;
2602 PixelFormat format;
2603 uint32_t flags;
2604 public:
2605 MessageCreateSurface(SurfaceFlinger* flinger,
2606 ISurfaceComposerClient::surface_data_t* params,
2607 const String8& name, Client* client,
2608 DisplayID display, uint32_t w, uint32_t h, PixelFormat format,
2609 uint32_t flags)
2610 : flinger(flinger), params(params), client(client), name(name),
2611 display(display), w(w), h(h), format(format), flags(flags)
2612 {
2613 }
2614 sp<ISurface> getResult() const { return result; }
2615 virtual bool handler() {
2616 result = flinger->createSurface(params, name, client,
2617 display, w, h, format, flags);
2618 return true;
2619 }
2620 };
2621
2622 sp<MessageBase> msg = new MessageCreateSurface(mFlinger.get(),
2623 params, name, this, display, w, h, format, flags);
2624 mFlinger->postMessageSync(msg);
2625 return static_cast<MessageCreateSurface*>( msg.get() )->getResult();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002626}
Mathias Agopian593c05c2010-06-02 23:28:45 -07002627status_t Client::destroySurface(SurfaceID sid) {
2628 return mFlinger->removeSurface(this, sid);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002629}
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002630
2631// ---------------------------------------------------------------------------
2632
Jamie Gennisf7acf162011-01-12 18:30:40 -08002633GraphicBufferAlloc::GraphicBufferAlloc() {}
2634
2635GraphicBufferAlloc::~GraphicBufferAlloc() {}
2636
2637sp<GraphicBuffer> GraphicBufferAlloc::createGraphicBuffer(uint32_t w, uint32_t h,
Mathias Agopianeec0f7e2011-07-01 14:53:49 -07002638 PixelFormat format, uint32_t usage, status_t* error) {
Jamie Gennisf7acf162011-01-12 18:30:40 -08002639 sp<GraphicBuffer> graphicBuffer(new GraphicBuffer(w, h, format, usage));
2640 status_t err = graphicBuffer->initCheck();
Mathias Agopianeec0f7e2011-07-01 14:53:49 -07002641 *error = err;
Mathias Agopian7bb843c2011-04-20 14:20:59 -07002642 if (err != 0 || graphicBuffer->handle == 0) {
Mathias Agopianeec0f7e2011-07-01 14:53:49 -07002643 if (err == NO_MEMORY) {
2644 GraphicBuffer::dumpAllocationsToSystemLog();
2645 }
Mathias Agopian7bb843c2011-04-20 14:20:59 -07002646 LOGE("GraphicBufferAlloc::createGraphicBuffer(w=%d, h=%d) "
2647 "failed (%s), handle=%p",
2648 w, h, strerror(-err), graphicBuffer->handle);
Jamie Gennisf7acf162011-01-12 18:30:40 -08002649 return 0;
2650 }
Jamie Gennisf7acf162011-01-12 18:30:40 -08002651 return graphicBuffer;
2652}
2653
Jamie Gennisf7acf162011-01-12 18:30:40 -08002654// ---------------------------------------------------------------------------
2655
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002656GraphicPlane::GraphicPlane()
2657 : mHw(0)
2658{
2659}
2660
2661GraphicPlane::~GraphicPlane() {
2662 delete mHw;
2663}
2664
2665bool GraphicPlane::initialized() const {
2666 return mHw ? true : false;
2667}
2668
Mathias Agopian66c77a52010-02-08 15:49:35 -08002669int GraphicPlane::getWidth() const {
2670 return mWidth;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002671}
2672
Mathias Agopian66c77a52010-02-08 15:49:35 -08002673int GraphicPlane::getHeight() const {
2674 return mHeight;
2675}
2676
2677void GraphicPlane::setDisplayHardware(DisplayHardware *hw)
2678{
2679 mHw = hw;
2680
2681 // initialize the display orientation transform.
2682 // it's a constant that should come from the display driver.
2683 int displayOrientation = ISurfaceComposer::eOrientationDefault;
2684 char property[PROPERTY_VALUE_MAX];
2685 if (property_get("ro.sf.hwrotation", property, NULL) > 0) {
2686 //displayOrientation
2687 switch (atoi(property)) {
2688 case 90:
2689 displayOrientation = ISurfaceComposer::eOrientation90;
2690 break;
2691 case 270:
2692 displayOrientation = ISurfaceComposer::eOrientation270;
2693 break;
2694 }
2695 }
2696
2697 const float w = hw->getWidth();
2698 const float h = hw->getHeight();
2699 GraphicPlane::orientationToTransfrom(displayOrientation, w, h,
2700 &mDisplayTransform);
2701 if (displayOrientation & ISurfaceComposer::eOrientationSwapMask) {
2702 mDisplayWidth = h;
2703 mDisplayHeight = w;
2704 } else {
2705 mDisplayWidth = w;
2706 mDisplayHeight = h;
2707 }
2708
2709 setOrientation(ISurfaceComposer::eOrientationDefault);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002710}
2711
2712status_t GraphicPlane::orientationToTransfrom(
2713 int orientation, int w, int h, Transform* tr)
Mathias Agopian8c20ca32010-02-22 03:15:57 -08002714{
2715 uint32_t flags = 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002716 switch (orientation) {
2717 case ISurfaceComposer::eOrientationDefault:
Mathias Agopian8c20ca32010-02-22 03:15:57 -08002718 flags = Transform::ROT_0;
2719 break;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002720 case ISurfaceComposer::eOrientation90:
Mathias Agopian8c20ca32010-02-22 03:15:57 -08002721 flags = Transform::ROT_90;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002722 break;
2723 case ISurfaceComposer::eOrientation180:
Mathias Agopian8c20ca32010-02-22 03:15:57 -08002724 flags = Transform::ROT_180;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002725 break;
2726 case ISurfaceComposer::eOrientation270:
Mathias Agopian8c20ca32010-02-22 03:15:57 -08002727 flags = Transform::ROT_270;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002728 break;
2729 default:
2730 return BAD_VALUE;
2731 }
Mathias Agopian8c20ca32010-02-22 03:15:57 -08002732 tr->set(flags, w, h);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002733 return NO_ERROR;
2734}
2735
2736status_t GraphicPlane::setOrientation(int orientation)
2737{
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002738 // If the rotation can be handled in hardware, this is where
2739 // the magic should happen.
Mathias Agopian66c77a52010-02-08 15:49:35 -08002740
2741 const DisplayHardware& hw(displayHardware());
2742 const float w = mDisplayWidth;
2743 const float h = mDisplayHeight;
2744 mWidth = int(w);
2745 mHeight = int(h);
2746
2747 Transform orientationTransform;
Mathias Agopian8c20ca32010-02-22 03:15:57 -08002748 GraphicPlane::orientationToTransfrom(orientation, w, h,
2749 &orientationTransform);
2750 if (orientation & ISurfaceComposer::eOrientationSwapMask) {
2751 mWidth = int(h);
2752 mHeight = int(w);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002753 }
Mathias Agopian8c20ca32010-02-22 03:15:57 -08002754
Mathias Agopian3552f532009-03-27 17:58:20 -07002755 mOrientation = orientation;
Mathias Agopian66c77a52010-02-08 15:49:35 -08002756 mGlobalTransform = mDisplayTransform * orientationTransform;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002757 return NO_ERROR;
2758}
2759
2760const DisplayHardware& GraphicPlane::displayHardware() const {
2761 return *mHw;
2762}
2763
Mathias Agopianaab758e2010-10-11 12:37:43 -07002764DisplayHardware& GraphicPlane::editDisplayHardware() {
2765 return *mHw;
2766}
2767
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002768const Transform& GraphicPlane::transform() const {
2769 return mGlobalTransform;
2770}
2771
Mathias Agopian1473f462009-04-10 14:24:30 -07002772EGLDisplay GraphicPlane::getEGLDisplay() const {
2773 return mHw->getEGLDisplay();
2774}
2775
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002776// ---------------------------------------------------------------------------
2777
2778}; // namespace android