Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
f05d8beb1451de3362ea002e33c7ed6086601742
[simgrid.git] / src / jmsg_process.c
1 /* Functions related to the java process instances.                         */
2
3 /* Copyright (c) 2007, 2008, 2009, 2010. The SimGrid Team.
4  * All rights reserved.                                                     */
5
6 /* This program is free software; you can redistribute it and/or modify it
7   * under the terms of the license (GNU LGPL) which comes with this package. */
8 #include "jmsg_process.h"
9
10 #include "jmsg.h"
11 #include "jmsg_host.h"
12 #include "jxbt_utilities.h"
13 #include "smx_context_java.h"
14 #include "smx_context_cojava.h"
15
16 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(jmsg);
17
18 JNIEXPORT void JNICALL
19 Java_org_simgrid_msg_Process_exit(JNIEnv *env, jobject jprocess) {
20   if (smx_factory_initializer_to_use == SIMIX_ctx_cojava_factory_init) {
21     msg_process_t process = jprocess_to_native_process(jprocess, env);
22     smx_context_t context = MSG_process_get_smx_ctx(process);
23     smx_ctx_cojava_stop(context);
24   }
25 }
26
27 jobject native_to_java_process(msg_process_t process)
28 {
29   return ((smx_ctx_java_t)MSG_process_get_smx_ctx(process))->jprocess;
30 }
31
32 jobject jprocess_new_global_ref(jobject jprocess, JNIEnv * env)
33 {
34   return (*env)->NewGlobalRef(env, jprocess);
35 }
36
37 void jprocess_delete_global_ref(jobject jprocess, JNIEnv * env)
38 {
39   (*env)->DeleteGlobalRef(env, jprocess);
40 }
41
42 void jprocess_join(jobject jprocess, JNIEnv * env)
43 {
44         msg_process_t process = jprocess_to_native_process(jprocess,env);
45         smx_ctx_java_t context = (smx_ctx_java_t)MSG_process_get_smx_ctx(process);
46         xbt_os_thread_join(context->thread,NULL);
47 }
48
49 msg_process_t jprocess_to_native_process(jobject jprocess, JNIEnv * env)
50 {
51   return (msg_process_t) (long) (*env)->GetLongField(env, jprocess, jprocess_field_Process_bind);
52 }
53
54 void jprocess_bind(jobject jprocess, msg_process_t process, JNIEnv * env)
55 {
56   (*env)->SetLongField(env, jprocess, jprocess_field_Process_bind, (jlong)(process));
57 }
58
59 jlong jprocess_get_id(jobject jprocess, JNIEnv * env)
60 {
61   return (*env)->GetLongField(env, jprocess, jprocess_field_Process_id);
62 }
63
64 jstring jprocess_get_name(jobject jprocess, JNIEnv * env)
65 {
66   jstring jname = (jstring) (*env)->GetObjectField(env, jprocess, jprocess_field_Process_name);
67   return (*env)->NewGlobalRef(env, jname);
68
69 }
70
71 jboolean jprocess_is_valid(jobject jprocess, JNIEnv * env)
72 {
73   jfieldID id = jxbt_get_sfield(env, "org/simgrid/msg/Process", "bind", "J");
74
75   if (!id)
76     return JNI_FALSE;
77
78   return (*env)->GetLongField(env, jprocess, id) ? JNI_TRUE : JNI_FALSE;
79 }
80 JNIEXPORT void JNICALL
81 Java_org_simgrid_msg_Process_nativeInit(JNIEnv *env, jclass cls) {
82   jclass jprocess_class_Process = (*env)->FindClass(env, "org/simgrid/msg/Process");
83
84   jprocess_field_Process_name = jxbt_get_jfield(env, jprocess_class_Process, "name", "Ljava/lang/String;");
85   jprocess_field_Process_bind = jxbt_get_jfield(env, jprocess_class_Process, "bind", "J");
86   jprocess_field_Process_id = jxbt_get_jfield(env, jprocess_class_Process, "id", "J");
87   jprocess_field_Process_pid = jxbt_get_jfield(env, jprocess_class_Process, "pid", "I");
88   jprocess_field_Process_ppid = jxbt_get_jfield(env, jprocess_class_Process, "ppid", "I");
89   jprocess_field_Process_host = jxbt_get_jfield(env, jprocess_class_Process, "host", "Lorg/simgrid/msg/Host;");
90   jprocess_field_Process_killTime = jxbt_get_jfield(env, jprocess_class_Process, "killTime", "D");
91   if (!jprocess_class_Process || !jprocess_field_Process_id || !jprocess_field_Process_name || !jprocess_field_Process_pid ||
92       !jprocess_field_Process_ppid || !jprocess_field_Process_host) {
93     jxbt_throw_native(env,bprintf("Can't find some fields in Java class. You should report this bug."));
94   }
95 }
96 JNIEXPORT void JNICALL
97 Java_org_simgrid_msg_Process_create(JNIEnv * env,
98                                     jobject jprocess_arg,
99                                     jobject jhostname)
100 {
101
102
103   jobject jprocess;             /* the global reference to the java process instance    */
104   jstring jname;                /* the name of the java process instance                */
105   const char *name;             /* the C name of the process                            */
106   const char *hostname;
107   msg_process_t process;          /* the native process to create                         */
108   msg_host_t host;                /* Where that process lives */
109
110   hostname = (*env)->GetStringUTFChars(env, jhostname, 0);
111
112   /* get the name of the java process */
113   jname = jprocess_get_name(jprocess_arg, env);
114   if (!jname) {
115     jxbt_throw_null(env,
116             xbt_strdup("Internal error: Process name cannot be NULL"));
117     return;
118   }
119
120   /* bind/retrieve the msg host */
121   host = MSG_get_host_by_name(hostname);
122
123   if (!(host)) {    /* not binded */
124     jxbt_throw_host_not_found(env, hostname);
125     return;
126   }
127
128   /* create a global java process instance */
129   jprocess = jprocess_new_global_ref(jprocess_arg, env);
130   if (!jprocess) {
131     jxbt_throw_jni(env, "Can't get a global ref to the java process");
132     return;
133   }
134
135   /* build the C name of the process */
136   name = (*env)->GetStringUTFChars(env, jname, 0);
137   name = xbt_strdup(name);
138
139   /* Retrieve the kill time from the process */
140   jdouble jkill = (*env)->GetDoubleField(env, jprocess, jprocess_field_Process_killTime);
141   /* Actually build the MSG process */
142   process = MSG_process_create_with_environment(name,
143                                                 (xbt_main_func_t) jprocess,
144                                                 /*data*/ jprocess,
145                                                 host,
146                                                 /*argc, argv, properties*/
147                                                 0,NULL,NULL);
148   MSG_process_set_kill_time(process, (double)jkill);
149   /* bind the java process instance to the native process */
150   jprocess_bind(jprocess, process, env);
151
152   /* release our reference to the process name (variable name becomes invalid) */
153   //FIXME : This line should be uncommented but with mac it doesn't work. BIG WARNING
154   //(*env)->ReleaseStringUTFChars(env, jname, name);
155   (*env)->ReleaseStringUTFChars(env, jhostname, hostname);
156
157   /* sets the PID and the PPID of the process */
158   (*env)->SetIntField(env, jprocess, jprocess_field_Process_pid,(jint) MSG_process_get_PID(process));
159   (*env)->SetIntField(env, jprocess, jprocess_field_Process_ppid, (jint) MSG_process_get_PPID(process));
160   /* sets the Host of the process */
161   jobject jhost = Java_org_simgrid_msg_Host_getByName(env,NULL,jhostname);
162
163   (*env)->SetObjectField(env, jprocess, jprocess_field_Process_host, jhost);
164 }
165
166 JNIEXPORT jint JNICALL
167 Java_org_simgrid_msg_Process_killAll(JNIEnv * env, jclass cls,
168                                      jint jresetPID)
169 {
170   return (jint) MSG_process_killall((int) jresetPID);
171 }
172
173 JNIEXPORT jobject JNICALL
174 Java_org_simgrid_msg_Process_fromPID(JNIEnv * env, jclass cls,
175                                      jint PID)
176 {
177   msg_process_t process = MSG_process_from_PID(PID);
178
179   if (!process) {
180     jxbt_throw_process_not_found(env, bprintf("PID = %d",(int) PID));
181     return NULL;
182   }
183
184   jobject jprocess = native_to_java_process(process);
185
186   if (!jprocess) {
187     jxbt_throw_jni(env, "SIMIX_process_get_jprocess() failed");
188     return NULL;
189   }
190
191   return jprocess;
192 }
193
194 JNIEXPORT jobject JNICALL
195 Java_org_simgrid_msg_Process_currentProcess(JNIEnv * env, jclass cls)
196 {
197   msg_process_t process = MSG_process_self();
198   jobject jprocess;
199
200   if (!process) {
201     jxbt_throw_jni(env, xbt_strdup("MSG_process_self() failed"));
202     return NULL;
203   }
204
205   jprocess = native_to_java_process(process);
206
207   if (!jprocess)
208     jxbt_throw_jni(env, xbt_strdup("SIMIX_process_get_jprocess() failed"));
209
210   return jprocess;
211 }
212
213 JNIEXPORT void JNICALL
214 Java_org_simgrid_msg_Process_suspend(JNIEnv * env,
215                                    jobject jprocess)
216 {
217   msg_process_t process = jprocess_to_native_process(jprocess, env);
218
219   if (!process) {
220     jxbt_throw_notbound(env, "process", jprocess);
221     return;
222   }
223
224   /* try to suspend the process */
225   msg_error_t rv = MSG_process_suspend(process);
226
227   jxbt_check_res("MSG_process_suspend()", rv, MSG_OK,
228                  bprintf("unexpected error , please report this bug"));
229
230 }
231 JNIEXPORT void JNICALL
232 Java_org_simgrid_msg_Process_resume(JNIEnv * env,
233                                      jobject jprocess)
234 {
235   msg_process_t process = jprocess_to_native_process(jprocess, env);
236
237   if (!process) {
238     jxbt_throw_notbound(env, "process", jprocess);
239     return;
240   }
241
242   /* try to resume the process */
243   msg_error_t rv = MSG_process_resume(process);
244
245   jxbt_check_res("MSG_process_resume()", rv, MSG_OK,
246                  bprintf("unexpected error , please report this bug"));
247 }
248 JNIEXPORT jboolean JNICALL
249 Java_org_simgrid_msg_Process_isSuspended(JNIEnv * env,
250                                          jobject jprocess)
251 {
252   msg_process_t process = jprocess_to_native_process(jprocess, env);
253
254   if (!process) {
255     jxbt_throw_notbound(env, "process", jprocess);
256     return 0;
257   }
258
259   /* true is the process is suspended, false otherwise */
260   return (jboolean) MSG_process_is_suspended(process);
261 }
262
263 JNIEXPORT void JNICALL Java_org_simgrid_msg_Process_sleep
264         (JNIEnv *env, jclass cls, jlong jmillis, jint jnanos) {
265
266         double time =  jmillis / 1000 + jnanos / 1000;
267         msg_error_t rv;
268         xbt_ex_t e;
269         TRY {
270                 rv = MSG_process_sleep(time);
271         }
272         CATCH(e) {
273             xbt_ex_free(e);
274                 return;
275         }
276   if (rv != MSG_OK) {
277         jmsg_throw_status(env,rv);
278   }
279 }
280 JNIEXPORT void JNICALL
281 Java_org_simgrid_msg_Process_waitFor(JNIEnv * env, jobject jprocess,
282                                      jdouble jseconds)
283 {
284   msg_error_t rv;
285   xbt_ex_t e;
286   TRY {
287    rv = MSG_process_sleep((double)jseconds);
288   }
289   CATCH(e) {
290     xbt_ex_free(e);
291         return;
292   }
293   if (rv != MSG_OK) {
294         XBT_INFO("Status NOK");
295         jmsg_throw_status(env,rv);
296   }
297 }
298
299 JNIEXPORT void JNICALL
300 Java_org_simgrid_msg_Process_kill(JNIEnv * env,
301                                   jobject jprocess)
302 {
303         /* get the native instances from the java ones */
304   msg_process_t process = jprocess_to_native_process(jprocess, env);
305   if (!process) {
306     jxbt_throw_notbound(env, "process", jprocess);
307     return;
308   }
309
310         MSG_process_kill(process);
311 }
312 JNIEXPORT void JNICALL
313 Java_org_simgrid_msg_Process_migrate(JNIEnv * env,
314                                      jobject jprocess, jobject jhost)
315 {
316   msg_process_t process = jprocess_to_native_process(jprocess, env);
317
318   if (!process) {
319     jxbt_throw_notbound(env, "process", jprocess);
320     return;
321   }
322
323   msg_host_t host = jhost_get_native(env, jhost);
324
325   if (!host) {
326     jxbt_throw_notbound(env, "host", jhost);
327     return;
328   }
329
330   /* try to change the host of the process */
331   msg_error_t rv = MSG_process_migrate(process, host);
332   if (rv != MSG_OK) {
333     jmsg_throw_status(env,rv);
334   }
335   /* change the host java side */
336   (*env)->SetObjectField(env, jprocess, jprocess_field_Process_host, jhost);
337 }
338 JNIEXPORT void JNICALL
339 Java_org_simgrid_msg_Process_setKillTime (JNIEnv *env , jobject jprocess, jdouble jkilltime) {
340         msg_process_t process = jprocess_to_native_process(jprocess, env);
341         MSG_process_set_kill_time(process, (double)jkilltime);
342 }