Skip to content
Snippets Groups Projects
Commit 05b07256 authored by Mick Jordan's avatar Mick Jordan
Browse files

ffi tracing; handle case where native side enabled, jaa side not

parent 9099bd36
No related branches found
No related tags found
No related merge requests found
......@@ -131,44 +131,47 @@ jmp_buf *getErrorJmpBuf() {
}
void releaseCopiedVector(JNIEnv *env, CopiedVector cv) {
if (cv.obj != NULL) {
switch (cv.type) {
case INTSXP: {
jintArray intArray = (jintArray) cv.jArray;
(*env)->ReleaseIntArrayElements(env, intArray, (jint *)cv.data, 0);
break;
}
case LGLSXP: {
// for LOGICAL, we need to convert back to 1-byte elements
jintArray byteArray = (jbyteArray) cv.jArray;
int len = (*env)->GetArrayLength(env, byteArray);
jbyte* internalData = (*env)->GetByteArrayElements(env, byteArray, NULL);
int* data = (int*) cv.data;
for (int i = 0; i < len; i++) {
internalData[i] = data[i] == NA_INTEGER ? 255 : (jbyte) data[i];
}
(*env)->ReleaseByteArrayElements(env, byteArray, internalData, 0);
break;
}
case REALSXP: {
jdoubleArray doubleArray = (jdoubleArray) cv.jArray;
(*env)->ReleaseDoubleArrayElements(env, doubleArray, (jdouble *)cv.data, 0);
break;
}
case RAWSXP: {
jbyteArray byteArray = (jbyteArray) cv.jArray;
(*env)->ReleaseByteArrayElements(env, byteArray, (jbyte *)cv.data, 0);
break;
}
default:
fatalError("copiedVector type");
if (cv.obj != NULL) {
#if TRACE_COPIES
fprintf(traceFile, "releaseCopiedVector(%p)\n", cv.obj);
#endif
switch (cv.type) {
case INTSXP: {
jintArray intArray = (jintArray) cv.jArray;
(*env)->ReleaseIntArrayElements(env, intArray, (jint *)cv.data, 0);
break;
}
case LGLSXP: {
// for LOGICAL, we need to convert back to 1-byte elements
jintArray byteArray = (jbyteArray) cv.jArray;
int len = (*env)->GetArrayLength(env, byteArray);
jbyte* internalData = (*env)->GetByteArrayElements(env, byteArray, NULL);
int* data = (int*) cv.data;
for (int i = 0; i < len; i++) {
internalData[i] = data[i] == NA_INTEGER ? 255 : (jbyte) data[i];
}
(*env)->ReleaseByteArrayElements(env, byteArray, internalData, 0);
break;
}
case REALSXP: {
jdoubleArray doubleArray = (jdoubleArray) cv.jArray;
(*env)->ReleaseDoubleArrayElements(env, doubleArray, (jdouble *)cv.data, 0);
break;
}
case RAWSXP: {
jbyteArray byteArray = (jbyteArray) cv.jArray;
(*env)->ReleaseByteArrayElements(env, byteArray, (jbyte *)cv.data, 0);
break;
}
default:
fatalError("copiedVector type");
}
}
}
}
void callExit(JNIEnv *env) {
......
......@@ -86,7 +86,7 @@ extern jclass RRuntimeClass;
extern FILE *traceFile;
// tracing/debugging support, set to 1 and recompile to enable
#define TRACE_UPCALLS 1 // trace upcalls
#define TRACE_UPCALLS 0 // trace upcalls
#define TRACE_REF_CACHE 0 // trace JNI reference cache
#define TRACE_COPIES 0 // trace copying of internal arrays
#define TRACE_ENABLED TRACE_UPCALLS || TRACE_REF_CACHE || TRACE_COPIES
......
......@@ -71,14 +71,7 @@ public class RFFIUtils {
if (traceEnabled) {
if (RContext.isEmbedded()) {
if (traceStream == null) {
Path tracePath = Utils.getLogPath(TRACEFILE);
try {
traceFileStream = new FileOutputStream(tracePath.toString());
traceStream = new PrintStream(traceFileStream);
} catch (IOException ex) {
System.err.println(ex.getMessage());
System.exit(1);
}
initTraceStream();
}
} else {
traceStream = System.out;
......@@ -88,6 +81,17 @@ public class RFFIUtils {
}
}
private static void initTraceStream() {
Path tracePath = Utils.getLogPath(TRACEFILE);
try {
traceFileStream = new FileOutputStream(tracePath.toString());
traceStream = new PrintStream(traceFileStream);
} catch (IOException ex) {
System.err.println(ex.getMessage());
System.exit(1);
}
}
/**
* Upcalled from native when tracing to get FD of the {@link #traceFileStream}. Allows the same
* fd to be used on both sides of the JNI boundary.
......@@ -95,6 +99,10 @@ public class RFFIUtils {
@SuppressWarnings("unused")
private static FileDescriptor getTraceFileDescriptor() {
try {
if (traceStream == null) {
// Happens if native has tracing enabled and Java does not
initTraceStream();
}
return traceFileStream.getFD();
} catch (IOException ex) {
System.err.println(ex.getMessage());
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment