The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1 | /* |
| 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 | // tag as surfaceflinger |
| 18 | #define LOG_TAG "SurfaceFlinger" |
| 19 | |
| 20 | #include <stdint.h> |
| 21 | #include <sys/types.h> |
| 22 | |
Mathias Agopian | c5b2c0b | 2009-05-19 19:08:10 -0700 | [diff] [blame] | 23 | #include <binder/Parcel.h> |
| 24 | #include <binder/IMemory.h> |
| 25 | #include <binder/IPCThreadState.h> |
| 26 | #include <binder/IServiceManager.h> |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 27 | |
Mathias Agopian | 698c087 | 2011-06-28 19:09:31 -0700 | [diff] [blame] | 28 | #include <private/surfaceflinger/LayerState.h> |
| 29 | |
Jamie Gennis | 134f042 | 2011-03-08 12:18:54 -0800 | [diff] [blame] | 30 | #include <surfaceflinger/ISurfaceComposer.h> |
| 31 | |
Mathias Agopian | d0566bc | 2011-11-17 17:49:17 -0800 | [diff] [blame] | 32 | #include <gui/BitTube.h> |
| 33 | #include <gui/IDisplayEventConnection.h> |
| 34 | |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 35 | #include <ui/DisplayInfo.h> |
| 36 | |
Jamie Gennis | 582270d | 2011-08-17 18:19:00 -0700 | [diff] [blame] | 37 | #include <gui/ISurfaceTexture.h> |
| 38 | |
Jamie Gennis | 134f042 | 2011-03-08 12:18:54 -0800 | [diff] [blame] | 39 | #include <utils/Log.h> |
Mathias Agopian | 9cce325 | 2010-02-09 17:46:37 -0800 | [diff] [blame] | 40 | |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 41 | // --------------------------------------------------------------------------- |
| 42 | |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 43 | namespace android { |
| 44 | |
Mathias Agopian | d0566bc | 2011-11-17 17:49:17 -0800 | [diff] [blame] | 45 | class IDisplayEventConnection; |
| 46 | |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 47 | class BpSurfaceComposer : public BpInterface<ISurfaceComposer> |
| 48 | { |
| 49 | public: |
| 50 | BpSurfaceComposer(const sp<IBinder>& impl) |
| 51 | : BpInterface<ISurfaceComposer>(impl) |
| 52 | { |
| 53 | } |
| 54 | |
Mathias Agopian | 7e27f05 | 2010-05-28 14:22:23 -0700 | [diff] [blame] | 55 | virtual sp<ISurfaceComposerClient> createConnection() |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 56 | { |
| 57 | uint32_t n; |
| 58 | Parcel data, reply; |
| 59 | data.writeInterfaceToken(ISurfaceComposer::getInterfaceDescriptor()); |
| 60 | remote()->transact(BnSurfaceComposer::CREATE_CONNECTION, data, &reply); |
Mathias Agopian | 7e27f05 | 2010-05-28 14:22:23 -0700 | [diff] [blame] | 61 | return interface_cast<ISurfaceComposerClient>(reply.readStrongBinder()); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 62 | } |
| 63 | |
Jamie Gennis | 9a78c90 | 2011-01-12 18:30:40 -0800 | [diff] [blame] | 64 | virtual sp<IGraphicBufferAlloc> createGraphicBufferAlloc() |
| 65 | { |
| 66 | uint32_t n; |
| 67 | Parcel data, reply; |
| 68 | data.writeInterfaceToken(ISurfaceComposer::getInterfaceDescriptor()); |
| 69 | remote()->transact(BnSurfaceComposer::CREATE_GRAPHIC_BUFFER_ALLOC, data, &reply); |
| 70 | return interface_cast<IGraphicBufferAlloc>(reply.readStrongBinder()); |
| 71 | } |
| 72 | |
Mathias Agopian | 7303c6b | 2009-07-02 18:11:53 -0700 | [diff] [blame] | 73 | virtual sp<IMemoryHeap> getCblk() const |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 74 | { |
| 75 | Parcel data, reply; |
| 76 | data.writeInterfaceToken(ISurfaceComposer::getInterfaceDescriptor()); |
| 77 | remote()->transact(BnSurfaceComposer::GET_CBLK, data, &reply); |
Mathias Agopian | 7303c6b | 2009-07-02 18:11:53 -0700 | [diff] [blame] | 78 | return interface_cast<IMemoryHeap>(reply.readStrongBinder()); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 79 | } |
| 80 | |
Jamie Gennis | b8d69a5 | 2011-10-10 15:48:06 -0700 | [diff] [blame] | 81 | virtual void setTransactionState(const Vector<ComposerState>& state, |
Jamie Gennis | 2837839 | 2011-10-12 17:39:00 -0700 | [diff] [blame] | 82 | int orientation, uint32_t flags) |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 83 | { |
| 84 | Parcel data, reply; |
| 85 | data.writeInterfaceToken(ISurfaceComposer::getInterfaceDescriptor()); |
Mathias Agopian | 698c087 | 2011-06-28 19:09:31 -0700 | [diff] [blame] | 86 | Vector<ComposerState>::const_iterator b(state.begin()); |
| 87 | Vector<ComposerState>::const_iterator e(state.end()); |
| 88 | data.writeInt32(state.size()); |
| 89 | for ( ; b != e ; ++b ) { |
| 90 | b->write(data); |
| 91 | } |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 92 | data.writeInt32(orientation); |
Jamie Gennis | 2837839 | 2011-10-12 17:39:00 -0700 | [diff] [blame] | 93 | data.writeInt32(flags); |
Jamie Gennis | b8d69a5 | 2011-10-10 15:48:06 -0700 | [diff] [blame] | 94 | remote()->transact(BnSurfaceComposer::SET_TRANSACTION_STATE, data, &reply); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 95 | } |
| 96 | |
| 97 | virtual void bootFinished() |
| 98 | { |
| 99 | Parcel data, reply; |
| 100 | data.writeInterfaceToken(ISurfaceComposer::getInterfaceDescriptor()); |
| 101 | remote()->transact(BnSurfaceComposer::BOOT_FINISHED, data, &reply); |
| 102 | } |
| 103 | |
Mathias Agopian | 1b0b30d | 2010-09-24 11:26:58 -0700 | [diff] [blame] | 104 | virtual status_t captureScreen(DisplayID dpy, |
| 105 | sp<IMemoryHeap>* heap, |
Mathias Agopian | df85c45 | 2010-09-29 13:02:36 -0700 | [diff] [blame] | 106 | uint32_t* width, uint32_t* height, PixelFormat* format, |
Mathias Agopian | bf2c6a6 | 2010-12-10 16:22:31 -0800 | [diff] [blame] | 107 | uint32_t reqWidth, uint32_t reqHeight, |
| 108 | uint32_t minLayerZ, uint32_t maxLayerZ) |
Mathias Agopian | 1b0b30d | 2010-09-24 11:26:58 -0700 | [diff] [blame] | 109 | { |
| 110 | Parcel data, reply; |
| 111 | data.writeInterfaceToken(ISurfaceComposer::getInterfaceDescriptor()); |
| 112 | data.writeInt32(dpy); |
Mathias Agopian | df85c45 | 2010-09-29 13:02:36 -0700 | [diff] [blame] | 113 | data.writeInt32(reqWidth); |
| 114 | data.writeInt32(reqHeight); |
Mathias Agopian | bf2c6a6 | 2010-12-10 16:22:31 -0800 | [diff] [blame] | 115 | data.writeInt32(minLayerZ); |
| 116 | data.writeInt32(maxLayerZ); |
Mathias Agopian | 1b0b30d | 2010-09-24 11:26:58 -0700 | [diff] [blame] | 117 | remote()->transact(BnSurfaceComposer::CAPTURE_SCREEN, data, &reply); |
| 118 | *heap = interface_cast<IMemoryHeap>(reply.readStrongBinder()); |
| 119 | *width = reply.readInt32(); |
| 120 | *height = reply.readInt32(); |
| 121 | *format = reply.readInt32(); |
| 122 | return reply.readInt32(); |
| 123 | } |
| 124 | |
Mathias Agopian | 59119e6 | 2010-10-11 12:37:43 -0700 | [diff] [blame] | 125 | virtual status_t turnElectronBeamOff(int32_t mode) |
| 126 | { |
| 127 | Parcel data, reply; |
| 128 | data.writeInterfaceToken(ISurfaceComposer::getInterfaceDescriptor()); |
| 129 | data.writeInt32(mode); |
| 130 | remote()->transact(BnSurfaceComposer::TURN_ELECTRON_BEAM_OFF, data, &reply); |
| 131 | return reply.readInt32(); |
| 132 | } |
| 133 | |
Mathias Agopian | 9daa5c9 | 2010-10-12 16:05:48 -0700 | [diff] [blame] | 134 | virtual status_t turnElectronBeamOn(int32_t mode) |
| 135 | { |
| 136 | Parcel data, reply; |
| 137 | data.writeInterfaceToken(ISurfaceComposer::getInterfaceDescriptor()); |
| 138 | data.writeInt32(mode); |
| 139 | remote()->transact(BnSurfaceComposer::TURN_ELECTRON_BEAM_ON, data, &reply); |
| 140 | return reply.readInt32(); |
| 141 | } |
| 142 | |
Jamie Gennis | 582270d | 2011-08-17 18:19:00 -0700 | [diff] [blame] | 143 | virtual bool authenticateSurfaceTexture( |
| 144 | const sp<ISurfaceTexture>& surfaceTexture) const |
Jamie Gennis | 134f042 | 2011-03-08 12:18:54 -0800 | [diff] [blame] | 145 | { |
| 146 | Parcel data, reply; |
| 147 | int err = NO_ERROR; |
| 148 | err = data.writeInterfaceToken( |
| 149 | ISurfaceComposer::getInterfaceDescriptor()); |
| 150 | if (err != NO_ERROR) { |
Jamie Gennis | 582270d | 2011-08-17 18:19:00 -0700 | [diff] [blame] | 151 | LOGE("ISurfaceComposer::authenticateSurfaceTexture: error writing " |
Jamie Gennis | 134f042 | 2011-03-08 12:18:54 -0800 | [diff] [blame] | 152 | "interface descriptor: %s (%d)", strerror(-err), -err); |
| 153 | return false; |
| 154 | } |
Jamie Gennis | 582270d | 2011-08-17 18:19:00 -0700 | [diff] [blame] | 155 | err = data.writeStrongBinder(surfaceTexture->asBinder()); |
Jamie Gennis | 134f042 | 2011-03-08 12:18:54 -0800 | [diff] [blame] | 156 | if (err != NO_ERROR) { |
Jamie Gennis | 582270d | 2011-08-17 18:19:00 -0700 | [diff] [blame] | 157 | LOGE("ISurfaceComposer::authenticateSurfaceTexture: error writing " |
| 158 | "strong binder to parcel: %s (%d)", strerror(-err), -err); |
Jamie Gennis | 134f042 | 2011-03-08 12:18:54 -0800 | [diff] [blame] | 159 | return false; |
| 160 | } |
| 161 | err = remote()->transact(BnSurfaceComposer::AUTHENTICATE_SURFACE, data, |
| 162 | &reply); |
| 163 | if (err != NO_ERROR) { |
Jamie Gennis | 582270d | 2011-08-17 18:19:00 -0700 | [diff] [blame] | 164 | LOGE("ISurfaceComposer::authenticateSurfaceTexture: error " |
| 165 | "performing transaction: %s (%d)", strerror(-err), -err); |
Jamie Gennis | 134f042 | 2011-03-08 12:18:54 -0800 | [diff] [blame] | 166 | return false; |
| 167 | } |
| 168 | int32_t result = 0; |
| 169 | err = reply.readInt32(&result); |
| 170 | if (err != NO_ERROR) { |
Jamie Gennis | 582270d | 2011-08-17 18:19:00 -0700 | [diff] [blame] | 171 | LOGE("ISurfaceComposer::authenticateSurfaceTexture: error " |
| 172 | "retrieving result: %s (%d)", strerror(-err), -err); |
Jamie Gennis | 134f042 | 2011-03-08 12:18:54 -0800 | [diff] [blame] | 173 | return false; |
| 174 | } |
| 175 | return result != 0; |
| 176 | } |
Mathias Agopian | d0566bc | 2011-11-17 17:49:17 -0800 | [diff] [blame] | 177 | |
| 178 | virtual sp<IDisplayEventConnection> createDisplayEventConnection() |
| 179 | { |
| 180 | Parcel data, reply; |
| 181 | sp<IDisplayEventConnection> result; |
| 182 | int err = data.writeInterfaceToken( |
| 183 | ISurfaceComposer::getInterfaceDescriptor()); |
| 184 | if (err != NO_ERROR) { |
| 185 | return result; |
| 186 | } |
| 187 | err = remote()->transact( |
| 188 | BnSurfaceComposer::CREATE_DISPLAY_EVENT_CONNECTION, |
| 189 | data, &reply); |
| 190 | if (err != NO_ERROR) { |
| 191 | LOGE("ISurfaceComposer::createDisplayEventConnection: error performing " |
| 192 | "transaction: %s (%d)", strerror(-err), -err); |
| 193 | return result; |
| 194 | } |
| 195 | result = interface_cast<IDisplayEventConnection>(reply.readStrongBinder()); |
| 196 | return result; |
| 197 | } |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 198 | }; |
| 199 | |
| 200 | IMPLEMENT_META_INTERFACE(SurfaceComposer, "android.ui.ISurfaceComposer"); |
| 201 | |
| 202 | // ---------------------------------------------------------------------- |
| 203 | |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 204 | status_t BnSurfaceComposer::onTransact( |
| 205 | uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) |
| 206 | { |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 207 | switch(code) { |
| 208 | case CREATE_CONNECTION: { |
Mathias Agopian | 83c0446 | 2009-05-22 19:00:22 -0700 | [diff] [blame] | 209 | CHECK_INTERFACE(ISurfaceComposer, data, reply); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 210 | sp<IBinder> b = createConnection()->asBinder(); |
| 211 | reply->writeStrongBinder(b); |
| 212 | } break; |
Jamie Gennis | 9a78c90 | 2011-01-12 18:30:40 -0800 | [diff] [blame] | 213 | case CREATE_GRAPHIC_BUFFER_ALLOC: { |
| 214 | CHECK_INTERFACE(ISurfaceComposer, data, reply); |
| 215 | sp<IBinder> b = createGraphicBufferAlloc()->asBinder(); |
| 216 | reply->writeStrongBinder(b); |
| 217 | } break; |
Mathias Agopian | 698c087 | 2011-06-28 19:09:31 -0700 | [diff] [blame] | 218 | case SET_TRANSACTION_STATE: { |
Mathias Agopian | 83c0446 | 2009-05-22 19:00:22 -0700 | [diff] [blame] | 219 | CHECK_INTERFACE(ISurfaceComposer, data, reply); |
Mathias Agopian | 698c087 | 2011-06-28 19:09:31 -0700 | [diff] [blame] | 220 | size_t count = data.readInt32(); |
| 221 | ComposerState s; |
| 222 | Vector<ComposerState> state; |
| 223 | state.setCapacity(count); |
| 224 | for (size_t i=0 ; i<count ; i++) { |
| 225 | s.read(data); |
| 226 | state.add(s); |
| 227 | } |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 228 | int orientation = data.readInt32(); |
Jamie Gennis | 2837839 | 2011-10-12 17:39:00 -0700 | [diff] [blame] | 229 | uint32_t flags = data.readInt32(); |
| 230 | setTransactionState(state, orientation, flags); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 231 | } break; |
| 232 | case BOOT_FINISHED: { |
Mathias Agopian | 83c0446 | 2009-05-22 19:00:22 -0700 | [diff] [blame] | 233 | CHECK_INTERFACE(ISurfaceComposer, data, reply); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 234 | bootFinished(); |
| 235 | } break; |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 236 | case GET_CBLK: { |
Mathias Agopian | 83c0446 | 2009-05-22 19:00:22 -0700 | [diff] [blame] | 237 | CHECK_INTERFACE(ISurfaceComposer, data, reply); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 238 | sp<IBinder> b = getCblk()->asBinder(); |
| 239 | reply->writeStrongBinder(b); |
| 240 | } break; |
Mathias Agopian | 1b0b30d | 2010-09-24 11:26:58 -0700 | [diff] [blame] | 241 | case CAPTURE_SCREEN: { |
| 242 | CHECK_INTERFACE(ISurfaceComposer, data, reply); |
| 243 | DisplayID dpy = data.readInt32(); |
Mathias Agopian | df85c45 | 2010-09-29 13:02:36 -0700 | [diff] [blame] | 244 | uint32_t reqWidth = data.readInt32(); |
| 245 | uint32_t reqHeight = data.readInt32(); |
Mathias Agopian | bf2c6a6 | 2010-12-10 16:22:31 -0800 | [diff] [blame] | 246 | uint32_t minLayerZ = data.readInt32(); |
| 247 | uint32_t maxLayerZ = data.readInt32(); |
Mathias Agopian | 1b0b30d | 2010-09-24 11:26:58 -0700 | [diff] [blame] | 248 | sp<IMemoryHeap> heap; |
| 249 | uint32_t w, h; |
| 250 | PixelFormat f; |
Mathias Agopian | df85c45 | 2010-09-29 13:02:36 -0700 | [diff] [blame] | 251 | status_t res = captureScreen(dpy, &heap, &w, &h, &f, |
Mathias Agopian | bf2c6a6 | 2010-12-10 16:22:31 -0800 | [diff] [blame] | 252 | reqWidth, reqHeight, minLayerZ, maxLayerZ); |
Mathias Agopian | 1b0b30d | 2010-09-24 11:26:58 -0700 | [diff] [blame] | 253 | reply->writeStrongBinder(heap->asBinder()); |
| 254 | reply->writeInt32(w); |
| 255 | reply->writeInt32(h); |
| 256 | reply->writeInt32(f); |
| 257 | reply->writeInt32(res); |
| 258 | } break; |
Mathias Agopian | 59119e6 | 2010-10-11 12:37:43 -0700 | [diff] [blame] | 259 | case TURN_ELECTRON_BEAM_OFF: { |
| 260 | CHECK_INTERFACE(ISurfaceComposer, data, reply); |
| 261 | int32_t mode = data.readInt32(); |
| 262 | status_t res = turnElectronBeamOff(mode); |
| 263 | reply->writeInt32(res); |
Jamie Gennis | 151f2f5 | 2010-12-20 11:05:18 -0800 | [diff] [blame] | 264 | } break; |
Mathias Agopian | 9daa5c9 | 2010-10-12 16:05:48 -0700 | [diff] [blame] | 265 | case TURN_ELECTRON_BEAM_ON: { |
| 266 | CHECK_INTERFACE(ISurfaceComposer, data, reply); |
| 267 | int32_t mode = data.readInt32(); |
| 268 | status_t res = turnElectronBeamOn(mode); |
| 269 | reply->writeInt32(res); |
Jamie Gennis | 151f2f5 | 2010-12-20 11:05:18 -0800 | [diff] [blame] | 270 | } break; |
Jamie Gennis | 134f042 | 2011-03-08 12:18:54 -0800 | [diff] [blame] | 271 | case AUTHENTICATE_SURFACE: { |
| 272 | CHECK_INTERFACE(ISurfaceComposer, data, reply); |
Jamie Gennis | 582270d | 2011-08-17 18:19:00 -0700 | [diff] [blame] | 273 | sp<ISurfaceTexture> surfaceTexture = |
| 274 | interface_cast<ISurfaceTexture>(data.readStrongBinder()); |
| 275 | int32_t result = authenticateSurfaceTexture(surfaceTexture) ? 1 : 0; |
Jamie Gennis | 134f042 | 2011-03-08 12:18:54 -0800 | [diff] [blame] | 276 | reply->writeInt32(result); |
| 277 | } break; |
Mathias Agopian | d0566bc | 2011-11-17 17:49:17 -0800 | [diff] [blame] | 278 | case CREATE_DISPLAY_EVENT_CONNECTION: { |
| 279 | CHECK_INTERFACE(ISurfaceComposer, data, reply); |
| 280 | sp<IDisplayEventConnection> connection(createDisplayEventConnection()); |
| 281 | reply->writeStrongBinder(connection->asBinder()); |
| 282 | return NO_ERROR; |
| 283 | } break; |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 284 | default: |
Mathias Agopian | 83c0446 | 2009-05-22 19:00:22 -0700 | [diff] [blame] | 285 | return BBinder::onTransact(code, data, reply, flags); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 286 | } |
| 287 | return NO_ERROR; |
| 288 | } |
| 289 | |
| 290 | // ---------------------------------------------------------------------------- |
| 291 | |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 292 | }; |