Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
863053c2ba029dea3fafd7b9c5e2ee7f0587d052
[simgrid.git] / src / bindings / java / jmsg.cpp
1 /* Java Wrappers to the MSG API.                                            */
2
3 /* Copyright (c) 2007-2015. 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 <simgrid/msg.h>
10 #include <simgrid/simix.h>
11 #include <surf/surfxml_parse.h>
12 #include <locale.h>
13 #include <src/simix/smx_private.h>
14
15 #include "jmsg_process.h"
16
17 #include "jmsg_as.h"
18
19 #include "jmsg_host.h"
20 #include "jmsg_storage.h"
21 #include "jmsg_task.h"
22 #include "jxbt_utilities.h"
23
24 #include "jmsg.h"
25
26 #include "JavaContext.hpp"
27
28 /* Shut up some errors in eclipse online compiler. I wish such a pimple wouldn't be needed */
29 #ifndef JNIEXPORT
30 #define JNIEXPORT
31 #endif
32 #ifndef JNICALL
33 #define JNICALL
34 #endif
35 /* end of eclipse-mandated pimple */
36
37 SG_BEGIN_DECL()
38
39 int JAVA_HOST_LEVEL;
40 int JAVA_STORAGE_LEVEL;
41
42 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(jmsg);
43
44 JavaVM *__java_vm = NULL;
45
46 JavaVM *get_java_VM(void)
47 {
48   return __java_vm;
49 }
50
51 JNIEnv *get_current_thread_env(void)
52 {
53   JNIEnv *env;
54
55   __java_vm->AttachCurrentThread((void **) &env, NULL);
56   return env;
57 }
58
59 void jmsg_throw_status(JNIEnv *env, msg_error_t status) {
60   switch (status) {
61     case MSG_TIMEOUT:
62         jxbt_throw_time_out_failure(env,NULL);
63     break;
64     case MSG_TRANSFER_FAILURE:
65         jxbt_throw_transfer_failure(env,NULL);
66     break;
67     case MSG_HOST_FAILURE:
68         jxbt_throw_host_failure(env,NULL);
69     break;
70     case MSG_TASK_CANCELED:
71         jxbt_throw_task_cancelled(env,NULL);
72     break;
73     default:
74         jxbt_throw_native(env,xbt_strdup("undefined message failed "
75           "(please see jmsg_throw_status function in jmsg.cpp)"));
76   }
77 }
78
79
80 /***************************************************************************************
81  * Unsortable functions                                                        *
82  ***************************************************************************************/
83
84 JNIEXPORT jdouble JNICALL
85 Java_org_simgrid_msg_Msg_getClock(JNIEnv * env, jclass cls)
86 {
87   return (jdouble) MSG_get_clock();
88 }
89
90 static void __JAVA_host_priv_free(void *host)
91 {
92 }
93
94 static void __JAVA_storage_priv_free(void *storage)
95 {
96 }
97
98 JNIEXPORT void JNICALL
99 Java_org_simgrid_msg_Msg_init(JNIEnv * env, jclass cls, jobjectArray jargs)
100 {
101   char **argv = NULL;
102   int index;
103   int argc = 0;
104   jstring jval;
105   const char *tmp;
106
107   XBT_LOG_CONNECT(jmsg);
108   XBT_LOG_CONNECT(jtrace);
109
110   env->GetJavaVM(&__java_vm);
111
112   simgrid::simix::factory_initializer = simgrid::java::java_factory;
113   jthrowable exc = env->ExceptionOccurred();
114   if (exc) {
115     env->ExceptionClear();
116   }
117
118   setlocale(LC_NUMERIC,"C");
119
120   if (jargs)
121     argc = (int) env->GetArrayLength(jargs);
122
123   argc++;
124   argv = xbt_new(char *, argc + 1);
125   argv[0] = xbt_strdup("java");
126
127   for (index = 0; index < argc - 1; index++) {
128     jval = (jstring) env->GetObjectArrayElement(jargs, index);
129     tmp = env->GetStringUTFChars(jval, 0);
130     argv[index + 1] = xbt_strdup(tmp);
131     env->ReleaseStringUTFChars(jval, tmp);
132   }
133   argv[argc] = NULL;
134
135   MSG_init(&argc, argv);
136
137   JAVA_HOST_LEVEL = xbt_lib_add_level(host_lib, (void_f_pvoid_t) __JAVA_host_priv_free);
138   JAVA_STORAGE_LEVEL = xbt_lib_add_level(storage_lib, (void_f_pvoid_t) __JAVA_storage_priv_free);
139
140   for (index = 0; index < argc; index++)
141     free(argv[index]);
142
143   free(argv);
144 }
145
146 JNIEXPORT void JNICALL
147     JNICALL Java_org_simgrid_msg_Msg_run(JNIEnv * env, jclass cls)
148 {
149   /* Run everything */
150   XBT_DEBUG("Ready to run MSG_MAIN");
151   msg_error_t rv = MSG_main();
152   XBT_DEBUG("Done running MSG_MAIN");
153   jxbt_check_res("MSG_main()", rv, MSG_OK,
154                  xbt_strdup("unexpected error : MSG_main() failed .. please report this bug "));
155
156   XBT_INFO("MSG_main finished; Cleaning up the simulation...");
157   /* Cleanup java hosts */
158   xbt_dynar_t hosts = MSG_hosts_as_dynar();
159   for (unsigned long index = 0; index < xbt_dynar_length(hosts) - 1; index++) {
160     jobject jhost = (jobject) xbt_lib_get_level(xbt_dynar_get_as(hosts,index,msg_host_t), JAVA_HOST_LEVEL);
161     if (jhost)
162       jhost_unref(env, jhost);
163
164   }
165   xbt_dynar_free(&hosts);
166
167   /* Cleanup java storages */
168   xbt_dynar_t storages = MSG_storages_as_dynar();
169   if(!xbt_dynar_is_empty(storages)){
170     for (unsigned long index = 0; index < xbt_dynar_length(storages) - 1; index++) {
171       jobject jstorage = (jobject) xbt_lib_get_level(xbt_dynar_get_as(storages,index,msg_storage_t), JAVA_STORAGE_LEVEL);
172       if (jstorage)
173         jstorage_unref(env, jstorage);
174     }
175   }
176   xbt_dynar_free(&storages);
177
178 }
179
180 JNIEXPORT void JNICALL
181 Java_org_simgrid_msg_Msg_createEnvironment(JNIEnv * env, jclass cls,
182                                        jstring jplatformFile)
183 {
184
185   const char *platformFile =
186       env->GetStringUTFChars(jplatformFile, 0);
187
188   MSG_create_environment(platformFile);
189
190   env->ReleaseStringUTFChars(jplatformFile, platformFile);
191 }
192
193 JNIEXPORT jobject JNICALL
194 Java_org_simgrid_msg_Msg_environmentGetRoutingRoot(JNIEnv * env, jclass cls)
195 {
196   msg_as_t as = MSG_environment_get_routing_root();
197   jobject jas = jas_new_instance(env);
198   if (!jas) {
199     jxbt_throw_jni(env, "java As instantiation failed");
200     return NULL;
201   }
202   jas = jas_ref(env, jas);
203   if (!jas) {
204     jxbt_throw_jni(env, "new global ref allocation failed");
205     return NULL;
206   }
207   jas_bind(jas, as, env);
208
209   return (jobject) jas;
210 }
211
212 JNIEXPORT void JNICALL
213 Java_org_simgrid_msg_Msg_debug(JNIEnv * env, jclass cls, jstring js)
214 {
215   const char *s = env->GetStringUTFChars(js, 0);
216   XBT_DEBUG("%s", s);
217   env->ReleaseStringUTFChars(js, s);
218 }
219 JNIEXPORT void JNICALL
220 Java_org_simgrid_msg_Msg_verb(JNIEnv * env, jclass cls, jstring js)
221 {
222   const char *s = env->GetStringUTFChars(js, 0);
223   XBT_VERB("%s", s);
224   env->ReleaseStringUTFChars(js, s);
225 }
226 JNIEXPORT void JNICALL
227 Java_org_simgrid_msg_Msg_info(JNIEnv * env, jclass cls, jstring js)
228 {
229   const char *s = env->GetStringUTFChars(js, 0);
230   XBT_INFO("%s", s);
231   env->ReleaseStringUTFChars(js, s);
232 }
233 JNIEXPORT void JNICALL
234 Java_org_simgrid_msg_Msg_warn(JNIEnv * env, jclass cls, jstring js)
235 {
236   const char *s = env->GetStringUTFChars(js, 0);
237   XBT_WARN("%s", s);
238   env->ReleaseStringUTFChars(js, s);
239 }
240 JNIEXPORT void JNICALL
241 Java_org_simgrid_msg_Msg_error(JNIEnv * env, jclass cls, jstring js)
242 {
243   const char *s = env->GetStringUTFChars(js, 0);
244   XBT_ERROR("%s", s);
245   env->ReleaseStringUTFChars(js, s);
246 }
247 JNIEXPORT void JNICALL
248 Java_org_simgrid_msg_Msg_critical(JNIEnv * env, jclass cls, jstring js)
249 {
250   const char *s = env->GetStringUTFChars(js, 0);
251   XBT_CRITICAL("%s", s);
252   env->ReleaseStringUTFChars(js, s);
253 }
254
255 static int java_main(int argc, char *argv[]);
256
257 JNIEXPORT void JNICALL
258 Java_org_simgrid_msg_Msg_deployApplication(JNIEnv * env, jclass cls,
259                                        jstring jdeploymentFile)
260 {
261
262   const char *deploymentFile =
263       env->GetStringUTFChars(jdeploymentFile, 0);
264
265   SIMIX_function_register_default(java_main);
266   MSG_launch_application(deploymentFile);
267 }
268
269 SG_END_DECL()
270
271 /** Run a Java org.simgrid.msg.Process
272  *
273  *  If needed, this waits for the process starting time.
274  *  Then it calls the Process.run() method.
275  */
276 static void run_jprocess(JNIEnv *env, jobject jprocess)
277 {
278   xbt_assert(jprocess != nullptr, "Process not created...");
279   //wait for the process to be able to begin
280   //TODO: Cache it
281   jfieldID jprocess_field_Process_startTime = jxbt_get_sfield(env, "org/simgrid/msg/Process", "startTime", "D");
282   jdouble startTime = env->GetDoubleField(jprocess, jprocess_field_Process_startTime);
283   if (startTime > MSG_get_clock())
284     MSG_process_sleep(startTime - MSG_get_clock());
285   //Execution of the "run" method.
286   jmethodID id = jxbt_get_smethod(env, "org/simgrid/msg/Process", "run", "()V");
287   xbt_assert( (id != nullptr), "Method not found...");
288   env->CallVoidMethod(jprocess, id);
289 }
290
291 /** Create a Java org.simgrid.msg.Process with the arguments and run it */
292 static int java_main(int argc, char *argv[])
293 {
294   JNIEnv *env = get_current_thread_env();
295   simgrid::java::JavaContext* context =
296     (simgrid::java::JavaContext*) SIMIX_context_self();
297
298   //Change the "." in class name for "/".
299   xbt_str_subst(argv[0],'.','/',0);
300   jclass class_Process = env->FindClass(argv[0]);
301   xbt_str_subst(argv[0],'/','.',0);
302   //Retrieve the methodID for the constructor
303   xbt_assert((class_Process != NULL), "Class not found (%s). The deployment file must use the fully qualified class name, including the package. The case is important.", argv[0]);
304   jmethodID constructor_Process = env->GetMethodID(class_Process, "<init>", "(Lorg/simgrid/msg/Host;Ljava/lang/String;[Ljava/lang/String;)V");
305   xbt_assert((constructor_Process != NULL), "Constructor not found for class %s. Is there a (Host, String ,String[]) constructor in your class ?", argv[0]);
306
307   //Retrieve the name of the process.
308   jstring jname = env->NewStringUTF(argv[0]);
309   //Build the arguments
310   jobjectArray args = (jobjectArray)env->NewObjectArray(argc - 1,
311     env->FindClass("java/lang/String"),
312     env->NewStringUTF(""));
313   int i;
314   for (i = 1; i < argc; i++)
315       env->SetObjectArrayElement(args,i - 1,
316         env->NewStringUTF(argv[i]));
317   //Retrieve the host for the process.
318   jstring jhostName = env->NewStringUTF(MSG_host_get_name(MSG_host_self()));
319   jobject jhost = Java_org_simgrid_msg_Host_getByName(env, NULL, jhostName);
320   //creates the process
321   jobject jprocess = env->NewObject(class_Process, constructor_Process, jhost, jname, args);
322   xbt_assert((jprocess != NULL), "Process allocation failed.");
323   jprocess = env->NewGlobalRef(jprocess);
324   //bind the process to the context
325   msg_process_t process = MSG_process_self();
326
327   context->jprocess = jprocess;
328   /* sets the PID and the PPID of the process */
329   env->SetIntField(jprocess, jprocess_field_Process_pid,(jint) MSG_process_get_PID(process));
330   env->SetIntField(jprocess, jprocess_field_Process_ppid, (jint) MSG_process_get_PPID(process));
331   jprocess_bind(jprocess, process, env);
332
333   run_jprocess(env, context->jprocess);
334   return 0;
335 }
336
337 namespace simgrid {
338 namespace java {
339
340 /** Run the Java org.simgrid.msg.Process */
341 void java_main_jprocess(jobject jprocess)
342 {
343   JNIEnv *env = get_current_thread_env();
344   simgrid::java::JavaContext* context =
345     (simgrid::java::JavaContext*) SIMIX_context_self();
346   context->jprocess = jprocess;
347   smx_process_t process = SIMIX_process_self();
348   jprocess_bind(context->jprocess, process, env);
349
350   // Adrien, ugly path, just to bypass creation of context at low levels
351   // (i.e such as for the VM migration for instance)
352   if (context->jprocess == nullptr)
353     return;
354   else
355     run_jprocess(env, context->jprocess);
356 }
357
358 }
359 }
360