1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222
|
#include "EXTERN.h"
#include "perl.h"
#include "XSUB.h"
/*
#include "stdlib.h"
#include "string.h"
#include "stdio.h"
#include "stdarg.h"
*/
#ifdef __CYGWIN__
#include "w32api/basetyps.h"
#endif
/* Include the JNI header file */
#include "jni.h"
void throw_ije(JNIEnv *env, char *msg){
jclass ije ;
ije = (*(env))->FindClass(env, "org/perl/inline/java/InlineJavaException") ;
if ((*(env))->ExceptionCheck(env)){
(*(env))->ExceptionDescribe(env) ;
(*(env))->ExceptionClear(env) ;
(*(env))->FatalError(env, "Can't find class InlineJavaException: exiting...") ;
}
(*(env))->ThrowNew(env, ije, msg) ;
}
/*
Here we simply check if an exception is pending an re-throw it
*/
int check_exception_from_java(JNIEnv *env){
jthrowable exc ;
int ret = 0 ;
exc = (*(env))->ExceptionOccurred(env) ;
if (exc != NULL){
/* (*(env))->ExceptionDescribe(env) ; */
(*(env))->ExceptionClear(env) ;
if ((*(env))->Throw(env, exc)){
(*(env))->FatalError(env, "Throw of InlineJava*Exception failed: exiting...") ;
}
ret = 1 ;
}
return ret ;
}
jobject create_primitive_object(JNIEnv *env, char f, char *cls_name, jvalue val){
jclass arg_cls ;
jmethodID mid ;
jobject ret = NULL ;
char sign[64] ;
arg_cls = (*(env))->FindClass(env, cls_name) ;
if (check_exception_from_java(env)){
return NULL ;
}
sprintf(sign, "(%c)V", f) ;
mid = (*(env))->GetMethodID(env, arg_cls, "<init>", sign) ;
if (check_exception_from_java(env)){
return NULL ;
}
ret = (*(env))->NewObjectA(env, arg_cls, mid, &val) ;
if (check_exception_from_java(env)){
return NULL ;
}
return ret ;
}
jobject extract_va_arg(JNIEnv *env, va_list *list, char f){
jobject ret = NULL ;
jvalue val ;
/*
A bit of voodoo going on for J and F, but the rest I think is pretty
kosher (on a 32 bit machine at least...)
*/
switch(f){
case 'B':
val.b = (jbyte)va_arg(*list, int) ;
ret = create_primitive_object(env, f, "java/lang/Byte", val) ;
break ;
case 'S':
val.s = (jshort)va_arg(*list, int) ;
ret = create_primitive_object(env, f, "java/lang/Short", val) ;
break ;
case 'I':
val.i = (jint)va_arg(*list, int) ;
ret = create_primitive_object(env, f, "java/lang/Integer", val) ;
break ;
case 'J':
val.d = (jdouble)va_arg(*list, double) ;
ret = create_primitive_object(env, f, "java/lang/Long", val) ;
break ;
case 'F':
/* Seems float is not properly promoted to double... */
val.i = (jint)va_arg(*list, int) ;
ret = create_primitive_object(env, f, "java/lang/Float", val) ;
break ;
case 'D':
val.d = (jdouble)va_arg(*list, double) ;
ret = create_primitive_object(env, f, "java/lang/Double", val) ;
break ;
case 'Z':
val.z = (jboolean)va_arg(*list, int) ;
ret = create_primitive_object(env, f, "java/lang/Boolean", val) ;
break ;
case 'C':
val.c = (jchar)va_arg(*list, int) ;
ret = create_primitive_object(env, f, "java/lang/Character", val) ;
break ;
}
return ret ;
}
/*
This is the generic native function that callback java to call the proper
perl method.
*/
jobject JNICALL generic_perl_native(JNIEnv *env, jobject obj, ...){
va_list list ;
jclass cls ;
jmethodID mid ;
jstring jfmt ;
char *fmt ;
int fmt_len ;
jclass obj_cls ;
jobjectArray obj_array ;
jobject arg ;
int i ;
jobject ret = NULL ;
cls = (*(env))->GetObjectClass(env, obj) ;
mid = (*(env))->GetMethodID(env, cls, "LookupMethod", "()Ljava/lang/String;") ;
if (check_exception_from_java(env)){
return NULL ;
}
/* Call obj.LookupMethod to get the format string */
jfmt = (*(env))->CallObjectMethod(env, obj, mid) ;
if (check_exception_from_java(env)){
return NULL ;
}
fmt = (char *)((*(env))->GetStringUTFChars(env, jfmt, NULL)) ;
fmt_len = strlen(fmt) ;
obj_cls = (*(env))->FindClass(env, "java/lang/Object") ;
if (check_exception_from_java(env)){
return NULL ;
}
obj_array = (*(env))->NewObjectArray(env, fmt_len, obj_cls, NULL) ;
if (check_exception_from_java(env)){
return NULL ;
}
(*(env))->SetObjectArrayElement(env, obj_array, 0, obj) ;
if (check_exception_from_java(env)){
return NULL ;
}
va_start(list, obj) ;
for (i = 1 ; i < fmt_len ; i++){
if (fmt[i] != 'L'){
arg = extract_va_arg(env, &list, fmt[i]) ;
if (arg == NULL){
return NULL ;
}
}
else{
arg = (jobject)va_arg(list, jobject) ;
}
(*(env))->SetObjectArrayElement(env, obj_array, i, arg) ;
if (check_exception_from_java(env)){
return NULL ;
}
}
va_end(list) ;
/* Call obj.InvokePerlMethod and grab the returned object and return it */
mid = (*(env))->GetMethodID(env, cls, "InvokePerlMethod", "([Ljava/lang/Object;)Ljava/lang/Object;") ;
if (check_exception_from_java(env)){
return NULL ;
}
ret = (*(env))->CallObjectMethod(env, obj, mid, obj_array) ;
if (check_exception_from_java(env)){
return NULL ;
}
return ret ;
}
/*
This function is used to register the specified native method and associate it with our magic
method that trap and redirects all the Perl native calls.
*/
JNIEXPORT void JNICALL Java_org_perl_inline_java_InlineJavaPerlNatives_RegisterMethod(JNIEnv *env, jobject obj, jclass cls, jstring name, jstring signature){
JNINativeMethod nm ;
/* Register the function */
nm.name = (char *)((*(env))->GetStringUTFChars(env, name, NULL)) ;
nm.signature = (char *)((*(env))->GetStringUTFChars(env, signature, NULL)) ;
nm.fnPtr = generic_perl_native ;
(*(env))->RegisterNatives(env, cls, &nm, 1) ;
(*(env))->ReleaseStringUTFChars(env, name, nm.name) ;
(*(env))->ReleaseStringUTFChars(env, signature, nm.signature) ;
if (check_exception_from_java(env)){
return ;
}
}
|