Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Move some functions from MsgNative to Task, to make one less call
[simgrid.git] / src / jmsg.c
1 /* Java Wrappers to the MSG API.                                            */
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
9 #include <msg/msg.h>
10 #include <simgrid/simix.h>
11 #include <surf/surfxml_parse.h>
12
13 #include "smx_context_java.h"
14
15 #include "jmsg_process.h"
16 #include "jmsg_host.h"
17 #include "jmsg_task.h"
18 #include "jmsg_application_handler.h"
19 #include "jxbt_utilities.h"
20
21 #include "jmsg.h"
22
23 /* Shut up some errors in eclipse online compiler. I wish such a pimple wouldn't be needed */
24 #ifndef JNIEXPORT
25 #define JNIEXPORT
26 #endif
27 #ifndef JNICALL
28 #define JNICALL
29 #endif
30 /* end of eclipse-mandated pimple */
31
32 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(jmsg);
33
34 static JavaVM *__java_vm = NULL;
35
36 static jobject native_to_java_process(m_process_t process);
37
38 JavaVM *get_java_VM(void)
39 {
40   return __java_vm;
41 }
42
43 JNIEnv *get_current_thread_env(void)
44 {
45   JNIEnv *env;
46
47   (*__java_vm)->AttachCurrentThread(__java_vm, (void **) &env, NULL);
48
49   return env;
50 }
51
52 static jobject native_to_java_process(m_process_t process)
53 {
54   return ((smx_ctx_java_t)MSG_process_get_smx_ctx(process))->jprocess;
55 }
56
57 /*
58  * The MSG process connected functions implementation.                                 
59  */
60
61 JNIEXPORT void JNICALL
62 Java_org_simgrid_msg_MsgNative_processCreate(JNIEnv * env, jclass cls,
63                                          jobject jprocess_arg,
64                                          jobject jhostname)
65 {
66      
67    
68   jobject jprocess;             /* the global reference to the java process instance    */
69   jstring jname;                /* the name of the java process instance                */
70   const char *name;             /* the C name of the process                            */
71   const char *hostname;
72   m_process_t process;          /* the native process to create                         */
73   m_host_t host;                /* Where that process lives */
74    
75   hostname = (*env)->GetStringUTFChars(env, jhostname, 0);
76
77   XBT_DEBUG("Java_org_simgrid_msg_MsgNative_processCreate(env=%p,cls=%p,jproc=%p,host=%s)",
78          env, cls, jprocess_arg, hostname);
79    
80    
81   /* get the name of the java process */
82   jname = jprocess_get_name(jprocess_arg, env);
83   if (!jname) {
84     jxbt_throw_null(env,
85             xbt_strdup("Internal error: Process name cannot be NULL"));
86     return;
87   }
88
89   /* bind/retrieve the msg host */
90   host = MSG_get_host_by_name(hostname);
91
92   if (!(host)) {    /* not binded */
93     jxbt_throw_host_not_found(env, hostname);
94     return;
95   }
96
97   /* create a global java process instance */
98   jprocess = jprocess_new_global_ref(jprocess_arg, env);
99   if (!jprocess) {
100     jxbt_throw_jni(env, "Can't get a global ref to the java process");
101     return;
102   }
103
104   /* build the C name of the process */
105   name = (*env)->GetStringUTFChars(env, jname, 0);
106   name = xbt_strdup(name);
107   
108   /* Actually build the MSG process */
109   process = MSG_process_create_with_environment(name,
110                                                 (xbt_main_func_t) jprocess,
111                                                 /*data*/ NULL,
112                                                 host,
113                                                 /* kill_time */-1,
114                                                 /*argc, argv, properties*/
115                                                 0,NULL,NULL);
116      
117   MSG_process_set_data(process,&process);
118    
119   /* release our reference to the process name (variable name becomes invalid) */
120   //FIXME : This line should be uncommented but with mac it doesn't work. BIG WARNING
121   //(*env)->ReleaseStringUTFChars(env, jname, name);
122   (*env)->ReleaseStringUTFChars(env, jhostname, hostname);
123    
124   /* bind the java process instance to the native process */
125   jprocess_bind(jprocess, process, env);
126
127 }
128
129 JNIEXPORT void JNICALL
130 Java_org_simgrid_msg_MsgNative_processSuspend(JNIEnv * env, jclass cls,
131                                           jobject jprocess)
132 {
133   m_process_t process = jprocess_to_native_process(jprocess, env);
134
135   if (!process) {
136     jxbt_throw_notbound(env, "process", jprocess);
137     return;
138   }
139
140   /* try to suspend the process */
141   MSG_error_t rv = MSG_process_suspend(process);
142
143   jxbt_check_res("MSG_process_suspend()", rv, MSG_OK,
144                  bprintf("unexpected error , please report this bug"));
145
146 }
147
148 JNIEXPORT void JNICALL
149 Java_org_simgrid_msg_Process_simulatedSleep(JNIEnv * env, jobject jprocess,
150                                            jdouble jseconds) {
151           m_process_t process = jprocess_to_native_process(jprocess, env);
152
153           if (!process) {
154             jxbt_throw_notbound(env, "process", jprocess);
155             return;
156           }
157           MSG_error_t rv = MSG_process_sleep((double)jseconds);
158
159           jxbt_check_res("MSG_process_sleep()", rv, MSG_OK,
160                          bprintf("unexpected error , please report this bug"));
161 }
162
163
164 JNIEXPORT void JNICALL
165 Java_org_simgrid_msg_MsgNative_processResume(JNIEnv * env, jclass cls,
166                                          jobject jprocess)
167 {
168   m_process_t process = jprocess_to_native_process(jprocess, env);
169
170   if (!process) {
171     jxbt_throw_notbound(env, "process", jprocess);
172     return;
173   }
174
175   /* try to resume the process */
176   MSG_error_t rv = MSG_process_resume(process);
177
178   jxbt_check_res("MSG_process_resume()", rv, MSG_OK,
179                  bprintf("unexpected error , please report this bug"));
180 }
181
182 JNIEXPORT jboolean JNICALL
183 Java_org_simgrid_msg_MsgNative_processIsSuspended(JNIEnv * env, jclass cls,
184                                               jobject jprocess)
185 {
186   m_process_t process = jprocess_to_native_process(jprocess, env);
187
188   if (!process) {
189     jxbt_throw_notbound(env, "process", jprocess);
190     return 0;
191   }
192
193   /* true is the process is suspended, false otherwise */
194   return (jboolean) MSG_process_is_suspended(process);
195 }
196
197 JNIEXPORT void JNICALL
198 Java_org_simgrid_msg_MsgNative_processKill(JNIEnv * env, jclass cls,
199                                        jobject jprocess)
200 {
201   /* get the native instances from the java ones */
202   m_process_t process = jprocess_to_native_process(jprocess, env);
203
204   if (!process) {
205     jxbt_throw_notbound(env, "process", jprocess);
206     return;
207   }
208
209   /* kill the native process (this wrapper is call by the destructor of the java 
210    * process instance)
211    */
212   MSG_process_kill(process);
213 }
214
215 JNIEXPORT jobject JNICALL
216 Java_org_simgrid_msg_MsgNative_processGetHost(JNIEnv * env, jclass cls,
217                                           jobject jprocess)
218 {
219   /* get the native instances from the java ones */
220   m_process_t process = jprocess_to_native_process(jprocess, env);
221   m_host_t host;
222
223   if (!process) {
224     jxbt_throw_notbound(env, "process", jprocess);
225     return NULL;
226   }
227
228   host = MSG_process_get_host(process);
229   jobject res = (jobject)MSG_host_get_data(host);
230
231   if (!res) {
232           XBT_INFO("Binding error for host %s ",MSG_host_get_name(host));
233           jxbt_throw_jni(env, bprintf("Binding error for host %s ",MSG_host_get_name(host)));
234           return NULL;
235   }
236
237   /* return the global reference to the java host instance */
238   return res;
239
240 }
241
242 JNIEXPORT jobject JNICALL
243 Java_org_simgrid_msg_MsgNative_processFromPID(JNIEnv * env, jclass cls,
244                                           jint PID)
245 {
246   m_process_t process = MSG_process_from_PID(PID);
247
248   if (!process) {
249     jxbt_throw_process_not_found(env, bprintf("PID = %d",(int) PID));
250     return NULL;
251   }
252
253   if (!native_to_java_process(process)) {
254     jxbt_throw_jni(env, "SIMIX_process_get_jprocess() failed");
255     return NULL;
256   }
257
258   return (jobject) (native_to_java_process(process));
259 }
260
261
262 JNIEXPORT jint JNICALL
263 Java_org_simgrid_msg_MsgNative_processGetPID(JNIEnv * env, jclass cls,
264                                          jobject jprocess)
265 {
266   m_process_t process = jprocess_to_native_process(jprocess, env);
267
268   if (!process) {
269     jxbt_throw_notbound(env, "process", jprocess);
270     return 0;
271   }
272
273   return (jint) MSG_process_get_PID(process);
274 }
275
276
277 JNIEXPORT jint JNICALL
278 Java_org_simgrid_msg_MsgNative_processGetPPID(JNIEnv * env, jclass cls,
279                                           jobject jprocess)
280 {
281   m_process_t process = jprocess_to_native_process(jprocess, env);
282
283   if (!process) {
284     jxbt_throw_notbound(env, "process", jprocess);
285     return 0;
286   }
287
288   return (jint) MSG_process_get_PPID(process);
289 }
290
291 JNIEXPORT jobject JNICALL
292 Java_org_simgrid_msg_MsgNative_processSelf(JNIEnv * env, jclass cls)
293 {
294   m_process_t process = MSG_process_self();
295   jobject jprocess;
296
297   if (!process) {
298     jxbt_throw_jni(env, xbt_strdup("MSG_process_self() failed"));
299     return NULL;
300   }
301
302   jprocess = native_to_java_process(process);
303
304   if (!jprocess)
305     jxbt_throw_jni(env, xbt_strdup("SIMIX_process_get_jprocess() failed"));
306
307   return jprocess;
308 }
309
310 JNIEXPORT void JNICALL
311 Java_org_simgrid_msg_MsgNative_processMigrate(JNIEnv * env, jclass cls,
312                                              jobject jprocess, jobject jhost)
313 {
314   m_process_t process = jprocess_to_native_process(jprocess, env);
315
316   if (!process) {
317     jxbt_throw_notbound(env, "process", jprocess);
318     return;
319   }
320
321   m_host_t host = jhost_get_native(env, jhost);
322
323   if (!host) {
324     jxbt_throw_notbound(env, "host", jhost);
325     return;
326   }
327
328   /* try to change the host of the process */
329   MSG_error_t rv = MSG_process_migrate(process, host);
330   jxbt_check_res("MSG_process_migrate()", rv, MSG_OK,
331                  bprintf("unexpected error , please report this bug"));
332
333 }
334
335 JNIEXPORT void JNICALL
336 Java_org_simgrid_msg_MsgNative_processWaitFor(JNIEnv * env, jclass cls,
337                                           jdouble seconds)
338 {
339   MSG_error_t rv = MSG_process_sleep((double) seconds);
340
341   jxbt_check_res("MSG_process_sleep()", rv, MSG_HOST_FAILURE,
342                  bprintf("while process was waiting for %f seconds",
343                          (double) seconds));
344
345 }
346
347
348 /***************************************************************************************
349  * The MSG host connected functions implementation.                                    *
350  ***************************************************************************************/
351
352 JNIEXPORT jobject JNICALL
353 Java_org_simgrid_msg_MsgNative_hostGetByName(JNIEnv * env, jclass cls,
354                                          jstring jname)
355 {
356   m_host_t host;                /* native host                                          */
357   jobject jhost;                /* global reference to the java host instance returned  */
358
359   /* get the C string from the java string */
360   const char *name = (*env)->GetStringUTFChars(env, jname, 0);
361   XBT_DEBUG("Looking for host '%s'",name);
362   /* get the host by name       (the hosts are created during the grid resolution) */
363   host = MSG_get_host_by_name(name);
364   XBT_DEBUG("MSG gave %p as native host", host);
365
366   if (!host) {                  /* invalid name */
367     jxbt_throw_host_not_found(env, name);
368     (*env)->ReleaseStringUTFChars(env, jname, name);
369     return NULL;
370   }
371   (*env)->ReleaseStringUTFChars(env, jname, name);
372
373   if (!MSG_host_get_data(host)) {       /* native host not associated yet with java host */
374
375     /* Instantiate a new java host */
376     jhost = jhost_new_instance(env);
377
378     if (!jhost) {
379       jxbt_throw_jni(env, "java host instantiation failed");
380       return NULL;
381     }
382
383     /* get a global reference to the newly created host */
384     jhost = jhost_ref(env, jhost);
385
386     if (!jhost) {
387       jxbt_throw_jni(env, "new global ref allocation failed");
388       return NULL;
389     }
390
391     /* bind the java host and the native host */
392     jhost_bind(jhost, host, env);
393
394     /* the native host data field is set with the global reference to the 
395      * java host returned by this function 
396      */
397     MSG_host_set_data(host, (void *) jhost);
398   }
399
400   /* return the global reference to the java host instance */
401   return (jobject) MSG_host_get_data(host);
402 }
403
404 JNIEXPORT jstring JNICALL
405 Java_org_simgrid_msg_MsgNative_hostGetName(JNIEnv * env, jclass cls,
406                                        jobject jhost)
407 {
408   m_host_t host = jhost_get_native(env, jhost);
409   const char* name;
410
411   if (!host) {
412     jxbt_throw_notbound(env, "host", jhost);
413     return NULL;
414   }
415
416   name = MSG_host_get_name(host);
417   if (!name)
418           xbt_die("This host has no name...");
419
420   return (*env)->NewStringUTF(env, name);
421 }
422
423 JNIEXPORT jint JNICALL
424 Java_org_simgrid_msg_MsgNative_hostGetNumber(JNIEnv * env, jclass cls)
425 {
426   xbt_dynar_t hosts =  MSG_hosts_as_dynar();
427   int nb_host = xbt_dynar_length(hosts);
428   xbt_dynar_free(&hosts);
429   return (jint) nb_host;
430 }
431
432 JNIEXPORT jobject JNICALL
433 Java_org_simgrid_msg_MsgNative_hostSelf(JNIEnv * env, jclass cls)
434 {
435   jobject jhost;
436
437   m_host_t host = MSG_host_self();
438
439   if (!MSG_host_get_data(host)) {
440     /* the native host not yet associated with the java host instance */
441
442     /* instanciate a new java host instance */
443     jhost = jhost_new_instance(env);
444
445     if (!jhost) {
446       jxbt_throw_jni(env, "java host instantiation failed");
447       return NULL;
448     }
449
450     /* get a global reference to the newly created host */
451     jhost = jhost_ref(env, jhost);
452
453     if (!jhost) {
454       jxbt_throw_jni(env, "global ref allocation failed");
455       return NULL;
456     }
457
458     /* Bind & store it */
459     jhost_bind(jhost, host, env);
460     MSG_host_set_data(host, (void *) jhost);
461   } else {
462     jhost = (jobject) MSG_host_get_data(host);
463   }
464
465   return jhost;
466 }
467
468 JNIEXPORT jdouble JNICALL
469 Java_org_simgrid_msg_MsgNative_hostGetSpeed(JNIEnv * env, jclass cls,
470                                         jobject jhost)
471 {
472   m_host_t host = jhost_get_native(env, jhost);
473
474   if (!host) {
475     jxbt_throw_notbound(env, "host", jhost);
476     return -1;
477   }
478
479   return (jdouble) MSG_get_host_speed(host);
480 }
481
482 JNIEXPORT jint JNICALL
483 Java_org_simgrid_msg_MsgNative_hostGetLoad(JNIEnv * env, jclass cls,
484                                        jobject jhost)
485 {
486   m_host_t host = jhost_get_native(env, jhost);
487
488   if (!host) {
489     jxbt_throw_notbound(env, "host", jhost);
490     return -1;
491   }
492
493   return (jint) MSG_get_host_msgload(host);
494 }
495
496
497 JNIEXPORT jboolean JNICALL
498 Java_org_simgrid_msg_MsgNative_hostIsAvail(JNIEnv * env, jclass cls,
499                                        jobject jhost)
500 {
501   m_host_t host = jhost_get_native(env, jhost);
502
503   if (!host) {
504     jxbt_throw_notbound(env, "host", jhost);
505     return 0;
506   }
507
508   return (jboolean) MSG_host_is_avail(host);
509 }
510
511
512 /***************************************************************************************
513  * The MSG task connected functions implementation.                                    *
514  ***************************************************************************************/
515
516 JNIEXPORT jobject JNICALL
517 Java_org_simgrid_msg_MsgNative_taskGetSender(JNIEnv * env, jclass cls,
518                                          jobject jtask)
519 {
520   m_process_t process;
521
522   m_task_t task = jtask_to_native_task(jtask, env);
523
524   if (!task) {
525     jxbt_throw_notbound(env, "task", jtask);
526     return NULL;
527   }
528
529   process = MSG_task_get_sender(task);
530   return (jobject) native_to_java_process(process);
531 }
532
533 JNIEXPORT jobject JNICALL
534 Java_org_simgrid_msg_MsgNative_taskGetSource(JNIEnv * env, jclass cls,
535                                          jobject jtask)
536 {
537   m_host_t host;
538   m_task_t task = jtask_to_native_task(jtask, env);
539
540   if (!task) {
541     jxbt_throw_notbound(env, "task", jtask);
542     return NULL;
543   }
544
545   host = MSG_task_get_source(task);
546
547   if (!MSG_host_get_data(host)) {
548     jxbt_throw_jni(env, "MSG_task_get_source() failed");
549     return NULL;
550   }
551
552   return (jobject) MSG_host_get_data(host);
553 }
554
555
556 JNIEXPORT jstring JNICALL
557 Java_org_simgrid_msg_MsgNative_taskGetName(JNIEnv * env, jclass cls,
558                                        jobject jtask)
559 {
560   m_task_t task = jtask_to_native_task(jtask, env);
561
562   if (!task) {
563     jxbt_throw_notbound(env, "task", jtask);
564     return NULL;
565   }
566
567   return (*env)->NewStringUTF(env, MSG_task_get_name(task));
568 }
569
570 JNIEXPORT void JNICALL
571 Java_org_simgrid_msg_MsgNative_taskCancel(JNIEnv * env, jclass cls,
572                                       jobject jtask)
573 {
574   m_task_t ptask = jtask_to_native_task(jtask, env);
575
576   if (!ptask) {
577     jxbt_throw_notbound(env, "task", jtask);
578     return;
579   }
580
581   MSG_error_t rv = MSG_task_cancel(ptask);
582
583   jxbt_check_res("MSG_task_cancel()", rv, MSG_OK,
584                  bprintf("unexpected error , please report this bug"));
585 }
586
587 JNIEXPORT jdouble JNICALL
588 Java_org_simgrid_msg_MsgNative_taskGetComputeDuration(JNIEnv * env, jclass cls,
589                                                   jobject jtask)
590 {
591   m_task_t ptask = jtask_to_native_task(jtask, env);
592
593   if (!ptask) {
594     jxbt_throw_notbound(env, "task", jtask);
595     return -1;
596   }
597   return (jdouble) MSG_task_get_compute_duration(ptask);
598 }
599
600 JNIEXPORT jdouble JNICALL
601 Java_org_simgrid_msg_MsgNative_taskGetRemainingDuration(JNIEnv * env,
602                                                     jclass cls,
603                                                     jobject jtask)
604 {
605   m_task_t ptask = jtask_to_native_task(jtask, env);
606
607   if (!ptask) {
608     jxbt_throw_notbound(env, "task", jtask);
609     return -1;
610   }
611   return (jdouble) MSG_task_get_remaining_computation(ptask);
612 }
613
614 JNIEXPORT void JNICALL
615 Java_org_simgrid_msg_MsgNative_taskSetPriority(JNIEnv * env, jclass cls,
616                                            jobject jtask, jdouble priority)
617 {
618   m_task_t task = jtask_to_native_task(jtask, env);
619
620   if (!task) {
621     jxbt_throw_notbound(env, "task", jtask);
622     return;
623   }
624   MSG_task_set_priority(task, (double) priority);
625 }
626
627 JNIEXPORT void JNICALL
628 Java_org_simgrid_msg_MsgNative_taskExecute(JNIEnv * env, jclass cls,
629                                        jobject jtask)
630 {
631   m_task_t task = jtask_to_native_task(jtask, env);
632
633   if (!task) {
634     jxbt_throw_notbound(env, "task", jtask);
635     return;
636   }
637
638   MSG_error_t rv = MSG_task_execute(task);
639
640   jxbt_check_res("MSG_task_execute()", rv,
641                  MSG_HOST_FAILURE | MSG_TASK_CANCELED,
642                  bprintf("while executing task %s",
643                          MSG_task_get_name(task)));
644 }
645
646 /***************************************************************************************
647  * Unsortable functions                                                        *
648  ***************************************************************************************/
649
650 JNIEXPORT jdouble JNICALL
651 Java_org_simgrid_msg_Msg_getClock(JNIEnv * env, jclass cls)
652 {
653   return (jdouble) MSG_get_clock();
654 }
655
656 JNIEXPORT void JNICALL
657 Java_org_simgrid_msg_Msg_init(JNIEnv * env, jclass cls, jobjectArray jargs)
658 {
659   char **argv = NULL;
660   int index;
661   int argc = 0;
662   jstring jval;
663   const char *tmp;
664
665   smx_factory_initializer_to_use = SIMIX_ctx_java_factory_init;
666
667   if (jargs)
668     argc = (int) (*env)->GetArrayLength(env, jargs);
669
670   argc++;
671   argv = xbt_new(char *, argc + 1);
672   argv[0] = strdup("java");
673
674   for (index = 0; index < argc - 1; index++) {
675     jval = (jstring) (*env)->GetObjectArrayElement(env, jargs, index);
676     tmp = (*env)->GetStringUTFChars(env, jval, 0);
677     argv[index + 1] = strdup(tmp);
678     (*env)->ReleaseStringUTFChars(env, jval, tmp);
679   }
680   argv[argc] = NULL;
681
682   MSG_global_init(&argc, argv);
683
684   for (index = 0; index < argc; index++)
685     free(argv[index]);
686
687   free(argv);
688
689   (*env)->GetJavaVM(env, &__java_vm);
690 }
691
692 JNIEXPORT void JNICALL
693     JNICALL Java_org_simgrid_msg_Msg_run(JNIEnv * env, jclass cls)
694 {
695   MSG_error_t rv;
696   int index;
697   xbt_dynar_t hosts;
698   jobject jhost;
699
700   /* Run everything */
701   XBT_INFO("Ready to run MSG_MAIN");
702   rv = MSG_main();
703   XBT_INFO("Done running MSG_MAIN");
704   jxbt_check_res("MSG_main()", rv, MSG_OK,
705                  bprintf
706                  ("unexpected error : MSG_main() failed .. please report this bug "));
707
708   XBT_INFO("MSG_main finished");
709
710   XBT_INFO("Clean java world");
711   /* Cleanup java hosts */
712   hosts = MSG_hosts_as_dynar();
713   for (index = 0; index < xbt_dynar_length(hosts) - 1; index++) {
714     jhost = (jobject) MSG_host_get_data(xbt_dynar_get_as(hosts,index,m_host_t));
715     if (jhost)
716       jhost_unref(env, jhost);
717
718   }
719   xbt_dynar_free(&hosts);
720   XBT_INFO("Clean native world");
721 }
722 JNIEXPORT void JNICALL
723     JNICALL Java_org_simgrid_msg_Msg_clean(JNIEnv * env, jclass cls)
724 {
725   /* cleanup native stuff. Calling it is ... useless since leaking memory at the end of the simulation is a non-issue */
726   MSG_error_t rv = MSG_OK != MSG_clean();
727   jxbt_check_res("MSG_clean()", rv, MSG_OK,
728                  bprintf
729                  ("unexpected error : MSG_clean() failed .. please report this bug "));
730 }
731    
732 JNIEXPORT jint JNICALL
733 Java_org_simgrid_msg_MsgNative_processKillAll(JNIEnv * env, jclass cls,
734                                           jint jresetPID)
735 {
736   return (jint) MSG_process_killall((int) jresetPID);
737 }
738
739 JNIEXPORT void JNICALL
740 Java_org_simgrid_msg_Msg_createEnvironment(JNIEnv * env, jclass cls,
741                                        jstring jplatformFile)
742 {
743
744   const char *platformFile =
745       (*env)->GetStringUTFChars(env, jplatformFile, 0);
746
747   MSG_create_environment(platformFile);
748
749   (*env)->ReleaseStringUTFChars(env, jplatformFile, platformFile);
750 }
751
752 JNIEXPORT void JNICALL
753 Java_org_simgrid_msg_MsgNative_processExit(JNIEnv * env, jclass cls,
754                                        jobject jprocess)
755 {
756
757   m_process_t process = jprocess_to_native_process(jprocess, env);
758
759   if (!process) {
760     jxbt_throw_notbound(env, "process", jprocess);
761     return;
762   }
763
764   smx_ctx_java_stop(MSG_process_get_smx_ctx(process));
765 }
766
767 JNIEXPORT void JNICALL
768 Java_org_simgrid_msg_Msg_info(JNIEnv * env, jclass cls, jstring js)
769 {
770   const char *s = (*env)->GetStringUTFChars(env, js, 0);
771   XBT_INFO("%s", s);
772   (*env)->ReleaseStringUTFChars(env, js, s);
773 }
774
775 JNIEXPORT jobjectArray JNICALL
776 Java_org_simgrid_msg_MsgNative_allHosts(JNIEnv * env, jclass cls_arg)
777 {
778   int index;
779   jobjectArray jtable;
780   jobject jhost;
781   jstring jname;
782   m_host_t host;
783
784   xbt_dynar_t table =  MSG_hosts_as_dynar();
785   int count = xbt_dynar_length(table);
786
787   jclass cls = jxbt_get_class(env, "org/simgrid/msg/Host");
788
789   if (!cls) {
790     return NULL;
791   }
792
793   jtable = (*env)->NewObjectArray(env, (jsize) count, cls, NULL);
794
795   if (!jtable) {
796     jxbt_throw_jni(env, "Hosts table allocation failed");
797     return NULL;
798   }
799
800   for (index = 0; index < count; index++) {
801     host = xbt_dynar_get_as(table,index,m_host_t);
802     jhost = (jobject) (MSG_host_get_data(host));
803
804     if (!jhost) {
805       jname = (*env)->NewStringUTF(env, MSG_host_get_name(host));
806
807       jhost =
808           Java_org_simgrid_msg_MsgNative_hostGetByName(env, cls_arg, jname);
809       /* FIXME: leak of jname ? */
810     }
811
812     (*env)->SetObjectArrayElement(env, jtable, index, jhost);
813   }
814   xbt_dynar_free(&table);
815   return jtable;
816 }
817
818 JNIEXPORT void JNICALL
819 Java_org_simgrid_msg_MsgNative_taskSend(JNIEnv * env, jclass cls,
820                                     jstring jalias, jobject jtask,
821                                     jdouble jtimeout)
822 {
823
824   MSG_error_t rv;
825   const char *alias = (*env)->GetStringUTFChars(env, jalias, 0);
826
827   m_task_t task = jtask_to_native_task(jtask, env);
828
829
830   if (!task) {
831     (*env)->ReleaseStringUTFChars(env, jalias, alias);
832     jxbt_throw_notbound(env, "task", jtask);
833     return;
834   }
835
836   /* Pass a global ref to the Jtask into the Ctask so that the receiver can use it */
837   MSG_task_set_data(task, (void *) (*env)->NewGlobalRef(env, jtask));
838   rv = MSG_task_send_with_timeout(task, alias, (double) jtimeout);
839
840   (*env)->ReleaseStringUTFChars(env, jalias, alias);
841
842   jxbt_check_res("MSG_task_send_with_timeout()", rv,
843                  MSG_HOST_FAILURE | MSG_TRANSFER_FAILURE | MSG_TIMEOUT,
844                  bprintf("while sending task %s to mailbox %s",
845                          MSG_task_get_name(task), alias));
846 }
847
848 static void msg_task_cancel_on_failed_dsend(void*t) {
849         m_task_t task = t;
850         JNIEnv *env =get_current_thread_env();
851         jobject jtask_global = MSG_task_get_data(task);
852
853         /* Destroy the global ref so that the JVM can free the stuff */
854         (*env)->DeleteGlobalRef(env, jtask_global);
855         MSG_task_set_data(task, NULL);
856         MSG_task_destroy(task);
857 }
858
859 JNIEXPORT void JNICALL
860 Java_org_simgrid_msg_MsgNative_taskDSend(JNIEnv * env, jclass cls,
861                                     jstring jalias, jobject jtask)
862 {
863
864   const char *alias = (*env)->GetStringUTFChars(env, jalias, 0);
865
866   m_task_t task = jtask_to_native_task(jtask, env);
867
868
869   if (!task) {
870     (*env)->ReleaseStringUTFChars(env, jalias, alias);
871     jxbt_throw_notbound(env, "task", jtask);
872     return;
873   }
874
875   /* Pass a global ref to the Jtask into the Ctask so that the receiver can use it */
876   MSG_task_set_data(task, (void *) (*env)->NewGlobalRef(env, jtask));
877   MSG_task_dsend(task, alias, msg_task_cancel_on_failed_dsend);
878
879   (*env)->ReleaseStringUTFChars(env, jalias, alias);
880 }
881
882
883 JNIEXPORT void JNICALL
884 Java_org_simgrid_msg_MsgNative_taskSendBounded(JNIEnv * env, jclass cls,
885                                            jstring jalias, jobject jtask,
886                                            jdouble jmaxRate)
887 {
888   m_task_t task = jtask_to_native_task(jtask, env);
889   MSG_error_t rv;
890   const char *alias;
891
892   if (!task) {
893     jxbt_throw_notbound(env, "task", jtask);
894     return;
895   }
896
897   alias = (*env)->GetStringUTFChars(env, jalias, 0);
898
899   /* Pass a global ref to the Jtask into the Ctask so that the receiver can use it */
900   MSG_task_set_data(task, (void *) (*env)->NewGlobalRef(env, jtask));
901   rv = MSG_task_send_bounded(task, alias, (double) jmaxRate);
902
903   (*env)->ReleaseStringUTFChars(env, jalias, alias);
904
905   jxbt_check_res("MSG_task_send_bounded()", rv,
906                  MSG_HOST_FAILURE | MSG_TRANSFER_FAILURE | MSG_TIMEOUT,
907                  bprintf
908                  ("while sending task %s to mailbox %s with max rate %f",
909                   MSG_task_get_name(task), alias, (double) jmaxRate));
910
911 }
912
913 JNIEXPORT jobject JNICALL
914 Java_org_simgrid_msg_MsgNative_taskReceive(JNIEnv * env, jclass cls,
915                                        jstring jalias, jdouble jtimeout,
916                                        jobject jhost)
917 {
918   MSG_error_t rv;
919   m_task_t task = NULL;
920   m_host_t host = NULL;
921   jobject jtask_global, jtask_local;
922   const char *alias;
923
924   if (jhost) {
925     host = jhost_get_native(env, jhost);
926
927     if (!host) {
928       jxbt_throw_notbound(env, "host", jhost);
929       return NULL;
930     }
931   }
932
933   alias = (*env)->GetStringUTFChars(env, jalias, 0);
934
935   rv = MSG_task_receive_ext(&task, alias, (double) jtimeout, host);
936   if (rv != MSG_OK) {
937         switch (rv) {
938                 case MSG_TIMEOUT:
939                         jxbt_throw_time_out_failure(env,NULL);
940                 break;
941                 case MSG_TRANSFER_FAILURE:
942                         jxbt_throw_transfer_failure(env,NULL);
943                 break;
944                 case MSG_HOST_FAILURE:
945                         jxbt_throw_host_failure(env,NULL);
946                 break;
947                 default:
948                         jxbt_throw_native(env,bprintf("receive failed"));
949         }
950         return NULL;
951   }
952   jtask_global = MSG_task_get_data(task);
953
954   /* Convert the global ref into a local ref so that the JVM can free the stuff */
955   jtask_local = (*env)->NewLocalRef(env, jtask_global);
956   (*env)->DeleteGlobalRef(env, jtask_global);
957   MSG_task_set_data(task, NULL);
958
959   (*env)->ReleaseStringUTFChars(env, jalias, alias);
960
961   jxbt_check_res("MSG_task_receive_ext()", rv,
962                  MSG_HOST_FAILURE | MSG_TRANSFER_FAILURE | MSG_TIMEOUT,
963                  bprintf("while receiving from mailbox %s", alias));
964
965   return (jobject) jtask_local;
966 }
967
968 JNIEXPORT jboolean JNICALL
969 Java_org_simgrid_msg_MsgNative_taskListen(JNIEnv * env, jclass cls,
970                                       jstring jalias)
971 {
972
973   const char *alias;
974   int rv;
975
976   alias = (*env)->GetStringUTFChars(env, jalias, 0);
977
978   rv = MSG_task_listen(alias);
979
980   (*env)->ReleaseStringUTFChars(env, jalias, alias);
981
982   return (jboolean) rv;
983 }
984
985 JNIEXPORT jint JNICALL
986 Java_org_simgrid_msg_MsgNative_taskListenFromHost(JNIEnv * env, jclass cls,
987                                               jstring jalias,
988                                               jobject jhost)
989 {
990   int rv;
991   const char *alias;
992
993   m_host_t host = jhost_get_native(env, jhost);
994
995   if (!host) {
996     jxbt_throw_notbound(env, "host", jhost);
997     return -1;
998   }
999   alias = (*env)->GetStringUTFChars(env, jalias, 0);
1000
1001   rv = MSG_task_listen_from_host(alias, host);
1002
1003   (*env)->ReleaseStringUTFChars(env, jalias, alias);
1004
1005   return (jint) rv;
1006 }
1007
1008 JNIEXPORT jint JNICALL
1009 Java_org_simgrid_msg_MsgNative_taskListenFrom(JNIEnv * env, jclass cls,
1010                                           jstring jalias)
1011 {
1012
1013   int rv;
1014   const char *alias = (*env)->GetStringUTFChars(env, jalias, 0);
1015
1016   rv = MSG_task_listen_from(alias);
1017
1018   (*env)->ReleaseStringUTFChars(env, jalias, alias);
1019
1020   return (jint) rv;
1021 }
1022
1023 JNIEXPORT void JNICALL
1024 Java_org_simgrid_msg_Msg_deployApplication(JNIEnv * env, jclass cls,
1025                                        jstring jdeploymentFile)
1026 {
1027
1028   const char *deploymentFile =
1029       (*env)->GetStringUTFChars(env, jdeploymentFile, 0);
1030
1031   surf_parse_reset_callbacks();
1032
1033   surfxml_add_callback(STag_surfxml_process_cb_list,
1034                        japplication_handler_on_begin_process);
1035
1036   surfxml_add_callback(ETag_surfxml_argument_cb_list,
1037                        japplication_handler_on_process_arg);
1038
1039   surfxml_add_callback(STag_surfxml_prop_cb_list,
1040                        japplication_handler_on_property);
1041
1042   surfxml_add_callback(ETag_surfxml_process_cb_list,
1043                        japplication_handler_on_end_process);
1044
1045   surf_parse_open(deploymentFile);
1046
1047   japplication_handler_on_start_document();
1048
1049   if (surf_parse())
1050     jxbt_throw_jni(env, "surf_parse() failed");
1051
1052   surf_parse_close();
1053
1054   japplication_handler_on_end_document();
1055
1056   (*env)->ReleaseStringUTFChars(env, jdeploymentFile, deploymentFile);
1057 }