46
46
47
47
#include "fontscaler.h"
48
48
49
+ #define CHECK_EXCEPTION (env , describe ) \
50
+ if ((*(env))->ExceptionCheck(env)) { \
51
+ if (describe) (*(env))->ExceptionDescribe(env);\
52
+ else (*(env))->ExceptionClear(env); \
53
+ }
54
+
49
55
#define ftFixed1 (FT_Fixed) (1 << 16)
50
56
#define FloatToFTFixed (f ) (FT_Fixed)((f) * (float)(ftFixed1))
51
57
#define FTFixedToFloat (x ) ((x) / (float)(ftFixed1))
@@ -97,12 +103,18 @@ void z_error(char *s) {}
97
103
/**************** Error handling utilities *****************/
98
104
99
105
static jmethodID invalidateScalerMID ;
106
+ static jboolean debugFonts ; // Stores the value of FontUtilities.debugFonts()
100
107
101
108
JNIEXPORT void JNICALL
102
109
Java_sun_font_FreetypeFontScaler_initIDs (
103
110
JNIEnv * env , jobject scaler , jclass FFSClass ) {
104
111
invalidateScalerMID =
105
112
(* env )-> GetMethodID (env , FFSClass , "invalidateScaler" , "()V" );
113
+
114
+ jboolean ignoreException ;
115
+ debugFonts = JNU_CallStaticMethodByName (env , & ignoreException ,
116
+ "sun/font/FontUtilities" ,
117
+ "debugFonts" , "()Z" ).z ;
106
118
}
107
119
108
120
static void freeNativeResources (JNIEnv * env , FTScalerInfo * scalerInfo ) {
@@ -137,6 +149,9 @@ static void invalidateJavaScaler(JNIEnv *env,
137
149
FTScalerInfo * scalerInfo ) {
138
150
freeNativeResources (env , scalerInfo );
139
151
(* env )-> CallVoidMethod (env , scaler , invalidateScalerMID );
152
+ // NB: Exceptions must not be cleared (and therefore no JNI calls
153
+ // performed) after calling this method because it intentionally
154
+ // leaves an exception pending.
140
155
}
141
156
142
157
/******************* I/O handlers ***************************/
@@ -187,6 +202,7 @@ static unsigned long ReadTTFontFileFunc(FT_Stream stream,
187
202
scalerInfo -> font2D ,
188
203
sunFontIDs .ttReadBlockMID ,
189
204
bBuffer , offset , numBytes );
205
+ CHECK_EXCEPTION (env , debugFonts );
190
206
if (bread < 0 ) {
191
207
return 0 ;
192
208
} else {
@@ -206,7 +222,8 @@ static unsigned long ReadTTFontFileFunc(FT_Stream stream,
206
222
(* env )-> CallObjectMethod (env , scalerInfo -> font2D ,
207
223
sunFontIDs .ttReadBytesMID ,
208
224
offset , numBytes );
209
- /* If there's an OutofMemoryError then byteArray will be null */
225
+ CHECK_EXCEPTION (env , debugFonts );
226
+ /* If there's an OutOfMemoryError then byteArray will be null */
210
227
if (byteArray == NULL ) {
211
228
return 0 ;
212
229
} else {
@@ -239,6 +256,7 @@ static unsigned long ReadTTFontFileFunc(FT_Stream stream,
239
256
sunFontIDs .ttReadBlockMID ,
240
257
bBuffer , offset ,
241
258
scalerInfo -> fontDataLength );
259
+ CHECK_EXCEPTION (env , debugFonts );
242
260
if (bread <= 0 ) {
243
261
return 0 ;
244
262
} else if ((unsigned long )bread < numBytes ) {
0 commit comments