blob: e37e446d58e43755d4094a64d8a69bd8293cbc61 [file] [log] [blame]
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001/*
2 * Copyright (C) 2007 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
The Android Open Source Projectedbf3b62009-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 Querua837ba72009-01-26 11:51:12 -080024#include <limits.h>
The Android Open Source Projectedbf3b62009-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 Agopianc5b2c0b2009-05-19 19:08:10 -070032#include <binder/IPCThreadState.h>
33#include <binder/IServiceManager.h>
Mathias Agopian7303c6b2009-07-02 18:11:53 -070034#include <binder/MemoryHeapBase.h>
35
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080036#include <utils/String8.h>
37#include <utils/String16.h>
38#include <utils/StopWatch.h>
39
Mathias Agopian3330b202009-10-05 17:07:12 -070040#include <ui/GraphicBufferAllocator.h>
Mathias Agopian35b48d12010-09-13 22:57:58 -070041#include <ui/GraphicLog.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080042#include <ui/PixelFormat.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080043
44#include <pixelflinger/pixelflinger.h>
45#include <GLES/gl.h>
46
47#include "clz.h"
Mathias Agopian1f7bec62010-06-25 18:02:21 -070048#include "GLExtensions.h"
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080049#include "Layer.h"
50#include "LayerBlur.h"
51#include "LayerBuffer.h"
52#include "LayerDim.h"
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080053#include "SurfaceFlinger.h"
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080054
55#include "DisplayHardware/DisplayHardware.h"
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080056
Mathias Agopiana1ecca92009-05-21 19:21:59 -070057/* ideally AID_GRAPHICS would be in a semi-public header
58 * or there would be a way to map a user/group name to its id
59 */
60#ifndef AID_GRAPHICS
61#define AID_GRAPHICS 1003
62#endif
63
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080064#define DISPLAY_COUNT 1
65
66namespace android {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080067// ---------------------------------------------------------------------------
68
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080069SurfaceFlinger::SurfaceFlinger()
70 : BnSurfaceComposer(), Thread(false),
71 mTransactionFlags(0),
72 mTransactionCount(0),
Mathias Agopiancbb288b2009-09-07 16:32:45 -070073 mResizeTransationPending(false),
Mathias Agopian076b1cc2009-04-10 14:24:30 -070074 mLayersRemoved(false),
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080075 mBootTime(systemTime()),
Mathias Agopian375f5632009-06-15 18:24:59 -070076 mHardwareTest("android.permission.HARDWARE_TEST"),
77 mAccessSurfaceFlinger("android.permission.ACCESS_SURFACE_FLINGER"),
Mathias Agopian1b0b30d2010-09-24 11:26:58 -070078 mReadFramebuffer("android.permission.READ_FRAME_BUFFER"),
Mathias Agopian375f5632009-06-15 18:24:59 -070079 mDump("android.permission.DUMP"),
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080080 mVisibleRegionsDirty(false),
81 mDeferReleaseConsole(false),
82 mFreezeDisplay(false),
Mathias Agopianabd671a2010-10-14 14:54:06 -070083 mElectronBeamAnimationMode(0),
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080084 mFreezeCount(0),
The Android Open Source Projectbcef13b2009-03-11 12:11:56 -070085 mFreezeDisplayTime(0),
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080086 mDebugRegion(0),
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080087 mDebugBackground(0),
Mathias Agopian9795c422009-08-26 16:36:26 -070088 mDebugInSwapBuffers(0),
89 mLastSwapBufferTime(0),
90 mDebugInTransaction(0),
91 mLastTransactionTime(0),
Mathias Agopian3330b202009-10-05 17:07:12 -070092 mBootFinished(false),
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080093 mConsoleSignals(0),
94 mSecureFrameBuffer(0)
95{
96 init();
97}
98
99void SurfaceFlinger::init()
100{
101 LOGI("SurfaceFlinger is starting");
102
103 // debugging stuff...
104 char value[PROPERTY_VALUE_MAX];
105 property_get("debug.sf.showupdates", value, "0");
106 mDebugRegion = atoi(value);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800107 property_get("debug.sf.showbackground", value, "0");
108 mDebugBackground = atoi(value);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800109
Mathias Agopian78fd5012010-04-20 14:51:04 -0700110 LOGI_IF(mDebugRegion, "showupdates enabled");
111 LOGI_IF(mDebugBackground, "showbackground enabled");
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800112}
113
114SurfaceFlinger::~SurfaceFlinger()
115{
116 glDeleteTextures(1, &mWormholeTexName);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800117}
118
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800119overlay_control_device_t* SurfaceFlinger::getOverlayEngine() const
120{
121 return graphicPlane(0).displayHardware().getOverlayEngine();
122}
123
Mathias Agopian7303c6b2009-07-02 18:11:53 -0700124sp<IMemoryHeap> SurfaceFlinger::getCblk() const
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800125{
Mathias Agopian7303c6b2009-07-02 18:11:53 -0700126 return mServerHeap;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800127}
128
Mathias Agopian7e27f052010-05-28 14:22:23 -0700129sp<ISurfaceComposerClient> SurfaceFlinger::createConnection()
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800130{
Mathias Agopian96f08192010-06-02 23:28:45 -0700131 sp<ISurfaceComposerClient> bclient;
132 sp<Client> client(new Client(this));
133 status_t err = client->initCheck();
134 if (err == NO_ERROR) {
135 bclient = client;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800136 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800137 return bclient;
138}
139
Mathias Agopianb7e930d2010-06-01 15:12:58 -0700140sp<ISurfaceComposerClient> SurfaceFlinger::createClientConnection()
141{
142 sp<ISurfaceComposerClient> bclient;
143 sp<UserClient> client(new UserClient(this));
144 status_t err = client->initCheck();
145 if (err == NO_ERROR) {
146 bclient = client;
147 }
148 return bclient;
149}
150
151
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800152const GraphicPlane& SurfaceFlinger::graphicPlane(int dpy) const
153{
154 LOGE_IF(uint32_t(dpy) >= DISPLAY_COUNT, "Invalid DisplayID %d", dpy);
155 const GraphicPlane& plane(mGraphicPlanes[dpy]);
156 return plane;
157}
158
159GraphicPlane& SurfaceFlinger::graphicPlane(int dpy)
160{
161 return const_cast<GraphicPlane&>(
162 const_cast<SurfaceFlinger const *>(this)->graphicPlane(dpy));
163}
164
165void SurfaceFlinger::bootFinished()
166{
167 const nsecs_t now = systemTime();
168 const nsecs_t duration = now - mBootTime;
Mathias Agopiana1ecca92009-05-21 19:21:59 -0700169 LOGI("Boot is finished (%ld ms)", long(ns2ms(duration)) );
Mathias Agopian3330b202009-10-05 17:07:12 -0700170 mBootFinished = true;
Mathias Agopiana1ecca92009-05-21 19:21:59 -0700171 property_set("ctl.stop", "bootanim");
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800172}
173
174void SurfaceFlinger::onFirstRef()
175{
176 run("SurfaceFlinger", PRIORITY_URGENT_DISPLAY);
177
178 // Wait for the main thread to be done with its initialization
179 mReadyToRunBarrier.wait();
180}
181
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800182static inline uint16_t pack565(int r, int g, int b) {
183 return (r<<11)|(g<<5)|b;
184}
185
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800186status_t SurfaceFlinger::readyToRun()
187{
188 LOGI( "SurfaceFlinger's main thread ready to run. "
189 "Initializing graphics H/W...");
190
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800191 // we only support one display currently
192 int dpy = 0;
193
194 {
195 // initialize the main display
196 GraphicPlane& plane(graphicPlane(dpy));
197 DisplayHardware* const hw = new DisplayHardware(this, dpy);
198 plane.setDisplayHardware(hw);
199 }
200
Mathias Agopian7303c6b2009-07-02 18:11:53 -0700201 // create the shared control-block
202 mServerHeap = new MemoryHeapBase(4096,
203 MemoryHeapBase::READ_ONLY, "SurfaceFlinger read-only heap");
204 LOGE_IF(mServerHeap==0, "can't create shared memory dealer");
205
206 mServerCblk = static_cast<surface_flinger_cblk_t*>(mServerHeap->getBase());
207 LOGE_IF(mServerCblk==0, "can't get to shared control block's address");
208
209 new(mServerCblk) surface_flinger_cblk_t;
210
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800211 // initialize primary screen
212 // (other display should be initialized in the same manner, but
213 // asynchronously, as they could come and go. None of this is supported
214 // yet).
215 const GraphicPlane& plane(graphicPlane(dpy));
216 const DisplayHardware& hw = plane.displayHardware();
217 const uint32_t w = hw.getWidth();
218 const uint32_t h = hw.getHeight();
219 const uint32_t f = hw.getFormat();
220 hw.makeCurrent();
221
222 // initialize the shared control block
223 mServerCblk->connected |= 1<<dpy;
224 display_cblk_t* dcblk = mServerCblk->displays + dpy;
225 memset(dcblk, 0, sizeof(display_cblk_t));
Mathias Agopian2b92d892010-02-08 15:49:35 -0800226 dcblk->w = plane.getWidth();
227 dcblk->h = plane.getHeight();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800228 dcblk->format = f;
229 dcblk->orientation = ISurfaceComposer::eOrientationDefault;
230 dcblk->xdpi = hw.getDpiX();
231 dcblk->ydpi = hw.getDpiY();
232 dcblk->fps = hw.getRefreshRate();
233 dcblk->density = hw.getDensity();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800234
235 // Initialize OpenGL|ES
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800236 glPixelStorei(GL_UNPACK_ALIGNMENT, 4);
237 glPixelStorei(GL_PACK_ALIGNMENT, 4);
238 glEnableClientState(GL_VERTEX_ARRAY);
239 glEnable(GL_SCISSOR_TEST);
240 glShadeModel(GL_FLAT);
241 glDisable(GL_DITHER);
242 glDisable(GL_CULL_FACE);
243
244 const uint16_t g0 = pack565(0x0F,0x1F,0x0F);
245 const uint16_t g1 = pack565(0x17,0x2f,0x17);
246 const uint16_t textureData[4] = { g0, g1, g1, g0 };
247 glGenTextures(1, &mWormholeTexName);
248 glBindTexture(GL_TEXTURE_2D, mWormholeTexName);
249 glTexParameterx(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST);
250 glTexParameterx(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST);
251 glTexParameterx(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_REPEAT);
252 glTexParameterx(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_REPEAT);
253 glTexImage2D(GL_TEXTURE_2D, 0, GL_RGB, 2, 2, 0,
254 GL_RGB, GL_UNSIGNED_SHORT_5_6_5, textureData);
255
256 glViewport(0, 0, w, h);
257 glMatrixMode(GL_PROJECTION);
258 glLoadIdentity();
259 glOrthof(0, w, h, 0, 0, 1);
260
261 LayerDim::initDimmer(this, w, h);
262
263 mReadyToRunBarrier.open();
264
265 /*
266 * We're now ready to accept clients...
267 */
268
Mathias Agopiana1ecca92009-05-21 19:21:59 -0700269 // start boot animation
270 property_set("ctl.start", "bootanim");
271
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800272 return NO_ERROR;
273}
274
275// ----------------------------------------------------------------------------
276#if 0
277#pragma mark -
278#pragma mark Events Handler
279#endif
280
281void SurfaceFlinger::waitForEvent()
282{
Mathias Agopianf1d8e872009-04-20 19:39:12 -0700283 while (true) {
284 nsecs_t timeout = -1;
Mathias Agopian04087722009-12-01 17:23:28 -0800285 const nsecs_t freezeDisplayTimeout = ms2ns(5000);
Mathias Agopianf1d8e872009-04-20 19:39:12 -0700286 if (UNLIKELY(isFrozen())) {
287 // wait 5 seconds
Mathias Agopianf1d8e872009-04-20 19:39:12 -0700288 const nsecs_t now = systemTime();
289 if (mFreezeDisplayTime == 0) {
290 mFreezeDisplayTime = now;
291 }
292 nsecs_t waitTime = freezeDisplayTimeout - (now - mFreezeDisplayTime);
293 timeout = waitTime>0 ? waitTime : 0;
The Android Open Source Projectbcef13b2009-03-11 12:11:56 -0700294 }
Mathias Agopianf1d8e872009-04-20 19:39:12 -0700295
Mathias Agopianbb641242010-05-18 17:06:55 -0700296 sp<MessageBase> msg = mEventQueue.waitMessage(timeout);
Mathias Agopian04087722009-12-01 17:23:28 -0800297
298 // see if we timed out
299 if (isFrozen()) {
300 const nsecs_t now = systemTime();
301 nsecs_t frozenTime = (now - mFreezeDisplayTime);
302 if (frozenTime >= freezeDisplayTimeout) {
303 // we timed out and are still frozen
304 LOGW("timeout expired mFreezeDisplay=%d, mFreezeCount=%d",
305 mFreezeDisplay, mFreezeCount);
306 mFreezeDisplayTime = 0;
307 mFreezeCount = 0;
308 mFreezeDisplay = false;
309 }
310 }
311
Mathias Agopianf1d8e872009-04-20 19:39:12 -0700312 if (msg != 0) {
Mathias Agopianf1d8e872009-04-20 19:39:12 -0700313 switch (msg->what) {
314 case MessageQueue::INVALIDATE:
315 // invalidate message, just return to the main loop
316 return;
317 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800318 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800319 }
320}
321
322void SurfaceFlinger::signalEvent() {
Mathias Agopianf1d8e872009-04-20 19:39:12 -0700323 mEventQueue.invalidate();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800324}
325
326void SurfaceFlinger::signal() const {
Mathias Agopianf1d8e872009-04-20 19:39:12 -0700327 // this is the IPC call
328 const_cast<SurfaceFlinger*>(this)->signalEvent();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800329}
330
Mathias Agopianbb641242010-05-18 17:06:55 -0700331status_t SurfaceFlinger::postMessageAsync(const sp<MessageBase>& msg,
332 nsecs_t reltime, uint32_t flags)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800333{
Mathias Agopianbb641242010-05-18 17:06:55 -0700334 return mEventQueue.postMessage(msg, reltime, flags);
335}
336
337status_t SurfaceFlinger::postMessageSync(const sp<MessageBase>& msg,
338 nsecs_t reltime, uint32_t flags)
339{
340 status_t res = mEventQueue.postMessage(msg, reltime, flags);
341 if (res == NO_ERROR) {
342 msg->wait();
343 }
344 return res;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800345}
346
347// ----------------------------------------------------------------------------
348#if 0
349#pragma mark -
350#pragma mark Main loop
351#endif
352
353bool SurfaceFlinger::threadLoop()
354{
355 waitForEvent();
356
357 // check for transactions
358 if (UNLIKELY(mConsoleSignals)) {
359 handleConsoleEvents();
360 }
361
362 if (LIKELY(mTransactionCount == 0)) {
363 // if we're in a global transaction, don't do anything.
364 const uint32_t mask = eTransactionNeeded | eTraversalNeeded;
365 uint32_t transactionFlags = getTransactionFlags(mask);
366 if (LIKELY(transactionFlags)) {
367 handleTransaction(transactionFlags);
368 }
369 }
370
371 // post surfaces (if needed)
372 handlePageFlip();
373
374 const DisplayHardware& hw(graphicPlane(0).displayHardware());
Mathias Agopian8a77baa2009-09-27 22:47:27 -0700375 if (LIKELY(hw.canDraw() && !isFrozen())) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800376 // repaint the framebuffer (if needed)
Mathias Agopian35b48d12010-09-13 22:57:58 -0700377
378 const int index = hw.getCurrentBufferIndex();
379 GraphicLog& logger(GraphicLog::getInstance());
380
381 logger.log(GraphicLog::SF_REPAINT, index);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800382 handleRepaint();
383
Mathias Agopian74faca22009-09-17 16:18:16 -0700384 // inform the h/w that we're done compositing
Mathias Agopian35b48d12010-09-13 22:57:58 -0700385 logger.log(GraphicLog::SF_COMPOSITION_COMPLETE, index);
Mathias Agopian74faca22009-09-17 16:18:16 -0700386 hw.compositionComplete();
387
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800388 // release the clients before we flip ('cause flip might block)
Mathias Agopian35b48d12010-09-13 22:57:58 -0700389 logger.log(GraphicLog::SF_UNLOCK_CLIENTS, index);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800390 unlockClients();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800391
Mathias Agopian35b48d12010-09-13 22:57:58 -0700392 logger.log(GraphicLog::SF_SWAP_BUFFERS, index);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800393 postFramebuffer();
Mathias Agopian35b48d12010-09-13 22:57:58 -0700394
395 logger.log(GraphicLog::SF_REPAINT_DONE, index);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800396 } else {
397 // pretend we did the post
398 unlockClients();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800399 usleep(16667); // 60 fps period
400 }
401 return true;
402}
403
404void SurfaceFlinger::postFramebuffer()
405{
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800406 if (!mInvalidRegion.isEmpty()) {
407 const DisplayHardware& hw(graphicPlane(0).displayHardware());
Mathias Agopian9795c422009-08-26 16:36:26 -0700408 const nsecs_t now = systemTime();
409 mDebugInSwapBuffers = now;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800410 hw.flip(mInvalidRegion);
Mathias Agopian9795c422009-08-26 16:36:26 -0700411 mLastSwapBufferTime = systemTime() - now;
412 mDebugInSwapBuffers = 0;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800413 mInvalidRegion.clear();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800414 }
415}
416
417void SurfaceFlinger::handleConsoleEvents()
418{
419 // something to do with the console
420 const DisplayHardware& hw = graphicPlane(0).displayHardware();
421
422 int what = android_atomic_and(0, &mConsoleSignals);
423 if (what & eConsoleAcquired) {
424 hw.acquireScreen();
Mathias Agopian9daa5c92010-10-12 16:05:48 -0700425 // this is a temporary work-around, eventually this should be called
426 // by the power-manager
Mathias Agopianabd671a2010-10-14 14:54:06 -0700427 SurfaceFlinger::turnElectronBeamOn(mElectronBeamAnimationMode);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800428 }
429
Mathias Agopian59119e62010-10-11 12:37:43 -0700430 if (mDeferReleaseConsole && hw.isScreenAcquired()) {
Mathias Agopian62b74442009-04-14 23:02:51 -0700431 // We got the release signal before the acquire signal
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800432 mDeferReleaseConsole = false;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800433 hw.releaseScreen();
434 }
435
436 if (what & eConsoleReleased) {
Mathias Agopian59119e62010-10-11 12:37:43 -0700437 if (hw.isScreenAcquired()) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800438 hw.releaseScreen();
439 } else {
440 mDeferReleaseConsole = true;
441 }
442 }
443
444 mDirtyRegion.set(hw.bounds());
445}
446
447void SurfaceFlinger::handleTransaction(uint32_t transactionFlags)
448{
Mathias Agopian3d579642009-06-04 18:46:21 -0700449 Vector< sp<LayerBase> > ditchedLayers;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800450
Mathias Agopian4da75192010-08-10 17:19:56 -0700451 /*
452 * Perform and commit the transaction
453 */
454
Mathias Agopian3d579642009-06-04 18:46:21 -0700455 { // scope for the lock
456 Mutex::Autolock _l(mStateLock);
Mathias Agopian9795c422009-08-26 16:36:26 -0700457 const nsecs_t now = systemTime();
458 mDebugInTransaction = now;
Mathias Agopian3d579642009-06-04 18:46:21 -0700459 handleTransactionLocked(transactionFlags, ditchedLayers);
Mathias Agopian9795c422009-08-26 16:36:26 -0700460 mLastTransactionTime = systemTime() - now;
461 mDebugInTransaction = 0;
Mathias Agopian4da75192010-08-10 17:19:56 -0700462 // here the transaction has been committed
Mathias Agopian3d579642009-06-04 18:46:21 -0700463 }
464
Mathias Agopian4da75192010-08-10 17:19:56 -0700465 /*
466 * Clean-up all layers that went away
467 * (do this without the lock held)
468 */
Mathias Agopian3d579642009-06-04 18:46:21 -0700469 const size_t count = ditchedLayers.size();
470 for (size_t i=0 ; i<count ; i++) {
Mathias Agopian0852e672009-09-04 19:50:23 -0700471 if (ditchedLayers[i] != 0) {
472 //LOGD("ditching layer %p", ditchedLayers[i].get());
473 ditchedLayers[i]->ditch();
474 }
Mathias Agopian3d579642009-06-04 18:46:21 -0700475 }
476}
477
478void SurfaceFlinger::handleTransactionLocked(
479 uint32_t transactionFlags, Vector< sp<LayerBase> >& ditchedLayers)
480{
481 const LayerVector& currentLayers(mCurrentState.layersSortedByZ);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800482 const size_t count = currentLayers.size();
483
484 /*
485 * Traversal of the children
486 * (perform the transaction for each of them if needed)
487 */
488
489 const bool layersNeedTransaction = transactionFlags & eTraversalNeeded;
490 if (layersNeedTransaction) {
491 for (size_t i=0 ; i<count ; i++) {
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700492 const sp<LayerBase>& layer = currentLayers[i];
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800493 uint32_t trFlags = layer->getTransactionFlags(eTransactionNeeded);
494 if (!trFlags) continue;
495
496 const uint32_t flags = layer->doTransaction(0);
497 if (flags & Layer::eVisibleRegion)
498 mVisibleRegionsDirty = true;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800499 }
500 }
501
502 /*
503 * Perform our own transaction if needed
504 */
505
506 if (transactionFlags & eTransactionNeeded) {
507 if (mCurrentState.orientation != mDrawingState.orientation) {
508 // the orientation has changed, recompute all visible regions
509 // and invalidate everything.
510
511 const int dpy = 0;
512 const int orientation = mCurrentState.orientation;
Mathias Agopianc08731e2009-03-27 18:11:38 -0700513 const uint32_t type = mCurrentState.orientationType;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800514 GraphicPlane& plane(graphicPlane(dpy));
515 plane.setOrientation(orientation);
516
517 // update the shared control block
518 const DisplayHardware& hw(plane.displayHardware());
519 volatile display_cblk_t* dcblk = mServerCblk->displays + dpy;
520 dcblk->orientation = orientation;
Mathias Agopian2b92d892010-02-08 15:49:35 -0800521 dcblk->w = plane.getWidth();
522 dcblk->h = plane.getHeight();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800523
524 mVisibleRegionsDirty = true;
525 mDirtyRegion.set(hw.bounds());
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800526 }
527
528 if (mCurrentState.freezeDisplay != mDrawingState.freezeDisplay) {
529 // freezing or unfreezing the display -> trigger animation if needed
530 mFreezeDisplay = mCurrentState.freezeDisplay;
Mathias Agopian064e1e62010-03-01 17:51:17 -0800531 if (mFreezeDisplay)
532 mFreezeDisplayTime = 0;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800533 }
534
Mathias Agopian0aa758d2009-04-22 15:23:34 -0700535 if (currentLayers.size() > mDrawingState.layersSortedByZ.size()) {
536 // layers have been added
537 mVisibleRegionsDirty = true;
538 }
539
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800540 // some layers might have been removed, so
541 // we need to update the regions they're exposing.
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700542 if (mLayersRemoved) {
Mathias Agopian48d819a2009-09-10 19:41:18 -0700543 mLayersRemoved = false;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800544 mVisibleRegionsDirty = true;
Mathias Agopian0aa758d2009-04-22 15:23:34 -0700545 const LayerVector& previousLayers(mDrawingState.layersSortedByZ);
Mathias Agopian3d579642009-06-04 18:46:21 -0700546 const size_t count = previousLayers.size();
547 for (size_t i=0 ; i<count ; i++) {
Mathias Agopian0aa758d2009-04-22 15:23:34 -0700548 const sp<LayerBase>& layer(previousLayers[i]);
549 if (currentLayers.indexOf( layer ) < 0) {
550 // this layer is not visible anymore
Mathias Agopian3d579642009-06-04 18:46:21 -0700551 ditchedLayers.add(layer);
Mathias Agopian5d7126b2009-07-28 14:20:21 -0700552 mDirtyRegionRemovedLayer.orSelf(layer->visibleRegionScreen);
Mathias Agopian0aa758d2009-04-22 15:23:34 -0700553 }
554 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800555 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800556 }
557
558 commitTransaction();
559}
560
561sp<FreezeLock> SurfaceFlinger::getFreezeLock() const
562{
563 return new FreezeLock(const_cast<SurfaceFlinger *>(this));
564}
565
566void SurfaceFlinger::computeVisibleRegions(
567 LayerVector& currentLayers, Region& dirtyRegion, Region& opaqueRegion)
568{
569 const GraphicPlane& plane(graphicPlane(0));
570 const Transform& planeTransform(plane.transform());
Mathias Agopianab028732010-03-16 16:41:46 -0700571 const DisplayHardware& hw(plane.displayHardware());
572 const Region screenRegion(hw.bounds());
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800573
574 Region aboveOpaqueLayers;
575 Region aboveCoveredLayers;
576 Region dirty;
577
578 bool secureFrameBuffer = false;
579
580 size_t i = currentLayers.size();
581 while (i--) {
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700582 const sp<LayerBase>& layer = currentLayers[i];
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800583 layer->validateVisibility(planeTransform);
584
585 // start with the whole surface at its current location
Mathias Agopian97011222009-07-28 10:57:27 -0700586 const Layer::State& s(layer->drawingState());
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800587
Mathias Agopianab028732010-03-16 16:41:46 -0700588 /*
589 * opaqueRegion: area of a surface that is fully opaque.
590 */
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800591 Region opaqueRegion;
Mathias Agopianab028732010-03-16 16:41:46 -0700592
593 /*
594 * visibleRegion: area of a surface that is visible on screen
595 * and not fully transparent. This is essentially the layer's
596 * footprint minus the opaque regions above it.
597 * Areas covered by a translucent surface are considered visible.
598 */
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800599 Region visibleRegion;
Mathias Agopianab028732010-03-16 16:41:46 -0700600
601 /*
602 * coveredRegion: area of a surface that is covered by all
603 * visible regions above it (which includes the translucent areas).
604 */
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800605 Region coveredRegion;
Mathias Agopianab028732010-03-16 16:41:46 -0700606
607
608 // handle hidden surfaces by setting the visible region to empty
Mathias Agopian97011222009-07-28 10:57:27 -0700609 if (LIKELY(!(s.flags & ISurfaceComposer::eLayerHidden) && s.alpha)) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800610 const bool translucent = layer->needsBlending();
Mathias Agopian97011222009-07-28 10:57:27 -0700611 const Rect bounds(layer->visibleBounds());
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800612 visibleRegion.set(bounds);
Mathias Agopianab028732010-03-16 16:41:46 -0700613 visibleRegion.andSelf(screenRegion);
614 if (!visibleRegion.isEmpty()) {
615 // Remove the transparent area from the visible region
616 if (translucent) {
617 visibleRegion.subtractSelf(layer->transparentRegionScreen);
618 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800619
Mathias Agopianab028732010-03-16 16:41:46 -0700620 // compute the opaque region
621 const int32_t layerOrientation = layer->getOrientation();
622 if (s.alpha==255 && !translucent &&
623 ((layerOrientation & Transform::ROT_INVALID) == false)) {
624 // the opaque region is the layer's footprint
625 opaqueRegion = visibleRegion;
626 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800627 }
628 }
629
Mathias Agopianab028732010-03-16 16:41:46 -0700630 // Clip the covered region to the visible region
631 coveredRegion = aboveCoveredLayers.intersect(visibleRegion);
632
633 // Update aboveCoveredLayers for next (lower) layer
634 aboveCoveredLayers.orSelf(visibleRegion);
635
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800636 // subtract the opaque region covered by the layers above us
637 visibleRegion.subtractSelf(aboveOpaqueLayers);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800638
639 // compute this layer's dirty region
640 if (layer->contentDirty) {
641 // we need to invalidate the whole region
642 dirty = visibleRegion;
643 // as well, as the old visible region
644 dirty.orSelf(layer->visibleRegionScreen);
645 layer->contentDirty = false;
646 } else {
Mathias Agopiana8d44f72009-06-28 02:54:16 -0700647 /* compute the exposed region:
Mathias Agopianab028732010-03-16 16:41:46 -0700648 * the exposed region consists of two components:
649 * 1) what's VISIBLE now and was COVERED before
650 * 2) what's EXPOSED now less what was EXPOSED before
651 *
652 * note that (1) is conservative, we start with the whole
653 * visible region but only keep what used to be covered by
654 * something -- which mean it may have been exposed.
655 *
656 * (2) handles areas that were not covered by anything but got
657 * exposed because of a resize.
Mathias Agopiana8d44f72009-06-28 02:54:16 -0700658 */
Mathias Agopianab028732010-03-16 16:41:46 -0700659 const Region newExposed = visibleRegion - coveredRegion;
660 const Region oldVisibleRegion = layer->visibleRegionScreen;
661 const Region oldCoveredRegion = layer->coveredRegionScreen;
662 const Region oldExposed = oldVisibleRegion - oldCoveredRegion;
663 dirty = (visibleRegion&oldCoveredRegion) | (newExposed-oldExposed);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800664 }
665 dirty.subtractSelf(aboveOpaqueLayers);
666
667 // accumulate to the screen dirty region
668 dirtyRegion.orSelf(dirty);
669
Mathias Agopianab028732010-03-16 16:41:46 -0700670 // Update aboveOpaqueLayers for next (lower) layer
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800671 aboveOpaqueLayers.orSelf(opaqueRegion);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800672
673 // Store the visible region is screen space
674 layer->setVisibleRegion(visibleRegion);
675 layer->setCoveredRegion(coveredRegion);
676
Mathias Agopian97011222009-07-28 10:57:27 -0700677 // If a secure layer is partially visible, lock-down the screen!
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800678 if (layer->isSecure() && !visibleRegion.isEmpty()) {
679 secureFrameBuffer = true;
680 }
681 }
682
Mathias Agopian97011222009-07-28 10:57:27 -0700683 // invalidate the areas where a layer was removed
684 dirtyRegion.orSelf(mDirtyRegionRemovedLayer);
685 mDirtyRegionRemovedLayer.clear();
686
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800687 mSecureFrameBuffer = secureFrameBuffer;
688 opaqueRegion = aboveOpaqueLayers;
689}
690
691
692void SurfaceFlinger::commitTransaction()
693{
694 mDrawingState = mCurrentState;
Mathias Agopiancbb288b2009-09-07 16:32:45 -0700695 mResizeTransationPending = false;
696 mTransactionCV.broadcast();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800697}
698
699void SurfaceFlinger::handlePageFlip()
700{
701 bool visibleRegions = mVisibleRegionsDirty;
Mathias Agopian000ca8f2010-08-17 20:19:23 -0700702 LayerVector& currentLayers = const_cast<LayerVector&>(
703 mDrawingState.layersSortedByZ);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800704 visibleRegions |= lockPageFlip(currentLayers);
705
706 const DisplayHardware& hw = graphicPlane(0).displayHardware();
707 const Region screenRegion(hw.bounds());
708 if (visibleRegions) {
709 Region opaqueRegion;
710 computeVisibleRegions(currentLayers, mDirtyRegion, opaqueRegion);
Mathias Agopian4da75192010-08-10 17:19:56 -0700711
712 /*
713 * rebuild the visible layer list
714 */
715 mVisibleLayersSortedByZ.clear();
716 const LayerVector& currentLayers(mDrawingState.layersSortedByZ);
717 size_t count = currentLayers.size();
718 mVisibleLayersSortedByZ.setCapacity(count);
719 for (size_t i=0 ; i<count ; i++) {
720 if (!currentLayers[i]->visibleRegionScreen.isEmpty())
721 mVisibleLayersSortedByZ.add(currentLayers[i]);
722 }
723
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800724 mWormholeRegion = screenRegion.subtract(opaqueRegion);
725 mVisibleRegionsDirty = false;
726 }
727
728 unlockPageFlip(currentLayers);
729 mDirtyRegion.andSelf(screenRegion);
730}
731
732bool SurfaceFlinger::lockPageFlip(const LayerVector& currentLayers)
733{
734 bool recomputeVisibleRegions = false;
735 size_t count = currentLayers.size();
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700736 sp<LayerBase> const* layers = currentLayers.array();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800737 for (size_t i=0 ; i<count ; i++) {
Mathias Agopianb7e930d2010-06-01 15:12:58 -0700738 const sp<LayerBase>& layer(layers[i]);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800739 layer->lockPageFlip(recomputeVisibleRegions);
740 }
741 return recomputeVisibleRegions;
742}
743
744void SurfaceFlinger::unlockPageFlip(const LayerVector& currentLayers)
745{
746 const GraphicPlane& plane(graphicPlane(0));
747 const Transform& planeTransform(plane.transform());
748 size_t count = currentLayers.size();
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700749 sp<LayerBase> const* layers = currentLayers.array();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800750 for (size_t i=0 ; i<count ; i++) {
Mathias Agopianb7e930d2010-06-01 15:12:58 -0700751 const sp<LayerBase>& layer(layers[i]);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800752 layer->unlockPageFlip(planeTransform, mDirtyRegion);
753 }
754}
755
Mathias Agopianb8a55602009-06-26 19:06:36 -0700756
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800757void SurfaceFlinger::handleRepaint()
758{
Mathias Agopianb8a55602009-06-26 19:06:36 -0700759 // compute the invalid region
760 mInvalidRegion.orSelf(mDirtyRegion);
761 if (mInvalidRegion.isEmpty()) {
762 // nothing to do
763 return;
764 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800765
766 if (UNLIKELY(mDebugRegion)) {
767 debugFlashRegions();
768 }
769
Mathias Agopianb8a55602009-06-26 19:06:36 -0700770 // set the frame buffer
771 const DisplayHardware& hw(graphicPlane(0).displayHardware());
772 glMatrixMode(GL_MODELVIEW);
773 glLoadIdentity();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800774
775 uint32_t flags = hw.getFlags();
Mathias Agopiandf3ca302009-05-04 19:29:25 -0700776 if ((flags & DisplayHardware::SWAP_RECTANGLE) ||
777 (flags & DisplayHardware::BUFFER_PRESERVED))
778 {
Mathias Agopian29d06ac2009-06-29 18:49:56 -0700779 // we can redraw only what's dirty, but since SWAP_RECTANGLE only
780 // takes a rectangle, we must make sure to update that whole
781 // rectangle in that case
782 if (flags & DisplayHardware::SWAP_RECTANGLE) {
Mathias Agopianb7e930d2010-06-01 15:12:58 -0700783 // TODO: we really should be able to pass a region to
Mathias Agopian29d06ac2009-06-29 18:49:56 -0700784 // SWAP_RECTANGLE so that we don't have to redraw all this.
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800785 mDirtyRegion.set(mInvalidRegion.bounds());
786 } else {
Mathias Agopian29d06ac2009-06-29 18:49:56 -0700787 // in the BUFFER_PRESERVED case, obviously, we can update only
788 // what's needed and nothing more.
789 // NOTE: this is NOT a common case, as preserving the backbuffer
790 // is costly and usually involves copying the whole update back.
791 }
792 } else {
Mathias Agopian95a666b2009-09-24 14:57:26 -0700793 if (flags & DisplayHardware::PARTIAL_UPDATES) {
Mathias Agopian29d06ac2009-06-29 18:49:56 -0700794 // We need to redraw the rectangle that will be updated
795 // (pushed to the framebuffer).
Mathias Agopian95a666b2009-09-24 14:57:26 -0700796 // This is needed because PARTIAL_UPDATES only takes one
Mathias Agopian29d06ac2009-06-29 18:49:56 -0700797 // rectangle instead of a region (see DisplayHardware::flip())
798 mDirtyRegion.set(mInvalidRegion.bounds());
799 } else {
800 // we need to redraw everything (the whole screen)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800801 mDirtyRegion.set(hw.bounds());
802 mInvalidRegion = mDirtyRegion;
803 }
804 }
805
806 // compose all surfaces
807 composeSurfaces(mDirtyRegion);
808
809 // clear the dirty regions
810 mDirtyRegion.clear();
811}
812
813void SurfaceFlinger::composeSurfaces(const Region& dirty)
814{
815 if (UNLIKELY(!mWormholeRegion.isEmpty())) {
816 // should never happen unless the window manager has a bug
817 // draw something...
818 drawWormhole();
819 }
Mathias Agopian4da75192010-08-10 17:19:56 -0700820 const Vector< sp<LayerBase> >& layers(mVisibleLayersSortedByZ);
Mathias Agopian000ca8f2010-08-17 20:19:23 -0700821 const size_t count = layers.size();
822 for (size_t i=0 ; i<count ; ++i) {
Mathias Agopian45721772010-08-12 15:03:26 -0700823 const sp<LayerBase>& layer(layers[i]);
824 const Region clip(dirty.intersect(layer->visibleRegionScreen));
825 if (!clip.isEmpty()) {
826 layer->draw(clip);
827 }
828 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800829}
830
831void SurfaceFlinger::unlockClients()
832{
833 const LayerVector& drawingLayers(mDrawingState.layersSortedByZ);
834 const size_t count = drawingLayers.size();
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700835 sp<LayerBase> const* const layers = drawingLayers.array();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800836 for (size_t i=0 ; i<count ; ++i) {
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700837 const sp<LayerBase>& layer = layers[i];
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800838 layer->finishPageFlip();
839 }
840}
841
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800842void SurfaceFlinger::debugFlashRegions()
843{
Mathias Agopian0a917752010-06-14 21:20:00 -0700844 const DisplayHardware& hw(graphicPlane(0).displayHardware());
845 const uint32_t flags = hw.getFlags();
Mathias Agopiandf3ca302009-05-04 19:29:25 -0700846
Mathias Agopian0a917752010-06-14 21:20:00 -0700847 if (!((flags & DisplayHardware::SWAP_RECTANGLE) ||
848 (flags & DisplayHardware::BUFFER_PRESERVED))) {
849 const Region repaint((flags & DisplayHardware::PARTIAL_UPDATES) ?
850 mDirtyRegion.bounds() : hw.bounds());
851 composeSurfaces(repaint);
852 }
853
854 TextureManager::deactivateTextures();
855
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800856 glDisable(GL_BLEND);
857 glDisable(GL_DITHER);
858 glDisable(GL_SCISSOR_TEST);
859
Mathias Agopian0926f502009-05-04 14:17:04 -0700860 static int toggle = 0;
861 toggle = 1 - toggle;
862 if (toggle) {
Mathias Agopian0a917752010-06-14 21:20:00 -0700863 glColor4f(1, 0, 1, 1);
Mathias Agopian0926f502009-05-04 14:17:04 -0700864 } else {
Mathias Agopian0a917752010-06-14 21:20:00 -0700865 glColor4f(1, 1, 0, 1);
Mathias Agopian0926f502009-05-04 14:17:04 -0700866 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800867
Mathias Agopian20f68782009-05-11 00:03:41 -0700868 Region::const_iterator it = mDirtyRegion.begin();
869 Region::const_iterator const end = mDirtyRegion.end();
870 while (it != end) {
871 const Rect& r = *it++;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800872 GLfloat vertices[][2] = {
873 { r.left, r.top },
874 { r.left, r.bottom },
875 { r.right, r.bottom },
876 { r.right, r.top }
877 };
878 glVertexPointer(2, GL_FLOAT, 0, vertices);
879 glDrawArrays(GL_TRIANGLE_FAN, 0, 4);
880 }
Mathias Agopian0a917752010-06-14 21:20:00 -0700881
Mathias Agopianb8a55602009-06-26 19:06:36 -0700882 if (mInvalidRegion.isEmpty()) {
883 mDirtyRegion.dump("mDirtyRegion");
884 mInvalidRegion.dump("mInvalidRegion");
885 }
886 hw.flip(mInvalidRegion);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800887
888 if (mDebugRegion > 1)
Mathias Agopian0a917752010-06-14 21:20:00 -0700889 usleep(mDebugRegion * 1000);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800890
891 glEnable(GL_SCISSOR_TEST);
892 //mDirtyRegion.dump("mDirtyRegion");
893}
894
895void SurfaceFlinger::drawWormhole() const
896{
897 const Region region(mWormholeRegion.intersect(mDirtyRegion));
898 if (region.isEmpty())
899 return;
900
901 const DisplayHardware& hw(graphicPlane(0).displayHardware());
902 const int32_t width = hw.getWidth();
903 const int32_t height = hw.getHeight();
904
905 glDisable(GL_BLEND);
906 glDisable(GL_DITHER);
907
908 if (LIKELY(!mDebugBackground)) {
Mathias Agopian0a917752010-06-14 21:20:00 -0700909 glClearColor(0,0,0,0);
Mathias Agopian20f68782009-05-11 00:03:41 -0700910 Region::const_iterator it = region.begin();
911 Region::const_iterator const end = region.end();
912 while (it != end) {
913 const Rect& r = *it++;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800914 const GLint sy = height - (r.top + r.height());
915 glScissor(r.left, sy, r.width(), r.height());
916 glClear(GL_COLOR_BUFFER_BIT);
917 }
918 } else {
919 const GLshort vertices[][2] = { { 0, 0 }, { width, 0 },
920 { width, height }, { 0, height } };
921 const GLshort tcoords[][2] = { { 0, 0 }, { 1, 0 }, { 1, 1 }, { 0, 1 } };
922 glVertexPointer(2, GL_SHORT, 0, vertices);
923 glTexCoordPointer(2, GL_SHORT, 0, tcoords);
924 glEnableClientState(GL_TEXTURE_COORD_ARRAY);
Michael I. Gold7f198b62010-09-15 15:46:24 -0700925#if defined(GL_OES_EGL_image_external)
Mathias Agopian1f7bec62010-06-25 18:02:21 -0700926 if (GLExtensions::getInstance().haveTextureExternal()) {
927 glDisable(GL_TEXTURE_EXTERNAL_OES);
928 }
Mathias Agopian0a917752010-06-14 21:20:00 -0700929#endif
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800930 glEnable(GL_TEXTURE_2D);
931 glBindTexture(GL_TEXTURE_2D, mWormholeTexName);
932 glTexEnvx(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE);
933 glMatrixMode(GL_TEXTURE);
934 glLoadIdentity();
935 glScalef(width*(1.0f/32.0f), height*(1.0f/32.0f), 1);
Mathias Agopian20f68782009-05-11 00:03:41 -0700936 Region::const_iterator it = region.begin();
937 Region::const_iterator const end = region.end();
938 while (it != end) {
939 const Rect& r = *it++;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800940 const GLint sy = height - (r.top + r.height());
941 glScissor(r.left, sy, r.width(), r.height());
942 glDrawArrays(GL_TRIANGLE_FAN, 0, 4);
943 }
944 glDisableClientState(GL_TEXTURE_COORD_ARRAY);
945 }
946}
947
948void SurfaceFlinger::debugShowFPS() const
949{
950 static int mFrameCount;
951 static int mLastFrameCount = 0;
952 static nsecs_t mLastFpsTime = 0;
953 static float mFps = 0;
954 mFrameCount++;
955 nsecs_t now = systemTime();
956 nsecs_t diff = now - mLastFpsTime;
957 if (diff > ms2ns(250)) {
958 mFps = ((mFrameCount - mLastFrameCount) * float(s2ns(1))) / diff;
959 mLastFpsTime = now;
960 mLastFrameCount = mFrameCount;
961 }
962 // XXX: mFPS has the value we want
963 }
964
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700965status_t SurfaceFlinger::addLayer(const sp<LayerBase>& layer)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800966{
967 Mutex::Autolock _l(mStateLock);
968 addLayer_l(layer);
969 setTransactionFlags(eTransactionNeeded|eTraversalNeeded);
970 return NO_ERROR;
971}
972
Mathias Agopian96f08192010-06-02 23:28:45 -0700973status_t SurfaceFlinger::addLayer_l(const sp<LayerBase>& layer)
974{
Mathias Agopianf6679fc2010-08-10 18:09:09 -0700975 ssize_t i = mCurrentState.layersSortedByZ.add(layer);
Mathias Agopian96f08192010-06-02 23:28:45 -0700976 return (i < 0) ? status_t(i) : status_t(NO_ERROR);
977}
978
979ssize_t SurfaceFlinger::addClientLayer(const sp<Client>& client,
980 const sp<LayerBaseClient>& lbc)
981{
982 Mutex::Autolock _l(mStateLock);
983
984 // attach this layer to the client
985 ssize_t name = client->attachLayer(lbc);
986
987 // add this layer to the current state list
988 addLayer_l(lbc);
989
990 return name;
991}
992
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700993status_t SurfaceFlinger::removeLayer(const sp<LayerBase>& layer)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800994{
995 Mutex::Autolock _l(mStateLock);
Mathias Agopian3d579642009-06-04 18:46:21 -0700996 status_t err = purgatorizeLayer_l(layer);
997 if (err == NO_ERROR)
998 setTransactionFlags(eTransactionNeeded);
999 return err;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001000}
1001
Mathias Agopian076b1cc2009-04-10 14:24:30 -07001002status_t SurfaceFlinger::removeLayer_l(const sp<LayerBase>& layerBase)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001003{
Mathias Agopianb7e930d2010-06-01 15:12:58 -07001004 sp<LayerBaseClient> lbc(layerBase->getLayerBaseClient());
1005 if (lbc != 0) {
1006 mLayerMap.removeItem( lbc->getSurface()->asBinder() );
1007 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001008 ssize_t index = mCurrentState.layersSortedByZ.remove(layerBase);
1009 if (index >= 0) {
Mathias Agopian076b1cc2009-04-10 14:24:30 -07001010 mLayersRemoved = true;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001011 return NO_ERROR;
1012 }
Mathias Agopian3d579642009-06-04 18:46:21 -07001013 return status_t(index);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001014}
1015
Mathias Agopian9a112062009-04-17 19:36:26 -07001016status_t SurfaceFlinger::purgatorizeLayer_l(const sp<LayerBase>& layerBase)
1017{
Mathias Agopian8c0a3d72009-09-23 16:44:00 -07001018 // remove the layer from the main list (through a transaction).
Mathias Agopian9a112062009-04-17 19:36:26 -07001019 ssize_t err = removeLayer_l(layerBase);
Mathias Agopian8c0a3d72009-09-23 16:44:00 -07001020
Mathias Agopian0b3ad462009-10-02 18:12:30 -07001021 layerBase->onRemoved();
1022
Mathias Agopian3d579642009-06-04 18:46:21 -07001023 // it's possible that we don't find a layer, because it might
1024 // have been destroyed already -- this is not technically an error
Mathias Agopian96f08192010-06-02 23:28:45 -07001025 // from the user because there is a race between Client::destroySurface(),
1026 // ~Client() and ~ISurface().
Mathias Agopian9a112062009-04-17 19:36:26 -07001027 return (err == NAME_NOT_FOUND) ? status_t(NO_ERROR) : err;
1028}
1029
Mathias Agopian96f08192010-06-02 23:28:45 -07001030status_t SurfaceFlinger::invalidateLayerVisibility(const sp<LayerBase>& layer)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001031{
Mathias Agopian96f08192010-06-02 23:28:45 -07001032 layer->forceVisibilityTransaction();
1033 setTransactionFlags(eTraversalNeeded);
1034 return NO_ERROR;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001035}
1036
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001037uint32_t SurfaceFlinger::getTransactionFlags(uint32_t flags)
1038{
1039 return android_atomic_and(~flags, &mTransactionFlags) & flags;
1040}
1041
Mathias Agopianbb641242010-05-18 17:06:55 -07001042uint32_t SurfaceFlinger::setTransactionFlags(uint32_t flags)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001043{
1044 uint32_t old = android_atomic_or(flags, &mTransactionFlags);
1045 if ((old & flags)==0) { // wake the server up
Mathias Agopianbb641242010-05-18 17:06:55 -07001046 signalEvent();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001047 }
1048 return old;
1049}
1050
1051void SurfaceFlinger::openGlobalTransaction()
1052{
1053 android_atomic_inc(&mTransactionCount);
1054}
1055
1056void SurfaceFlinger::closeGlobalTransaction()
1057{
1058 if (android_atomic_dec(&mTransactionCount) == 1) {
1059 signalEvent();
Mathias Agopiancbb288b2009-09-07 16:32:45 -07001060
1061 // if there is a transaction with a resize, wait for it to
1062 // take effect before returning.
1063 Mutex::Autolock _l(mStateLock);
1064 while (mResizeTransationPending) {
Mathias Agopian448f0152009-09-30 14:42:13 -07001065 status_t err = mTransactionCV.waitRelative(mStateLock, s2ns(5));
1066 if (CC_UNLIKELY(err != NO_ERROR)) {
1067 // just in case something goes wrong in SF, return to the
1068 // called after a few seconds.
1069 LOGW_IF(err == TIMED_OUT, "closeGlobalTransaction timed out!");
1070 mResizeTransationPending = false;
1071 break;
1072 }
Mathias Agopiancbb288b2009-09-07 16:32:45 -07001073 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001074 }
1075}
1076
1077status_t SurfaceFlinger::freezeDisplay(DisplayID dpy, uint32_t flags)
1078{
1079 if (UNLIKELY(uint32_t(dpy) >= DISPLAY_COUNT))
1080 return BAD_VALUE;
1081
1082 Mutex::Autolock _l(mStateLock);
1083 mCurrentState.freezeDisplay = 1;
1084 setTransactionFlags(eTransactionNeeded);
1085
1086 // flags is intended to communicate some sort of animation behavior
Mathias Agopian62b74442009-04-14 23:02:51 -07001087 // (for instance fading)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001088 return NO_ERROR;
1089}
1090
1091status_t SurfaceFlinger::unfreezeDisplay(DisplayID dpy, uint32_t flags)
1092{
1093 if (UNLIKELY(uint32_t(dpy) >= DISPLAY_COUNT))
1094 return BAD_VALUE;
1095
1096 Mutex::Autolock _l(mStateLock);
1097 mCurrentState.freezeDisplay = 0;
1098 setTransactionFlags(eTransactionNeeded);
1099
1100 // flags is intended to communicate some sort of animation behavior
Mathias Agopian62b74442009-04-14 23:02:51 -07001101 // (for instance fading)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001102 return NO_ERROR;
1103}
1104
Mathias Agopianc08731e2009-03-27 18:11:38 -07001105int SurfaceFlinger::setOrientation(DisplayID dpy,
1106 int orientation, uint32_t flags)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001107{
1108 if (UNLIKELY(uint32_t(dpy) >= DISPLAY_COUNT))
1109 return BAD_VALUE;
1110
1111 Mutex::Autolock _l(mStateLock);
1112 if (mCurrentState.orientation != orientation) {
1113 if (uint32_t(orientation)<=eOrientation270 || orientation==42) {
Mathias Agopianc08731e2009-03-27 18:11:38 -07001114 mCurrentState.orientationType = flags;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001115 mCurrentState.orientation = orientation;
1116 setTransactionFlags(eTransactionNeeded);
1117 mTransactionCV.wait(mStateLock);
1118 } else {
1119 orientation = BAD_VALUE;
1120 }
1121 }
1122 return orientation;
1123}
1124
Mathias Agopian96f08192010-06-02 23:28:45 -07001125sp<ISurface> SurfaceFlinger::createSurface(const sp<Client>& client, int pid,
Mathias Agopian7e27f052010-05-28 14:22:23 -07001126 const String8& name, ISurfaceComposerClient::surface_data_t* params,
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001127 DisplayID d, uint32_t w, uint32_t h, PixelFormat format,
1128 uint32_t flags)
1129{
Mathias Agopian076b1cc2009-04-10 14:24:30 -07001130 sp<LayerBaseClient> layer;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001131 sp<LayerBaseClient::Surface> surfaceHandle;
Mathias Agopian6e2d6482009-07-09 18:16:43 -07001132
1133 if (int32_t(w|h) < 0) {
1134 LOGE("createSurface() failed, w or h is negative (w=%d, h=%d)",
1135 int(w), int(h));
1136 return surfaceHandle;
1137 }
1138
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001139 //LOGD("createSurface for pid %d (%d x %d)", pid, w, h);
Mathias Agopianb7e930d2010-06-01 15:12:58 -07001140 sp<Layer> normalLayer;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001141 switch (flags & eFXSurfaceMask) {
1142 case eFXSurfaceNormal:
1143 if (UNLIKELY(flags & ePushBuffers)) {
Mathias Agopian96f08192010-06-02 23:28:45 -07001144 layer = createPushBuffersSurface(client, d, w, h, flags);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001145 } else {
Mathias Agopianb7e930d2010-06-01 15:12:58 -07001146 normalLayer = createNormalSurface(client, d, w, h, flags, format);
1147 layer = normalLayer;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001148 }
1149 break;
1150 case eFXSurfaceBlur:
Mathias Agopian96f08192010-06-02 23:28:45 -07001151 layer = createBlurSurface(client, d, w, h, flags);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001152 break;
1153 case eFXSurfaceDim:
Mathias Agopian96f08192010-06-02 23:28:45 -07001154 layer = createDimSurface(client, d, w, h, flags);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001155 break;
1156 }
1157
Mathias Agopian076b1cc2009-04-10 14:24:30 -07001158 if (layer != 0) {
Mathias Agopian96f08192010-06-02 23:28:45 -07001159 layer->initStates(w, h, flags);
Mathias Agopian285dbde2010-03-01 16:09:43 -08001160 layer->setName(name);
Mathias Agopian96f08192010-06-02 23:28:45 -07001161 ssize_t token = addClientLayer(client, layer);
Mathias Agopianb7e930d2010-06-01 15:12:58 -07001162
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001163 surfaceHandle = layer->getSurface();
Mathias Agopian1c97d2e2009-08-19 17:46:26 -07001164 if (surfaceHandle != 0) {
Mathias Agopian96f08192010-06-02 23:28:45 -07001165 params->token = token;
Mathias Agopian1c97d2e2009-08-19 17:46:26 -07001166 params->identity = surfaceHandle->getIdentity();
1167 params->width = w;
1168 params->height = h;
1169 params->format = format;
Mathias Agopianb7e930d2010-06-01 15:12:58 -07001170 if (normalLayer != 0) {
1171 Mutex::Autolock _l(mStateLock);
1172 mLayerMap.add(surfaceHandle->asBinder(), normalLayer);
1173 }
Mathias Agopian1c97d2e2009-08-19 17:46:26 -07001174 }
Mathias Agopianb7e930d2010-06-01 15:12:58 -07001175
Mathias Agopian96f08192010-06-02 23:28:45 -07001176 setTransactionFlags(eTransactionNeeded);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001177 }
1178
1179 return surfaceHandle;
1180}
1181
Mathias Agopianb7e930d2010-06-01 15:12:58 -07001182sp<Layer> SurfaceFlinger::createNormalSurface(
Mathias Agopianf9d93272009-06-19 17:00:27 -07001183 const sp<Client>& client, DisplayID display,
Mathias Agopian96f08192010-06-02 23:28:45 -07001184 uint32_t w, uint32_t h, uint32_t flags,
Mathias Agopian1c97d2e2009-08-19 17:46:26 -07001185 PixelFormat& format)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001186{
1187 // initialize the surfaces
1188 switch (format) { // TODO: take h/w into account
1189 case PIXEL_FORMAT_TRANSPARENT:
1190 case PIXEL_FORMAT_TRANSLUCENT:
1191 format = PIXEL_FORMAT_RGBA_8888;
1192 break;
1193 case PIXEL_FORMAT_OPAQUE:
Mathias Agopiana8f3e4e2010-06-30 15:43:47 -07001194#ifdef NO_RGBX_8888
1195 format = PIXEL_FORMAT_RGB_565;
1196#else
Mathias Agopian8f105402010-04-05 18:01:24 -07001197 format = PIXEL_FORMAT_RGBX_8888;
Mathias Agopiana8f3e4e2010-06-30 15:43:47 -07001198#endif
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001199 break;
1200 }
1201
Mathias Agopiana8f3e4e2010-06-30 15:43:47 -07001202#ifdef NO_RGBX_8888
1203 if (format == PIXEL_FORMAT_RGBX_8888)
1204 format = PIXEL_FORMAT_RGBA_8888;
1205#endif
1206
Mathias Agopian96f08192010-06-02 23:28:45 -07001207 sp<Layer> layer = new Layer(this, display, client);
Mathias Agopianf9d93272009-06-19 17:00:27 -07001208 status_t err = layer->setBuffers(w, h, format, flags);
Mathias Agopian96f08192010-06-02 23:28:45 -07001209 if (LIKELY(err != NO_ERROR)) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001210 LOGE("createNormalSurfaceLocked() failed (%s)", strerror(-err));
Mathias Agopian076b1cc2009-04-10 14:24:30 -07001211 layer.clear();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001212 }
1213 return layer;
1214}
1215
Mathias Agopianb7e930d2010-06-01 15:12:58 -07001216sp<LayerBlur> SurfaceFlinger::createBlurSurface(
Mathias Agopianf9d93272009-06-19 17:00:27 -07001217 const sp<Client>& client, DisplayID display,
Mathias Agopian96f08192010-06-02 23:28:45 -07001218 uint32_t w, uint32_t h, uint32_t flags)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001219{
Mathias Agopian96f08192010-06-02 23:28:45 -07001220 sp<LayerBlur> layer = new LayerBlur(this, display, client);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001221 layer->initStates(w, h, flags);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001222 return layer;
1223}
1224
Mathias Agopianb7e930d2010-06-01 15:12:58 -07001225sp<LayerDim> SurfaceFlinger::createDimSurface(
Mathias Agopianf9d93272009-06-19 17:00:27 -07001226 const sp<Client>& client, DisplayID display,
Mathias Agopian96f08192010-06-02 23:28:45 -07001227 uint32_t w, uint32_t h, uint32_t flags)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001228{
Mathias Agopian96f08192010-06-02 23:28:45 -07001229 sp<LayerDim> layer = new LayerDim(this, display, client);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001230 layer->initStates(w, h, flags);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001231 return layer;
1232}
1233
Mathias Agopianb7e930d2010-06-01 15:12:58 -07001234sp<LayerBuffer> SurfaceFlinger::createPushBuffersSurface(
Mathias Agopianf9d93272009-06-19 17:00:27 -07001235 const sp<Client>& client, DisplayID display,
Mathias Agopian96f08192010-06-02 23:28:45 -07001236 uint32_t w, uint32_t h, uint32_t flags)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001237{
Mathias Agopian96f08192010-06-02 23:28:45 -07001238 sp<LayerBuffer> layer = new LayerBuffer(this, display, client);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001239 layer->initStates(w, h, flags);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001240 return layer;
1241}
1242
Mathias Agopian96f08192010-06-02 23:28:45 -07001243status_t SurfaceFlinger::removeSurface(const sp<Client>& client, SurfaceID sid)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001244{
Mathias Agopian9a112062009-04-17 19:36:26 -07001245 /*
1246 * called by the window manager, when a surface should be marked for
1247 * destruction.
Mathias Agopian0aa758d2009-04-22 15:23:34 -07001248 *
1249 * The surface is removed from the current and drawing lists, but placed
1250 * in the purgatory queue, so it's not destroyed right-away (we need
1251 * to wait for all client's references to go away first).
Mathias Agopian9a112062009-04-17 19:36:26 -07001252 */
Mathias Agopian9a112062009-04-17 19:36:26 -07001253
Mathias Agopian48d819a2009-09-10 19:41:18 -07001254 status_t err = NAME_NOT_FOUND;
Mathias Agopian0aa758d2009-04-22 15:23:34 -07001255 Mutex::Autolock _l(mStateLock);
Mathias Agopian96f08192010-06-02 23:28:45 -07001256 sp<LayerBaseClient> layer = client->getLayerUser(sid);
Mathias Agopian48d819a2009-09-10 19:41:18 -07001257 if (layer != 0) {
1258 err = purgatorizeLayer_l(layer);
1259 if (err == NO_ERROR) {
Mathias Agopian48d819a2009-09-10 19:41:18 -07001260 setTransactionFlags(eTransactionNeeded);
1261 }
Mathias Agopian9a112062009-04-17 19:36:26 -07001262 }
1263 return err;
1264}
1265
1266status_t SurfaceFlinger::destroySurface(const sp<LayerBaseClient>& layer)
1267{
Mathias Agopian759fdb22009-07-02 17:33:40 -07001268 // called by ~ISurface() when all references are gone
Mathias Agopian9a112062009-04-17 19:36:26 -07001269
Mathias Agopianf1d8e872009-04-20 19:39:12 -07001270 class MessageDestroySurface : public MessageBase {
Mathias Agopian0aa758d2009-04-22 15:23:34 -07001271 SurfaceFlinger* flinger;
Mathias Agopianf1d8e872009-04-20 19:39:12 -07001272 sp<LayerBaseClient> layer;
1273 public:
Mathias Agopian0aa758d2009-04-22 15:23:34 -07001274 MessageDestroySurface(
1275 SurfaceFlinger* flinger, const sp<LayerBaseClient>& layer)
1276 : flinger(flinger), layer(layer) { }
Mathias Agopianf1d8e872009-04-20 19:39:12 -07001277 virtual bool handler() {
Mathias Agopiancd8c5e22009-06-19 16:24:02 -07001278 sp<LayerBaseClient> l(layer);
1279 layer.clear(); // clear it outside of the lock;
Mathias Agopianf1d8e872009-04-20 19:39:12 -07001280 Mutex::Autolock _l(flinger->mStateLock);
Mathias Agopian759fdb22009-07-02 17:33:40 -07001281 /*
1282 * remove the layer from the current list -- chances are that it's
1283 * not in the list anyway, because it should have been removed
1284 * already upon request of the client (eg: window manager).
1285 * However, a buggy client could have not done that.
1286 * Since we know we don't have any more clients, we don't need
1287 * to use the purgatory.
1288 */
Mathias Agopiancd8c5e22009-06-19 16:24:02 -07001289 status_t err = flinger->removeLayer_l(l);
Mathias Agopian8c0a3d72009-09-23 16:44:00 -07001290 LOGE_IF(err<0 && err != NAME_NOT_FOUND,
1291 "error removing layer=%p (%s)", l.get(), strerror(-err));
Mathias Agopianf1d8e872009-04-20 19:39:12 -07001292 return true;
1293 }
1294 };
Mathias Agopian3d579642009-06-04 18:46:21 -07001295
Mathias Agopianbb641242010-05-18 17:06:55 -07001296 postMessageAsync( new MessageDestroySurface(this, layer) );
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001297 return NO_ERROR;
1298}
1299
1300status_t SurfaceFlinger::setClientState(
Mathias Agopian96f08192010-06-02 23:28:45 -07001301 const sp<Client>& client,
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001302 int32_t count,
1303 const layer_state_t* states)
1304{
1305 Mutex::Autolock _l(mStateLock);
1306 uint32_t flags = 0;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001307 for (int i=0 ; i<count ; i++) {
Mathias Agopian96f08192010-06-02 23:28:45 -07001308 const layer_state_t& s(states[i]);
1309 sp<LayerBaseClient> layer(client->getLayerUser(s.surface));
Mathias Agopian076b1cc2009-04-10 14:24:30 -07001310 if (layer != 0) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001311 const uint32_t what = s.what;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001312 if (what & ePositionChanged) {
1313 if (layer->setPosition(s.x, s.y))
1314 flags |= eTraversalNeeded;
1315 }
1316 if (what & eLayerChanged) {
Mathias Agopianf6679fc2010-08-10 18:09:09 -07001317 ssize_t idx = mCurrentState.layersSortedByZ.indexOf(layer);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001318 if (layer->setLayer(s.z)) {
Mathias Agopianf6679fc2010-08-10 18:09:09 -07001319 mCurrentState.layersSortedByZ.removeAt(idx);
1320 mCurrentState.layersSortedByZ.add(layer);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001321 // we need traversal (state changed)
1322 // AND transaction (list changed)
1323 flags |= eTransactionNeeded|eTraversalNeeded;
1324 }
1325 }
1326 if (what & eSizeChanged) {
Mathias Agopiancbb288b2009-09-07 16:32:45 -07001327 if (layer->setSize(s.w, s.h)) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001328 flags |= eTraversalNeeded;
Mathias Agopiancbb288b2009-09-07 16:32:45 -07001329 mResizeTransationPending = true;
1330 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001331 }
1332 if (what & eAlphaChanged) {
1333 if (layer->setAlpha(uint8_t(255.0f*s.alpha+0.5f)))
1334 flags |= eTraversalNeeded;
1335 }
1336 if (what & eMatrixChanged) {
1337 if (layer->setMatrix(s.matrix))
1338 flags |= eTraversalNeeded;
1339 }
1340 if (what & eTransparentRegionChanged) {
1341 if (layer->setTransparentRegionHint(s.transparentRegion))
1342 flags |= eTraversalNeeded;
1343 }
1344 if (what & eVisibilityChanged) {
1345 if (layer->setFlags(s.flags, s.mask))
1346 flags |= eTraversalNeeded;
1347 }
1348 }
1349 }
1350 if (flags) {
1351 setTransactionFlags(flags);
1352 }
1353 return NO_ERROR;
1354}
1355
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001356void SurfaceFlinger::screenReleased(int dpy)
1357{
1358 // this may be called by a signal handler, we can't do too much in here
1359 android_atomic_or(eConsoleReleased, &mConsoleSignals);
1360 signalEvent();
1361}
1362
1363void SurfaceFlinger::screenAcquired(int dpy)
1364{
1365 // this may be called by a signal handler, we can't do too much in here
1366 android_atomic_or(eConsoleAcquired, &mConsoleSignals);
1367 signalEvent();
1368}
1369
1370status_t SurfaceFlinger::dump(int fd, const Vector<String16>& args)
1371{
1372 const size_t SIZE = 1024;
1373 char buffer[SIZE];
1374 String8 result;
Mathias Agopian375f5632009-06-15 18:24:59 -07001375 if (!mDump.checkCalling()) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001376 snprintf(buffer, SIZE, "Permission Denial: "
1377 "can't dump SurfaceFlinger from pid=%d, uid=%d\n",
1378 IPCThreadState::self()->getCallingPid(),
1379 IPCThreadState::self()->getCallingUid());
1380 result.append(buffer);
1381 } else {
Mathias Agopian9795c422009-08-26 16:36:26 -07001382
1383 // figure out if we're stuck somewhere
1384 const nsecs_t now = systemTime();
1385 const nsecs_t inSwapBuffers(mDebugInSwapBuffers);
1386 const nsecs_t inTransaction(mDebugInTransaction);
1387 nsecs_t inSwapBuffersDuration = (inSwapBuffers) ? now-inSwapBuffers : 0;
1388 nsecs_t inTransactionDuration = (inTransaction) ? now-inTransaction : 0;
1389
1390 // Try to get the main lock, but don't insist if we can't
1391 // (this would indicate SF is stuck, but we want to be able to
1392 // print something in dumpsys).
1393 int retry = 3;
1394 while (mStateLock.tryLock()<0 && --retry>=0) {
1395 usleep(1000000);
1396 }
1397 const bool locked(retry >= 0);
1398 if (!locked) {
1399 snprintf(buffer, SIZE,
1400 "SurfaceFlinger appears to be unresponsive, "
1401 "dumping anyways (no locks held)\n");
1402 result.append(buffer);
1403 }
1404
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001405 const LayerVector& currentLayers = mCurrentState.layersSortedByZ;
1406 const size_t count = currentLayers.size();
1407 for (size_t i=0 ; i<count ; i++) {
Mathias Agopian1b5e1022010-04-20 17:55:49 -07001408 const sp<LayerBase>& layer(currentLayers[i]);
1409 layer->dump(result, buffer, SIZE);
1410 const Layer::State& s(layer->drawingState());
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001411 s.transparentRegion.dump(result, "transparentRegion");
1412 layer->transparentRegionScreen.dump(result, "transparentRegionScreen");
1413 layer->visibleRegionScreen.dump(result, "visibleRegionScreen");
1414 }
Mathias Agopian1b5e1022010-04-20 17:55:49 -07001415
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001416 mWormholeRegion.dump(result, "WormholeRegion");
1417 const DisplayHardware& hw(graphicPlane(0).displayHardware());
1418 snprintf(buffer, SIZE,
1419 " display frozen: %s, freezeCount=%d, orientation=%d, canDraw=%d\n",
1420 mFreezeDisplay?"yes":"no", mFreezeCount,
1421 mCurrentState.orientation, hw.canDraw());
1422 result.append(buffer);
Mathias Agopian9795c422009-08-26 16:36:26 -07001423 snprintf(buffer, SIZE,
1424 " last eglSwapBuffers() time: %f us\n"
1425 " last transaction time : %f us\n",
1426 mLastSwapBufferTime/1000.0, mLastTransactionTime/1000.0);
1427 result.append(buffer);
Mathias Agopian1b5e1022010-04-20 17:55:49 -07001428
Mathias Agopian9795c422009-08-26 16:36:26 -07001429 if (inSwapBuffersDuration || !locked) {
1430 snprintf(buffer, SIZE, " eglSwapBuffers time: %f us\n",
1431 inSwapBuffersDuration/1000.0);
1432 result.append(buffer);
1433 }
Mathias Agopian1b5e1022010-04-20 17:55:49 -07001434
Mathias Agopian9795c422009-08-26 16:36:26 -07001435 if (inTransactionDuration || !locked) {
1436 snprintf(buffer, SIZE, " transaction time: %f us\n",
1437 inTransactionDuration/1000.0);
1438 result.append(buffer);
1439 }
Mathias Agopian1b5e1022010-04-20 17:55:49 -07001440
Mathias Agopian3330b202009-10-05 17:07:12 -07001441 const GraphicBufferAllocator& alloc(GraphicBufferAllocator::get());
Mathias Agopian076b1cc2009-04-10 14:24:30 -07001442 alloc.dump(result);
Mathias Agopian9795c422009-08-26 16:36:26 -07001443
1444 if (locked) {
1445 mStateLock.unlock();
1446 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001447 }
1448 write(fd, result.string(), result.size());
1449 return NO_ERROR;
1450}
1451
1452status_t SurfaceFlinger::onTransact(
1453 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
1454{
1455 switch (code) {
1456 case CREATE_CONNECTION:
1457 case OPEN_GLOBAL_TRANSACTION:
1458 case CLOSE_GLOBAL_TRANSACTION:
1459 case SET_ORIENTATION:
1460 case FREEZE_DISPLAY:
1461 case UNFREEZE_DISPLAY:
1462 case BOOT_FINISHED:
Mathias Agopian59119e62010-10-11 12:37:43 -07001463 case TURN_ELECTRON_BEAM_OFF:
Mathias Agopian9daa5c92010-10-12 16:05:48 -07001464 case TURN_ELECTRON_BEAM_ON:
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001465 {
1466 // codes that require permission check
1467 IPCThreadState* ipc = IPCThreadState::self();
1468 const int pid = ipc->getCallingPid();
Mathias Agopiana1ecca92009-05-21 19:21:59 -07001469 const int uid = ipc->getCallingUid();
Mathias Agopian375f5632009-06-15 18:24:59 -07001470 if ((uid != AID_GRAPHICS) && !mAccessSurfaceFlinger.check(pid, uid)) {
1471 LOGE("Permission Denial: "
1472 "can't access SurfaceFlinger pid=%d, uid=%d", pid, uid);
1473 return PERMISSION_DENIED;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001474 }
Mathias Agopian1b0b30d2010-09-24 11:26:58 -07001475 break;
1476 }
1477 case CAPTURE_SCREEN:
1478 {
1479 // codes that require permission check
1480 IPCThreadState* ipc = IPCThreadState::self();
1481 const int pid = ipc->getCallingPid();
1482 const int uid = ipc->getCallingUid();
1483 if ((uid != AID_GRAPHICS) && !mReadFramebuffer.check(pid, uid)) {
1484 LOGE("Permission Denial: "
1485 "can't read framebuffer pid=%d, uid=%d", pid, uid);
1486 return PERMISSION_DENIED;
1487 }
1488 break;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001489 }
1490 }
Mathias Agopian1b0b30d2010-09-24 11:26:58 -07001491
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001492 status_t err = BnSurfaceComposer::onTransact(code, data, reply, flags);
1493 if (err == UNKNOWN_TRANSACTION || err == PERMISSION_DENIED) {
Mathias Agopianb8a55602009-06-26 19:06:36 -07001494 CHECK_INTERFACE(ISurfaceComposer, data, reply);
Mathias Agopian375f5632009-06-15 18:24:59 -07001495 if (UNLIKELY(!mHardwareTest.checkCalling())) {
1496 IPCThreadState* ipc = IPCThreadState::self();
1497 const int pid = ipc->getCallingPid();
1498 const int uid = ipc->getCallingUid();
1499 LOGE("Permission Denial: "
1500 "can't access SurfaceFlinger pid=%d, uid=%d", pid, uid);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001501 return PERMISSION_DENIED;
1502 }
1503 int n;
1504 switch (code) {
Mathias Agopian01b76682009-04-16 20:04:08 -07001505 case 1000: // SHOW_CPU, NOT SUPPORTED ANYMORE
Mathias Agopian35b48d12010-09-13 22:57:58 -07001506 case 1001: // SHOW_FPS, NOT SUPPORTED ANYMORE
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001507 return NO_ERROR;
1508 case 1002: // SHOW_UPDATES
1509 n = data.readInt32();
1510 mDebugRegion = n ? n : (mDebugRegion ? 0 : 1);
1511 return NO_ERROR;
1512 case 1003: // SHOW_BACKGROUND
1513 n = data.readInt32();
1514 mDebugBackground = n ? 1 : 0;
1515 return NO_ERROR;
1516 case 1004:{ // repaint everything
1517 Mutex::Autolock _l(mStateLock);
1518 const DisplayHardware& hw(graphicPlane(0).displayHardware());
1519 mDirtyRegion.set(hw.bounds()); // careful that's not thread-safe
1520 signalEvent();
Mathias Agopiancbb288b2009-09-07 16:32:45 -07001521 return NO_ERROR;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001522 }
Mathias Agopiancbb288b2009-09-07 16:32:45 -07001523 case 1005:{ // force transaction
1524 setTransactionFlags(eTransactionNeeded|eTraversalNeeded);
1525 return NO_ERROR;
1526 }
Mathias Agopian35b48d12010-09-13 22:57:58 -07001527 case 1006:{ // enable/disable GraphicLog
1528 int enabled = data.readInt32();
1529 GraphicLog::getInstance().setEnabled(enabled);
1530 return NO_ERROR;
1531 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001532 case 1007: // set mFreezeCount
1533 mFreezeCount = data.readInt32();
Mathias Agopian04087722009-12-01 17:23:28 -08001534 mFreezeDisplayTime = 0;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001535 return NO_ERROR;
1536 case 1010: // interrogate.
Mathias Agopian01b76682009-04-16 20:04:08 -07001537 reply->writeInt32(0);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001538 reply->writeInt32(0);
1539 reply->writeInt32(mDebugRegion);
1540 reply->writeInt32(mDebugBackground);
1541 return NO_ERROR;
1542 case 1013: {
1543 Mutex::Autolock _l(mStateLock);
1544 const DisplayHardware& hw(graphicPlane(0).displayHardware());
1545 reply->writeInt32(hw.getPageFlipCount());
1546 }
1547 return NO_ERROR;
1548 }
1549 }
1550 return err;
1551}
1552
Mathias Agopian59119e62010-10-11 12:37:43 -07001553// ---------------------------------------------------------------------------
1554
Mathias Agopian9daa5c92010-10-12 16:05:48 -07001555status_t SurfaceFlinger::renderScreenToTextureLocked(DisplayID dpy,
1556 GLuint* textureName, GLfloat* uOut, GLfloat* vOut)
Mathias Agopian59119e62010-10-11 12:37:43 -07001557{
Mathias Agopian59119e62010-10-11 12:37:43 -07001558 if (!GLExtensions::getInstance().haveFramebufferObject())
1559 return INVALID_OPERATION;
1560
1561 // get screen geometry
Mathias Agopian59119e62010-10-11 12:37:43 -07001562 const DisplayHardware& hw(graphicPlane(dpy).displayHardware());
Mathias Agopian59119e62010-10-11 12:37:43 -07001563 const uint32_t hw_w = hw.getWidth();
1564 const uint32_t hw_h = hw.getHeight();
Mathias Agopian59119e62010-10-11 12:37:43 -07001565 GLfloat u = 1;
1566 GLfloat v = 1;
1567
1568 // make sure to clear all GL error flags
1569 while ( glGetError() != GL_NO_ERROR ) ;
1570
1571 // create a FBO
1572 GLuint name, tname;
1573 glGenTextures(1, &tname);
1574 glBindTexture(GL_TEXTURE_2D, tname);
Mathias Agopian9daa5c92010-10-12 16:05:48 -07001575 glTexImage2D(GL_TEXTURE_2D, 0, GL_RGB,
1576 hw_w, hw_h, 0, GL_RGB, GL_UNSIGNED_BYTE, 0);
Mathias Agopian59119e62010-10-11 12:37:43 -07001577 if (glGetError() != GL_NO_ERROR) {
Mathias Agopian015fb3f2010-10-14 12:19:37 -07001578 while ( glGetError() != GL_NO_ERROR ) ;
Mathias Agopian59119e62010-10-11 12:37:43 -07001579 GLint tw = (2 << (31 - clz(hw_w)));
1580 GLint th = (2 << (31 - clz(hw_h)));
Mathias Agopian9daa5c92010-10-12 16:05:48 -07001581 glTexImage2D(GL_TEXTURE_2D, 0, GL_RGB,
1582 tw, th, 0, GL_RGB, GL_UNSIGNED_BYTE, 0);
Mathias Agopian59119e62010-10-11 12:37:43 -07001583 u = GLfloat(hw_w) / tw;
1584 v = GLfloat(hw_h) / th;
1585 }
1586 glGenFramebuffersOES(1, &name);
1587 glBindFramebufferOES(GL_FRAMEBUFFER_OES, name);
Mathias Agopian9daa5c92010-10-12 16:05:48 -07001588 glFramebufferTexture2DOES(GL_FRAMEBUFFER_OES,
1589 GL_COLOR_ATTACHMENT0_OES, GL_TEXTURE_2D, tname, 0);
Mathias Agopian59119e62010-10-11 12:37:43 -07001590
Mathias Agopian9daa5c92010-10-12 16:05:48 -07001591 // redraw the screen entirely...
1592 glClearColor(0,0,0,1);
1593 glClear(GL_COLOR_BUFFER_BIT);
1594 const Vector< sp<LayerBase> >& layers(mVisibleLayersSortedByZ);
1595 const size_t count = layers.size();
1596 for (size_t i=0 ; i<count ; ++i) {
1597 const sp<LayerBase>& layer(layers[i]);
1598 layer->drawForSreenShot();
1599 }
1600
1601 // back to main framebuffer
1602 glBindFramebufferOES(GL_FRAMEBUFFER_OES, 0);
1603 glDisable(GL_SCISSOR_TEST);
1604 glDeleteFramebuffersOES(1, &name);
1605
1606 *textureName = tname;
1607 *uOut = u;
1608 *vOut = v;
1609 return NO_ERROR;
1610}
1611
1612// ---------------------------------------------------------------------------
1613
1614status_t SurfaceFlinger::electronBeamOffAnimationImplLocked()
1615{
1616 status_t result = PERMISSION_DENIED;
1617
1618 if (!GLExtensions::getInstance().haveFramebufferObject())
1619 return INVALID_OPERATION;
1620
1621 // get screen geometry
1622 const DisplayHardware& hw(graphicPlane(0).displayHardware());
1623 const uint32_t hw_w = hw.getWidth();
1624 const uint32_t hw_h = hw.getHeight();
1625 const Region screenBounds(hw.bounds());
1626
1627 GLfloat u, v;
1628 GLuint tname;
1629 result = renderScreenToTextureLocked(0, &tname, &u, &v);
1630 if (result != NO_ERROR) {
1631 return result;
1632 }
1633
1634 GLfloat vtx[8];
1635 const GLfloat texCoords[4][2] = { {0,v}, {0,0}, {u,0}, {u,v} };
1636 glEnable(GL_TEXTURE_2D);
1637 glBindTexture(GL_TEXTURE_2D, tname);
1638 glTexEnvx(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE);
1639 glTexParameterx(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
1640 glTexParameterx(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
1641 glTexCoordPointer(2, GL_FLOAT, 0, texCoords);
1642 glEnableClientState(GL_TEXTURE_COORD_ARRAY);
1643 glVertexPointer(2, GL_FLOAT, 0, vtx);
1644
1645 class s_curve_interpolator {
1646 const float nbFrames, s, v;
1647 public:
1648 s_curve_interpolator(int nbFrames, float s)
1649 : nbFrames(1.0f / (nbFrames-1)), s(s),
1650 v(1.0f + expf(-s + 0.5f*s)) {
1651 }
1652 float operator()(int f) {
1653 const float x = f * nbFrames;
1654 return ((1.0f/(1.0f + expf(-x*s + 0.5f*s))) - 0.5f) * v + 0.5f;
1655 }
1656 };
1657
1658 class v_stretch {
1659 const GLfloat hw_w, hw_h;
1660 public:
1661 v_stretch(uint32_t hw_w, uint32_t hw_h)
1662 : hw_w(hw_w), hw_h(hw_h) {
1663 }
1664 void operator()(GLfloat* vtx, float v) {
1665 const GLfloat w = hw_w + (hw_w * v);
1666 const GLfloat h = hw_h - (hw_h * v);
1667 const GLfloat x = (hw_w - w) * 0.5f;
1668 const GLfloat y = (hw_h - h) * 0.5f;
1669 vtx[0] = x; vtx[1] = y;
1670 vtx[2] = x; vtx[3] = y + h;
1671 vtx[4] = x + w; vtx[5] = y + h;
1672 vtx[6] = x + w; vtx[7] = y;
1673 }
1674 };
1675
1676 class h_stretch {
1677 const GLfloat hw_w, hw_h;
1678 public:
1679 h_stretch(uint32_t hw_w, uint32_t hw_h)
1680 : hw_w(hw_w), hw_h(hw_h) {
1681 }
1682 void operator()(GLfloat* vtx, float v) {
1683 const GLfloat w = hw_w - (hw_w * v);
1684 const GLfloat h = 1.0f;
1685 const GLfloat x = (hw_w - w) * 0.5f;
1686 const GLfloat y = (hw_h - h) * 0.5f;
1687 vtx[0] = x; vtx[1] = y;
1688 vtx[2] = x; vtx[3] = y + h;
1689 vtx[4] = x + w; vtx[5] = y + h;
1690 vtx[6] = x + w; vtx[7] = y;
1691 }
1692 };
1693
1694 // the full animation is 24 frames
1695 const int nbFrames = 12;
1696 s_curve_interpolator itr(nbFrames, 7.5f);
1697 s_curve_interpolator itg(nbFrames, 8.0f);
1698 s_curve_interpolator itb(nbFrames, 8.5f);
1699
1700 v_stretch vverts(hw_w, hw_h);
1701 glEnable(GL_BLEND);
1702 glBlendFunc(GL_ONE, GL_ONE);
1703 for (int i=0 ; i<nbFrames ; i++) {
1704 float x, y, w, h;
1705 const float vr = itr(i);
1706 const float vg = itg(i);
1707 const float vb = itb(i);
1708
1709 // clear screen
1710 glColorMask(1,1,1,1);
Mathias Agopian59119e62010-10-11 12:37:43 -07001711 glClear(GL_COLOR_BUFFER_BIT);
Mathias Agopian59119e62010-10-11 12:37:43 -07001712 glEnable(GL_TEXTURE_2D);
Mathias Agopian59119e62010-10-11 12:37:43 -07001713
Mathias Agopian9daa5c92010-10-12 16:05:48 -07001714 // draw the red plane
1715 vverts(vtx, vr);
1716 glColorMask(1,0,0,1);
1717 glDrawArrays(GL_TRIANGLE_FAN, 0, 4);
Mathias Agopian59119e62010-10-11 12:37:43 -07001718
Mathias Agopian9daa5c92010-10-12 16:05:48 -07001719 // draw the green plane
1720 vverts(vtx, vg);
1721 glColorMask(0,1,0,1);
1722 glDrawArrays(GL_TRIANGLE_FAN, 0, 4);
Mathias Agopian59119e62010-10-11 12:37:43 -07001723
Mathias Agopian9daa5c92010-10-12 16:05:48 -07001724 // draw the blue plane
1725 vverts(vtx, vb);
1726 glColorMask(0,0,1,1);
1727 glDrawArrays(GL_TRIANGLE_FAN, 0, 4);
Mathias Agopian59119e62010-10-11 12:37:43 -07001728
Mathias Agopian9daa5c92010-10-12 16:05:48 -07001729 // draw the white highlight (we use the last vertices)
Mathias Agopian59119e62010-10-11 12:37:43 -07001730 glDisable(GL_TEXTURE_2D);
1731 glColorMask(1,1,1,1);
Mathias Agopian9daa5c92010-10-12 16:05:48 -07001732 glColor4f(vg, vg, vg, 1);
1733 glDrawArrays(GL_TRIANGLE_FAN, 0, 4);
1734 hw.flip(screenBounds);
Mathias Agopian59119e62010-10-11 12:37:43 -07001735 }
1736
Mathias Agopian9daa5c92010-10-12 16:05:48 -07001737 h_stretch hverts(hw_w, hw_h);
1738 glDisable(GL_BLEND);
1739 glDisable(GL_TEXTURE_2D);
1740 glColorMask(1,1,1,1);
1741 for (int i=0 ; i<nbFrames ; i++) {
1742 const float v = itg(i);
1743 hverts(vtx, v);
1744 glClear(GL_COLOR_BUFFER_BIT);
1745 glColor4f(1-v, 1-v, 1-v, 1);
1746 glDrawArrays(GL_TRIANGLE_FAN, 0, 4);
1747 hw.flip(screenBounds);
1748 }
1749
1750 glColorMask(1,1,1,1);
1751 glEnable(GL_SCISSOR_TEST);
1752 glDisableClientState(GL_TEXTURE_COORD_ARRAY);
1753 glDeleteTextures(1, &tname);
1754 return NO_ERROR;
1755}
1756
1757status_t SurfaceFlinger::electronBeamOnAnimationImplLocked()
1758{
1759 status_t result = PERMISSION_DENIED;
1760
1761 if (!GLExtensions::getInstance().haveFramebufferObject())
1762 return INVALID_OPERATION;
1763
1764
1765 // get screen geometry
1766 const DisplayHardware& hw(graphicPlane(0).displayHardware());
1767 const uint32_t hw_w = hw.getWidth();
1768 const uint32_t hw_h = hw.getHeight();
1769 const Region screenBounds(hw.bounds());
1770
1771 GLfloat u, v;
1772 GLuint tname;
1773 result = renderScreenToTextureLocked(0, &tname, &u, &v);
1774 if (result != NO_ERROR) {
1775 return result;
1776 }
1777
1778 // back to main framebuffer
1779 glBindFramebufferOES(GL_FRAMEBUFFER_OES, 0);
1780 glDisable(GL_SCISSOR_TEST);
1781
1782 GLfloat vtx[8];
1783 const GLfloat texCoords[4][2] = { {0,v}, {0,0}, {u,0}, {u,v} };
1784 glEnable(GL_TEXTURE_2D);
1785 glBindTexture(GL_TEXTURE_2D, tname);
1786 glTexEnvx(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE);
1787 glTexParameterx(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
1788 glTexParameterx(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
1789 glTexCoordPointer(2, GL_FLOAT, 0, texCoords);
1790 glEnableClientState(GL_TEXTURE_COORD_ARRAY);
1791 glVertexPointer(2, GL_FLOAT, 0, vtx);
1792
1793 class s_curve_interpolator {
1794 const float nbFrames, s, v;
1795 public:
1796 s_curve_interpolator(int nbFrames, float s)
1797 : nbFrames(1.0f / (nbFrames-1)), s(s),
1798 v(1.0f + expf(-s + 0.5f*s)) {
1799 }
1800 float operator()(int f) {
1801 const float x = f * nbFrames;
1802 return ((1.0f/(1.0f + expf(-x*s + 0.5f*s))) - 0.5f) * v + 0.5f;
1803 }
1804 };
1805
1806 class v_stretch {
1807 const GLfloat hw_w, hw_h;
1808 public:
1809 v_stretch(uint32_t hw_w, uint32_t hw_h)
1810 : hw_w(hw_w), hw_h(hw_h) {
1811 }
1812 void operator()(GLfloat* vtx, float v) {
1813 const GLfloat w = hw_w + (hw_w * v);
1814 const GLfloat h = hw_h - (hw_h * v);
1815 const GLfloat x = (hw_w - w) * 0.5f;
1816 const GLfloat y = (hw_h - h) * 0.5f;
1817 vtx[0] = x; vtx[1] = y;
1818 vtx[2] = x; vtx[3] = y + h;
1819 vtx[4] = x + w; vtx[5] = y + h;
1820 vtx[6] = x + w; vtx[7] = y;
1821 }
1822 };
1823
1824 class h_stretch {
1825 const GLfloat hw_w, hw_h;
1826 public:
1827 h_stretch(uint32_t hw_w, uint32_t hw_h)
1828 : hw_w(hw_w), hw_h(hw_h) {
1829 }
1830 void operator()(GLfloat* vtx, float v) {
1831 const GLfloat w = hw_w - (hw_w * v);
1832 const GLfloat h = 1.0f;
1833 const GLfloat x = (hw_w - w) * 0.5f;
1834 const GLfloat y = (hw_h - h) * 0.5f;
1835 vtx[0] = x; vtx[1] = y;
1836 vtx[2] = x; vtx[3] = y + h;
1837 vtx[4] = x + w; vtx[5] = y + h;
1838 vtx[6] = x + w; vtx[7] = y;
1839 }
1840 };
1841
1842 // the full animation is 24 frames
1843 const int nbFrames = 12;
1844 s_curve_interpolator itr(nbFrames, 7.5f);
1845 s_curve_interpolator itg(nbFrames, 8.0f);
1846 s_curve_interpolator itb(nbFrames, 8.5f);
1847
1848 h_stretch hverts(hw_w, hw_h);
1849 glDisable(GL_BLEND);
1850 glDisable(GL_TEXTURE_2D);
1851 glColorMask(1,1,1,1);
1852 for (int i=nbFrames-1 ; i>=0 ; i--) {
1853 const float v = itg(i);
1854 hverts(vtx, v);
1855 glClear(GL_COLOR_BUFFER_BIT);
1856 glColor4f(1-v, 1-v, 1-v, 1);
1857 glDrawArrays(GL_TRIANGLE_FAN, 0, 4);
1858 hw.flip(screenBounds);
1859 }
1860
1861 v_stretch vverts(hw_w, hw_h);
1862 glEnable(GL_BLEND);
1863 glBlendFunc(GL_ONE, GL_ONE);
1864 for (int i=nbFrames-1 ; i>=0 ; i--) {
1865 float x, y, w, h;
1866 const float vr = itr(i);
1867 const float vg = itg(i);
1868 const float vb = itb(i);
1869
1870 // clear screen
1871 glColorMask(1,1,1,1);
1872 glClear(GL_COLOR_BUFFER_BIT);
1873 glEnable(GL_TEXTURE_2D);
1874
1875 // draw the red plane
1876 vverts(vtx, vr);
1877 glColorMask(1,0,0,1);
1878 glDrawArrays(GL_TRIANGLE_FAN, 0, 4);
1879
1880 // draw the green plane
1881 vverts(vtx, vg);
1882 glColorMask(0,1,0,1);
1883 glDrawArrays(GL_TRIANGLE_FAN, 0, 4);
1884
1885 // draw the blue plane
1886 vverts(vtx, vb);
1887 glColorMask(0,0,1,1);
1888 glDrawArrays(GL_TRIANGLE_FAN, 0, 4);
1889
1890 hw.flip(screenBounds);
1891 }
1892
1893 glColorMask(1,1,1,1);
1894 glEnable(GL_SCISSOR_TEST);
1895 glDisableClientState(GL_TEXTURE_COORD_ARRAY);
Mathias Agopian59119e62010-10-11 12:37:43 -07001896 glDeleteTextures(1, &tname);
1897
Mathias Agopian9daa5c92010-10-12 16:05:48 -07001898 return NO_ERROR;
1899}
1900
1901// ---------------------------------------------------------------------------
1902
Mathias Agopianabd671a2010-10-14 14:54:06 -07001903status_t SurfaceFlinger::turnElectronBeamOffImplLocked(int32_t mode)
Mathias Agopian9daa5c92010-10-12 16:05:48 -07001904{
1905 DisplayHardware& hw(graphicPlane(0).editDisplayHardware());
1906 if (!hw.canDraw()) {
1907 // we're already off
1908 return NO_ERROR;
1909 }
Mathias Agopianabd671a2010-10-14 14:54:06 -07001910 if (mode & ISurfaceComposer::eElectronBeamAnimationOff) {
1911 electronBeamOffAnimationImplLocked();
1912 }
1913
1914 // always clear the whole screen at the end of the animation
1915 glClearColor(0,0,0,1);
1916 glDisable(GL_SCISSOR_TEST);
1917 glClear(GL_COLOR_BUFFER_BIT);
1918 glEnable(GL_SCISSOR_TEST);
1919 hw.flip( Region(hw.bounds()) );
1920
Mathias Agopian015fb3f2010-10-14 12:19:37 -07001921 hw.setCanDraw(false);
1922 return NO_ERROR;
Mathias Agopian59119e62010-10-11 12:37:43 -07001923}
1924
1925status_t SurfaceFlinger::turnElectronBeamOff(int32_t mode)
1926{
Mathias Agopian59119e62010-10-11 12:37:43 -07001927 class MessageTurnElectronBeamOff : public MessageBase {
1928 SurfaceFlinger* flinger;
Mathias Agopianabd671a2010-10-14 14:54:06 -07001929 int32_t mode;
Mathias Agopian59119e62010-10-11 12:37:43 -07001930 status_t result;
1931 public:
Mathias Agopianabd671a2010-10-14 14:54:06 -07001932 MessageTurnElectronBeamOff(SurfaceFlinger* flinger, int32_t mode)
1933 : flinger(flinger), mode(mode), result(PERMISSION_DENIED) {
Mathias Agopian59119e62010-10-11 12:37:43 -07001934 }
1935 status_t getResult() const {
1936 return result;
1937 }
1938 virtual bool handler() {
1939 Mutex::Autolock _l(flinger->mStateLock);
Mathias Agopianabd671a2010-10-14 14:54:06 -07001940 result = flinger->turnElectronBeamOffImplLocked(mode);
Mathias Agopian59119e62010-10-11 12:37:43 -07001941 return true;
1942 }
1943 };
1944
Mathias Agopianabd671a2010-10-14 14:54:06 -07001945 sp<MessageBase> msg = new MessageTurnElectronBeamOff(this, mode);
Mathias Agopian59119e62010-10-11 12:37:43 -07001946 status_t res = postMessageSync(msg);
1947 if (res == NO_ERROR) {
1948 res = static_cast<MessageTurnElectronBeamOff*>( msg.get() )->getResult();
Mathias Agopian9daa5c92010-10-12 16:05:48 -07001949
1950 // work-around: when the power-manager calls us we activate the
1951 // animation. eventually, the "on" animation will be called
1952 // by the power-manager itself
Mathias Agopianabd671a2010-10-14 14:54:06 -07001953 mElectronBeamAnimationMode = mode;
Mathias Agopian59119e62010-10-11 12:37:43 -07001954 }
1955 return res;
1956}
1957
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001958// ---------------------------------------------------------------------------
Mathias Agopianb7e930d2010-06-01 15:12:58 -07001959
Mathias Agopianabd671a2010-10-14 14:54:06 -07001960status_t SurfaceFlinger::turnElectronBeamOnImplLocked(int32_t mode)
Mathias Agopian9daa5c92010-10-12 16:05:48 -07001961{
1962 DisplayHardware& hw(graphicPlane(0).editDisplayHardware());
1963 if (hw.canDraw()) {
1964 // we're already on
1965 return NO_ERROR;
1966 }
Mathias Agopianabd671a2010-10-14 14:54:06 -07001967 if (mode & ISurfaceComposer::eElectronBeamAnimationOn) {
1968 electronBeamOnAnimationImplLocked();
1969 }
Mathias Agopian015fb3f2010-10-14 12:19:37 -07001970 hw.setCanDraw(true);
Mathias Agopiana7f03732010-10-14 12:46:24 -07001971
1972 // make sure to redraw the whole screen when the animation is done
1973 mDirtyRegion.set(hw.bounds());
1974 signalEvent();
1975
Mathias Agopian015fb3f2010-10-14 12:19:37 -07001976 return NO_ERROR;
Mathias Agopian9daa5c92010-10-12 16:05:48 -07001977}
1978
1979status_t SurfaceFlinger::turnElectronBeamOn(int32_t mode)
1980{
Mathias Agopian9daa5c92010-10-12 16:05:48 -07001981 class MessageTurnElectronBeamOn : public MessageBase {
1982 SurfaceFlinger* flinger;
Mathias Agopianabd671a2010-10-14 14:54:06 -07001983 int32_t mode;
Mathias Agopian9daa5c92010-10-12 16:05:48 -07001984 status_t result;
1985 public:
Mathias Agopianabd671a2010-10-14 14:54:06 -07001986 MessageTurnElectronBeamOn(SurfaceFlinger* flinger, int32_t mode)
1987 : flinger(flinger), mode(mode), result(PERMISSION_DENIED) {
Mathias Agopian9daa5c92010-10-12 16:05:48 -07001988 }
1989 status_t getResult() const {
1990 return result;
1991 }
1992 virtual bool handler() {
1993 Mutex::Autolock _l(flinger->mStateLock);
Mathias Agopianabd671a2010-10-14 14:54:06 -07001994 result = flinger->turnElectronBeamOnImplLocked(mode);
Mathias Agopian9daa5c92010-10-12 16:05:48 -07001995 return true;
1996 }
1997 };
1998
Mathias Agopianabd671a2010-10-14 14:54:06 -07001999 postMessageAsync( new MessageTurnElectronBeamOn(this, mode) );
Mathias Agopian9daa5c92010-10-12 16:05:48 -07002000 return NO_ERROR;
2001}
2002
2003// ---------------------------------------------------------------------------
2004
Mathias Agopiandf85c452010-09-29 13:02:36 -07002005status_t SurfaceFlinger::captureScreenImplLocked(DisplayID dpy,
2006 sp<IMemoryHeap>* heap,
2007 uint32_t* w, uint32_t* h, PixelFormat* f,
2008 uint32_t sw, uint32_t sh)
2009{
2010 status_t result = PERMISSION_DENIED;
2011
2012 // only one display supported for now
2013 if (UNLIKELY(uint32_t(dpy) >= DISPLAY_COUNT))
2014 return BAD_VALUE;
2015
2016 if (!GLExtensions::getInstance().haveFramebufferObject())
2017 return INVALID_OPERATION;
2018
2019 // get screen geometry
2020 const DisplayHardware& hw(graphicPlane(dpy).displayHardware());
2021 const uint32_t hw_w = hw.getWidth();
2022 const uint32_t hw_h = hw.getHeight();
2023
2024 if ((sw > hw_w) || (sh > hw_h))
2025 return BAD_VALUE;
2026
2027 sw = (!sw) ? hw_w : sw;
2028 sh = (!sh) ? hw_h : sh;
2029 const size_t size = sw * sh * 4;
2030
2031 // make sure to clear all GL error flags
2032 while ( glGetError() != GL_NO_ERROR ) ;
2033
2034 // create a FBO
2035 GLuint name, tname;
2036 glGenRenderbuffersOES(1, &tname);
2037 glBindRenderbufferOES(GL_RENDERBUFFER_OES, tname);
2038 glRenderbufferStorageOES(GL_RENDERBUFFER_OES, GL_RGBA8_OES, sw, sh);
2039 glGenFramebuffersOES(1, &name);
2040 glBindFramebufferOES(GL_FRAMEBUFFER_OES, name);
2041 glFramebufferRenderbufferOES(GL_FRAMEBUFFER_OES,
2042 GL_COLOR_ATTACHMENT0_OES, GL_RENDERBUFFER_OES, tname);
2043
2044 GLenum status = glCheckFramebufferStatusOES(GL_FRAMEBUFFER_OES);
2045 if (status == GL_FRAMEBUFFER_COMPLETE_OES) {
2046
2047 // invert everything, b/c glReadPixel() below will invert the FB
2048 glViewport(0, 0, sw, sh);
2049 glMatrixMode(GL_PROJECTION);
2050 glPushMatrix();
2051 glLoadIdentity();
2052 glOrthof(0, hw_w, 0, hw_h, 0, 1);
2053 glMatrixMode(GL_MODELVIEW);
2054
2055 // redraw the screen entirely...
2056 glClearColor(0,0,0,1);
2057 glClear(GL_COLOR_BUFFER_BIT);
2058 const Vector< sp<LayerBase> >& layers(mVisibleLayersSortedByZ);
2059 const size_t count = layers.size();
2060 for (size_t i=0 ; i<count ; ++i) {
2061 const sp<LayerBase>& layer(layers[i]);
2062 layer->drawForSreenShot();
2063 }
2064
2065 // XXX: this is needed on tegra
2066 glScissor(0, 0, sw, sh);
2067
2068 // check for errors and return screen capture
2069 if (glGetError() != GL_NO_ERROR) {
2070 // error while rendering
2071 result = INVALID_OPERATION;
2072 } else {
2073 // allocate shared memory large enough to hold the
2074 // screen capture
2075 sp<MemoryHeapBase> base(
2076 new MemoryHeapBase(size, 0, "screen-capture") );
2077 void* const ptr = base->getBase();
2078 if (ptr) {
2079 // capture the screen with glReadPixels()
2080 glReadPixels(0, 0, sw, sh, GL_RGBA, GL_UNSIGNED_BYTE, ptr);
2081 if (glGetError() == GL_NO_ERROR) {
2082 *heap = base;
2083 *w = sw;
2084 *h = sh;
2085 *f = PIXEL_FORMAT_RGBA_8888;
2086 result = NO_ERROR;
2087 }
2088 } else {
2089 result = NO_MEMORY;
2090 }
2091 }
2092
2093 glEnable(GL_SCISSOR_TEST);
2094 glViewport(0, 0, hw_w, hw_h);
2095 glMatrixMode(GL_PROJECTION);
2096 glPopMatrix();
2097 glMatrixMode(GL_MODELVIEW);
2098
2099
2100 } else {
2101 result = BAD_VALUE;
2102 }
2103
2104 // release FBO resources
2105 glBindFramebufferOES(GL_FRAMEBUFFER_OES, 0);
2106 glDeleteRenderbuffersOES(1, &tname);
2107 glDeleteFramebuffersOES(1, &name);
2108 return result;
2109}
2110
2111
Mathias Agopian1b0b30d2010-09-24 11:26:58 -07002112status_t SurfaceFlinger::captureScreen(DisplayID dpy,
2113 sp<IMemoryHeap>* heap,
Mathias Agopiandf85c452010-09-29 13:02:36 -07002114 uint32_t* width, uint32_t* height, PixelFormat* format,
2115 uint32_t sw, uint32_t sh)
Mathias Agopian1b0b30d2010-09-24 11:26:58 -07002116{
2117 // only one display supported for now
2118 if (UNLIKELY(uint32_t(dpy) >= DISPLAY_COUNT))
2119 return BAD_VALUE;
2120
2121 if (!GLExtensions::getInstance().haveFramebufferObject())
2122 return INVALID_OPERATION;
2123
2124 class MessageCaptureScreen : public MessageBase {
2125 SurfaceFlinger* flinger;
2126 DisplayID dpy;
2127 sp<IMemoryHeap>* heap;
2128 uint32_t* w;
2129 uint32_t* h;
2130 PixelFormat* f;
Mathias Agopiandf85c452010-09-29 13:02:36 -07002131 uint32_t sw;
2132 uint32_t sh;
Mathias Agopian1b0b30d2010-09-24 11:26:58 -07002133 status_t result;
2134 public:
2135 MessageCaptureScreen(SurfaceFlinger* flinger, DisplayID dpy,
Mathias Agopiandf85c452010-09-29 13:02:36 -07002136 sp<IMemoryHeap>* heap, uint32_t* w, uint32_t* h, PixelFormat* f,
2137 uint32_t sw, uint32_t sh)
Mathias Agopian1b0b30d2010-09-24 11:26:58 -07002138 : flinger(flinger), dpy(dpy),
Mathias Agopiandf85c452010-09-29 13:02:36 -07002139 heap(heap), w(w), h(h), f(f), sw(sw), sh(sh), result(PERMISSION_DENIED)
Mathias Agopian1b0b30d2010-09-24 11:26:58 -07002140 {
2141 }
2142 status_t getResult() const {
2143 return result;
2144 }
2145 virtual bool handler() {
2146 Mutex::Autolock _l(flinger->mStateLock);
2147
2148 // if we have secure windows, never allow the screen capture
2149 if (flinger->mSecureFrameBuffer)
2150 return true;
2151
Mathias Agopiandf85c452010-09-29 13:02:36 -07002152 result = flinger->captureScreenImplLocked(dpy,
2153 heap, w, h, f, sw, sh);
Mathias Agopian1b0b30d2010-09-24 11:26:58 -07002154
Mathias Agopian1b0b30d2010-09-24 11:26:58 -07002155 return true;
2156 }
2157 };
2158
2159 sp<MessageBase> msg = new MessageCaptureScreen(this,
Mathias Agopiandf85c452010-09-29 13:02:36 -07002160 dpy, heap, width, height, format, sw, sh);
Mathias Agopian1b0b30d2010-09-24 11:26:58 -07002161 status_t res = postMessageSync(msg);
2162 if (res == NO_ERROR) {
2163 res = static_cast<MessageCaptureScreen*>( msg.get() )->getResult();
2164 }
2165 return res;
2166}
2167
2168// ---------------------------------------------------------------------------
2169
Mathias Agopianb7e930d2010-06-01 15:12:58 -07002170sp<Layer> SurfaceFlinger::getLayer(const sp<ISurface>& sur) const
2171{
2172 sp<Layer> result;
2173 Mutex::Autolock _l(mStateLock);
2174 result = mLayerMap.valueFor( sur->asBinder() ).promote();
2175 return result;
2176}
2177
2178// ---------------------------------------------------------------------------
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002179
Mathias Agopian96f08192010-06-02 23:28:45 -07002180Client::Client(const sp<SurfaceFlinger>& flinger)
Mathias Agopianb7e930d2010-06-01 15:12:58 -07002181 : mFlinger(flinger), mNameGenerator(1)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002182{
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002183}
2184
Mathias Agopian96f08192010-06-02 23:28:45 -07002185Client::~Client()
2186{
Mathias Agopian96f08192010-06-02 23:28:45 -07002187 const size_t count = mLayers.size();
2188 for (size_t i=0 ; i<count ; i++) {
2189 sp<LayerBaseClient> layer(mLayers.valueAt(i).promote());
2190 if (layer != 0) {
2191 mFlinger->removeLayer(layer);
2192 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002193 }
2194}
2195
Mathias Agopian96f08192010-06-02 23:28:45 -07002196status_t Client::initCheck() const {
Mathias Agopianb7e930d2010-06-01 15:12:58 -07002197 return NO_ERROR;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002198}
Mathias Agopian076b1cc2009-04-10 14:24:30 -07002199
Mathias Agopian96f08192010-06-02 23:28:45 -07002200ssize_t Client::attachLayer(const sp<LayerBaseClient>& layer)
2201{
Mathias Agopianb7e930d2010-06-01 15:12:58 -07002202 int32_t name = android_atomic_inc(&mNameGenerator);
Mathias Agopian96f08192010-06-02 23:28:45 -07002203 mLayers.add(name, layer);
2204 return name;
2205}
2206
Mathias Agopianb7e930d2010-06-01 15:12:58 -07002207void Client::detachLayer(const LayerBaseClient* layer)
Mathias Agopian96f08192010-06-02 23:28:45 -07002208{
Mathias Agopian96f08192010-06-02 23:28:45 -07002209 // we do a linear search here, because this doesn't happen often
2210 const size_t count = mLayers.size();
2211 for (size_t i=0 ; i<count ; i++) {
2212 if (mLayers.valueAt(i) == layer) {
2213 mLayers.removeItemsAt(i, 1);
2214 break;
2215 }
2216 }
2217}
Mathias Agopian076b1cc2009-04-10 14:24:30 -07002218sp<LayerBaseClient> Client::getLayerUser(int32_t i) const {
2219 sp<LayerBaseClient> lbc;
Mathias Agopian96f08192010-06-02 23:28:45 -07002220 const wp<LayerBaseClient>& layer(mLayers.valueFor(i));
2221 if (layer != 0) {
2222 lbc = layer.promote();
2223 LOGE_IF(lbc==0, "getLayerUser(name=%d) is dead", int(i));
Mathias Agopian076b1cc2009-04-10 14:24:30 -07002224 }
2225 return lbc;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002226}
2227
Mathias Agopian96f08192010-06-02 23:28:45 -07002228sp<IMemoryHeap> Client::getControlBlock() const {
Mathias Agopianb7e930d2010-06-01 15:12:58 -07002229 return 0;
2230}
2231ssize_t Client::getTokenForSurface(const sp<ISurface>& sur) const {
2232 return -1;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002233}
Mathias Agopian96f08192010-06-02 23:28:45 -07002234sp<ISurface> Client::createSurface(
Mathias Agopianb7e930d2010-06-01 15:12:58 -07002235 ISurfaceComposerClient::surface_data_t* params, int pid,
2236 const String8& name,
2237 DisplayID display, uint32_t w, uint32_t h, PixelFormat format,
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002238 uint32_t flags)
2239{
Mathias Agopian96f08192010-06-02 23:28:45 -07002240 return mFlinger->createSurface(this, pid, name, params,
2241 display, w, h, format, flags);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002242}
Mathias Agopian96f08192010-06-02 23:28:45 -07002243status_t Client::destroySurface(SurfaceID sid) {
2244 return mFlinger->removeSurface(this, sid);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002245}
Mathias Agopian96f08192010-06-02 23:28:45 -07002246status_t Client::setState(int32_t count, const layer_state_t* states) {
2247 return mFlinger->setClientState(this, count, states);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002248}
2249
2250// ---------------------------------------------------------------------------
2251
Mathias Agopianb7e930d2010-06-01 15:12:58 -07002252UserClient::UserClient(const sp<SurfaceFlinger>& flinger)
2253 : ctrlblk(0), mBitmap(0), mFlinger(flinger)
2254{
2255 const int pgsize = getpagesize();
2256 const int cblksize = ((sizeof(SharedClient)+(pgsize-1))&~(pgsize-1));
2257
2258 mCblkHeap = new MemoryHeapBase(cblksize, 0,
2259 "SurfaceFlinger Client control-block");
2260
2261 ctrlblk = static_cast<SharedClient *>(mCblkHeap->getBase());
2262 if (ctrlblk) { // construct the shared structure in-place.
2263 new(ctrlblk) SharedClient;
2264 }
2265}
2266
2267UserClient::~UserClient()
2268{
2269 if (ctrlblk) {
2270 ctrlblk->~SharedClient(); // destroy our shared-structure.
2271 }
2272
2273 /*
2274 * When a UserClient dies, it's unclear what to do exactly.
2275 * We could go ahead and destroy all surfaces linked to that client
2276 * however, it wouldn't be fair to the main Client
2277 * (usually the the window-manager), which might want to re-target
2278 * the layer to another UserClient.
2279 * I think the best is to do nothing, or not much; in most cases the
2280 * WM itself will go ahead and clean things up when it detects a client of
2281 * his has died.
2282 * The remaining question is what to display? currently we keep
2283 * just keep the current buffer.
2284 */
2285}
2286
2287status_t UserClient::initCheck() const {
2288 return ctrlblk == 0 ? NO_INIT : NO_ERROR;
2289}
2290
2291void UserClient::detachLayer(const Layer* layer)
2292{
2293 int32_t name = layer->getToken();
2294 if (name >= 0) {
Mathias Agopian579b3f82010-06-08 19:54:15 -07002295 int32_t mask = 1LU<<name;
2296 if ((android_atomic_and(~mask, &mBitmap) & mask) == 0) {
2297 LOGW("token %d wasn't marked as used %08x", name, int(mBitmap));
2298 }
Mathias Agopianb7e930d2010-06-01 15:12:58 -07002299 }
2300}
2301
2302sp<IMemoryHeap> UserClient::getControlBlock() const {
2303 return mCblkHeap;
2304}
2305
2306ssize_t UserClient::getTokenForSurface(const sp<ISurface>& sur) const
2307{
2308 int32_t name = NAME_NOT_FOUND;
2309 sp<Layer> layer(mFlinger->getLayer(sur));
2310 if (layer == 0) return name;
2311
Mathias Agopian579b3f82010-06-08 19:54:15 -07002312 // if this layer already has a token, just return it
Mathias Agopianb7e930d2010-06-01 15:12:58 -07002313 name = layer->getToken();
Mathias Agopian579b3f82010-06-08 19:54:15 -07002314 if ((name >= 0) && (layer->getClient() == this))
2315 return name;
Mathias Agopianb7e930d2010-06-01 15:12:58 -07002316
2317 name = 0;
2318 do {
2319 int32_t mask = 1LU<<name;
2320 if ((android_atomic_or(mask, &mBitmap) & mask) == 0) {
2321 // we found and locked that name
Mathias Agopian579b3f82010-06-08 19:54:15 -07002322 status_t err = layer->setToken(
2323 const_cast<UserClient*>(this), ctrlblk, name);
2324 if (err != NO_ERROR) {
2325 // free the name
2326 android_atomic_and(~mask, &mBitmap);
2327 name = err;
2328 }
Mathias Agopianb7e930d2010-06-01 15:12:58 -07002329 break;
2330 }
2331 if (++name > 31)
2332 name = NO_MEMORY;
2333 } while(name >= 0);
2334
Mathias Agopian53503a92010-06-08 15:40:56 -07002335 //LOGD("getTokenForSurface(%p) => %d (client=%p, bitmap=%08lx)",
2336 // sur->asBinder().get(), name, this, mBitmap);
Mathias Agopianb7e930d2010-06-01 15:12:58 -07002337 return name;
2338}
2339
2340sp<ISurface> UserClient::createSurface(
2341 ISurfaceComposerClient::surface_data_t* params, int pid,
2342 const String8& name,
2343 DisplayID display, uint32_t w, uint32_t h, PixelFormat format,
2344 uint32_t flags) {
2345 return 0;
2346}
2347status_t UserClient::destroySurface(SurfaceID sid) {
2348 return INVALID_OPERATION;
2349}
2350status_t UserClient::setState(int32_t count, const layer_state_t* states) {
2351 return INVALID_OPERATION;
2352}
2353
2354// ---------------------------------------------------------------------------
2355
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002356GraphicPlane::GraphicPlane()
2357 : mHw(0)
2358{
2359}
2360
2361GraphicPlane::~GraphicPlane() {
2362 delete mHw;
2363}
2364
2365bool GraphicPlane::initialized() const {
2366 return mHw ? true : false;
2367}
2368
Mathias Agopian2b92d892010-02-08 15:49:35 -08002369int GraphicPlane::getWidth() const {
2370 return mWidth;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002371}
2372
Mathias Agopian2b92d892010-02-08 15:49:35 -08002373int GraphicPlane::getHeight() const {
2374 return mHeight;
2375}
2376
2377void GraphicPlane::setDisplayHardware(DisplayHardware *hw)
2378{
2379 mHw = hw;
2380
2381 // initialize the display orientation transform.
2382 // it's a constant that should come from the display driver.
2383 int displayOrientation = ISurfaceComposer::eOrientationDefault;
2384 char property[PROPERTY_VALUE_MAX];
2385 if (property_get("ro.sf.hwrotation", property, NULL) > 0) {
2386 //displayOrientation
2387 switch (atoi(property)) {
2388 case 90:
2389 displayOrientation = ISurfaceComposer::eOrientation90;
2390 break;
2391 case 270:
2392 displayOrientation = ISurfaceComposer::eOrientation270;
2393 break;
2394 }
2395 }
2396
2397 const float w = hw->getWidth();
2398 const float h = hw->getHeight();
2399 GraphicPlane::orientationToTransfrom(displayOrientation, w, h,
2400 &mDisplayTransform);
2401 if (displayOrientation & ISurfaceComposer::eOrientationSwapMask) {
2402 mDisplayWidth = h;
2403 mDisplayHeight = w;
2404 } else {
2405 mDisplayWidth = w;
2406 mDisplayHeight = h;
2407 }
2408
2409 setOrientation(ISurfaceComposer::eOrientationDefault);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002410}
2411
2412status_t GraphicPlane::orientationToTransfrom(
2413 int orientation, int w, int h, Transform* tr)
Mathias Agopianeda65402010-02-22 03:15:57 -08002414{
2415 uint32_t flags = 0;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002416 switch (orientation) {
2417 case ISurfaceComposer::eOrientationDefault:
Mathias Agopianeda65402010-02-22 03:15:57 -08002418 flags = Transform::ROT_0;
2419 break;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002420 case ISurfaceComposer::eOrientation90:
Mathias Agopianeda65402010-02-22 03:15:57 -08002421 flags = Transform::ROT_90;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002422 break;
2423 case ISurfaceComposer::eOrientation180:
Mathias Agopianeda65402010-02-22 03:15:57 -08002424 flags = Transform::ROT_180;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002425 break;
2426 case ISurfaceComposer::eOrientation270:
Mathias Agopianeda65402010-02-22 03:15:57 -08002427 flags = Transform::ROT_270;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002428 break;
2429 default:
2430 return BAD_VALUE;
2431 }
Mathias Agopianeda65402010-02-22 03:15:57 -08002432 tr->set(flags, w, h);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002433 return NO_ERROR;
2434}
2435
2436status_t GraphicPlane::setOrientation(int orientation)
2437{
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002438 // If the rotation can be handled in hardware, this is where
2439 // the magic should happen.
Mathias Agopian2b92d892010-02-08 15:49:35 -08002440
2441 const DisplayHardware& hw(displayHardware());
2442 const float w = mDisplayWidth;
2443 const float h = mDisplayHeight;
2444 mWidth = int(w);
2445 mHeight = int(h);
2446
2447 Transform orientationTransform;
Mathias Agopianeda65402010-02-22 03:15:57 -08002448 GraphicPlane::orientationToTransfrom(orientation, w, h,
2449 &orientationTransform);
2450 if (orientation & ISurfaceComposer::eOrientationSwapMask) {
2451 mWidth = int(h);
2452 mHeight = int(w);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002453 }
Mathias Agopianeda65402010-02-22 03:15:57 -08002454
Mathias Agopian0d1318b2009-03-27 17:58:20 -07002455 mOrientation = orientation;
Mathias Agopian2b92d892010-02-08 15:49:35 -08002456 mGlobalTransform = mDisplayTransform * orientationTransform;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002457 return NO_ERROR;
2458}
2459
2460const DisplayHardware& GraphicPlane::displayHardware() const {
2461 return *mHw;
2462}
2463
Mathias Agopian59119e62010-10-11 12:37:43 -07002464DisplayHardware& GraphicPlane::editDisplayHardware() {
2465 return *mHw;
2466}
2467
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002468const Transform& GraphicPlane::transform() const {
2469 return mGlobalTransform;
2470}
2471
Mathias Agopian076b1cc2009-04-10 14:24:30 -07002472EGLDisplay GraphicPlane::getEGLDisplay() const {
2473 return mHw->getEGLDisplay();
2474}
2475
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002476// ---------------------------------------------------------------------------
2477
2478}; // namespace android