Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Fix copyright headers
[simgrid.git] / src / java / 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 "msg/private.h"
11 #include "simix/private.h"
12 #include "simix/smx_context_java.h"
13
14 #include "jmsg_process.h"
15 #include "jmsg_host.h"
16 #include "jmsg_task.h"
17 #include "jmsg_application_handler.h"
18 #include "jxbt_utilities.h"
19
20 #include "jmsg.h"
21 #include "msg/mailbox.h"
22 #include "surf/surfxml_parse.h"
23
24 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(jmsg);
25
26 static JavaVM *__java_vm = NULL;
27
28 static jobject native_to_java_process(m_process_t process);
29
30 JavaVM *get_java_VM(void)
31 {
32   return __java_vm;
33 }
34
35 JNIEnv *get_current_thread_env(void)
36 {
37   JNIEnv *env;
38
39   (*__java_vm)->AttachCurrentThread(__java_vm, (void **) &env, NULL);
40
41   return env;
42 }
43
44 static jobject native_to_java_process(m_process_t process)
45 {
46   return ((smx_ctx_java_t)
47           (process->simdata->s_process->context))->jprocess;
48 }
49
50 /*
51  * The MSG process connected functions implementation.                                 
52  */
53
54 JNIEXPORT void JNICALL
55 Java_simgrid_msg_MsgNative_processCreate(JNIEnv * env, jclass cls,
56                                          jobject jprocess_arg, jobject jhost)
57 {
58   jobject jprocess;             /* the global reference to the java process instance    */
59   jstring jname;                /* the name of the java process instance                */
60   const char *name;             /* the C name of the process                            */
61   m_process_t process;          /* the native process to create                         */
62   char alias[MAX_ALIAS_NAME + 1] = { 0 };
63   msg_mailbox_t mailbox;
64
65   DEBUG4
66     ("Java_simgrid_msg_MsgNative_processCreate(env=%p,cls=%p,jproc=%p,jhost=%p)",
67      env, cls, jprocess_arg, jhost);
68   /* get the name of the java process */
69   jname = jprocess_get_name(jprocess_arg, env);
70
71   if (!jname) {
72     jxbt_throw_null(env,
73                     xbt_strdup
74                     ("Internal error: Process name cannot be NULL"));
75     return;
76   }
77
78   /* allocate the data of the simulation */
79   process = xbt_new0(s_m_process_t, 1);
80   process->simdata = xbt_new0(s_simdata_process_t, 1);
81
82   /* create a global java process instance */
83   jprocess = jprocess_new_global_ref(jprocess_arg, env);
84
85   if (!jprocess) {
86     free(process->simdata);
87     free(process);
88     jxbt_throw_jni(env, "Can't get a global ref to the java process");
89     return;
90   }
91
92   /* bind the java process instance to the native process */
93   jprocess_bind(jprocess, process, env);
94
95   /* build the C name of the process */
96   name = (*env)->GetStringUTFChars(env, jname, 0);
97   process->name = xbt_strdup(name);
98   (*env)->ReleaseStringUTFChars(env, jname, name);
99
100   process->simdata->m_host = jhost_get_native(env, jhost);
101
102
103   if (!(process->simdata->m_host)) {    /* not binded */
104     free(process->simdata);
105     free(process->data);
106     free(process);
107     jxbt_throw_notbound(env, "host", jhost);
108     return;
109   }
110   process->simdata->PID = msg_global->PID++;
111
112   /* create a new context */
113   DEBUG8
114     ("fill in process %s/%s (pid=%d) %p (sd=%p, host=%p, host->sd=%p); env=%p",
115      process->name, process->simdata->m_host->name, process->simdata->PID,
116      process, process->simdata, process->simdata->m_host,
117      process->simdata->m_host->simdata, env);
118
119   process->simdata->s_process = 
120     SIMIX_process_create(process->name, (xbt_main_func_t)jprocess, 
121                          /*data */ (void *) process,
122                          process->simdata->m_host->simdata->smx_host->name, 
123                          0, NULL, NULL);
124     
125   DEBUG1("context created (s_process=%p)", process->simdata->s_process);
126
127
128   if (SIMIX_process_self()) {   /* someone created me */
129     process->simdata->PPID = MSG_process_get_PID(SIMIX_process_self()->data);
130   } else {
131     process->simdata->PPID = -1;
132   }
133
134   process->simdata->last_errno = MSG_OK;
135
136   /* add the process to the list of the processes of the simulation */
137   xbt_fifo_unshift(msg_global->process_list, process);
138
139   sprintf(alias, "%s:%s", (process->simdata->m_host->simdata->smx_host)->name,
140           process->name);
141
142   mailbox = MSG_mailbox_new(alias);
143   
144 }
145
146 JNIEXPORT void JNICALL
147 Java_simgrid_msg_MsgNative_processSuspend(JNIEnv * env, jclass cls,
148                                           jobject jprocess)
149 {
150   m_process_t process = jprocess_to_native_process(jprocess, env);
151
152   if (!process) {
153     jxbt_throw_notbound(env, "process", jprocess);
154     return;
155   }
156
157   /* try to suspend the process */
158   MSG_error_t rv = MSG_process_suspend(process);
159   
160   jxbt_check_res("MSG_process_suspend()",rv,MSG_OK,
161     bprintf("unexpected error , please report this bug"));
162   
163 }
164
165 JNIEXPORT void JNICALL
166 Java_simgrid_msg_MsgNative_processResume(JNIEnv * env, jclass cls,
167                                          jobject jprocess)
168 {
169   m_process_t process = jprocess_to_native_process(jprocess, env);
170
171   if (!process) {
172     jxbt_throw_notbound(env,"process", jprocess);
173     return;
174   }
175
176   /* try to resume the process */
177     MSG_error_t rv = MSG_process_resume(process);
178     
179     jxbt_check_res("MSG_process_resume()",rv,MSG_OK,
180     bprintf("unexpected error , please report this bug"));
181 }
182
183 JNIEXPORT jboolean JNICALL
184 Java_simgrid_msg_MsgNative_processIsSuspended(JNIEnv * env, jclass cls,
185                                               jobject jprocess)
186 {
187   m_process_t process = jprocess_to_native_process(jprocess, env);
188
189   if (!process) {
190     jxbt_throw_notbound(env, "process", jprocess);
191     return 0;
192   }
193
194   /* true is the process is suspended, false otherwise */
195   return (jboolean) MSG_process_is_suspended(process);
196 }
197
198 JNIEXPORT void JNICALL
199 Java_simgrid_msg_MsgNative_processKill(JNIEnv * env, jclass cls,
200                                        jobject jprocess)
201 {
202   /* get the native instances from the java ones */
203   m_process_t process = jprocess_to_native_process(jprocess, env);
204
205   if (!process) {
206     jxbt_throw_notbound(env, "process", jprocess);
207     return;
208   }
209
210   /* delete the global reference */
211   jprocess_delete_global_ref(native_to_java_process(process), env);
212
213   /* kill the native process (this wrapper is call by the destructor of the java 
214    * process instance)
215    */
216   MSG_process_kill(process);
217 }
218
219 JNIEXPORT jobject JNICALL
220 Java_simgrid_msg_MsgNative_processGetHost(JNIEnv * env, jclass cls,
221                                           jobject jprocess)
222 {
223   /* get the native instances from the java ones */
224   m_process_t process = jprocess_to_native_process(jprocess, env);
225   m_host_t host;
226
227   if (!process) {
228     jxbt_throw_notbound(env, "process", jprocess);
229     return NULL;
230   }
231
232   host = MSG_process_get_host(process);
233
234   if (!host->data) {
235     jxbt_throw_jni(env, "MSG_process_get_host() failed");
236     return NULL;
237   }
238
239   /* return the global reference to the java host instance */
240   return (jobject) host->data;
241
242 }
243
244 JNIEXPORT jobject JNICALL
245 Java_simgrid_msg_MsgNative_processFromPID(JNIEnv * env, jclass cls, jint PID)
246 {
247   m_process_t process = MSG_process_from_PID(PID);
248
249   if (!process) {
250     jxbt_throw_process_not_found(env, bprintf("PID = %d", PID));
251     return NULL;
252   }
253
254   if (!native_to_java_process(process)) {
255     jxbt_throw_jni(env, "SIMIX_process_get_jprocess() failed");
256     return NULL;
257   }
258
259   return (jobject) (native_to_java_process(process));
260 }
261
262
263 JNIEXPORT jint JNICALL
264 Java_simgrid_msg_MsgNative_processGetPID(JNIEnv * env, jclass cls,
265                                          jobject jprocess)
266 {
267   m_process_t process = jprocess_to_native_process(jprocess, env);
268
269   if (!process) {
270     jxbt_throw_notbound(env, "process", jprocess);
271     return 0;
272   }
273
274   return (jint) MSG_process_get_PID(process);
275 }
276
277
278 JNIEXPORT jint JNICALL
279 Java_simgrid_msg_MsgNative_processGetPPID(JNIEnv * env, jclass cls,
280                                           jobject jprocess)
281 {
282   m_process_t process = jprocess_to_native_process(jprocess, env);
283
284   if (!process) {
285     jxbt_throw_notbound(env, "process", jprocess);
286     return 0;
287   }
288
289   return (jint) MSG_process_get_PPID(process);
290 }
291
292 JNIEXPORT jobject JNICALL
293 Java_simgrid_msg_MsgNative_processSelf(JNIEnv * env, jclass cls)
294 {
295   m_process_t process = MSG_process_self();
296   jobject jprocess;
297
298   if (!process) {
299     jxbt_throw_jni(env, xbt_strdup("MSG_process_self() failed"));
300     return NULL;
301   }
302
303   jprocess = native_to_java_process(process);
304
305   if (!jprocess)
306     jxbt_throw_jni(env, xbt_strdup("SIMIX_process_get_jprocess() failed"));
307
308   return jprocess;
309 }
310
311 JNIEXPORT void JNICALL
312 Java_simgrid_msg_MsgNative_processChangeHost(JNIEnv * env, jclass cls,
313                                              jobject jhost)
314 {
315   m_host_t host = jhost_get_native(env, jhost);
316
317   if (!host) {
318     jxbt_throw_notbound(env, "host", jhost);
319     return;
320   }
321
322   /* try to change the host of the process */
323   MSG_error_t rv = MSG_process_change_host(host);
324
325   jxbt_check_res("MSG_process_change_host()",rv,MSG_OK,
326       bprintf("unexpected error , please report this bug"));
327
328 }
329
330 JNIEXPORT void JNICALL
331 Java_simgrid_msg_MsgNative_processWaitFor(JNIEnv * env, jclass cls,
332                                           jdouble seconds)
333 {
334     MSG_error_t rv= MSG_process_sleep((double) seconds);
335     
336     jxbt_check_res("MSG_process_sleep()",rv, MSG_HOST_FAILURE,
337     bprintf("while process was waiting for %f seconds",(double)seconds));
338     
339 }
340
341
342 /***************************************************************************************
343  * The MSG host connected functions implementation.                                    *
344  ***************************************************************************************/
345
346 JNIEXPORT jobject JNICALL
347 Java_simgrid_msg_MsgNative_hostGetByName(JNIEnv * env, jclass cls,
348                                          jstring jname)
349 {
350   m_host_t host;                /* native host                                          */
351   jobject jhost;                /* global reference to the java host instance returned  */
352
353   /* get the C string from the java string */
354   const char *name = (*env)->GetStringUTFChars(env, jname, 0);
355
356   /* get the host by name       (the hosts are created during the grid resolution) */
357   host = MSG_get_host_by_name(name);
358   DEBUG2("MSG gave %p as native host (simdata=%p)", host, host->simdata);
359
360   (*env)->ReleaseStringUTFChars(env, jname, name);
361
362   if (!host) {                  /* invalid name */
363     jxbt_throw_host_not_found(env, name);
364     return NULL;
365   }
366
367   if (!host->data) {            /* native host not associated yet with java host */
368
369     /* instanciate a new java host */
370     jhost = jhost_new_instance(env);
371
372     if (!jhost) {
373       jxbt_throw_jni(env, "java host instantiation failed");
374       return NULL;
375     }
376
377     /* get a global reference to the newly created host */
378     jhost = jhost_ref(env, jhost);
379
380     if (!jhost) {
381       jxbt_throw_jni(env, "new global ref allocation failed");
382       return NULL;
383     }
384
385     /* bind the java host and the native host */
386     jhost_bind(jhost, host, env);
387
388     /* the native host data field is set with the global reference to the 
389      * java host returned by this function 
390      */
391     host->data = (void *) jhost;
392   }
393
394   /* return the global reference to the java host instance */
395   return (jobject) host->data;
396 }
397
398 JNIEXPORT jstring JNICALL
399 Java_simgrid_msg_MsgNative_hostGetName(JNIEnv * env, jclass cls,
400                                        jobject jhost)
401 {
402   m_host_t host = jhost_get_native(env, jhost);
403
404   if (!host) {
405     jxbt_throw_notbound(env, "host", jhost);
406     return NULL;
407   }
408
409   return (*env)->NewStringUTF(env, host->name);
410 }
411
412 JNIEXPORT jint JNICALL
413 Java_simgrid_msg_MsgNative_hostGetNumber(JNIEnv * env, jclass cls)
414 {
415   return (jint) MSG_get_host_number();
416 }
417
418 JNIEXPORT jobject JNICALL
419 Java_simgrid_msg_MsgNative_hostSelf(JNIEnv * env, jclass cls)
420 {
421   jobject jhost;
422
423   m_host_t host = MSG_host_self();
424
425   if (!host->data) {
426     /* the native host not yet associated with the java host instance */
427
428     /* instanciate a new java host instance */
429     jhost = jhost_new_instance(env);
430
431     if (!jhost) {
432       jxbt_throw_jni(env, "java host instantiation failed");
433       return NULL;
434     }
435
436     /* get a global reference to the newly created host */
437     jhost = jhost_ref(env, jhost);
438
439     if (!jhost) {
440       jxbt_throw_jni(env, "global ref allocation failed");
441       return NULL;
442     }
443
444     /* Bind & store it */
445     jhost_bind(jhost, host, env);
446     host->data = (void *) jhost;
447   } else {
448     jhost = (jobject) host->data;
449   }
450
451   return jhost;
452 }
453
454 JNIEXPORT jdouble JNICALL
455 Java_simgrid_msg_MsgNative_hostGetSpeed(JNIEnv * env, jclass cls,
456                                         jobject jhost)
457 {
458   m_host_t host = jhost_get_native(env, jhost);
459
460   if (!host) {
461     jxbt_throw_notbound(env, "host", jhost);
462     return -1;
463   }
464
465   return (jdouble) MSG_get_host_speed(host);
466 }
467
468 JNIEXPORT jint JNICALL
469 Java_simgrid_msg_MsgNative_hostGetLoad(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 (jint) MSG_get_host_msgload(host);
480 }
481
482
483 JNIEXPORT jboolean JNICALL
484 Java_simgrid_msg_MsgNative_hostIsAvail(JNIEnv * env, jclass cls,
485                                        jobject jhost)
486 {
487   m_host_t host = jhost_get_native(env, jhost);
488
489   if (!host) {
490     jxbt_throw_notbound(env, "host", jhost);
491     return 0;
492   }
493
494   return (jboolean) MSG_host_is_avail(host);
495 }
496
497
498 /***************************************************************************************
499  * The MSG task connected functions implementation.                                    *
500  ***************************************************************************************/
501
502 JNIEXPORT void JNICALL
503 Java_simgrid_msg_MsgNative_taskCreate(JNIEnv * env, jclass cls, jobject jtask,
504                                       jstring jname, jdouble jcomputeDuration,
505                                       jdouble jmessageSize)
506 {
507   m_task_t task;                /* the native task to create                            */
508   const char *name=NULL;        /* the name of the task                                 */
509
510   if (jcomputeDuration < 0) {
511     jxbt_throw_illegal(env,
512                        bprintf("Task ComputeDuration (%f) cannot be negative",
513                                (double) jcomputeDuration));
514     return;
515   }
516
517   if (jmessageSize < 0) {
518     jxbt_throw_illegal(env,
519                        bprintf("Task MessageSize (%f) cannot be negative",
520                                (double) jmessageSize));
521     return;
522   }
523
524   if (jname) {
525     /* get the C string from the java string */
526     name = (*env)->GetStringUTFChars(env, jname, 0);
527   }
528
529
530   /* create the task */
531   task =
532     MSG_task_create(name, (double) jcomputeDuration, (double) jmessageSize,
533                     NULL);
534
535   if (jname)
536     (*env)->ReleaseStringUTFChars(env, jname, name);
537
538   /* bind & store the task */
539   jtask_bind(jtask, task, env);
540
541   /* allocate a new global reference to the java task instance */
542   task->data = (void *) jtask_new_global_ref(jtask, env);
543
544   if (!task->data)
545     jxbt_throw_jni(env, "global ref allocation failed");
546
547 }
548
549 JNIEXPORT void JNICALL
550 Java_simgrid_msg_MsgNative_parallel_taskCreate(JNIEnv * env, jclass cls,
551                                                jobject jtask, jstring jname,
552                                                jobjectArray jhosts,
553                                                jdoubleArray
554                                                jcomputeDurations_arg,
555                                                jdoubleArray jmessageSizes_arg)
556 {
557
558   m_task_t task;                /* the native parallel task to create           */
559   const char *name;             /* the name of the task                         */
560   int host_count;
561   m_host_t *hosts;
562   double *computeDurations;
563   double *messageSizes;
564   jdouble *jcomputeDurations;
565   jdouble *jmessageSizes;
566
567   jobject jhost;
568   int index;
569
570
571   if (!jcomputeDurations_arg) {
572     jxbt_throw_null(env,
573                     xbt_strdup
574                     ("Parallel task compute durations cannot be null"));
575     return;
576   }
577
578   if (!jmessageSizes_arg) {
579     jxbt_throw_null(env,
580                     xbt_strdup("Parallel task message sizes cannot be null"));
581     return;
582   }
583
584   if (!jname) {
585     jxbt_throw_null(env, xbt_strdup("Parallel task name cannot be null"));
586     return;
587   }
588
589   host_count = (int) (*env)->GetArrayLength(env, jhosts);
590
591
592   hosts = xbt_new0(m_host_t, host_count);
593   computeDurations = xbt_new0(double, host_count);
594   messageSizes = xbt_new0(double, host_count * host_count);
595
596   jcomputeDurations =
597     (*env)->GetDoubleArrayElements(env, jcomputeDurations_arg, 0);
598   jmessageSizes = (*env)->GetDoubleArrayElements(env, jmessageSizes_arg, 0);
599
600   for (index = 0; index < host_count; index++) {
601     jhost = (*env)->GetObjectArrayElement(env, jhosts, index);
602     hosts[index] = jhost_get_native(env, jhost);
603     computeDurations[index] = jcomputeDurations[index];
604   }
605   for (index = 0; index < host_count * host_count; index++) {
606     messageSizes[index] = jmessageSizes[index];
607   }
608
609   (*env)->ReleaseDoubleArrayElements(env, jcomputeDurations_arg,
610                                      jcomputeDurations, 0);
611   (*env)->ReleaseDoubleArrayElements(env, jmessageSizes_arg, jmessageSizes,
612                                      0);
613
614
615   /* get the C string from the java string */
616   name = (*env)->GetStringUTFChars(env, jname, 0);
617
618   task =
619     MSG_parallel_task_create(name, host_count, hosts, computeDurations,
620                              messageSizes, NULL);
621
622   (*env)->ReleaseStringUTFChars(env, jname, name);
623
624   /* associate the java task object and the native task */
625   jtask_bind(jtask, task, env);
626
627   task->data = (void *) jtask;
628
629   if (!task->data)
630     jxbt_throw_jni(env, "global ref allocation failed");
631 }
632
633 JNIEXPORT jobject JNICALL
634 Java_simgrid_msg_MsgNative_taskGetSender(JNIEnv * env, jclass cls,
635                                          jobject jtask)
636 {
637   m_process_t process;
638
639   m_task_t task = jtask_to_native_task(jtask, env);
640
641   if (!task) {
642     jxbt_throw_notbound(env, "task", jtask);
643     return NULL;
644   }
645
646   process = MSG_task_get_sender(task);
647   return (jobject) native_to_java_process(process);
648 }
649
650 JNIEXPORT jobject JNICALL
651 Java_simgrid_msg_MsgNative_taskGetSource(JNIEnv * env, jclass cls,
652                                          jobject jtask)
653 {
654   m_host_t host;
655   m_task_t task = jtask_to_native_task(jtask, env);
656
657   if (!task) {
658     jxbt_throw_notbound(env, "task", jtask);
659     return NULL;
660   }
661
662   host = MSG_task_get_source(task);
663
664   if (!host->data) {
665     jxbt_throw_jni(env, "MSG_task_get_source() failed");
666     return NULL;
667   }
668
669   return (jobject) host->data;
670 }
671
672
673 JNIEXPORT jstring JNICALL
674 Java_simgrid_msg_MsgNative_taskGetName(JNIEnv * env, jclass cls,
675                                        jobject jtask)
676 {
677   m_task_t task = jtask_to_native_task(jtask, env);
678
679   if (!task) {
680     jxbt_throw_notbound(env, "task", jtask);
681     return NULL;
682   }
683
684   return (*env)->NewStringUTF(env, task->name);
685 }
686
687 JNIEXPORT void JNICALL
688 Java_simgrid_msg_MsgNative_taskCancel(JNIEnv * env, jclass cls, jobject jtask)
689 {
690   m_task_t ptask = jtask_to_native_task(jtask, env);
691
692   if (!ptask) {
693     jxbt_throw_notbound(env, "task", jtask);
694     return;
695   }
696
697   MSG_error_t rv = MSG_task_cancel(ptask);
698   
699     jxbt_check_res("MSG_task_cancel()",rv,MSG_OK,
700     bprintf("unexpected error , please report this bug"));
701 }
702
703 JNIEXPORT jdouble JNICALL
704 Java_simgrid_msg_MsgNative_taskGetComputeDuration(JNIEnv * env, jclass cls,
705                                                   jobject jtask)
706 {
707   m_task_t ptask = jtask_to_native_task(jtask, env);
708
709   if (!ptask) {
710     jxbt_throw_notbound(env, "task", jtask);
711     return -1;
712   }
713   return (jdouble) MSG_task_get_compute_duration(ptask);
714 }
715
716 JNIEXPORT jdouble JNICALL
717 Java_simgrid_msg_MsgNative_taskGetRemainingDuration(JNIEnv * env, jclass cls,
718                                                     jobject jtask)
719 {
720   m_task_t ptask = jtask_to_native_task(jtask, env);
721
722   if (!ptask) {
723     jxbt_throw_notbound(env, "task", jtask);
724     return -1;
725   }
726   return (jdouble) MSG_task_get_remaining_computation(ptask);
727 }
728
729 JNIEXPORT void JNICALL
730 Java_simgrid_msg_MsgNative_taskSetPriority(JNIEnv * env, jclass cls,
731                                            jobject jtask, jdouble priority)
732 {
733   m_task_t task = jtask_to_native_task(jtask, env);
734
735   if (!task) {
736     jxbt_throw_notbound(env, "task", jtask);
737     return;
738   }
739   MSG_task_set_priority(task, (double) priority);
740 }
741
742 JNIEXPORT void JNICALL
743 Java_simgrid_msg_MsgNative_taskDestroy(JNIEnv * env, jclass cls,
744                                        jobject jtask_arg)
745 {
746
747   /* get the native task */
748   m_task_t task = jtask_to_native_task(jtask_arg, env);
749   jobject jtask;
750
751   if (!task) {
752     jxbt_throw_notbound(env, "task", task);
753     return;
754   }
755   jtask = (jobject) task->data;
756     
757   MSG_error_t rv = MSG_task_destroy(task);
758     
759   jxbt_check_res("MSG_task_destroy()",rv,MSG_OK,
760     bprintf("unexpected error , please report this bug"));
761
762
763   /* delete the global reference to the java task object */
764   jtask_delete_global_ref(jtask, env);
765 }
766
767 JNIEXPORT void JNICALL
768 Java_simgrid_msg_MsgNative_taskExecute(JNIEnv * env, jclass cls,
769                                        jobject jtask)
770 {
771   m_task_t task = jtask_to_native_task(jtask, env);
772
773   if (!task) {
774     jxbt_throw_notbound(env, "task", jtask);
775     return;
776   }
777
778   MSG_error_t rv = MSG_task_execute(task);
779   
780     jxbt_check_res("MSG_task_execute()",rv,MSG_HOST_FAILURE|MSG_TASK_CANCELLED,
781     bprintf("while executing task %s", MSG_task_get_name(task)));
782 }
783
784 /***************************************************************************************
785  * Unsortable functions                                                        *
786  ***************************************************************************************/
787
788
789 JNIEXPORT jint JNICALL
790 Java_simgrid_msg_Msg_getErrCode(JNIEnv * env, jclass cls)
791 {
792   return (jint) MSG_get_errno();
793 }
794
795 JNIEXPORT jdouble JNICALL
796 Java_simgrid_msg_Msg_getClock(JNIEnv * env, jclass cls)
797 {
798   return (jdouble) MSG_get_clock();
799 }
800
801
802 JNIEXPORT void JNICALL
803 Java_simgrid_msg_Msg_init(JNIEnv * env, jclass cls, jobjectArray jargs) {
804   char **argv = NULL;
805   int index;
806   int argc = 0;
807   jstring jval;
808   const char *tmp;
809
810   if (jargs)
811     argc = (int) (*env)->GetArrayLength(env, jargs);
812
813   argc++;
814   argv = xbt_new0(char *, argc);
815   argv[0] = strdup("java");
816
817   for (index = 0; index < argc - 1; index++) {
818     jval = (jstring) (*env)->GetObjectArrayElement(env, jargs, index);
819     tmp = (*env)->GetStringUTFChars(env, jval, 0);
820     argv[index + 1] = strdup(tmp);
821     (*env)->ReleaseStringUTFChars(env, jval, tmp);
822   }
823
824   MSG_global_init(&argc, argv);
825   SIMIX_context_select_factory("java");
826
827   for (index = 0; index < argc; index++)
828     free(argv[index]);
829
830   free(argv);
831
832   (*env)->GetJavaVM(env, &__java_vm);
833 }
834
835 JNIEXPORT void JNICALL
836   JNICALL Java_simgrid_msg_Msg_run(JNIEnv * env, jclass cls) {
837   MSG_error_t rv;
838   int index;//xbt_fifo_item_t item = NULL;
839   m_host_t *hosts;
840   jobject jhost;
841
842   /* Run everything */
843   rv= MSG_main();
844     jxbt_check_res("MSG_main()",rv,MSG_OK,
845      bprintf("unexpected error : MSG_main() failed .. please report this bug "));
846
847   DEBUG0
848     ("MSG_main finished. Bail out before cleanup since there is a bug in this part.");
849
850   DEBUG0("Clean java world");
851   /* Cleanup java hosts */
852   hosts = MSG_get_host_table();
853   for (index=0;index<MSG_get_host_number()-1;index++)
854   {
855     jhost = (jobject)hosts[index]->data;
856     if(jhost)
857         jhost_unref(env,jhost);
858
859   }
860
861   DEBUG0("Clean native world");
862   /* cleanup native stuff */
863   rv = MSG_OK != MSG_clean();
864   jxbt_check_res("MSG_clean()",rv,MSG_OK,
865        bprintf("unexpected error : MSG_clean() failed .. please report this bug "));
866
867 }
868
869 JNIEXPORT jint JNICALL
870 Java_simgrid_msg_MsgNative_processKillAll(JNIEnv * env, jclass cls,
871                                           jint jresetPID)
872 {
873   return (jint) MSG_process_killall((int) jresetPID);
874 }
875
876 JNIEXPORT void JNICALL
877 Java_simgrid_msg_Msg_createEnvironment(JNIEnv * env, jclass cls,
878                                        jstring jplatformFile)
879 {
880
881   const char *platformFile = (*env)->GetStringUTFChars(env, jplatformFile, 0);
882
883   MSG_create_environment(platformFile);
884
885   (*env)->ReleaseStringUTFChars(env, jplatformFile, platformFile);
886 }
887
888 JNIEXPORT void JNICALL
889 Java_simgrid_msg_MsgNative_processExit(JNIEnv * env, jclass cls,
890                                        jobject jprocess)
891 {
892
893   m_process_t process = jprocess_to_native_process(jprocess, env);
894
895   if (!process) {
896     jxbt_throw_notbound(env, "process", jprocess);
897     return;
898   }
899
900   SIMIX_context_stop(SIMIX_process_self()->context);
901 }
902
903 JNIEXPORT void JNICALL
904 Java_simgrid_msg_Msg_info(JNIEnv * env, jclass cls, jstring js)
905 {
906   const char *s = (*env)->GetStringUTFChars(env, js, 0);
907   INFO1("%s", s);
908   (*env)->ReleaseStringUTFChars(env, js, s);
909 }
910
911 JNIEXPORT jobjectArray JNICALL
912 Java_simgrid_msg_MsgNative_allHosts(JNIEnv * env, jclass cls_arg)
913 {
914   int index;
915   jobjectArray jtable;
916   jobject jhost;
917   jstring jname;
918   m_host_t host;
919
920   int count = MSG_get_host_number();
921   m_host_t *table = MSG_get_host_table();
922
923   jclass cls = jxbt_get_class(env, "simgrid/msg/Host");
924
925   if (!cls) {
926     return NULL;
927   }
928
929   jtable = (*env)->NewObjectArray(env, (jsize) count, cls, NULL);
930
931   if (!jtable) {
932     jxbt_throw_jni(env, "Hosts table allocation failed");
933     return NULL;
934   }
935
936   for (index = 0; index < count; index++) {
937     host = table[index];
938     jhost = (jobject) (host->data);
939
940     if (!jhost) {
941       jname = (*env)->NewStringUTF(env, host->name);
942
943       jhost = Java_simgrid_msg_MsgNative_hostGetByName(env, cls_arg, jname);
944       /* FIXME: leak of jname ? */
945     }
946
947     (*env)->SetObjectArrayElement(env, jtable, index, jhost);
948   }
949
950   return jtable;
951 }
952
953
954 JNIEXPORT void JNICALL
955 Java_simgrid_msg_MsgNative_selectContextFactory(JNIEnv * env, jclass class,
956                                                 jstring jname)
957 {
958   char *errmsg = NULL;
959   xbt_ex_t e;
960
961   /* get the C string from the java string */
962   const char *name = (*env)->GetStringUTFChars(env, jname, 0);
963
964   TRY {
965     SIMIX_context_select_factory(name);
966   } CATCH(e) {
967     errmsg = xbt_strdup(e.msg);
968     xbt_ex_free(e);
969   }
970
971   (*env)->ReleaseStringUTFChars(env, jname, name);
972
973   if (errmsg) {
974     char *thrown = bprintf("xbt_select_context_factory() failed: %s", errmsg);
975     free(errmsg);
976     jxbt_throw_jni(env, thrown);
977   }
978 }
979
980 JNIEXPORT void JNICALL
981 Java_simgrid_msg_MsgNative_taskSend(JNIEnv * env, jclass cls,
982                                     jstring jalias, jobject jtask,
983                                     jdouble jtimeout)
984 {
985
986   MSG_error_t rv;
987   const char *alias = (*env)->GetStringUTFChars(env, jalias, 0);
988
989   m_task_t task = jtask_to_native_task(jtask, env);
990
991
992   if (!task) {
993     (*env)->ReleaseStringUTFChars(env, jalias, alias);
994     jxbt_throw_notbound(env, "task", jtask);
995     return;
996   }
997
998   rv = MSG_task_send_with_timeout(task, alias, (double) jtimeout);
999
1000   (*env)->ReleaseStringUTFChars(env, jalias, alias);
1001
1002   jxbt_check_res("MSG_task_send_with_timeout()",rv, MSG_HOST_FAILURE|MSG_TRANSFER_FAILURE|MSG_TIMEOUT,
1003     bprintf("while sending task %s to mailbox %s", MSG_task_get_name(task),alias));
1004 }
1005
1006 JNIEXPORT void JNICALL
1007 Java_simgrid_msg_MsgNative_taskSendBounded(JNIEnv * env, jclass cls,
1008                                            jstring jalias, jobject jtask,
1009                                            jdouble jmaxRate)
1010 {
1011   m_task_t task = jtask_to_native_task(jtask, env);
1012   MSG_error_t rv;
1013   const char *alias;
1014
1015   if (!task) {
1016     jxbt_throw_notbound(env, "task", jtask);
1017     return;
1018   }
1019
1020   alias = (*env)->GetStringUTFChars(env, jalias, 0);
1021
1022   rv = MSG_task_send_bounded(task, alias, (double) jmaxRate);
1023
1024   (*env)->ReleaseStringUTFChars(env, jalias, alias);
1025
1026   jxbt_check_res("MSG_task_send_bounded()",rv, MSG_HOST_FAILURE|MSG_TRANSFER_FAILURE|MSG_TIMEOUT,
1027     bprintf("while sending task %s to mailbox %s with max rate %f", MSG_task_get_name(task),alias,(double)jmaxRate));
1028     
1029 }
1030
1031 JNIEXPORT jobject JNICALL
1032 Java_simgrid_msg_MsgNative_taskReceive(JNIEnv * env, jclass cls,
1033                                        jstring jalias, jdouble jtimeout,
1034                                        jobject jhost)
1035 {
1036   MSG_error_t rv;
1037   m_task_t task = NULL;
1038   m_host_t host = NULL;
1039   const char *alias;
1040
1041   if (jhost) {
1042     host = jhost_get_native(env, jhost);
1043
1044     if (!host) {
1045       jxbt_throw_notbound(env, "host", jhost);
1046       return NULL;
1047     }
1048   }
1049
1050   alias = (*env)->GetStringUTFChars(env, jalias, 0);
1051
1052   rv = MSG_task_receive_ext(&task, alias, (double) jtimeout, host);
1053
1054   (*env)->ReleaseStringUTFChars(env, jalias, alias);
1055
1056   jxbt_check_res("MSG_task_receive_ext()",rv, MSG_HOST_FAILURE|MSG_TRANSFER_FAILURE|MSG_TIMEOUT,
1057     bprintf("while receiving from mailbox %s",alias));
1058
1059   return (jobject) task->data;
1060 }
1061
1062 JNIEXPORT jboolean JNICALL
1063 Java_simgrid_msg_MsgNative_taskListen(JNIEnv * env, jclass cls,
1064                                       jstring jalias)
1065 {
1066
1067   const char *alias;
1068   int rv;
1069
1070   alias = (*env)->GetStringUTFChars(env, jalias, 0);
1071
1072   rv = MSG_task_listen(alias);
1073
1074   (*env)->ReleaseStringUTFChars(env, jalias, alias);
1075
1076   return (jboolean) rv;
1077 }
1078
1079 JNIEXPORT jint JNICALL
1080 Java_simgrid_msg_MsgNative_taskListenFromHost(JNIEnv * env, jclass cls,
1081                                               jstring jalias, jobject jhost)
1082 {
1083   int rv;
1084   const char *alias;
1085
1086   m_host_t host = jhost_get_native(env, jhost);
1087
1088   if (!host) {
1089     jxbt_throw_notbound(env, "host", jhost);
1090     return -1;
1091   }
1092   alias = (*env)->GetStringUTFChars(env, jalias, 0);
1093
1094   rv = MSG_task_listen_from_host(alias, host);
1095
1096   (*env)->ReleaseStringUTFChars(env, jalias, alias);
1097
1098   return (jint) rv;
1099 }
1100
1101 JNIEXPORT jint JNICALL
1102 Java_simgrid_msg_MsgNative_taskListenFrom(JNIEnv * env, jclass cls,
1103                                           jstring jalias)
1104 {
1105
1106   int rv;
1107   const char *alias = (*env)->GetStringUTFChars(env, jalias, 0);
1108
1109   rv = MSG_task_listen_from(alias);
1110
1111   (*env)->ReleaseStringUTFChars(env, jalias, alias);
1112
1113   return (jint) rv;
1114 }
1115
1116 JNIEXPORT void JNICALL
1117 Java_simgrid_msg_Msg_deployApplication(JNIEnv * env, jclass cls,
1118                                        jstring jdeploymentFile)
1119 {
1120
1121   const char *deploymentFile =
1122     (*env)->GetStringUTFChars(env, jdeploymentFile, 0);
1123
1124   surf_parse_reset_parser();
1125
1126   surfxml_add_callback(STag_surfxml_process_cb_list,
1127                        japplication_handler_on_begin_process);
1128
1129   surfxml_add_callback(ETag_surfxml_argument_cb_list,
1130                        japplication_handler_on_process_arg);
1131
1132   surfxml_add_callback(STag_surfxml_prop_cb_list,
1133                        japplication_handler_on_property);
1134
1135   surfxml_add_callback(ETag_surfxml_process_cb_list,
1136                        japplication_handler_on_end_process);
1137
1138   surf_parse_open(deploymentFile);
1139
1140   japplication_handler_on_start_document();
1141
1142   if (surf_parse())
1143     jxbt_throw_jni(env,"surf_parse() failed");
1144
1145   surf_parse_close();
1146
1147   japplication_handler_on_end_document();
1148
1149   (*env)->ReleaseStringUTFChars(env, jdeploymentFile, deploymentFile);
1150 }