Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add Process.setAutoRestart
[simgrid.git] / src / jmsg_process.c
1 /* Functions related to the java process instances.                         */
2
3 /* Copyright (c) 2007-2012. 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
232 JNIEXPORT void JNICALL
233 Java_org_simgrid_msg_Process_resume(JNIEnv * env,
234                                      jobject jprocess)
235 {
236   msg_process_t process = jprocess_to_native_process(jprocess, env);
237
238   if (!process) {
239     jxbt_throw_notbound(env, "process", jprocess);
240     return;
241   }
242
243   /* try to resume the process */
244   msg_error_t rv = MSG_process_resume(process);
245
246   jxbt_check_res("MSG_process_resume()", rv, MSG_OK,
247                  bprintf("unexpected error , please report this bug"));
248 }
249 JNIEXPORT void JNICALL Java_org_simgrid_msg_Process_setAutoRestart
250     (JNIEnv *env, jobject jprocess, jboolean jauto_restart) {
251   msg_process_t process = jprocess_to_native_process(jprocess, env);
252   xbt_ex_t e;
253
254   int auto_restart = jauto_restart == JNI_TRUE ? 1 : 0;
255
256   if (!process) {
257     jxbt_throw_notbound(env, "process", jprocess);
258     return;
259   }
260
261   TRY {
262     MSG_process_auto_restart_set(process,auto_restart);
263   }
264   CATCH (e) {
265     xbt_ex_free(e);
266   }
267 }
268 JNIEXPORT void JNICALL Java_org_simgrid_msg_Process_restart
269     (JNIEnv *env, jobject jprocess) {
270   msg_process_t process = jprocess_to_native_process(jprocess, env);
271   xbt_ex_t e;
272
273   if (!process) {
274     jxbt_throw_notbound(env, "process", jprocess);
275     return;
276   }
277
278   TRY {
279     MSG_process_restart(process);
280   }
281   CATCH (e) {
282     xbt_ex_free(e);
283   }
284
285 }
286 JNIEXPORT jboolean JNICALL
287 Java_org_simgrid_msg_Process_isSuspended(JNIEnv * env,
288                                          jobject jprocess)
289 {
290   msg_process_t process = jprocess_to_native_process(jprocess, env);
291
292   if (!process) {
293     jxbt_throw_notbound(env, "process", jprocess);
294     return 0;
295   }
296
297   /* true is the process is suspended, false otherwise */
298   return (jboolean) MSG_process_is_suspended(process);
299 }
300
301 JNIEXPORT void JNICALL Java_org_simgrid_msg_Process_sleep
302         (JNIEnv *env, jclass cls, jlong jmillis, jint jnanos) {
303
304         double time =  jmillis / 1000 + jnanos / 1000;
305         msg_error_t rv;
306         xbt_ex_t e;
307         TRY {
308                 rv = MSG_process_sleep(time);
309         }
310         CATCH(e) {
311             xbt_ex_free(e);
312                 return;
313         }
314   if (rv != MSG_OK) {
315         jmsg_throw_status(env,rv);
316   }
317 }
318 JNIEXPORT void JNICALL
319 Java_org_simgrid_msg_Process_waitFor(JNIEnv * env, jobject jprocess,
320                                      jdouble jseconds)
321 {
322   msg_error_t rv;
323   xbt_ex_t e;
324   TRY {
325    rv = MSG_process_sleep((double)jseconds);
326   }
327   CATCH(e) {
328     xbt_ex_free(e);
329         return;
330   }
331   if (rv != MSG_OK) {
332         XBT_INFO("Status NOK");
333         jmsg_throw_status(env,rv);
334   }
335 }
336
337 JNIEXPORT void JNICALL
338 Java_org_simgrid_msg_Process_kill(JNIEnv * env,
339                                   jobject jprocess)
340 {
341         /* get the native instances from the java ones */
342   msg_process_t process = jprocess_to_native_process(jprocess, env);
343   if (!process) {
344     jxbt_throw_notbound(env, "process", jprocess);
345     return;
346   }
347
348         MSG_process_kill(process);
349 }
350 JNIEXPORT void JNICALL
351 Java_org_simgrid_msg_Process_migrate(JNIEnv * env,
352                                      jobject jprocess, jobject jhost)
353 {
354   msg_process_t process = jprocess_to_native_process(jprocess, env);
355
356   if (!process) {
357     jxbt_throw_notbound(env, "process", jprocess);
358     return;
359   }
360
361   msg_host_t host = jhost_get_native(env, jhost);
362
363   if (!host) {
364     jxbt_throw_notbound(env, "host", jhost);
365     return;
366   }
367
368   /* try to change the host of the process */
369   msg_error_t rv = MSG_process_migrate(process, host);
370   if (rv != MSG_OK) {
371     jmsg_throw_status(env,rv);
372   }
373   /* change the host java side */
374   (*env)->SetObjectField(env, jprocess, jprocess_field_Process_host, jhost);
375 }
376 JNIEXPORT void JNICALL
377 Java_org_simgrid_msg_Process_setKillTime (JNIEnv *env , jobject jprocess, jdouble jkilltime) {
378         msg_process_t process = jprocess_to_native_process(jprocess, env);
379         MSG_process_set_kill_time(process, (double)jkilltime);
380 }