blob: dbe475b805db384150dd948ca03ab87853552f73 [file] [log] [blame]
Mathias Agopian3330b202009-10-05 17:07:12 -07001/*
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#ifndef ANDROID_GRAPHIC_BUFFER_H
18#define ANDROID_GRAPHIC_BUFFER_H
19
20#include <stdint.h>
21#include <sys/types.h>
22
Mathias Agopianfe2f54f2017-02-15 19:48:58 -080023#include <string>
Marissa Wall78b72202019-03-15 14:58:34 -070024#include <utility>
25#include <vector>
Mathias Agopianfe2f54f2017-02-15 19:48:58 -080026
Pawin Vongmasae672cd02019-02-14 16:01:29 -080027#include <android/hardware_buffer.h>
Mathias Agopian5f2165f2012-02-24 18:25:41 -080028#include <ui/ANativeObjectBase.h>
Valerie Haud2f4daf2019-02-15 13:49:00 -080029#include <ui/GraphicBufferMapper.h>
Mathias Agopian3330b202009-10-05 17:07:12 -070030#include <ui/PixelFormat.h>
31#include <ui/Rect.h>
Mathias Agopian98e71dd2010-02-11 17:30:52 -080032#include <utils/Flattenable.h>
Mathias Agopiane0417162013-03-06 18:50:52 -080033#include <utils/RefBase.h>
Mathias Agopian5f2165f2012-02-24 18:25:41 -080034
Mathias Agopian6a3c05b2017-04-27 20:06:55 -070035#include <nativebase/nativebase.h>
Mathias Agopian3330b202009-10-05 17:07:12 -070036
Mathias Agopian6a3c05b2017-04-27 20:06:55 -070037#include <hardware/gralloc.h>
Mathias Agopian3330b202009-10-05 17:07:12 -070038
39namespace android {
40
41class GraphicBufferMapper;
Mathias Agopian3330b202009-10-05 17:07:12 -070042
Marissa Wall78b72202019-03-15 14:58:34 -070043using GraphicBufferDeathCallback = std::function<void(void* /*context*/, uint64_t bufferId)>;
44
Mathias Agopian3330b202009-10-05 17:07:12 -070045// ===========================================================================
46// GraphicBuffer
47// ===========================================================================
48
49class GraphicBuffer
Mathias Agopian6a3c05b2017-04-27 20:06:55 -070050 : public ANativeObjectBase<ANativeWindowBuffer, GraphicBuffer, RefBase>,
Mathias Agopiane1424282013-07-29 21:24:40 -070051 public Flattenable<GraphicBuffer>
Mathias Agopian3330b202009-10-05 17:07:12 -070052{
Mathias Agopiane1424282013-07-29 21:24:40 -070053 friend class Flattenable<GraphicBuffer>;
Mathias Agopian3330b202009-10-05 17:07:12 -070054public:
55
56 enum {
57 USAGE_SW_READ_NEVER = GRALLOC_USAGE_SW_READ_NEVER,
58 USAGE_SW_READ_RARELY = GRALLOC_USAGE_SW_READ_RARELY,
59 USAGE_SW_READ_OFTEN = GRALLOC_USAGE_SW_READ_OFTEN,
60 USAGE_SW_READ_MASK = GRALLOC_USAGE_SW_READ_MASK,
Dan Stozad3182402014-11-17 12:03:59 -080061
Mathias Agopian3330b202009-10-05 17:07:12 -070062 USAGE_SW_WRITE_NEVER = GRALLOC_USAGE_SW_WRITE_NEVER,
63 USAGE_SW_WRITE_RARELY = GRALLOC_USAGE_SW_WRITE_RARELY,
64 USAGE_SW_WRITE_OFTEN = GRALLOC_USAGE_SW_WRITE_OFTEN,
65 USAGE_SW_WRITE_MASK = GRALLOC_USAGE_SW_WRITE_MASK,
Glenn Kasten16f04532011-01-19 15:27:27 -080066
Mathias Agopian3330b202009-10-05 17:07:12 -070067 USAGE_SOFTWARE_MASK = USAGE_SW_READ_MASK|USAGE_SW_WRITE_MASK,
Glenn Kasten16f04532011-01-19 15:27:27 -080068
69 USAGE_PROTECTED = GRALLOC_USAGE_PROTECTED,
70
Mathias Agopian3330b202009-10-05 17:07:12 -070071 USAGE_HW_TEXTURE = GRALLOC_USAGE_HW_TEXTURE,
72 USAGE_HW_RENDER = GRALLOC_USAGE_HW_RENDER,
73 USAGE_HW_2D = GRALLOC_USAGE_HW_2D,
Jamie Gennis3599bf22011-08-10 11:48:07 -070074 USAGE_HW_COMPOSER = GRALLOC_USAGE_HW_COMPOSER,
Jamie Gennisb7d87c42011-11-21 16:51:47 -080075 USAGE_HW_VIDEO_ENCODER = GRALLOC_USAGE_HW_VIDEO_ENCODER,
Riley Andrews03414a12014-07-01 14:22:59 -070076 USAGE_HW_MASK = GRALLOC_USAGE_HW_MASK,
77
78 USAGE_CURSOR = GRALLOC_USAGE_CURSOR,
Mathias Agopian3330b202009-10-05 17:07:12 -070079 };
80
Mathias Agopianf543e5a2017-04-03 17:16:41 -070081 static sp<GraphicBuffer> from(ANativeWindowBuffer *);
82
Pawin Vongmasae672cd02019-02-14 16:01:29 -080083 static GraphicBuffer* fromAHardwareBuffer(AHardwareBuffer*);
84 static GraphicBuffer const* fromAHardwareBuffer(AHardwareBuffer const*);
85 AHardwareBuffer* toAHardwareBuffer();
86 AHardwareBuffer const* toAHardwareBuffer() const;
Mathias Agopianf543e5a2017-04-03 17:16:41 -070087
Chia-I Wub42f1712017-03-21 13:15:39 -070088 // Create a GraphicBuffer to be unflatten'ed into or be reallocated.
Mathias Agopian3330b202009-10-05 17:07:12 -070089 GraphicBuffer();
90
Chia-I Wub42f1712017-03-21 13:15:39 -070091 // Create a GraphicBuffer by allocating and managing a buffer internally.
92 // This function is privileged. See reallocate for details.
Craig Donnere96a3252017-02-02 12:13:34 -080093 GraphicBuffer(uint32_t inWidth, uint32_t inHeight, PixelFormat inFormat,
Chris Forbes82c04982017-04-19 14:29:54 -070094 uint32_t inLayerCount, uint64_t inUsage,
95 std::string requestorName = "<Unknown>");
Craig Donnere96a3252017-02-02 12:13:34 -080096
Chia-I Wub42f1712017-03-21 13:15:39 -070097 // Create a GraphicBuffer from an existing handle.
98 enum HandleWrapMethod : uint8_t {
99 // Wrap and use the handle directly. It assumes the handle has been
100 // registered and never fails. The handle must have a longer lifetime
101 // than this wrapping GraphicBuffer.
102 //
103 // This can be used when, for example, you want to wrap a handle that
104 // is already managed by another GraphicBuffer.
105 WRAP_HANDLE,
106
107 // Take ownership of the handle and use it directly. It assumes the
108 // handle has been registered and never fails.
109 //
110 // This can be used to manage an already registered handle with
111 // GraphicBuffer.
112 TAKE_HANDLE,
113
114 // Take onwership of an unregistered handle and use it directly. It
115 // can fail when the buffer does not register. There is no ownership
116 // transfer on failures.
117 //
118 // This can be used to, for example, create a GraphicBuffer from a
119 // handle returned by Parcel::readNativeHandle.
120 TAKE_UNREGISTERED_HANDLE,
121
122 // Make a clone of the handle and use the cloned handle. It can fail
123 // when cloning fails or when the buffer does not register. There is
124 // never ownership transfer.
125 //
126 // This can be used to create a GraphicBuffer from a handle that
127 // cannot be used directly, such as one from hidl_handle.
128 CLONE_HANDLE,
129 };
Chih-Hung Hsiehbcc6c922018-11-13 15:20:59 -0800130 GraphicBuffer(const native_handle_t* inHandle, HandleWrapMethod method, uint32_t inWidth,
131 uint32_t inHeight, PixelFormat inFormat, uint32_t inLayerCount, uint64_t inUsage,
132 uint32_t inStride);
Chia-I Wub42f1712017-03-21 13:15:39 -0700133
Chris Forbes82c04982017-04-19 14:29:54 -0700134 // These functions are deprecated because they only take 32 bits of usage
Chih-Hung Hsiehbcc6c922018-11-13 15:20:59 -0800135 GraphicBuffer(const native_handle_t* inHandle, HandleWrapMethod method, uint32_t inWidth,
136 uint32_t inHeight, PixelFormat inFormat, uint32_t inLayerCount, uint32_t inUsage,
137 uint32_t inStride)
138 : GraphicBuffer(inHandle, method, inWidth, inHeight, inFormat, inLayerCount,
139 static_cast<uint64_t>(inUsage), inStride) {}
Dan Stozad3182402014-11-17 12:03:59 -0800140 GraphicBuffer(uint32_t inWidth, uint32_t inHeight, PixelFormat inFormat,
Craig Donner6ebc46a2016-10-21 15:23:44 -0700141 uint32_t inLayerCount, uint32_t inUsage, uint32_t inStride,
142 native_handle_t* inHandle, bool keepOwnership);
Daniel Nicoara1c457102017-02-07 17:27:25 -0500143 GraphicBuffer(uint32_t inWidth, uint32_t inHeight, PixelFormat inFormat,
Chia-I Wub42f1712017-03-21 13:15:39 -0700144 uint32_t inUsage, std::string requestorName = "<Unknown>");
Daniel Nicoara1c457102017-02-07 17:27:25 -0500145
Mathias Agopian3330b202009-10-05 17:07:12 -0700146 // return status
147 status_t initCheck() const;
148
Dan Stozad3182402014-11-17 12:03:59 -0800149 uint32_t getWidth() const { return static_cast<uint32_t>(width); }
150 uint32_t getHeight() const { return static_cast<uint32_t>(height); }
151 uint32_t getStride() const { return static_cast<uint32_t>(stride); }
Mathias Agopiancb496ac2017-05-22 14:21:00 -0700152 uint64_t getUsage() const { return usage; }
Mathias Agopian3330b202009-10-05 17:07:12 -0700153 PixelFormat getPixelFormat() const { return format; }
Craig Donner6ebc46a2016-10-21 15:23:44 -0700154 uint32_t getLayerCount() const { return static_cast<uint32_t>(layerCount); }
Mathias Agopian3330b202009-10-05 17:07:12 -0700155 Rect getBounds() const { return Rect(width, height); }
Dan Stozab1363d32014-03-28 15:10:52 -0700156 uint64_t getId() const { return mId; }
157
Dan Stoza812ed062015-06-02 15:45:22 -0700158 uint32_t getGenerationNumber() const { return mGenerationNumber; }
159 void setGenerationNumber(uint32_t generation) {
160 mGenerationNumber = generation;
161 }
162
Chia-I Wub42f1712017-03-21 13:15:39 -0700163 // This function is privileged. It requires access to the allocator
164 // device or service, which usually involves adding suitable selinux
165 // rules.
Dan Stozad3182402014-11-17 12:03:59 -0800166 status_t reallocate(uint32_t inWidth, uint32_t inHeight,
Chris Forbes82c04982017-04-19 14:29:54 -0700167 PixelFormat inFormat, uint32_t inLayerCount, uint64_t inUsage);
Mathias Agopian3330b202009-10-05 17:07:12 -0700168
Dan Stoza9de72932015-04-16 17:28:43 -0700169 bool needsReallocation(uint32_t inWidth, uint32_t inHeight,
Chris Forbes82c04982017-04-19 14:29:54 -0700170 PixelFormat inFormat, uint32_t inLayerCount, uint64_t inUsage);
Dan Stoza9de72932015-04-16 17:28:43 -0700171
Valerie Hau250c6542019-01-31 14:23:43 -0800172 // For the following two lock functions, if bytesPerStride or bytesPerPixel
173 // are unknown or variable, -1 will be returned
174 status_t lock(uint32_t inUsage, void** vaddr, int32_t* outBytesPerPixel = nullptr,
175 int32_t* outBytesPerStride = nullptr);
176 status_t lock(uint32_t inUsage, const Rect& rect, void** vaddr,
177 int32_t* outBytesPerPixel = nullptr, int32_t* outBytesPerStride = nullptr);
Eino-Ville Talvalac43946b2013-05-04 18:07:43 -0700178 // For HAL_PIXEL_FORMAT_YCbCr_420_888
Dan Stozad3182402014-11-17 12:03:59 -0800179 status_t lockYCbCr(uint32_t inUsage, android_ycbcr *ycbcr);
180 status_t lockYCbCr(uint32_t inUsage, const Rect& rect,
181 android_ycbcr *ycbcr);
Mathias Agopian3330b202009-10-05 17:07:12 -0700182 status_t unlock();
Valerie Haub94adfd2019-02-07 14:25:12 -0800183 // For the following three lockAsync functions, if bytesPerStride or bytesPerPixel
184 // are unknown or variable, -1 will be returned
185 status_t lockAsync(uint32_t inUsage, void** vaddr, int fenceFd,
186 int32_t* outBytesPerPixel = nullptr, int32_t* outBytesPerStride = nullptr);
187 status_t lockAsync(uint32_t inUsage, const Rect& rect, void** vaddr, int fenceFd,
188 int32_t* outBytesPerPixel = nullptr, int32_t* outBytesPerStride = nullptr);
189 status_t lockAsync(uint64_t inProducerUsage, uint64_t inConsumerUsage, const Rect& rect,
190 void** vaddr, int fenceFd, int32_t* outBytesPerPixel = nullptr,
191 int32_t* outBytesPerStride = nullptr);
Dan Stozad3182402014-11-17 12:03:59 -0800192 status_t lockAsyncYCbCr(uint32_t inUsage, android_ycbcr *ycbcr,
193 int fenceFd);
194 status_t lockAsyncYCbCr(uint32_t inUsage, const Rect& rect,
195 android_ycbcr *ycbcr, int fenceFd);
Francis Hart8f396012014-04-01 15:30:53 +0300196 status_t unlockAsync(int *fenceFd);
Mathias Agopian678bdd62010-12-03 17:33:09 -0800197
Valerie Hauddbfaeb2019-02-01 09:54:20 -0800198 status_t isSupported(uint32_t inWidth, uint32_t inHeight, PixelFormat inFormat,
199 uint32_t inLayerCount, uint64_t inUsage, bool* outSupported) const;
200
Iliyan Malchev697526b2011-05-01 11:33:26 -0700201 ANativeWindowBuffer* getNativeBuffer() const;
Mathias Agopian3330b202009-10-05 17:07:12 -0700202
Mathias Agopian678bdd62010-12-03 17:33:09 -0800203 // for debugging
204 static void dumpAllocationsToSystemLog();
205
Mathias Agopian87f9b872013-07-31 19:18:22 -0700206 // Flattenable protocol
207 size_t getFlattenedSize() const;
208 size_t getFdCount() const;
209 status_t flatten(void*& buffer, size_t& size, int*& fds, size_t& count) const;
210 status_t unflatten(void const*& buffer, size_t& size, int const*& fds, size_t& count);
211
Valerie Haud2f4daf2019-02-15 13:49:00 -0800212 GraphicBufferMapper::Version getBufferMapperVersion() const {
213 return mBufferMapper.getMapperVersion();
214 }
215
Marissa Wall78b72202019-03-15 14:58:34 -0700216 void addDeathCallback(GraphicBufferDeathCallback deathCallback, void* context);
217
Mathias Agopianb7e930d2010-06-01 15:12:58 -0700218private:
Mathias Agopiane1424282013-07-29 21:24:40 -0700219 ~GraphicBuffer();
Mathias Agopian3330b202009-10-05 17:07:12 -0700220
Mathias Agopian54ba51d2009-10-26 20:12:37 -0700221 enum {
222 ownNone = 0,
223 ownHandle = 1,
224 ownData = 2,
225 };
226
Mathias Agopianb7e930d2010-06-01 15:12:58 -0700227 inline const GraphicBufferMapper& getBufferMapper() const {
228 return mBufferMapper;
229 }
230 inline GraphicBufferMapper& getBufferMapper() {
231 return mBufferMapper;
232 }
Mathias Agopian54ba51d2009-10-26 20:12:37 -0700233 uint8_t mOwner;
Mathias Agopian3330b202009-10-05 17:07:12 -0700234
235private:
236 friend class Surface;
237 friend class BpSurface;
238 friend class BnSurface;
239 friend class LightRefBase<GraphicBuffer>;
240 GraphicBuffer(const GraphicBuffer& rhs);
241 GraphicBuffer& operator = (const GraphicBuffer& rhs);
242 const GraphicBuffer& operator = (const GraphicBuffer& rhs) const;
243
Chia-I Wub42f1712017-03-21 13:15:39 -0700244 status_t initWithSize(uint32_t inWidth, uint32_t inHeight,
245 PixelFormat inFormat, uint32_t inLayerCount,
Chris Forbes82c04982017-04-19 14:29:54 -0700246 uint64_t inUsage, std::string requestorName);
Chia-I Wub42f1712017-03-21 13:15:39 -0700247
Chih-Hung Hsiehbcc6c922018-11-13 15:20:59 -0800248 status_t initWithHandle(const native_handle_t* inHandle, HandleWrapMethod method,
249 uint32_t inWidth, uint32_t inHeight, PixelFormat inFormat,
250 uint32_t inLayerCount, uint64_t inUsage, uint32_t inStride);
Mathias Agopian3330b202009-10-05 17:07:12 -0700251
Mathias Agopian98e71dd2010-02-11 17:30:52 -0800252 void free_handle();
253
Mathias Agopian3330b202009-10-05 17:07:12 -0700254 GraphicBufferMapper& mBufferMapper;
255 ssize_t mInitCheck;
Jamie Gennis309d3bb2010-10-07 13:46:55 -0700256
Chia-I Wudbbe33b2017-09-27 15:22:21 -0700257 // numbers of fds/ints in native_handle_t to flatten
258 uint32_t mTransportNumFds;
259 uint32_t mTransportNumInts;
260
Dan Stozab1363d32014-03-28 15:10:52 -0700261 uint64_t mId;
Dan Stoza812ed062015-06-02 15:45:22 -0700262
Alec Mourid1d79ff2020-08-06 23:12:04 +0000263 // Unused, but removing this may break GSI.
264 int32_t mBufferId = -1;
265
Dan Stoza812ed062015-06-02 15:45:22 -0700266 // Stores the generation number of this buffer. If this number does not
267 // match the BufferQueue's internal generation number (set through
268 // IGBP::setGenerationNumber), attempts to attach the buffer will fail.
269 uint32_t mGenerationNumber;
Jiwen 'Steve' Cai2daf5182018-10-16 00:14:03 -0700270
Marissa Wall78b72202019-03-15 14:58:34 -0700271 // Send a callback when a GraphicBuffer dies.
272 //
Patrick Williams83f36b22022-09-14 17:57:35 +0000273 // This is used for layer caching. GraphicBuffers are refcounted per process. When
Marissa Wall78b72202019-03-15 14:58:34 -0700274 // A GraphicBuffer doesn't have any more sp<> in a process, it is destroyed. This causes
275 // problems when trying to implicitcly cache across process boundaries. Ideally, both sides
276 // of the cache would hold onto wp<> references. When an app dropped its sp<>, the GraphicBuffer
277 // would be destroyed. Unfortunately, when SurfaceFlinger has only a wp<> reference to the
278 // GraphicBuffer, it immediately goes out of scope in the SurfaceFlinger process. SurfaceFlinger
279 // must hold onto a sp<> to the buffer. When the GraphicBuffer goes out of scope in the app's
280 // process, the client side cache will get this callback. It erases the buffer from its cache
281 // and informs SurfaceFlinger that it should drop its strong pointer reference to the buffer.
282 std::vector<std::pair<GraphicBufferDeathCallback, void* /*mDeathCallbackContext*/>>
283 mDeathCallbacks;
Mathias Agopian3330b202009-10-05 17:07:12 -0700284};
285
286}; // namespace android
287
288#endif // ANDROID_GRAPHIC_BUFFER_H