Logo AND Algorithmique Numérique Distribuée

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