blob: 5f2960426382c69d4c2b6f32bb7aa0a582d1a151 [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001#ifndef GraphicsJNI_DEFINED
2#define GraphicsJNI_DEFINED
3
Patrick Dubroye4ac2d62010-12-01 11:23:13 -08004#include "SkBitmap.h"
5#include "SkDevice.h"
6#include "SkPixelRef.h"
7#include "SkMallocPixelRef.h"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008#include "SkPoint.h"
9#include "SkRect.h"
Derek Sollenberger5827cb52013-07-26 14:58:06 -040010#include "SkImageDecoder.h"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011#include <jni.h>
12
Derek Sollenberger5827cb52013-07-26 14:58:06 -040013class SkBitmapRegionDecoder;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080014class SkCanvas;
15class SkPaint;
16class SkPicture;
17
18class GraphicsJNI {
19public:
Chris Craik1abf5d62013-08-16 12:47:03 -070020 enum BitmapCreateFlags {
21 kBitmapCreateFlag_None = 0x0,
22 kBitmapCreateFlag_Mutable = 0x1,
23 kBitmapCreateFlag_Premultiplied = 0x2,
24 };
25
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080026 // returns true if an exception is set (and dumps it out to the Log)
27 static bool hasException(JNIEnv*);
28
29 static void get_jrect(JNIEnv*, jobject jrect, int* L, int* T, int* R, int* B);
30 static void set_jrect(JNIEnv*, jobject jrect, int L, int T, int R, int B);
31
32 static SkIRect* jrect_to_irect(JNIEnv*, jobject jrect, SkIRect*);
33 static void irect_to_jrect(const SkIRect&, JNIEnv*, jobject jrect);
34
35 static SkRect* jrectf_to_rect(JNIEnv*, jobject jrectf, SkRect*);
36 static SkRect* jrect_to_rect(JNIEnv*, jobject jrect, SkRect*);
37 static void rect_to_jrectf(const SkRect&, JNIEnv*, jobject jrectf);
Elliott Hughes8451b252011-04-07 19:17:57 -070038
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080039 static void set_jpoint(JNIEnv*, jobject jrect, int x, int y);
Elliott Hughes8451b252011-04-07 19:17:57 -070040
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080041 static SkIPoint* jpoint_to_ipoint(JNIEnv*, jobject jpoint, SkIPoint* point);
42 static void ipoint_to_jpoint(const SkIPoint& point, JNIEnv*, jobject jpoint);
Elliott Hughes8451b252011-04-07 19:17:57 -070043
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080044 static SkPoint* jpointf_to_point(JNIEnv*, jobject jpointf, SkPoint* point);
45 static void point_to_jpointf(const SkPoint& point, JNIEnv*, jobject jpointf);
Elliott Hughes8451b252011-04-07 19:17:57 -070046
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080047 static SkCanvas* getNativeCanvas(JNIEnv*, jobject canvas);
48 static SkPaint* getNativePaint(JNIEnv*, jobject paint);
49 static SkBitmap* getNativeBitmap(JNIEnv*, jobject bitmap);
50 static SkPicture* getNativePicture(JNIEnv*, jobject picture);
51 static SkRegion* getNativeRegion(JNIEnv*, jobject region);
Elliott Hughes8451b252011-04-07 19:17:57 -070052
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080053 /** Return the corresponding native config from the java Config enum,
54 or kNo_Config if the java object is null.
55 */
56 static SkBitmap::Config getNativeBitmapConfig(JNIEnv*, jobject jconfig);
Elliott Hughes8451b252011-04-07 19:17:57 -070057
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080058 /** Create a java Bitmap object given the native bitmap (required) and optional
Patrick Dubroye4ac2d62010-12-01 11:23:13 -080059 storage array (may be null).
Leon Scroggins III8790be62013-12-03 16:26:51 -050060 bitmap's SkAlphaType must already be in sync with bitmapCreateFlags.
Patrick Dubroye4ac2d62010-12-01 11:23:13 -080061 */
62 static jobject createBitmap(JNIEnv* env, SkBitmap* bitmap, jbyteArray buffer,
Chris Craik1abf5d62013-08-16 12:47:03 -070063 int bitmapCreateFlags, jbyteArray ninepatch, jintArray layoutbounds, int density = -1);
Patrick Dubroye4ac2d62010-12-01 11:23:13 -080064
Chris Craik1abf5d62013-08-16 12:47:03 -070065 static jobject createBitmap(JNIEnv* env, SkBitmap* bitmap, int bitmapCreateFlags,
66 jbyteArray ninepatch, int density = -1);
Elliott Hughes8451b252011-04-07 19:17:57 -070067
Leon Scroggins III8790be62013-12-03 16:26:51 -050068 /** Reinitialize a bitmap. bitmap must already have its SkAlphaType set in
69 sync with isPremultiplied
70 */
Chris Craik1abf5d62013-08-16 12:47:03 -070071 static void reinitBitmap(JNIEnv* env, jobject javaBitmap, SkBitmap* bitmap,
72 bool isPremultiplied);
Chris Craik9f583612013-05-20 18:13:47 -070073
74 static int getBitmapAllocationByteCount(JNIEnv* env, jobject javaBitmap);
75
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080076 static jobject createRegion(JNIEnv* env, SkRegion* region);
77
Wei-Ta Chen6b849e22010-09-07 17:32:18 +080078 static jobject createBitmapRegionDecoder(JNIEnv* env, SkBitmapRegionDecoder* bitmap);
Joseph Wenf1f48bc2010-07-19 16:59:51 +080079
Patrick Dubroye4ac2d62010-12-01 11:23:13 -080080 static jbyteArray allocateJavaPixelRef(JNIEnv* env, SkBitmap* bitmap,
Chris Craik1abf5d62013-08-16 12:47:03 -070081 SkColorTable* ctable);
Patrick Dubroye4ac2d62010-12-01 11:23:13 -080082
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080083 /** Copy the colors in colors[] to the bitmap, convert to the correct
84 format along the way.
85 */
86 static bool SetPixels(JNIEnv* env, jintArray colors, int srcOffset,
Chris Craik1abf5d62013-08-16 12:47:03 -070087 int srcStride, int x, int y, int width, int height,
88 const SkBitmap& dstBitmap, bool isPremultiplied);
Patrick Dubroye4ac2d62010-12-01 11:23:13 -080089
90 static jbyteArray getBitmapStorageObj(SkPixelRef *pixref);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080091};
92
Patrick Dubroye4ac2d62010-12-01 11:23:13 -080093class AndroidPixelRef : public SkMallocPixelRef {
94public:
95 AndroidPixelRef(JNIEnv* env, void* storage, size_t size, jbyteArray storageObj,
96 SkColorTable* ctable);
97
Chris Craikcd0ba712013-09-06 14:40:30 -070098 /**
99 * Creates an AndroidPixelRef that wraps (and refs) another to reuse/share
100 * the same storage and java byte array refcounting, yet have a different
101 * color table.
102 */
103 AndroidPixelRef(AndroidPixelRef& wrappedPixelRef, SkColorTable* ctable);
104
Patrick Dubroye4ac2d62010-12-01 11:23:13 -0800105 virtual ~AndroidPixelRef();
106
Chris Craikcd0ba712013-09-06 14:40:30 -0700107 jbyteArray getStorageObj();
Patrick Dubroye4ac2d62010-12-01 11:23:13 -0800108
109 void setLocalJNIRef(jbyteArray arr);
110
Patrick Dubroya2f0e2d2010-12-15 15:03:47 -0800111 /** Used to hold a ref to the pixels when the Java bitmap may be collected.
112 * If specified, 'localref' is a valid JNI local reference to the byte array
113 * containing the pixel data.
114 *
115 * 'localref' may only be NULL if setLocalJNIRef() was already called with
116 * a JNI local ref that is still valid.
117 */
118 virtual void globalRef(void* localref=NULL);
119
120 /** Release a ref that was acquired using globalRef(). */
Patrick Dubroye4ac2d62010-12-01 11:23:13 -0800121 virtual void globalUnref();
122
123private:
Chris Craikcd0ba712013-09-06 14:40:30 -0700124 AndroidPixelRef* const fWrappedPixelRef; // if set, delegate memory management calls to this
125
Patrick Dubroye4ac2d62010-12-01 11:23:13 -0800126 JavaVM* fVM;
127 bool fOnJavaHeap; // If true, the memory was allocated on the Java heap
128
129 jbyteArray fStorageObj; // The Java byte[] object used as the bitmap backing store
130 bool fHasGlobalRef; // If true, fStorageObj holds a JNI global ref
131
132 mutable int32_t fGlobalRefCnt;
133};
134
135/** A helper class for accessing Java-heap-allocated bitmaps.
136 * This should be used when calling into a JNI method that retains a
137 * reference to the bitmap longer than the lifetime of the Java Bitmap.
138 *
139 * After creating an instance of this class, a call to
140 * AndroidPixelRef::globalRef() will allocate a JNI global reference
141 * to the backing buffer object.
142 */
143class JavaHeapBitmapRef {
144public:
145
146 JavaHeapBitmapRef(JNIEnv *env, SkBitmap* nativeBitmap, jbyteArray buffer);
147 ~JavaHeapBitmapRef();
148
149private:
150 JNIEnv* fEnv;
151 SkBitmap* fNativeBitmap;
152 jbyteArray fBuffer;
153};
154
155/** Allocator which allocates the backing buffer in the Java heap.
156 * Instances can only be used to perform a single allocation, which helps
157 * ensure that the allocated buffer is properly accounted for with a
158 * reference in the heap (or a JNI global reference).
159 */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800160class JavaPixelAllocator : public SkBitmap::Allocator {
161public:
Carl Shapiro12d81c42010-12-17 18:36:48 -0800162 JavaPixelAllocator(JNIEnv* env);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800163 // overrides
164 virtual bool allocPixelRef(SkBitmap* bitmap, SkColorTable* ctable);
Elliott Hughes8451b252011-04-07 19:17:57 -0700165
Patrick Dubroyafde46e2010-12-15 11:52:01 -0800166 /** Return the Java array object created for the last allocation.
167 * This returns a local JNI reference which the caller is responsible
168 * for storing appropriately (usually by passing it to the Bitmap
169 * constructor).
170 */
171 jbyteArray getStorageObj() { return fStorageObj; }
172
173 /** Same as getStorageObj(), but also resets the allocator so that it
174 * can allocate again.
175 */
176 jbyteArray getStorageObjAndReset() {
177 jbyteArray result = fStorageObj;
178 fStorageObj = NULL;
179 fAllocCount = 0;
180 return result;
181 };
Patrick Dubroye4ac2d62010-12-01 11:23:13 -0800182
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800183private:
Wei-Ta Chen291303b2010-08-18 15:40:29 +0800184 JavaVM* fVM;
Patrick Dubroye4ac2d62010-12-01 11:23:13 -0800185 bool fAllocateInJavaHeap;
186 jbyteArray fStorageObj;
Patrick Dubroyafde46e2010-12-15 11:52:01 -0800187 int fAllocCount;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800188};
189
Mike Reedc04851f2009-10-28 15:09:45 -0400190enum JNIAccess {
191 kRO_JNIAccess,
192 kRW_JNIAccess
193};
194
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800195class AutoJavaFloatArray {
196public:
Mike Reedc04851f2009-10-28 15:09:45 -0400197 AutoJavaFloatArray(JNIEnv* env, jfloatArray array,
198 int minLength = 0, JNIAccess = kRW_JNIAccess);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800199 ~AutoJavaFloatArray();
Elliott Hughes8451b252011-04-07 19:17:57 -0700200
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800201 float* ptr() const { return fPtr; }
202 int length() const { return fLen; }
Elliott Hughes8451b252011-04-07 19:17:57 -0700203
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800204private:
205 JNIEnv* fEnv;
206 jfloatArray fArray;
207 float* fPtr;
208 int fLen;
Mike Reedc04851f2009-10-28 15:09:45 -0400209 int fReleaseMode;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800210};
211
212class AutoJavaIntArray {
213public:
214 AutoJavaIntArray(JNIEnv* env, jintArray array, int minLength = 0);
215 ~AutoJavaIntArray();
Elliott Hughes8451b252011-04-07 19:17:57 -0700216
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800217 jint* ptr() const { return fPtr; }
218 int length() const { return fLen; }
Elliott Hughes8451b252011-04-07 19:17:57 -0700219
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800220private:
221 JNIEnv* fEnv;
222 jintArray fArray;
223 jint* fPtr;
224 int fLen;
225};
226
227class AutoJavaShortArray {
228public:
Mike Reedc04851f2009-10-28 15:09:45 -0400229 AutoJavaShortArray(JNIEnv* env, jshortArray array,
230 int minLength = 0, JNIAccess = kRW_JNIAccess);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800231 ~AutoJavaShortArray();
Elliott Hughes8451b252011-04-07 19:17:57 -0700232
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800233 jshort* ptr() const { return fPtr; }
234 int length() const { return fLen; }
Elliott Hughes8451b252011-04-07 19:17:57 -0700235
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800236private:
237 JNIEnv* fEnv;
238 jshortArray fArray;
239 jshort* fPtr;
240 int fLen;
Mike Reedc04851f2009-10-28 15:09:45 -0400241 int fReleaseMode;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800242};
243
244class AutoJavaByteArray {
245public:
246 AutoJavaByteArray(JNIEnv* env, jbyteArray array, int minLength = 0);
247 ~AutoJavaByteArray();
Elliott Hughes8451b252011-04-07 19:17:57 -0700248
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800249 jbyte* ptr() const { return fPtr; }
250 int length() const { return fLen; }
Elliott Hughes8451b252011-04-07 19:17:57 -0700251
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800252private:
253 JNIEnv* fEnv;
254 jbyteArray fArray;
255 jbyte* fPtr;
256 int fLen;
257};
258
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800259void doThrowNPE(JNIEnv* env);
260void doThrowAIOOBE(JNIEnv* env); // Array Index Out Of Bounds Exception
261void doThrowIAE(JNIEnv* env, const char* msg = NULL); // Illegal Argument
262void doThrowRE(JNIEnv* env, const char* msg = NULL); // Runtime
263void doThrowISE(JNIEnv* env, const char* msg = NULL); // Illegal State
264void doThrowOOME(JNIEnv* env, const char* msg = NULL); // Out of memory
Joseph Wenf1f48bc2010-07-19 16:59:51 +0800265void doThrowIOE(JNIEnv* env, const char* msg = NULL); // IO Exception
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800266
267#define NPE_CHECK_RETURN_ZERO(env, object) \
268 do { if (NULL == (object)) { doThrowNPE(env); return 0; } } while (0)
269
270#define NPE_CHECK_RETURN_VOID(env, object) \
271 do { if (NULL == (object)) { doThrowNPE(env); return; } } while (0)
272
273#endif