1
1
This commit improves and corrects error handling.  In
cases where existing objects are altered after a call
to ompi_java_exceptionCheck, the results of the exception
check method are checked.  In the case of an exception,
memory is cleaned up and the code returns to Java without
altering existing objects.

Signed-off-by: Nathaniel Graham <ngraham@lanl.gov>
Этот коммит содержится в:
Nathaniel Graham 2016-09-07 13:57:35 -06:00
родитель 9c496f767b
Коммит 5380427050
6 изменённых файлов: 185 добавлений и 67 удалений

Просмотреть файл

@ -11,6 +11,8 @@
* All rights reserved. * All rights reserved.
* Copyright (c) 2015 Research Organization for Information Science * Copyright (c) 2015 Research Organization for Information Science
* and Technology (RIST). All rights reserved. * and Technology (RIST). All rights reserved.
* Copyright (c) 2016 Los Alamos National Security, LLC. All rights
* reserved.
* $COPYRIGHT$ * $COPYRIGHT$
* *
* Additional copyrights may follow * Additional copyrights may follow
@ -205,7 +207,10 @@ JNIEXPORT jlongArray JNICALL Java_mpi_Comm_iDup(
MPI_Comm newcomm; MPI_Comm newcomm;
MPI_Request request; MPI_Request request;
int rc = MPI_Comm_idup((MPI_Comm)comm, &newcomm, &request); int rc = MPI_Comm_idup((MPI_Comm)comm, &newcomm, &request);
ompi_java_exceptionCheck(env, rc);
if(ompi_java_exceptionCheck(env, rc))
return NULL;
jlongArray jcr = (*env)->NewLongArray(env, 2); jlongArray jcr = (*env)->NewLongArray(env, 2);
jlong *cr = (jlong*)(*env)->GetPrimitiveArrayCritical(env, jcr, NULL); jlong *cr = (jlong*)(*env)->GetPrimitiveArrayCritical(env, jcr, NULL);
cr[0] = (jlong)newcomm; cr[0] = (jlong)newcomm;
@ -332,6 +337,7 @@ JNIEXPORT void JNICALL Java_mpi_Comm_recv(
jobject buf, jboolean db, jint offset, jint count, jobject buf, jboolean db, jint offset, jint count,
jlong jType, jint bType, jint source, jint tag, jlongArray jStatus) jlong jType, jint bType, jint source, jint tag, jlongArray jStatus)
{ {
jboolean exception;
MPI_Comm comm = (MPI_Comm)jComm; MPI_Comm comm = (MPI_Comm)jComm;
MPI_Datatype type = (MPI_Datatype)jType; MPI_Datatype type = (MPI_Datatype)jType;
@ -341,10 +347,12 @@ JNIEXPORT void JNICALL Java_mpi_Comm_recv(
MPI_Status status; MPI_Status status;
int rc = MPI_Recv(ptr, count, type, source, tag, comm, &status); int rc = MPI_Recv(ptr, count, type, source, tag, comm, &status);
ompi_java_exceptionCheck(env, rc); exception = ompi_java_exceptionCheck(env, rc);
ompi_java_releaseWritePtr(ptr,item,env,buf,db,offset,count,type,bType); ompi_java_releaseWritePtr(ptr,item,env,buf,db,offset,count,type,bType);
ompi_java_status_set(env, jStatus, &status);
if(!exception)
ompi_java_status_set(env, jStatus, &status);
} }
JNIEXPORT void JNICALL Java_mpi_Comm_sendRecv( JNIEXPORT void JNICALL Java_mpi_Comm_sendRecv(
@ -355,6 +363,7 @@ JNIEXPORT void JNICALL Java_mpi_Comm_sendRecv(
jlong rjType, jint rBType, jint source, jint rTag, jlong rjType, jint rBType, jint source, jint rTag,
jlongArray jStatus) jlongArray jStatus)
{ {
jboolean exception;
MPI_Comm comm = (MPI_Comm)jComm; MPI_Comm comm = (MPI_Comm)jComm;
MPI_Datatype sType = (MPI_Datatype)sjType; MPI_Datatype sType = (MPI_Datatype)sjType;
MPI_Datatype rType = (MPI_Datatype)rjType; MPI_Datatype rType = (MPI_Datatype)rjType;
@ -369,10 +378,12 @@ JNIEXPORT void JNICALL Java_mpi_Comm_sendRecv(
int rc = MPI_Sendrecv(sPtr, sCount, sType, dest, sTag, int rc = MPI_Sendrecv(sPtr, sCount, sType, dest, sTag,
rPtr, rCount, rType, source, rTag, comm, &status); rPtr, rCount, rType, source, rTag, comm, &status);
ompi_java_exceptionCheck(env, rc); exception = ompi_java_exceptionCheck(env, rc);
ompi_java_releaseReadPtr(sPtr, sItem, sBuf, sdb); ompi_java_releaseReadPtr(sPtr, sItem, sBuf, sdb);
ompi_java_releaseWritePtr(rPtr,rItem,env,rBuf,rdb,rOff,rCount,rType,rBType); ompi_java_releaseWritePtr(rPtr,rItem,env,rBuf,rdb,rOff,rCount,rType,rBType);
ompi_java_status_set(env, jStatus, &status);
if(!exception)
ompi_java_status_set(env, jStatus, &status);
} }
JNIEXPORT void JNICALL Java_mpi_Comm_sendRecvReplace( JNIEXPORT void JNICALL Java_mpi_Comm_sendRecvReplace(
@ -392,8 +403,9 @@ JNIEXPORT void JNICALL Java_mpi_Comm_sendRecvReplace(
int rc = MPI_Sendrecv_replace(ptr, count, type, dest, int rc = MPI_Sendrecv_replace(ptr, count, type, dest,
sTag, source, rTag, comm, &status); sTag, source, rTag, comm, &status);
ompi_java_exceptionCheck(env, rc); if(!ompi_java_exceptionCheck(env, rc))
ompi_java_status_set(env, jStatus, &status); ompi_java_status_set(env, jStatus, &status);
ompi_java_releaseWritePtr(ptr,item,env,buf,db,offset,count,type,bType); ompi_java_releaseWritePtr(ptr,item,env,buf,db,offset,count,type,bType);
} }
@ -662,8 +674,9 @@ JNIEXPORT void JNICALL Java_mpi_Comm_probe(
{ {
MPI_Status status; MPI_Status status;
int rc = MPI_Probe(source, tag, (MPI_Comm)comm, &status); int rc = MPI_Probe(source, tag, (MPI_Comm)comm, &status);
ompi_java_exceptionCheck(env, rc);
ompi_java_status_set(env, jStatus, &status); if(!ompi_java_exceptionCheck(env, rc))
ompi_java_status_set(env, jStatus, &status);
} }
JNIEXPORT jint JNICALL Java_mpi_Comm_getTopology( JNIEXPORT jint JNICALL Java_mpi_Comm_getTopology(

Просмотреть файл

@ -9,6 +9,8 @@
* University of Stuttgart. All rights reserved. * University of Stuttgart. All rights reserved.
* Copyright (c) 2004-2005 The Regents of the University of California. * Copyright (c) 2004-2005 The Regents of the University of California.
* All rights reserved. * All rights reserved.
* Copyright (c) 2016 Los Alamos National Security, LLC. All rights
* reserved.
* $COPYRIGHT$ * $COPYRIGHT$
* *
* Additional copyrights may follow * Additional copyrights may follow
@ -92,7 +94,8 @@ JNIEXPORT void JNICALL Java_mpi_Datatype_getLbExtent(
{ {
MPI_Aint lb, extent; MPI_Aint lb, extent;
int rc = MPI_Type_get_extent((MPI_Datatype)type, &lb, &extent); int rc = MPI_Type_get_extent((MPI_Datatype)type, &lb, &extent);
ompi_java_exceptionCheck(env, rc); if(ompi_java_exceptionCheck(env, rc))
return;
jint *lbExt = (*env)->GetIntArrayElements(env, jLbExt, NULL); jint *lbExt = (*env)->GetIntArrayElements(env, jLbExt, NULL);
lbExt[0] = (jint)lb; lbExt[0] = (jint)lb;
@ -105,7 +108,8 @@ JNIEXPORT void JNICALL Java_mpi_Datatype_getTrueLbExtent(
{ {
MPI_Aint lb, extent; MPI_Aint lb, extent;
int rc = MPI_Type_get_true_extent((MPI_Datatype)type, &lb, &extent); int rc = MPI_Type_get_true_extent((MPI_Datatype)type, &lb, &extent);
ompi_java_exceptionCheck(env, rc); if(ompi_java_exceptionCheck(env, rc))
return;
jint *lbExt = (*env)->GetIntArrayElements(env, jLbExt, NULL); jint *lbExt = (*env)->GetIntArrayElements(env, jLbExt, NULL);
lbExt[0] = (jint)lb; lbExt[0] = (jint)lb;

Просмотреть файл

@ -9,6 +9,8 @@
* University of Stuttgart. All rights reserved. * University of Stuttgart. All rights reserved.
* Copyright (c) 2004-2005 The Regents of the University of California. * Copyright (c) 2004-2005 The Regents of the University of California.
* All rights reserved. * All rights reserved.
* Copyright (c) 2016 Los Alamos National Security, LLC. All rights
* reserved.
* $COPYRIGHT$ * $COPYRIGHT$
* *
* Additional copyrights may follow * Additional copyrights may follow
@ -137,6 +139,7 @@ JNIEXPORT void JNICALL Java_mpi_File_readAt(
jobject buf, jboolean db, jint off, jint count, jobject buf, jboolean db, jint off, jint count,
jlong jType, jint bType, jlongArray stat) jlong jType, jint bType, jlongArray stat)
{ {
jboolean exception;
MPI_Datatype type = (MPI_Datatype)jType; MPI_Datatype type = (MPI_Datatype)jType;
void *ptr; void *ptr;
ompi_java_buffer_t *item; ompi_java_buffer_t *item;
@ -146,9 +149,11 @@ JNIEXPORT void JNICALL Java_mpi_File_readAt(
int rc = MPI_File_read_at((MPI_File)fh, (MPI_Offset)fileOffset, int rc = MPI_File_read_at((MPI_File)fh, (MPI_Offset)fileOffset,
ptr, count, type, &status); ptr, count, type, &status);
ompi_java_exceptionCheck(env, rc); exception = ompi_java_exceptionCheck(env, rc);
ompi_java_releaseWritePtr(ptr, item, env, buf, db, off, count, type, bType); ompi_java_releaseWritePtr(ptr, item, env, buf, db, off, count, type, bType);
ompi_java_status_set(env, stat, &status);
if(!exception)
ompi_java_status_set(env, stat, &status);
} }
JNIEXPORT void JNICALL Java_mpi_File_readAtAll( JNIEXPORT void JNICALL Java_mpi_File_readAtAll(
@ -156,6 +161,7 @@ JNIEXPORT void JNICALL Java_mpi_File_readAtAll(
jobject buf, jboolean db, jint off, jint count, jobject buf, jboolean db, jint off, jint count,
jlong jType, jint bType, jlongArray stat) jlong jType, jint bType, jlongArray stat)
{ {
jboolean exception;
MPI_Datatype type = (MPI_Datatype)jType; MPI_Datatype type = (MPI_Datatype)jType;
void *ptr; void *ptr;
ompi_java_buffer_t *item; ompi_java_buffer_t *item;
@ -165,9 +171,11 @@ JNIEXPORT void JNICALL Java_mpi_File_readAtAll(
int rc = MPI_File_read_at_all((MPI_File)fh, (MPI_Offset)fileOffset, int rc = MPI_File_read_at_all((MPI_File)fh, (MPI_Offset)fileOffset,
ptr, count, type, &status); ptr, count, type, &status);
ompi_java_exceptionCheck(env, rc); exception = ompi_java_exceptionCheck(env, rc);
ompi_java_releaseWritePtr(ptr, item, env, buf, db, off, count, type, bType); ompi_java_releaseWritePtr(ptr, item, env, buf, db, off, count, type, bType);
ompi_java_status_set(env, stat, &status);
if(!exception)
ompi_java_status_set(env, stat, &status);
} }
JNIEXPORT void JNICALL Java_mpi_File_writeAt( JNIEXPORT void JNICALL Java_mpi_File_writeAt(
@ -175,6 +183,7 @@ JNIEXPORT void JNICALL Java_mpi_File_writeAt(
jobject buf, jboolean db, jint off, jint count, jobject buf, jboolean db, jint off, jint count,
jlong jType, jint bType, jlongArray stat) jlong jType, jint bType, jlongArray stat)
{ {
jboolean exception;
MPI_Datatype type = (MPI_Datatype)jType; MPI_Datatype type = (MPI_Datatype)jType;
void *ptr; void *ptr;
ompi_java_buffer_t *item; ompi_java_buffer_t *item;
@ -184,9 +193,11 @@ JNIEXPORT void JNICALL Java_mpi_File_writeAt(
int rc = MPI_File_write_at((MPI_File)fh, (MPI_Offset)fileOffset, int rc = MPI_File_write_at((MPI_File)fh, (MPI_Offset)fileOffset,
ptr, count, type, &status); ptr, count, type, &status);
ompi_java_exceptionCheck(env, rc); exception = ompi_java_exceptionCheck(env, rc);
ompi_java_releaseReadPtr(ptr, item, buf, db); ompi_java_releaseReadPtr(ptr, item, buf, db);
ompi_java_status_set(env, stat, &status);
if(!exception)
ompi_java_status_set(env, stat, &status);
} }
JNIEXPORT void JNICALL Java_mpi_File_writeAtAll( JNIEXPORT void JNICALL Java_mpi_File_writeAtAll(
@ -194,6 +205,7 @@ JNIEXPORT void JNICALL Java_mpi_File_writeAtAll(
jobject buf, jboolean db, jint off, jint count, jobject buf, jboolean db, jint off, jint count,
jlong jType, jint bType, jlongArray stat) jlong jType, jint bType, jlongArray stat)
{ {
jboolean exception;
MPI_Datatype type = (MPI_Datatype)jType; MPI_Datatype type = (MPI_Datatype)jType;
void *ptr; void *ptr;
ompi_java_buffer_t *item; ompi_java_buffer_t *item;
@ -203,9 +215,11 @@ JNIEXPORT void JNICALL Java_mpi_File_writeAtAll(
int rc = MPI_File_write_at_all((MPI_File)fh, (MPI_Offset)fileOffset, int rc = MPI_File_write_at_all((MPI_File)fh, (MPI_Offset)fileOffset,
ptr, count, (MPI_Datatype)type, &status); ptr, count, (MPI_Datatype)type, &status);
ompi_java_exceptionCheck(env, rc); exception = ompi_java_exceptionCheck(env, rc);
ompi_java_releaseReadPtr(ptr, item, buf, db); ompi_java_releaseReadPtr(ptr, item, buf, db);
ompi_java_status_set(env, stat, &status);
if(!exception)
ompi_java_status_set(env, stat, &status);
} }
JNIEXPORT jlong JNICALL Java_mpi_File_iReadAt( JNIEXPORT jlong JNICALL Java_mpi_File_iReadAt(
@ -240,60 +254,72 @@ JNIEXPORT void JNICALL Java_mpi_File_read(
JNIEnv *env, jobject jthis, jlong fh, jobject buf, jboolean db, JNIEnv *env, jobject jthis, jlong fh, jobject buf, jboolean db,
jint off, jint count, jlong jType, jint bType, jlongArray stat) jint off, jint count, jlong jType, jint bType, jlongArray stat)
{ {
jboolean exception;
MPI_Datatype type = (MPI_Datatype)jType; MPI_Datatype type = (MPI_Datatype)jType;
void *ptr; void *ptr;
ompi_java_buffer_t *item; ompi_java_buffer_t *item;
ompi_java_getWritePtr(&ptr, &item, env, buf, db, count, type); ompi_java_getWritePtr(&ptr, &item, env, buf, db, count, type);
MPI_Status status; MPI_Status status;
int rc = MPI_File_read((MPI_File)fh, ptr, count, type, &status); int rc = MPI_File_read((MPI_File)fh, ptr, count, type, &status);
ompi_java_exceptionCheck(env, rc); exception = ompi_java_exceptionCheck(env, rc);
ompi_java_releaseWritePtr(ptr, item, env, buf, db, off, count, type, bType); ompi_java_releaseWritePtr(ptr, item, env, buf, db, off, count, type, bType);
ompi_java_status_set(env, stat, &status);
if(!exception)
ompi_java_status_set(env, stat, &status);
} }
JNIEXPORT void JNICALL Java_mpi_File_readAll( JNIEXPORT void JNICALL Java_mpi_File_readAll(
JNIEnv *env, jobject jthis, jlong fh, jobject buf, jboolean db, JNIEnv *env, jobject jthis, jlong fh, jobject buf, jboolean db,
jint off, jint count, jlong jType, jint bType, jlongArray stat) jint off, jint count, jlong jType, jint bType, jlongArray stat)
{ {
jboolean exception;
MPI_Datatype type = (MPI_Datatype)jType; MPI_Datatype type = (MPI_Datatype)jType;
void *ptr; void *ptr;
ompi_java_buffer_t *item; ompi_java_buffer_t *item;
ompi_java_getWritePtr(&ptr, &item, env, buf, db, count, type); ompi_java_getWritePtr(&ptr, &item, env, buf, db, count, type);
MPI_Status status; MPI_Status status;
int rc = MPI_File_read_all((MPI_File)fh, ptr, count, type, &status); int rc = MPI_File_read_all((MPI_File)fh, ptr, count, type, &status);
ompi_java_exceptionCheck(env, rc); exception = ompi_java_exceptionCheck(env, rc);
ompi_java_releaseWritePtr(ptr, item, env, buf, db, off, count, type, bType); ompi_java_releaseWritePtr(ptr, item, env, buf, db, off, count, type, bType);
ompi_java_status_set(env, stat, &status);
if(!exception)
ompi_java_status_set(env, stat, &status);
} }
JNIEXPORT void JNICALL Java_mpi_File_write( JNIEXPORT void JNICALL Java_mpi_File_write(
JNIEnv *env, jobject jthis, jlong fh, jobject buf, jboolean db, JNIEnv *env, jobject jthis, jlong fh, jobject buf, jboolean db,
jint off, jint count, jlong jType, jint bType, jlongArray stat) jint off, jint count, jlong jType, jint bType, jlongArray stat)
{ {
jboolean exception;
MPI_Datatype type = (MPI_Datatype)jType; MPI_Datatype type = (MPI_Datatype)jType;
void *ptr; void *ptr;
ompi_java_buffer_t *item; ompi_java_buffer_t *item;
ompi_java_getReadPtr(&ptr, &item, env, buf, db, off, count, type, bType); ompi_java_getReadPtr(&ptr, &item, env, buf, db, off, count, type, bType);
MPI_Status status; MPI_Status status;
int rc = MPI_File_write((MPI_File)fh, ptr, count, type, &status); int rc = MPI_File_write((MPI_File)fh, ptr, count, type, &status);
ompi_java_exceptionCheck(env, rc); exception = ompi_java_exceptionCheck(env, rc);
ompi_java_releaseReadPtr(ptr, item, buf, db); ompi_java_releaseReadPtr(ptr, item, buf, db);
ompi_java_status_set(env, stat, &status);
if(!exception)
ompi_java_status_set(env, stat, &status);
} }
JNIEXPORT void JNICALL Java_mpi_File_writeAll( JNIEXPORT void JNICALL Java_mpi_File_writeAll(
JNIEnv *env, jobject jthis, jlong fh, jobject buf, jboolean db, JNIEnv *env, jobject jthis, jlong fh, jobject buf, jboolean db,
jint off, jint count, jlong jType, jint bType, jlongArray stat) jint off, jint count, jlong jType, jint bType, jlongArray stat)
{ {
jboolean exception;
MPI_Datatype type = (MPI_Datatype)jType; MPI_Datatype type = (MPI_Datatype)jType;
void *ptr; void *ptr;
ompi_java_buffer_t *item; ompi_java_buffer_t *item;
ompi_java_getReadPtr(&ptr, &item, env, buf, db, off, count, type, bType); ompi_java_getReadPtr(&ptr, &item, env, buf, db, off, count, type, bType);
MPI_Status status; MPI_Status status;
int rc = MPI_File_write_all((MPI_File)fh, ptr, count, type, &status); int rc = MPI_File_write_all((MPI_File)fh, ptr, count, type, &status);
ompi_java_exceptionCheck(env, rc); exception = ompi_java_exceptionCheck(env, rc);
ompi_java_releaseReadPtr(ptr, item, buf, db); ompi_java_releaseReadPtr(ptr, item, buf, db);
ompi_java_status_set(env, stat, &status);
if(!exception)
ompi_java_status_set(env, stat, &status);
} }
JNIEXPORT jlong JNICALL Java_mpi_File_iRead( JNIEXPORT jlong JNICALL Java_mpi_File_iRead(
@ -353,30 +379,36 @@ JNIEXPORT void JNICALL Java_mpi_File_readShared(
JNIEnv *env, jobject jthis, jlong fh, jobject buf, jboolean db, JNIEnv *env, jobject jthis, jlong fh, jobject buf, jboolean db,
jint off, jint count, jlong jType, jint bType, jlongArray stat) jint off, jint count, jlong jType, jint bType, jlongArray stat)
{ {
jboolean exception;
MPI_Datatype type = (MPI_Datatype)jType; MPI_Datatype type = (MPI_Datatype)jType;
void *ptr; void *ptr;
ompi_java_buffer_t *item; ompi_java_buffer_t *item;
ompi_java_getWritePtr(&ptr, &item, env, buf, db, count, type); ompi_java_getWritePtr(&ptr, &item, env, buf, db, count, type);
MPI_Status status; MPI_Status status;
int rc = MPI_File_read_shared((MPI_File)fh, ptr, count, type, &status); int rc = MPI_File_read_shared((MPI_File)fh, ptr, count, type, &status);
ompi_java_exceptionCheck(env, rc); exception = ompi_java_exceptionCheck(env, rc);
ompi_java_releaseWritePtr(ptr, item, env, buf, db, off, count, type, bType); ompi_java_releaseWritePtr(ptr, item, env, buf, db, off, count, type, bType);
ompi_java_status_set(env, stat, &status);
if(!exception)
ompi_java_status_set(env, stat, &status);
} }
JNIEXPORT void JNICALL Java_mpi_File_writeShared( JNIEXPORT void JNICALL Java_mpi_File_writeShared(
JNIEnv *env, jobject jthis, jlong fh, jobject buf, jboolean db, JNIEnv *env, jobject jthis, jlong fh, jobject buf, jboolean db,
jint off, jint count, jlong jType, jint bType, jlongArray stat) jint off, jint count, jlong jType, jint bType, jlongArray stat)
{ {
jboolean exception;
MPI_Datatype type = (MPI_Datatype)jType; MPI_Datatype type = (MPI_Datatype)jType;
void *ptr; void *ptr;
ompi_java_buffer_t *item; ompi_java_buffer_t *item;
ompi_java_getReadPtr(&ptr, &item, env, buf, db, off, count, type, bType); ompi_java_getReadPtr(&ptr, &item, env, buf, db, off, count, type, bType);
MPI_Status status; MPI_Status status;
int rc = MPI_File_write_shared((MPI_File)fh, ptr, count, type, &status); int rc = MPI_File_write_shared((MPI_File)fh, ptr, count, type, &status);
ompi_java_exceptionCheck(env, rc); exception = ompi_java_exceptionCheck(env, rc);
ompi_java_releaseReadPtr(ptr, item, buf, db); ompi_java_releaseReadPtr(ptr, item, buf, db);
ompi_java_status_set(env, stat, &status);
if(!exception)
ompi_java_status_set(env, stat, &status);
} }
JNIEXPORT jlong JNICALL Java_mpi_File_iReadShared( JNIEXPORT jlong JNICALL Java_mpi_File_iReadShared(
@ -411,30 +443,36 @@ JNIEXPORT void JNICALL Java_mpi_File_readOrdered(
JNIEnv *env, jobject jthis, jlong fh, jobject buf, jboolean db, JNIEnv *env, jobject jthis, jlong fh, jobject buf, jboolean db,
jint off, jint count, jlong jType, jint bType, jlongArray stat) jint off, jint count, jlong jType, jint bType, jlongArray stat)
{ {
jboolean exception;
MPI_Datatype type = (MPI_Datatype)jType; MPI_Datatype type = (MPI_Datatype)jType;
void *ptr; void *ptr;
ompi_java_buffer_t *item; ompi_java_buffer_t *item;
ompi_java_getWritePtr(&ptr, &item, env, buf, db, count, type); ompi_java_getWritePtr(&ptr, &item, env, buf, db, count, type);
MPI_Status status; MPI_Status status;
int rc = MPI_File_read_ordered((MPI_File)fh, ptr, count, type, &status); int rc = MPI_File_read_ordered((MPI_File)fh, ptr, count, type, &status);
ompi_java_exceptionCheck(env, rc); exception = ompi_java_exceptionCheck(env, rc);
ompi_java_releaseWritePtr(ptr, item, env, buf, db, off, count, type, bType); ompi_java_releaseWritePtr(ptr, item, env, buf, db, off, count, type, bType);
ompi_java_status_set(env, stat, &status);
if(!exception)
ompi_java_status_set(env, stat, &status);
} }
JNIEXPORT void JNICALL Java_mpi_File_writeOrdered( JNIEXPORT void JNICALL Java_mpi_File_writeOrdered(
JNIEnv *env, jobject jthis, jlong fh, jobject buf, jboolean db, JNIEnv *env, jobject jthis, jlong fh, jobject buf, jboolean db,
jint off, jint count, jlong jType, jint bType, jlongArray stat) jint off, jint count, jlong jType, jint bType, jlongArray stat)
{ {
jboolean exception;
MPI_Datatype type = (MPI_Datatype)jType; MPI_Datatype type = (MPI_Datatype)jType;
void *ptr; void *ptr;
ompi_java_buffer_t *item; ompi_java_buffer_t *item;
ompi_java_getReadPtr(&ptr, &item, env, buf, db, off, count, type, bType); ompi_java_getReadPtr(&ptr, &item, env, buf, db, off, count, type, bType);
MPI_Status status; MPI_Status status;
int rc = MPI_File_write_ordered((MPI_File)fh, ptr, count, type, &status); int rc = MPI_File_write_ordered((MPI_File)fh, ptr, count, type, &status);
ompi_java_exceptionCheck(env, rc); exception = ompi_java_exceptionCheck(env, rc);
ompi_java_releaseReadPtr(ptr, item, buf, db); ompi_java_releaseReadPtr(ptr, item, buf, db);
ompi_java_status_set(env, stat, &status);
if(!exception)
ompi_java_status_set(env, stat, &status);
} }
JNIEXPORT void JNICALL Java_mpi_File_seekShared( JNIEXPORT void JNICALL Java_mpi_File_seekShared(
@ -470,8 +508,9 @@ JNIEXPORT void JNICALL Java_mpi_File_readAtAllEnd(
MPI_Status status; MPI_Status status;
void *ptr = (*env)->GetDirectBufferAddress(env, buf); void *ptr = (*env)->GetDirectBufferAddress(env, buf);
int rc = MPI_File_read_at_all_end((MPI_File)fh, ptr, &status); int rc = MPI_File_read_at_all_end((MPI_File)fh, ptr, &status);
ompi_java_exceptionCheck(env, rc);
ompi_java_status_set(env, stat, &status); if(!ompi_java_exceptionCheck(env, rc))
ompi_java_status_set(env, stat, &status);
} }
JNIEXPORT void JNICALL Java_mpi_File_writeAtAllBegin( JNIEXPORT void JNICALL Java_mpi_File_writeAtAllBegin(
@ -491,8 +530,9 @@ JNIEXPORT void JNICALL Java_mpi_File_writeAtAllEnd(
MPI_Status status; MPI_Status status;
void *ptr = (*env)->GetDirectBufferAddress(env, buf); void *ptr = (*env)->GetDirectBufferAddress(env, buf);
int rc = MPI_File_write_at_all_end((MPI_File)fh, ptr, &status); int rc = MPI_File_write_at_all_end((MPI_File)fh, ptr, &status);
ompi_java_exceptionCheck(env, rc);
ompi_java_status_set(env, stat, &status); if(!ompi_java_exceptionCheck(env, rc))
ompi_java_status_set(env, stat, &status);
} }
JNIEXPORT void JNICALL Java_mpi_File_readAllBegin( JNIEXPORT void JNICALL Java_mpi_File_readAllBegin(
@ -513,8 +553,9 @@ JNIEXPORT void JNICALL Java_mpi_File_readAllEnd(
MPI_Status status; MPI_Status status;
void *ptr = (*env)->GetDirectBufferAddress(env, buf); void *ptr = (*env)->GetDirectBufferAddress(env, buf);
int rc = MPI_File_read_all_end((MPI_File)fh, ptr, &status); int rc = MPI_File_read_all_end((MPI_File)fh, ptr, &status);
ompi_java_exceptionCheck(env, rc);
ompi_java_status_set(env, stat, &status); if(!ompi_java_exceptionCheck(env, rc))
ompi_java_status_set(env, stat, &status);
} }
JNIEXPORT void JNICALL Java_mpi_File_writeAllBegin( JNIEXPORT void JNICALL Java_mpi_File_writeAllBegin(
@ -535,8 +576,9 @@ JNIEXPORT void JNICALL Java_mpi_File_writeAllEnd(
MPI_Status status; MPI_Status status;
void *ptr = (*env)->GetDirectBufferAddress(env, buf); void *ptr = (*env)->GetDirectBufferAddress(env, buf);
int rc = MPI_File_write_all_end((MPI_File)fh, ptr, &status); int rc = MPI_File_write_all_end((MPI_File)fh, ptr, &status);
ompi_java_exceptionCheck(env, rc);
ompi_java_status_set(env, stat, &status); if(!ompi_java_exceptionCheck(env, rc))
ompi_java_status_set(env, stat, &status);
} }
JNIEXPORT void JNICALL Java_mpi_File_readOrderedBegin( JNIEXPORT void JNICALL Java_mpi_File_readOrderedBegin(
@ -557,8 +599,9 @@ JNIEXPORT void JNICALL Java_mpi_File_readOrderedEnd(
MPI_Status status; MPI_Status status;
void *ptr = (*env)->GetDirectBufferAddress(env, buf); void *ptr = (*env)->GetDirectBufferAddress(env, buf);
int rc = MPI_File_read_ordered_end((MPI_File)fh, ptr, &status); int rc = MPI_File_read_ordered_end((MPI_File)fh, ptr, &status);
ompi_java_exceptionCheck(env, rc);
ompi_java_status_set(env, stat, &status); if(!ompi_java_exceptionCheck(env, rc))
ompi_java_status_set(env, stat, &status);
} }
JNIEXPORT void JNICALL Java_mpi_File_writeOrderedBegin( JNIEXPORT void JNICALL Java_mpi_File_writeOrderedBegin(
@ -579,8 +622,9 @@ JNIEXPORT void JNICALL Java_mpi_File_writeOrderedEnd(
MPI_Status status; MPI_Status status;
void *ptr = (*env)->GetDirectBufferAddress(env, buf); void *ptr = (*env)->GetDirectBufferAddress(env, buf);
int rc = MPI_File_write_ordered_end((MPI_File)fh, ptr, &status); int rc = MPI_File_write_ordered_end((MPI_File)fh, ptr, &status);
ompi_java_exceptionCheck(env, rc);
ompi_java_status_set(env, stat, &status); if(!ompi_java_exceptionCheck(env, rc))
ompi_java_status_set(env, stat, &status);
} }
JNIEXPORT jint JNICALL Java_mpi_File_getTypeExtent( JNIEXPORT jint JNICALL Java_mpi_File_getTypeExtent(

Просмотреть файл

@ -10,7 +10,7 @@
* University of Stuttgart. All rights reserved. * University of Stuttgart. All rights reserved.
* Copyright (c) 2004-2005 The Regents of the University of California. * Copyright (c) 2004-2005 The Regents of the University of California.
* All rights reserved. * All rights reserved.
* Copyright (c) 2015 Los Alamos National Security, LLC. All rights * Copyright (c) 2015-2016 Los Alamos National Security, LLC. All rights
* reserved. * reserved.
* Copyright (c) 2015-2016 Cisco Systems, Inc. All rights reserved. * Copyright (c) 2015-2016 Cisco Systems, Inc. All rights reserved.
* Copyright (c) 2015 Intel, Inc. All rights reserved. * Copyright (c) 2015 Intel, Inc. All rights reserved.
@ -316,7 +316,14 @@ JNIEXPORT jobjectArray JNICALL Java_mpi_MPI_Init_1jni(
} }
int rc = MPI_Init(&len, &sargs); int rc = MPI_Init(&len, &sargs);
ompi_java_exceptionCheck(env, rc);
if(ompi_java_exceptionCheck(env, rc)) {
for(i = 0; i < len; i++)
free (sargs[i]);
free(sargs);
return NULL;
}
mca_base_var_register("ompi", "mpi", "java", "eager", mca_base_var_register("ompi", "mpi", "java", "eager",
"Java buffers eager size", "Java buffers eager size",
MCA_BASE_VAR_TYPE_INT, NULL, 0, 0, MCA_BASE_VAR_TYPE_INT, NULL, 0, 0,
@ -360,7 +367,13 @@ JNIEXPORT jint JNICALL Java_mpi_MPI_InitThread_1jni(
int provided; int provided;
int rc = MPI_Init_thread(&len, &sargs, required, &provided); int rc = MPI_Init_thread(&len, &sargs, required, &provided);
ompi_java_exceptionCheck(env, rc);
if(ompi_java_exceptionCheck(env, rc)) {
for(i = 0; i < len; i++)
free (sargs[i]);
free(sargs);
return -1;
}
findClasses(env); findClasses(env);
initFreeList(); initFreeList();
@ -1126,6 +1139,18 @@ void ompi_java_releasePtrArray(JNIEnv *env, jlongArray array,
(*env)->ReleaseLongArrayElements(env, array, jptr, 0); (*env)->ReleaseLongArrayElements(env, array, jptr, 0);
} }
/* This method checks whether an MPI or JNI exception has occurred.
* If an exception occurs, the C code will continue running. Once
* code execution returns to Java code, an exception is immediately
* thrown. Since an exception has occurred somewhere in the C code,
* the object that is returned from C may not be valid. This is not
* an issue, however, as the assignment opperation will not be
* executed. The results of this method need not be checked if the
* only following code cleans up memory and then returns to Java.
* If existing objects are changed after a call to this method, the
* results need to be checked and, if an error has occurred, the
* code should instead cleanup any memory and return.
*/
jboolean ompi_java_exceptionCheck(JNIEnv *env, int rc) jboolean ompi_java_exceptionCheck(JNIEnv *env, int rc)
{ {
jboolean jni_exception; jboolean jni_exception;

Просмотреть файл

@ -9,6 +9,8 @@
* University of Stuttgart. All rights reserved. * University of Stuttgart. All rights reserved.
* Copyright (c) 2004-2005 The Regents of the University of California. * Copyright (c) 2004-2005 The Regents of the University of California.
* All rights reserved. * All rights reserved.
* Copyright (c) 2016 Los Alamos National Security, LLC. All rights
* reserved.
* $COPYRIGHT$ * $COPYRIGHT$
* *
* Additional copyrights may follow * Additional copyrights may follow
@ -41,8 +43,10 @@ JNIEXPORT jlong JNICALL Java_mpi_Message_mProbe(
MPI_Message message; MPI_Message message;
MPI_Status status; MPI_Status status;
int rc = MPI_Mprobe(source, tag, comm, &message, &status); int rc = MPI_Mprobe(source, tag, comm, &message, &status);
ompi_java_exceptionCheck(env, rc);
ompi_java_status_set(env, jStatus, &status); if(!ompi_java_exceptionCheck(env, rc))
ompi_java_status_set(env, jStatus, &status);
return (jlong)message; return (jlong)message;
} }
@ -75,9 +79,10 @@ JNIEXPORT jlong JNICALL Java_mpi_Message_mRecv(
MPI_Status status; MPI_Status status;
int rc = MPI_Mrecv(ptr, count, type, &message, &status); int rc = MPI_Mrecv(ptr, count, type, &message, &status);
ompi_java_exceptionCheck(env, rc);
if(!ompi_java_exceptionCheck(env, rc))
ompi_java_status_set(env, jStatus, &status); ompi_java_status_set(env, jStatus, &status);
ompi_java_releaseWritePtr(ptr, item, env, buf, db, off, count, type, bType); ompi_java_releaseWritePtr(ptr, item, env, buf, db, off, count, type, bType);
return (jlong)message; return (jlong)message;
} }

Просмотреть файл

@ -9,6 +9,8 @@
* University of Stuttgart. All rights reserved. * University of Stuttgart. All rights reserved.
* Copyright (c) 2004-2005 The Regents of the University of California. * Copyright (c) 2004-2005 The Regents of the University of California.
* All rights reserved. * All rights reserved.
* Copyright (c) 2016 Los Alamos National Security, LLC. All rights
* reserved.
* $COPYRIGHT$ * $COPYRIGHT$
* *
* Additional copyrights may follow * Additional copyrights may follow
@ -145,8 +147,10 @@ JNIEXPORT jlong JNICALL Java_mpi_Request_waitStatus(
MPI_Request req = (MPI_Request)handle; MPI_Request req = (MPI_Request)handle;
MPI_Status status; MPI_Status status;
int rc = MPI_Wait(&req, &status); int rc = MPI_Wait(&req, &status);
ompi_java_exceptionCheck(env, rc);
ompi_java_status_set(env, stat, &status); if(!ompi_java_exceptionCheck(env, rc))
ompi_java_status_set(env, stat, &status);
return (jlong)req; return (jlong)req;
} }
@ -166,8 +170,10 @@ JNIEXPORT jobject JNICALL Java_mpi_Request_testStatus(
int flag; int flag;
MPI_Status status; MPI_Status status;
int rc = MPI_Test(&req, &flag, &status); int rc = MPI_Test(&req, &flag, &status);
ompi_java_exceptionCheck(env, rc);
(*env)->SetLongField(env, jthis, ompi_java.ReqHandle, (jlong)req); if(!ompi_java_exceptionCheck(env, rc))
(*env)->SetLongField(env, jthis, ompi_java.ReqHandle, (jlong)req);
return flag ? ompi_java_status_new(env, &status) : NULL; return flag ? ompi_java_status_new(env, &status) : NULL;
} }
@ -178,8 +184,10 @@ JNIEXPORT jobject JNICALL Java_mpi_Request_getStatus(
int flag; int flag;
MPI_Status status; MPI_Status status;
int rc = MPI_Request_get_status(req, &flag, &status); int rc = MPI_Request_get_status(req, &flag, &status);
ompi_java_exceptionCheck(env, rc);
(*env)->SetLongField(env, jthis, ompi_java.ReqHandle, (jlong)req); if(!ompi_java_exceptionCheck(env, rc))
(*env)->SetLongField(env, jthis, ompi_java.ReqHandle, (jlong)req);
return flag ? ompi_java_status_new(env, &status) : NULL; return flag ? ompi_java_status_new(env, &status) : NULL;
} }
@ -189,14 +197,17 @@ JNIEXPORT jboolean JNICALL Java_mpi_Request_test(
MPI_Request req = (MPI_Request)handle; MPI_Request req = (MPI_Request)handle;
int flag; int flag;
int rc = MPI_Test(&req, &flag, MPI_STATUS_IGNORE); int rc = MPI_Test(&req, &flag, MPI_STATUS_IGNORE);
ompi_java_exceptionCheck(env, rc);
(*env)->SetLongField(env, jthis, ompi_java.ReqHandle, (jlong)req); if(!ompi_java_exceptionCheck(env, rc))
(*env)->SetLongField(env, jthis, ompi_java.ReqHandle, (jlong)req);
return flag ? JNI_TRUE : JNI_FALSE; return flag ? JNI_TRUE : JNI_FALSE;
} }
JNIEXPORT void JNICALL Java_mpi_Request_waitAnyStatus( JNIEXPORT void JNICALL Java_mpi_Request_waitAnyStatus(
JNIEnv *env, jclass clazz, jlongArray requests, jobject stat) JNIEnv *env, jclass clazz, jlongArray requests, jobject stat)
{ {
jboolean exception;
int count = (*env)->GetArrayLength(env, requests); int count = (*env)->GetArrayLength(env, requests);
jlong* jReq; jlong* jReq;
MPI_Request *cReq; MPI_Request *cReq;
@ -204,9 +215,11 @@ JNIEXPORT void JNICALL Java_mpi_Request_waitAnyStatus(
int index; int index;
MPI_Status status; MPI_Status status;
int rc = MPI_Waitany(count, cReq, &index, &status); int rc = MPI_Waitany(count, cReq, &index, &status);
ompi_java_exceptionCheck(env, rc); exception = ompi_java_exceptionCheck(env, rc);
ompi_java_releasePtrArray(env, requests, jReq, (void**)cReq); ompi_java_releasePtrArray(env, requests, jReq, (void**)cReq);
ompi_java_status_setIndex(env, stat, &status, index);
if(!exception)
ompi_java_status_setIndex(env, stat, &status, index);
} }
JNIEXPORT jint JNICALL Java_mpi_Request_waitAny( JNIEXPORT jint JNICALL Java_mpi_Request_waitAny(
@ -333,6 +346,7 @@ JNIEXPORT jobjectArray JNICALL Java_mpi_Request_waitSomeStatus(
JNIEXPORT jintArray JNICALL Java_mpi_Request_waitSome( JNIEXPORT jintArray JNICALL Java_mpi_Request_waitSome(
JNIEnv *env, jclass clazz, jlongArray requests) JNIEnv *env, jclass clazz, jlongArray requests)
{ {
jboolean exception;
int incount = (*env)->GetArrayLength(env, requests); int incount = (*env)->GetArrayLength(env, requests);
jlong* jReq; jlong* jReq;
MPI_Request *cReq; MPI_Request *cReq;
@ -340,8 +354,14 @@ JNIEXPORT jintArray JNICALL Java_mpi_Request_waitSome(
int *indices = (int*)calloc(incount, sizeof(int)); int *indices = (int*)calloc(incount, sizeof(int));
int outcount; int outcount;
int rc = MPI_Waitsome(incount, cReq, &outcount, indices, MPI_STATUSES_IGNORE); int rc = MPI_Waitsome(incount, cReq, &outcount, indices, MPI_STATUSES_IGNORE);
ompi_java_exceptionCheck(env, rc); exception = ompi_java_exceptionCheck(env, rc);
ompi_java_releasePtrArray(env, requests, jReq, (void**)cReq); ompi_java_releasePtrArray(env, requests, jReq, (void**)cReq);
if(exception) {
free(indices);
return NULL;
}
jintArray jindices = NULL; jintArray jindices = NULL;
if(outcount != MPI_UNDEFINED) if(outcount != MPI_UNDEFINED)
@ -376,6 +396,7 @@ JNIEXPORT jobjectArray JNICALL Java_mpi_Request_testSomeStatus(
JNIEXPORT jintArray JNICALL Java_mpi_Request_testSome( JNIEXPORT jintArray JNICALL Java_mpi_Request_testSome(
JNIEnv *env, jclass clazz, jlongArray requests) JNIEnv *env, jclass clazz, jlongArray requests)
{ {
jboolean exception;
int incount = (*env)->GetArrayLength(env, requests); int incount = (*env)->GetArrayLength(env, requests);
jlong* jReq; jlong* jReq;
MPI_Request *cReq; MPI_Request *cReq;
@ -383,8 +404,14 @@ JNIEXPORT jintArray JNICALL Java_mpi_Request_testSome(
int *indices = (int*)calloc(incount, sizeof(int)); int *indices = (int*)calloc(incount, sizeof(int));
int outcount; int outcount;
int rc = MPI_Testsome(incount, cReq, &outcount, indices, MPI_STATUSES_IGNORE); int rc = MPI_Testsome(incount, cReq, &outcount, indices, MPI_STATUSES_IGNORE);
ompi_java_exceptionCheck(env, rc); exception = ompi_java_exceptionCheck(env, rc);
ompi_java_releasePtrArray(env, requests, jReq, (void**)cReq); ompi_java_releasePtrArray(env, requests, jReq, (void**)cReq);
if(exception) {
free(indices);
return NULL;
}
jintArray jindices = NULL; jintArray jindices = NULL;
if(outcount != MPI_UNDEFINED) if(outcount != MPI_UNDEFINED)