ISurfaceComposer.cpp 10.5 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
/*
 * Copyright (C) 2007 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

// tag as surfaceflinger
#define LOG_TAG "SurfaceFlinger"

#include <stdint.h>
#include <sys/types.h>

23 24 25 26
#include <binder/Parcel.h>
#include <binder/IMemory.h>
#include <binder/IPCThreadState.h>
#include <binder/IServiceManager.h>
27

28 29
#include <private/surfaceflinger/LayerState.h>

30 31
#include <surfaceflinger/ISurfaceComposer.h>

32 33 34
#include <gui/BitTube.h>
#include <gui/IDisplayEventConnection.h>

35 36
#include <ui/DisplayInfo.h>

37 38
#include <gui/ISurfaceTexture.h>

39
#include <utils/Log.h>
40

41 42 43 44
// ---------------------------------------------------------------------------

namespace android {

45 46
class IDisplayEventConnection;

47 48 49 50 51 52 53 54
class BpSurfaceComposer : public BpInterface<ISurfaceComposer>
{
public:
    BpSurfaceComposer(const sp<IBinder>& impl)
        : BpInterface<ISurfaceComposer>(impl)
    {
    }

55
    virtual sp<ISurfaceComposerClient> createConnection()
56 57 58 59 60
    {
        uint32_t n;
        Parcel data, reply;
        data.writeInterfaceToken(ISurfaceComposer::getInterfaceDescriptor());
        remote()->transact(BnSurfaceComposer::CREATE_CONNECTION, data, &reply);
61
        return interface_cast<ISurfaceComposerClient>(reply.readStrongBinder());
62 63
    }

64 65 66 67 68 69 70 71 72
    virtual sp<IGraphicBufferAlloc> createGraphicBufferAlloc()
    {
        uint32_t n;
        Parcel data, reply;
        data.writeInterfaceToken(ISurfaceComposer::getInterfaceDescriptor());
        remote()->transact(BnSurfaceComposer::CREATE_GRAPHIC_BUFFER_ALLOC, data, &reply);
        return interface_cast<IGraphicBufferAlloc>(reply.readStrongBinder());
    }

73
    virtual sp<IMemoryHeap> getCblk() const
74 75 76 77
    {
        Parcel data, reply;
        data.writeInterfaceToken(ISurfaceComposer::getInterfaceDescriptor());
        remote()->transact(BnSurfaceComposer::GET_CBLK, data, &reply);
78
        return interface_cast<IMemoryHeap>(reply.readStrongBinder());
79 80
    }

81
    virtual void setTransactionState(const Vector<ComposerState>& state,
82
            int orientation, uint32_t flags)
83 84 85
    {
        Parcel data, reply;
        data.writeInterfaceToken(ISurfaceComposer::getInterfaceDescriptor());
86 87 88 89 90 91
        Vector<ComposerState>::const_iterator b(state.begin());
        Vector<ComposerState>::const_iterator e(state.end());
        data.writeInt32(state.size());
        for ( ; b != e ; ++b ) {
            b->write(data);
        }
92
        data.writeInt32(orientation);
93
        data.writeInt32(flags);
94
        remote()->transact(BnSurfaceComposer::SET_TRANSACTION_STATE, data, &reply);
95 96 97 98 99 100 101 102 103
    }

    virtual void bootFinished()
    {
        Parcel data, reply;
        data.writeInterfaceToken(ISurfaceComposer::getInterfaceDescriptor());
        remote()->transact(BnSurfaceComposer::BOOT_FINISHED, data, &reply);
    }

104 105
    virtual status_t captureScreen(DisplayID dpy,
            sp<IMemoryHeap>* heap,
Mathias Agopian's avatar
Mathias Agopian committed
106
            uint32_t* width, uint32_t* height, PixelFormat* format,
107 108
            uint32_t reqWidth, uint32_t reqHeight,
            uint32_t minLayerZ, uint32_t maxLayerZ)
109 110 111 112
    {
        Parcel data, reply;
        data.writeInterfaceToken(ISurfaceComposer::getInterfaceDescriptor());
        data.writeInt32(dpy);
Mathias Agopian's avatar
Mathias Agopian committed
113 114
        data.writeInt32(reqWidth);
        data.writeInt32(reqHeight);
115 116
        data.writeInt32(minLayerZ);
        data.writeInt32(maxLayerZ);
117 118 119 120 121 122 123 124
        remote()->transact(BnSurfaceComposer::CAPTURE_SCREEN, data, &reply);
        *heap = interface_cast<IMemoryHeap>(reply.readStrongBinder());
        *width = reply.readInt32();
        *height = reply.readInt32();
        *format = reply.readInt32();
        return reply.readInt32();
    }

Mathias Agopian's avatar
Mathias Agopian committed
125 126 127 128 129 130 131 132 133
    virtual status_t turnElectronBeamOff(int32_t mode)
    {
        Parcel data, reply;
        data.writeInterfaceToken(ISurfaceComposer::getInterfaceDescriptor());
        data.writeInt32(mode);
        remote()->transact(BnSurfaceComposer::TURN_ELECTRON_BEAM_OFF, data, &reply);
        return reply.readInt32();
    }

134 135 136 137 138 139 140 141 142
    virtual status_t turnElectronBeamOn(int32_t mode)
    {
        Parcel data, reply;
        data.writeInterfaceToken(ISurfaceComposer::getInterfaceDescriptor());
        data.writeInt32(mode);
        remote()->transact(BnSurfaceComposer::TURN_ELECTRON_BEAM_ON, data, &reply);
        return reply.readInt32();
    }

143 144
    virtual bool authenticateSurfaceTexture(
            const sp<ISurfaceTexture>& surfaceTexture) const
145 146 147 148 149 150
    {
        Parcel data, reply;
        int err = NO_ERROR;
        err = data.writeInterfaceToken(
                ISurfaceComposer::getInterfaceDescriptor());
        if (err != NO_ERROR) {
151
            ALOGE("ISurfaceComposer::authenticateSurfaceTexture: error writing "
152 153 154
                    "interface descriptor: %s (%d)", strerror(-err), -err);
            return false;
        }
155
        err = data.writeStrongBinder(surfaceTexture->asBinder());
156
        if (err != NO_ERROR) {
157
            ALOGE("ISurfaceComposer::authenticateSurfaceTexture: error writing "
158
                    "strong binder to parcel: %s (%d)", strerror(-err), -err);
159 160 161 162 163
            return false;
        }
        err = remote()->transact(BnSurfaceComposer::AUTHENTICATE_SURFACE, data,
                &reply);
        if (err != NO_ERROR) {
164
            ALOGE("ISurfaceComposer::authenticateSurfaceTexture: error "
165
                    "performing transaction: %s (%d)", strerror(-err), -err);
166 167 168 169 170
            return false;
        }
        int32_t result = 0;
        err = reply.readInt32(&result);
        if (err != NO_ERROR) {
171
            ALOGE("ISurfaceComposer::authenticateSurfaceTexture: error "
172
                    "retrieving result: %s (%d)", strerror(-err), -err);
173 174 175 176
            return false;
        }
        return result != 0;
    }
177 178 179 180 181 182 183 184 185 186 187 188 189 190

    virtual sp<IDisplayEventConnection> createDisplayEventConnection()
    {
        Parcel data, reply;
        sp<IDisplayEventConnection> result;
        int err = data.writeInterfaceToken(
                ISurfaceComposer::getInterfaceDescriptor());
        if (err != NO_ERROR) {
            return result;
        }
        err = remote()->transact(
                BnSurfaceComposer::CREATE_DISPLAY_EVENT_CONNECTION,
                data, &reply);
        if (err != NO_ERROR) {
191
            ALOGE("ISurfaceComposer::createDisplayEventConnection: error performing "
192 193 194 195 196 197
                    "transaction: %s (%d)", strerror(-err), -err);
            return result;
        }
        result = interface_cast<IDisplayEventConnection>(reply.readStrongBinder());
        return result;
    }
198 199 200 201 202 203 204 205 206 207 208
};

IMPLEMENT_META_INTERFACE(SurfaceComposer, "android.ui.ISurfaceComposer");

// ----------------------------------------------------------------------

status_t BnSurfaceComposer::onTransact(
    uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
{
    switch(code) {
        case CREATE_CONNECTION: {
209
            CHECK_INTERFACE(ISurfaceComposer, data, reply);
210 211 212
            sp<IBinder> b = createConnection()->asBinder();
            reply->writeStrongBinder(b);
        } break;
213 214 215 216 217
        case CREATE_GRAPHIC_BUFFER_ALLOC: {
            CHECK_INTERFACE(ISurfaceComposer, data, reply);
            sp<IBinder> b = createGraphicBufferAlloc()->asBinder();
            reply->writeStrongBinder(b);
        } break;
218
        case SET_TRANSACTION_STATE: {
219
            CHECK_INTERFACE(ISurfaceComposer, data, reply);
220 221 222 223 224 225 226 227
            size_t count = data.readInt32();
            ComposerState s;
            Vector<ComposerState> state;
            state.setCapacity(count);
            for (size_t i=0 ; i<count ; i++) {
                s.read(data);
                state.add(s);
            }
228
            int orientation = data.readInt32();
229 230
            uint32_t flags = data.readInt32();
            setTransactionState(state, orientation, flags);
231 232
        } break;
        case BOOT_FINISHED: {
233
            CHECK_INTERFACE(ISurfaceComposer, data, reply);
234 235 236
            bootFinished();
        } break;
        case GET_CBLK: {
237
            CHECK_INTERFACE(ISurfaceComposer, data, reply);
238 239 240
            sp<IBinder> b = getCblk()->asBinder();
            reply->writeStrongBinder(b);
        } break;
241 242 243
        case CAPTURE_SCREEN: {
            CHECK_INTERFACE(ISurfaceComposer, data, reply);
            DisplayID dpy = data.readInt32();
Mathias Agopian's avatar
Mathias Agopian committed
244 245
            uint32_t reqWidth = data.readInt32();
            uint32_t reqHeight = data.readInt32();
246 247
            uint32_t minLayerZ = data.readInt32();
            uint32_t maxLayerZ = data.readInt32();
248 249 250
            sp<IMemoryHeap> heap;
            uint32_t w, h;
            PixelFormat f;
Mathias Agopian's avatar
Mathias Agopian committed
251
            status_t res = captureScreen(dpy, &heap, &w, &h, &f,
252
                    reqWidth, reqHeight, minLayerZ, maxLayerZ);
253 254 255 256 257 258
            reply->writeStrongBinder(heap->asBinder());
            reply->writeInt32(w);
            reply->writeInt32(h);
            reply->writeInt32(f);
            reply->writeInt32(res);
        } break;
Mathias Agopian's avatar
Mathias Agopian committed
259 260 261 262 263
        case TURN_ELECTRON_BEAM_OFF: {
            CHECK_INTERFACE(ISurfaceComposer, data, reply);
            int32_t mode = data.readInt32();
            status_t res = turnElectronBeamOff(mode);
            reply->writeInt32(res);
264
        } break;
265 266 267 268 269
        case TURN_ELECTRON_BEAM_ON: {
            CHECK_INTERFACE(ISurfaceComposer, data, reply);
            int32_t mode = data.readInt32();
            status_t res = turnElectronBeamOn(mode);
            reply->writeInt32(res);
270
        } break;
271 272
        case AUTHENTICATE_SURFACE: {
            CHECK_INTERFACE(ISurfaceComposer, data, reply);
273 274 275
            sp<ISurfaceTexture> surfaceTexture =
                    interface_cast<ISurfaceTexture>(data.readStrongBinder());
            int32_t result = authenticateSurfaceTexture(surfaceTexture) ? 1 : 0;
276 277
            reply->writeInt32(result);
        } break;
278 279 280 281 282 283
        case CREATE_DISPLAY_EVENT_CONNECTION: {
            CHECK_INTERFACE(ISurfaceComposer, data, reply);
            sp<IDisplayEventConnection> connection(createDisplayEventConnection());
            reply->writeStrongBinder(connection->asBinder());
            return NO_ERROR;
        } break;
284
        default:
285
            return BBinder::onTransact(code, data, reply, flags);
286 287 288 289 290 291 292
    }
    return NO_ERROR;
}

// ----------------------------------------------------------------------------

};