以下 java 代码沿主线程创建 2 个线程。在创建的 2 个线程上,调用了一个执行 I/O 函数的 C 函数。然后从主线程调用另一个 C 函数 ( againCallReadFile
),然后调用该firstThread
方法。这个先前调用的方法很可能正在休眠或仍在工作。现在我如何确保synchronised method
在它返回或完成它的工作后调用它?
Java 代码:
package Package;
public class Multithreading {
private native void readFile();
private native void writeFile();
private native void againCallReadFile();
public static void main(String args[]) {
Multithreading.firstThread();
Multithreading.secondThread();
// the above functions sleep for 15 seconds
new Multithreading().againCallReadFile(); // WILL GIVE THE FATAL ERROR ! B'COZ THAT METHOD SLEEPS FOR 15 SECONDS AFTER IT IS CALLED.
}
public synchronized static void firstThread() {
Runnable r = new Runnable() {
@Override
public void run() {
System.out.println("First Thread Started at " + new java.util.Date());
System.out.println();
new Multithreading().readFile();
try {
Thread.sleep(15 * 1000); // sleep for 15 seconds
} catch(Exception exc) {
exc.printStackTrace();
}
}
};
new Thread(r,"FirstThread").start();
}
public synchronized static void secondThread() {
Runnable r = new Runnable() {
@Override
public void run() {
System.out.println("Second Thread Started at " + new java.util.Date());
System.out.println();
new Multithreading().writeFile();
try {
Thread.sleep(15 * 1000); // sleep for 15 seconds
}catch(Exception exc) {
exc.printStackTrace();
}
}
};
new Thread(r,"Second Thread").start();
}
static {
System.loadLibrary("Multithreading");
}
}
C代码:
#include "stdio.h"
#include "string.h"
#include "Package_Multithreading.h"
/*
* Class: Package_Multithreading
* Method: readFile
* Signature: ()V
*/
void Java_Package_Multithreading_readFile
(JNIEnv *env, jobject obj) { // function that reads a file
printf("In the C method that reads file!\n");
FILE *f_open = fopen("c_io/file_r.txt","r");
fseek(f_open,0,SEEK_END);
long lSize = ftell(f_open);
rewind(f_open);
// allocate memory to contain whole file
char *buffer = (char*)malloc(sizeof(char)*lSize);
size_t result = fread(buffer,1,lSize,f_open); // file is now loaded in the memory buffer
int i = 0;
for(i=0;i<strlen(buffer);i++) {
printf("%c",buffer[i]);
}
fclose(f_open);
}
/*
* Class: Package_Multithreading
* Method: writeFile
* Signature: ()V
*/
void Java_Package_Multithreading_writeFile
(JNIEnv *env, jobject obj) { // function that writes a file
printf("In the C method that writes to the file !\n");
char buffer[] = "This data is a result of JNI !";
FILE *f_open = fopen("c_io/file_w.txt","wb");
int x = fwrite(buffer,1,sizeof(buffer),f_open);
fclose(f_open);
printf("Data has been written to the file !");
}
void Java_Package_Multithreading_againCallReadFile
(JNIEnv *env, jobject obj) { // function that calls the already called synchronised method
// The following snippet calls the function firstThread of java that could be sleeping. It sleeps for 15 seconds !
jclass cls = (*env)->GetObjectClass(env,obj);
jmethodID mid = (*env)->GetMethodID(env,cls,"firstThread","()V");
(*env)->CallVoidMethod(env,obj,mid); // call the synchronized method that sleeps for 5 minutes !
}
我怎样才能让里面的代码Java_Package_Multithreading_againCallReadFile
等到firstThread
java中的方法完成,或者有什么方法可以知道在调用同步函数之前我必须等待?