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 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605
|
/*=========================================================================
Program: Visualization Toolkit
Module: vtkJavaUtil.cxx
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
#ifdef _INTEGRAL_MAX_BITS
#undef _INTEGRAL_MAX_BITS
#endif
#define _INTEGRAL_MAX_BITS 64
#include "vtkObject.h"
#include "vtkDebugLeaks.h"
#include "vtkWindows.h"
#include "vtkJavaUtil.h"
// Silence warning like
// "dereferencing type-punned pointer will break strict-aliasing rules"
// it happens because this kind of expression: (void **)(&e)
#if defined(__GNUC__)
#pragma GCC diagnostic ignored "-Wstrict-aliasing"
#endif
JNIEXPORT jlong vtkJavaGetId(JNIEnv *env,jobject obj)
{
jfieldID id;
jlong result;
id = env->GetFieldID(env->GetObjectClass(obj),"vtkId","J");
result = env->GetLongField(obj,id);
return result;
}
JNIEXPORT void *vtkJavaGetPointerFromObject(JNIEnv *env, jobject obj)
{
return obj ? (void*)(size_t)vtkJavaGetId(env, obj) : 0;
}
JNIEXPORT jarray vtkJavaMakeJArrayOfDoubleFromDouble(JNIEnv *env, double *ptr, int size)
{
jdoubleArray ret;
int i;
jdouble *array;
ret = env->NewDoubleArray(size);
if (ret == 0)
{
// should throw an exception here
return 0;
}
array = env->GetDoubleArrayElements(ret,NULL);
// copy the data
for (i = 0; i < size; i++)
{
array[i] = ptr[i];
}
env->ReleaseDoubleArrayElements(ret,array,0);
return ret;
}
JNIEXPORT jarray vtkJavaMakeJArrayOfDoubleFromFloat(JNIEnv *env, float *ptr, int size)
{
jdoubleArray ret;
int i;
jdouble *array;
ret = env->NewDoubleArray(size);
if (ret == 0)
{
// should throw an exception here
return 0;
}
array = env->GetDoubleArrayElements(ret,NULL);
// copy the data
for (i = 0; i < size; i++)
{
array[i] = ptr[i];
}
env->ReleaseDoubleArrayElements(ret,array,0);
return ret;
}
JNIEXPORT jarray vtkJavaMakeJArrayOfIntFromInt(JNIEnv *env, int *ptr, int size)
{
jintArray ret;
int i;
jint *array;
ret = env->NewIntArray(size);
if (ret == 0)
{
// should throw an exception here
return 0;
}
array = env->GetIntArrayElements(ret,NULL);
// copy the data
for (i = 0; i < size; i++)
{
array[i] = ptr[i];
}
env->ReleaseIntArrayElements(ret,array,0);
return ret;
}
JNIEXPORT jarray vtkJavaMakeJArrayOfIntFromIdType(JNIEnv *env, vtkIdType *ptr, int size)
{
jintArray ret;
int i;
jint *array;
ret = env->NewIntArray(size);
if (ret == 0)
{
// should throw an exception here
return 0;
}
array = env->GetIntArrayElements(ret,NULL);
// copy the data
for (i = 0; i < size; i++)
{
array[i] = (int)ptr[i];
}
env->ReleaseIntArrayElements(ret,array,0);
return ret;
}
JNIEXPORT jarray vtkJavaMakeJArrayOfIntFromLongLong(JNIEnv *env, long long *ptr, int size)
{
jintArray ret;
int i;
jint *array;
ret = env->NewIntArray(size);
if (ret == 0)
{
// should throw an exception here
return 0;
}
array = env->GetIntArrayElements(ret,NULL);
// copy the data
for (i = 0; i < size; i++)
{
array[i] = (int)ptr[i];
}
env->ReleaseIntArrayElements(ret,array,0);
return ret;
}
JNIEXPORT jarray vtkJavaMakeJArrayOfIntFromSignedChar(JNIEnv *env, signed char *ptr, int size)
{
jintArray ret;
int i;
jint *array;
ret = env->NewIntArray(size);
if (ret == 0)
{
// should throw an exception here
return 0;
}
array = env->GetIntArrayElements(ret,NULL);
// copy the data
for (i = 0; i < size; i++)
{
array[i] = (int)ptr[i];
}
env->ReleaseIntArrayElements(ret,array,0);
return ret;
}
JNIEXPORT jarray vtkJavaMakeJArrayOfFloatFromFloat(JNIEnv *env, float *ptr, int size)
{
jfloatArray ret;
int i;
jfloat *array;
ret = env->NewFloatArray(size);
if (ret == 0)
{
// should throw an exception here
return 0;
}
array = env->GetFloatArrayElements(ret,NULL);
// copy the data
for (i = 0; i < size; i++)
{
array[i] = ptr[i];
}
env->ReleaseFloatArrayElements(ret,array,0);
return ret;
}
JNIEXPORT jarray vtkJavaMakeJArrayOfShortFromShort(JNIEnv *env, short *ptr, int size)
{
jshortArray ret;
int i;
jshort *array;
ret = env->NewShortArray(size);
if (ret == 0)
{
// should throw an exception here
return 0;
}
array = env->GetShortArrayElements(ret,NULL);
// copy the data
for (i = 0; i < size; i++)
{
array[i] = ptr[i];
}
env->ReleaseShortArrayElements(ret,array,0);
return ret;
}
JNIEXPORT jarray vtkJavaMakeJArrayOfByteFromUnsignedChar(JNIEnv *env, unsigned char *ptr, int size)
{
jbyteArray ret;
int i;
jbyte *array;
ret = env->NewByteArray(size);
if (ret == 0)
{
// should throw an exception here
return 0;
}
array = env->GetByteArrayElements(ret,NULL);
// copy the data
for (i = 0; i < size; i++)
{
array[i] = ptr[i];
}
env->ReleaseByteArrayElements(ret,array,0);
return ret;
}
JNIEXPORT jarray vtkJavaMakeJArrayOfLongFromLong(JNIEnv *env, long *ptr, int size)
{
cout.flush();
jlongArray ret;
int i;
jlong *array;
ret = env->NewLongArray(size);
if (ret == 0)
{
// should throw an exception here
return 0;
}
array = env->GetLongArrayElements(ret,NULL);
// copy the data
for (i = 0; i < size; i++)
{
array[i] = ptr[i];
}
env->ReleaseLongArrayElements(ret,array,0);
return ret;
}
JNIEXPORT jarray vtkJavaMakeJArrayOfUnsignedLongFromUnsignedLong(JNIEnv *env,unsigned long *ptr,int size)
{
cout.flush();
jlongArray ret;
int i;
jlong *array;
ret = env->NewLongArray(size);
if (ret == 0)
{
// should throw an exception here
return 0;
}
array = env->GetLongArrayElements(ret,NULL);
// copy the data
for (i = 0; i < size; i++)
{
array[i] = ptr[i];
}
env->ReleaseLongArrayElements(ret,array,0);
return ret;
}
JNIEXPORT jarray vtkJavaMakeJArrayOfUnsignedShortFromUnsignedShort(JNIEnv *env,unsigned short *ptr,int size)
{
cout.flush();
jshortArray ret;
int i;
jshort *array;
ret = env->NewShortArray(size);
if (ret == 0)
{
// should throw an exception here
return 0;
}
array = env->GetShortArrayElements(ret,NULL);
// copy the data
for (i = 0; i < size; i++)
{
array[i] = ptr[i];
}
env->ReleaseShortArrayElements(ret,array,0);
return ret;
}
JNIEXPORT jarray vtkJavaMakeJArrayOfUnsignedCharFromUnsignedChar(JNIEnv *env,unsigned char *ptr,int size)
{
cout.flush();
jbyteArray ret;
int i;
jbyte *array;
ret = env->NewByteArray(size);
if (ret == 0)
{
// should throw an exception here
return 0;
}
array = env->GetByteArrayElements(ret,NULL);
// copy the data
for (i = 0; i < size; i++)
{
array[i] = ptr[i];
}
env->ReleaseByteArrayElements(ret,array,0);
return ret;
}
JNIEXPORT jarray vtkJavaMakeJArrayOfUnsignedIntFromUnsignedInt(JNIEnv *env,unsigned int *ptr,int size)
{
cout.flush();
jintArray ret;
int i;
jint *array;
ret = env->NewIntArray(size);
if (ret == 0)
{
// should throw an exception here
return 0;
}
array = env->GetIntArrayElements(ret,NULL);
// copy the data
for (i = 0; i < size; i++)
{
array[i] = ptr[i];
}
env->ReleaseIntArrayElements(ret,array,0);
return ret;
}
JNIEXPORT jarray vtkJavaMakeJArrayOfCharFromChar(JNIEnv *env, char *ptr, int size)
{
cout.flush();
jcharArray ret;
int i;
jchar *array;
ret = env->NewCharArray(size);
if (ret == 0)
{
// should throw an exception here
return 0;
}
array = env->GetCharArrayElements(ret,NULL);
// copy the data
for (i = 0; i < size; i++)
{
array[i] = ptr[i];
}
env->ReleaseCharArrayElements(ret,array,0);
return ret;
}
JNIEXPORT jarray vtkJavaMakeJArrayOfIntFromBool(JNIEnv *env, bool *ptr,int size)
{
cout.flush();
jintArray ret;
int i;
jint *array;
ret = env->NewIntArray(size);
if (ret == 0)
{
// should throw an exception here
return 0;
}
array = env->GetIntArrayElements(ret,NULL);
// copy the data
for (i = 0; i < size; i++)
{
array[i] = ptr[i];
}
env->ReleaseIntArrayElements(ret,array,0);
return ret;
}
// http://java.sun.com/docs/books/jni/html/pitfalls.html#12400
static void JNU_ThrowByName(JNIEnv *env, const char *name, const char *msg)
{
jclass cls = env->FindClass(name);
/* if cls is NULL, an exception has already been thrown */
if (cls != NULL) {
env->ThrowNew(cls, msg);
}
/* free the local ref */
env->DeleteLocalRef(cls);
}
static char *JNU_GetStringNativeChars(JNIEnv *env, jstring jstr)
{
if (jstr == NULL) {
return NULL;
}
jbyteArray bytes = 0;
jthrowable exc;
char *result = 0;
if (env->EnsureLocalCapacity(2) < 0) {
return 0; /* out of memory error */
}
jclass Class_java_lang_String = env->FindClass("java/lang/String");
jmethodID MID_String_getBytes = env->GetMethodID(
Class_java_lang_String, "getBytes", "()[B");
bytes = (jbyteArray) env->CallObjectMethod(jstr,
MID_String_getBytes);
exc = env->ExceptionOccurred();
if (!exc) {
jint len = env->GetArrayLength(bytes);
result = new char [len + 1];
if (result == 0) {
JNU_ThrowByName(env, "java/lang/OutOfMemoryError",
0);
env->DeleteLocalRef(bytes);
return 0;
}
env->GetByteArrayRegion(bytes, 0, len,
(jbyte *)result);
result[len] = 0; /* NULL-terminate */
} else {
env->DeleteLocalRef(exc);
}
env->DeleteLocalRef(bytes);
return result;
}
JNIEXPORT char *vtkJavaUTFToChar(JNIEnv *env, jstring in)
{
return JNU_GetStringNativeChars(env, in);
}
JNIEXPORT bool vtkJavaUTFToString(JNIEnv *env, jstring in, std::string &out)
{
const char *cstring = JNU_GetStringNativeChars(env, in);
if( cstring )
{
out = cstring;
delete[] cstring;
return true;
}
return false;
}
JNIEXPORT jstring vtkJavaMakeJavaString(JNIEnv *env, const char *in)
{
if (!in) {
return env->NewStringUTF("");
} else {
return env->NewStringUTF(in);
}
}
//**jcp this is the callback inteface stub for Java. no user parms are passed
//since the callback must be a method of a class. We make the rash assumption
//that the <this> pointer will anchor any required other elements for the
//called functions. - edited by km
JNIEXPORT void vtkJavaVoidFunc(void* f)
{
vtkJavaVoidFuncArg *iprm = (vtkJavaVoidFuncArg *)f;
// make sure we have a valid method ID
if (iprm->mid)
{
JNIEnv *e;
// it should already be atached
#ifdef JNI_VERSION_1_2
iprm->vm->AttachCurrentThread((void **)(&e),NULL);
#else
iprm->vm->AttachCurrentThread((JNIEnv_**)(&e),NULL);
#endif
e->CallVoidMethod(iprm->uobj,iprm->mid,NULL);
}
}
JNIEXPORT void vtkJavaVoidFuncArgDelete(void* arg)
{
vtkJavaVoidFuncArg *arg2;
arg2 = (vtkJavaVoidFuncArg *)arg;
JNIEnv *e;
// it should already be atached
#ifdef JNI_VERSION_1_2
arg2->vm->AttachCurrentThread((void **)(&e),NULL);
#else
arg2->vm->AttachCurrentThread((JNIEnv_**)(&e),NULL);
#endif
// free the structure
e->DeleteGlobalRef(arg2->uobj);
delete arg2;
}
vtkJavaCommand::vtkJavaCommand()
{
this->vm = NULL;
}
vtkJavaCommand::~vtkJavaCommand()
{
JNIEnv *e;
// it should already be atached
#ifdef JNI_VERSION_1_2
this->vm->AttachCurrentThread((void **)(&e),NULL);
#else
this->vm->AttachCurrentThread((JNIEnv_**)(&e),NULL);
#endif
// free the structure
e->DeleteGlobalRef(this->uobj);
}
void vtkJavaCommand::Execute(vtkObject *, unsigned long, void *)
{
// make sure we have a valid method ID
if (this->mid)
{
JNIEnv *e;
// it should already be atached
#ifdef JNI_VERSION_1_2
this->vm->AttachCurrentThread((void **)(&e),NULL);
#else
this->vm->AttachCurrentThread((JNIEnv_**)(&e),NULL);
#endif
e->CallVoidMethod(this->uobj,this->mid,NULL);
}
}
|