blob: 768f8e05c70f85323518ed46f8a3f20736146f95 [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"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080053#include "SurfaceFlinger.h"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080054
55#include "DisplayHardware/DisplayHardware.h"
Mathias Agopiane0d5f5b2010-08-10 17:14:02 -070056#include "DisplayHardware/HWComposer.h"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080057
Mathias Agopian7bb843c2011-04-20 14:20:59 -070058#include <private/surfaceflinger/SharedBufferStack.h>
59
Mathias Agopian627e7b52009-05-21 19:21:59 -070060/* ideally AID_GRAPHICS would be in a semi-public header
61 * or there would be a way to map a user/group name to its id
62 */
63#ifndef AID_GRAPHICS
64#define AID_GRAPHICS 1003
65#endif
66
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080067#define DISPLAY_COUNT 1
68
69namespace android {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080070// ---------------------------------------------------------------------------
71
Mathias Agopian0dd593f2011-06-27 16:05:52 -070072const String16 sHardwareTest("android.permission.HARDWARE_TEST");
73const String16 sAccessSurfaceFlinger("android.permission.ACCESS_SURFACE_FLINGER");
74const String16 sReadFramebuffer("android.permission.READ_FRAME_BUFFER");
75const String16 sDump("android.permission.DUMP");
76
77// ---------------------------------------------------------------------------
78
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080079SurfaceFlinger::SurfaceFlinger()
80 : BnSurfaceComposer(), Thread(false),
81 mTransactionFlags(0),
Mathias Agopian9779b222009-09-07 16:32:45 -070082 mResizeTransationPending(false),
Mathias Agopian1473f462009-04-10 14:24:30 -070083 mLayersRemoved(false),
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080084 mBootTime(systemTime()),
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080085 mVisibleRegionsDirty(false),
Mathias Agopiane0d5f5b2010-08-10 17:14:02 -070086 mHwWorkListDirty(false),
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080087 mDeferReleaseConsole(false),
88 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);
278 const uint16_t textureData[4] = { g0, g1, g1, g0 };
279 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,
286 GL_RGB, GL_UNSIGNED_SHORT_5_6_5, textureData);
287
288 glViewport(0, 0, w, h);
289 glMatrixMode(GL_PROJECTION);
290 glLoadIdentity();
Mathias Agopian3a831d22011-07-07 17:30:31 -0700291 // put the origin in the left-bottom corner
292 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 -0800293
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800294 mReadyToRunBarrier.open();
295
296 /*
297 * We're now ready to accept clients...
298 */
299
Mathias Agopian627e7b52009-05-21 19:21:59 -0700300 // start boot animation
301 property_set("ctl.start", "bootanim");
Andreas Hubere3c01832010-08-16 08:49:37 -0700302
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800303 return NO_ERROR;
304}
305
306// ----------------------------------------------------------------------------
307#if 0
308#pragma mark -
309#pragma mark Events Handler
310#endif
311
312void SurfaceFlinger::waitForEvent()
313{
Mathias Agopian6ead5d92009-04-20 19:39:12 -0700314 while (true) {
315 nsecs_t timeout = -1;
Mathias Agopian0e449762009-12-01 17:23:28 -0800316 const nsecs_t freezeDisplayTimeout = ms2ns(5000);
Mathias Agopian6ead5d92009-04-20 19:39:12 -0700317 if (UNLIKELY(isFrozen())) {
318 // wait 5 seconds
Mathias Agopian6ead5d92009-04-20 19:39:12 -0700319 const nsecs_t now = systemTime();
320 if (mFreezeDisplayTime == 0) {
321 mFreezeDisplayTime = now;
322 }
323 nsecs_t waitTime = freezeDisplayTimeout - (now - mFreezeDisplayTime);
324 timeout = waitTime>0 ? waitTime : 0;
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -0700325 }
Mathias Agopian6ead5d92009-04-20 19:39:12 -0700326
Mathias Agopian898c4c92010-05-18 17:06:55 -0700327 sp<MessageBase> msg = mEventQueue.waitMessage(timeout);
Mathias Agopian0e449762009-12-01 17:23:28 -0800328
329 // see if we timed out
330 if (isFrozen()) {
331 const nsecs_t now = systemTime();
332 nsecs_t frozenTime = (now - mFreezeDisplayTime);
333 if (frozenTime >= freezeDisplayTimeout) {
334 // we timed out and are still frozen
335 LOGW("timeout expired mFreezeDisplay=%d, mFreezeCount=%d",
336 mFreezeDisplay, mFreezeCount);
337 mFreezeDisplayTime = 0;
338 mFreezeCount = 0;
339 mFreezeDisplay = false;
340 }
341 }
342
Mathias Agopian6ead5d92009-04-20 19:39:12 -0700343 if (msg != 0) {
Mathias Agopian6ead5d92009-04-20 19:39:12 -0700344 switch (msg->what) {
345 case MessageQueue::INVALIDATE:
346 // invalidate message, just return to the main loop
347 return;
348 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800349 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800350 }
351}
352
353void SurfaceFlinger::signalEvent() {
Mathias Agopian6ead5d92009-04-20 19:39:12 -0700354 mEventQueue.invalidate();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800355}
356
Jamie Gennis9b8fc652011-08-17 18:19:00 -0700357bool SurfaceFlinger::authenticateSurfaceTexture(
358 const sp<ISurfaceTexture>& surfaceTexture) const {
Jamie Gennisd2acedf2011-03-08 12:18:54 -0800359 Mutex::Autolock _l(mStateLock);
Jamie Gennis9b8fc652011-08-17 18:19:00 -0700360 sp<IBinder> surfaceTextureBinder(surfaceTexture->asBinder());
Jamie Gennisd2acedf2011-03-08 12:18:54 -0800361
362 // Check the visible layer list for the ISurface
363 const LayerVector& currentLayers = mCurrentState.layersSortedByZ;
364 size_t count = currentLayers.size();
365 for (size_t i=0 ; i<count ; i++) {
366 const sp<LayerBase>& layer(currentLayers[i]);
367 sp<LayerBaseClient> lbc(layer->getLayerBaseClient());
Jamie Gennis9b8fc652011-08-17 18:19:00 -0700368 if (lbc != NULL) {
369 wp<IBinder> lbcBinder = lbc->getSurfaceTextureBinder();
370 if (lbcBinder == surfaceTextureBinder) {
371 return true;
372 }
Jamie Gennisd2acedf2011-03-08 12:18:54 -0800373 }
374 }
375
376 // Check the layers in the purgatory. This check is here so that if a
Jamie Gennis9b8fc652011-08-17 18:19:00 -0700377 // SurfaceTexture gets destroyed before all the clients are done using it,
378 // the error will not be reported as "surface XYZ is not authenticated", but
Jamie Gennisd2acedf2011-03-08 12:18:54 -0800379 // will instead fail later on when the client tries to use the surface,
380 // which should be reported as "surface XYZ returned an -ENODEV". The
381 // purgatorized layers are no less authentic than the visible ones, so this
382 // should not cause any harm.
383 size_t purgatorySize = mLayerPurgatory.size();
384 for (size_t i=0 ; i<purgatorySize ; i++) {
385 const sp<LayerBase>& layer(mLayerPurgatory.itemAt(i));
386 sp<LayerBaseClient> lbc(layer->getLayerBaseClient());
Jamie Gennis9b8fc652011-08-17 18:19:00 -0700387 if (lbc != NULL) {
388 wp<IBinder> lbcBinder = lbc->getSurfaceTextureBinder();
389 if (lbcBinder == surfaceTextureBinder) {
390 return true;
391 }
Jamie Gennisd2acedf2011-03-08 12:18:54 -0800392 }
393 }
394
395 return false;
396}
397
Mathias Agopian898c4c92010-05-18 17:06:55 -0700398status_t SurfaceFlinger::postMessageAsync(const sp<MessageBase>& msg,
399 nsecs_t reltime, uint32_t flags)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800400{
Mathias Agopian898c4c92010-05-18 17:06:55 -0700401 return mEventQueue.postMessage(msg, reltime, flags);
402}
403
404status_t SurfaceFlinger::postMessageSync(const sp<MessageBase>& msg,
405 nsecs_t reltime, uint32_t flags)
406{
407 status_t res = mEventQueue.postMessage(msg, reltime, flags);
408 if (res == NO_ERROR) {
409 msg->wait();
410 }
411 return res;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800412}
413
414// ----------------------------------------------------------------------------
415#if 0
416#pragma mark -
417#pragma mark Main loop
418#endif
419
420bool SurfaceFlinger::threadLoop()
421{
422 waitForEvent();
423
424 // check for transactions
425 if (UNLIKELY(mConsoleSignals)) {
426 handleConsoleEvents();
427 }
428
Mathias Agopian439863f2011-06-28 19:09:31 -0700429 // if we're in a global transaction, don't do anything.
430 const uint32_t mask = eTransactionNeeded | eTraversalNeeded;
431 uint32_t transactionFlags = peekTransactionFlags(mask);
432 if (UNLIKELY(transactionFlags)) {
433 handleTransaction(transactionFlags);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800434 }
435
436 // post surfaces (if needed)
437 handlePageFlip();
438
Mathias Agopiane0d5f5b2010-08-10 17:14:02 -0700439 if (UNLIKELY(mHwWorkListDirty)) {
440 // build the h/w work list
441 handleWorkList();
442 }
443
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800444 const DisplayHardware& hw(graphicPlane(0).displayHardware());
Mathias Agopian81384bf2009-09-27 22:47:27 -0700445 if (LIKELY(hw.canDraw() && !isFrozen())) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800446 // repaint the framebuffer (if needed)
Mathias Agopian04262e92010-09-13 22:57:58 -0700447
448 const int index = hw.getCurrentBufferIndex();
449 GraphicLog& logger(GraphicLog::getInstance());
450
451 logger.log(GraphicLog::SF_REPAINT, index);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800452 handleRepaint();
453
Mathias Agopianb1a18742009-09-17 16:18:16 -0700454 // inform the h/w that we're done compositing
Mathias Agopian04262e92010-09-13 22:57:58 -0700455 logger.log(GraphicLog::SF_COMPOSITION_COMPLETE, index);
Mathias Agopianb1a18742009-09-17 16:18:16 -0700456 hw.compositionComplete();
457
Mathias Agopian04262e92010-09-13 22:57:58 -0700458 logger.log(GraphicLog::SF_SWAP_BUFFERS, index);
Antti Hatala4c0a4a22010-09-08 06:37:14 -0700459 postFramebuffer();
460
Mathias Agopian04262e92010-09-13 22:57:58 -0700461 logger.log(GraphicLog::SF_REPAINT_DONE, index);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800462 } else {
463 // pretend we did the post
Mathias Agopiana6b8c1c2010-12-15 14:41:59 -0800464 hw.compositionComplete();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800465 usleep(16667); // 60 fps period
466 }
467 return true;
468}
469
470void SurfaceFlinger::postFramebuffer()
471{
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800472 if (!mInvalidRegion.isEmpty()) {
473 const DisplayHardware& hw(graphicPlane(0).displayHardware());
Mathias Agopiana8d49172009-08-26 16:36:26 -0700474 const nsecs_t now = systemTime();
475 mDebugInSwapBuffers = now;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800476 hw.flip(mInvalidRegion);
Mathias Agopiana8d49172009-08-26 16:36:26 -0700477 mLastSwapBufferTime = systemTime() - now;
478 mDebugInSwapBuffers = 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800479 mInvalidRegion.clear();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800480 }
481}
482
483void SurfaceFlinger::handleConsoleEvents()
484{
485 // something to do with the console
486 const DisplayHardware& hw = graphicPlane(0).displayHardware();
487
488 int what = android_atomic_and(0, &mConsoleSignals);
489 if (what & eConsoleAcquired) {
490 hw.acquireScreen();
Mathias Agopian2d2b8032010-10-12 16:05:48 -0700491 // this is a temporary work-around, eventually this should be called
492 // by the power-manager
Mathias Agopiand4e03f32010-10-14 14:54:06 -0700493 SurfaceFlinger::turnElectronBeamOn(mElectronBeamAnimationMode);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800494 }
495
Mathias Agopianaab758e2010-10-11 12:37:43 -0700496 if (mDeferReleaseConsole && hw.isScreenAcquired()) {
Mathias Agopianed81f222009-04-14 23:02:51 -0700497 // We got the release signal before the acquire signal
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800498 mDeferReleaseConsole = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800499 hw.releaseScreen();
500 }
501
502 if (what & eConsoleReleased) {
Mathias Agopianaab758e2010-10-11 12:37:43 -0700503 if (hw.isScreenAcquired()) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800504 hw.releaseScreen();
505 } else {
506 mDeferReleaseConsole = true;
507 }
508 }
509
510 mDirtyRegion.set(hw.bounds());
511}
512
513void SurfaceFlinger::handleTransaction(uint32_t transactionFlags)
514{
Mathias Agopian69608112011-05-19 15:38:14 -0700515 Mutex::Autolock _l(mStateLock);
516 const nsecs_t now = systemTime();
517 mDebugInTransaction = now;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800518
Mathias Agopian69608112011-05-19 15:38:14 -0700519 // Here we're guaranteed that some transaction flags are set
520 // so we can call handleTransactionLocked() unconditionally.
521 // We call getTransactionFlags(), which will also clear the flags,
522 // with mStateLock held to guarantee that mCurrentState won't change
523 // until the transaction is committed.
Mathias Agopianff1d4102010-08-10 17:19:56 -0700524
Mathias Agopian69608112011-05-19 15:38:14 -0700525 const uint32_t mask = eTransactionNeeded | eTraversalNeeded;
526 transactionFlags = getTransactionFlags(mask);
527 handleTransactionLocked(transactionFlags);
Mathias Agopian6dcb1552011-05-03 17:04:02 -0700528
Mathias Agopian69608112011-05-19 15:38:14 -0700529 mLastTransactionTime = systemTime() - now;
530 mDebugInTransaction = 0;
531 invalidateHwcGeometry();
532 // here the transaction has been committed
Mathias Agopian2d5ee252009-06-04 18:46:21 -0700533}
534
Mathias Agopian69608112011-05-19 15:38:14 -0700535void SurfaceFlinger::handleTransactionLocked(uint32_t transactionFlags)
Mathias Agopian2d5ee252009-06-04 18:46:21 -0700536{
537 const LayerVector& currentLayers(mCurrentState.layersSortedByZ);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800538 const size_t count = currentLayers.size();
539
540 /*
541 * Traversal of the children
542 * (perform the transaction for each of them if needed)
543 */
544
545 const bool layersNeedTransaction = transactionFlags & eTraversalNeeded;
546 if (layersNeedTransaction) {
547 for (size_t i=0 ; i<count ; i++) {
Mathias Agopian1473f462009-04-10 14:24:30 -0700548 const sp<LayerBase>& layer = currentLayers[i];
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800549 uint32_t trFlags = layer->getTransactionFlags(eTransactionNeeded);
550 if (!trFlags) continue;
551
552 const uint32_t flags = layer->doTransaction(0);
553 if (flags & Layer::eVisibleRegion)
554 mVisibleRegionsDirty = true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800555 }
556 }
557
558 /*
559 * Perform our own transaction if needed
560 */
561
562 if (transactionFlags & eTransactionNeeded) {
563 if (mCurrentState.orientation != mDrawingState.orientation) {
564 // the orientation has changed, recompute all visible regions
565 // and invalidate everything.
566
567 const int dpy = 0;
568 const int orientation = mCurrentState.orientation;
Mathias Agopianeb0c86e2009-03-27 18:11:38 -0700569 const uint32_t type = mCurrentState.orientationType;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800570 GraphicPlane& plane(graphicPlane(dpy));
571 plane.setOrientation(orientation);
572
573 // update the shared control block
574 const DisplayHardware& hw(plane.displayHardware());
575 volatile display_cblk_t* dcblk = mServerCblk->displays + dpy;
576 dcblk->orientation = orientation;
Mathias Agopian66c77a52010-02-08 15:49:35 -0800577 dcblk->w = plane.getWidth();
578 dcblk->h = plane.getHeight();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800579
580 mVisibleRegionsDirty = true;
581 mDirtyRegion.set(hw.bounds());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800582 }
583
584 if (mCurrentState.freezeDisplay != mDrawingState.freezeDisplay) {
585 // freezing or unfreezing the display -> trigger animation if needed
586 mFreezeDisplay = mCurrentState.freezeDisplay;
Mathias Agopian31901cc2010-03-01 17:51:17 -0800587 if (mFreezeDisplay)
588 mFreezeDisplayTime = 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800589 }
590
Mathias Agopiana3aa6c92009-04-22 15:23:34 -0700591 if (currentLayers.size() > mDrawingState.layersSortedByZ.size()) {
592 // layers have been added
593 mVisibleRegionsDirty = true;
594 }
595
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800596 // some layers might have been removed, so
597 // we need to update the regions they're exposing.
Mathias Agopian1473f462009-04-10 14:24:30 -0700598 if (mLayersRemoved) {
Mathias Agopian248b5bd2009-09-10 19:41:18 -0700599 mLayersRemoved = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800600 mVisibleRegionsDirty = true;
Mathias Agopiana3aa6c92009-04-22 15:23:34 -0700601 const LayerVector& previousLayers(mDrawingState.layersSortedByZ);
Mathias Agopian2d5ee252009-06-04 18:46:21 -0700602 const size_t count = previousLayers.size();
603 for (size_t i=0 ; i<count ; i++) {
Mathias Agopiana3aa6c92009-04-22 15:23:34 -0700604 const sp<LayerBase>& layer(previousLayers[i]);
605 if (currentLayers.indexOf( layer ) < 0) {
606 // this layer is not visible anymore
Mathias Agopian33863dd2009-07-28 14:20:21 -0700607 mDirtyRegionRemovedLayer.orSelf(layer->visibleRegionScreen);
Mathias Agopiana3aa6c92009-04-22 15:23:34 -0700608 }
609 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800610 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800611 }
612
613 commitTransaction();
614}
615
616sp<FreezeLock> SurfaceFlinger::getFreezeLock() const
617{
618 return new FreezeLock(const_cast<SurfaceFlinger *>(this));
619}
620
621void SurfaceFlinger::computeVisibleRegions(
Mathias Agopianf0ff9062011-03-11 16:54:47 -0800622 const LayerVector& currentLayers, Region& dirtyRegion, Region& opaqueRegion)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800623{
624 const GraphicPlane& plane(graphicPlane(0));
625 const Transform& planeTransform(plane.transform());
Mathias Agopian9c041bb2010-03-16 16:41:46 -0700626 const DisplayHardware& hw(plane.displayHardware());
627 const Region screenRegion(hw.bounds());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800628
629 Region aboveOpaqueLayers;
630 Region aboveCoveredLayers;
631 Region dirty;
632
633 bool secureFrameBuffer = false;
634
635 size_t i = currentLayers.size();
636 while (i--) {
Mathias Agopian1473f462009-04-10 14:24:30 -0700637 const sp<LayerBase>& layer = currentLayers[i];
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800638 layer->validateVisibility(planeTransform);
639
640 // start with the whole surface at its current location
Mathias Agopian12cedff2009-07-28 10:57:27 -0700641 const Layer::State& s(layer->drawingState());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800642
Mathias Agopian9c041bb2010-03-16 16:41:46 -0700643 /*
644 * opaqueRegion: area of a surface that is fully opaque.
645 */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800646 Region opaqueRegion;
Mathias Agopian9c041bb2010-03-16 16:41:46 -0700647
648 /*
649 * visibleRegion: area of a surface that is visible on screen
650 * and not fully transparent. This is essentially the layer's
651 * footprint minus the opaque regions above it.
652 * Areas covered by a translucent surface are considered visible.
653 */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800654 Region visibleRegion;
Mathias Agopian9c041bb2010-03-16 16:41:46 -0700655
656 /*
657 * coveredRegion: area of a surface that is covered by all
658 * visible regions above it (which includes the translucent areas).
659 */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800660 Region coveredRegion;
Mathias Agopian9c041bb2010-03-16 16:41:46 -0700661
662
663 // handle hidden surfaces by setting the visible region to empty
Mathias Agopian12cedff2009-07-28 10:57:27 -0700664 if (LIKELY(!(s.flags & ISurfaceComposer::eLayerHidden) && s.alpha)) {
Mathias Agopian7bb843c2011-04-20 14:20:59 -0700665 const bool translucent = !layer->isOpaque();
Mathias Agopian12cedff2009-07-28 10:57:27 -0700666 const Rect bounds(layer->visibleBounds());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800667 visibleRegion.set(bounds);
Mathias Agopian9c041bb2010-03-16 16:41:46 -0700668 visibleRegion.andSelf(screenRegion);
669 if (!visibleRegion.isEmpty()) {
670 // Remove the transparent area from the visible region
671 if (translucent) {
672 visibleRegion.subtractSelf(layer->transparentRegionScreen);
673 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800674
Mathias Agopian9c041bb2010-03-16 16:41:46 -0700675 // compute the opaque region
676 const int32_t layerOrientation = layer->getOrientation();
677 if (s.alpha==255 && !translucent &&
678 ((layerOrientation & Transform::ROT_INVALID) == false)) {
679 // the opaque region is the layer's footprint
680 opaqueRegion = visibleRegion;
681 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800682 }
683 }
684
Mathias Agopian9c041bb2010-03-16 16:41:46 -0700685 // Clip the covered region to the visible region
686 coveredRegion = aboveCoveredLayers.intersect(visibleRegion);
687
688 // Update aboveCoveredLayers for next (lower) layer
689 aboveCoveredLayers.orSelf(visibleRegion);
690
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800691 // subtract the opaque region covered by the layers above us
692 visibleRegion.subtractSelf(aboveOpaqueLayers);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800693
694 // compute this layer's dirty region
695 if (layer->contentDirty) {
696 // we need to invalidate the whole region
697 dirty = visibleRegion;
698 // as well, as the old visible region
699 dirty.orSelf(layer->visibleRegionScreen);
700 layer->contentDirty = false;
701 } else {
Mathias Agopian0aed7e92009-06-28 02:54:16 -0700702 /* compute the exposed region:
Mathias Agopian9c041bb2010-03-16 16:41:46 -0700703 * the exposed region consists of two components:
704 * 1) what's VISIBLE now and was COVERED before
705 * 2) what's EXPOSED now less what was EXPOSED before
706 *
707 * note that (1) is conservative, we start with the whole
708 * visible region but only keep what used to be covered by
709 * something -- which mean it may have been exposed.
710 *
711 * (2) handles areas that were not covered by anything but got
712 * exposed because of a resize.
Mathias Agopian0aed7e92009-06-28 02:54:16 -0700713 */
Mathias Agopian9c041bb2010-03-16 16:41:46 -0700714 const Region newExposed = visibleRegion - coveredRegion;
715 const Region oldVisibleRegion = layer->visibleRegionScreen;
716 const Region oldCoveredRegion = layer->coveredRegionScreen;
717 const Region oldExposed = oldVisibleRegion - oldCoveredRegion;
718 dirty = (visibleRegion&oldCoveredRegion) | (newExposed-oldExposed);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800719 }
720 dirty.subtractSelf(aboveOpaqueLayers);
721
722 // accumulate to the screen dirty region
723 dirtyRegion.orSelf(dirty);
724
Mathias Agopian9c041bb2010-03-16 16:41:46 -0700725 // Update aboveOpaqueLayers for next (lower) layer
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800726 aboveOpaqueLayers.orSelf(opaqueRegion);
Andreas Hubere3c01832010-08-16 08:49:37 -0700727
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800728 // Store the visible region is screen space
729 layer->setVisibleRegion(visibleRegion);
730 layer->setCoveredRegion(coveredRegion);
731
Mathias Agopian12cedff2009-07-28 10:57:27 -0700732 // If a secure layer is partially visible, lock-down the screen!
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800733 if (layer->isSecure() && !visibleRegion.isEmpty()) {
734 secureFrameBuffer = true;
735 }
736 }
737
Mathias Agopian12cedff2009-07-28 10:57:27 -0700738 // invalidate the areas where a layer was removed
739 dirtyRegion.orSelf(mDirtyRegionRemovedLayer);
740 mDirtyRegionRemovedLayer.clear();
741
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800742 mSecureFrameBuffer = secureFrameBuffer;
743 opaqueRegion = aboveOpaqueLayers;
744}
745
746
747void SurfaceFlinger::commitTransaction()
748{
749 mDrawingState = mCurrentState;
Mathias Agopian9779b222009-09-07 16:32:45 -0700750 mResizeTransationPending = false;
751 mTransactionCV.broadcast();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800752}
753
754void SurfaceFlinger::handlePageFlip()
755{
756 bool visibleRegions = mVisibleRegionsDirty;
Mathias Agopianf0ff9062011-03-11 16:54:47 -0800757 const LayerVector& currentLayers(mDrawingState.layersSortedByZ);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800758 visibleRegions |= lockPageFlip(currentLayers);
759
760 const DisplayHardware& hw = graphicPlane(0).displayHardware();
761 const Region screenRegion(hw.bounds());
762 if (visibleRegions) {
763 Region opaqueRegion;
764 computeVisibleRegions(currentLayers, mDirtyRegion, opaqueRegion);
Mathias Agopianff1d4102010-08-10 17:19:56 -0700765
766 /*
767 * rebuild the visible layer list
768 */
Mathias Agopianf0ff9062011-03-11 16:54:47 -0800769 const size_t count = currentLayers.size();
Mathias Agopianff1d4102010-08-10 17:19:56 -0700770 mVisibleLayersSortedByZ.clear();
Mathias Agopianff1d4102010-08-10 17:19:56 -0700771 mVisibleLayersSortedByZ.setCapacity(count);
772 for (size_t i=0 ; i<count ; i++) {
773 if (!currentLayers[i]->visibleRegionScreen.isEmpty())
774 mVisibleLayersSortedByZ.add(currentLayers[i]);
775 }
776
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800777 mWormholeRegion = screenRegion.subtract(opaqueRegion);
778 mVisibleRegionsDirty = false;
Mathias Agopianfb4dcb12011-01-13 17:53:01 -0800779 invalidateHwcGeometry();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800780 }
781
782 unlockPageFlip(currentLayers);
783 mDirtyRegion.andSelf(screenRegion);
784}
785
Mathias Agopianfb4dcb12011-01-13 17:53:01 -0800786void SurfaceFlinger::invalidateHwcGeometry()
787{
788 mHwWorkListDirty = true;
789}
790
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800791bool SurfaceFlinger::lockPageFlip(const LayerVector& currentLayers)
792{
793 bool recomputeVisibleRegions = false;
794 size_t count = currentLayers.size();
Mathias Agopian1473f462009-04-10 14:24:30 -0700795 sp<LayerBase> const* layers = currentLayers.array();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800796 for (size_t i=0 ; i<count ; i++) {
Mathias Agopian7623da42010-06-01 15:12:58 -0700797 const sp<LayerBase>& layer(layers[i]);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800798 layer->lockPageFlip(recomputeVisibleRegions);
799 }
800 return recomputeVisibleRegions;
801}
802
803void SurfaceFlinger::unlockPageFlip(const LayerVector& currentLayers)
804{
805 const GraphicPlane& plane(graphicPlane(0));
806 const Transform& planeTransform(plane.transform());
807 size_t count = currentLayers.size();
Mathias Agopian1473f462009-04-10 14:24:30 -0700808 sp<LayerBase> const* layers = currentLayers.array();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800809 for (size_t i=0 ; i<count ; i++) {
Mathias Agopian7623da42010-06-01 15:12:58 -0700810 const sp<LayerBase>& layer(layers[i]);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800811 layer->unlockPageFlip(planeTransform, mDirtyRegion);
812 }
813}
814
Mathias Agopiane0d5f5b2010-08-10 17:14:02 -0700815void SurfaceFlinger::handleWorkList()
816{
817 mHwWorkListDirty = false;
818 HWComposer& hwc(graphicPlane(0).displayHardware().getHwComposer());
819 if (hwc.initCheck() == NO_ERROR) {
820 const Vector< sp<LayerBase> >& currentLayers(mVisibleLayersSortedByZ);
821 const size_t count = currentLayers.size();
822 hwc.createWorkList(count);
Mathias Agopianf8e705d2010-08-12 15:03:26 -0700823 hwc_layer_t* const cur(hwc.getLayers());
824 for (size_t i=0 ; cur && i<count ; i++) {
825 currentLayers[i]->setGeometry(&cur[i]);
Mathias Agopian7f76a3c2011-08-22 21:44:41 -0700826 if (mDebugDisableHWC || mDebugRegion) {
Mathias Agopian6a969242010-09-22 18:58:01 -0700827 cur[i].compositionType = HWC_FRAMEBUFFER;
828 cur[i].flags |= HWC_SKIP_LAYER;
829 }
Mathias Agopiane0d5f5b2010-08-10 17:14:02 -0700830 }
831 }
832}
Mathias Agopian8c9687a2009-06-26 19:06:36 -0700833
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800834void SurfaceFlinger::handleRepaint()
835{
Mathias Agopian8c9687a2009-06-26 19:06:36 -0700836 // compute the invalid region
837 mInvalidRegion.orSelf(mDirtyRegion);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800838
839 if (UNLIKELY(mDebugRegion)) {
840 debugFlashRegions();
841 }
842
Mathias Agopian8c9687a2009-06-26 19:06:36 -0700843 // set the frame buffer
844 const DisplayHardware& hw(graphicPlane(0).displayHardware());
845 glMatrixMode(GL_MODELVIEW);
846 glLoadIdentity();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800847
848 uint32_t flags = hw.getFlags();
Andreas Hubere3c01832010-08-16 08:49:37 -0700849 if ((flags & DisplayHardware::SWAP_RECTANGLE) ||
850 (flags & DisplayHardware::BUFFER_PRESERVED))
Mathias Agopian2e20bff2009-05-04 19:29:25 -0700851 {
Mathias Agopianecfa7cc2009-06-29 18:49:56 -0700852 // we can redraw only what's dirty, but since SWAP_RECTANGLE only
853 // takes a rectangle, we must make sure to update that whole
854 // rectangle in that case
855 if (flags & DisplayHardware::SWAP_RECTANGLE) {
Mathias Agopian7623da42010-06-01 15:12:58 -0700856 // TODO: we really should be able to pass a region to
Mathias Agopianecfa7cc2009-06-29 18:49:56 -0700857 // SWAP_RECTANGLE so that we don't have to redraw all this.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800858 mDirtyRegion.set(mInvalidRegion.bounds());
859 } else {
Mathias Agopianecfa7cc2009-06-29 18:49:56 -0700860 // in the BUFFER_PRESERVED case, obviously, we can update only
861 // what's needed and nothing more.
862 // NOTE: this is NOT a common case, as preserving the backbuffer
863 // is costly and usually involves copying the whole update back.
864 }
865 } else {
Mathias Agopianf2d28b72009-09-24 14:57:26 -0700866 if (flags & DisplayHardware::PARTIAL_UPDATES) {
Mathias Agopianecfa7cc2009-06-29 18:49:56 -0700867 // We need to redraw the rectangle that will be updated
868 // (pushed to the framebuffer).
Mathias Agopianf2d28b72009-09-24 14:57:26 -0700869 // This is needed because PARTIAL_UPDATES only takes one
Mathias Agopianecfa7cc2009-06-29 18:49:56 -0700870 // rectangle instead of a region (see DisplayHardware::flip())
871 mDirtyRegion.set(mInvalidRegion.bounds());
872 } else {
873 // we need to redraw everything (the whole screen)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800874 mDirtyRegion.set(hw.bounds());
875 mInvalidRegion = mDirtyRegion;
876 }
877 }
878
879 // compose all surfaces
Mathias Agopian4bacc9d2011-09-08 18:31:55 -0700880 setupHardwareComposer(&mDirtyRegion);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800881 composeSurfaces(mDirtyRegion);
882
883 // clear the dirty regions
884 mDirtyRegion.clear();
885}
886
Mathias Agopian4bacc9d2011-09-08 18:31:55 -0700887void SurfaceFlinger::setupHardwareComposer(Region* dirtyInOut)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800888{
Mathias Agopiane0d5f5b2010-08-10 17:14:02 -0700889 const DisplayHardware& hw(graphicPlane(0).displayHardware());
890 HWComposer& hwc(hw.getHwComposer());
Mathias Agopianf8e705d2010-08-12 15:03:26 -0700891 hwc_layer_t* const cur(hwc.getLayers());
Mathias Agopian4bacc9d2011-09-08 18:31:55 -0700892 if (!cur) {
893 return;
894 }
Mathias Agopiane0d5f5b2010-08-10 17:14:02 -0700895
Mathias Agopian4bacc9d2011-09-08 18:31:55 -0700896 const Vector< sp<LayerBase> >& layers(mVisibleLayersSortedByZ);
897 size_t count = layers.size();
898
899 LOGE_IF(hwc.getNumLayers() != count,
Mathias Agopianf8e705d2010-08-12 15:03:26 -0700900 "HAL number of layers (%d) doesn't match surfaceflinger (%d)",
901 hwc.getNumLayers(), count);
902
903 // just to be extra-safe, use the smallest count
Erik Gilling0cf2f432010-08-12 23:21:40 -0700904 if (hwc.initCheck() == NO_ERROR) {
905 count = count < hwc.getNumLayers() ? count : hwc.getNumLayers();
906 }
Mathias Agopianf8e705d2010-08-12 15:03:26 -0700907
908 /*
909 * update the per-frame h/w composer data for each layer
910 * and build the transparent region of the FB
911 */
912 Region transparent;
Mathias Agopian4bacc9d2011-09-08 18:31:55 -0700913 for (size_t i=0 ; i<count ; i++) {
914 const sp<LayerBase>& layer(layers[i]);
915 layer->setPerFrameData(&cur[i]);
916 }
917 status_t err = hwc.prepare();
918 LOGE_IF(err, "HWComposer::prepare failed (%s)", strerror(-err));
Mathias Agopiane0d5f5b2010-08-10 17:14:02 -0700919
Mathias Agopian4bacc9d2011-09-08 18:31:55 -0700920 if (err == NO_ERROR) {
921 Region transparentDirty(*dirtyInOut);
922 for (size_t i=0 ; i<count ; i++) {
923 // Calculate the new transparent region and dirty region
924 // - the transparent region needs to always include the layers
925 // that moved from FB to OVERLAY, regardless of the dirty region
926 // - the dirty region needs to be expanded to include layers
927 // that moved from OVERLAY to FB.
928
929 const sp<LayerBase>& layer(layers[i]);
930 if ((cur[i].hints & HWC_HINT_CLEAR_FB) && layer->isOpaque()) {
931 transparent.orSelf(layer->visibleRegionScreen);
Mathias Agopian45491692011-01-19 15:24:23 -0800932 }
933
Mathias Agopian4bacc9d2011-09-08 18:31:55 -0700934 bool isOverlay = (cur[i].compositionType != HWC_FRAMEBUFFER) &&
935 !(cur[i].flags & HWC_SKIP_LAYER);
936
937 if (!isOverlay && layer->isOverlay()) {
938 dirtyInOut->orSelf(layer->visibleRegionScreen);
939 }
940
941 if (isOverlay && !layer->isOverlay()) {
942 transparentDirty.orSelf(layer->visibleRegionScreen);
943 }
944
945 layer->setOverlay(isOverlay);
946 }
947
948 /*
949 * clear the area of the FB that need to be transparent
950 */
951 transparent.andSelf(transparentDirty);
952 if (!transparent.isEmpty()) {
953 glClearColor(0,0,0,0);
954 Region::const_iterator it = transparent.begin();
955 Region::const_iterator const end = transparent.end();
956 const int32_t height = hw.getHeight();
957 while (it != end) {
958 const Rect& r(*it++);
959 const GLint sy = height - (r.top + r.height());
960 glScissor(r.left, sy, r.width(), r.height());
961 glClear(GL_COLOR_BUFFER_BIT);
Mathias Agopian45491692011-01-19 15:24:23 -0800962 }
Mathias Agopiane0d5f5b2010-08-10 17:14:02 -0700963 }
964 }
Mathias Agopian4bacc9d2011-09-08 18:31:55 -0700965}
Mathias Agopianf8e705d2010-08-12 15:03:26 -0700966
Mathias Agopian4bacc9d2011-09-08 18:31:55 -0700967void SurfaceFlinger::composeSurfaces(const Region& dirty)
968{
969 if (UNLIKELY(!mWormholeRegion.isEmpty())) {
970 // should never happen unless the window manager has a bug
971 // draw something...
972 drawWormhole();
973 }
974
975 const DisplayHardware& hw(graphicPlane(0).displayHardware());
976 HWComposer& hwc(hw.getHwComposer());
977 hwc_layer_t* const cur(hwc.getLayers());
Mathias Agopianf8e705d2010-08-12 15:03:26 -0700978
979 /*
980 * and then, render the layers targeted at the framebuffer
981 */
Mathias Agopian4bacc9d2011-09-08 18:31:55 -0700982 const Vector< sp<LayerBase> >& layers(mVisibleLayersSortedByZ);
983 size_t count = layers.size();
Mathias Agopianf8e705d2010-08-12 15:03:26 -0700984 for (size_t i=0 ; i<count ; i++) {
Mathias Agopian4bacc9d2011-09-08 18:31:55 -0700985 if (cur && (cur[i].compositionType != HWC_FRAMEBUFFER) &&
Antti Hatala982f58b2010-09-09 02:32:30 -0700986 !(cur[i].flags & HWC_SKIP_LAYER)) {
Mathias Agopian4bacc9d2011-09-08 18:31:55 -0700987 continue;
Mathias Agopianf8e705d2010-08-12 15:03:26 -0700988 }
989 const sp<LayerBase>& layer(layers[i]);
990 const Region clip(dirty.intersect(layer->visibleRegionScreen));
991 if (!clip.isEmpty()) {
992 layer->draw(clip);
993 }
994 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800995}
996
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800997void SurfaceFlinger::debugFlashRegions()
998{
Mathias Agopianf8b4b442010-06-14 21:20:00 -0700999 const DisplayHardware& hw(graphicPlane(0).displayHardware());
1000 const uint32_t flags = hw.getFlags();
Mathias Agopian7f76a3c2011-08-22 21:44:41 -07001001 const int32_t height = hw.getHeight();
1002 if (mInvalidRegion.isEmpty()) {
1003 return;
1004 }
Mathias Agopian2e20bff2009-05-04 19:29:25 -07001005
Mathias Agopianf8b4b442010-06-14 21:20:00 -07001006 if (!((flags & DisplayHardware::SWAP_RECTANGLE) ||
1007 (flags & DisplayHardware::BUFFER_PRESERVED))) {
1008 const Region repaint((flags & DisplayHardware::PARTIAL_UPDATES) ?
1009 mDirtyRegion.bounds() : hw.bounds());
1010 composeSurfaces(repaint);
1011 }
1012
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001013 glDisable(GL_BLEND);
1014 glDisable(GL_DITHER);
1015 glDisable(GL_SCISSOR_TEST);
1016
Mathias Agopiandff8e582009-05-04 14:17:04 -07001017 static int toggle = 0;
1018 toggle = 1 - toggle;
1019 if (toggle) {
Mathias Agopianf8b4b442010-06-14 21:20:00 -07001020 glColor4f(1, 0, 1, 1);
Mathias Agopiandff8e582009-05-04 14:17:04 -07001021 } else {
Mathias Agopianf8b4b442010-06-14 21:20:00 -07001022 glColor4f(1, 1, 0, 1);
Mathias Agopiandff8e582009-05-04 14:17:04 -07001023 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001024
Mathias Agopian6158b1b2009-05-11 00:03:41 -07001025 Region::const_iterator it = mDirtyRegion.begin();
1026 Region::const_iterator const end = mDirtyRegion.end();
1027 while (it != end) {
1028 const Rect& r = *it++;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001029 GLfloat vertices[][2] = {
Mathias Agopian7f76a3c2011-08-22 21:44:41 -07001030 { r.left, height - r.top },
1031 { r.left, height - r.bottom },
1032 { r.right, height - r.bottom },
1033 { r.right, height - r.top }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001034 };
1035 glVertexPointer(2, GL_FLOAT, 0, vertices);
1036 glDrawArrays(GL_TRIANGLE_FAN, 0, 4);
1037 }
Mathias Agopianf8b4b442010-06-14 21:20:00 -07001038
Mathias Agopian8c9687a2009-06-26 19:06:36 -07001039 hw.flip(mInvalidRegion);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001040
1041 if (mDebugRegion > 1)
Mathias Agopianf8b4b442010-06-14 21:20:00 -07001042 usleep(mDebugRegion * 1000);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001043
1044 glEnable(GL_SCISSOR_TEST);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001045}
1046
1047void SurfaceFlinger::drawWormhole() const
1048{
1049 const Region region(mWormholeRegion.intersect(mDirtyRegion));
1050 if (region.isEmpty())
1051 return;
1052
1053 const DisplayHardware& hw(graphicPlane(0).displayHardware());
1054 const int32_t width = hw.getWidth();
1055 const int32_t height = hw.getHeight();
1056
1057 glDisable(GL_BLEND);
1058 glDisable(GL_DITHER);
1059
1060 if (LIKELY(!mDebugBackground)) {
Mathias Agopianf8b4b442010-06-14 21:20:00 -07001061 glClearColor(0,0,0,0);
Mathias Agopian6158b1b2009-05-11 00:03:41 -07001062 Region::const_iterator it = region.begin();
1063 Region::const_iterator const end = region.end();
1064 while (it != end) {
1065 const Rect& r = *it++;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001066 const GLint sy = height - (r.top + r.height());
1067 glScissor(r.left, sy, r.width(), r.height());
1068 glClear(GL_COLOR_BUFFER_BIT);
1069 }
1070 } else {
1071 const GLshort vertices[][2] = { { 0, 0 }, { width, 0 },
1072 { width, height }, { 0, height } };
1073 const GLshort tcoords[][2] = { { 0, 0 }, { 1, 0 }, { 1, 1 }, { 0, 1 } };
1074 glVertexPointer(2, GL_SHORT, 0, vertices);
1075 glTexCoordPointer(2, GL_SHORT, 0, tcoords);
1076 glEnableClientState(GL_TEXTURE_COORD_ARRAY);
Michael I. Golde20a56d2010-09-15 15:46:24 -07001077#if defined(GL_OES_EGL_image_external)
Mathias Agopian781953d2010-06-25 18:02:21 -07001078 if (GLExtensions::getInstance().haveTextureExternal()) {
1079 glDisable(GL_TEXTURE_EXTERNAL_OES);
1080 }
Mathias Agopianf8b4b442010-06-14 21:20:00 -07001081#endif
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001082 glEnable(GL_TEXTURE_2D);
1083 glBindTexture(GL_TEXTURE_2D, mWormholeTexName);
1084 glTexEnvx(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE);
1085 glMatrixMode(GL_TEXTURE);
1086 glLoadIdentity();
1087 glScalef(width*(1.0f/32.0f), height*(1.0f/32.0f), 1);
Mathias Agopian6158b1b2009-05-11 00:03:41 -07001088 Region::const_iterator it = region.begin();
1089 Region::const_iterator const end = region.end();
1090 while (it != end) {
1091 const Rect& r = *it++;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001092 const GLint sy = height - (r.top + r.height());
1093 glScissor(r.left, sy, r.width(), r.height());
1094 glDrawArrays(GL_TRIANGLE_FAN, 0, 4);
1095 }
1096 glDisableClientState(GL_TEXTURE_COORD_ARRAY);
Mathias Agopian7bb843c2011-04-20 14:20:59 -07001097 glDisable(GL_TEXTURE_2D);
Mathias Agopian04a709e42010-12-14 18:38:36 -08001098 glLoadIdentity();
1099 glMatrixMode(GL_MODELVIEW);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001100 }
1101}
1102
1103void SurfaceFlinger::debugShowFPS() const
1104{
1105 static int mFrameCount;
1106 static int mLastFrameCount = 0;
1107 static nsecs_t mLastFpsTime = 0;
1108 static float mFps = 0;
1109 mFrameCount++;
1110 nsecs_t now = systemTime();
1111 nsecs_t diff = now - mLastFpsTime;
1112 if (diff > ms2ns(250)) {
1113 mFps = ((mFrameCount - mLastFrameCount) * float(s2ns(1))) / diff;
1114 mLastFpsTime = now;
1115 mLastFrameCount = mFrameCount;
1116 }
1117 // XXX: mFPS has the value we want
1118 }
1119
Mathias Agopian1473f462009-04-10 14:24:30 -07001120status_t SurfaceFlinger::addLayer(const sp<LayerBase>& layer)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001121{
1122 Mutex::Autolock _l(mStateLock);
1123 addLayer_l(layer);
1124 setTransactionFlags(eTransactionNeeded|eTraversalNeeded);
1125 return NO_ERROR;
1126}
1127
Mathias Agopian593c05c2010-06-02 23:28:45 -07001128status_t SurfaceFlinger::addLayer_l(const sp<LayerBase>& layer)
1129{
Mathias Agopian1efba9a2010-08-10 18:09:09 -07001130 ssize_t i = mCurrentState.layersSortedByZ.add(layer);
Mathias Agopian593c05c2010-06-02 23:28:45 -07001131 return (i < 0) ? status_t(i) : status_t(NO_ERROR);
1132}
1133
1134ssize_t SurfaceFlinger::addClientLayer(const sp<Client>& client,
1135 const sp<LayerBaseClient>& lbc)
1136{
Mathias Agopian593c05c2010-06-02 23:28:45 -07001137 // attach this layer to the client
Mathias Agopian5fa7ad62011-05-03 16:21:41 -07001138 size_t name = client->attachLayer(lbc);
1139
1140 Mutex::Autolock _l(mStateLock);
Mathias Agopian593c05c2010-06-02 23:28:45 -07001141
1142 // add this layer to the current state list
1143 addLayer_l(lbc);
1144
Mathias Agopian5fa7ad62011-05-03 16:21:41 -07001145 return ssize_t(name);
Mathias Agopian593c05c2010-06-02 23:28:45 -07001146}
1147
Mathias Agopian1473f462009-04-10 14:24:30 -07001148status_t SurfaceFlinger::removeLayer(const sp<LayerBase>& layer)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001149{
1150 Mutex::Autolock _l(mStateLock);
Mathias Agopian2d5ee252009-06-04 18:46:21 -07001151 status_t err = purgatorizeLayer_l(layer);
1152 if (err == NO_ERROR)
1153 setTransactionFlags(eTransactionNeeded);
1154 return err;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001155}
1156
Mathias Agopian1473f462009-04-10 14:24:30 -07001157status_t SurfaceFlinger::removeLayer_l(const sp<LayerBase>& layerBase)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001158{
Mathias Agopian7623da42010-06-01 15:12:58 -07001159 sp<LayerBaseClient> lbc(layerBase->getLayerBaseClient());
1160 if (lbc != 0) {
Mathias Agopiand35c6662011-01-25 20:17:45 -08001161 mLayerMap.removeItem( lbc->getSurfaceBinder() );
Mathias Agopian7623da42010-06-01 15:12:58 -07001162 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001163 ssize_t index = mCurrentState.layersSortedByZ.remove(layerBase);
1164 if (index >= 0) {
Mathias Agopian1473f462009-04-10 14:24:30 -07001165 mLayersRemoved = true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001166 return NO_ERROR;
1167 }
Mathias Agopian2d5ee252009-06-04 18:46:21 -07001168 return status_t(index);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001169}
1170
Mathias Agopian6cf0db22009-04-17 19:36:26 -07001171status_t SurfaceFlinger::purgatorizeLayer_l(const sp<LayerBase>& layerBase)
1172{
Mathias Agopianf4dfe1b2011-01-14 17:37:42 -08001173 // First add the layer to the purgatory list, which makes sure it won't
1174 // go away, then remove it from the main list (through a transaction).
Mathias Agopian6cf0db22009-04-17 19:36:26 -07001175 ssize_t err = removeLayer_l(layerBase);
Mathias Agopianf4dfe1b2011-01-14 17:37:42 -08001176 if (err >= 0) {
1177 mLayerPurgatory.add(layerBase);
1178 }
Mathias Agopian2e4b68d2009-09-23 16:44:00 -07001179
Mathias Agopian0c4cec72009-10-02 18:12:30 -07001180 layerBase->onRemoved();
1181
Mathias Agopian2d5ee252009-06-04 18:46:21 -07001182 // it's possible that we don't find a layer, because it might
1183 // have been destroyed already -- this is not technically an error
Mathias Agopian593c05c2010-06-02 23:28:45 -07001184 // from the user because there is a race between Client::destroySurface(),
1185 // ~Client() and ~ISurface().
Mathias Agopian6cf0db22009-04-17 19:36:26 -07001186 return (err == NAME_NOT_FOUND) ? status_t(NO_ERROR) : err;
1187}
1188
Mathias Agopian593c05c2010-06-02 23:28:45 -07001189status_t SurfaceFlinger::invalidateLayerVisibility(const sp<LayerBase>& layer)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001190{
Mathias Agopian593c05c2010-06-02 23:28:45 -07001191 layer->forceVisibilityTransaction();
1192 setTransactionFlags(eTraversalNeeded);
1193 return NO_ERROR;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001194}
1195
Mathias Agopian6dcb1552011-05-03 17:04:02 -07001196uint32_t SurfaceFlinger::peekTransactionFlags(uint32_t flags)
1197{
1198 return android_atomic_release_load(&mTransactionFlags);
1199}
1200
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001201uint32_t SurfaceFlinger::getTransactionFlags(uint32_t flags)
1202{
1203 return android_atomic_and(~flags, &mTransactionFlags) & flags;
1204}
1205
Mathias Agopian898c4c92010-05-18 17:06:55 -07001206uint32_t SurfaceFlinger::setTransactionFlags(uint32_t flags)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001207{
1208 uint32_t old = android_atomic_or(flags, &mTransactionFlags);
1209 if ((old & flags)==0) { // wake the server up
Mathias Agopian898c4c92010-05-18 17:06:55 -07001210 signalEvent();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001211 }
1212 return old;
1213}
1214
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001215
Mathias Agopian439863f2011-06-28 19:09:31 -07001216void SurfaceFlinger::setTransactionState(const Vector<ComposerState>& state) {
1217 Mutex::Autolock _l(mStateLock);
Mathias Agopian9779b222009-09-07 16:32:45 -07001218
Mathias Agopian439863f2011-06-28 19:09:31 -07001219 uint32_t flags = 0;
1220 const size_t count = state.size();
1221 for (size_t i=0 ; i<count ; i++) {
1222 const ComposerState& s(state[i]);
1223 sp<Client> client( static_cast<Client *>(s.client.get()) );
1224 flags |= setClientStateLocked(client, s.state);
1225 }
1226 if (flags) {
1227 setTransactionFlags(flags);
1228 }
1229
1230 signalEvent();
1231
1232 // if there is a transaction with a resize, wait for it to
1233 // take effect before returning.
1234 while (mResizeTransationPending) {
1235 status_t err = mTransactionCV.waitRelative(mStateLock, s2ns(5));
1236 if (CC_UNLIKELY(err != NO_ERROR)) {
1237 // just in case something goes wrong in SF, return to the
1238 // called after a few seconds.
1239 LOGW_IF(err == TIMED_OUT, "closeGlobalTransaction timed out!");
1240 mResizeTransationPending = false;
1241 break;
Mathias Agopian9779b222009-09-07 16:32:45 -07001242 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001243 }
1244}
1245
1246status_t SurfaceFlinger::freezeDisplay(DisplayID dpy, uint32_t flags)
1247{
1248 if (UNLIKELY(uint32_t(dpy) >= DISPLAY_COUNT))
1249 return BAD_VALUE;
1250
1251 Mutex::Autolock _l(mStateLock);
1252 mCurrentState.freezeDisplay = 1;
1253 setTransactionFlags(eTransactionNeeded);
1254
1255 // flags is intended to communicate some sort of animation behavior
Mathias Agopianed81f222009-04-14 23:02:51 -07001256 // (for instance fading)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001257 return NO_ERROR;
1258}
1259
1260status_t SurfaceFlinger::unfreezeDisplay(DisplayID dpy, uint32_t flags)
1261{
1262 if (UNLIKELY(uint32_t(dpy) >= DISPLAY_COUNT))
1263 return BAD_VALUE;
1264
1265 Mutex::Autolock _l(mStateLock);
1266 mCurrentState.freezeDisplay = 0;
1267 setTransactionFlags(eTransactionNeeded);
1268
1269 // flags is intended to communicate some sort of animation behavior
Mathias Agopianed81f222009-04-14 23:02:51 -07001270 // (for instance fading)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001271 return NO_ERROR;
1272}
1273
Andreas Hubere3c01832010-08-16 08:49:37 -07001274int SurfaceFlinger::setOrientation(DisplayID dpy,
Mathias Agopianeb0c86e2009-03-27 18:11:38 -07001275 int orientation, uint32_t flags)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001276{
1277 if (UNLIKELY(uint32_t(dpy) >= DISPLAY_COUNT))
1278 return BAD_VALUE;
1279
1280 Mutex::Autolock _l(mStateLock);
1281 if (mCurrentState.orientation != orientation) {
1282 if (uint32_t(orientation)<=eOrientation270 || orientation==42) {
Mathias Agopianeb0c86e2009-03-27 18:11:38 -07001283 mCurrentState.orientationType = flags;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001284 mCurrentState.orientation = orientation;
1285 setTransactionFlags(eTransactionNeeded);
1286 mTransactionCV.wait(mStateLock);
1287 } else {
1288 orientation = BAD_VALUE;
1289 }
1290 }
1291 return orientation;
1292}
1293
Mathias Agopian9638e5c2011-04-20 14:19:32 -07001294sp<ISurface> SurfaceFlinger::createSurface(
1295 ISurfaceComposerClient::surface_data_t* params,
1296 const String8& name,
1297 const sp<Client>& client,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001298 DisplayID d, uint32_t w, uint32_t h, PixelFormat format,
1299 uint32_t flags)
1300{
Mathias Agopian1473f462009-04-10 14:24:30 -07001301 sp<LayerBaseClient> layer;
Mathias Agopian7bb843c2011-04-20 14:20:59 -07001302 sp<ISurface> surfaceHandle;
Mathias Agopian4d2dbeb2009-07-09 18:16:43 -07001303
1304 if (int32_t(w|h) < 0) {
1305 LOGE("createSurface() failed, w or h is negative (w=%d, h=%d)",
1306 int(w), int(h));
1307 return surfaceHandle;
1308 }
Andreas Hubere3c01832010-08-16 08:49:37 -07001309
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001310 //LOGD("createSurface for pid %d (%d x %d)", pid, w, h);
Mathias Agopian7623da42010-06-01 15:12:58 -07001311 sp<Layer> normalLayer;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001312 switch (flags & eFXSurfaceMask) {
1313 case eFXSurfaceNormal:
Mathias Agopiand2112302010-12-07 19:38:17 -08001314 normalLayer = createNormalSurface(client, d, w, h, flags, format);
1315 layer = normalLayer;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001316 break;
1317 case eFXSurfaceBlur:
Mathias Agopianc3802d22010-12-08 17:13:19 -08001318 // for now we treat Blur as Dim, until we can implement it
1319 // efficiently.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001320 case eFXSurfaceDim:
Mathias Agopian593c05c2010-06-02 23:28:45 -07001321 layer = createDimSurface(client, d, w, h, flags);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001322 break;
1323 }
1324
Mathias Agopian1473f462009-04-10 14:24:30 -07001325 if (layer != 0) {
Mathias Agopian593c05c2010-06-02 23:28:45 -07001326 layer->initStates(w, h, flags);
Mathias Agopian5d26c1e2010-03-01 16:09:43 -08001327 layer->setName(name);
Mathias Agopian593c05c2010-06-02 23:28:45 -07001328 ssize_t token = addClientLayer(client, layer);
Mathias Agopian7623da42010-06-01 15:12:58 -07001329
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001330 surfaceHandle = layer->getSurface();
Andreas Hubere3c01832010-08-16 08:49:37 -07001331 if (surfaceHandle != 0) {
Mathias Agopian593c05c2010-06-02 23:28:45 -07001332 params->token = token;
Mathias Agopian7bb843c2011-04-20 14:20:59 -07001333 params->identity = layer->getIdentity();
Mathias Agopian7623da42010-06-01 15:12:58 -07001334 if (normalLayer != 0) {
1335 Mutex::Autolock _l(mStateLock);
Mathias Agopian7bb843c2011-04-20 14:20:59 -07001336 mLayerMap.add(layer->getSurfaceBinder(), normalLayer);
Mathias Agopian7623da42010-06-01 15:12:58 -07001337 }
Mathias Agopian18b6b492009-08-19 17:46:26 -07001338 }
Mathias Agopian7623da42010-06-01 15:12:58 -07001339
Mathias Agopian593c05c2010-06-02 23:28:45 -07001340 setTransactionFlags(eTransactionNeeded);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001341 }
1342
1343 return surfaceHandle;
1344}
1345
Mathias Agopian7623da42010-06-01 15:12:58 -07001346sp<Layer> SurfaceFlinger::createNormalSurface(
Mathias Agopian6edf5af2009-06-19 17:00:27 -07001347 const sp<Client>& client, DisplayID display,
Mathias Agopian593c05c2010-06-02 23:28:45 -07001348 uint32_t w, uint32_t h, uint32_t flags,
Mathias Agopian18b6b492009-08-19 17:46:26 -07001349 PixelFormat& format)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001350{
1351 // initialize the surfaces
1352 switch (format) { // TODO: take h/w into account
1353 case PIXEL_FORMAT_TRANSPARENT:
1354 case PIXEL_FORMAT_TRANSLUCENT:
1355 format = PIXEL_FORMAT_RGBA_8888;
1356 break;
1357 case PIXEL_FORMAT_OPAQUE:
Mathias Agopian4cfb3a62010-06-30 15:43:47 -07001358#ifdef NO_RGBX_8888
1359 format = PIXEL_FORMAT_RGB_565;
1360#else
Mathias Agopian59962ce2010-04-05 18:01:24 -07001361 format = PIXEL_FORMAT_RGBX_8888;
Mathias Agopian4cfb3a62010-06-30 15:43:47 -07001362#endif
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001363 break;
1364 }
1365
Mathias Agopian4cfb3a62010-06-30 15:43:47 -07001366#ifdef NO_RGBX_8888
1367 if (format == PIXEL_FORMAT_RGBX_8888)
1368 format = PIXEL_FORMAT_RGBA_8888;
1369#endif
1370
Mathias Agopian593c05c2010-06-02 23:28:45 -07001371 sp<Layer> layer = new Layer(this, display, client);
Mathias Agopian6edf5af2009-06-19 17:00:27 -07001372 status_t err = layer->setBuffers(w, h, format, flags);
Mathias Agopian593c05c2010-06-02 23:28:45 -07001373 if (LIKELY(err != NO_ERROR)) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001374 LOGE("createNormalSurfaceLocked() failed (%s)", strerror(-err));
Mathias Agopian1473f462009-04-10 14:24:30 -07001375 layer.clear();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001376 }
1377 return layer;
1378}
1379
Mathias Agopian7623da42010-06-01 15:12:58 -07001380sp<LayerDim> SurfaceFlinger::createDimSurface(
Mathias Agopian6edf5af2009-06-19 17:00:27 -07001381 const sp<Client>& client, DisplayID display,
Mathias Agopian593c05c2010-06-02 23:28:45 -07001382 uint32_t w, uint32_t h, uint32_t flags)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001383{
Mathias Agopian593c05c2010-06-02 23:28:45 -07001384 sp<LayerDim> layer = new LayerDim(this, display, client);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001385 layer->initStates(w, h, flags);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001386 return layer;
1387}
1388
Mathias Agopian593c05c2010-06-02 23:28:45 -07001389status_t SurfaceFlinger::removeSurface(const sp<Client>& client, SurfaceID sid)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001390{
Mathias Agopian6cf0db22009-04-17 19:36:26 -07001391 /*
1392 * called by the window manager, when a surface should be marked for
1393 * destruction.
Andreas Hubere3c01832010-08-16 08:49:37 -07001394 *
Mathias Agopiana3aa6c92009-04-22 15:23:34 -07001395 * The surface is removed from the current and drawing lists, but placed
1396 * in the purgatory queue, so it's not destroyed right-away (we need
1397 * to wait for all client's references to go away first).
Mathias Agopian6cf0db22009-04-17 19:36:26 -07001398 */
Mathias Agopian6cf0db22009-04-17 19:36:26 -07001399
Mathias Agopian248b5bd2009-09-10 19:41:18 -07001400 status_t err = NAME_NOT_FOUND;
Mathias Agopiana3aa6c92009-04-22 15:23:34 -07001401 Mutex::Autolock _l(mStateLock);
Mathias Agopian593c05c2010-06-02 23:28:45 -07001402 sp<LayerBaseClient> layer = client->getLayerUser(sid);
Mathias Agopian248b5bd2009-09-10 19:41:18 -07001403 if (layer != 0) {
1404 err = purgatorizeLayer_l(layer);
1405 if (err == NO_ERROR) {
Mathias Agopian248b5bd2009-09-10 19:41:18 -07001406 setTransactionFlags(eTransactionNeeded);
1407 }
Mathias Agopian6cf0db22009-04-17 19:36:26 -07001408 }
1409 return err;
1410}
1411
Mathias Agopian69608112011-05-19 15:38:14 -07001412status_t SurfaceFlinger::destroySurface(const wp<LayerBaseClient>& layer)
Mathias Agopian6cf0db22009-04-17 19:36:26 -07001413{
Mathias Agopian359140c2009-07-02 17:33:40 -07001414 // called by ~ISurface() when all references are gone
Mathias Agopian69608112011-05-19 15:38:14 -07001415 status_t err = NO_ERROR;
1416 sp<LayerBaseClient> l(layer.promote());
1417 if (l != NULL) {
1418 Mutex::Autolock _l(mStateLock);
1419 err = removeLayer_l(l);
1420 if (err == NAME_NOT_FOUND) {
1421 // The surface wasn't in the current list, which means it was
1422 // removed already, which means it is in the purgatory,
1423 // and need to be removed from there.
1424 ssize_t idx = mLayerPurgatory.remove(l);
1425 LOGE_IF(idx < 0,
1426 "layer=%p is not in the purgatory list", l.get());
Mathias Agopian6ead5d92009-04-20 19:39:12 -07001427 }
Mathias Agopian69608112011-05-19 15:38:14 -07001428 LOGE_IF(err<0 && err != NAME_NOT_FOUND,
1429 "error removing layer=%p (%s)", l.get(), strerror(-err));
1430 }
1431 return err;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001432}
1433
Mathias Agopian439863f2011-06-28 19:09:31 -07001434uint32_t SurfaceFlinger::setClientStateLocked(
Mathias Agopian593c05c2010-06-02 23:28:45 -07001435 const sp<Client>& client,
Mathias Agopian439863f2011-06-28 19:09:31 -07001436 const layer_state_t& s)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001437{
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001438 uint32_t flags = 0;
Mathias Agopian439863f2011-06-28 19:09:31 -07001439 sp<LayerBaseClient> layer(client->getLayerUser(s.surface));
1440 if (layer != 0) {
1441 const uint32_t what = s.what;
1442 if (what & ePositionChanged) {
1443 if (layer->setPosition(s.x, s.y))
1444 flags |= eTraversalNeeded;
1445 }
1446 if (what & eLayerChanged) {
1447 ssize_t idx = mCurrentState.layersSortedByZ.indexOf(layer);
1448 if (layer->setLayer(s.z)) {
1449 mCurrentState.layersSortedByZ.removeAt(idx);
1450 mCurrentState.layersSortedByZ.add(layer);
1451 // we need traversal (state changed)
1452 // AND transaction (list changed)
1453 flags |= eTransactionNeeded|eTraversalNeeded;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001454 }
1455 }
Mathias Agopian439863f2011-06-28 19:09:31 -07001456 if (what & eSizeChanged) {
1457 if (layer->setSize(s.w, s.h)) {
1458 flags |= eTraversalNeeded;
1459 mResizeTransationPending = true;
1460 }
1461 }
1462 if (what & eAlphaChanged) {
1463 if (layer->setAlpha(uint8_t(255.0f*s.alpha+0.5f)))
1464 flags |= eTraversalNeeded;
1465 }
1466 if (what & eMatrixChanged) {
1467 if (layer->setMatrix(s.matrix))
1468 flags |= eTraversalNeeded;
1469 }
1470 if (what & eTransparentRegionChanged) {
1471 if (layer->setTransparentRegionHint(s.transparentRegion))
1472 flags |= eTraversalNeeded;
1473 }
1474 if (what & eVisibilityChanged) {
1475 if (layer->setFlags(s.flags, s.mask))
1476 flags |= eTraversalNeeded;
1477 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001478 }
Mathias Agopian439863f2011-06-28 19:09:31 -07001479 return flags;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001480}
1481
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001482void SurfaceFlinger::screenReleased(int dpy)
1483{
1484 // this may be called by a signal handler, we can't do too much in here
1485 android_atomic_or(eConsoleReleased, &mConsoleSignals);
1486 signalEvent();
1487}
1488
1489void SurfaceFlinger::screenAcquired(int dpy)
1490{
1491 // this may be called by a signal handler, we can't do too much in here
1492 android_atomic_or(eConsoleAcquired, &mConsoleSignals);
1493 signalEvent();
1494}
1495
1496status_t SurfaceFlinger::dump(int fd, const Vector<String16>& args)
1497{
Erik Gilling94720d72010-12-01 16:38:01 -08001498 const size_t SIZE = 4096;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001499 char buffer[SIZE];
1500 String8 result;
Mathias Agopian0dd593f2011-06-27 16:05:52 -07001501
1502 if (!PermissionCache::checkCallingPermission(sDump)) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001503 snprintf(buffer, SIZE, "Permission Denial: "
1504 "can't dump SurfaceFlinger from pid=%d, uid=%d\n",
1505 IPCThreadState::self()->getCallingPid(),
1506 IPCThreadState::self()->getCallingUid());
1507 result.append(buffer);
1508 } else {
Mathias Agopiana8d49172009-08-26 16:36:26 -07001509
1510 // figure out if we're stuck somewhere
1511 const nsecs_t now = systemTime();
1512 const nsecs_t inSwapBuffers(mDebugInSwapBuffers);
1513 const nsecs_t inTransaction(mDebugInTransaction);
1514 nsecs_t inSwapBuffersDuration = (inSwapBuffers) ? now-inSwapBuffers : 0;
1515 nsecs_t inTransactionDuration = (inTransaction) ? now-inTransaction : 0;
1516
1517 // Try to get the main lock, but don't insist if we can't
1518 // (this would indicate SF is stuck, but we want to be able to
1519 // print something in dumpsys).
1520 int retry = 3;
1521 while (mStateLock.tryLock()<0 && --retry>=0) {
1522 usleep(1000000);
1523 }
1524 const bool locked(retry >= 0);
1525 if (!locked) {
Andreas Hubere3c01832010-08-16 08:49:37 -07001526 snprintf(buffer, SIZE,
Mathias Agopiana8d49172009-08-26 16:36:26 -07001527 "SurfaceFlinger appears to be unresponsive, "
1528 "dumping anyways (no locks held)\n");
1529 result.append(buffer);
1530 }
1531
Mathias Agopian06a61e22011-01-19 16:15:53 -08001532 /*
1533 * Dump the visible layer list
1534 */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001535 const LayerVector& currentLayers = mCurrentState.layersSortedByZ;
1536 const size_t count = currentLayers.size();
Mathias Agopian06a61e22011-01-19 16:15:53 -08001537 snprintf(buffer, SIZE, "Visible layers (count = %d)\n", count);
1538 result.append(buffer);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001539 for (size_t i=0 ; i<count ; i++) {
Mathias Agopian9bce8732010-04-20 17:55:49 -07001540 const sp<LayerBase>& layer(currentLayers[i]);
1541 layer->dump(result, buffer, SIZE);
1542 const Layer::State& s(layer->drawingState());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001543 s.transparentRegion.dump(result, "transparentRegion");
1544 layer->transparentRegionScreen.dump(result, "transparentRegionScreen");
1545 layer->visibleRegionScreen.dump(result, "visibleRegionScreen");
1546 }
Mathias Agopian9bce8732010-04-20 17:55:49 -07001547
Mathias Agopian06a61e22011-01-19 16:15:53 -08001548 /*
1549 * Dump the layers in the purgatory
1550 */
1551
1552 const size_t purgatorySize = mLayerPurgatory.size();
1553 snprintf(buffer, SIZE, "Purgatory state (%d entries)\n", purgatorySize);
1554 result.append(buffer);
1555 for (size_t i=0 ; i<purgatorySize ; i++) {
1556 const sp<LayerBase>& layer(mLayerPurgatory.itemAt(i));
1557 layer->shortDump(result, buffer, SIZE);
1558 }
1559
1560 /*
1561 * Dump SurfaceFlinger global state
1562 */
1563
Mathias Agopianab951172011-07-14 18:01:49 -07001564 snprintf(buffer, SIZE, "SurfaceFlinger global state:\n");
Mathias Agopian06a61e22011-01-19 16:15:53 -08001565 result.append(buffer);
Mathias Agopianab951172011-07-14 18:01:49 -07001566
1567 const GLExtensions& extensions(GLExtensions::getInstance());
1568 snprintf(buffer, SIZE, "GLES: %s, %s, %s\n",
1569 extensions.getVendor(),
1570 extensions.getRenderer(),
1571 extensions.getVersion());
1572 result.append(buffer);
1573 snprintf(buffer, SIZE, "EXTS: %s\n", extensions.getExtension());
1574 result.append(buffer);
1575
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001576 mWormholeRegion.dump(result, "WormholeRegion");
1577 const DisplayHardware& hw(graphicPlane(0).displayHardware());
1578 snprintf(buffer, SIZE,
1579 " display frozen: %s, freezeCount=%d, orientation=%d, canDraw=%d\n",
1580 mFreezeDisplay?"yes":"no", mFreezeCount,
1581 mCurrentState.orientation, hw.canDraw());
1582 result.append(buffer);
Mathias Agopiana8d49172009-08-26 16:36:26 -07001583 snprintf(buffer, SIZE,
1584 " last eglSwapBuffers() time: %f us\n"
1585 " last transaction time : %f us\n",
1586 mLastSwapBufferTime/1000.0, mLastTransactionTime/1000.0);
1587 result.append(buffer);
Mathias Agopian9bce8732010-04-20 17:55:49 -07001588
Mathias Agopiana8d49172009-08-26 16:36:26 -07001589 if (inSwapBuffersDuration || !locked) {
1590 snprintf(buffer, SIZE, " eglSwapBuffers time: %f us\n",
1591 inSwapBuffersDuration/1000.0);
1592 result.append(buffer);
1593 }
Mathias Agopian9bce8732010-04-20 17:55:49 -07001594
Mathias Agopiana8d49172009-08-26 16:36:26 -07001595 if (inTransactionDuration || !locked) {
1596 snprintf(buffer, SIZE, " transaction time: %f us\n",
1597 inTransactionDuration/1000.0);
1598 result.append(buffer);
1599 }
Mathias Agopian9bce8732010-04-20 17:55:49 -07001600
Mathias Agopian06a61e22011-01-19 16:15:53 -08001601 /*
1602 * Dump HWComposer state
1603 */
Mathias Agopian6a969242010-09-22 18:58:01 -07001604 HWComposer& hwc(hw.getHwComposer());
1605 snprintf(buffer, SIZE, " h/w composer %s and %s\n",
1606 hwc.initCheck()==NO_ERROR ? "present" : "not present",
Mathias Agopian7f76a3c2011-08-22 21:44:41 -07001607 (mDebugDisableHWC || mDebugRegion) ? "disabled" : "enabled");
Mathias Agopian6a969242010-09-22 18:58:01 -07001608 result.append(buffer);
Mathias Agopian5bd1b272011-09-09 00:49:11 -07001609 hwc.dump(result, buffer, SIZE, mVisibleLayersSortedByZ);
Mathias Agopian6a969242010-09-22 18:58:01 -07001610
Mathias Agopian06a61e22011-01-19 16:15:53 -08001611 /*
1612 * Dump gralloc state
1613 */
Mathias Agopian6950e422009-10-05 17:07:12 -07001614 const GraphicBufferAllocator& alloc(GraphicBufferAllocator::get());
Mathias Agopian1473f462009-04-10 14:24:30 -07001615 alloc.dump(result);
Erik Gilling94720d72010-12-01 16:38:01 -08001616 hw.dump(result);
Mathias Agopiana8d49172009-08-26 16:36:26 -07001617
1618 if (locked) {
1619 mStateLock.unlock();
1620 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001621 }
1622 write(fd, result.string(), result.size());
1623 return NO_ERROR;
1624}
1625
1626status_t SurfaceFlinger::onTransact(
1627 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
1628{
1629 switch (code) {
1630 case CREATE_CONNECTION:
Mathias Agopian439863f2011-06-28 19:09:31 -07001631 case SET_TRANSACTION_STATE:
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001632 case SET_ORIENTATION:
1633 case FREEZE_DISPLAY:
1634 case UNFREEZE_DISPLAY:
1635 case BOOT_FINISHED:
Mathias Agopianaab758e2010-10-11 12:37:43 -07001636 case TURN_ELECTRON_BEAM_OFF:
Mathias Agopian2d2b8032010-10-12 16:05:48 -07001637 case TURN_ELECTRON_BEAM_ON:
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001638 {
1639 // codes that require permission check
1640 IPCThreadState* ipc = IPCThreadState::self();
1641 const int pid = ipc->getCallingPid();
Mathias Agopian627e7b52009-05-21 19:21:59 -07001642 const int uid = ipc->getCallingUid();
Mathias Agopian0dd593f2011-06-27 16:05:52 -07001643 if ((uid != AID_GRAPHICS) &&
1644 !PermissionCache::checkPermission(sAccessSurfaceFlinger, pid, uid)) {
Mathias Agopian151e8592009-06-15 18:24:59 -07001645 LOGE("Permission Denial: "
1646 "can't access SurfaceFlinger pid=%d, uid=%d", pid, uid);
1647 return PERMISSION_DENIED;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001648 }
Mathias Agopianca5edbe2010-09-24 11:26:58 -07001649 break;
1650 }
1651 case CAPTURE_SCREEN:
1652 {
1653 // codes that require permission check
1654 IPCThreadState* ipc = IPCThreadState::self();
1655 const int pid = ipc->getCallingPid();
1656 const int uid = ipc->getCallingUid();
Mathias Agopian0dd593f2011-06-27 16:05:52 -07001657 if ((uid != AID_GRAPHICS) &&
1658 !PermissionCache::checkPermission(sReadFramebuffer, pid, uid)) {
Mathias Agopianca5edbe2010-09-24 11:26:58 -07001659 LOGE("Permission Denial: "
1660 "can't read framebuffer pid=%d, uid=%d", pid, uid);
1661 return PERMISSION_DENIED;
1662 }
1663 break;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001664 }
1665 }
Mathias Agopianca5edbe2010-09-24 11:26:58 -07001666
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001667 status_t err = BnSurfaceComposer::onTransact(code, data, reply, flags);
1668 if (err == UNKNOWN_TRANSACTION || err == PERMISSION_DENIED) {
Mathias Agopian8c9687a2009-06-26 19:06:36 -07001669 CHECK_INTERFACE(ISurfaceComposer, data, reply);
Mathias Agopian0dd593f2011-06-27 16:05:52 -07001670 if (UNLIKELY(!PermissionCache::checkCallingPermission(sHardwareTest))) {
Mathias Agopian151e8592009-06-15 18:24:59 -07001671 IPCThreadState* ipc = IPCThreadState::self();
1672 const int pid = ipc->getCallingPid();
1673 const int uid = ipc->getCallingUid();
1674 LOGE("Permission Denial: "
1675 "can't access SurfaceFlinger pid=%d, uid=%d", pid, uid);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001676 return PERMISSION_DENIED;
1677 }
1678 int n;
1679 switch (code) {
Mathias Agopian17f638b2009-04-16 20:04:08 -07001680 case 1000: // SHOW_CPU, NOT SUPPORTED ANYMORE
Mathias Agopian04262e92010-09-13 22:57:58 -07001681 case 1001: // SHOW_FPS, NOT SUPPORTED ANYMORE
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001682 return NO_ERROR;
1683 case 1002: // SHOW_UPDATES
1684 n = data.readInt32();
1685 mDebugRegion = n ? n : (mDebugRegion ? 0 : 1);
Mathias Agopian7f76a3c2011-08-22 21:44:41 -07001686 invalidateHwcGeometry();
1687 repaintEverything();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001688 return NO_ERROR;
1689 case 1003: // SHOW_BACKGROUND
1690 n = data.readInt32();
1691 mDebugBackground = n ? 1 : 0;
1692 return NO_ERROR;
1693 case 1004:{ // repaint everything
Mathias Agopian7f76a3c2011-08-22 21:44:41 -07001694 repaintEverything();
Mathias Agopian9779b222009-09-07 16:32:45 -07001695 return NO_ERROR;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001696 }
Mathias Agopian9779b222009-09-07 16:32:45 -07001697 case 1005:{ // force transaction
1698 setTransactionFlags(eTransactionNeeded|eTraversalNeeded);
1699 return NO_ERROR;
1700 }
Mathias Agopian04262e92010-09-13 22:57:58 -07001701 case 1006:{ // enable/disable GraphicLog
1702 int enabled = data.readInt32();
1703 GraphicLog::getInstance().setEnabled(enabled);
1704 return NO_ERROR;
1705 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001706 case 1007: // set mFreezeCount
1707 mFreezeCount = data.readInt32();
Mathias Agopian0e449762009-12-01 17:23:28 -08001708 mFreezeDisplayTime = 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001709 return NO_ERROR;
Mathias Agopian7f76a3c2011-08-22 21:44:41 -07001710 case 1008: // toggle use of hw composer
1711 n = data.readInt32();
1712 mDebugDisableHWC = n ? 1 : 0;
1713 invalidateHwcGeometry();
1714 repaintEverything();
1715 return NO_ERROR;
Mathias Agopian2143fe02011-08-23 18:03:18 -07001716 case 1009: // toggle use of transform hint
1717 n = data.readInt32();
1718 mDebugDisableTransformHint = n ? 1 : 0;
1719 invalidateHwcGeometry();
1720 repaintEverything();
1721 return NO_ERROR;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001722 case 1010: // interrogate.
Mathias Agopian17f638b2009-04-16 20:04:08 -07001723 reply->writeInt32(0);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001724 reply->writeInt32(0);
1725 reply->writeInt32(mDebugRegion);
1726 reply->writeInt32(mDebugBackground);
1727 return NO_ERROR;
1728 case 1013: {
1729 Mutex::Autolock _l(mStateLock);
1730 const DisplayHardware& hw(graphicPlane(0).displayHardware());
1731 reply->writeInt32(hw.getPageFlipCount());
1732 }
1733 return NO_ERROR;
1734 }
1735 }
1736 return err;
1737}
1738
Mathias Agopian7f76a3c2011-08-22 21:44:41 -07001739void SurfaceFlinger::repaintEverything() {
1740 Mutex::Autolock _l(mStateLock);
1741 const DisplayHardware& hw(graphicPlane(0).displayHardware());
1742 mDirtyRegion.set(hw.bounds()); // careful that's not thread-safe
1743 signalEvent();
1744}
1745
Mathias Agopianaab758e2010-10-11 12:37:43 -07001746// ---------------------------------------------------------------------------
1747
Mathias Agopian2d2b8032010-10-12 16:05:48 -07001748status_t SurfaceFlinger::renderScreenToTextureLocked(DisplayID dpy,
1749 GLuint* textureName, GLfloat* uOut, GLfloat* vOut)
Mathias Agopianaab758e2010-10-11 12:37:43 -07001750{
Mathias Agopianaab758e2010-10-11 12:37:43 -07001751 if (!GLExtensions::getInstance().haveFramebufferObject())
1752 return INVALID_OPERATION;
1753
1754 // get screen geometry
Mathias Agopianaab758e2010-10-11 12:37:43 -07001755 const DisplayHardware& hw(graphicPlane(dpy).displayHardware());
Mathias Agopianaab758e2010-10-11 12:37:43 -07001756 const uint32_t hw_w = hw.getWidth();
1757 const uint32_t hw_h = hw.getHeight();
Mathias Agopianaab758e2010-10-11 12:37:43 -07001758 GLfloat u = 1;
1759 GLfloat v = 1;
1760
1761 // make sure to clear all GL error flags
1762 while ( glGetError() != GL_NO_ERROR ) ;
1763
1764 // create a FBO
1765 GLuint name, tname;
1766 glGenTextures(1, &tname);
1767 glBindTexture(GL_TEXTURE_2D, tname);
Mathias Agopian2d2b8032010-10-12 16:05:48 -07001768 glTexImage2D(GL_TEXTURE_2D, 0, GL_RGB,
1769 hw_w, hw_h, 0, GL_RGB, GL_UNSIGNED_BYTE, 0);
Mathias Agopianaab758e2010-10-11 12:37:43 -07001770 if (glGetError() != GL_NO_ERROR) {
Mathias Agopiana6cd6d32010-10-14 12:19:37 -07001771 while ( glGetError() != GL_NO_ERROR ) ;
Mathias Agopianaab758e2010-10-11 12:37:43 -07001772 GLint tw = (2 << (31 - clz(hw_w)));
1773 GLint th = (2 << (31 - clz(hw_h)));
Mathias Agopian2d2b8032010-10-12 16:05:48 -07001774 glTexImage2D(GL_TEXTURE_2D, 0, GL_RGB,
1775 tw, th, 0, GL_RGB, GL_UNSIGNED_BYTE, 0);
Mathias Agopianaab758e2010-10-11 12:37:43 -07001776 u = GLfloat(hw_w) / tw;
1777 v = GLfloat(hw_h) / th;
1778 }
1779 glGenFramebuffersOES(1, &name);
1780 glBindFramebufferOES(GL_FRAMEBUFFER_OES, name);
Mathias Agopian2d2b8032010-10-12 16:05:48 -07001781 glFramebufferTexture2DOES(GL_FRAMEBUFFER_OES,
1782 GL_COLOR_ATTACHMENT0_OES, GL_TEXTURE_2D, tname, 0);
Mathias Agopianaab758e2010-10-11 12:37:43 -07001783
Mathias Agopian2d2b8032010-10-12 16:05:48 -07001784 // redraw the screen entirely...
1785 glClearColor(0,0,0,1);
1786 glClear(GL_COLOR_BUFFER_BIT);
1787 const Vector< sp<LayerBase> >& layers(mVisibleLayersSortedByZ);
1788 const size_t count = layers.size();
1789 for (size_t i=0 ; i<count ; ++i) {
1790 const sp<LayerBase>& layer(layers[i]);
1791 layer->drawForSreenShot();
1792 }
1793
1794 // back to main framebuffer
1795 glBindFramebufferOES(GL_FRAMEBUFFER_OES, 0);
1796 glDisable(GL_SCISSOR_TEST);
1797 glDeleteFramebuffersOES(1, &name);
1798
1799 *textureName = tname;
1800 *uOut = u;
1801 *vOut = v;
1802 return NO_ERROR;
1803}
1804
1805// ---------------------------------------------------------------------------
1806
1807status_t SurfaceFlinger::electronBeamOffAnimationImplLocked()
1808{
1809 status_t result = PERMISSION_DENIED;
1810
1811 if (!GLExtensions::getInstance().haveFramebufferObject())
1812 return INVALID_OPERATION;
1813
1814 // get screen geometry
1815 const DisplayHardware& hw(graphicPlane(0).displayHardware());
1816 const uint32_t hw_w = hw.getWidth();
1817 const uint32_t hw_h = hw.getHeight();
1818 const Region screenBounds(hw.bounds());
1819
1820 GLfloat u, v;
1821 GLuint tname;
1822 result = renderScreenToTextureLocked(0, &tname, &u, &v);
1823 if (result != NO_ERROR) {
1824 return result;
1825 }
1826
1827 GLfloat vtx[8];
Mathias Agopian3a831d22011-07-07 17:30:31 -07001828 const GLfloat texCoords[4][2] = { {0,1}, {0,1-v}, {u,1-v}, {u,1} };
Mathias Agopian2d2b8032010-10-12 16:05:48 -07001829 glBindTexture(GL_TEXTURE_2D, tname);
1830 glTexEnvx(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE);
1831 glTexParameterx(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
1832 glTexParameterx(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
1833 glTexCoordPointer(2, GL_FLOAT, 0, texCoords);
1834 glEnableClientState(GL_TEXTURE_COORD_ARRAY);
1835 glVertexPointer(2, GL_FLOAT, 0, vtx);
1836
Mathias Agopian3a831d22011-07-07 17:30:31 -07001837 /*
1838 * Texture coordinate mapping
1839 *
1840 * u
1841 * 1 +----------+---+
1842 * | | | | image is inverted
1843 * | V | | w.r.t. the texture
1844 * 1-v +----------+ | coordinates
1845 * | |
1846 * | |
1847 * | |
1848 * 0 +--------------+
1849 * 0 1
1850 *
1851 */
1852
Mathias Agopian2d2b8032010-10-12 16:05:48 -07001853 class s_curve_interpolator {
1854 const float nbFrames, s, v;
1855 public:
1856 s_curve_interpolator(int nbFrames, float s)
1857 : nbFrames(1.0f / (nbFrames-1)), s(s),
1858 v(1.0f + expf(-s + 0.5f*s)) {
1859 }
1860 float operator()(int f) {
1861 const float x = f * nbFrames;
1862 return ((1.0f/(1.0f + expf(-x*s + 0.5f*s))) - 0.5f) * v + 0.5f;
1863 }
1864 };
1865
1866 class v_stretch {
1867 const GLfloat hw_w, hw_h;
1868 public:
1869 v_stretch(uint32_t hw_w, uint32_t hw_h)
1870 : hw_w(hw_w), hw_h(hw_h) {
1871 }
1872 void operator()(GLfloat* vtx, float v) {
1873 const GLfloat w = hw_w + (hw_w * v);
1874 const GLfloat h = hw_h - (hw_h * v);
1875 const GLfloat x = (hw_w - w) * 0.5f;
1876 const GLfloat y = (hw_h - h) * 0.5f;
Mathias Agopian3a831d22011-07-07 17:30:31 -07001877 vtx[0] = x; vtx[1] = y;
1878 vtx[2] = x; vtx[3] = y + h;
1879 vtx[4] = x + w; vtx[5] = y + h;
1880 vtx[6] = x + w; vtx[7] = y;
Mathias Agopian2d2b8032010-10-12 16:05:48 -07001881 }
1882 };
1883
1884 class h_stretch {
1885 const GLfloat hw_w, hw_h;
1886 public:
1887 h_stretch(uint32_t hw_w, uint32_t hw_h)
1888 : hw_w(hw_w), hw_h(hw_h) {
1889 }
1890 void operator()(GLfloat* vtx, float v) {
1891 const GLfloat w = hw_w - (hw_w * v);
1892 const GLfloat h = 1.0f;
1893 const GLfloat x = (hw_w - w) * 0.5f;
1894 const GLfloat y = (hw_h - h) * 0.5f;
Mathias Agopian3a831d22011-07-07 17:30:31 -07001895 vtx[0] = x; vtx[1] = y;
1896 vtx[2] = x; vtx[3] = y + h;
1897 vtx[4] = x + w; vtx[5] = y + h;
1898 vtx[6] = x + w; vtx[7] = y;
Mathias Agopian2d2b8032010-10-12 16:05:48 -07001899 }
1900 };
1901
1902 // the full animation is 24 frames
Mathias Agopian3a831d22011-07-07 17:30:31 -07001903 char value[PROPERTY_VALUE_MAX];
1904 property_get("debug.sf.electron_frames", value, "24");
1905 int nbFrames = (atoi(value) + 1) >> 1;
1906 if (nbFrames <= 0) // just in case
1907 nbFrames = 24;
1908
Mathias Agopian2d2b8032010-10-12 16:05:48 -07001909 s_curve_interpolator itr(nbFrames, 7.5f);
1910 s_curve_interpolator itg(nbFrames, 8.0f);
1911 s_curve_interpolator itb(nbFrames, 8.5f);
1912
1913 v_stretch vverts(hw_w, hw_h);
1914 glEnable(GL_BLEND);
1915 glBlendFunc(GL_ONE, GL_ONE);
1916 for (int i=0 ; i<nbFrames ; i++) {
1917 float x, y, w, h;
1918 const float vr = itr(i);
1919 const float vg = itg(i);
1920 const float vb = itb(i);
1921
1922 // clear screen
1923 glColorMask(1,1,1,1);
Mathias Agopianaab758e2010-10-11 12:37:43 -07001924 glClear(GL_COLOR_BUFFER_BIT);
Mathias Agopianaab758e2010-10-11 12:37:43 -07001925 glEnable(GL_TEXTURE_2D);
Mathias Agopianaab758e2010-10-11 12:37:43 -07001926
Mathias Agopian2d2b8032010-10-12 16:05:48 -07001927 // draw the red plane
1928 vverts(vtx, vr);
1929 glColorMask(1,0,0,1);
1930 glDrawArrays(GL_TRIANGLE_FAN, 0, 4);
Mathias Agopianaab758e2010-10-11 12:37:43 -07001931
Mathias Agopian2d2b8032010-10-12 16:05:48 -07001932 // draw the green plane
1933 vverts(vtx, vg);
1934 glColorMask(0,1,0,1);
1935 glDrawArrays(GL_TRIANGLE_FAN, 0, 4);
Mathias Agopianaab758e2010-10-11 12:37:43 -07001936
Mathias Agopian2d2b8032010-10-12 16:05:48 -07001937 // draw the blue plane
1938 vverts(vtx, vb);
1939 glColorMask(0,0,1,1);
1940 glDrawArrays(GL_TRIANGLE_FAN, 0, 4);
Mathias Agopianaab758e2010-10-11 12:37:43 -07001941
Mathias Agopian2d2b8032010-10-12 16:05:48 -07001942 // draw the white highlight (we use the last vertices)
Mathias Agopianaab758e2010-10-11 12:37:43 -07001943 glDisable(GL_TEXTURE_2D);
1944 glColorMask(1,1,1,1);
Mathias Agopian2d2b8032010-10-12 16:05:48 -07001945 glColor4f(vg, vg, vg, 1);
1946 glDrawArrays(GL_TRIANGLE_FAN, 0, 4);
1947 hw.flip(screenBounds);
Mathias Agopianaab758e2010-10-11 12:37:43 -07001948 }
1949
Mathias Agopian2d2b8032010-10-12 16:05:48 -07001950 h_stretch hverts(hw_w, hw_h);
1951 glDisable(GL_BLEND);
1952 glDisable(GL_TEXTURE_2D);
1953 glColorMask(1,1,1,1);
1954 for (int i=0 ; i<nbFrames ; i++) {
1955 const float v = itg(i);
1956 hverts(vtx, v);
1957 glClear(GL_COLOR_BUFFER_BIT);
1958 glColor4f(1-v, 1-v, 1-v, 1);
1959 glDrawArrays(GL_TRIANGLE_FAN, 0, 4);
1960 hw.flip(screenBounds);
1961 }
1962
1963 glColorMask(1,1,1,1);
1964 glEnable(GL_SCISSOR_TEST);
1965 glDisableClientState(GL_TEXTURE_COORD_ARRAY);
1966 glDeleteTextures(1, &tname);
Mathias Agopian7bb843c2011-04-20 14:20:59 -07001967 glDisable(GL_TEXTURE_2D);
Mathias Agopian2d2b8032010-10-12 16:05:48 -07001968 return NO_ERROR;
1969}
1970
1971status_t SurfaceFlinger::electronBeamOnAnimationImplLocked()
1972{
1973 status_t result = PERMISSION_DENIED;
1974
1975 if (!GLExtensions::getInstance().haveFramebufferObject())
1976 return INVALID_OPERATION;
1977
1978
1979 // get screen geometry
1980 const DisplayHardware& hw(graphicPlane(0).displayHardware());
1981 const uint32_t hw_w = hw.getWidth();
1982 const uint32_t hw_h = hw.getHeight();
1983 const Region screenBounds(hw.bounds());
1984
1985 GLfloat u, v;
1986 GLuint tname;
1987 result = renderScreenToTextureLocked(0, &tname, &u, &v);
1988 if (result != NO_ERROR) {
1989 return result;
1990 }
1991
1992 // back to main framebuffer
1993 glBindFramebufferOES(GL_FRAMEBUFFER_OES, 0);
1994 glDisable(GL_SCISSOR_TEST);
1995
1996 GLfloat vtx[8];
1997 const GLfloat texCoords[4][2] = { {0,v}, {0,0}, {u,0}, {u,v} };
Mathias Agopian2d2b8032010-10-12 16:05:48 -07001998 glBindTexture(GL_TEXTURE_2D, tname);
1999 glTexEnvx(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE);
2000 glTexParameterx(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
2001 glTexParameterx(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
2002 glTexCoordPointer(2, GL_FLOAT, 0, texCoords);
2003 glEnableClientState(GL_TEXTURE_COORD_ARRAY);
2004 glVertexPointer(2, GL_FLOAT, 0, vtx);
2005
2006 class s_curve_interpolator {
2007 const float nbFrames, s, v;
2008 public:
2009 s_curve_interpolator(int nbFrames, float s)
2010 : nbFrames(1.0f / (nbFrames-1)), s(s),
2011 v(1.0f + expf(-s + 0.5f*s)) {
2012 }
2013 float operator()(int f) {
2014 const float x = f * nbFrames;
2015 return ((1.0f/(1.0f + expf(-x*s + 0.5f*s))) - 0.5f) * v + 0.5f;
2016 }
2017 };
2018
2019 class v_stretch {
2020 const GLfloat hw_w, hw_h;
2021 public:
2022 v_stretch(uint32_t hw_w, uint32_t hw_h)
2023 : hw_w(hw_w), hw_h(hw_h) {
2024 }
2025 void operator()(GLfloat* vtx, float v) {
2026 const GLfloat w = hw_w + (hw_w * v);
2027 const GLfloat h = hw_h - (hw_h * v);
2028 const GLfloat x = (hw_w - w) * 0.5f;
2029 const GLfloat y = (hw_h - h) * 0.5f;
2030 vtx[0] = x; vtx[1] = y;
2031 vtx[2] = x; vtx[3] = y + h;
2032 vtx[4] = x + w; vtx[5] = y + h;
2033 vtx[6] = x + w; vtx[7] = y;
2034 }
2035 };
2036
2037 class h_stretch {
2038 const GLfloat hw_w, hw_h;
2039 public:
2040 h_stretch(uint32_t hw_w, uint32_t hw_h)
2041 : hw_w(hw_w), hw_h(hw_h) {
2042 }
2043 void operator()(GLfloat* vtx, float v) {
2044 const GLfloat w = hw_w - (hw_w * v);
2045 const GLfloat h = 1.0f;
2046 const GLfloat x = (hw_w - w) * 0.5f;
2047 const GLfloat y = (hw_h - h) * 0.5f;
2048 vtx[0] = x; vtx[1] = y;
2049 vtx[2] = x; vtx[3] = y + h;
2050 vtx[4] = x + w; vtx[5] = y + h;
2051 vtx[6] = x + w; vtx[7] = y;
2052 }
2053 };
2054
Mathias Agopiandfa08fb2010-10-14 12:33:07 -07002055 // the full animation is 12 frames
2056 int nbFrames = 8;
Mathias Agopian2d2b8032010-10-12 16:05:48 -07002057 s_curve_interpolator itr(nbFrames, 7.5f);
2058 s_curve_interpolator itg(nbFrames, 8.0f);
2059 s_curve_interpolator itb(nbFrames, 8.5f);
2060
2061 h_stretch hverts(hw_w, hw_h);
2062 glDisable(GL_BLEND);
2063 glDisable(GL_TEXTURE_2D);
2064 glColorMask(1,1,1,1);
2065 for (int i=nbFrames-1 ; i>=0 ; i--) {
2066 const float v = itg(i);
2067 hverts(vtx, v);
2068 glClear(GL_COLOR_BUFFER_BIT);
2069 glColor4f(1-v, 1-v, 1-v, 1);
2070 glDrawArrays(GL_TRIANGLE_FAN, 0, 4);
2071 hw.flip(screenBounds);
2072 }
2073
Mathias Agopiandfa08fb2010-10-14 12:33:07 -07002074 nbFrames = 4;
Mathias Agopian2d2b8032010-10-12 16:05:48 -07002075 v_stretch vverts(hw_w, hw_h);
2076 glEnable(GL_BLEND);
2077 glBlendFunc(GL_ONE, GL_ONE);
2078 for (int i=nbFrames-1 ; i>=0 ; i--) {
2079 float x, y, w, h;
2080 const float vr = itr(i);
2081 const float vg = itg(i);
2082 const float vb = itb(i);
2083
2084 // clear screen
2085 glColorMask(1,1,1,1);
2086 glClear(GL_COLOR_BUFFER_BIT);
2087 glEnable(GL_TEXTURE_2D);
2088
2089 // draw the red plane
2090 vverts(vtx, vr);
2091 glColorMask(1,0,0,1);
2092 glDrawArrays(GL_TRIANGLE_FAN, 0, 4);
2093
2094 // draw the green plane
2095 vverts(vtx, vg);
2096 glColorMask(0,1,0,1);
2097 glDrawArrays(GL_TRIANGLE_FAN, 0, 4);
2098
2099 // draw the blue plane
2100 vverts(vtx, vb);
2101 glColorMask(0,0,1,1);
2102 glDrawArrays(GL_TRIANGLE_FAN, 0, 4);
2103
2104 hw.flip(screenBounds);
2105 }
2106
2107 glColorMask(1,1,1,1);
2108 glEnable(GL_SCISSOR_TEST);
2109 glDisableClientState(GL_TEXTURE_COORD_ARRAY);
Mathias Agopianaab758e2010-10-11 12:37:43 -07002110 glDeleteTextures(1, &tname);
Mathias Agopian7bb843c2011-04-20 14:20:59 -07002111 glDisable(GL_TEXTURE_2D);
Mathias Agopianaab758e2010-10-11 12:37:43 -07002112
Mathias Agopian2d2b8032010-10-12 16:05:48 -07002113 return NO_ERROR;
2114}
2115
2116// ---------------------------------------------------------------------------
2117
Mathias Agopiand4e03f32010-10-14 14:54:06 -07002118status_t SurfaceFlinger::turnElectronBeamOffImplLocked(int32_t mode)
Mathias Agopian2d2b8032010-10-12 16:05:48 -07002119{
2120 DisplayHardware& hw(graphicPlane(0).editDisplayHardware());
2121 if (!hw.canDraw()) {
2122 // we're already off
2123 return NO_ERROR;
2124 }
Mathias Agopian7f972582011-09-02 12:22:39 -07002125
2126 // turn off hwc while we're doing the animation
2127 hw.getHwComposer().disable();
2128 // and make sure to turn it back on (if needed) next time we compose
2129 invalidateHwcGeometry();
2130
Mathias Agopiand4e03f32010-10-14 14:54:06 -07002131 if (mode & ISurfaceComposer::eElectronBeamAnimationOff) {
2132 electronBeamOffAnimationImplLocked();
2133 }
2134
2135 // always clear the whole screen at the end of the animation
2136 glClearColor(0,0,0,1);
2137 glDisable(GL_SCISSOR_TEST);
2138 glClear(GL_COLOR_BUFFER_BIT);
2139 glEnable(GL_SCISSOR_TEST);
2140 hw.flip( Region(hw.bounds()) );
2141
Mathias Agopiana6cd6d32010-10-14 12:19:37 -07002142 hw.setCanDraw(false);
2143 return NO_ERROR;
Mathias Agopianaab758e2010-10-11 12:37:43 -07002144}
2145
2146status_t SurfaceFlinger::turnElectronBeamOff(int32_t mode)
2147{
Mathias Agopianaab758e2010-10-11 12:37:43 -07002148 class MessageTurnElectronBeamOff : public MessageBase {
2149 SurfaceFlinger* flinger;
Mathias Agopiand4e03f32010-10-14 14:54:06 -07002150 int32_t mode;
Mathias Agopianaab758e2010-10-11 12:37:43 -07002151 status_t result;
2152 public:
Mathias Agopiand4e03f32010-10-14 14:54:06 -07002153 MessageTurnElectronBeamOff(SurfaceFlinger* flinger, int32_t mode)
2154 : flinger(flinger), mode(mode), result(PERMISSION_DENIED) {
Mathias Agopianaab758e2010-10-11 12:37:43 -07002155 }
2156 status_t getResult() const {
2157 return result;
2158 }
2159 virtual bool handler() {
2160 Mutex::Autolock _l(flinger->mStateLock);
Mathias Agopiand4e03f32010-10-14 14:54:06 -07002161 result = flinger->turnElectronBeamOffImplLocked(mode);
Mathias Agopianaab758e2010-10-11 12:37:43 -07002162 return true;
2163 }
2164 };
2165
Mathias Agopiand4e03f32010-10-14 14:54:06 -07002166 sp<MessageBase> msg = new MessageTurnElectronBeamOff(this, mode);
Mathias Agopianaab758e2010-10-11 12:37:43 -07002167 status_t res = postMessageSync(msg);
2168 if (res == NO_ERROR) {
2169 res = static_cast<MessageTurnElectronBeamOff*>( msg.get() )->getResult();
Mathias Agopian2d2b8032010-10-12 16:05:48 -07002170
2171 // work-around: when the power-manager calls us we activate the
2172 // animation. eventually, the "on" animation will be called
2173 // by the power-manager itself
Mathias Agopiand4e03f32010-10-14 14:54:06 -07002174 mElectronBeamAnimationMode = mode;
Mathias Agopianaab758e2010-10-11 12:37:43 -07002175 }
2176 return res;
2177}
2178
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002179// ---------------------------------------------------------------------------
Mathias Agopian7623da42010-06-01 15:12:58 -07002180
Mathias Agopiand4e03f32010-10-14 14:54:06 -07002181status_t SurfaceFlinger::turnElectronBeamOnImplLocked(int32_t mode)
Mathias Agopian2d2b8032010-10-12 16:05:48 -07002182{
2183 DisplayHardware& hw(graphicPlane(0).editDisplayHardware());
2184 if (hw.canDraw()) {
2185 // we're already on
2186 return NO_ERROR;
2187 }
Mathias Agopiand4e03f32010-10-14 14:54:06 -07002188 if (mode & ISurfaceComposer::eElectronBeamAnimationOn) {
2189 electronBeamOnAnimationImplLocked();
2190 }
Mathias Agopiana6cd6d32010-10-14 12:19:37 -07002191 hw.setCanDraw(true);
Mathias Agopian8b6a0542010-10-14 12:46:24 -07002192
2193 // make sure to redraw the whole screen when the animation is done
2194 mDirtyRegion.set(hw.bounds());
2195 signalEvent();
2196
Mathias Agopiana6cd6d32010-10-14 12:19:37 -07002197 return NO_ERROR;
Mathias Agopian2d2b8032010-10-12 16:05:48 -07002198}
2199
2200status_t SurfaceFlinger::turnElectronBeamOn(int32_t mode)
2201{
Mathias Agopian2d2b8032010-10-12 16:05:48 -07002202 class MessageTurnElectronBeamOn : public MessageBase {
2203 SurfaceFlinger* flinger;
Mathias Agopiand4e03f32010-10-14 14:54:06 -07002204 int32_t mode;
Mathias Agopian2d2b8032010-10-12 16:05:48 -07002205 status_t result;
2206 public:
Mathias Agopiand4e03f32010-10-14 14:54:06 -07002207 MessageTurnElectronBeamOn(SurfaceFlinger* flinger, int32_t mode)
2208 : flinger(flinger), mode(mode), result(PERMISSION_DENIED) {
Mathias Agopian2d2b8032010-10-12 16:05:48 -07002209 }
2210 status_t getResult() const {
2211 return result;
2212 }
2213 virtual bool handler() {
2214 Mutex::Autolock _l(flinger->mStateLock);
Mathias Agopiand4e03f32010-10-14 14:54:06 -07002215 result = flinger->turnElectronBeamOnImplLocked(mode);
Mathias Agopian2d2b8032010-10-12 16:05:48 -07002216 return true;
2217 }
2218 };
2219
Mathias Agopiand4e03f32010-10-14 14:54:06 -07002220 postMessageAsync( new MessageTurnElectronBeamOn(this, mode) );
Mathias Agopian2d2b8032010-10-12 16:05:48 -07002221 return NO_ERROR;
2222}
2223
2224// ---------------------------------------------------------------------------
2225
Mathias Agopian38ed2e32010-09-29 13:02:36 -07002226status_t SurfaceFlinger::captureScreenImplLocked(DisplayID dpy,
2227 sp<IMemoryHeap>* heap,
2228 uint32_t* w, uint32_t* h, PixelFormat* f,
Mathias Agopian3dd25a62010-12-10 16:22:31 -08002229 uint32_t sw, uint32_t sh,
2230 uint32_t minLayerZ, uint32_t maxLayerZ)
Mathias Agopian38ed2e32010-09-29 13:02:36 -07002231{
2232 status_t result = PERMISSION_DENIED;
2233
2234 // only one display supported for now
2235 if (UNLIKELY(uint32_t(dpy) >= DISPLAY_COUNT))
2236 return BAD_VALUE;
2237
Jamie Gennisf72606c2011-03-09 17:05:02 -08002238 // make sure none of the layers are protected
Mathias Agopiane3281342011-08-24 17:44:41 -07002239 const LayerVector& layers(mDrawingState.layersSortedByZ);
Jamie Gennisf72606c2011-03-09 17:05:02 -08002240 const size_t count = layers.size();
2241 for (size_t i=0 ; i<count ; ++i) {
2242 const sp<LayerBase>& layer(layers[i]);
Mathias Agopianec49d892011-08-25 14:36:43 -07002243 const uint32_t flags = layer->drawingState().flags;
2244 if (!(flags & ISurfaceComposer::eLayerHidden)) {
2245 const uint32_t z = layer->drawingState().z;
2246 if (z >= minLayerZ && z <= maxLayerZ) {
2247 if (layer->isProtected()) {
2248 return INVALID_OPERATION;
2249 }
Jamie Gennisf72606c2011-03-09 17:05:02 -08002250 }
2251 }
2252 }
2253
Mathias Agopian38ed2e32010-09-29 13:02:36 -07002254 if (!GLExtensions::getInstance().haveFramebufferObject())
2255 return INVALID_OPERATION;
2256
2257 // get screen geometry
2258 const DisplayHardware& hw(graphicPlane(dpy).displayHardware());
2259 const uint32_t hw_w = hw.getWidth();
2260 const uint32_t hw_h = hw.getHeight();
2261
2262 if ((sw > hw_w) || (sh > hw_h))
2263 return BAD_VALUE;
2264
2265 sw = (!sw) ? hw_w : sw;
2266 sh = (!sh) ? hw_h : sh;
2267 const size_t size = sw * sh * 4;
2268
Mathias Agopian32ae0942011-03-02 18:45:50 -08002269 //LOGD("screenshot: sw=%d, sh=%d, minZ=%d, maxZ=%d",
2270 // sw, sh, minLayerZ, maxLayerZ);
Mathias Agopiancd2cfb62011-01-16 14:05:02 -08002271
Mathias Agopian38ed2e32010-09-29 13:02:36 -07002272 // make sure to clear all GL error flags
2273 while ( glGetError() != GL_NO_ERROR ) ;
2274
2275 // create a FBO
2276 GLuint name, tname;
2277 glGenRenderbuffersOES(1, &tname);
2278 glBindRenderbufferOES(GL_RENDERBUFFER_OES, tname);
2279 glRenderbufferStorageOES(GL_RENDERBUFFER_OES, GL_RGBA8_OES, sw, sh);
2280 glGenFramebuffersOES(1, &name);
2281 glBindFramebufferOES(GL_FRAMEBUFFER_OES, name);
2282 glFramebufferRenderbufferOES(GL_FRAMEBUFFER_OES,
2283 GL_COLOR_ATTACHMENT0_OES, GL_RENDERBUFFER_OES, tname);
2284
2285 GLenum status = glCheckFramebufferStatusOES(GL_FRAMEBUFFER_OES);
Mathias Agopiancd2cfb62011-01-16 14:05:02 -08002286
Mathias Agopian38ed2e32010-09-29 13:02:36 -07002287 if (status == GL_FRAMEBUFFER_COMPLETE_OES) {
2288
2289 // invert everything, b/c glReadPixel() below will invert the FB
2290 glViewport(0, 0, sw, sh);
Mathias Agopian1c4e4fc02010-12-16 18:46:17 -08002291 glScissor(0, 0, sw, sh);
Mathias Agopian3a831d22011-07-07 17:30:31 -07002292 glEnable(GL_SCISSOR_TEST);
Mathias Agopian38ed2e32010-09-29 13:02:36 -07002293 glMatrixMode(GL_PROJECTION);
2294 glPushMatrix();
2295 glLoadIdentity();
Mathias Agopian3a831d22011-07-07 17:30:31 -07002296 glOrthof(0, hw_w, hw_h, 0, 0, 1);
Mathias Agopian38ed2e32010-09-29 13:02:36 -07002297 glMatrixMode(GL_MODELVIEW);
2298
2299 // redraw the screen entirely...
2300 glClearColor(0,0,0,1);
2301 glClear(GL_COLOR_BUFFER_BIT);
Mathias Agopian1c4e4fc02010-12-16 18:46:17 -08002302
Mathias Agopian38ed2e32010-09-29 13:02:36 -07002303 for (size_t i=0 ; i<count ; ++i) {
2304 const sp<LayerBase>& layer(layers[i]);
Mathias Agopianec49d892011-08-25 14:36:43 -07002305 const uint32_t flags = layer->drawingState().flags;
2306 if (!(flags & ISurfaceComposer::eLayerHidden)) {
2307 const uint32_t z = layer->drawingState().z;
2308 if (z >= minLayerZ && z <= maxLayerZ) {
2309 layer->drawForSreenShot();
2310 }
Mathias Agopian3dd25a62010-12-10 16:22:31 -08002311 }
Mathias Agopian38ed2e32010-09-29 13:02:36 -07002312 }
2313
2314 // XXX: this is needed on tegra
Mathias Agopian3a831d22011-07-07 17:30:31 -07002315 glEnable(GL_SCISSOR_TEST);
Mathias Agopian38ed2e32010-09-29 13:02:36 -07002316 glScissor(0, 0, sw, sh);
2317
2318 // check for errors and return screen capture
2319 if (glGetError() != GL_NO_ERROR) {
2320 // error while rendering
2321 result = INVALID_OPERATION;
2322 } else {
2323 // allocate shared memory large enough to hold the
2324 // screen capture
2325 sp<MemoryHeapBase> base(
2326 new MemoryHeapBase(size, 0, "screen-capture") );
2327 void* const ptr = base->getBase();
2328 if (ptr) {
2329 // capture the screen with glReadPixels()
2330 glReadPixels(0, 0, sw, sh, GL_RGBA, GL_UNSIGNED_BYTE, ptr);
2331 if (glGetError() == GL_NO_ERROR) {
2332 *heap = base;
2333 *w = sw;
2334 *h = sh;
2335 *f = PIXEL_FORMAT_RGBA_8888;
2336 result = NO_ERROR;
2337 }
2338 } else {
2339 result = NO_MEMORY;
2340 }
2341 }
Mathias Agopian38ed2e32010-09-29 13:02:36 -07002342 glEnable(GL_SCISSOR_TEST);
2343 glViewport(0, 0, hw_w, hw_h);
2344 glMatrixMode(GL_PROJECTION);
2345 glPopMatrix();
2346 glMatrixMode(GL_MODELVIEW);
Mathias Agopian38ed2e32010-09-29 13:02:36 -07002347 } else {
2348 result = BAD_VALUE;
2349 }
2350
2351 // release FBO resources
2352 glBindFramebufferOES(GL_FRAMEBUFFER_OES, 0);
2353 glDeleteRenderbuffersOES(1, &tname);
2354 glDeleteFramebuffersOES(1, &name);
Mathias Agopiana6b8c1c2010-12-15 14:41:59 -08002355
2356 hw.compositionComplete();
2357
Mathias Agopian32ae0942011-03-02 18:45:50 -08002358 // LOGD("screenshot: result = %s", result<0 ? strerror(result) : "OK");
Mathias Agopiancd2cfb62011-01-16 14:05:02 -08002359
Mathias Agopian38ed2e32010-09-29 13:02:36 -07002360 return result;
2361}
2362
2363
Mathias Agopianca5edbe2010-09-24 11:26:58 -07002364status_t SurfaceFlinger::captureScreen(DisplayID dpy,
2365 sp<IMemoryHeap>* heap,
Mathias Agopian38ed2e32010-09-29 13:02:36 -07002366 uint32_t* width, uint32_t* height, PixelFormat* format,
Mathias Agopian3dd25a62010-12-10 16:22:31 -08002367 uint32_t sw, uint32_t sh,
2368 uint32_t minLayerZ, uint32_t maxLayerZ)
Mathias Agopianca5edbe2010-09-24 11:26:58 -07002369{
2370 // only one display supported for now
2371 if (UNLIKELY(uint32_t(dpy) >= DISPLAY_COUNT))
2372 return BAD_VALUE;
2373
2374 if (!GLExtensions::getInstance().haveFramebufferObject())
2375 return INVALID_OPERATION;
2376
2377 class MessageCaptureScreen : public MessageBase {
2378 SurfaceFlinger* flinger;
2379 DisplayID dpy;
2380 sp<IMemoryHeap>* heap;
2381 uint32_t* w;
2382 uint32_t* h;
2383 PixelFormat* f;
Mathias Agopian38ed2e32010-09-29 13:02:36 -07002384 uint32_t sw;
2385 uint32_t sh;
Mathias Agopian3dd25a62010-12-10 16:22:31 -08002386 uint32_t minLayerZ;
2387 uint32_t maxLayerZ;
Mathias Agopianca5edbe2010-09-24 11:26:58 -07002388 status_t result;
2389 public:
2390 MessageCaptureScreen(SurfaceFlinger* flinger, DisplayID dpy,
Mathias Agopian38ed2e32010-09-29 13:02:36 -07002391 sp<IMemoryHeap>* heap, uint32_t* w, uint32_t* h, PixelFormat* f,
Mathias Agopian3dd25a62010-12-10 16:22:31 -08002392 uint32_t sw, uint32_t sh,
2393 uint32_t minLayerZ, uint32_t maxLayerZ)
Mathias Agopianca5edbe2010-09-24 11:26:58 -07002394 : flinger(flinger), dpy(dpy),
Mathias Agopian3dd25a62010-12-10 16:22:31 -08002395 heap(heap), w(w), h(h), f(f), sw(sw), sh(sh),
2396 minLayerZ(minLayerZ), maxLayerZ(maxLayerZ),
2397 result(PERMISSION_DENIED)
Mathias Agopianca5edbe2010-09-24 11:26:58 -07002398 {
2399 }
2400 status_t getResult() const {
2401 return result;
2402 }
2403 virtual bool handler() {
2404 Mutex::Autolock _l(flinger->mStateLock);
2405
2406 // if we have secure windows, never allow the screen capture
2407 if (flinger->mSecureFrameBuffer)
2408 return true;
2409
Mathias Agopian38ed2e32010-09-29 13:02:36 -07002410 result = flinger->captureScreenImplLocked(dpy,
Mathias Agopian3dd25a62010-12-10 16:22:31 -08002411 heap, w, h, f, sw, sh, minLayerZ, maxLayerZ);
Mathias Agopianca5edbe2010-09-24 11:26:58 -07002412
Mathias Agopianca5edbe2010-09-24 11:26:58 -07002413 return true;
2414 }
2415 };
2416
2417 sp<MessageBase> msg = new MessageCaptureScreen(this,
Mathias Agopian3dd25a62010-12-10 16:22:31 -08002418 dpy, heap, width, height, format, sw, sh, minLayerZ, maxLayerZ);
Mathias Agopianca5edbe2010-09-24 11:26:58 -07002419 status_t res = postMessageSync(msg);
2420 if (res == NO_ERROR) {
2421 res = static_cast<MessageCaptureScreen*>( msg.get() )->getResult();
2422 }
2423 return res;
2424}
2425
2426// ---------------------------------------------------------------------------
2427
Mathias Agopian7623da42010-06-01 15:12:58 -07002428sp<Layer> SurfaceFlinger::getLayer(const sp<ISurface>& sur) const
2429{
2430 sp<Layer> result;
2431 Mutex::Autolock _l(mStateLock);
2432 result = mLayerMap.valueFor( sur->asBinder() ).promote();
2433 return result;
2434}
2435
2436// ---------------------------------------------------------------------------
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002437
Mathias Agopian593c05c2010-06-02 23:28:45 -07002438Client::Client(const sp<SurfaceFlinger>& flinger)
Mathias Agopian7623da42010-06-01 15:12:58 -07002439 : mFlinger(flinger), mNameGenerator(1)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002440{
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002441}
2442
Mathias Agopian593c05c2010-06-02 23:28:45 -07002443Client::~Client()
2444{
Mathias Agopian593c05c2010-06-02 23:28:45 -07002445 const size_t count = mLayers.size();
2446 for (size_t i=0 ; i<count ; i++) {
2447 sp<LayerBaseClient> layer(mLayers.valueAt(i).promote());
2448 if (layer != 0) {
2449 mFlinger->removeLayer(layer);
2450 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002451 }
2452}
2453
Mathias Agopian593c05c2010-06-02 23:28:45 -07002454status_t Client::initCheck() const {
Mathias Agopian7623da42010-06-01 15:12:58 -07002455 return NO_ERROR;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002456}
Mathias Agopian1473f462009-04-10 14:24:30 -07002457
Mathias Agopian5fa7ad62011-05-03 16:21:41 -07002458size_t Client::attachLayer(const sp<LayerBaseClient>& layer)
Mathias Agopian593c05c2010-06-02 23:28:45 -07002459{
Mathias Agopian5fa7ad62011-05-03 16:21:41 -07002460 Mutex::Autolock _l(mLock);
2461 size_t name = mNameGenerator++;
Mathias Agopian593c05c2010-06-02 23:28:45 -07002462 mLayers.add(name, layer);
2463 return name;
2464}
2465
Mathias Agopian7623da42010-06-01 15:12:58 -07002466void Client::detachLayer(const LayerBaseClient* layer)
Mathias Agopian593c05c2010-06-02 23:28:45 -07002467{
Mathias Agopian5fa7ad62011-05-03 16:21:41 -07002468 Mutex::Autolock _l(mLock);
Mathias Agopian593c05c2010-06-02 23:28:45 -07002469 // we do a linear search here, because this doesn't happen often
2470 const size_t count = mLayers.size();
2471 for (size_t i=0 ; i<count ; i++) {
2472 if (mLayers.valueAt(i) == layer) {
2473 mLayers.removeItemsAt(i, 1);
2474 break;
2475 }
2476 }
2477}
Mathias Agopian5fa7ad62011-05-03 16:21:41 -07002478sp<LayerBaseClient> Client::getLayerUser(int32_t i) const
2479{
2480 Mutex::Autolock _l(mLock);
Mathias Agopian1473f462009-04-10 14:24:30 -07002481 sp<LayerBaseClient> lbc;
Mathias Agopian5fa7ad62011-05-03 16:21:41 -07002482 wp<LayerBaseClient> layer(mLayers.valueFor(i));
Mathias Agopian593c05c2010-06-02 23:28:45 -07002483 if (layer != 0) {
2484 lbc = layer.promote();
2485 LOGE_IF(lbc==0, "getLayerUser(name=%d) is dead", int(i));
Mathias Agopian1473f462009-04-10 14:24:30 -07002486 }
2487 return lbc;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002488}
2489
Mathias Agopian7bb843c2011-04-20 14:20:59 -07002490
2491status_t Client::onTransact(
2492 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
2493{
2494 // these must be checked
2495 IPCThreadState* ipc = IPCThreadState::self();
2496 const int pid = ipc->getCallingPid();
2497 const int uid = ipc->getCallingUid();
2498 const int self_pid = getpid();
2499 if (UNLIKELY(pid != self_pid && uid != AID_GRAPHICS && uid != 0)) {
2500 // we're called from a different process, do the real check
Mathias Agopian0dd593f2011-06-27 16:05:52 -07002501 if (!PermissionCache::checkCallingPermission(sAccessSurfaceFlinger))
Mathias Agopian7bb843c2011-04-20 14:20:59 -07002502 {
2503 LOGE("Permission Denial: "
2504 "can't openGlobalTransaction pid=%d, uid=%d", pid, uid);
2505 return PERMISSION_DENIED;
2506 }
2507 }
2508 return BnSurfaceComposerClient::onTransact(code, data, reply, flags);
Mathias Agopian7623da42010-06-01 15:12:58 -07002509}
Mathias Agopian7bb843c2011-04-20 14:20:59 -07002510
2511
Mathias Agopian593c05c2010-06-02 23:28:45 -07002512sp<ISurface> Client::createSurface(
Mathias Agopian9638e5c2011-04-20 14:19:32 -07002513 ISurfaceComposerClient::surface_data_t* params,
Mathias Agopian7623da42010-06-01 15:12:58 -07002514 const String8& name,
2515 DisplayID display, uint32_t w, uint32_t h, PixelFormat format,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002516 uint32_t flags)
2517{
Mathias Agopian7bb843c2011-04-20 14:20:59 -07002518 /*
2519 * createSurface must be called from the GL thread so that it can
2520 * have access to the GL context.
2521 */
2522
2523 class MessageCreateSurface : public MessageBase {
2524 sp<ISurface> result;
2525 SurfaceFlinger* flinger;
2526 ISurfaceComposerClient::surface_data_t* params;
2527 Client* client;
2528 const String8& name;
2529 DisplayID display;
2530 uint32_t w, h;
2531 PixelFormat format;
2532 uint32_t flags;
2533 public:
2534 MessageCreateSurface(SurfaceFlinger* flinger,
2535 ISurfaceComposerClient::surface_data_t* params,
2536 const String8& name, Client* client,
2537 DisplayID display, uint32_t w, uint32_t h, PixelFormat format,
2538 uint32_t flags)
2539 : flinger(flinger), params(params), client(client), name(name),
2540 display(display), w(w), h(h), format(format), flags(flags)
2541 {
2542 }
2543 sp<ISurface> getResult() const { return result; }
2544 virtual bool handler() {
2545 result = flinger->createSurface(params, name, client,
2546 display, w, h, format, flags);
2547 return true;
2548 }
2549 };
2550
2551 sp<MessageBase> msg = new MessageCreateSurface(mFlinger.get(),
2552 params, name, this, display, w, h, format, flags);
2553 mFlinger->postMessageSync(msg);
2554 return static_cast<MessageCreateSurface*>( msg.get() )->getResult();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002555}
Mathias Agopian593c05c2010-06-02 23:28:45 -07002556status_t Client::destroySurface(SurfaceID sid) {
2557 return mFlinger->removeSurface(this, sid);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002558}
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002559
2560// ---------------------------------------------------------------------------
2561
Jamie Gennisf7acf162011-01-12 18:30:40 -08002562GraphicBufferAlloc::GraphicBufferAlloc() {}
2563
2564GraphicBufferAlloc::~GraphicBufferAlloc() {}
2565
2566sp<GraphicBuffer> GraphicBufferAlloc::createGraphicBuffer(uint32_t w, uint32_t h,
Mathias Agopianeec0f7e2011-07-01 14:53:49 -07002567 PixelFormat format, uint32_t usage, status_t* error) {
Jamie Gennisf7acf162011-01-12 18:30:40 -08002568 sp<GraphicBuffer> graphicBuffer(new GraphicBuffer(w, h, format, usage));
2569 status_t err = graphicBuffer->initCheck();
Mathias Agopianeec0f7e2011-07-01 14:53:49 -07002570 *error = err;
Mathias Agopian7bb843c2011-04-20 14:20:59 -07002571 if (err != 0 || graphicBuffer->handle == 0) {
Mathias Agopianeec0f7e2011-07-01 14:53:49 -07002572 if (err == NO_MEMORY) {
2573 GraphicBuffer::dumpAllocationsToSystemLog();
2574 }
Mathias Agopian7bb843c2011-04-20 14:20:59 -07002575 LOGE("GraphicBufferAlloc::createGraphicBuffer(w=%d, h=%d) "
2576 "failed (%s), handle=%p",
2577 w, h, strerror(-err), graphicBuffer->handle);
Jamie Gennisf7acf162011-01-12 18:30:40 -08002578 return 0;
2579 }
Jamie Gennisf7acf162011-01-12 18:30:40 -08002580 return graphicBuffer;
2581}
2582
Jamie Gennisf7acf162011-01-12 18:30:40 -08002583// ---------------------------------------------------------------------------
2584
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002585GraphicPlane::GraphicPlane()
2586 : mHw(0)
2587{
2588}
2589
2590GraphicPlane::~GraphicPlane() {
2591 delete mHw;
2592}
2593
2594bool GraphicPlane::initialized() const {
2595 return mHw ? true : false;
2596}
2597
Mathias Agopian66c77a52010-02-08 15:49:35 -08002598int GraphicPlane::getWidth() const {
2599 return mWidth;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002600}
2601
Mathias Agopian66c77a52010-02-08 15:49:35 -08002602int GraphicPlane::getHeight() const {
2603 return mHeight;
2604}
2605
2606void GraphicPlane::setDisplayHardware(DisplayHardware *hw)
2607{
2608 mHw = hw;
2609
2610 // initialize the display orientation transform.
2611 // it's a constant that should come from the display driver.
2612 int displayOrientation = ISurfaceComposer::eOrientationDefault;
2613 char property[PROPERTY_VALUE_MAX];
2614 if (property_get("ro.sf.hwrotation", property, NULL) > 0) {
2615 //displayOrientation
2616 switch (atoi(property)) {
2617 case 90:
2618 displayOrientation = ISurfaceComposer::eOrientation90;
2619 break;
2620 case 270:
2621 displayOrientation = ISurfaceComposer::eOrientation270;
2622 break;
2623 }
2624 }
2625
2626 const float w = hw->getWidth();
2627 const float h = hw->getHeight();
2628 GraphicPlane::orientationToTransfrom(displayOrientation, w, h,
2629 &mDisplayTransform);
2630 if (displayOrientation & ISurfaceComposer::eOrientationSwapMask) {
2631 mDisplayWidth = h;
2632 mDisplayHeight = w;
2633 } else {
2634 mDisplayWidth = w;
2635 mDisplayHeight = h;
2636 }
2637
2638 setOrientation(ISurfaceComposer::eOrientationDefault);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002639}
2640
2641status_t GraphicPlane::orientationToTransfrom(
2642 int orientation, int w, int h, Transform* tr)
Mathias Agopian8c20ca32010-02-22 03:15:57 -08002643{
2644 uint32_t flags = 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002645 switch (orientation) {
2646 case ISurfaceComposer::eOrientationDefault:
Mathias Agopian8c20ca32010-02-22 03:15:57 -08002647 flags = Transform::ROT_0;
2648 break;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002649 case ISurfaceComposer::eOrientation90:
Mathias Agopian8c20ca32010-02-22 03:15:57 -08002650 flags = Transform::ROT_90;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002651 break;
2652 case ISurfaceComposer::eOrientation180:
Mathias Agopian8c20ca32010-02-22 03:15:57 -08002653 flags = Transform::ROT_180;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002654 break;
2655 case ISurfaceComposer::eOrientation270:
Mathias Agopian8c20ca32010-02-22 03:15:57 -08002656 flags = Transform::ROT_270;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002657 break;
2658 default:
2659 return BAD_VALUE;
2660 }
Mathias Agopian8c20ca32010-02-22 03:15:57 -08002661 tr->set(flags, w, h);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002662 return NO_ERROR;
2663}
2664
2665status_t GraphicPlane::setOrientation(int orientation)
2666{
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002667 // If the rotation can be handled in hardware, this is where
2668 // the magic should happen.
Mathias Agopian66c77a52010-02-08 15:49:35 -08002669
2670 const DisplayHardware& hw(displayHardware());
2671 const float w = mDisplayWidth;
2672 const float h = mDisplayHeight;
2673 mWidth = int(w);
2674 mHeight = int(h);
2675
2676 Transform orientationTransform;
Mathias Agopian8c20ca32010-02-22 03:15:57 -08002677 GraphicPlane::orientationToTransfrom(orientation, w, h,
2678 &orientationTransform);
2679 if (orientation & ISurfaceComposer::eOrientationSwapMask) {
2680 mWidth = int(h);
2681 mHeight = int(w);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002682 }
Mathias Agopian8c20ca32010-02-22 03:15:57 -08002683
Mathias Agopian3552f532009-03-27 17:58:20 -07002684 mOrientation = orientation;
Mathias Agopian66c77a52010-02-08 15:49:35 -08002685 mGlobalTransform = mDisplayTransform * orientationTransform;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002686 return NO_ERROR;
2687}
2688
2689const DisplayHardware& GraphicPlane::displayHardware() const {
2690 return *mHw;
2691}
2692
Mathias Agopianaab758e2010-10-11 12:37:43 -07002693DisplayHardware& GraphicPlane::editDisplayHardware() {
2694 return *mHw;
2695}
2696
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002697const Transform& GraphicPlane::transform() const {
2698 return mGlobalTransform;
2699}
2700
Mathias Agopian1473f462009-04-10 14:24:30 -07002701EGLDisplay GraphicPlane::getEGLDisplay() const {
2702 return mHw->getEGLDisplay();
2703}
2704
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002705// ---------------------------------------------------------------------------
2706
2707}; // namespace android