blob: 69b67cb9fac94b13888a4c4680867411bf684a76 [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"
Wei-Ta Chen6b849e22010-09-07 17:32:18 +080010#include "../images/SkBitmapRegionDecoder.h"
Joseph Wenf1f48bc2010-07-19 16:59:51 +080011#include "../images/SkImageDecoder.h"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080012#include <jni.h>
13
14class SkCanvas;
15class SkPaint;
16class SkPicture;
17
18class GraphicsJNI {
19public:
20 // returns true if an exception is set (and dumps it out to the Log)
21 static bool hasException(JNIEnv*);
22
23 static void get_jrect(JNIEnv*, jobject jrect, int* L, int* T, int* R, int* B);
24 static void set_jrect(JNIEnv*, jobject jrect, int L, int T, int R, int B);
25
26 static SkIRect* jrect_to_irect(JNIEnv*, jobject jrect, SkIRect*);
27 static void irect_to_jrect(const SkIRect&, JNIEnv*, jobject jrect);
28
29 static SkRect* jrectf_to_rect(JNIEnv*, jobject jrectf, SkRect*);
30 static SkRect* jrect_to_rect(JNIEnv*, jobject jrect, SkRect*);
31 static void rect_to_jrectf(const SkRect&, JNIEnv*, jobject jrectf);
Elliott Hughes8451b252011-04-07 19:17:57 -070032
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080033 static void set_jpoint(JNIEnv*, jobject jrect, int x, int y);
Elliott Hughes8451b252011-04-07 19:17:57 -070034
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080035 static SkIPoint* jpoint_to_ipoint(JNIEnv*, jobject jpoint, SkIPoint* point);
36 static void ipoint_to_jpoint(const SkIPoint& point, JNIEnv*, jobject jpoint);
Elliott Hughes8451b252011-04-07 19:17:57 -070037
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080038 static SkPoint* jpointf_to_point(JNIEnv*, jobject jpointf, SkPoint* point);
39 static void point_to_jpointf(const SkPoint& point, JNIEnv*, jobject jpointf);
Elliott Hughes8451b252011-04-07 19:17:57 -070040
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080041 static SkCanvas* getNativeCanvas(JNIEnv*, jobject canvas);
42 static SkPaint* getNativePaint(JNIEnv*, jobject paint);
43 static SkBitmap* getNativeBitmap(JNIEnv*, jobject bitmap);
44 static SkPicture* getNativePicture(JNIEnv*, jobject picture);
45 static SkRegion* getNativeRegion(JNIEnv*, jobject region);
Elliott Hughes8451b252011-04-07 19:17:57 -070046
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080047 /** Return the corresponding native config from the java Config enum,
48 or kNo_Config if the java object is null.
49 */
50 static SkBitmap::Config getNativeBitmapConfig(JNIEnv*, jobject jconfig);
Elliott Hughes8451b252011-04-07 19:17:57 -070051
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080052 /** Create a java Bitmap object given the native bitmap (required) and optional
Patrick Dubroye4ac2d62010-12-01 11:23:13 -080053 storage array (may be null).
54 */
55 static jobject createBitmap(JNIEnv* env, SkBitmap* bitmap, jbyteArray buffer,
Amith Yamasaniec4a5042012-04-04 10:27:15 -070056 bool isMutable, jbyteArray ninepatch, jintArray layoutbounds,
57 int density = -1);
Patrick Dubroye4ac2d62010-12-01 11:23:13 -080058
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080059 static jobject createBitmap(JNIEnv* env, SkBitmap* bitmap, bool isMutable,
Patrick Dubroye4ac2d62010-12-01 11:23:13 -080060 jbyteArray ninepatch, int density = -1);
Elliott Hughes8451b252011-04-07 19:17:57 -070061
Chris Craik9f583612013-05-20 18:13:47 -070062 static void reinitBitmap(JNIEnv* env, jobject javaBitmap);
63
64 static int getBitmapAllocationByteCount(JNIEnv* env, jobject javaBitmap);
65
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080066 static jobject createRegion(JNIEnv* env, SkRegion* region);
67
Wei-Ta Chen6b849e22010-09-07 17:32:18 +080068 static jobject createBitmapRegionDecoder(JNIEnv* env, SkBitmapRegionDecoder* bitmap);
Joseph Wenf1f48bc2010-07-19 16:59:51 +080069
Patrick Dubroye4ac2d62010-12-01 11:23:13 -080070 static jbyteArray allocateJavaPixelRef(JNIEnv* env, SkBitmap* bitmap,
71 SkColorTable* ctable);
72
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080073 /** Copy the colors in colors[] to the bitmap, convert to the correct
74 format along the way.
75 */
76 static bool SetPixels(JNIEnv* env, jintArray colors, int srcOffset,
77 int srcStride, int x, int y, int width, int height,
78 const SkBitmap& dstBitmap);
Patrick Dubroye4ac2d62010-12-01 11:23:13 -080079
80 static jbyteArray getBitmapStorageObj(SkPixelRef *pixref);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080081};
82
Patrick Dubroye4ac2d62010-12-01 11:23:13 -080083class AndroidPixelRef : public SkMallocPixelRef {
84public:
85 AndroidPixelRef(JNIEnv* env, void* storage, size_t size, jbyteArray storageObj,
86 SkColorTable* ctable);
87
88 virtual ~AndroidPixelRef();
89
90 jbyteArray getStorageObj() { return fStorageObj; }
91
92 void setLocalJNIRef(jbyteArray arr);
93
Patrick Dubroya2f0e2d2010-12-15 15:03:47 -080094 /** Used to hold a ref to the pixels when the Java bitmap may be collected.
95 * If specified, 'localref' is a valid JNI local reference to the byte array
96 * containing the pixel data.
97 *
98 * 'localref' may only be NULL if setLocalJNIRef() was already called with
99 * a JNI local ref that is still valid.
100 */
101 virtual void globalRef(void* localref=NULL);
102
103 /** Release a ref that was acquired using globalRef(). */
Patrick Dubroye4ac2d62010-12-01 11:23:13 -0800104 virtual void globalUnref();
105
106private:
107 JavaVM* fVM;
108 bool fOnJavaHeap; // If true, the memory was allocated on the Java heap
109
110 jbyteArray fStorageObj; // The Java byte[] object used as the bitmap backing store
111 bool fHasGlobalRef; // If true, fStorageObj holds a JNI global ref
112
113 mutable int32_t fGlobalRefCnt;
114};
115
116/** A helper class for accessing Java-heap-allocated bitmaps.
117 * This should be used when calling into a JNI method that retains a
118 * reference to the bitmap longer than the lifetime of the Java Bitmap.
119 *
120 * After creating an instance of this class, a call to
121 * AndroidPixelRef::globalRef() will allocate a JNI global reference
122 * to the backing buffer object.
123 */
124class JavaHeapBitmapRef {
125public:
126
127 JavaHeapBitmapRef(JNIEnv *env, SkBitmap* nativeBitmap, jbyteArray buffer);
128 ~JavaHeapBitmapRef();
129
130private:
131 JNIEnv* fEnv;
132 SkBitmap* fNativeBitmap;
133 jbyteArray fBuffer;
134};
135
136/** Allocator which allocates the backing buffer in the Java heap.
137 * Instances can only be used to perform a single allocation, which helps
138 * ensure that the allocated buffer is properly accounted for with a
139 * reference in the heap (or a JNI global reference).
140 */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800141class JavaPixelAllocator : public SkBitmap::Allocator {
142public:
Carl Shapiro12d81c42010-12-17 18:36:48 -0800143 JavaPixelAllocator(JNIEnv* env);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800144 // overrides
145 virtual bool allocPixelRef(SkBitmap* bitmap, SkColorTable* ctable);
Elliott Hughes8451b252011-04-07 19:17:57 -0700146
Patrick Dubroyafde46e2010-12-15 11:52:01 -0800147 /** Return the Java array object created for the last allocation.
148 * This returns a local JNI reference which the caller is responsible
149 * for storing appropriately (usually by passing it to the Bitmap
150 * constructor).
151 */
152 jbyteArray getStorageObj() { return fStorageObj; }
153
154 /** Same as getStorageObj(), but also resets the allocator so that it
155 * can allocate again.
156 */
157 jbyteArray getStorageObjAndReset() {
158 jbyteArray result = fStorageObj;
159 fStorageObj = NULL;
160 fAllocCount = 0;
161 return result;
162 };
Patrick Dubroye4ac2d62010-12-01 11:23:13 -0800163
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800164private:
Wei-Ta Chen291303b2010-08-18 15:40:29 +0800165 JavaVM* fVM;
Patrick Dubroye4ac2d62010-12-01 11:23:13 -0800166 bool fAllocateInJavaHeap;
167 jbyteArray fStorageObj;
Patrick Dubroyafde46e2010-12-15 11:52:01 -0800168 int fAllocCount;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800169};
170
Mike Reedc04851f2009-10-28 15:09:45 -0400171enum JNIAccess {
172 kRO_JNIAccess,
173 kRW_JNIAccess
174};
175
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800176class AutoJavaFloatArray {
177public:
Mike Reedc04851f2009-10-28 15:09:45 -0400178 AutoJavaFloatArray(JNIEnv* env, jfloatArray array,
179 int minLength = 0, JNIAccess = kRW_JNIAccess);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800180 ~AutoJavaFloatArray();
Elliott Hughes8451b252011-04-07 19:17:57 -0700181
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800182 float* ptr() const { return fPtr; }
183 int length() const { return fLen; }
Elliott Hughes8451b252011-04-07 19:17:57 -0700184
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800185private:
186 JNIEnv* fEnv;
187 jfloatArray fArray;
188 float* fPtr;
189 int fLen;
Mike Reedc04851f2009-10-28 15:09:45 -0400190 int fReleaseMode;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800191};
192
193class AutoJavaIntArray {
194public:
195 AutoJavaIntArray(JNIEnv* env, jintArray array, int minLength = 0);
196 ~AutoJavaIntArray();
Elliott Hughes8451b252011-04-07 19:17:57 -0700197
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800198 jint* ptr() const { return fPtr; }
199 int length() const { return fLen; }
Elliott Hughes8451b252011-04-07 19:17:57 -0700200
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800201private:
202 JNIEnv* fEnv;
203 jintArray fArray;
204 jint* fPtr;
205 int fLen;
206};
207
208class AutoJavaShortArray {
209public:
Mike Reedc04851f2009-10-28 15:09:45 -0400210 AutoJavaShortArray(JNIEnv* env, jshortArray array,
211 int minLength = 0, JNIAccess = kRW_JNIAccess);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800212 ~AutoJavaShortArray();
Elliott Hughes8451b252011-04-07 19:17:57 -0700213
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800214 jshort* ptr() const { return fPtr; }
215 int length() const { return fLen; }
Elliott Hughes8451b252011-04-07 19:17:57 -0700216
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800217private:
218 JNIEnv* fEnv;
219 jshortArray fArray;
220 jshort* fPtr;
221 int fLen;
Mike Reedc04851f2009-10-28 15:09:45 -0400222 int fReleaseMode;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800223};
224
225class AutoJavaByteArray {
226public:
227 AutoJavaByteArray(JNIEnv* env, jbyteArray array, int minLength = 0);
228 ~AutoJavaByteArray();
Elliott Hughes8451b252011-04-07 19:17:57 -0700229
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800230 jbyte* ptr() const { return fPtr; }
231 int length() const { return fLen; }
Elliott Hughes8451b252011-04-07 19:17:57 -0700232
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800233private:
234 JNIEnv* fEnv;
235 jbyteArray fArray;
236 jbyte* fPtr;
237 int fLen;
238};
239
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800240void doThrowNPE(JNIEnv* env);
241void doThrowAIOOBE(JNIEnv* env); // Array Index Out Of Bounds Exception
242void doThrowIAE(JNIEnv* env, const char* msg = NULL); // Illegal Argument
243void doThrowRE(JNIEnv* env, const char* msg = NULL); // Runtime
244void doThrowISE(JNIEnv* env, const char* msg = NULL); // Illegal State
245void doThrowOOME(JNIEnv* env, const char* msg = NULL); // Out of memory
Joseph Wenf1f48bc2010-07-19 16:59:51 +0800246void doThrowIOE(JNIEnv* env, const char* msg = NULL); // IO Exception
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800247
248#define NPE_CHECK_RETURN_ZERO(env, object) \
249 do { if (NULL == (object)) { doThrowNPE(env); return 0; } } while (0)
250
251#define NPE_CHECK_RETURN_VOID(env, object) \
252 do { if (NULL == (object)) { doThrowNPE(env); return; } } while (0)
253
254#endif