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 <stdio.h> |
| 21 | #include <stdint.h> |
| 22 | #include <sys/types.h> |
| 23 | |
Mathias Agopian | c5b2c0b | 2009-05-19 19:08:10 -0700 | [diff] [blame] | 24 | #include <binder/Parcel.h> |
| 25 | #include <binder/IMemory.h> |
| 26 | #include <binder/IPCThreadState.h> |
| 27 | #include <binder/IServiceManager.h> |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 28 | |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 29 | #include <ui/Point.h> |
| 30 | #include <ui/Rect.h> |
| 31 | |
Mathias Agopian | 9cce325 | 2010-02-09 17:46:37 -0800 | [diff] [blame] | 32 | #include <surfaceflinger/ISurface.h> |
Mathias Agopian | 7e27f05 | 2010-05-28 14:22:23 -0700 | [diff] [blame] | 33 | #include <surfaceflinger/ISurfaceComposerClient.h> |
Mathias Agopian | 9cce325 | 2010-02-09 17:46:37 -0800 | [diff] [blame] | 34 | #include <private/surfaceflinger/LayerState.h> |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 35 | |
| 36 | // --------------------------------------------------------------------------- |
| 37 | |
Mathias Agopian | a1ecca9 | 2009-05-21 19:21:59 -0700 | [diff] [blame] | 38 | /* ideally AID_GRAPHICS would be in a semi-public header |
| 39 | * or there would be a way to map a user/group name to its id |
| 40 | */ |
| 41 | #ifndef AID_GRAPHICS |
| 42 | #define AID_GRAPHICS 1003 |
| 43 | #endif |
| 44 | |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 45 | // --------------------------------------------------------------------------- |
| 46 | |
| 47 | namespace android { |
| 48 | |
| 49 | enum { |
Mathias Agopian | a67932f | 2011-04-20 14:20:59 -0700 | [diff] [blame] | 50 | CREATE_SURFACE = IBinder::FIRST_CALL_TRANSACTION, |
Mathias Agopian | 698c087 | 2011-06-28 19:09:31 -0700 | [diff] [blame] | 51 | DESTROY_SURFACE |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 52 | }; |
| 53 | |
Mathias Agopian | 7e27f05 | 2010-05-28 14:22:23 -0700 | [diff] [blame] | 54 | class BpSurfaceComposerClient : public BpInterface<ISurfaceComposerClient> |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 55 | { |
| 56 | public: |
Mathias Agopian | 7e27f05 | 2010-05-28 14:22:23 -0700 | [diff] [blame] | 57 | BpSurfaceComposerClient(const sp<IBinder>& impl) |
| 58 | : BpInterface<ISurfaceComposerClient>(impl) |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 59 | { |
| 60 | } |
| 61 | |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 62 | virtual sp<ISurface> createSurface( surface_data_t* params, |
Mathias Agopian | 285dbde | 2010-03-01 16:09:43 -0800 | [diff] [blame] | 63 | const String8& name, |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 64 | DisplayID display, |
| 65 | uint32_t w, |
| 66 | uint32_t h, |
| 67 | PixelFormat format, |
| 68 | uint32_t flags) |
| 69 | { |
| 70 | Parcel data, reply; |
Mathias Agopian | 7e27f05 | 2010-05-28 14:22:23 -0700 | [diff] [blame] | 71 | data.writeInterfaceToken(ISurfaceComposerClient::getInterfaceDescriptor()); |
Mathias Agopian | 285dbde | 2010-03-01 16:09:43 -0800 | [diff] [blame] | 72 | data.writeString8(name); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 73 | data.writeInt32(display); |
| 74 | data.writeInt32(w); |
| 75 | data.writeInt32(h); |
| 76 | data.writeInt32(format); |
| 77 | data.writeInt32(flags); |
| 78 | remote()->transact(CREATE_SURFACE, data, &reply); |
| 79 | params->readFromParcel(reply); |
| 80 | return interface_cast<ISurface>(reply.readStrongBinder()); |
| 81 | } |
Mathias Agopian | 7e27f05 | 2010-05-28 14:22:23 -0700 | [diff] [blame] | 82 | |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 83 | virtual status_t destroySurface(SurfaceID sid) |
| 84 | { |
| 85 | Parcel data, reply; |
Mathias Agopian | 7e27f05 | 2010-05-28 14:22:23 -0700 | [diff] [blame] | 86 | data.writeInterfaceToken(ISurfaceComposerClient::getInterfaceDescriptor()); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 87 | data.writeInt32(sid); |
| 88 | remote()->transact(DESTROY_SURFACE, data, &reply); |
| 89 | return reply.readInt32(); |
| 90 | } |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 91 | }; |
| 92 | |
Mathias Agopian | 7e27f05 | 2010-05-28 14:22:23 -0700 | [diff] [blame] | 93 | IMPLEMENT_META_INTERFACE(SurfaceComposerClient, "android.ui.ISurfaceComposerClient"); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 94 | |
| 95 | // ---------------------------------------------------------------------- |
| 96 | |
Mathias Agopian | 7e27f05 | 2010-05-28 14:22:23 -0700 | [diff] [blame] | 97 | status_t BnSurfaceComposerClient::onTransact( |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 98 | uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) |
| 99 | { |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 100 | switch(code) { |
| 101 | case CREATE_SURFACE: { |
Mathias Agopian | 7e27f05 | 2010-05-28 14:22:23 -0700 | [diff] [blame] | 102 | CHECK_INTERFACE(ISurfaceComposerClient, data, reply); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 103 | surface_data_t params; |
Mathias Agopian | 285dbde | 2010-03-01 16:09:43 -0800 | [diff] [blame] | 104 | String8 name = data.readString8(); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 105 | DisplayID display = data.readInt32(); |
| 106 | uint32_t w = data.readInt32(); |
| 107 | uint32_t h = data.readInt32(); |
| 108 | PixelFormat format = data.readInt32(); |
| 109 | uint32_t flags = data.readInt32(); |
Mathias Agopian | 0ef4e15 | 2011-04-20 14:19:32 -0700 | [diff] [blame] | 110 | sp<ISurface> s = createSurface(¶ms, name, display, w, h, |
Mathias Agopian | 285dbde | 2010-03-01 16:09:43 -0800 | [diff] [blame] | 111 | format, flags); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 112 | params.writeToParcel(reply); |
| 113 | reply->writeStrongBinder(s->asBinder()); |
| 114 | return NO_ERROR; |
| 115 | } break; |
| 116 | case DESTROY_SURFACE: { |
Mathias Agopian | 7e27f05 | 2010-05-28 14:22:23 -0700 | [diff] [blame] | 117 | CHECK_INTERFACE(ISurfaceComposerClient, data, reply); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 118 | reply->writeInt32( destroySurface( data.readInt32() ) ); |
| 119 | return NO_ERROR; |
| 120 | } break; |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 121 | default: |
| 122 | return BBinder::onTransact(code, data, reply, flags); |
| 123 | } |
| 124 | } |
| 125 | |
| 126 | // ---------------------------------------------------------------------- |
| 127 | |
Mathias Agopian | 7e27f05 | 2010-05-28 14:22:23 -0700 | [diff] [blame] | 128 | status_t ISurfaceComposerClient::surface_data_t::readFromParcel(const Parcel& parcel) |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 129 | { |
Mathias Agopian | 1c97d2e | 2009-08-19 17:46:26 -0700 | [diff] [blame] | 130 | token = parcel.readInt32(); |
| 131 | identity = parcel.readInt32(); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 132 | return NO_ERROR; |
| 133 | } |
| 134 | |
Mathias Agopian | 7e27f05 | 2010-05-28 14:22:23 -0700 | [diff] [blame] | 135 | status_t ISurfaceComposerClient::surface_data_t::writeToParcel(Parcel* parcel) const |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 136 | { |
| 137 | parcel->writeInt32(token); |
| 138 | parcel->writeInt32(identity); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 139 | return NO_ERROR; |
| 140 | } |
| 141 | |
| 142 | }; // namespace android |