blob: c77d48ebbfadca715932d54e3dc3639c596f6c0d [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001/*
2 * Copyright (C) 2007 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#define LOG_TAG "Surface"
18
19#include <stdint.h>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080020#include <errno.h>
21#include <sys/types.h>
22#include <sys/stat.h>
23
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080024#include <utils/Errors.h>
25#include <utils/threads.h>
Mathias Agopian9779b2212009-09-07 16:32:45 -070026#include <utils/CallStack.h>
Mathias Agopian000479f2010-02-09 17:46:37 -080027#include <utils/Log.h>
28
Mathias Agopian07952722009-05-19 19:08:10 -070029#include <binder/IPCThreadState.h>
30#include <binder/IMemory.h>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080031
Mathias Agopian1473f462009-04-10 14:24:30 -070032#include <ui/DisplayInfo.h>
Mathias Agopian6950e422009-10-05 17:07:12 -070033#include <ui/GraphicBuffer.h>
34#include <ui/GraphicBufferMapper.h>
Mathias Agopian04262e92010-09-13 22:57:58 -070035#include <ui/GraphicLog.h>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080036#include <ui/Rect.h>
37
Mathias Agopian000479f2010-02-09 17:46:37 -080038#include <surfaceflinger/Surface.h>
39#include <surfaceflinger/ISurface.h>
40#include <surfaceflinger/ISurfaceComposer.h>
41#include <surfaceflinger/SurfaceComposerClient.h>
Mathias Agopian1473f462009-04-10 14:24:30 -070042
Mathias Agopian000479f2010-02-09 17:46:37 -080043#include <private/surfaceflinger/SharedBufferStack.h>
44#include <private/surfaceflinger/LayerState.h>
Mathias Agopian1473f462009-04-10 14:24:30 -070045
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080046namespace android {
47
Mathias Agopian1473f462009-04-10 14:24:30 -070048// ----------------------------------------------------------------------
49
Mathias Agopian8d9a5eff2009-07-13 18:29:59 -070050static status_t copyBlt(
Mathias Agopian6950e422009-10-05 17:07:12 -070051 const sp<GraphicBuffer>& dst,
52 const sp<GraphicBuffer>& src,
Mathias Agopiandff8e582009-05-04 14:17:04 -070053 const Region& reg)
Mathias Agopian1473f462009-04-10 14:24:30 -070054{
Mathias Agopiana8a0aa82010-04-21 15:24:11 -070055 // src and dst with, height and format must be identical. no verification
56 // is done here.
Mathias Agopian8d9a5eff2009-07-13 18:29:59 -070057 status_t err;
58 uint8_t const * src_bits = NULL;
59 err = src->lock(GRALLOC_USAGE_SW_READ_OFTEN, reg.bounds(), (void**)&src_bits);
60 LOGE_IF(err, "error locking src buffer %s", strerror(-err));
Mathias Agopiandff8e582009-05-04 14:17:04 -070061
Mathias Agopian8d9a5eff2009-07-13 18:29:59 -070062 uint8_t* dst_bits = NULL;
63 err = dst->lock(GRALLOC_USAGE_SW_WRITE_OFTEN, reg.bounds(), (void**)&dst_bits);
64 LOGE_IF(err, "error locking dst buffer %s", strerror(-err));
65
66 Region::const_iterator head(reg.begin());
67 Region::const_iterator tail(reg.end());
68 if (head != tail && src_bits && dst_bits) {
Mathias Agopian1473f462009-04-10 14:24:30 -070069 const size_t bpp = bytesPerPixel(src->format);
70 const size_t dbpr = dst->stride * bpp;
71 const size_t sbpr = src->stride * bpp;
Mathias Agopiandff8e582009-05-04 14:17:04 -070072
Mathias Agopian8d9a5eff2009-07-13 18:29:59 -070073 while (head != tail) {
74 const Rect& r(*head++);
Mathias Agopiandff8e582009-05-04 14:17:04 -070075 ssize_t h = r.height();
76 if (h <= 0) continue;
77 size_t size = r.width() * bpp;
78 uint8_t const * s = src_bits + (r.left + src->stride * r.top) * bpp;
79 uint8_t * d = dst_bits + (r.left + dst->stride * r.top) * bpp;
80 if (dbpr==sbpr && size==sbpr) {
81 size *= h;
82 h = 1;
Mathias Agopian1473f462009-04-10 14:24:30 -070083 }
Mathias Agopiandff8e582009-05-04 14:17:04 -070084 do {
85 memcpy(d, s, size);
86 d += dbpr;
87 s += sbpr;
88 } while (--h > 0);
Mathias Agopian1473f462009-04-10 14:24:30 -070089 }
90 }
Mathias Agopiandff8e582009-05-04 14:17:04 -070091
Mathias Agopian8d9a5eff2009-07-13 18:29:59 -070092 if (src_bits)
93 src->unlock();
94
95 if (dst_bits)
96 dst->unlock();
97
98 return err;
Mathias Agopian1473f462009-04-10 14:24:30 -070099}
100
Mathias Agopian6d2c0bc2009-04-16 16:19:50 -0700101// ============================================================================
102// SurfaceControl
103// ============================================================================
104
Mathias Agopian17f638b2009-04-16 20:04:08 -0700105SurfaceControl::SurfaceControl(
106 const sp<SurfaceComposerClient>& client,
Mathias Agopian6d2c0bc2009-04-16 16:19:50 -0700107 const sp<ISurface>& surface,
Mathias Agopian770492c2010-05-28 14:22:23 -0700108 const ISurfaceComposerClient::surface_data_t& data,
Mathias Agopian69d62092009-04-16 20:30:22 -0700109 uint32_t w, uint32_t h, PixelFormat format, uint32_t flags)
Mathias Agopian6d2c0bc2009-04-16 16:19:50 -0700110 : mClient(client), mSurface(surface),
111 mToken(data.token), mIdentity(data.identity),
Mathias Agopian18b6b492009-08-19 17:46:26 -0700112 mWidth(data.width), mHeight(data.height), mFormat(data.format),
113 mFlags(flags)
Mathias Agopian6d2c0bc2009-04-16 16:19:50 -0700114{
115}
Mathias Agopian69d62092009-04-16 20:30:22 -0700116
Mathias Agopian6d2c0bc2009-04-16 16:19:50 -0700117SurfaceControl::~SurfaceControl()
118{
119 destroy();
120}
121
122void SurfaceControl::destroy()
123{
Mathias Agopian69d62092009-04-16 20:30:22 -0700124 if (isValid()) {
Mathias Agopian6d2c0bc2009-04-16 16:19:50 -0700125 mClient->destroySurface(mToken);
126 }
127
128 // clear all references and trigger an IPC now, to make sure things
129 // happen without delay, since these resources are quite heavy.
130 mClient.clear();
131 mSurface.clear();
132 IPCThreadState::self()->flushCommands();
133}
134
135void SurfaceControl::clear()
136{
137 // here, the window manager tells us explicitly that we should destroy
138 // the surface's resource. Soon after this call, it will also release
139 // its last reference (which will call the dtor); however, it is possible
140 // that a client living in the same process still holds references which
141 // would delay the call to the dtor -- that is why we need this explicit
142 // "clear()" call.
143 destroy();
144}
145
Mathias Agopian6d2c0bc2009-04-16 16:19:50 -0700146bool SurfaceControl::isSameSurface(
147 const sp<SurfaceControl>& lhs, const sp<SurfaceControl>& rhs)
148{
149 if (lhs == 0 || rhs == 0)
150 return false;
151 return lhs->mSurface->asBinder() == rhs->mSurface->asBinder();
152}
153
Mathias Agopian17f638b2009-04-16 20:04:08 -0700154status_t SurfaceControl::setLayer(int32_t layer) {
Mathias Agopian18e02602009-11-13 15:26:29 -0800155 status_t err = validate();
Mathias Agopian17f638b2009-04-16 20:04:08 -0700156 if (err < 0) return err;
Mathias Agopian2ce19af2010-05-25 17:51:34 -0700157 const sp<SurfaceComposerClient>& client(mClient);
Mathias Agopian17f638b2009-04-16 20:04:08 -0700158 return client->setLayer(mToken, layer);
159}
160status_t SurfaceControl::setPosition(int32_t x, int32_t y) {
Mathias Agopian18e02602009-11-13 15:26:29 -0800161 status_t err = validate();
Mathias Agopian17f638b2009-04-16 20:04:08 -0700162 if (err < 0) return err;
Mathias Agopian2ce19af2010-05-25 17:51:34 -0700163 const sp<SurfaceComposerClient>& client(mClient);
Mathias Agopian17f638b2009-04-16 20:04:08 -0700164 return client->setPosition(mToken, x, y);
165}
166status_t SurfaceControl::setSize(uint32_t w, uint32_t h) {
Mathias Agopian18e02602009-11-13 15:26:29 -0800167 status_t err = validate();
Mathias Agopian17f638b2009-04-16 20:04:08 -0700168 if (err < 0) return err;
Mathias Agopian2ce19af2010-05-25 17:51:34 -0700169 const sp<SurfaceComposerClient>& client(mClient);
Mathias Agopian17f638b2009-04-16 20:04:08 -0700170 return client->setSize(mToken, w, h);
171}
172status_t SurfaceControl::hide() {
Mathias Agopian18e02602009-11-13 15:26:29 -0800173 status_t err = validate();
Mathias Agopian17f638b2009-04-16 20:04:08 -0700174 if (err < 0) return err;
Mathias Agopian2ce19af2010-05-25 17:51:34 -0700175 const sp<SurfaceComposerClient>& client(mClient);
Mathias Agopian17f638b2009-04-16 20:04:08 -0700176 return client->hide(mToken);
177}
178status_t SurfaceControl::show(int32_t layer) {
Mathias Agopian18e02602009-11-13 15:26:29 -0800179 status_t err = validate();
Mathias Agopian17f638b2009-04-16 20:04:08 -0700180 if (err < 0) return err;
Mathias Agopian2ce19af2010-05-25 17:51:34 -0700181 const sp<SurfaceComposerClient>& client(mClient);
Mathias Agopian17f638b2009-04-16 20:04:08 -0700182 return client->show(mToken, layer);
183}
184status_t SurfaceControl::freeze() {
Mathias Agopian18e02602009-11-13 15:26:29 -0800185 status_t err = validate();
Mathias Agopian17f638b2009-04-16 20:04:08 -0700186 if (err < 0) return err;
Mathias Agopian2ce19af2010-05-25 17:51:34 -0700187 const sp<SurfaceComposerClient>& client(mClient);
Mathias Agopian17f638b2009-04-16 20:04:08 -0700188 return client->freeze(mToken);
189}
190status_t SurfaceControl::unfreeze() {
Mathias Agopian18e02602009-11-13 15:26:29 -0800191 status_t err = validate();
Mathias Agopian17f638b2009-04-16 20:04:08 -0700192 if (err < 0) return err;
Mathias Agopian2ce19af2010-05-25 17:51:34 -0700193 const sp<SurfaceComposerClient>& client(mClient);
Mathias Agopian17f638b2009-04-16 20:04:08 -0700194 return client->unfreeze(mToken);
195}
196status_t SurfaceControl::setFlags(uint32_t flags, uint32_t mask) {
Mathias Agopian18e02602009-11-13 15:26:29 -0800197 status_t err = validate();
Mathias Agopian17f638b2009-04-16 20:04:08 -0700198 if (err < 0) return err;
Mathias Agopian2ce19af2010-05-25 17:51:34 -0700199 const sp<SurfaceComposerClient>& client(mClient);
Mathias Agopian17f638b2009-04-16 20:04:08 -0700200 return client->setFlags(mToken, flags, mask);
201}
202status_t SurfaceControl::setTransparentRegionHint(const Region& transparent) {
Mathias Agopian18e02602009-11-13 15:26:29 -0800203 status_t err = validate();
Mathias Agopian17f638b2009-04-16 20:04:08 -0700204 if (err < 0) return err;
Mathias Agopian2ce19af2010-05-25 17:51:34 -0700205 const sp<SurfaceComposerClient>& client(mClient);
Mathias Agopian17f638b2009-04-16 20:04:08 -0700206 return client->setTransparentRegionHint(mToken, transparent);
207}
208status_t SurfaceControl::setAlpha(float alpha) {
Mathias Agopian18e02602009-11-13 15:26:29 -0800209 status_t err = validate();
Mathias Agopian17f638b2009-04-16 20:04:08 -0700210 if (err < 0) return err;
Mathias Agopian2ce19af2010-05-25 17:51:34 -0700211 const sp<SurfaceComposerClient>& client(mClient);
Mathias Agopian17f638b2009-04-16 20:04:08 -0700212 return client->setAlpha(mToken, alpha);
213}
214status_t SurfaceControl::setMatrix(float dsdx, float dtdx, float dsdy, float dtdy) {
Mathias Agopian18e02602009-11-13 15:26:29 -0800215 status_t err = validate();
Mathias Agopian17f638b2009-04-16 20:04:08 -0700216 if (err < 0) return err;
Mathias Agopian2ce19af2010-05-25 17:51:34 -0700217 const sp<SurfaceComposerClient>& client(mClient);
Mathias Agopian17f638b2009-04-16 20:04:08 -0700218 return client->setMatrix(mToken, dsdx, dtdx, dsdy, dtdy);
219}
220status_t SurfaceControl::setFreezeTint(uint32_t tint) {
Mathias Agopian18e02602009-11-13 15:26:29 -0800221 status_t err = validate();
Mathias Agopian17f638b2009-04-16 20:04:08 -0700222 if (err < 0) return err;
Mathias Agopian2ce19af2010-05-25 17:51:34 -0700223 const sp<SurfaceComposerClient>& client(mClient);
Mathias Agopian17f638b2009-04-16 20:04:08 -0700224 return client->setFreezeTint(mToken, tint);
225}
Mathias Agopian6d2c0bc2009-04-16 16:19:50 -0700226
Mathias Agopian18e02602009-11-13 15:26:29 -0800227status_t SurfaceControl::validate() const
Mathias Agopian6d2c0bc2009-04-16 16:19:50 -0700228{
229 if (mToken<0 || mClient==0) {
230 LOGE("invalid token (%d, identity=%u) or client (%p)",
231 mToken, mIdentity, mClient.get());
232 return NO_INIT;
233 }
Mathias Agopian6d2c0bc2009-04-16 16:19:50 -0700234 return NO_ERROR;
235}
236
Mathias Agopian17f638b2009-04-16 20:04:08 -0700237status_t SurfaceControl::writeSurfaceToParcel(
238 const sp<SurfaceControl>& control, Parcel* parcel)
239{
Mathias Agopian5e140102010-06-08 19:54:15 -0700240 sp<ISurface> sur;
Mathias Agopian17f638b2009-04-16 20:04:08 -0700241 uint32_t identity = 0;
Mathias Agopian5b5c9142009-07-30 18:14:56 -0700242 uint32_t width = 0;
243 uint32_t height = 0;
Mathias Agopian5e140102010-06-08 19:54:15 -0700244 uint32_t format = 0;
245 uint32_t flags = 0;
Mathias Agopian17f638b2009-04-16 20:04:08 -0700246 if (SurfaceControl::isValid(control)) {
Mathias Agopian17f638b2009-04-16 20:04:08 -0700247 sur = control->mSurface;
Mathias Agopian5e140102010-06-08 19:54:15 -0700248 identity = control->mIdentity;
Mathias Agopian5b5c9142009-07-30 18:14:56 -0700249 width = control->mWidth;
250 height = control->mHeight;
Mathias Agopian17f638b2009-04-16 20:04:08 -0700251 format = control->mFormat;
252 flags = control->mFlags;
253 }
Mathias Agopian7623da42010-06-01 15:12:58 -0700254 parcel->writeStrongBinder(sur!=0 ? sur->asBinder() : NULL);
Mathias Agopian17f638b2009-04-16 20:04:08 -0700255 parcel->writeInt32(identity);
Mathias Agopian5b5c9142009-07-30 18:14:56 -0700256 parcel->writeInt32(width);
257 parcel->writeInt32(height);
Mathias Agopian17f638b2009-04-16 20:04:08 -0700258 parcel->writeInt32(format);
259 parcel->writeInt32(flags);
260 return NO_ERROR;
261}
262
263sp<Surface> SurfaceControl::getSurface() const
264{
265 Mutex::Autolock _l(mLock);
266 if (mSurfaceData == 0) {
267 mSurfaceData = new Surface(const_cast<SurfaceControl*>(this));
268 }
269 return mSurfaceData;
270}
271
Mathias Agopian1473f462009-04-10 14:24:30 -0700272// ============================================================================
273// Surface
274// ============================================================================
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800275
Mathias Agopian7623da42010-06-01 15:12:58 -0700276class SurfaceClient : public Singleton<SurfaceClient>
277{
278 // all these attributes are constants
279 sp<ISurfaceComposer> mComposerService;
280 sp<ISurfaceComposerClient> mClient;
281 status_t mStatus;
282 SharedClient* mControl;
283 sp<IMemoryHeap> mControlMemory;
284
285 SurfaceClient()
286 : Singleton<SurfaceClient>(), mStatus(NO_INIT)
287 {
288 sp<ISurfaceComposer> sf(ComposerService::getComposerService());
289 mComposerService = sf;
290 mClient = sf->createClientConnection();
291 if (mClient != NULL) {
292 mControlMemory = mClient->getControlBlock();
293 if (mControlMemory != NULL) {
294 mControl = static_cast<SharedClient *>(
295 mControlMemory->getBase());
296 if (mControl) {
297 mStatus = NO_ERROR;
298 }
299 }
300 }
301 }
302 friend class Singleton<SurfaceClient>;
303public:
304 status_t initCheck() const {
305 return mStatus;
306 }
307 SharedClient* getSharedClient() const {
308 return mControl;
309 }
310 ssize_t getTokenForSurface(const sp<ISurface>& sur) const {
311 // TODO: we could cache a few tokens here to avoid an IPC
312 return mClient->getTokenForSurface(sur);
313 }
314 void signalServer() const {
315 mComposerService->signal();
316 }
317};
318
319ANDROID_SINGLETON_STATIC_INSTANCE(SurfaceClient);
320
321// ---------------------------------------------------------------------------
322
Mathias Agopian17f638b2009-04-16 20:04:08 -0700323Surface::Surface(const sp<SurfaceControl>& surface)
Mathias Agopian7623da42010-06-01 15:12:58 -0700324 : mBufferMapper(GraphicBufferMapper::get()),
325 mClient(SurfaceClient::getInstance()),
326 mSharedBufferClient(NULL),
Mathias Agopian2ce19af2010-05-25 17:51:34 -0700327 mInitCheck(NO_INIT),
Mathias Agopian7623da42010-06-01 15:12:58 -0700328 mSurface(surface->mSurface),
329 mIdentity(surface->mIdentity),
330 mFormat(surface->mFormat), mFlags(surface->mFlags),
Mathias Agopian321abdb2009-08-14 18:52:17 -0700331 mWidth(surface->mWidth), mHeight(surface->mHeight)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800332{
Mathias Agopian17f638b2009-04-16 20:04:08 -0700333 init();
334}
Mathias Agopian6d2c0bc2009-04-16 16:19:50 -0700335
Mathias Agopianfae5cb22010-06-04 18:26:32 -0700336Surface::Surface(const Parcel& parcel, const sp<IBinder>& ref)
Mathias Agopian7623da42010-06-01 15:12:58 -0700337 : mBufferMapper(GraphicBufferMapper::get()),
338 mClient(SurfaceClient::getInstance()),
339 mSharedBufferClient(NULL),
340 mInitCheck(NO_INIT)
Mathias Agopian17f638b2009-04-16 20:04:08 -0700341{
Mathias Agopianfae5cb22010-06-04 18:26:32 -0700342 mSurface = interface_cast<ISurface>(ref);
Mathias Agopian17f638b2009-04-16 20:04:08 -0700343 mIdentity = parcel.readInt32();
Mathias Agopian5b5c9142009-07-30 18:14:56 -0700344 mWidth = parcel.readInt32();
345 mHeight = parcel.readInt32();
Mathias Agopian17f638b2009-04-16 20:04:08 -0700346 mFormat = parcel.readInt32();
347 mFlags = parcel.readInt32();
Mathias Agopian17f638b2009-04-16 20:04:08 -0700348 init();
349}
350
Mathias Agopian5e140102010-06-08 19:54:15 -0700351status_t Surface::writeToParcel(
352 const sp<Surface>& surface, Parcel* parcel)
353{
354 sp<ISurface> sur;
355 uint32_t identity = 0;
356 uint32_t width = 0;
357 uint32_t height = 0;
358 uint32_t format = 0;
359 uint32_t flags = 0;
360 if (Surface::isValid(surface)) {
361 sur = surface->mSurface;
362 identity = surface->mIdentity;
363 width = surface->mWidth;
364 height = surface->mHeight;
365 format = surface->mFormat;
366 flags = surface->mFlags;
Jamie Gennis85cfdd02010-08-10 16:37:53 -0700367 } else if (surface != 0 && surface->mSurface != 0) {
368 LOGW("Parceling invalid surface with non-NULL ISurface as NULL: "
369 "mSurface = %p, mIdentity = %d, mWidth = %d, mHeight = %d, "
370 "mFormat = %d, mFlags = 0x%08x, mInitCheck = %d",
371 surface->mSurface.get(), surface->mIdentity, surface->mWidth,
372 surface->mHeight, surface->mFormat, surface->mFlags,
373 surface->mInitCheck);
Mathias Agopian5e140102010-06-08 19:54:15 -0700374 }
375 parcel->writeStrongBinder(sur!=0 ? sur->asBinder() : NULL);
376 parcel->writeInt32(identity);
377 parcel->writeInt32(width);
378 parcel->writeInt32(height);
379 parcel->writeInt32(format);
380 parcel->writeInt32(flags);
381 return NO_ERROR;
382
383}
384
Jamie Gennis5ee65f02010-07-15 17:29:15 -0700385
386Mutex Surface::sCachedSurfacesLock;
387DefaultKeyedVector<wp<IBinder>, wp<Surface> > Surface::sCachedSurfaces(wp<Surface>(0));
388
389sp<Surface> Surface::readFromParcel(const Parcel& data) {
390 Mutex::Autolock _l(sCachedSurfacesLock);
Mathias Agopianfae5cb22010-06-04 18:26:32 -0700391 sp<IBinder> binder(data.readStrongBinder());
Jamie Gennis5ee65f02010-07-15 17:29:15 -0700392 sp<Surface> surface = sCachedSurfaces.valueFor(binder).promote();
393 if (surface == 0) {
394 surface = new Surface(data, binder);
395 sCachedSurfaces.add(binder, surface);
Mathias Agopianfae5cb22010-06-04 18:26:32 -0700396 }
Jamie Gennis5ee65f02010-07-15 17:29:15 -0700397 if (surface->mSurface == 0) {
398 surface = 0;
399 }
400 cleanCachedSurfaces();
401 return surface;
402}
403
404// Remove the stale entries from the surface cache. This should only be called
405// with sCachedSurfacesLock held.
406void Surface::cleanCachedSurfaces() {
407 for (int i = sCachedSurfaces.size()-1; i >= 0; --i) {
408 wp<Surface> s(sCachedSurfaces.valueAt(i));
409 if (s == 0 || s.promote() == 0) {
410 sCachedSurfaces.removeItemsAt(i);
411 }
412 }
Mathias Agopianfae5cb22010-06-04 18:26:32 -0700413}
414
Mathias Agopian17f638b2009-04-16 20:04:08 -0700415void Surface::init()
416{
Dianne Hackborn8b49bd12010-06-30 13:56:17 -0700417 ANativeWindow::setSwapInterval = setSwapInterval;
418 ANativeWindow::dequeueBuffer = dequeueBuffer;
419 ANativeWindow::lockBuffer = lockBuffer;
420 ANativeWindow::queueBuffer = queueBuffer;
421 ANativeWindow::query = query;
422 ANativeWindow::perform = perform;
Mathias Agopian2ce19af2010-05-25 17:51:34 -0700423
Mathias Agopian1473f462009-04-10 14:24:30 -0700424 DisplayInfo dinfo;
425 SurfaceComposerClient::getDisplayInfo(0, &dinfo);
Dianne Hackborn8b49bd12010-06-30 13:56:17 -0700426 const_cast<float&>(ANativeWindow::xdpi) = dinfo.xdpi;
427 const_cast<float&>(ANativeWindow::ydpi) = dinfo.ydpi;
Mathias Agopian1473f462009-04-10 14:24:30 -0700428 // FIXME: set real values here
Dianne Hackborn8b49bd12010-06-30 13:56:17 -0700429 const_cast<int&>(ANativeWindow::minSwapInterval) = 1;
430 const_cast<int&>(ANativeWindow::maxSwapInterval) = 1;
431 const_cast<uint32_t&>(ANativeWindow::flags) = 0;
Mathias Agopian2ce19af2010-05-25 17:51:34 -0700432
Mathias Agopiane96aa3e2010-08-19 17:01:19 -0700433 mNextBufferTransform = 0;
Mathias Agopian2f7540e2010-03-11 15:06:54 -0800434 mConnected = 0;
Mathias Agopian2ce19af2010-05-25 17:51:34 -0700435 mSwapRectangle.makeInvalid();
Mathias Agopiane96aa3e2010-08-19 17:01:19 -0700436 mNextBufferCrop = Rect(0,0);
Mathias Agopian2be352a2010-05-21 17:24:35 -0700437 // two buffers by default
438 mBuffers.setCapacity(2);
439 mBuffers.insertAt(0, 2);
Mathias Agopian2ce19af2010-05-25 17:51:34 -0700440
Mathias Agopian7623da42010-06-01 15:12:58 -0700441 if (mSurface != 0 && mClient.initCheck() == NO_ERROR) {
Mathias Agopian5e140102010-06-08 19:54:15 -0700442 int32_t token = mClient.getTokenForSurface(mSurface);
443 if (token >= 0) {
Mathias Agopian7623da42010-06-01 15:12:58 -0700444 mSharedBufferClient = new SharedBufferClient(
Mathias Agopian5e140102010-06-08 19:54:15 -0700445 mClient.getSharedClient(), token, 2, mIdentity);
446 mInitCheck = mClient.getSharedClient()->validate(token);
Jamie Gennis85cfdd02010-08-10 16:37:53 -0700447 } else {
448 LOGW("Not initializing the shared buffer client because token = %d",
449 token);
Mathias Agopian7623da42010-06-01 15:12:58 -0700450 }
Mathias Agopian2ce19af2010-05-25 17:51:34 -0700451 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800452}
453
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800454Surface::~Surface()
455{
Mathias Agopian402c3462009-04-14 18:21:47 -0700456 // this is a client-side operation, the surface is destroyed, unmap
457 // its buffers in this process.
Mathias Agopian2be352a2010-05-21 17:24:35 -0700458 size_t size = mBuffers.size();
459 for (size_t i=0 ; i<size ; i++) {
Mathias Agopianb2f84502009-08-19 17:10:18 -0700460 if (mBuffers[i] != 0 && mBuffers[i]->handle != 0) {
Mathias Agopiane633f932009-05-05 00:59:23 -0700461 getBufferMapper().unregisterBuffer(mBuffers[i]->handle);
Mathias Agopian1473f462009-04-10 14:24:30 -0700462 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800463 }
Mathias Agopian402c3462009-04-14 18:21:47 -0700464
Mathias Agopian402c3462009-04-14 18:21:47 -0700465 // clear all references and trigger an IPC now, to make sure things
466 // happen without delay, since these resources are quite heavy.
Mathias Agopian2be352a2010-05-21 17:24:35 -0700467 mBuffers.clear();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800468 mSurface.clear();
Mathias Agopian9779b2212009-09-07 16:32:45 -0700469 delete mSharedBufferClient;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800470 IPCThreadState::self()->flushCommands();
471}
472
Mathias Agopian2ce19af2010-05-25 17:51:34 -0700473bool Surface::isValid() {
474 return mInitCheck == NO_ERROR;
475}
476
477status_t Surface::validate() const
478{
479 // check that we initialized ourself properly
480 if (mInitCheck != NO_ERROR) {
Mathias Agopian5e140102010-06-08 19:54:15 -0700481 LOGE("invalid token (identity=%u)", mIdentity);
Mathias Agopian2ce19af2010-05-25 17:51:34 -0700482 return mInitCheck;
483 }
484
485 // verify the identity of this surface
Mathias Agopian770492c2010-05-28 14:22:23 -0700486 uint32_t identity = mSharedBufferClient->getIdentity();
Mathias Agopian2ce19af2010-05-25 17:51:34 -0700487
488 // this is a bit of a (temporary) special case, identity==0 means that
489 // no operation are allowed from the client (eg: dequeue/queue), this
490 // is used with PUSH_BUFFER surfaces for instance
491 if (identity == 0) {
492 LOGE("[Surface] invalid operation (identity=%u)", mIdentity);
493 return INVALID_OPERATION;
494 }
495
496 if (mIdentity != identity) {
Mathias Agopian5e140102010-06-08 19:54:15 -0700497 LOGE("[Surface] using an invalid surface, "
Mathias Agopian2ce19af2010-05-25 17:51:34 -0700498 "identity=%u should be %d",
Mathias Agopian5e140102010-06-08 19:54:15 -0700499 mIdentity, identity);
Mathias Agopian2ce19af2010-05-25 17:51:34 -0700500 return NO_INIT;
501 }
502
503 // check the surface didn't become invalid
Mathias Agopian770492c2010-05-28 14:22:23 -0700504 status_t err = mSharedBufferClient->getStatus();
Mathias Agopian1473f462009-04-10 14:24:30 -0700505 if (err != NO_ERROR) {
Mathias Agopian5e140102010-06-08 19:54:15 -0700506 LOGE("surface (identity=%u) is invalid, err=%d (%s)",
507 mIdentity, err, strerror(-err));
Mathias Agopian1473f462009-04-10 14:24:30 -0700508 return err;
509 }
Mathias Agopian2ce19af2010-05-25 17:51:34 -0700510
Mathias Agopian1473f462009-04-10 14:24:30 -0700511 return NO_ERROR;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800512}
513
Mathias Agopian2ce19af2010-05-25 17:51:34 -0700514sp<ISurface> Surface::getISurface() const {
515 return mSurface;
516}
517
Mathias Agopian1473f462009-04-10 14:24:30 -0700518// ----------------------------------------------------------------------------
519
Dianne Hackborn8b49bd12010-06-30 13:56:17 -0700520int Surface::setSwapInterval(ANativeWindow* window, int interval) {
Mathias Agopian1473f462009-04-10 14:24:30 -0700521 return 0;
522}
523
Dianne Hackborn8b49bd12010-06-30 13:56:17 -0700524int Surface::dequeueBuffer(ANativeWindow* window,
Mathias Agopian9779b2212009-09-07 16:32:45 -0700525 android_native_buffer_t** buffer) {
Mathias Agopian1473f462009-04-10 14:24:30 -0700526 Surface* self = getSelf(window);
527 return self->dequeueBuffer(buffer);
528}
529
Dianne Hackborn8b49bd12010-06-30 13:56:17 -0700530int Surface::lockBuffer(ANativeWindow* window,
Mathias Agopian9779b2212009-09-07 16:32:45 -0700531 android_native_buffer_t* buffer) {
Mathias Agopian1473f462009-04-10 14:24:30 -0700532 Surface* self = getSelf(window);
533 return self->lockBuffer(buffer);
534}
535
Dianne Hackborn8b49bd12010-06-30 13:56:17 -0700536int Surface::queueBuffer(ANativeWindow* window,
Mathias Agopian9779b2212009-09-07 16:32:45 -0700537 android_native_buffer_t* buffer) {
Mathias Agopian1473f462009-04-10 14:24:30 -0700538 Surface* self = getSelf(window);
539 return self->queueBuffer(buffer);
540}
541
Dianne Hackborn8b49bd12010-06-30 13:56:17 -0700542int Surface::query(ANativeWindow* window,
Mathias Agopian9779b2212009-09-07 16:32:45 -0700543 int what, int* value) {
Mathias Agopian5b5c9142009-07-30 18:14:56 -0700544 Surface* self = getSelf(window);
545 return self->query(what, value);
546}
547
Dianne Hackborn8b49bd12010-06-30 13:56:17 -0700548int Surface::perform(ANativeWindow* window,
Mathias Agopian9779b2212009-09-07 16:32:45 -0700549 int operation, ...) {
Mathias Agopian5cec4742009-08-11 22:34:02 -0700550 va_list args;
551 va_start(args, operation);
552 Surface* self = getSelf(window);
553 int res = self->perform(operation, args);
554 va_end(args);
555 return res;
556}
557
Mathias Agopian1473f462009-04-10 14:24:30 -0700558// ----------------------------------------------------------------------------
559
Mathias Agopian2be352a2010-05-21 17:24:35 -0700560bool Surface::needNewBuffer(int bufIdx,
561 uint32_t *pWidth, uint32_t *pHeight,
562 uint32_t *pFormat, uint32_t *pUsage) const
563{
564 Mutex::Autolock _l(mSurfaceLock);
565
566 // Always call needNewBuffer(), since it clears the needed buffers flags
567 bool needNewBuffer = mSharedBufferClient->needNewBuffer(bufIdx);
568 bool validBuffer = mBufferInfo.validateBuffer(mBuffers[bufIdx]);
569 bool newNeewBuffer = needNewBuffer || !validBuffer;
570 if (newNeewBuffer) {
571 mBufferInfo.get(pWidth, pHeight, pFormat, pUsage);
572 }
573 return newNeewBuffer;
574}
575
Mathias Agopian1473f462009-04-10 14:24:30 -0700576int Surface::dequeueBuffer(android_native_buffer_t** buffer)
577{
Mathias Agopian18e02602009-11-13 15:26:29 -0800578 status_t err = validate();
Mathias Agopian1473f462009-04-10 14:24:30 -0700579 if (err != NO_ERROR)
580 return err;
581
Mathias Agopian04262e92010-09-13 22:57:58 -0700582 GraphicLog& logger(GraphicLog::getInstance());
583 logger.log(GraphicLog::SF_APP_DEQUEUE_BEFORE, mIdentity, -1);
584
Mathias Agopian9779b2212009-09-07 16:32:45 -0700585 ssize_t bufIdx = mSharedBufferClient->dequeue();
Mathias Agopian04262e92010-09-13 22:57:58 -0700586
587 logger.log(GraphicLog::SF_APP_DEQUEUE_AFTER, mIdentity, bufIdx);
588
Mathias Agopian9779b2212009-09-07 16:32:45 -0700589 if (bufIdx < 0) {
590 LOGE("error dequeuing a buffer (%s)", strerror(bufIdx));
591 return bufIdx;
Mathias Agopian9e2be202009-08-21 15:44:17 -0700592 }
Mathias Agopiane611a6e2009-09-15 19:10:47 -0700593
Mathias Agopian2be352a2010-05-21 17:24:35 -0700594 // grow the buffer array if needed
595 const size_t size = mBuffers.size();
596 const size_t needed = bufIdx+1;
597 if (size < needed) {
598 mBuffers.insertAt(size, needed-size);
599 }
Mathias Agopiandb3647f2010-04-08 18:34:07 -0700600
Mathias Agopian2be352a2010-05-21 17:24:35 -0700601 uint32_t w, h, format, usage;
602 if (needNewBuffer(bufIdx, &w, &h, &format, &usage)) {
603 err = getBufferLocked(bufIdx, w, h, format, usage);
604 LOGE_IF(err, "getBufferLocked(%ld, %u, %u, %u, %08x) failed (%s)",
605 bufIdx, w, h, format, usage, strerror(-err));
Mathias Agopianb2f84502009-08-19 17:10:18 -0700606 if (err == NO_ERROR) {
607 // reset the width/height with the what we get from the buffer
Mathias Agopian2be352a2010-05-21 17:24:35 -0700608 const sp<GraphicBuffer>& backBuffer(mBuffers[bufIdx]);
Mathias Agopianb2f84502009-08-19 17:10:18 -0700609 mWidth = uint32_t(backBuffer->width);
610 mHeight = uint32_t(backBuffer->height);
611 }
Mathias Agopian1473f462009-04-10 14:24:30 -0700612 }
613
Mathias Agopian9779b2212009-09-07 16:32:45 -0700614 // if we still don't have a buffer here, we probably ran out of memory
Mathias Agopian2be352a2010-05-21 17:24:35 -0700615 const sp<GraphicBuffer>& backBuffer(mBuffers[bufIdx]);
Mathias Agopian9779b2212009-09-07 16:32:45 -0700616 if (!err && backBuffer==0) {
617 err = NO_MEMORY;
618 }
619
Mathias Agopianabac0102009-07-31 14:47:00 -0700620 if (err == NO_ERROR) {
Mathias Agopian9779b2212009-09-07 16:32:45 -0700621 mDirtyRegion.set(backBuffer->width, backBuffer->height);
622 *buffer = backBuffer.get();
623 } else {
624 mSharedBufferClient->undoDequeue(bufIdx);
Mathias Agopianabac0102009-07-31 14:47:00 -0700625 }
Mathias Agopianb2f84502009-08-19 17:10:18 -0700626
Mathias Agopianabac0102009-07-31 14:47:00 -0700627 return err;
Mathias Agopian1473f462009-04-10 14:24:30 -0700628}
629
630int Surface::lockBuffer(android_native_buffer_t* buffer)
631{
Mathias Agopian18e02602009-11-13 15:26:29 -0800632 status_t err = validate();
Mathias Agopian402c3462009-04-14 18:21:47 -0700633 if (err != NO_ERROR)
634 return err;
635
Mathias Agopianf590f702010-04-27 16:41:19 -0700636 int32_t bufIdx = getBufferIndex(GraphicBuffer::getSelf(buffer));
Mathias Agopian04262e92010-09-13 22:57:58 -0700637
638 GraphicLog& logger(GraphicLog::getInstance());
639 logger.log(GraphicLog::SF_APP_LOCK_BEFORE, mIdentity, bufIdx);
640
Mathias Agopian9779b2212009-09-07 16:32:45 -0700641 err = mSharedBufferClient->lock(bufIdx);
Mathias Agopian04262e92010-09-13 22:57:58 -0700642
643 logger.log(GraphicLog::SF_APP_LOCK_AFTER, mIdentity, bufIdx);
644
Mathias Agopian9779b2212009-09-07 16:32:45 -0700645 LOGE_IF(err, "error locking buffer %d (%s)", bufIdx, strerror(-err));
646 return err;
Mathias Agopian1473f462009-04-10 14:24:30 -0700647}
648
649int Surface::queueBuffer(android_native_buffer_t* buffer)
Mathias Agopian04262e92010-09-13 22:57:58 -0700650{
Mathias Agopian18e02602009-11-13 15:26:29 -0800651 status_t err = validate();
Mathias Agopian1473f462009-04-10 14:24:30 -0700652 if (err != NO_ERROR)
653 return err;
654
Mathias Agopiandff8e582009-05-04 14:17:04 -0700655 if (mSwapRectangle.isValid()) {
656 mDirtyRegion.set(mSwapRectangle);
657 }
658
Mathias Agopianf590f702010-04-27 16:41:19 -0700659 int32_t bufIdx = getBufferIndex(GraphicBuffer::getSelf(buffer));
Mathias Agopian04262e92010-09-13 22:57:58 -0700660
661 GraphicLog::getInstance().log(GraphicLog::SF_APP_QUEUE, mIdentity, bufIdx);
662
Mathias Agopiane96aa3e2010-08-19 17:01:19 -0700663 mSharedBufferClient->setTransform(bufIdx, mNextBufferTransform);
Mathias Agopian16a86ee2010-04-15 18:48:26 -0700664 mSharedBufferClient->setCrop(bufIdx, mNextBufferCrop);
Mathias Agopian9779b2212009-09-07 16:32:45 -0700665 mSharedBufferClient->setDirtyRegion(bufIdx, mDirtyRegion);
666 err = mSharedBufferClient->queue(bufIdx);
667 LOGE_IF(err, "error queuing buffer %d (%s)", bufIdx, strerror(-err));
Mathias Agopian1473f462009-04-10 14:24:30 -0700668
Mathias Agopian9779b2212009-09-07 16:32:45 -0700669 if (err == NO_ERROR) {
Mathias Agopian7623da42010-06-01 15:12:58 -0700670 // TODO: can we avoid this IPC if we know there is one pending?
671 mClient.signalServer();
Mathias Agopian9779b2212009-09-07 16:32:45 -0700672 }
673 return err;
Mathias Agopian1473f462009-04-10 14:24:30 -0700674}
675
Mathias Agopian5b5c9142009-07-30 18:14:56 -0700676int Surface::query(int what, int* value)
677{
678 switch (what) {
Mathias Agopian9779b2212009-09-07 16:32:45 -0700679 case NATIVE_WINDOW_WIDTH:
680 *value = int(mWidth);
681 return NO_ERROR;
682 case NATIVE_WINDOW_HEIGHT:
683 *value = int(mHeight);
684 return NO_ERROR;
685 case NATIVE_WINDOW_FORMAT:
686 *value = int(mFormat);
687 return NO_ERROR;
Mathias Agopian5b5c9142009-07-30 18:14:56 -0700688 }
689 return BAD_VALUE;
690}
691
Mathias Agopian5cec4742009-08-11 22:34:02 -0700692int Surface::perform(int operation, va_list args)
693{
Mathias Agopian16a86ee2010-04-15 18:48:26 -0700694 status_t err = validate();
695 if (err != NO_ERROR)
696 return err;
697
Mathias Agopian5cec4742009-08-11 22:34:02 -0700698 int res = NO_ERROR;
699 switch (operation) {
Mathias Agopian2f7540e2010-03-11 15:06:54 -0800700 case NATIVE_WINDOW_SET_USAGE:
701 dispatch_setUsage( args );
702 break;
703 case NATIVE_WINDOW_CONNECT:
704 res = dispatch_connect( args );
705 break;
706 case NATIVE_WINDOW_DISCONNECT:
707 res = dispatch_disconnect( args );
708 break;
Mathias Agopian16a86ee2010-04-15 18:48:26 -0700709 case NATIVE_WINDOW_SET_CROP:
710 res = dispatch_crop( args );
711 break;
Mathias Agopian25f0bda2010-05-21 14:19:50 -0700712 case NATIVE_WINDOW_SET_BUFFER_COUNT:
713 res = dispatch_set_buffer_count( args );
714 break;
Mathias Agopian663badd2010-05-26 21:31:09 -0700715 case NATIVE_WINDOW_SET_BUFFERS_GEOMETRY:
716 res = dispatch_set_buffers_geometry( args );
717 break;
Mathias Agopiane96aa3e2010-08-19 17:01:19 -0700718 case NATIVE_WINDOW_SET_BUFFERS_TRANSFORM:
719 res = dispatch_set_buffers_transform( args );
720 break;
Mathias Agopian2f7540e2010-03-11 15:06:54 -0800721 default:
722 res = NAME_NOT_FOUND;
723 break;
Mathias Agopian5cec4742009-08-11 22:34:02 -0700724 }
725 return res;
726}
727
Mathias Agopian2f7540e2010-03-11 15:06:54 -0800728void Surface::dispatch_setUsage(va_list args) {
729 int usage = va_arg(args, int);
730 setUsage( usage );
731}
732int Surface::dispatch_connect(va_list args) {
733 int api = va_arg(args, int);
734 return connect( api );
735}
736int Surface::dispatch_disconnect(va_list args) {
737 int api = va_arg(args, int);
738 return disconnect( api );
739}
Mathias Agopian16a86ee2010-04-15 18:48:26 -0700740int Surface::dispatch_crop(va_list args) {
741 android_native_rect_t const* rect = va_arg(args, android_native_rect_t*);
742 return crop( reinterpret_cast<Rect const*>(rect) );
743}
Mathias Agopian25f0bda2010-05-21 14:19:50 -0700744int Surface::dispatch_set_buffer_count(va_list args) {
745 size_t bufferCount = va_arg(args, size_t);
746 return setBufferCount(bufferCount);
747}
Mathias Agopian2be352a2010-05-21 17:24:35 -0700748int Surface::dispatch_set_buffers_geometry(va_list args) {
749 int w = va_arg(args, int);
750 int h = va_arg(args, int);
751 int f = va_arg(args, int);
752 return setBuffersGeometry(w, h, f);
753}
Mathias Agopian2f7540e2010-03-11 15:06:54 -0800754
Mathias Agopiane96aa3e2010-08-19 17:01:19 -0700755int Surface::dispatch_set_buffers_transform(va_list args) {
756 int transform = va_arg(args, int);
757 return setBuffersTransform(transform);
758}
759
Mathias Agopian321abdb2009-08-14 18:52:17 -0700760void Surface::setUsage(uint32_t reqUsage)
761{
762 Mutex::Autolock _l(mSurfaceLock);
Mathias Agopian2be352a2010-05-21 17:24:35 -0700763 mBufferInfo.set(reqUsage);
Mathias Agopian321abdb2009-08-14 18:52:17 -0700764}
765
Mathias Agopian2f7540e2010-03-11 15:06:54 -0800766int Surface::connect(int api)
767{
768 Mutex::Autolock _l(mSurfaceLock);
769 int err = NO_ERROR;
770 switch (api) {
771 case NATIVE_WINDOW_API_EGL:
772 if (mConnected) {
773 err = -EINVAL;
774 } else {
775 mConnected = api;
776 }
777 break;
778 default:
779 err = -EINVAL;
780 break;
781 }
782 return err;
783}
784
785int Surface::disconnect(int api)
786{
787 Mutex::Autolock _l(mSurfaceLock);
788 int err = NO_ERROR;
789 switch (api) {
790 case NATIVE_WINDOW_API_EGL:
791 if (mConnected == api) {
792 mConnected = 0;
793 } else {
794 err = -EINVAL;
795 }
796 break;
797 default:
798 err = -EINVAL;
799 break;
800 }
801 return err;
802}
803
Mathias Agopian16a86ee2010-04-15 18:48:26 -0700804int Surface::crop(Rect const* rect)
805{
Mathias Agopiane96aa3e2010-08-19 17:01:19 -0700806 // empty/invalid rects are not allowed
807 if (rect->isEmpty())
808 return BAD_VALUE;
809
Mathias Agopian16a86ee2010-04-15 18:48:26 -0700810 Mutex::Autolock _l(mSurfaceLock);
811 // TODO: validate rect size
812 mNextBufferCrop = *rect;
813 return NO_ERROR;
814}
815
Mathias Agopian59751db2010-05-07 15:58:44 -0700816int Surface::setBufferCount(int bufferCount)
817{
818 sp<ISurface> s(mSurface);
819 if (s == 0) return NO_INIT;
820
Mathias Agopian898c4c92010-05-18 17:06:55 -0700821 class SetBufferCountIPC : public SharedBufferClient::SetBufferCountCallback {
822 sp<ISurface> surface;
823 virtual status_t operator()(int bufferCount) const {
824 return surface->setBufferCount(bufferCount);
825 }
826 public:
827 SetBufferCountIPC(const sp<ISurface>& surface) : surface(surface) { }
828 } ipc(s);
Mathias Agopian59751db2010-05-07 15:58:44 -0700829
Mathias Agopian898c4c92010-05-18 17:06:55 -0700830 status_t err = mSharedBufferClient->setBufferCount(bufferCount, ipc);
Mathias Agopian59751db2010-05-07 15:58:44 -0700831 LOGE_IF(err, "ISurface::setBufferCount(%d) returned %s",
832 bufferCount, strerror(-err));
Mathias Agopian59751db2010-05-07 15:58:44 -0700833 return err;
834}
835
Mathias Agopian2be352a2010-05-21 17:24:35 -0700836int Surface::setBuffersGeometry(int w, int h, int format)
837{
838 if (w<0 || h<0 || format<0)
839 return BAD_VALUE;
840
841 if ((w && !h) || (!w && h))
842 return BAD_VALUE;
843
844 Mutex::Autolock _l(mSurfaceLock);
845 mBufferInfo.set(w, h, format);
846 return NO_ERROR;
847}
848
Mathias Agopiane96aa3e2010-08-19 17:01:19 -0700849int Surface::setBuffersTransform(int transform)
850{
851 Mutex::Autolock _l(mSurfaceLock);
852 mNextBufferTransform = transform;
853 return NO_ERROR;
854}
855
Mathias Agopian2be352a2010-05-21 17:24:35 -0700856// ----------------------------------------------------------------------------
857
858int Surface::getConnectedApi() const
859{
860 Mutex::Autolock _l(mSurfaceLock);
861 return mConnected;
862}
Mathias Agopian2f7540e2010-03-11 15:06:54 -0800863
Mathias Agopian1473f462009-04-10 14:24:30 -0700864// ----------------------------------------------------------------------------
865
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800866status_t Surface::lock(SurfaceInfo* info, bool blocking) {
867 return Surface::lock(info, NULL, blocking);
868}
869
Mathias Agopiandff8e582009-05-04 14:17:04 -0700870status_t Surface::lock(SurfaceInfo* other, Region* dirtyIn, bool blocking)
Mathias Agopian1473f462009-04-10 14:24:30 -0700871{
Mathias Agopian2f7540e2010-03-11 15:06:54 -0800872 if (getConnectedApi()) {
873 LOGE("Surface::lock(%p) failed. Already connected to another API",
Dianne Hackborn8b49bd12010-06-30 13:56:17 -0700874 (ANativeWindow*)this);
Mathias Agopian2f7540e2010-03-11 15:06:54 -0800875 CallStack stack;
876 stack.update();
877 stack.dump("");
878 return INVALID_OPERATION;
879 }
880
Mathias Agopian9779b2212009-09-07 16:32:45 -0700881 if (mApiLock.tryLock() != NO_ERROR) {
Mathias Agopian116e5412010-01-22 11:47:55 -0800882 LOGE("calling Surface::lock from different threads!");
Mathias Agopian9779b2212009-09-07 16:32:45 -0700883 CallStack stack;
884 stack.update();
Mathias Agopian2f7540e2010-03-11 15:06:54 -0800885 stack.dump("");
Mathias Agopian9779b2212009-09-07 16:32:45 -0700886 return WOULD_BLOCK;
887 }
Mathias Agopian116e5412010-01-22 11:47:55 -0800888
889 /* Here we're holding mApiLock */
Mathias Agopian9779b2212009-09-07 16:32:45 -0700890
Mathias Agopian116e5412010-01-22 11:47:55 -0800891 if (mLockedBuffer != 0) {
892 LOGE("Surface::lock failed, already locked");
893 mApiLock.unlock();
894 return INVALID_OPERATION;
895 }
896
Mathias Agopian5cec4742009-08-11 22:34:02 -0700897 // we're intending to do software rendering from this point
Mathias Agopian321abdb2009-08-14 18:52:17 -0700898 setUsage(GRALLOC_USAGE_SW_READ_OFTEN | GRALLOC_USAGE_SW_WRITE_OFTEN);
899
Mathias Agopianf590f702010-04-27 16:41:19 -0700900 android_native_buffer_t* out;
901 status_t err = dequeueBuffer(&out);
Mathias Agopian9779b2212009-09-07 16:32:45 -0700902 LOGE_IF(err, "dequeueBuffer failed (%s)", strerror(-err));
Mathias Agopian1473f462009-04-10 14:24:30 -0700903 if (err == NO_ERROR) {
Mathias Agopianf590f702010-04-27 16:41:19 -0700904 sp<GraphicBuffer> backBuffer(GraphicBuffer::getSelf(out));
Mathias Agopian9779b2212009-09-07 16:32:45 -0700905 err = lockBuffer(backBuffer.get());
906 LOGE_IF(err, "lockBuffer (idx=%d) failed (%s)",
Mathias Agopianf590f702010-04-27 16:41:19 -0700907 getBufferIndex(backBuffer), strerror(-err));
Mathias Agopian1473f462009-04-10 14:24:30 -0700908 if (err == NO_ERROR) {
Mathias Agopian1473f462009-04-10 14:24:30 -0700909 const Rect bounds(backBuffer->width, backBuffer->height);
Mathias Agopiana8a0aa82010-04-21 15:24:11 -0700910 const Region boundsRegion(bounds);
911 Region scratch(boundsRegion);
Mathias Agopiandff8e582009-05-04 14:17:04 -0700912 Region& newDirtyRegion(dirtyIn ? *dirtyIn : scratch);
Mathias Agopiana8a0aa82010-04-21 15:24:11 -0700913 newDirtyRegion &= boundsRegion;
Mathias Agopian1473f462009-04-10 14:24:30 -0700914
Mathias Agopiana8a0aa82010-04-21 15:24:11 -0700915 // figure out if we can copy the frontbuffer back
Mathias Agopian6950e422009-10-05 17:07:12 -0700916 const sp<GraphicBuffer>& frontBuffer(mPostedBuffer);
Mathias Agopiana8a0aa82010-04-21 15:24:11 -0700917 const bool canCopyBack = (frontBuffer != 0 &&
918 backBuffer->width == frontBuffer->width &&
919 backBuffer->height == frontBuffer->height &&
920 backBuffer->format == frontBuffer->format &&
921 !(mFlags & ISurfaceComposer::eDestroyBackbuffer));
922
923 // the dirty region we report to surfaceflinger is the one
924 // given by the user (as opposed to the one *we* return to the
925 // user).
926 mDirtyRegion = newDirtyRegion;
927
928 if (canCopyBack) {
929 // copy the area that is invalid and not repainted this round
930 const Region copyback(mOldDirtyRegion.subtract(newDirtyRegion));
931 if (!copyback.isEmpty())
Mathias Agopian9779b2212009-09-07 16:32:45 -0700932 copyBlt(backBuffer, frontBuffer, copyback);
Mathias Agopiana8a0aa82010-04-21 15:24:11 -0700933 } else {
934 // if we can't copy-back anything, modify the user's dirty
935 // region to make sure they redraw the whole buffer
936 newDirtyRegion = boundsRegion;
Mathias Agopian1473f462009-04-10 14:24:30 -0700937 }
Mathias Agopian9779b2212009-09-07 16:32:45 -0700938
Mathias Agopiana8a0aa82010-04-21 15:24:11 -0700939 // keep track of the are of the buffer that is "clean"
940 // (ie: that will be redrawn)
Mathias Agopiandff8e582009-05-04 14:17:04 -0700941 mOldDirtyRegion = newDirtyRegion;
Mathias Agopian1473f462009-04-10 14:24:30 -0700942
Mathias Agopian430f2ed2009-05-05 00:37:46 -0700943 void* vaddr;
Mathias Agopiandff8e582009-05-04 14:17:04 -0700944 status_t res = backBuffer->lock(
945 GRALLOC_USAGE_SW_READ_OFTEN | GRALLOC_USAGE_SW_WRITE_OFTEN,
Mathias Agopian430f2ed2009-05-05 00:37:46 -0700946 newDirtyRegion.bounds(), &vaddr);
Mathias Agopiandff8e582009-05-04 14:17:04 -0700947
Mathias Agopian9779b2212009-09-07 16:32:45 -0700948 LOGW_IF(res, "failed locking buffer (handle = %p)",
949 backBuffer->handle);
Mathias Agopiandff8e582009-05-04 14:17:04 -0700950
951 mLockedBuffer = backBuffer;
952 other->w = backBuffer->width;
953 other->h = backBuffer->height;
954 other->s = backBuffer->stride;
955 other->usage = backBuffer->usage;
956 other->format = backBuffer->format;
Mathias Agopian430f2ed2009-05-05 00:37:46 -0700957 other->bits = vaddr;
Mathias Agopian1473f462009-04-10 14:24:30 -0700958 }
959 }
Mathias Agopian9779b2212009-09-07 16:32:45 -0700960 mApiLock.unlock();
Mathias Agopian1473f462009-04-10 14:24:30 -0700961 return err;
962}
963
964status_t Surface::unlockAndPost()
965{
Mathias Agopian9779b2212009-09-07 16:32:45 -0700966 if (mLockedBuffer == 0) {
Mathias Agopian116e5412010-01-22 11:47:55 -0800967 LOGE("Surface::unlockAndPost failed, no locked buffer");
968 return INVALID_OPERATION;
Mathias Agopian9779b2212009-09-07 16:32:45 -0700969 }
Mathias Agopian1473f462009-04-10 14:24:30 -0700970
Mathias Agopian9779b2212009-09-07 16:32:45 -0700971 status_t err = mLockedBuffer->unlock();
972 LOGE_IF(err, "failed unlocking buffer (%p)", mLockedBuffer->handle);
Mathias Agopiandff8e582009-05-04 14:17:04 -0700973
Mathias Agopian9779b2212009-09-07 16:32:45 -0700974 err = queueBuffer(mLockedBuffer.get());
975 LOGE_IF(err, "queueBuffer (idx=%d) failed (%s)",
Mathias Agopianf590f702010-04-27 16:41:19 -0700976 getBufferIndex(mLockedBuffer), strerror(-err));
Mathias Agopian9779b2212009-09-07 16:32:45 -0700977
978 mPostedBuffer = mLockedBuffer;
Mathias Agopian1473f462009-04-10 14:24:30 -0700979 mLockedBuffer = 0;
980 return err;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800981}
982
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800983void Surface::setSwapRectangle(const Rect& r) {
Mathias Agopian321abdb2009-08-14 18:52:17 -0700984 Mutex::Autolock _l(mSurfaceLock);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800985 mSwapRectangle = r;
986}
987
Mathias Agopianf590f702010-04-27 16:41:19 -0700988int Surface::getBufferIndex(const sp<GraphicBuffer>& buffer) const
989{
990 return buffer->getIndex();
991}
992
Mathias Agopian2be352a2010-05-21 17:24:35 -0700993status_t Surface::getBufferLocked(int index,
994 uint32_t w, uint32_t h, uint32_t format, uint32_t usage)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800995{
Mathias Agopian321abdb2009-08-14 18:52:17 -0700996 sp<ISurface> s(mSurface);
997 if (s == 0) return NO_INIT;
998
Mathias Agopian1473f462009-04-10 14:24:30 -0700999 status_t err = NO_MEMORY;
Mathias Agopianb2f84502009-08-19 17:10:18 -07001000
1001 // free the current buffer
Mathias Agopian2be352a2010-05-21 17:24:35 -07001002 sp<GraphicBuffer>& currentBuffer(mBuffers.editItemAt(index));
Mathias Agopianb2f84502009-08-19 17:10:18 -07001003 if (currentBuffer != 0) {
1004 getBufferMapper().unregisterBuffer(currentBuffer->handle);
1005 currentBuffer.clear();
1006 }
1007
Mathias Agopian2be352a2010-05-21 17:24:35 -07001008 sp<GraphicBuffer> buffer = s->requestBuffer(index, w, h, format, usage);
Mathias Agopian9779b2212009-09-07 16:32:45 -07001009 LOGE_IF(buffer==0,
1010 "ISurface::getBuffer(%d, %08x) returned NULL",
1011 index, usage);
Mathias Agopianb2f84502009-08-19 17:10:18 -07001012 if (buffer != 0) { // this should never happen by construction
Mathias Agopian9779b2212009-09-07 16:32:45 -07001013 LOGE_IF(buffer->handle == NULL,
Mathias Agopian2be352a2010-05-21 17:24:35 -07001014 "Surface (identity=%d) requestBuffer(%d, %u, %u, %u, %08x) "
1015 "returned a buffer with a null handle",
1016 mIdentity, index, w, h, format, usage);
Mathias Agopian0c4cec72009-10-02 18:12:30 -07001017 err = mSharedBufferClient->getStatus();
1018 LOGE_IF(err, "Surface (identity=%d) state = %d", mIdentity, err);
1019 if (!err && buffer->handle != NULL) {
Mathias Agopianb2f84502009-08-19 17:10:18 -07001020 err = getBufferMapper().registerBuffer(buffer->handle);
1021 LOGW_IF(err, "registerBuffer(...) failed %d (%s)",
1022 err, strerror(-err));
1023 if (err == NO_ERROR) {
1024 currentBuffer = buffer;
Mathias Agopian9779b2212009-09-07 16:32:45 -07001025 currentBuffer->setIndex(index);
Mathias Agopianb2f84502009-08-19 17:10:18 -07001026 }
Mathias Agopian0da41a32009-10-06 15:58:44 -07001027 } else {
Mathias Agopian25f0bda2010-05-21 14:19:50 -07001028 err = err<0 ? err : status_t(NO_MEMORY);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001029 }
1030 }
Mathias Agopian1473f462009-04-10 14:24:30 -07001031 return err;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001032}
1033
Mathias Agopian2be352a2010-05-21 17:24:35 -07001034// ----------------------------------------------------------------------------
1035Surface::BufferInfo::BufferInfo()
1036 : mWidth(0), mHeight(0), mFormat(0),
1037 mUsage(GRALLOC_USAGE_HW_RENDER), mDirty(0)
1038{
1039}
1040
1041void Surface::BufferInfo::set(uint32_t w, uint32_t h, uint32_t format) {
1042 if ((mWidth != w) || (mHeight != h) || (mFormat != format)) {
1043 mWidth = w;
1044 mHeight = h;
1045 mFormat = format;
1046 mDirty |= GEOMETRY;
1047 }
1048}
1049
1050void Surface::BufferInfo::set(uint32_t usage) {
1051 mUsage = usage;
1052}
1053
1054void Surface::BufferInfo::get(uint32_t *pWidth, uint32_t *pHeight,
1055 uint32_t *pFormat, uint32_t *pUsage) const {
1056 *pWidth = mWidth;
1057 *pHeight = mHeight;
1058 *pFormat = mFormat;
1059 *pUsage = mUsage;
1060}
1061
1062bool Surface::BufferInfo::validateBuffer(const sp<GraphicBuffer>& buffer) const {
1063 // make sure we AT LEAST have the usage flags we want
1064 if (mDirty || buffer==0 ||
1065 ((buffer->usage & mUsage) != mUsage)) {
1066 mDirty = 0;
1067 return false;
1068 }
1069 return true;
1070}
1071
1072// ----------------------------------------------------------------------------
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001073}; // namespace android