1 #undef LOG_TAG
2 #define LOG_TAG "Bitmap"
3 // #define LOG_NDEBUG 0
4 #include "Bitmap.h"
5
6 #include <hwui/Bitmap.h>
7 #include <hwui/Paint.h>
8
9 #include "CreateJavaOutputStreamAdaptor.h"
10 #include "Gainmap.h"
11 #include "GraphicsJNI.h"
12 #include "HardwareBufferHelpers.h"
13 #include "ScopedParcel.h"
14 #include "SkBitmap.h"
15 #include "SkBlendMode.h"
16 #include "SkCanvas.h"
17 #include "SkColor.h"
18 #include "SkColorSpace.h"
19 #include "SkData.h"
20 #include "SkImageInfo.h"
21 #include "SkPaint.h"
22 #include "SkPixmap.h"
23 #include "SkPoint.h"
24 #include "SkRefCnt.h"
25 #include "SkStream.h"
26 #include "SkTypes.h"
27 #include "android_nio_utils.h"
28
29 #ifdef __ANDROID__ // Layoutlib does not support graphic buffer, parcel or render thread
30 #include <android-base/unique_fd.h>
31 #include <renderthread/RenderProxy.h>
32 #endif
33
34 #include <inttypes.h>
35 #include <string.h>
36
37 #include <memory>
38
39 #define DEBUG_PARCEL 0
40
41 static jclass gBitmap_class;
42 static jfieldID gBitmap_nativePtr;
43 static jmethodID gBitmap_constructorMethodID;
44 static jmethodID gBitmap_reinitMethodID;
45
46 namespace android {
47
48 jobject Gainmap_extractFromBitmap(JNIEnv* env, const Bitmap& bitmap);
49
50 class BitmapWrapper {
51 public:
BitmapWrapper(Bitmap * bitmap)52 explicit BitmapWrapper(Bitmap* bitmap)
53 : mBitmap(bitmap) { }
54
freePixels()55 void freePixels() {
56 mInfo = mBitmap->info();
57 mHasHardwareMipMap = mBitmap->hasHardwareMipMap();
58 mAllocationSize = mBitmap->getAllocationByteCount();
59 mRowBytes = mBitmap->rowBytes();
60 mGenerationId = mBitmap->getGenerationID();
61 mIsHardware = mBitmap->isHardware();
62 mBitmap.reset();
63 }
64
valid()65 bool valid() {
66 return mBitmap != nullptr;
67 }
68
bitmap()69 Bitmap& bitmap() {
70 assertValid();
71 return *mBitmap;
72 }
73
assertValid()74 void assertValid() {
75 LOG_ALWAYS_FATAL_IF(!valid(), "Error, cannot access an invalid/free'd bitmap here!");
76 }
77
getSkBitmap(SkBitmap * outBitmap)78 void getSkBitmap(SkBitmap* outBitmap) {
79 assertValid();
80 mBitmap->getSkBitmap(outBitmap);
81 }
82
hasHardwareMipMap()83 bool hasHardwareMipMap() {
84 if (mBitmap) {
85 return mBitmap->hasHardwareMipMap();
86 }
87 return mHasHardwareMipMap;
88 }
89
setHasHardwareMipMap(bool hasMipMap)90 void setHasHardwareMipMap(bool hasMipMap) {
91 assertValid();
92 mBitmap->setHasHardwareMipMap(hasMipMap);
93 }
94
setAlphaType(SkAlphaType alphaType)95 void setAlphaType(SkAlphaType alphaType) {
96 assertValid();
97 mBitmap->setAlphaType(alphaType);
98 }
99
setColorSpace(sk_sp<SkColorSpace> colorSpace)100 void setColorSpace(sk_sp<SkColorSpace> colorSpace) {
101 assertValid();
102 mBitmap->setColorSpace(colorSpace);
103 }
104
info()105 const SkImageInfo& info() {
106 if (mBitmap) {
107 return mBitmap->info();
108 }
109 return mInfo;
110 }
111
getAllocationByteCount() const112 size_t getAllocationByteCount() const {
113 if (mBitmap) {
114 return mBitmap->getAllocationByteCount();
115 }
116 return mAllocationSize;
117 }
118
rowBytes() const119 size_t rowBytes() const {
120 if (mBitmap) {
121 return mBitmap->rowBytes();
122 }
123 return mRowBytes;
124 }
125
getGenerationID() const126 uint32_t getGenerationID() const {
127 if (mBitmap) {
128 return mBitmap->getGenerationID();
129 }
130 return mGenerationId;
131 }
132
isHardware()133 bool isHardware() {
134 if (mBitmap) {
135 return mBitmap->isHardware();
136 }
137 return mIsHardware;
138 }
139
~BitmapWrapper()140 ~BitmapWrapper() { }
141
142 private:
143 sk_sp<Bitmap> mBitmap;
144 SkImageInfo mInfo;
145 bool mHasHardwareMipMap;
146 size_t mAllocationSize;
147 size_t mRowBytes;
148 uint32_t mGenerationId;
149 bool mIsHardware;
150 };
151
152 // Convenience class that does not take a global ref on the pixels, relying
153 // on the caller already having a local JNI ref
154 class LocalScopedBitmap {
155 public:
LocalScopedBitmap(jlong bitmapHandle)156 explicit LocalScopedBitmap(jlong bitmapHandle)
157 : mBitmapWrapper(reinterpret_cast<BitmapWrapper*>(bitmapHandle)) {}
158
operator ->()159 BitmapWrapper* operator->() {
160 return mBitmapWrapper;
161 }
162
pixels()163 void* pixels() {
164 return mBitmapWrapper->bitmap().pixels();
165 }
166
valid()167 bool valid() {
168 return mBitmapWrapper && mBitmapWrapper->valid();
169 }
170
171 private:
172 BitmapWrapper* mBitmapWrapper;
173 };
174
175 namespace bitmap {
176
177 // Assert that bitmap's SkAlphaType is consistent with isPremultiplied.
assert_premultiplied(const SkImageInfo & info,bool isPremultiplied)178 static void assert_premultiplied(const SkImageInfo& info, bool isPremultiplied) {
179 // kOpaque_SkAlphaType and kIgnore_SkAlphaType mean that isPremultiplied is
180 // irrelevant. This just tests to ensure that the SkAlphaType is not
181 // opposite of isPremultiplied.
182 if (isPremultiplied) {
183 SkASSERT(info.alphaType() != kUnpremul_SkAlphaType);
184 } else {
185 SkASSERT(info.alphaType() != kPremul_SkAlphaType);
186 }
187 }
188
reinitBitmap(JNIEnv * env,jobject javaBitmap,const SkImageInfo & info,bool isPremultiplied)189 void reinitBitmap(JNIEnv* env, jobject javaBitmap, const SkImageInfo& info,
190 bool isPremultiplied)
191 {
192 // The caller needs to have already set the alpha type properly, so the
193 // native SkBitmap stays in sync with the Java Bitmap.
194 assert_premultiplied(info, isPremultiplied);
195
196 env->CallVoidMethod(javaBitmap, gBitmap_reinitMethodID,
197 info.width(), info.height(), isPremultiplied);
198 }
199
createBitmap(JNIEnv * env,Bitmap * bitmap,int bitmapCreateFlags,jbyteArray ninePatchChunk,jobject ninePatchInsets,int density)200 jobject createBitmap(JNIEnv* env, Bitmap* bitmap,
201 int bitmapCreateFlags, jbyteArray ninePatchChunk, jobject ninePatchInsets,
202 int density) {
203 bool isMutable = bitmapCreateFlags & kBitmapCreateFlag_Mutable;
204 bool isPremultiplied = bitmapCreateFlags & kBitmapCreateFlag_Premultiplied;
205 // The caller needs to have already set the alpha type properly, so the
206 // native SkBitmap stays in sync with the Java Bitmap.
207 assert_premultiplied(bitmap->info(), isPremultiplied);
208 bool fromMalloc = bitmap->pixelStorageType() == PixelStorageType::Heap;
209 BitmapWrapper* bitmapWrapper = new BitmapWrapper(bitmap);
210 if (!isMutable) {
211 bitmapWrapper->bitmap().setImmutable();
212 }
213 jobject obj = env->NewObject(gBitmap_class, gBitmap_constructorMethodID,
214 reinterpret_cast<jlong>(bitmapWrapper), bitmap->width(), bitmap->height(), density,
215 isPremultiplied, ninePatchChunk, ninePatchInsets, fromMalloc);
216
217 if (env->ExceptionCheck() != 0) {
218 ALOGE("*** Uncaught exception returned from Java call!\n");
219 env->ExceptionDescribe();
220 }
221 return obj;
222 }
223
toSkBitmap(jlong bitmapHandle,SkBitmap * outBitmap)224 void toSkBitmap(jlong bitmapHandle, SkBitmap* outBitmap) {
225 LocalScopedBitmap bitmap(bitmapHandle);
226 bitmap->getSkBitmap(outBitmap);
227 }
228
toBitmap(jlong bitmapHandle)229 Bitmap& toBitmap(jlong bitmapHandle) {
230 LocalScopedBitmap localBitmap(bitmapHandle);
231 return localBitmap->bitmap();
232 }
233
234 } // namespace bitmap
235
236 } // namespace android
237
238 using namespace android;
239 using namespace android::bitmap;
240
getNativeBitmap(JNIEnv * env,jobject bitmap)241 Bitmap* GraphicsJNI::getNativeBitmap(JNIEnv* env, jobject bitmap) {
242 SkASSERT(env);
243 SkASSERT(bitmap);
244 SkASSERT(env->IsInstanceOf(bitmap, gBitmap_class));
245 jlong bitmapHandle = env->GetLongField(bitmap, gBitmap_nativePtr);
246 LocalScopedBitmap localBitmap(bitmapHandle);
247 return localBitmap.valid() ? &localBitmap->bitmap() : nullptr;
248 }
249
getBitmapInfo(JNIEnv * env,jobject bitmap,uint32_t * outRowBytes,bool * isHardware)250 SkImageInfo GraphicsJNI::getBitmapInfo(JNIEnv* env, jobject bitmap, uint32_t* outRowBytes,
251 bool* isHardware) {
252 SkASSERT(env);
253 SkASSERT(bitmap);
254 SkASSERT(env->IsInstanceOf(bitmap, gBitmap_class));
255 jlong bitmapHandle = env->GetLongField(bitmap, gBitmap_nativePtr);
256 LocalScopedBitmap localBitmap(bitmapHandle);
257 if (outRowBytes) {
258 *outRowBytes = localBitmap->rowBytes();
259 }
260 if (isHardware) {
261 *isHardware = localBitmap->isHardware();
262 }
263 return localBitmap->info();
264 }
265
SetPixels(JNIEnv * env,jintArray srcColors,int srcOffset,int srcStride,int x,int y,int width,int height,SkBitmap * dstBitmap)266 bool GraphicsJNI::SetPixels(JNIEnv* env, jintArray srcColors, int srcOffset, int srcStride,
267 int x, int y, int width, int height, SkBitmap* dstBitmap) {
268 const jint* array = env->GetIntArrayElements(srcColors, NULL);
269 const SkColor* src = (const SkColor*)array + srcOffset;
270
271 auto sRGB = SkColorSpace::MakeSRGB();
272 SkImageInfo srcInfo = SkImageInfo::Make(
273 width, height, kBGRA_8888_SkColorType, kUnpremul_SkAlphaType, sRGB);
274 SkPixmap srcPM(srcInfo, src, srcStride * 4);
275
276 dstBitmap->writePixels(srcPM, x, y);
277
278 env->ReleaseIntArrayElements(srcColors, const_cast<jint*>(array), JNI_ABORT);
279 return true;
280 }
281
282 ///////////////////////////////////////////////////////////////////////////////
283 ///////////////////////////////////////////////////////////////////////////////
284
getPremulBitmapCreateFlags(bool isMutable)285 static int getPremulBitmapCreateFlags(bool isMutable) {
286 int flags = android::bitmap::kBitmapCreateFlag_Premultiplied;
287 if (isMutable) flags |= android::bitmap::kBitmapCreateFlag_Mutable;
288 return flags;
289 }
290
Bitmap_creator(JNIEnv * env,jobject,jintArray jColors,jint offset,jint stride,jint width,jint height,jint configHandle,jboolean isMutable,jlong colorSpacePtr)291 static jobject Bitmap_creator(JNIEnv* env, jobject, jintArray jColors,
292 jint offset, jint stride, jint width, jint height,
293 jint configHandle, jboolean isMutable,
294 jlong colorSpacePtr) {
295 SkColorType colorType = GraphicsJNI::legacyBitmapConfigToColorType(configHandle);
296 if (NULL != jColors) {
297 size_t n = env->GetArrayLength(jColors);
298 if (n < SkAbs32(stride) * (size_t)height) {
299 doThrowAIOOBE(env);
300 return NULL;
301 }
302 }
303
304 // ARGB_4444 is a deprecated format, convert automatically to 8888
305 if (colorType == kARGB_4444_SkColorType) {
306 colorType = kN32_SkColorType;
307 }
308
309 sk_sp<SkColorSpace> colorSpace;
310 if (colorType == kAlpha_8_SkColorType) {
311 colorSpace = nullptr;
312 } else {
313 colorSpace = GraphicsJNI::getNativeColorSpace(colorSpacePtr);
314 }
315
316 SkBitmap bitmap;
317 bitmap.setInfo(SkImageInfo::Make(width, height, colorType, kPremul_SkAlphaType,
318 colorSpace));
319
320 sk_sp<Bitmap> nativeBitmap = Bitmap::allocateHeapBitmap(&bitmap);
321 if (!nativeBitmap) {
322 ALOGE("OOM allocating Bitmap with dimensions %i x %i", width, height);
323 doThrowOOME(env);
324 return NULL;
325 }
326
327 if (jColors != NULL) {
328 GraphicsJNI::SetPixels(env, jColors, offset, stride, 0, 0, width, height, &bitmap);
329 }
330
331 return createBitmap(env, nativeBitmap.release(), getPremulBitmapCreateFlags(isMutable));
332 }
333
bitmapCopyTo(SkBitmap * dst,SkColorType dstCT,const SkBitmap & src,SkBitmap::Allocator * alloc)334 static bool bitmapCopyTo(SkBitmap* dst, SkColorType dstCT, const SkBitmap& src,
335 SkBitmap::Allocator* alloc) {
336 SkPixmap srcPM;
337 if (!src.peekPixels(&srcPM)) {
338 return false;
339 }
340
341 SkImageInfo dstInfo = srcPM.info().makeColorType(dstCT);
342 switch (dstCT) {
343 case kRGB_565_SkColorType:
344 dstInfo = dstInfo.makeAlphaType(kOpaque_SkAlphaType);
345 break;
346 case kAlpha_8_SkColorType:
347 dstInfo = dstInfo.makeColorSpace(nullptr);
348 break;
349 default:
350 break;
351 }
352
353 if (!dstInfo.colorSpace() && dstCT != kAlpha_8_SkColorType) {
354 dstInfo = dstInfo.makeColorSpace(SkColorSpace::MakeSRGB());
355 }
356
357 if (!dst->setInfo(dstInfo)) {
358 return false;
359 }
360 if (!dst->tryAllocPixels(alloc)) {
361 return false;
362 }
363
364 SkPixmap dstPM;
365 if (!dst->peekPixels(&dstPM)) {
366 return false;
367 }
368
369 return srcPM.readPixels(dstPM);
370 }
371
Bitmap_copy(JNIEnv * env,jobject,jlong srcHandle,jint dstConfigHandle,jboolean isMutable)372 static jobject Bitmap_copy(JNIEnv* env, jobject, jlong srcHandle, jint dstConfigHandle,
373 jboolean isMutable) {
374 LocalScopedBitmap bitmapHolder(srcHandle);
375 if (!bitmapHolder.valid()) {
376 return NULL;
377 }
378 const Bitmap& original = bitmapHolder->bitmap();
379 const bool hasGainmap = original.hasGainmap();
380 SkBitmap src;
381 bitmapHolder->getSkBitmap(&src);
382
383 if (dstConfigHandle == GraphicsJNI::hardwareLegacyBitmapConfig()) {
384 sk_sp<Bitmap> bitmap(Bitmap::allocateHardwareBitmap(src));
385 if (!bitmap.get()) {
386 return NULL;
387 }
388 if (hasGainmap) {
389 auto gm = uirenderer::Gainmap::allocateHardwareGainmap(original.gainmap());
390 if (gm) {
391 bitmap->setGainmap(std::move(gm));
392 }
393 }
394 return createBitmap(env, bitmap.release(), getPremulBitmapCreateFlags(isMutable));
395 }
396
397 SkColorType dstCT = GraphicsJNI::legacyBitmapConfigToColorType(dstConfigHandle);
398 SkBitmap result;
399 HeapAllocator allocator;
400
401 if (!bitmapCopyTo(&result, dstCT, src, &allocator)) {
402 return NULL;
403 }
404 auto bitmap = allocator.getStorageObjAndReset();
405 if (hasGainmap) {
406 auto gainmap = sp<uirenderer::Gainmap>::make();
407 gainmap->info = original.gainmap()->info;
408 const SkBitmap skSrcBitmap = original.gainmap()->bitmap->getSkBitmap();
409 SkBitmap skDestBitmap;
410 HeapAllocator destAllocator;
411 if (!bitmapCopyTo(&skDestBitmap, dstCT, skSrcBitmap, &destAllocator)) {
412 return NULL;
413 }
414 gainmap->bitmap = sk_sp<Bitmap>(destAllocator.getStorageObjAndReset());
415 bitmap->setGainmap(std::move(gainmap));
416 }
417 return createBitmap(env, bitmap, getPremulBitmapCreateFlags(isMutable));
418 }
419
Bitmap_copyAshmemImpl(JNIEnv * env,SkBitmap & src,SkColorType & dstCT)420 static Bitmap* Bitmap_copyAshmemImpl(JNIEnv* env, SkBitmap& src, SkColorType& dstCT) {
421 SkBitmap result;
422
423 AshmemPixelAllocator allocator(env);
424 if (!bitmapCopyTo(&result, dstCT, src, &allocator)) {
425 return NULL;
426 }
427 auto bitmap = allocator.getStorageObjAndReset();
428 bitmap->setImmutable();
429 return bitmap;
430 }
431
Bitmap_copyAshmem(JNIEnv * env,jobject,jlong srcHandle)432 static jobject Bitmap_copyAshmem(JNIEnv* env, jobject, jlong srcHandle) {
433 SkBitmap src;
434 reinterpret_cast<BitmapWrapper*>(srcHandle)->getSkBitmap(&src);
435 SkColorType dstCT = src.colorType();
436 auto bitmap = Bitmap_copyAshmemImpl(env, src, dstCT);
437 jobject ret = createBitmap(env, bitmap, getPremulBitmapCreateFlags(false));
438 return ret;
439 }
440
Bitmap_copyAshmemConfig(JNIEnv * env,jobject,jlong srcHandle,jint dstConfigHandle)441 static jobject Bitmap_copyAshmemConfig(JNIEnv* env, jobject, jlong srcHandle, jint dstConfigHandle) {
442 SkBitmap src;
443 reinterpret_cast<BitmapWrapper*>(srcHandle)->getSkBitmap(&src);
444 SkColorType dstCT = GraphicsJNI::legacyBitmapConfigToColorType(dstConfigHandle);
445 auto bitmap = Bitmap_copyAshmemImpl(env, src, dstCT);
446 jobject ret = createBitmap(env, bitmap, getPremulBitmapCreateFlags(false));
447 return ret;
448 }
449
Bitmap_getAshmemFd(JNIEnv * env,jobject,jlong bitmapHandle)450 static jint Bitmap_getAshmemFd(JNIEnv* env, jobject, jlong bitmapHandle) {
451 LocalScopedBitmap bitmap(bitmapHandle);
452 return (bitmap.valid()) ? bitmap->bitmap().getAshmemFd() : -1;
453 }
454
Bitmap_destruct(BitmapWrapper * bitmap)455 static void Bitmap_destruct(BitmapWrapper* bitmap) {
456 delete bitmap;
457 }
458
Bitmap_getNativeFinalizer(JNIEnv *,jobject)459 static jlong Bitmap_getNativeFinalizer(JNIEnv*, jobject) {
460 return static_cast<jlong>(reinterpret_cast<uintptr_t>(&Bitmap_destruct));
461 }
462
Bitmap_recycle(JNIEnv * env,jobject,jlong bitmapHandle)463 static void Bitmap_recycle(JNIEnv* env, jobject, jlong bitmapHandle) {
464 LocalScopedBitmap bitmap(bitmapHandle);
465 bitmap->freePixels();
466 }
467
Bitmap_reconfigure(JNIEnv * env,jobject clazz,jlong bitmapHandle,jint width,jint height,jint configHandle,jboolean requestPremul)468 static void Bitmap_reconfigure(JNIEnv* env, jobject clazz, jlong bitmapHandle,
469 jint width, jint height, jint configHandle, jboolean requestPremul) {
470 LocalScopedBitmap bitmap(bitmapHandle);
471 bitmap->assertValid();
472 SkColorType colorType = GraphicsJNI::legacyBitmapConfigToColorType(configHandle);
473
474 // ARGB_4444 is a deprecated format, convert automatically to 8888
475 if (colorType == kARGB_4444_SkColorType) {
476 colorType = kN32_SkColorType;
477 }
478 size_t requestedSize = width * height * SkColorTypeBytesPerPixel(colorType);
479 if (requestedSize > bitmap->getAllocationByteCount()) {
480 // done in native as there's no way to get BytesPerPixel in Java
481 doThrowIAE(env, "Bitmap not large enough to support new configuration");
482 return;
483 }
484 SkAlphaType alphaType;
485 if (bitmap->info().colorType() != kRGB_565_SkColorType
486 && bitmap->info().alphaType() == kOpaque_SkAlphaType) {
487 // If the original bitmap was set to opaque, keep that setting, unless it
488 // was 565, which is required to be opaque.
489 alphaType = kOpaque_SkAlphaType;
490 } else {
491 // Otherwise respect the premultiplied request.
492 alphaType = requestPremul ? kPremul_SkAlphaType : kUnpremul_SkAlphaType;
493 }
494 bitmap->bitmap().reconfigure(SkImageInfo::Make(width, height, colorType, alphaType,
495 sk_ref_sp(bitmap->info().colorSpace())));
496 }
497
Bitmap_compress(JNIEnv * env,jobject clazz,jlong bitmapHandle,jint format,jint quality,jobject jstream,jbyteArray jstorage)498 static jboolean Bitmap_compress(JNIEnv* env, jobject clazz, jlong bitmapHandle,
499 jint format, jint quality,
500 jobject jstream, jbyteArray jstorage) {
501 LocalScopedBitmap bitmap(bitmapHandle);
502 if (!bitmap.valid()) {
503 return JNI_FALSE;
504 }
505
506 std::unique_ptr<SkWStream> strm(CreateJavaOutputStreamAdaptor(env, jstream, jstorage));
507 if (!strm.get()) {
508 return JNI_FALSE;
509 }
510
511 auto fm = static_cast<Bitmap::JavaCompressFormat>(format);
512 return bitmap->bitmap().compress(fm, quality, strm.get()) ? JNI_TRUE : JNI_FALSE;
513 }
514
bitmapErase(SkBitmap bitmap,const SkColor4f & color,const sk_sp<SkColorSpace> & colorSpace)515 static inline void bitmapErase(SkBitmap bitmap, const SkColor4f& color,
516 const sk_sp<SkColorSpace>& colorSpace) {
517 SkPaint p;
518 p.setColor4f(color, colorSpace.get());
519 p.setBlendMode(SkBlendMode::kSrc);
520 SkCanvas canvas(bitmap);
521 canvas.drawPaint(p);
522 }
523
Bitmap_erase(JNIEnv * env,jobject,jlong bitmapHandle,jint color)524 static void Bitmap_erase(JNIEnv* env, jobject, jlong bitmapHandle, jint color) {
525 LocalScopedBitmap bitmap(bitmapHandle);
526 SkBitmap skBitmap;
527 bitmap->getSkBitmap(&skBitmap);
528 bitmapErase(skBitmap, SkColor4f::FromColor(color), SkColorSpace::MakeSRGB());
529 }
530
Bitmap_eraseLong(JNIEnv * env,jobject,jlong bitmapHandle,jlong colorSpaceHandle,jlong colorLong)531 static void Bitmap_eraseLong(JNIEnv* env, jobject, jlong bitmapHandle,
532 jlong colorSpaceHandle, jlong colorLong) {
533 LocalScopedBitmap bitmap(bitmapHandle);
534 SkBitmap skBitmap;
535 bitmap->getSkBitmap(&skBitmap);
536
537 SkColor4f color = GraphicsJNI::convertColorLong(colorLong);
538 sk_sp<SkColorSpace> cs = GraphicsJNI::getNativeColorSpace(colorSpaceHandle);
539 bitmapErase(skBitmap, color, cs);
540 }
541
Bitmap_rowBytes(JNIEnv * env,jobject,jlong bitmapHandle)542 static jint Bitmap_rowBytes(JNIEnv* env, jobject, jlong bitmapHandle) {
543 LocalScopedBitmap bitmap(bitmapHandle);
544 return static_cast<jint>(bitmap->rowBytes());
545 }
546
Bitmap_config(JNIEnv * env,jobject,jlong bitmapHandle)547 static jint Bitmap_config(JNIEnv* env, jobject, jlong bitmapHandle) {
548 LocalScopedBitmap bitmap(bitmapHandle);
549 if (bitmap->isHardware()) {
550 return GraphicsJNI::hardwareLegacyBitmapConfig();
551 }
552 return GraphicsJNI::colorTypeToLegacyBitmapConfig(bitmap->info().colorType());
553 }
554
Bitmap_getGenerationId(JNIEnv * env,jobject,jlong bitmapHandle)555 static jint Bitmap_getGenerationId(JNIEnv* env, jobject, jlong bitmapHandle) {
556 LocalScopedBitmap bitmap(bitmapHandle);
557 return static_cast<jint>(bitmap->getGenerationID());
558 }
559
Bitmap_isPremultiplied(JNIEnv * env,jobject,jlong bitmapHandle)560 static jboolean Bitmap_isPremultiplied(JNIEnv* env, jobject, jlong bitmapHandle) {
561 LocalScopedBitmap bitmap(bitmapHandle);
562 if (bitmap->info().alphaType() == kPremul_SkAlphaType) {
563 return JNI_TRUE;
564 }
565 return JNI_FALSE;
566 }
567
Bitmap_hasAlpha(JNIEnv * env,jobject,jlong bitmapHandle)568 static jboolean Bitmap_hasAlpha(JNIEnv* env, jobject, jlong bitmapHandle) {
569 LocalScopedBitmap bitmap(bitmapHandle);
570 return !bitmap->info().isOpaque() ? JNI_TRUE : JNI_FALSE;
571 }
572
Bitmap_setHasAlpha(JNIEnv * env,jobject,jlong bitmapHandle,jboolean hasAlpha,jboolean requestPremul)573 static void Bitmap_setHasAlpha(JNIEnv* env, jobject, jlong bitmapHandle,
574 jboolean hasAlpha, jboolean requestPremul) {
575 LocalScopedBitmap bitmap(bitmapHandle);
576 if (hasAlpha) {
577 bitmap->setAlphaType(
578 requestPremul ? kPremul_SkAlphaType : kUnpremul_SkAlphaType);
579 } else {
580 bitmap->setAlphaType(kOpaque_SkAlphaType);
581 }
582 }
583
Bitmap_setPremultiplied(JNIEnv * env,jobject,jlong bitmapHandle,jboolean isPremul)584 static void Bitmap_setPremultiplied(JNIEnv* env, jobject, jlong bitmapHandle,
585 jboolean isPremul) {
586 LocalScopedBitmap bitmap(bitmapHandle);
587 if (!bitmap->info().isOpaque()) {
588 if (isPremul) {
589 bitmap->setAlphaType(kPremul_SkAlphaType);
590 } else {
591 bitmap->setAlphaType(kUnpremul_SkAlphaType);
592 }
593 }
594 }
595
Bitmap_hasMipMap(JNIEnv * env,jobject,jlong bitmapHandle)596 static jboolean Bitmap_hasMipMap(JNIEnv* env, jobject, jlong bitmapHandle) {
597 LocalScopedBitmap bitmap(bitmapHandle);
598 return bitmap->hasHardwareMipMap() ? JNI_TRUE : JNI_FALSE;
599 }
600
Bitmap_setHasMipMap(JNIEnv * env,jobject,jlong bitmapHandle,jboolean hasMipMap)601 static void Bitmap_setHasMipMap(JNIEnv* env, jobject, jlong bitmapHandle,
602 jboolean hasMipMap) {
603 LocalScopedBitmap bitmap(bitmapHandle);
604 bitmap->setHasHardwareMipMap(hasMipMap);
605 }
606
607 ///////////////////////////////////////////////////////////////////////////////
608
609 // TODO: Move somewhere else
610 #ifdef __ANDROID__ // Layoutlib does not support parcel
611 #define ON_ERROR_RETURN(X) \
612 if ((error = (X)) != STATUS_OK) return error
613
614 template <typename T, typename U>
readBlob(AParcel * parcel,T inPlaceCallback,U ashmemCallback)615 static binder_status_t readBlob(AParcel* parcel, T inPlaceCallback, U ashmemCallback) {
616 binder_status_t error = STATUS_OK;
617 BlobType type;
618 static_assert(sizeof(BlobType) == sizeof(int32_t));
619 ON_ERROR_RETURN(AParcel_readInt32(parcel, (int32_t*)&type));
620 if (type == BlobType::IN_PLACE) {
621 struct Data {
622 std::unique_ptr<int8_t[]> ptr = nullptr;
623 int32_t size = 0;
624 } data;
625 ON_ERROR_RETURN(
626 AParcel_readByteArray(parcel, &data,
627 [](void* arrayData, int32_t length, int8_t** outBuffer) {
628 Data* data = reinterpret_cast<Data*>(arrayData);
629 if (length > 0) {
630 data->ptr = std::make_unique<int8_t[]>(length);
631 data->size = length;
632 *outBuffer = data->ptr.get();
633 }
634 return data->ptr != nullptr;
635 }));
636 return inPlaceCallback(std::move(data.ptr), data.size);
637 } else if (type == BlobType::ASHMEM) {
638 int rawFd = -1;
639 int32_t size = 0;
640 ON_ERROR_RETURN(AParcel_readInt32(parcel, &size));
641 ON_ERROR_RETURN(AParcel_readParcelFileDescriptor(parcel, &rawFd));
642 android::base::unique_fd fd(rawFd);
643 return ashmemCallback(std::move(fd), size);
644 } else {
645 // Although the above if/else was "exhaustive" guard against unknown types
646 return STATUS_UNKNOWN_ERROR;
647 }
648 }
649
650 static constexpr size_t BLOB_INPLACE_LIMIT = 12 * 1024;
651 // Fail fast if we can't use ashmem and the size exceeds this limit - the binder transaction
652 // wouldn't go through, anyway
653 // TODO: Can we get this from somewhere?
654 static constexpr size_t BLOB_MAX_INPLACE_LIMIT = 1 * 1024 * 1024;
shouldUseAshmem(AParcel * parcel,int32_t size)655 static constexpr bool shouldUseAshmem(AParcel* parcel, int32_t size) {
656 return size > BLOB_INPLACE_LIMIT && AParcel_getAllowFds(parcel);
657 }
658
writeBlobFromFd(AParcel * parcel,int32_t size,int fd)659 static binder_status_t writeBlobFromFd(AParcel* parcel, int32_t size, int fd) {
660 binder_status_t error = STATUS_OK;
661 ON_ERROR_RETURN(AParcel_writeInt32(parcel, static_cast<int32_t>(BlobType::ASHMEM)));
662 ON_ERROR_RETURN(AParcel_writeInt32(parcel, size));
663 ON_ERROR_RETURN(AParcel_writeParcelFileDescriptor(parcel, fd));
664 return STATUS_OK;
665 }
666
writeBlob(AParcel * parcel,const int32_t size,const void * data,bool immutable)667 static binder_status_t writeBlob(AParcel* parcel, const int32_t size, const void* data, bool immutable) {
668 if (size <= 0 || data == nullptr) {
669 return STATUS_NOT_ENOUGH_DATA;
670 }
671 binder_status_t error = STATUS_OK;
672 if (shouldUseAshmem(parcel, size)) {
673 // Create new ashmem region with read/write priv
674 base::unique_fd fd(ashmem_create_region("bitmap", size));
675 if (fd.get() < 0) {
676 return STATUS_NO_MEMORY;
677 }
678
679 {
680 void* dest = mmap(NULL, size, PROT_READ | PROT_WRITE, MAP_SHARED, fd.get(), 0);
681 if (dest == MAP_FAILED) {
682 return STATUS_NO_MEMORY;
683 }
684 memcpy(dest, data, size);
685 munmap(dest, size);
686 }
687
688 if (immutable && ashmem_set_prot_region(fd.get(), PROT_READ) < 0) {
689 return STATUS_UNKNOWN_ERROR;
690 }
691 // Workaround b/149851140 in AParcel_writeParcelFileDescriptor
692 int rawFd = fd.release();
693 error = writeBlobFromFd(parcel, size, rawFd);
694 close(rawFd);
695 return error;
696 } else {
697 if (size > BLOB_MAX_INPLACE_LIMIT) {
698 return STATUS_FAILED_TRANSACTION;
699 }
700 ON_ERROR_RETURN(AParcel_writeInt32(parcel, static_cast<int32_t>(BlobType::IN_PLACE)));
701 ON_ERROR_RETURN(AParcel_writeByteArray(parcel, static_cast<const int8_t*>(data), size));
702 return STATUS_OK;
703 }
704 }
705
706 #undef ON_ERROR_RETURN
707
708 #endif // __ANDROID__ // Layoutlib does not support parcel
709
710 // This is the maximum possible size because the SkColorSpace must be
711 // representable (and therefore serializable) using a matrix and numerical
712 // transfer function. If we allow more color space representations in the
713 // framework, we may need to update this maximum size.
714 static constexpr size_t kMaxColorSpaceSerializedBytes = 80;
715
716 static constexpr auto BadParcelableException = "android/os/BadParcelableException";
717
validateImageInfo(const SkImageInfo & info,int32_t rowBytes)718 static bool validateImageInfo(const SkImageInfo& info, int32_t rowBytes) {
719 // TODO: Can we avoid making a SkBitmap for this?
720 return SkBitmap().setInfo(info, rowBytes);
721 }
722
Bitmap_createFromParcel(JNIEnv * env,jobject,jobject parcel)723 static jobject Bitmap_createFromParcel(JNIEnv* env, jobject, jobject parcel) {
724 #ifdef __ANDROID__ // Layoutlib does not support parcel
725 if (parcel == NULL) {
726 jniThrowNullPointerException(env, "parcel cannot be null");
727 return NULL;
728 }
729
730 ScopedParcel p(env, parcel);
731
732 const bool isMutable = p.readInt32();
733 const SkColorType colorType = static_cast<SkColorType>(p.readInt32());
734 const SkAlphaType alphaType = static_cast<SkAlphaType>(p.readInt32());
735 sk_sp<SkColorSpace> colorSpace;
736 const auto optColorSpaceData = p.readData();
737 if (optColorSpaceData) {
738 const auto& colorSpaceData = *optColorSpaceData;
739 if (colorSpaceData->size() > kMaxColorSpaceSerializedBytes) {
740 ALOGD("Bitmap_createFromParcel: Serialized SkColorSpace is larger than expected: "
741 "%zu bytes (max: %zu)\n",
742 colorSpaceData->size(), kMaxColorSpaceSerializedBytes);
743 }
744
745 colorSpace = SkColorSpace::Deserialize(colorSpaceData->data(), colorSpaceData->size());
746 }
747 const int32_t width = p.readInt32();
748 const int32_t height = p.readInt32();
749 const int32_t rowBytes = p.readInt32();
750 const int32_t density = p.readInt32();
751
752 if (kN32_SkColorType != colorType &&
753 kRGBA_F16_SkColorType != colorType &&
754 kRGB_565_SkColorType != colorType &&
755 kARGB_4444_SkColorType != colorType &&
756 kAlpha_8_SkColorType != colorType) {
757 jniThrowExceptionFmt(env, BadParcelableException,
758 "Bitmap_createFromParcel unknown colortype: %d\n", colorType);
759 return NULL;
760 }
761
762 auto imageInfo = SkImageInfo::Make(width, height, colorType, alphaType, colorSpace);
763 size_t allocationSize = 0;
764 if (!validateImageInfo(imageInfo, rowBytes)) {
765 jniThrowRuntimeException(env, "Received bad SkImageInfo");
766 return NULL;
767 }
768 if (!Bitmap::computeAllocationSize(rowBytes, height, &allocationSize)) {
769 jniThrowExceptionFmt(env, BadParcelableException,
770 "Received bad bitmap size: width=%d, height=%d, rowBytes=%d", width,
771 height, rowBytes);
772 return NULL;
773 }
774 sk_sp<Bitmap> nativeBitmap;
775 binder_status_t error = readBlob(
776 p.get(),
777 // In place callback
778 [&](std::unique_ptr<int8_t[]> buffer, int32_t size) {
779 if (allocationSize > size) {
780 android_errorWriteLog(0x534e4554, "213169612");
781 return STATUS_BAD_VALUE;
782 }
783 nativeBitmap = Bitmap::allocateHeapBitmap(allocationSize, imageInfo, rowBytes);
784 if (nativeBitmap) {
785 memcpy(nativeBitmap->pixels(), buffer.get(), allocationSize);
786 return STATUS_OK;
787 }
788 return STATUS_NO_MEMORY;
789 },
790 // Ashmem callback
791 [&](android::base::unique_fd fd, int32_t size) {
792 if (allocationSize > size) {
793 android_errorWriteLog(0x534e4554, "213169612");
794 return STATUS_BAD_VALUE;
795 }
796 int flags = PROT_READ;
797 if (isMutable) {
798 flags |= PROT_WRITE;
799 }
800 void* addr = mmap(nullptr, size, flags, MAP_SHARED, fd.get(), 0);
801 if (addr == MAP_FAILED) {
802 const int err = errno;
803 ALOGW("mmap failed, error %d (%s)", err, strerror(err));
804 return STATUS_NO_MEMORY;
805 }
806 nativeBitmap =
807 Bitmap::createFrom(imageInfo, rowBytes, fd.release(), addr, size, !isMutable);
808 return STATUS_OK;
809 });
810
811 if (error != STATUS_OK && error != STATUS_NO_MEMORY) {
812 // TODO: Stringify the error, see signalExceptionForError in android_util_Binder.cpp
813 jniThrowExceptionFmt(env, BadParcelableException, "Failed to read from Parcel, error=%d",
814 error);
815 return nullptr;
816 }
817 if (error == STATUS_NO_MEMORY || !nativeBitmap) {
818 jniThrowRuntimeException(env, "Could not allocate bitmap data.");
819 return nullptr;
820 }
821
822 return createBitmap(env, nativeBitmap.release(), getPremulBitmapCreateFlags(isMutable), nullptr,
823 nullptr, density);
824 #else
825 jniThrowRuntimeException(env, "Cannot use parcels outside of Android");
826 return NULL;
827 #endif
828 }
829
Bitmap_writeToParcel(JNIEnv * env,jobject,jlong bitmapHandle,jint density,jobject parcel)830 static jboolean Bitmap_writeToParcel(JNIEnv* env, jobject,
831 jlong bitmapHandle, jint density, jobject parcel) {
832 #ifdef __ANDROID__ // Layoutlib does not support parcel
833 if (parcel == NULL) {
834 ALOGD("------- writeToParcel null parcel\n");
835 return JNI_FALSE;
836 }
837
838 ScopedParcel p(env, parcel);
839 SkBitmap bitmap;
840
841 auto bitmapWrapper = reinterpret_cast<BitmapWrapper*>(bitmapHandle);
842 bitmapWrapper->getSkBitmap(&bitmap);
843
844 p.writeInt32(!bitmap.isImmutable());
845 p.writeInt32(bitmap.colorType());
846 p.writeInt32(bitmap.alphaType());
847 SkColorSpace* colorSpace = bitmap.colorSpace();
848 if (colorSpace != nullptr) {
849 p.writeData(colorSpace->serialize());
850 } else {
851 p.writeData(std::nullopt);
852 }
853 p.writeInt32(bitmap.width());
854 p.writeInt32(bitmap.height());
855 p.writeInt32(bitmap.rowBytes());
856 p.writeInt32(density);
857
858 // Transfer the underlying ashmem region if we have one and it's immutable.
859 binder_status_t status;
860 int fd = bitmapWrapper->bitmap().getAshmemFd();
861 if (fd >= 0 && p.allowFds() && bitmap.isImmutable()) {
862 #if DEBUG_PARCEL
863 ALOGD("Bitmap.writeToParcel: transferring immutable bitmap's ashmem fd as "
864 "immutable blob (fds %s)",
865 p.allowFds() ? "allowed" : "forbidden");
866 #endif
867
868 status = writeBlobFromFd(p.get(), bitmapWrapper->bitmap().getAllocationByteCount(), fd);
869 if (status != STATUS_OK) {
870 doThrowRE(env, "Could not write bitmap blob file descriptor.");
871 return JNI_FALSE;
872 }
873 return JNI_TRUE;
874 }
875
876 // Copy the bitmap to a new blob.
877 #if DEBUG_PARCEL
878 ALOGD("Bitmap.writeToParcel: copying bitmap into new blob (fds %s)",
879 p.allowFds() ? "allowed" : "forbidden");
880 #endif
881
882 size_t size = bitmap.computeByteSize();
883 status = writeBlob(p.get(), size, bitmap.getPixels(), bitmap.isImmutable());
884 if (status) {
885 doThrowRE(env, "Could not copy bitmap to parcel blob.");
886 return JNI_FALSE;
887 }
888 return JNI_TRUE;
889 #else
890 doThrowRE(env, "Cannot use parcels outside of Android");
891 return JNI_FALSE;
892 #endif
893 }
894
Bitmap_extractAlpha(JNIEnv * env,jobject clazz,jlong srcHandle,jlong paintHandle,jintArray offsetXY)895 static jobject Bitmap_extractAlpha(JNIEnv* env, jobject clazz,
896 jlong srcHandle, jlong paintHandle,
897 jintArray offsetXY) {
898 SkBitmap src;
899 reinterpret_cast<BitmapWrapper*>(srcHandle)->getSkBitmap(&src);
900 const android::Paint* paint = reinterpret_cast<android::Paint*>(paintHandle);
901 SkIPoint offset;
902 SkBitmap dst;
903 HeapAllocator allocator;
904
905 src.extractAlpha(&dst, paint, &allocator, &offset);
906 // If Skia can't allocate pixels for destination bitmap, it resets
907 // it, that is set its pixels buffer to NULL, and zero width and height.
908 if (dst.getPixels() == NULL && src.getPixels() != NULL) {
909 doThrowOOME(env, "failed to allocate pixels for alpha");
910 return NULL;
911 }
912 if (offsetXY != 0 && env->GetArrayLength(offsetXY) >= 2) {
913 int* array = env->GetIntArrayElements(offsetXY, NULL);
914 array[0] = offset.fX;
915 array[1] = offset.fY;
916 env->ReleaseIntArrayElements(offsetXY, array, 0);
917 }
918
919 return createBitmap(env, allocator.getStorageObjAndReset(),
920 getPremulBitmapCreateFlags(true));
921 }
922
923 ///////////////////////////////////////////////////////////////////////////////
924
Bitmap_isSRGB(JNIEnv * env,jobject,jlong bitmapHandle)925 static jboolean Bitmap_isSRGB(JNIEnv* env, jobject, jlong bitmapHandle) {
926 LocalScopedBitmap bitmapHolder(bitmapHandle);
927 if (!bitmapHolder.valid()) return JNI_TRUE;
928
929 SkColorSpace* colorSpace = bitmapHolder->info().colorSpace();
930 return colorSpace == nullptr || colorSpace->isSRGB();
931 }
932
Bitmap_isSRGBLinear(JNIEnv * env,jobject,jlong bitmapHandle)933 static jboolean Bitmap_isSRGBLinear(JNIEnv* env, jobject, jlong bitmapHandle) {
934 LocalScopedBitmap bitmapHolder(bitmapHandle);
935 if (!bitmapHolder.valid()) return JNI_FALSE;
936
937 SkColorSpace* colorSpace = bitmapHolder->info().colorSpace();
938 sk_sp<SkColorSpace> srgbLinear = SkColorSpace::MakeSRGBLinear();
939 return colorSpace == srgbLinear.get() ? JNI_TRUE : JNI_FALSE;
940 }
941
Bitmap_computeColorSpace(JNIEnv * env,jobject,jlong bitmapHandle)942 static jobject Bitmap_computeColorSpace(JNIEnv* env, jobject, jlong bitmapHandle) {
943 LocalScopedBitmap bitmapHolder(bitmapHandle);
944 if (!bitmapHolder.valid()) return nullptr;
945
946 SkColorSpace* colorSpace = bitmapHolder->info().colorSpace();
947 if (colorSpace == nullptr) return nullptr;
948
949 return GraphicsJNI::getColorSpace(env, colorSpace, bitmapHolder->info().colorType());
950 }
951
Bitmap_setColorSpace(JNIEnv * env,jobject,jlong bitmapHandle,jlong colorSpacePtr)952 static void Bitmap_setColorSpace(JNIEnv* env, jobject, jlong bitmapHandle, jlong colorSpacePtr) {
953 LocalScopedBitmap bitmapHolder(bitmapHandle);
954 sk_sp<SkColorSpace> cs = GraphicsJNI::getNativeColorSpace(colorSpacePtr);
955 bitmapHolder->setColorSpace(cs);
956 }
957
958 ///////////////////////////////////////////////////////////////////////////////
959
Bitmap_getPixel(JNIEnv * env,jobject,jlong bitmapHandle,jint x,jint y)960 static jint Bitmap_getPixel(JNIEnv* env, jobject, jlong bitmapHandle,
961 jint x, jint y) {
962 SkBitmap bitmap;
963 reinterpret_cast<BitmapWrapper*>(bitmapHandle)->getSkBitmap(&bitmap);
964
965 auto sRGB = SkColorSpace::MakeSRGB();
966 SkImageInfo dstInfo = SkImageInfo::Make(
967 1, 1, kBGRA_8888_SkColorType, kUnpremul_SkAlphaType, sRGB);
968
969 SkColor dst;
970 bitmap.readPixels(dstInfo, &dst, dstInfo.minRowBytes(), x, y);
971 return static_cast<jint>(dst);
972 }
973
Bitmap_getColor(JNIEnv * env,jobject,jlong bitmapHandle,jint x,jint y)974 static jlong Bitmap_getColor(JNIEnv* env, jobject, jlong bitmapHandle,
975 jint x, jint y) {
976 SkBitmap bitmap;
977 reinterpret_cast<BitmapWrapper*>(bitmapHandle)->getSkBitmap(&bitmap);
978
979 SkImageInfo dstInfo = SkImageInfo::Make(
980 1, 1, kRGBA_F16_SkColorType, kUnpremul_SkAlphaType, bitmap.refColorSpace());
981
982 uint64_t dst;
983 bitmap.readPixels(dstInfo, &dst, dstInfo.minRowBytes(), x, y);
984 return static_cast<jlong>(dst);
985 }
986
Bitmap_getPixels(JNIEnv * env,jobject,jlong bitmapHandle,jintArray pixelArray,jint offset,jint stride,jint x,jint y,jint width,jint height)987 static void Bitmap_getPixels(JNIEnv* env, jobject, jlong bitmapHandle,
988 jintArray pixelArray, jint offset, jint stride,
989 jint x, jint y, jint width, jint height) {
990 SkBitmap bitmap;
991 reinterpret_cast<BitmapWrapper*>(bitmapHandle)->getSkBitmap(&bitmap);
992
993 auto sRGB = SkColorSpace::MakeSRGB();
994 SkImageInfo dstInfo = SkImageInfo::Make(
995 width, height, kBGRA_8888_SkColorType, kUnpremul_SkAlphaType, sRGB);
996
997 jint* dst = env->GetIntArrayElements(pixelArray, NULL);
998 bitmap.readPixels(dstInfo, dst + offset, stride * 4, x, y);
999 env->ReleaseIntArrayElements(pixelArray, dst, 0);
1000 }
1001
1002 ///////////////////////////////////////////////////////////////////////////////
1003
Bitmap_setPixel(JNIEnv * env,jobject,jlong bitmapHandle,jint x,jint y,jint colorHandle)1004 static void Bitmap_setPixel(JNIEnv* env, jobject, jlong bitmapHandle,
1005 jint x, jint y, jint colorHandle) {
1006 SkBitmap bitmap;
1007 reinterpret_cast<BitmapWrapper*>(bitmapHandle)->getSkBitmap(&bitmap);
1008 SkColor color = static_cast<SkColor>(colorHandle);
1009
1010 auto sRGB = SkColorSpace::MakeSRGB();
1011 SkImageInfo srcInfo = SkImageInfo::Make(
1012 1, 1, kBGRA_8888_SkColorType, kUnpremul_SkAlphaType, sRGB);
1013 SkPixmap srcPM(srcInfo, &color, srcInfo.minRowBytes());
1014
1015 bitmap.writePixels(srcPM, x, y);
1016 }
1017
Bitmap_setPixels(JNIEnv * env,jobject,jlong bitmapHandle,jintArray pixelArray,jint offset,jint stride,jint x,jint y,jint width,jint height)1018 static void Bitmap_setPixels(JNIEnv* env, jobject, jlong bitmapHandle,
1019 jintArray pixelArray, jint offset, jint stride,
1020 jint x, jint y, jint width, jint height) {
1021 SkBitmap bitmap;
1022 reinterpret_cast<BitmapWrapper*>(bitmapHandle)->getSkBitmap(&bitmap);
1023 GraphicsJNI::SetPixels(env, pixelArray, offset, stride,
1024 x, y, width, height, &bitmap);
1025 }
1026
Bitmap_copyPixelsToBuffer(JNIEnv * env,jobject,jlong bitmapHandle,jobject jbuffer)1027 static void Bitmap_copyPixelsToBuffer(JNIEnv* env, jobject,
1028 jlong bitmapHandle, jobject jbuffer) {
1029 SkBitmap bitmap;
1030 reinterpret_cast<BitmapWrapper*>(bitmapHandle)->getSkBitmap(&bitmap);
1031 const void* src = bitmap.getPixels();
1032
1033 if (NULL != src) {
1034 android::AutoBufferPointer abp(env, jbuffer, JNI_TRUE);
1035
1036 // the java side has already checked that buffer is large enough
1037 memcpy(abp.pointer(), src, bitmap.computeByteSize());
1038 }
1039 }
1040
Bitmap_copyPixelsFromBuffer(JNIEnv * env,jobject,jlong bitmapHandle,jobject jbuffer)1041 static void Bitmap_copyPixelsFromBuffer(JNIEnv* env, jobject,
1042 jlong bitmapHandle, jobject jbuffer) {
1043 SkBitmap bitmap;
1044 reinterpret_cast<BitmapWrapper*>(bitmapHandle)->getSkBitmap(&bitmap);
1045 void* dst = bitmap.getPixels();
1046
1047 if (NULL != dst) {
1048 android::AutoBufferPointer abp(env, jbuffer, JNI_FALSE);
1049 // the java side has already checked that buffer is large enough
1050 memcpy(dst, abp.pointer(), bitmap.computeByteSize());
1051 bitmap.notifyPixelsChanged();
1052 }
1053 }
1054
Bitmap_sameAs(JNIEnv * env,jobject,jlong bm0Handle,jlong bm1Handle)1055 static jboolean Bitmap_sameAs(JNIEnv* env, jobject, jlong bm0Handle, jlong bm1Handle) {
1056 SkBitmap bm0;
1057 SkBitmap bm1;
1058
1059 LocalScopedBitmap bitmap0(bm0Handle);
1060 LocalScopedBitmap bitmap1(bm1Handle);
1061
1062 // Paying the price for making Hardware Bitmap as Config:
1063 // later check for colorType will pass successfully,
1064 // because Hardware Config internally may be RGBA8888 or smth like that.
1065 if (bitmap0->isHardware() != bitmap1->isHardware()) {
1066 return JNI_FALSE;
1067 }
1068
1069 bitmap0->bitmap().getSkBitmap(&bm0);
1070 bitmap1->bitmap().getSkBitmap(&bm1);
1071 if (bm0.width() != bm1.width()
1072 || bm0.height() != bm1.height()
1073 || bm0.colorType() != bm1.colorType()
1074 || bm0.alphaType() != bm1.alphaType()
1075 || !SkColorSpace::Equals(bm0.colorSpace(), bm1.colorSpace())) {
1076 return JNI_FALSE;
1077 }
1078
1079 // if we can't load the pixels, return false
1080 if (NULL == bm0.getPixels() || NULL == bm1.getPixels()) {
1081 return JNI_FALSE;
1082 }
1083
1084 // now compare each scanline. We can't do the entire buffer at once,
1085 // since we don't care about the pixel values that might extend beyond
1086 // the width (since the scanline might be larger than the logical width)
1087 const int h = bm0.height();
1088 const size_t size = bm0.width() * bm0.bytesPerPixel();
1089 for (int y = 0; y < h; y++) {
1090 // SkBitmap::getAddr(int, int) may return NULL due to unrecognized config
1091 // (ex: kRLE_Index8_Config). This will cause memcmp method to crash. Since bm0
1092 // and bm1 both have pixel data() (have passed NULL == getPixels() check),
1093 // those 2 bitmaps should be valid (only unrecognized), we return JNI_FALSE
1094 // to warn user those 2 unrecognized config bitmaps may be different.
1095 void *bm0Addr = bm0.getAddr(0, y);
1096 void *bm1Addr = bm1.getAddr(0, y);
1097
1098 if(bm0Addr == NULL || bm1Addr == NULL) {
1099 return JNI_FALSE;
1100 }
1101
1102 if (memcmp(bm0Addr, bm1Addr, size) != 0) {
1103 return JNI_FALSE;
1104 }
1105 }
1106 return JNI_TRUE;
1107 }
1108
Bitmap_prepareToDraw(JNIEnv * env,jobject,jlong bitmapPtr)1109 static void Bitmap_prepareToDraw(JNIEnv* env, jobject, jlong bitmapPtr) {
1110 #ifdef __ANDROID__ // Layoutlib does not support render thread
1111 LocalScopedBitmap bitmapHandle(bitmapPtr);
1112 if (!bitmapHandle.valid()) return;
1113 android::uirenderer::renderthread::RenderProxy::prepareToDraw(bitmapHandle->bitmap());
1114 #endif
1115 }
1116
Bitmap_getAllocationByteCount(JNIEnv * env,jobject,jlong bitmapPtr)1117 static jint Bitmap_getAllocationByteCount(JNIEnv* env, jobject, jlong bitmapPtr) {
1118 LocalScopedBitmap bitmapHandle(bitmapPtr);
1119 return static_cast<jint>(bitmapHandle->getAllocationByteCount());
1120 }
1121
Bitmap_copyPreserveInternalConfig(JNIEnv * env,jobject,jlong bitmapPtr)1122 static jobject Bitmap_copyPreserveInternalConfig(JNIEnv* env, jobject, jlong bitmapPtr) {
1123 LocalScopedBitmap bitmapHandle(bitmapPtr);
1124 LOG_ALWAYS_FATAL_IF(!bitmapHandle->isHardware(),
1125 "Hardware config is only supported config in Bitmap_nativeCopyPreserveInternalConfig");
1126 Bitmap& hwuiBitmap = bitmapHandle->bitmap();
1127 SkBitmap src;
1128 hwuiBitmap.getSkBitmap(&src);
1129
1130 if (src.pixelRef() == nullptr) {
1131 doThrowRE(env, "Could not copy a hardware bitmap.");
1132 return NULL;
1133 }
1134
1135 sk_sp<Bitmap> bitmap = Bitmap::createFrom(src.info(), *src.pixelRef());
1136 return createBitmap(env, bitmap.release(), getPremulBitmapCreateFlags(false));
1137 }
1138
Bitmap_wrapHardwareBufferBitmap(JNIEnv * env,jobject,jobject hardwareBuffer,jlong colorSpacePtr)1139 static jobject Bitmap_wrapHardwareBufferBitmap(JNIEnv* env, jobject, jobject hardwareBuffer,
1140 jlong colorSpacePtr) {
1141 #ifdef __ANDROID__ // Layoutlib does not support graphic buffer
1142 AHardwareBuffer* buffer = uirenderer::HardwareBufferHelpers::AHardwareBuffer_fromHardwareBuffer(
1143 env, hardwareBuffer);
1144 sk_sp<Bitmap> bitmap = Bitmap::createFrom(buffer,
1145 GraphicsJNI::getNativeColorSpace(colorSpacePtr));
1146 if (!bitmap.get()) {
1147 ALOGW("failed to create hardware bitmap from hardware buffer");
1148 return NULL;
1149 }
1150 return bitmap::createBitmap(env, bitmap.release(), getPremulBitmapCreateFlags(false));
1151 #else
1152 return NULL;
1153 #endif
1154 }
1155
Bitmap_getHardwareBuffer(JNIEnv * env,jobject,jlong bitmapPtr)1156 static jobject Bitmap_getHardwareBuffer(JNIEnv* env, jobject, jlong bitmapPtr) {
1157 #ifdef __ANDROID__ // Layoutlib does not support graphic buffer
1158 LocalScopedBitmap bitmapHandle(bitmapPtr);
1159 if (!bitmapHandle->isHardware()) {
1160 jniThrowException(env, "java/lang/IllegalStateException",
1161 "Hardware config is only supported config in Bitmap_getHardwareBuffer");
1162 return nullptr;
1163 }
1164
1165 Bitmap& bitmap = bitmapHandle->bitmap();
1166 return uirenderer::HardwareBufferHelpers::AHardwareBuffer_toHardwareBuffer(
1167 env, bitmap.hardwareBuffer());
1168 #else
1169 return nullptr;
1170 #endif
1171 }
1172
Bitmap_isImmutable(CRITICAL_JNI_PARAMS_COMMA jlong bitmapHandle)1173 static jboolean Bitmap_isImmutable(CRITICAL_JNI_PARAMS_COMMA jlong bitmapHandle) {
1174 LocalScopedBitmap bitmapHolder(bitmapHandle);
1175 if (!bitmapHolder.valid()) return JNI_FALSE;
1176
1177 return bitmapHolder->bitmap().isImmutable() ? JNI_TRUE : JNI_FALSE;
1178 }
1179
Bitmap_isBackedByAshmem(CRITICAL_JNI_PARAMS_COMMA jlong bitmapHandle)1180 static jboolean Bitmap_isBackedByAshmem(CRITICAL_JNI_PARAMS_COMMA jlong bitmapHandle) {
1181 LocalScopedBitmap bitmapHolder(bitmapHandle);
1182 if (!bitmapHolder.valid()) return JNI_FALSE;
1183
1184 return bitmapHolder->bitmap().pixelStorageType() == PixelStorageType::Ashmem ? JNI_TRUE
1185 : JNI_FALSE;
1186 }
1187
Bitmap_setImmutable(JNIEnv * env,jobject,jlong bitmapHandle)1188 static void Bitmap_setImmutable(JNIEnv* env, jobject, jlong bitmapHandle) {
1189 LocalScopedBitmap bitmapHolder(bitmapHandle);
1190 if (!bitmapHolder.valid()) return;
1191
1192 return bitmapHolder->bitmap().setImmutable();
1193 }
1194
Bitmap_hasGainmap(CRITICAL_JNI_PARAMS_COMMA jlong bitmapHandle)1195 static jboolean Bitmap_hasGainmap(CRITICAL_JNI_PARAMS_COMMA jlong bitmapHandle) {
1196 LocalScopedBitmap bitmapHolder(bitmapHandle);
1197 if (!bitmapHolder.valid()) return false;
1198
1199 return bitmapHolder->bitmap().hasGainmap();
1200 }
1201
Bitmap_extractGainmap(JNIEnv * env,jobject,jlong bitmapHandle)1202 static jobject Bitmap_extractGainmap(JNIEnv* env, jobject, jlong bitmapHandle) {
1203 LocalScopedBitmap bitmapHolder(bitmapHandle);
1204 if (!bitmapHolder.valid()) return nullptr;
1205 if (!bitmapHolder->bitmap().hasGainmap()) return nullptr;
1206
1207 return Gainmap_extractFromBitmap(env, bitmapHolder->bitmap());
1208 }
1209
Bitmap_setGainmap(JNIEnv *,jobject,jlong bitmapHandle,jlong gainmapPtr)1210 static void Bitmap_setGainmap(JNIEnv*, jobject, jlong bitmapHandle, jlong gainmapPtr) {
1211 LocalScopedBitmap bitmapHolder(bitmapHandle);
1212 if (!bitmapHolder.valid()) return;
1213 uirenderer::Gainmap* gainmap = reinterpret_cast<uirenderer::Gainmap*>(gainmapPtr);
1214 bitmapHolder->bitmap().setGainmap(sp<uirenderer::Gainmap>::fromExisting(gainmap));
1215 }
1216
1217 ///////////////////////////////////////////////////////////////////////////////
1218
1219 static const JNINativeMethod gBitmapMethods[] = {
1220 {"nativeCreate", "([IIIIIIZJ)Landroid/graphics/Bitmap;", (void*)Bitmap_creator},
1221 {"nativeCopy", "(JIZ)Landroid/graphics/Bitmap;", (void*)Bitmap_copy},
1222 {"nativeCopyAshmem", "(J)Landroid/graphics/Bitmap;", (void*)Bitmap_copyAshmem},
1223 {"nativeCopyAshmemConfig", "(JI)Landroid/graphics/Bitmap;", (void*)Bitmap_copyAshmemConfig},
1224 {"nativeGetAshmemFD", "(J)I", (void*)Bitmap_getAshmemFd},
1225 {"nativeGetNativeFinalizer", "()J", (void*)Bitmap_getNativeFinalizer},
1226 {"nativeRecycle", "(J)V", (void*)Bitmap_recycle},
1227 {"nativeReconfigure", "(JIIIZ)V", (void*)Bitmap_reconfigure},
1228 {"nativeCompress", "(JIILjava/io/OutputStream;[B)Z", (void*)Bitmap_compress},
1229 {"nativeErase", "(JI)V", (void*)Bitmap_erase},
1230 {"nativeErase", "(JJJ)V", (void*)Bitmap_eraseLong},
1231 {"nativeRowBytes", "(J)I", (void*)Bitmap_rowBytes},
1232 {"nativeConfig", "(J)I", (void*)Bitmap_config},
1233 {"nativeHasAlpha", "(J)Z", (void*)Bitmap_hasAlpha},
1234 {"nativeIsPremultiplied", "(J)Z", (void*)Bitmap_isPremultiplied},
1235 {"nativeSetHasAlpha", "(JZZ)V", (void*)Bitmap_setHasAlpha},
1236 {"nativeSetPremultiplied", "(JZ)V", (void*)Bitmap_setPremultiplied},
1237 {"nativeHasMipMap", "(J)Z", (void*)Bitmap_hasMipMap},
1238 {"nativeSetHasMipMap", "(JZ)V", (void*)Bitmap_setHasMipMap},
1239 {"nativeCreateFromParcel", "(Landroid/os/Parcel;)Landroid/graphics/Bitmap;",
1240 (void*)Bitmap_createFromParcel},
1241 {"nativeWriteToParcel", "(JILandroid/os/Parcel;)Z", (void*)Bitmap_writeToParcel},
1242 {"nativeExtractAlpha", "(JJ[I)Landroid/graphics/Bitmap;", (void*)Bitmap_extractAlpha},
1243 {"nativeGenerationId", "(J)I", (void*)Bitmap_getGenerationId},
1244 {"nativeGetPixel", "(JII)I", (void*)Bitmap_getPixel},
1245 {"nativeGetColor", "(JII)J", (void*)Bitmap_getColor},
1246 {"nativeGetPixels", "(J[IIIIIII)V", (void*)Bitmap_getPixels},
1247 {"nativeSetPixel", "(JIII)V", (void*)Bitmap_setPixel},
1248 {"nativeSetPixels", "(J[IIIIIII)V", (void*)Bitmap_setPixels},
1249 {"nativeCopyPixelsToBuffer", "(JLjava/nio/Buffer;)V", (void*)Bitmap_copyPixelsToBuffer},
1250 {"nativeCopyPixelsFromBuffer", "(JLjava/nio/Buffer;)V", (void*)Bitmap_copyPixelsFromBuffer},
1251 {"nativeSameAs", "(JJ)Z", (void*)Bitmap_sameAs},
1252 {"nativePrepareToDraw", "(J)V", (void*)Bitmap_prepareToDraw},
1253 {"nativeGetAllocationByteCount", "(J)I", (void*)Bitmap_getAllocationByteCount},
1254 {"nativeCopyPreserveInternalConfig", "(J)Landroid/graphics/Bitmap;",
1255 (void*)Bitmap_copyPreserveInternalConfig},
1256 {"nativeWrapHardwareBufferBitmap",
1257 "(Landroid/hardware/HardwareBuffer;J)Landroid/graphics/Bitmap;",
1258 (void*)Bitmap_wrapHardwareBufferBitmap},
1259 {"nativeGetHardwareBuffer", "(J)Landroid/hardware/HardwareBuffer;",
1260 (void*)Bitmap_getHardwareBuffer},
1261 {"nativeComputeColorSpace", "(J)Landroid/graphics/ColorSpace;",
1262 (void*)Bitmap_computeColorSpace},
1263 {"nativeSetColorSpace", "(JJ)V", (void*)Bitmap_setColorSpace},
1264 {"nativeIsSRGB", "(J)Z", (void*)Bitmap_isSRGB},
1265 {"nativeIsSRGBLinear", "(J)Z", (void*)Bitmap_isSRGBLinear},
1266 {"nativeSetImmutable", "(J)V", (void*)Bitmap_setImmutable},
1267 {"nativeExtractGainmap", "(J)Landroid/graphics/Gainmap;", (void*)Bitmap_extractGainmap},
1268 {"nativeSetGainmap", "(JJ)V", (void*)Bitmap_setGainmap},
1269
1270 // ------------ @CriticalNative ----------------
1271 {"nativeIsImmutable", "(J)Z", (void*)Bitmap_isImmutable},
1272 {"nativeIsBackedByAshmem", "(J)Z", (void*)Bitmap_isBackedByAshmem},
1273 {"nativeHasGainmap", "(J)Z", (void*)Bitmap_hasGainmap},
1274
1275 };
1276
register_android_graphics_Bitmap(JNIEnv * env)1277 int register_android_graphics_Bitmap(JNIEnv* env)
1278 {
1279 gBitmap_class = MakeGlobalRefOrDie(env, FindClassOrDie(env, "android/graphics/Bitmap"));
1280 gBitmap_nativePtr = GetFieldIDOrDie(env, gBitmap_class, "mNativePtr", "J");
1281 gBitmap_constructorMethodID = GetMethodIDOrDie(env, gBitmap_class, "<init>", "(JIIIZ[BLandroid/graphics/NinePatch$InsetStruct;Z)V");
1282 gBitmap_reinitMethodID = GetMethodIDOrDie(env, gBitmap_class, "reinit", "(IIZ)V");
1283 uirenderer::HardwareBufferHelpers::init();
1284 return android::RegisterMethodsOrDie(env, "android/graphics/Bitmap", gBitmapMethods,
1285 NELEM(gBitmapMethods));
1286 }
1287