blob: 3009989964f96174f88a752e00df453e09d2e3b9 [file] [log] [blame]
Jamie Gennis9a78c902011-01-12 18:30:40 -08001/*
2 * Copyright (C) 2011 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
23#include <binder/Parcel.h>
24
25#include <ui/GraphicBuffer.h>
26
Mathias Agopian90ac7992012-02-25 18:48:35 -080027#include <gui/IGraphicBufferAlloc.h>
Jamie Gennis9a78c902011-01-12 18:30:40 -080028
29// ---------------------------------------------------------------------------
30
31namespace android {
32
33enum {
34 CREATE_GRAPHIC_BUFFER = IBinder::FIRST_CALL_TRANSACTION,
Jamie Gennis9a78c902011-01-12 18:30:40 -080035};
36
37class BpGraphicBufferAlloc : public BpInterface<IGraphicBufferAlloc>
38{
39public:
40 BpGraphicBufferAlloc(const sp<IBinder>& impl)
41 : BpInterface<IGraphicBufferAlloc>(impl)
42 {
43 }
44
Dan Stoza3be1c6b2014-11-18 10:24:03 -080045 virtual ~BpGraphicBufferAlloc();
46
47 virtual sp<GraphicBuffer> createGraphicBuffer(uint32_t width,
48 uint32_t height, PixelFormat format, uint32_t usage,
49 status_t* error) {
Jamie Gennis9a78c902011-01-12 18:30:40 -080050 Parcel data, reply;
Mathias Agopian4cb18882011-04-08 19:10:43 -070051 data.writeInterfaceToken(IGraphicBufferAlloc::getInterfaceDescriptor());
Dan Stoza3be1c6b2014-11-18 10:24:03 -080052 data.writeUint32(width);
53 data.writeUint32(height);
54 data.writeInt32(static_cast<int32_t>(format));
55 data.writeUint32(usage);
Jamie Gennis9a78c902011-01-12 18:30:40 -080056 remote()->transact(CREATE_GRAPHIC_BUFFER, data, &reply);
57 sp<GraphicBuffer> graphicBuffer;
Mathias Agopiand9e8c642011-07-01 14:53:49 -070058 status_t result = reply.readInt32();
59 if (result == NO_ERROR) {
Jamie Gennis9a78c902011-01-12 18:30:40 -080060 graphicBuffer = new GraphicBuffer();
Jamie Gennisd69097f2012-08-30 13:28:23 -070061 result = reply.read(*graphicBuffer);
Dan Stoza3d6022a2015-06-01 13:59:15 -070062 if (result != NO_ERROR) {
63 graphicBuffer.clear();
64 }
Mathias Agopian4cb18882011-04-08 19:10:43 -070065 // reply.readStrongBinder();
66 // here we don't even have to read the BufferReference from
67 // the parcel, it'll die with the parcel.
Jamie Gennis9a78c902011-01-12 18:30:40 -080068 }
Mathias Agopiand9e8c642011-07-01 14:53:49 -070069 *error = result;
Jamie Gennis9a78c902011-01-12 18:30:40 -080070 return graphicBuffer;
71 }
Jamie Gennis9a78c902011-01-12 18:30:40 -080072};
73
Dan Stoza3be1c6b2014-11-18 10:24:03 -080074// Out-of-line virtual method definition to trigger vtable emission in this
75// translation unit (see clang warning -Wweak-vtables)
76BpGraphicBufferAlloc::~BpGraphicBufferAlloc() {}
77
Jamie Gennis9a78c902011-01-12 18:30:40 -080078IMPLEMENT_META_INTERFACE(GraphicBufferAlloc, "android.ui.IGraphicBufferAlloc");
79
80// ----------------------------------------------------------------------
81
82status_t BnGraphicBufferAlloc::onTransact(
83 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
84{
85 // codes that don't require permission check
86
Dan Stoza3be1c6b2014-11-18 10:24:03 -080087 // BufferReference just keeps a strong reference to a GraphicBuffer until it
88 // is destroyed (that is, until no local or remote process have a reference
89 // to it).
Mathias Agopian4cb18882011-04-08 19:10:43 -070090 class BufferReference : public BBinder {
Dan Stoza3be1c6b2014-11-18 10:24:03 -080091 sp<GraphicBuffer> mBuffer;
Mathias Agopian4cb18882011-04-08 19:10:43 -070092 public:
Dan Stoza3be1c6b2014-11-18 10:24:03 -080093 BufferReference(const sp<GraphicBuffer>& buffer) : mBuffer(buffer) {}
Mathias Agopian4cb18882011-04-08 19:10:43 -070094 };
95
96
Dan Stoza3be1c6b2014-11-18 10:24:03 -080097 switch (code) {
Jamie Gennis9a78c902011-01-12 18:30:40 -080098 case CREATE_GRAPHIC_BUFFER: {
99 CHECK_INTERFACE(IGraphicBufferAlloc, data, reply);
Dan Stoza3be1c6b2014-11-18 10:24:03 -0800100 uint32_t width = data.readUint32();
101 uint32_t height = data.readUint32();
102 PixelFormat format = static_cast<PixelFormat>(data.readInt32());
103 uint32_t usage = data.readUint32();
Mathias Agopiand9e8c642011-07-01 14:53:49 -0700104 status_t error;
105 sp<GraphicBuffer> result =
Dan Stoza3be1c6b2014-11-18 10:24:03 -0800106 createGraphicBuffer(width, height, format, usage, &error);
Mathias Agopiand9e8c642011-07-01 14:53:49 -0700107 reply->writeInt32(error);
Jamie Gennis9a78c902011-01-12 18:30:40 -0800108 if (result != 0) {
109 reply->write(*result);
Mathias Agopian4cb18882011-04-08 19:10:43 -0700110 // We add a BufferReference to this parcel to make sure the
111 // buffer stays alive until the GraphicBuffer object on
112 // the other side has been created.
113 // This is needed so that the buffer handle can be
114 // registered before the buffer is destroyed on implementations
115 // that do not use file-descriptors to track their buffers.
116 reply->writeStrongBinder( new BufferReference(result) );
Jamie Gennis9a78c902011-01-12 18:30:40 -0800117 }
118 return NO_ERROR;
Dan Stoza3be1c6b2014-11-18 10:24:03 -0800119 }
Jamie Gennis9a78c902011-01-12 18:30:40 -0800120 default:
121 return BBinder::onTransact(code, data, reply, flags);
122 }
123}
124
125}; // namespace android