blob: 4c4a39d984853e085c0d6b421d35390ed4b3c755 [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001#define LOG_TAG "BitmapFactory"
2
Joseph Wenf1f48bc2010-07-19 16:59:51 +08003#include "BitmapFactory.h"
Leon Scrogginsa06d86a2011-03-02 16:56:54 -05004#include "NinePatchPeeker.h"
Leon Scroggins III7315f1b2013-09-10 20:26:05 -04005#include "SkFrontBufferedStream.h"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006#include "SkImageDecoder.h"
Leon Scroggins46cb9bd2014-03-06 15:36:39 -05007#include "SkMath.h"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008#include "SkPixelRef.h"
9#include "SkStream.h"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010#include "SkTemplates.h"
11#include "SkUtils.h"
12#include "CreateJavaOutputStreamAdaptor.h"
Joseph Wenf1f48bc2010-07-19 16:59:51 +080013#include "AutoDecodeCancel.h"
Wei-Ta Chen6b849e22010-09-07 17:32:18 +080014#include "Utils.h"
Elliott Hughesa3804cf2011-04-11 16:50:19 -070015#include "JNIHelp.h"
Chris Craik1abf5d62013-08-16 12:47:03 -070016#include "GraphicsJNI.h"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080017
Andreas Gampeed6b9df2014-11-20 22:02:20 -080018#include "core_jni_helpers.h"
Mathias Agopianb13b9bd2012-02-17 18:27:36 -080019#include <androidfw/Asset.h>
20#include <androidfw/ResourceTypes.h>
Chris Craikbd8db2e82014-08-20 16:31:57 -070021#include <cutils/compiler.h>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080022#include <netinet/in.h>
Leon Scroggins III0102f8a2014-01-14 15:14:57 -050023#include <stdio.h>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080024#include <sys/mman.h>
Joseph Wen2dcfbef2010-09-10 10:15:09 +080025#include <sys/stat.h>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080026
Joseph Wenf1f48bc2010-07-19 16:59:51 +080027jfieldID gOptions_justBoundsFieldID;
28jfieldID gOptions_sampleSizeFieldID;
29jfieldID gOptions_configFieldID;
Chris Craik1abf5d62013-08-16 12:47:03 -070030jfieldID gOptions_premultipliedFieldID;
Romain Guy23610982011-01-17 12:51:55 -080031jfieldID gOptions_mutableFieldID;
Joseph Wenf1f48bc2010-07-19 16:59:51 +080032jfieldID gOptions_ditherFieldID;
Wei-Ta Chen953f9092010-12-03 14:06:18 -080033jfieldID gOptions_preferQualityOverSpeedFieldID;
Chris Craik905e8242013-06-05 09:59:05 -070034jfieldID gOptions_scaledFieldID;
35jfieldID gOptions_densityFieldID;
36jfieldID gOptions_screenDensityFieldID;
37jfieldID gOptions_targetDensityFieldID;
Joseph Wenf1f48bc2010-07-19 16:59:51 +080038jfieldID gOptions_widthFieldID;
39jfieldID gOptions_heightFieldID;
40jfieldID gOptions_mimeFieldID;
41jfieldID gOptions_mCancelID;
Chet Haase37f74ca2010-12-08 17:56:36 -080042jfieldID gOptions_bitmapFieldID;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080043
Chris Craik47cd8e92014-07-08 17:13:08 -070044jfieldID gBitmap_ninePatchInsetsFieldID;
45
46jclass gInsetStruct_class;
47jmethodID gInsetStruct_constructorMethodID;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080048
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080049using namespace android;
50
Joseph Wenf1f48bc2010-07-19 16:59:51 +080051jstring getMimeTypeString(JNIEnv* env, SkImageDecoder::Format format) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080052 static const struct {
53 SkImageDecoder::Format fFormat;
54 const char* fMimeType;
55 } gMimeTypes[] = {
56 { SkImageDecoder::kBMP_Format, "image/bmp" },
57 { SkImageDecoder::kGIF_Format, "image/gif" },
58 { SkImageDecoder::kICO_Format, "image/x-ico" },
59 { SkImageDecoder::kJPEG_Format, "image/jpeg" },
60 { SkImageDecoder::kPNG_Format, "image/png" },
Chris Craik95587f92013-07-12 19:46:19 -070061 { SkImageDecoder::kWEBP_Format, "image/webp" },
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080062 { SkImageDecoder::kWBMP_Format, "image/vnd.wap.wbmp" }
63 };
Elliott Hughesa3804cf2011-04-11 16:50:19 -070064
Vladimir Marko7ab249a2015-01-06 18:17:52 +000065 const char* cstr = nullptr;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080066 for (size_t i = 0; i < SK_ARRAY_COUNT(gMimeTypes); i++) {
67 if (gMimeTypes[i].fFormat == format) {
68 cstr = gMimeTypes[i].fMimeType;
69 break;
70 }
71 }
72
Vladimir Marko7ab249a2015-01-06 18:17:52 +000073 jstring jstr = nullptr;
74 if (cstr != nullptr) {
75 // NOTE: Caller should env->ExceptionCheck() for OOM
76 // (can't check for nullptr as it's a valid return value)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080077 jstr = env->NewStringUTF(cstr);
78 }
79 return jstr;
80}
81
Bryan Mawhinney2a3d7542010-11-03 17:23:57 +000082static bool optionsJustBounds(JNIEnv* env, jobject options) {
Romain Guycaf813f2012-03-15 18:57:48 -070083 return options != NULL && env->GetBooleanField(options, gOptions_justBoundsFieldID);
Bryan Mawhinney2a3d7542010-11-03 17:23:57 +000084}
85
Chris Craikbd8db2e82014-08-20 16:31:57 -070086static void scaleDivRange(int32_t* divs, int count, float scale, int maxValue) {
87 for (int i = 0; i < count; i++) {
88 divs[i] = int32_t(divs[i] * scale + 0.5f);
89 if (i > 0 && divs[i] == divs[i - 1]) {
90 divs[i]++; // avoid collisions
91 }
92 }
93
94 if (CC_UNLIKELY(divs[count - 1] > maxValue)) {
95 // if the collision avoidance above put some divs outside the bounds of the bitmap,
96 // slide outer stretchable divs inward to stay within bounds
97 int highestAvailable = maxValue;
98 for (int i = count - 1; i >= 0; i--) {
99 divs[i] = highestAvailable;
100 if (i > 0 && divs[i] <= divs[i-1]){
101 // keep shifting
102 highestAvailable = divs[i] - 1;
103 } else {
104 break;
105 }
106 }
107 }
108}
109
110static void scaleNinePatchChunk(android::Res_png_9patch* chunk, float scale,
111 int scaledWidth, int scaledHeight) {
Romain Guy7b2f8b82012-03-19 17:18:54 -0700112 chunk->paddingLeft = int(chunk->paddingLeft * scale + 0.5f);
113 chunk->paddingTop = int(chunk->paddingTop * scale + 0.5f);
114 chunk->paddingRight = int(chunk->paddingRight * scale + 0.5f);
115 chunk->paddingBottom = int(chunk->paddingBottom * scale + 0.5f);
116
Chris Craikbd8db2e82014-08-20 16:31:57 -0700117 scaleDivRange(chunk->getXDivs(), chunk->numXDivs, scale, scaledWidth);
118 scaleDivRange(chunk->getYDivs(), chunk->numYDivs, scale, scaledHeight);
Romain Guy7b2f8b82012-03-19 17:18:54 -0700119}
120
Leon Scroggins46cb9bd2014-03-06 15:36:39 -0500121static SkColorType colorTypeForScaledOutput(SkColorType colorType) {
122 switch (colorType) {
123 case kUnknown_SkColorType:
124 case kIndex_8_SkColorType:
Mike Reed4a9c3892014-07-07 15:44:40 -0400125 return kN32_SkColorType;
Chris Craik905e8242013-06-05 09:59:05 -0700126 default:
127 break;
128 }
Leon Scroggins46cb9bd2014-03-06 15:36:39 -0500129 return colorType;
Chris Craik905e8242013-06-05 09:59:05 -0700130}
131
132class ScaleCheckingAllocator : public SkBitmap::HeapAllocator {
133public:
134 ScaleCheckingAllocator(float scale, int size)
135 : mScale(scale), mSize(size) {
136 }
137
138 virtual bool allocPixelRef(SkBitmap* bitmap, SkColorTable* ctable) {
139 // accounts for scale in final allocation, using eventual size and config
Leon Scroggins46cb9bd2014-03-06 15:36:39 -0500140 const int bytesPerPixel = SkColorTypeBytesPerPixel(
141 colorTypeForScaledOutput(bitmap->colorType()));
Chris Craik905e8242013-06-05 09:59:05 -0700142 const int requestedSize = bytesPerPixel *
143 int(bitmap->width() * mScale + 0.5f) *
144 int(bitmap->height() * mScale + 0.5f);
145 if (requestedSize > mSize) {
146 ALOGW("bitmap for alloc reuse (%d bytes) can't fit scaled bitmap (%d bytes)",
147 mSize, requestedSize);
148 return false;
149 }
150 return SkBitmap::HeapAllocator::allocPixelRef(bitmap, ctable);
151 }
152private:
153 const float mScale;
154 const int mSize;
155};
156
Chris Craik7e8c03c2013-06-03 13:53:36 -0700157class RecyclingPixelAllocator : public SkBitmap::Allocator {
158public:
159 RecyclingPixelAllocator(SkPixelRef* pixelRef, unsigned int size)
Chris Craik905e8242013-06-05 09:59:05 -0700160 : mPixelRef(pixelRef), mSize(size) {
Chris Craik7e8c03c2013-06-03 13:53:36 -0700161 SkSafeRef(mPixelRef);
162 }
163
164 ~RecyclingPixelAllocator() {
165 SkSafeUnref(mPixelRef);
166 }
167
168 virtual bool allocPixelRef(SkBitmap* bitmap, SkColorTable* ctable) {
Leon Scroggins46cb9bd2014-03-06 15:36:39 -0500169 const SkImageInfo& info = bitmap->info();
170 if (info.fColorType == kUnknown_SkColorType) {
171 ALOGW("unable to reuse a bitmap as the target has an unknown bitmap configuration");
Chris Craik7e8c03c2013-06-03 13:53:36 -0700172 return false;
173 }
Chris Craikcd0ba712013-09-06 14:40:30 -0700174
Leon Scroggins46cb9bd2014-03-06 15:36:39 -0500175 const int64_t size64 = info.getSafeSize64(bitmap->rowBytes());
176 if (!sk_64_isS32(size64)) {
177 ALOGW("bitmap is too large");
178 return false;
179 }
180
181 const size_t size = sk_64_asS32(size64);
182 if (size > mSize) {
Dan Albert46d84442014-11-18 16:07:51 -0800183 ALOGW("bitmap marked for reuse (%u bytes) can't fit new bitmap "
184 "(%zu bytes)", mSize, size);
Derek Sollenbergerb644a3b2014-01-17 15:45:10 -0500185 return false;
186 }
187
Chris Craikcd0ba712013-09-06 14:40:30 -0700188 // Create a new pixelref with the new ctable that wraps the previous pixelref
Derek Sollenbergerb644a3b2014-01-17 15:45:10 -0500189 SkPixelRef* pr = new AndroidPixelRef(*static_cast<AndroidPixelRef*>(mPixelRef),
Leon Scroggins46cb9bd2014-03-06 15:36:39 -0500190 info, bitmap->rowBytes(), ctable);
Chris Craikcd0ba712013-09-06 14:40:30 -0700191
192 bitmap->setPixelRef(pr)->unref();
193 // since we're already allocated, we lockPixels right away
194 // HeapAllocator/JavaPixelAllocator behaves this way too
Chris Craik7e8c03c2013-06-03 13:53:36 -0700195 bitmap->lockPixels();
196 return true;
197 }
198
199private:
200 SkPixelRef* const mPixelRef;
201 const unsigned int mSize;
202};
203
Chris Craik47cd8e92014-07-08 17:13:08 -0700204static jobject doDecode(JNIEnv* env, SkStreamRewindable* stream, jobject padding, jobject options) {
Romain Guy7b2f8b82012-03-19 17:18:54 -0700205
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800206 int sampleSize = 1;
Romain Guy7b2f8b82012-03-19 17:18:54 -0700207
Leon Scroggins III0aa39dc2014-06-03 12:19:32 -0400208 SkImageDecoder::Mode decodeMode = SkImageDecoder::kDecodePixels_Mode;
Mike Reed42a1d082014-07-07 18:06:18 -0400209 SkColorType prefColorType = kN32_SkColorType;
Romain Guy7b2f8b82012-03-19 17:18:54 -0700210
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800211 bool doDither = true;
Romain Guy23610982011-01-17 12:51:55 -0800212 bool isMutable = false;
Chris Craik905e8242013-06-05 09:59:05 -0700213 float scale = 1.0f;
Wei-Ta Chen953f9092010-12-03 14:06:18 -0800214 bool preferQualityOverSpeed = false;
Chris Craik1abf5d62013-08-16 12:47:03 -0700215 bool requireUnpremultiplied = false;
Romain Guy7b2f8b82012-03-19 17:18:54 -0700216
Chet Haase37f74ca2010-12-08 17:56:36 -0800217 jobject javaBitmap = NULL;
Elliott Hughesa3804cf2011-04-11 16:50:19 -0700218
Romain Guy7b2f8b82012-03-19 17:18:54 -0700219 if (options != NULL) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800220 sampleSize = env->GetIntField(options, gOptions_sampleSizeFieldID);
Bryan Mawhinney2a3d7542010-11-03 17:23:57 +0000221 if (optionsJustBounds(env, options)) {
Leon Scroggins III0aa39dc2014-06-03 12:19:32 -0400222 decodeMode = SkImageDecoder::kDecodeBounds_Mode;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800223 }
Romain Guy7b2f8b82012-03-19 17:18:54 -0700224
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800225 // initialize these, in case we fail later on
226 env->SetIntField(options, gOptions_widthFieldID, -1);
227 env->SetIntField(options, gOptions_heightFieldID, -1);
228 env->SetObjectField(options, gOptions_mimeFieldID, 0);
Elliott Hughesa3804cf2011-04-11 16:50:19 -0700229
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800230 jobject jconfig = env->GetObjectField(options, gOptions_configFieldID);
Mike Reed42a1d082014-07-07 18:06:18 -0400231 prefColorType = GraphicsJNI::getNativeBitmapColorType(env, jconfig);
Romain Guy23610982011-01-17 12:51:55 -0800232 isMutable = env->GetBooleanField(options, gOptions_mutableFieldID);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800233 doDither = env->GetBooleanField(options, gOptions_ditherFieldID);
Wei-Ta Chen953f9092010-12-03 14:06:18 -0800234 preferQualityOverSpeed = env->GetBooleanField(options,
235 gOptions_preferQualityOverSpeedFieldID);
Chris Craik1abf5d62013-08-16 12:47:03 -0700236 requireUnpremultiplied = !env->GetBooleanField(options, gOptions_premultipliedFieldID);
Chet Haase37f74ca2010-12-08 17:56:36 -0800237 javaBitmap = env->GetObjectField(options, gOptions_bitmapFieldID);
Chris Craik905e8242013-06-05 09:59:05 -0700238
239 if (env->GetBooleanField(options, gOptions_scaledFieldID)) {
240 const int density = env->GetIntField(options, gOptions_densityFieldID);
241 const int targetDensity = env->GetIntField(options, gOptions_targetDensityFieldID);
242 const int screenDensity = env->GetIntField(options, gOptions_screenDensityFieldID);
243 if (density != 0 && targetDensity != 0 && density != screenDensity) {
244 scale = (float) targetDensity / density;
245 }
246 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800247 }
248
Chris Craik905e8242013-06-05 09:59:05 -0700249 const bool willScale = scale != 1.0f;
Romain Guy7b2f8b82012-03-19 17:18:54 -0700250
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800251 SkImageDecoder* decoder = SkImageDecoder::Factory(stream);
Romain Guy7b2f8b82012-03-19 17:18:54 -0700252 if (decoder == NULL) {
Mike Reedc70e06b2009-04-24 11:09:12 -0400253 return nullObjectReturn("SkImageDecoder::Factory returned null");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800254 }
Elliott Hughesa3804cf2011-04-11 16:50:19 -0700255
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800256 decoder->setSampleSize(sampleSize);
257 decoder->setDitherImage(doDither);
Wei-Ta Chen953f9092010-12-03 14:06:18 -0800258 decoder->setPreferQualityOverSpeed(preferQualityOverSpeed);
Chris Craik1abf5d62013-08-16 12:47:03 -0700259 decoder->setRequireUnpremultipliedColors(requireUnpremultiplied);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800260
Chris Craik7e8c03c2013-06-03 13:53:36 -0700261 SkBitmap* outputBitmap = NULL;
Chris Craik9f583612013-05-20 18:13:47 -0700262 unsigned int existingBufferSize = 0;
Chris Craik7e8c03c2013-06-03 13:53:36 -0700263 if (javaBitmap != NULL) {
John Reckedc22fb2015-04-20 22:06:31 +0000264 outputBitmap = GraphicsJNI::getSkBitmap(env, javaBitmap);
Chris Craik7e8c03c2013-06-03 13:53:36 -0700265 if (outputBitmap->isImmutable()) {
Derek Sollenberger2a6ecae2012-08-31 14:03:51 -0400266 ALOGW("Unable to reuse an immutable bitmap as an image decoder target.");
Chris Craik7e8c03c2013-06-03 13:53:36 -0700267 javaBitmap = NULL;
268 outputBitmap = NULL;
269 } else {
270 existingBufferSize = GraphicsJNI::getBitmapAllocationByteCount(env, javaBitmap);
Derek Sollenberger2a6ecae2012-08-31 14:03:51 -0400271 }
Chet Haase37f74ca2010-12-08 17:56:36 -0800272 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800273
Chris Craik7e8c03c2013-06-03 13:53:36 -0700274 SkAutoTDelete<SkBitmap> adb(outputBitmap == NULL ? new SkBitmap : NULL);
275 if (outputBitmap == NULL) outputBitmap = adb.get();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800276
Chris Craik7e8c03c2013-06-03 13:53:36 -0700277 NinePatchPeeker peeker(decoder);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800278 decoder->setPeeker(&peeker);
Mike Reedc70e06b2009-04-24 11:09:12 -0400279
Chris Craik905e8242013-06-05 09:59:05 -0700280 JavaPixelAllocator javaAllocator(env);
281 RecyclingPixelAllocator recyclingAllocator(outputBitmap->pixelRef(), existingBufferSize);
282 ScaleCheckingAllocator scaleCheckingAllocator(scale, existingBufferSize);
283 SkBitmap::Allocator* outputAllocator = (javaBitmap != NULL) ?
284 (SkBitmap::Allocator*)&recyclingAllocator : (SkBitmap::Allocator*)&javaAllocator;
285 if (decodeMode != SkImageDecoder::kDecodeBounds_Mode) {
286 if (!willScale) {
Leon Scroggins III1ffe7272013-09-19 11:34:06 -0400287 // If the java allocator is being used to allocate the pixel memory, the decoder
288 // need not write zeroes, since the memory is initialized to 0.
289 decoder->setSkipWritingZeroes(outputAllocator == &javaAllocator);
Chris Craik905e8242013-06-05 09:59:05 -0700290 decoder->setAllocator(outputAllocator);
291 } else if (javaBitmap != NULL) {
292 // check for eventual scaled bounds at allocation time, so we don't decode the bitmap
293 // only to find the scaled result too large to fit in the allocation
294 decoder->setAllocator(&scaleCheckingAllocator);
295 }
296 }
297
Derek Sollenberger6b0437c2013-06-24 15:40:54 -0400298 // Only setup the decoder to be deleted after its stack-based, refcounted
299 // components (allocators, peekers, etc) are declared. This prevents RefCnt
300 // asserts from firing due to the order objects are deleted from the stack.
301 SkAutoTDelete<SkImageDecoder> add(decoder);
302
303 AutoDecoderCancel adc(options, decoder);
304
305 // To fix the race condition in case "requestCancelDecode"
306 // happens earlier than AutoDecoderCancel object is added
307 // to the gAutoDecoderCancelMutex linked list.
308 if (options != NULL && env->GetBooleanField(options, gOptions_mCancelID)) {
309 return nullObjectReturn("gOptions_mCancelID");
310 }
311
Chris Craik7e8c03c2013-06-03 13:53:36 -0700312 SkBitmap decodingBitmap;
Leon Scroggins III14494262014-10-17 15:23:37 -0400313 if (decoder->decode(stream, &decodingBitmap, prefColorType, decodeMode)
314 != SkImageDecoder::kSuccess) {
Mike Reedc70e06b2009-04-24 11:09:12 -0400315 return nullObjectReturn("decoder->decode returned false");
316 }
317
Chris Craik7e8c03c2013-06-03 13:53:36 -0700318 int scaledWidth = decodingBitmap.width();
319 int scaledHeight = decodingBitmap.height();
Romain Guy7b2f8b82012-03-19 17:18:54 -0700320
Leon Scroggins III0aa39dc2014-06-03 12:19:32 -0400321 if (willScale && decodeMode != SkImageDecoder::kDecodeBounds_Mode) {
Romain Guy7b2f8b82012-03-19 17:18:54 -0700322 scaledWidth = int(scaledWidth * scale + 0.5f);
323 scaledHeight = int(scaledHeight * scale + 0.5f);
324 }
325
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800326 // update options (if any)
Romain Guy7b2f8b82012-03-19 17:18:54 -0700327 if (options != NULL) {
Vladimir Marko7ab249a2015-01-06 18:17:52 +0000328 jstring mimeType = getMimeTypeString(env, decoder->getFormat());
329 if (env->ExceptionCheck()) {
330 return nullObjectReturn("OOM in getMimeTypeString()");
331 }
Romain Guy7b2f8b82012-03-19 17:18:54 -0700332 env->SetIntField(options, gOptions_widthFieldID, scaledWidth);
333 env->SetIntField(options, gOptions_heightFieldID, scaledHeight);
Vladimir Marko7ab249a2015-01-06 18:17:52 +0000334 env->SetObjectField(options, gOptions_mimeFieldID, mimeType);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800335 }
Mike Reedc70e06b2009-04-24 11:09:12 -0400336
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800337 // if we're in justBounds mode, return now (skip the java bitmap)
Leon Scroggins III0aa39dc2014-06-03 12:19:32 -0400338 if (decodeMode == SkImageDecoder::kDecodeBounds_Mode) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800339 return NULL;
340 }
341
342 jbyteArray ninePatchChunk = NULL;
Chris Craik47cd8e92014-07-08 17:13:08 -0700343 if (peeker.mPatch != NULL) {
Romain Guy7b2f8b82012-03-19 17:18:54 -0700344 if (willScale) {
Chris Craikbd8db2e82014-08-20 16:31:57 -0700345 scaleNinePatchChunk(peeker.mPatch, scale, scaledWidth, scaledHeight);
Romain Guy7b2f8b82012-03-19 17:18:54 -0700346 }
347
Chris Craik47cd8e92014-07-08 17:13:08 -0700348 size_t ninePatchArraySize = peeker.mPatch->serializedSize();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800349 ninePatchChunk = env->NewByteArray(ninePatchArraySize);
Romain Guy7b2f8b82012-03-19 17:18:54 -0700350 if (ninePatchChunk == NULL) {
Mike Reedc70e06b2009-04-24 11:09:12 -0400351 return nullObjectReturn("ninePatchChunk == null");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800352 }
Romain Guy7b2f8b82012-03-19 17:18:54 -0700353
354 jbyte* array = (jbyte*) env->GetPrimitiveArrayCritical(ninePatchChunk, NULL);
355 if (array == NULL) {
Mike Reedc70e06b2009-04-24 11:09:12 -0400356 return nullObjectReturn("primitive array == null");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800357 }
Romain Guy7b2f8b82012-03-19 17:18:54 -0700358
Chris Craik47cd8e92014-07-08 17:13:08 -0700359 memcpy(array, peeker.mPatch, peeker.mPatchSize);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800360 env->ReleasePrimitiveArrayCritical(ninePatchChunk, array, 0);
361 }
362
Chris Craik47cd8e92014-07-08 17:13:08 -0700363 jobject ninePatchInsets = NULL;
364 if (peeker.mHasInsets) {
365 ninePatchInsets = env->NewObject(gInsetStruct_class, gInsetStruct_constructorMethodID,
366 peeker.mOpticalInsets[0], peeker.mOpticalInsets[1], peeker.mOpticalInsets[2], peeker.mOpticalInsets[3],
367 peeker.mOutlineInsets[0], peeker.mOutlineInsets[1], peeker.mOutlineInsets[2], peeker.mOutlineInsets[3],
Chris Craik77b5cad2014-07-30 18:23:07 -0700368 peeker.mOutlineRadius, peeker.mOutlineAlpha, scale);
Mathieu Chartiera08d10f2014-08-29 16:55:55 -0700369 if (ninePatchInsets == NULL) {
370 return nullObjectReturn("nine patch insets == null");
371 }
Amith Yamasaniec4a5042012-04-04 10:27:15 -0700372 if (javaBitmap != NULL) {
Chris Craik47cd8e92014-07-08 17:13:08 -0700373 env->SetObjectField(javaBitmap, gBitmap_ninePatchInsetsFieldID, ninePatchInsets);
Amith Yamasaniec4a5042012-04-04 10:27:15 -0700374 }
375 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800376
Romain Guy7b2f8b82012-03-19 17:18:54 -0700377 if (willScale) {
378 // This is weird so let me explain: we could use the scale parameter
379 // directly, but for historical reasons this is how the corresponding
380 // Dalvik code has always behaved. We simply recreate the behavior here.
381 // The result is slightly different from simply using scale because of
382 // the 0.5f rounding bias applied when computing the target image size
Chris Craik7e8c03c2013-06-03 13:53:36 -0700383 const float sx = scaledWidth / float(decodingBitmap.width());
384 const float sy = scaledHeight / float(decodingBitmap.height());
Romain Guy7b2f8b82012-03-19 17:18:54 -0700385
Chris Craik905e8242013-06-05 09:59:05 -0700386 // TODO: avoid copying when scaled size equals decodingBitmap size
Leon Scroggins46cb9bd2014-03-06 15:36:39 -0500387 SkColorType colorType = colorTypeForScaledOutput(decodingBitmap.colorType());
Leon Scroggins III8790be62013-12-03 16:26:51 -0500388 // FIXME: If the alphaType is kUnpremul and the image has alpha, the
389 // colors may not be correct, since Skia does not yet support drawing
390 // to/from unpremultiplied bitmaps.
Mike Reedb9330552014-06-16 17:31:48 -0400391 outputBitmap->setInfo(SkImageInfo::Make(scaledWidth, scaledHeight,
Leon Scroggins46cb9bd2014-03-06 15:36:39 -0500392 colorType, decodingBitmap.alphaType()));
Mike Reedf2883b322014-12-18 11:45:35 -0500393 if (!outputBitmap->tryAllocPixels(outputAllocator, NULL)) {
Raph Levien005bfc62012-09-20 22:51:47 -0700394 return nullObjectReturn("allocation failed for scaled bitmap");
395 }
Leon Scroggins III1ffe7272013-09-19 11:34:06 -0400396
397 // If outputBitmap's pixels are newly allocated by Java, there is no need
398 // to erase to 0, since the pixels were initialized to 0.
399 if (outputAllocator != &javaAllocator) {
400 outputBitmap->eraseColor(0);
401 }
Romain Guy7b2f8b82012-03-19 17:18:54 -0700402
403 SkPaint paint;
Mike Reed2a1ce8a2015-03-16 11:16:09 -0400404 paint.setFilterQuality(kLow_SkFilterQuality);
Romain Guy7b2f8b82012-03-19 17:18:54 -0700405
Chris Craik7e8c03c2013-06-03 13:53:36 -0700406 SkCanvas canvas(*outputBitmap);
Romain Guy7b2f8b82012-03-19 17:18:54 -0700407 canvas.scale(sx, sy);
Chris Craik7e8c03c2013-06-03 13:53:36 -0700408 canvas.drawBitmap(decodingBitmap, 0.0f, 0.0f, &paint);
409 } else {
410 outputBitmap->swap(decodingBitmap);
Romain Guy7b2f8b82012-03-19 17:18:54 -0700411 }
412
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800413 if (padding) {
Chris Craik47cd8e92014-07-08 17:13:08 -0700414 if (peeker.mPatch != NULL) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800415 GraphicsJNI::set_jrect(env, padding,
Chris Craik47cd8e92014-07-08 17:13:08 -0700416 peeker.mPatch->paddingLeft, peeker.mPatch->paddingTop,
417 peeker.mPatch->paddingRight, peeker.mPatch->paddingBottom);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800418 } else {
419 GraphicsJNI::set_jrect(env, padding, -1, -1, -1, -1);
420 }
421 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800422
Leon Scroggins III0aa39dc2014-06-03 12:19:32 -0400423 // if we get here, we're in kDecodePixels_Mode and will therefore
424 // already have a pixelref installed.
425 if (outputBitmap->pixelRef() == NULL) {
Marco Nelissenb2fe3be2012-05-07 11:24:13 -0700426 return nullObjectReturn("Got null SkPixelRef");
427 }
Romain Guy23610982011-01-17 12:51:55 -0800428
Chris Craik7e8c03c2013-06-03 13:53:36 -0700429 if (!isMutable && javaBitmap == NULL) {
Romain Guy23610982011-01-17 12:51:55 -0800430 // promise we will never change our pixels (great for sharing and pictures)
Leon Scroggins III0aa39dc2014-06-03 12:19:32 -0400431 outputBitmap->setImmutable();
Romain Guy23610982011-01-17 12:51:55 -0800432 }
Chet Haase37f74ca2010-12-08 17:56:36 -0800433
Jeff Brown27d83832012-05-09 17:30:31 -0700434 // detach bitmap from its autodeleter, since we want to own it now
435 adb.detach();
436
Chris Craik7e8c03c2013-06-03 13:53:36 -0700437 if (javaBitmap != NULL) {
Chris Craik1abf5d62013-08-16 12:47:03 -0700438 bool isPremultiplied = !requireUnpremultiplied;
439 GraphicsJNI::reinitBitmap(env, javaBitmap, outputBitmap, isPremultiplied);
Chris Craik7e8c03c2013-06-03 13:53:36 -0700440 outputBitmap->notifyPixelsChanged();
Chet Haase37f74ca2010-12-08 17:56:36 -0800441 // If a java bitmap was passed in for reuse, pass it back
442 return javaBitmap;
443 }
Chris Craik1abf5d62013-08-16 12:47:03 -0700444
445 int bitmapCreateFlags = 0x0;
446 if (isMutable) bitmapCreateFlags |= GraphicsJNI::kBitmapCreateFlag_Mutable;
447 if (!requireUnpremultiplied) bitmapCreateFlags |= GraphicsJNI::kBitmapCreateFlag_Premultiplied;
448
Mike Reedc70e06b2009-04-24 11:09:12 -0400449 // now create the java bitmap
Chris Craik7e8c03c2013-06-03 13:53:36 -0700450 return GraphicsJNI::createBitmap(env, outputBitmap, javaAllocator.getStorageObj(),
Chris Craik47cd8e92014-07-08 17:13:08 -0700451 bitmapCreateFlags, ninePatchChunk, ninePatchInsets, -1);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800452}
453
Leon Scroggins III2826e5f2014-02-05 19:46:02 -0500454// Need to buffer enough input to be able to rewind as much as might be read by a decoder
455// trying to determine the stream's format. Currently the most is 64, read by
456// SkImageDecoder_libwebp.
457// FIXME: Get this number from SkImageDecoder
458#define BYTES_TO_BUFFER 64
459
Chris Craik905e8242013-06-05 09:59:05 -0700460static jobject nativeDecodeStream(JNIEnv* env, jobject clazz, jobject is, jbyteArray storage,
461 jobject padding, jobject options) {
Romain Guy7b2f8b82012-03-19 17:18:54 -0700462
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800463 jobject bitmap = NULL;
Leon Scroggins III34497892015-01-20 15:52:43 -0500464 SkAutoTDelete<SkStream> stream(CreateJavaInputStreamAdaptor(env, is, storage));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800465
Leon Scroggins IIIca320212013-08-20 17:59:39 -0400466 if (stream.get()) {
Leon Scroggins III34497892015-01-20 15:52:43 -0500467 SkAutoTDelete<SkStreamRewindable> bufferedStream(
468 SkFrontBufferedStream::Create(stream.detach(), BYTES_TO_BUFFER));
Leon Scroggins III7315f1b2013-09-10 20:26:05 -0400469 SkASSERT(bufferedStream.get() != NULL);
Leon Scroggins III0aa39dc2014-06-03 12:19:32 -0400470 bitmap = doDecode(env, bufferedStream, padding, options);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800471 }
472 return bitmap;
473}
474
Romain Guy7b2f8b82012-03-19 17:18:54 -0700475static jobject nativeDecodeFileDescriptor(JNIEnv* env, jobject clazz, jobject fileDescriptor,
476 jobject padding, jobject bitmapFactoryOptions) {
477
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800478 NPE_CHECK_RETURN_ZERO(env, fileDescriptor);
479
Derek Sollenberger5cb769d2014-09-24 09:20:09 -0400480 int descriptor = jniGetFDFromFileDescriptor(env, fileDescriptor);
Mike Reedc70e06b2009-04-24 11:09:12 -0400481
Derek Sollenberger5827cb52013-07-26 14:58:06 -0400482 struct stat fdStat;
483 if (fstat(descriptor, &fdStat) == -1) {
484 doThrowIOE(env, "broken file descriptor");
485 return nullObjectReturn("fstat return -1");
486 }
487
Derek Sollenberger5cb769d2014-09-24 09:20:09 -0400488 // Restore the descriptor's offset on exiting this function. Even though
489 // we dup the descriptor, both the original and dup refer to the same open
490 // file description and changes to the file offset in one impact the other.
Jérôme Poichetd29c9022014-09-26 18:59:11 +0000491 AutoFDSeek autoRestore(descriptor);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800492
Derek Sollenberger5cb769d2014-09-24 09:20:09 -0400493 // Duplicate the descriptor here to prevent leaking memory. A leak occurs
494 // if we only close the file descriptor and not the file object it is used to
495 // create. If we don't explicitly clean up the file (which in turn closes the
496 // descriptor) the buffers allocated internally by fseek will be leaked.
497 int dupDescriptor = dup(descriptor);
498
499 FILE* file = fdopen(dupDescriptor, "r");
Leon Scroggins III0102f8a2014-01-14 15:14:57 -0500500 if (file == NULL) {
Derek Sollenberger5cb769d2014-09-24 09:20:09 -0400501 // cleanup the duplicated descriptor since it will not be closed when the
502 // file is cleaned up (fclose).
503 close(dupDescriptor);
Leon Scroggins III0102f8a2014-01-14 15:14:57 -0500504 return nullObjectReturn("Could not open file");
Leon Scroggins IIIf65183f2013-10-07 16:32:14 -0400505 }
Leon Scroggins III0102f8a2014-01-14 15:14:57 -0500506
Leon Scroggins III34497892015-01-20 15:52:43 -0500507 SkAutoTDelete<SkFILEStream> fileStream(new SkFILEStream(file,
508 SkFILEStream::kCallerPasses_Ownership));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800509
Leon Scroggins III0aa39dc2014-06-03 12:19:32 -0400510 // Use a buffered stream. Although an SkFILEStream can be rewound, this
511 // ensures that SkImageDecoder::Factory never rewinds beyond the
512 // current position of the file descriptor.
Leon Scroggins III34497892015-01-20 15:52:43 -0500513 SkAutoTDelete<SkStreamRewindable> stream(SkFrontBufferedStream::Create(fileStream.detach(),
Leon Scroggins III0aa39dc2014-06-03 12:19:32 -0400514 BYTES_TO_BUFFER));
Leon Scroggins III2826e5f2014-02-05 19:46:02 -0500515
Leon Scroggins III0aa39dc2014-06-03 12:19:32 -0400516 return doDecode(env, stream, padding, bitmapFactoryOptions);
Mike Reedc70e06b2009-04-24 11:09:12 -0400517}
518
Ashok Bhat36bef0b2014-01-20 20:08:01 +0000519static jobject nativeDecodeAsset(JNIEnv* env, jobject clazz, jlong native_asset,
Chris Craik905e8242013-06-05 09:59:05 -0700520 jobject padding, jobject options) {
Romain Guy7b2f8b82012-03-19 17:18:54 -0700521
Mike Reedc70e06b2009-04-24 11:09:12 -0400522 Asset* asset = reinterpret_cast<Asset*>(native_asset);
Leon Scroggins III0aa39dc2014-06-03 12:19:32 -0400523 // since we know we'll be done with the asset when we return, we can
524 // just use a simple wrapper
Leon Scroggins III34497892015-01-20 15:52:43 -0500525 SkAutoTDelete<SkStreamRewindable> stream(new AssetStreamAdaptor(asset));
Leon Scroggins III0aa39dc2014-06-03 12:19:32 -0400526 return doDecode(env, stream, padding, options);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800527}
528
529static jobject nativeDecodeByteArray(JNIEnv* env, jobject, jbyteArray byteArray,
Ashok Bhat36bef0b2014-01-20 20:08:01 +0000530 jint offset, jint length, jobject options) {
Romain Guy7b2f8b82012-03-19 17:18:54 -0700531
Mike Reedc70e06b2009-04-24 11:09:12 -0400532 AutoJavaByteArray ar(env, byteArray);
Leon Scroggins III34497892015-01-20 15:52:43 -0500533 SkAutoTDelete<SkMemoryStream> stream(new SkMemoryStream(ar.ptr() + offset, length, false));
Leon Scroggins III0aa39dc2014-06-03 12:19:32 -0400534 return doDecode(env, stream, NULL, options);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800535}
536
537static void nativeRequestCancel(JNIEnv*, jobject joptions) {
538 (void)AutoDecoderCancel::RequestCancel(joptions);
539}
540
Owen Lina9d0d472011-01-18 17:39:15 +0800541static jboolean nativeIsSeekable(JNIEnv* env, jobject, jobject fileDescriptor) {
Elliott Hughesa3804cf2011-04-11 16:50:19 -0700542 jint descriptor = jniGetFDFromFileDescriptor(env, fileDescriptor);
Owen Lina9d0d472011-01-18 17:39:15 +0800543 return ::lseek64(descriptor, 0, SEEK_CUR) != -1 ? JNI_TRUE : JNI_FALSE;
544}
545
John Reck41478772015-04-10 13:35:27 -0700546jobject decodeBitmap(JNIEnv* env, void* data, size_t size) {
547 SkMemoryStream stream(data, size);
548 return doDecode(env, &stream, NULL, NULL);
549}
550
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800551///////////////////////////////////////////////////////////////////////////////
552
553static JNINativeMethod gMethods[] = {
554 { "nativeDecodeStream",
555 "(Ljava/io/InputStream;[BLandroid/graphics/Rect;Landroid/graphics/BitmapFactory$Options;)Landroid/graphics/Bitmap;",
556 (void*)nativeDecodeStream
557 },
558
559 { "nativeDecodeFileDescriptor",
560 "(Ljava/io/FileDescriptor;Landroid/graphics/Rect;Landroid/graphics/BitmapFactory$Options;)Landroid/graphics/Bitmap;",
561 (void*)nativeDecodeFileDescriptor
562 },
563
564 { "nativeDecodeAsset",
Ashok Bhat36bef0b2014-01-20 20:08:01 +0000565 "(JLandroid/graphics/Rect;Landroid/graphics/BitmapFactory$Options;)Landroid/graphics/Bitmap;",
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800566 (void*)nativeDecodeAsset
567 },
568
569 { "nativeDecodeByteArray",
570 "([BIILandroid/graphics/BitmapFactory$Options;)Landroid/graphics/Bitmap;",
571 (void*)nativeDecodeByteArray
572 },
573
Owen Lina9d0d472011-01-18 17:39:15 +0800574 { "nativeIsSeekable",
575 "(Ljava/io/FileDescriptor;)Z",
576 (void*)nativeIsSeekable
577 },
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800578};
579
580static JNINativeMethod gOptionsMethods[] = {
581 { "requestCancel", "()V", (void*)nativeRequestCancel }
582};
583
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800584int register_android_graphics_BitmapFactory(JNIEnv* env) {
Andreas Gampeed6b9df2014-11-20 22:02:20 -0800585 jclass options_class = FindClassOrDie(env, "android/graphics/BitmapFactory$Options");
586 gOptions_bitmapFieldID = GetFieldIDOrDie(env, options_class, "inBitmap",
Chris Craik47cd8e92014-07-08 17:13:08 -0700587 "Landroid/graphics/Bitmap;");
Andreas Gampeed6b9df2014-11-20 22:02:20 -0800588 gOptions_justBoundsFieldID = GetFieldIDOrDie(env, options_class, "inJustDecodeBounds", "Z");
589 gOptions_sampleSizeFieldID = GetFieldIDOrDie(env, options_class, "inSampleSize", "I");
590 gOptions_configFieldID = GetFieldIDOrDie(env, options_class, "inPreferredConfig",
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800591 "Landroid/graphics/Bitmap$Config;");
Andreas Gampeed6b9df2014-11-20 22:02:20 -0800592 gOptions_premultipliedFieldID = GetFieldIDOrDie(env, options_class, "inPremultiplied", "Z");
593 gOptions_mutableFieldID = GetFieldIDOrDie(env, options_class, "inMutable", "Z");
594 gOptions_ditherFieldID = GetFieldIDOrDie(env, options_class, "inDither", "Z");
595 gOptions_preferQualityOverSpeedFieldID = GetFieldIDOrDie(env, options_class,
Wei-Ta Chen953f9092010-12-03 14:06:18 -0800596 "inPreferQualityOverSpeed", "Z");
Andreas Gampeed6b9df2014-11-20 22:02:20 -0800597 gOptions_scaledFieldID = GetFieldIDOrDie(env, options_class, "inScaled", "Z");
598 gOptions_densityFieldID = GetFieldIDOrDie(env, options_class, "inDensity", "I");
599 gOptions_screenDensityFieldID = GetFieldIDOrDie(env, options_class, "inScreenDensity", "I");
600 gOptions_targetDensityFieldID = GetFieldIDOrDie(env, options_class, "inTargetDensity", "I");
601 gOptions_widthFieldID = GetFieldIDOrDie(env, options_class, "outWidth", "I");
602 gOptions_heightFieldID = GetFieldIDOrDie(env, options_class, "outHeight", "I");
603 gOptions_mimeFieldID = GetFieldIDOrDie(env, options_class, "outMimeType", "Ljava/lang/String;");
604 gOptions_mCancelID = GetFieldIDOrDie(env, options_class, "mCancel", "Z");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800605
Andreas Gampeed6b9df2014-11-20 22:02:20 -0800606 jclass bitmap_class = FindClassOrDie(env, "android/graphics/Bitmap");
Andreas Gampeed6b9df2014-11-20 22:02:20 -0800607 gBitmap_ninePatchInsetsFieldID = GetFieldIDOrDie(env, bitmap_class, "mNinePatchInsets",
Chris Craik47cd8e92014-07-08 17:13:08 -0700608 "Landroid/graphics/NinePatch$InsetStruct;");
609
Andreas Gampeed6b9df2014-11-20 22:02:20 -0800610 gInsetStruct_class = MakeGlobalRefOrDie(env, FindClassOrDie(env,
611 "android/graphics/NinePatch$InsetStruct"));
612 gInsetStruct_constructorMethodID = GetMethodIDOrDie(env, gInsetStruct_class, "<init>",
613 "(IIIIIIIIFIF)V");
Chris Craik47cd8e92014-07-08 17:13:08 -0700614
Andreas Gampeed6b9df2014-11-20 22:02:20 -0800615 android::RegisterMethodsOrDie(env, "android/graphics/BitmapFactory$Options",
616 gOptionsMethods, NELEM(gOptionsMethods));
617 return android::RegisterMethodsOrDie(env, "android/graphics/BitmapFactory",
618 gMethods, NELEM(gMethods));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800619}