Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' into actor-yield
[simgrid.git] / src / bindings / java / jmsg.cpp
1 /* Java Wrappers to the MSG API.                                            */
2
3 /* Copyright (c) 2007-2017. The SimGrid Team. All rights reserved.          */
4
5 /* This program is free software; you can redistribute it and/or modify it
6  * under the terms of the license (GNU LGPL) which comes with this package. */
7
8 #include <algorithm>
9 #include <clocale>
10 #include <string>
11
12 #include "simgrid/msg.h"
13 #include "simgrid/plugins/energy.h"
14 #include "simgrid/simix.h"
15
16 #include "simgrid/s4u/Host.hpp"
17
18 #include "src/simix/smx_private.hpp"
19
20 #include "jmsg.hpp"
21 #include "jmsg_as.hpp"
22 #include "jmsg_host.h"
23 #include "jmsg_process.h"
24 #include "jmsg_storage.h"
25 #include "jmsg_task.h"
26 #include "jxbt_utilities.hpp"
27
28 #include "JavaContext.hpp"
29
30 #include <xbt/ex.hpp>
31
32 /* Shut up some errors in eclipse online compiler. I wish such a pimple wouldn't be needed */
33 #ifndef JNIEXPORT
34 #define JNIEXPORT
35 #endif
36 #ifndef JNICALL
37 #define JNICALL
38 #endif
39 /* end of eclipse-mandated pimple */
40
41 extern "C" {
42
43 int JAVA_HOST_LEVEL = -1;
44
45 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(java);
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   using simgrid::kernel::context::JavaContext;
57   JavaContext* ctx = static_cast<JavaContext*>(xbt_os_thread_get_extra_data());
58   return ctx->jenv;
59 }
60
61 void jmsg_throw_status(JNIEnv *env, msg_error_t status) {
62   switch (status) {
63     case MSG_TIMEOUT:
64       jxbt_throw_time_out_failure(env, "");
65       break;
66     case MSG_TRANSFER_FAILURE:
67       jxbt_throw_transfer_failure(env, "");
68       break;
69     case MSG_HOST_FAILURE:
70       jxbt_throw_host_failure(env, "");
71       break;
72     case MSG_TASK_CANCELED:
73       jxbt_throw_task_cancelled(env, "");
74       break;
75     default:
76       xbt_die("undefined message failed (please see jmsg_throw_status function in jmsg.cpp)");
77   }
78 }
79
80 /***************************************************************************************
81  * Unsortable functions                                                        *
82  ***************************************************************************************/
83
84 JNIEXPORT jdouble JNICALL Java_org_simgrid_msg_Msg_getClock(JNIEnv * env, jclass cls)
85 {
86   return (jdouble) MSG_get_clock();
87 }
88
89 JNIEXPORT void JNICALL Java_org_simgrid_msg_Msg_init(JNIEnv * env, jclass cls, jobjectArray jargs)
90 {
91   int argc = 0;
92
93   XBT_LOG_CONNECT(java);
94   XBT_LOG_CONNECT(jtrace);
95
96   env->GetJavaVM(&__java_vm);
97
98   simgrid::kernel::context::factory_initializer = &simgrid::kernel::context::java_factory;
99   jthrowable exc = env->ExceptionOccurred();
100   if (exc) {
101     env->ExceptionClear();
102   }
103
104   setlocale(LC_NUMERIC,"C");
105
106   if (jargs)
107     argc = static_cast<int>(env->GetArrayLength(jargs));
108
109   argc++;
110   char** argv = new char*[argc + 1];
111   argv[0] = xbt_strdup("java");
112
113   for (int index = 0; index < argc - 1; index++) {
114     jstring jval    = (jstring)env->GetObjectArrayElement(jargs, index);
115     const char* tmp = env->GetStringUTFChars(jval, 0);
116     argv[index + 1] = xbt_strdup(tmp);
117     env->ReleaseStringUTFChars(jval, tmp);
118   }
119   argv[argc] = nullptr;
120
121   MSG_init(&argc, argv);
122
123   JAVA_HOST_LEVEL = simgrid::s4u::Host::extension_create(nullptr);
124
125   for (int index = 0; index < argc - 1; index++) {
126     env->SetObjectArrayElement(jargs, index, (jstring)env->NewStringUTF(argv[index + 1]));
127     free(argv[index]);
128   }
129   free(argv[argc]);
130   delete[] argv;
131 }
132
133 JNIEXPORT void JNICALL JNICALL Java_org_simgrid_msg_Msg_run(JNIEnv * env, jclass cls)
134 {
135   /* Run everything */
136   XBT_DEBUG("Ready to run MSG_MAIN");
137   msg_error_t rv = MSG_main();
138   XBT_DEBUG("Done running MSG_MAIN");
139   jxbt_check_res("MSG_main()", rv, MSG_OK,
140                  xbt_strdup("unexpected error : MSG_main() failed .. please report this bug "));
141
142   XBT_INFO("MSG_main finished; Cleaning up the simulation...");
143   /* Cleanup java hosts */
144   xbt_dynar_t hosts = MSG_hosts_as_dynar();
145   for (unsigned long index = 0; index < xbt_dynar_length(hosts) - 1; index++) {
146     msg_host_t msg_host = xbt_dynar_get_as(hosts,index,msg_host_t);
147     jobject jhost = (jobject) msg_host->extension(JAVA_HOST_LEVEL);
148     if (jhost)
149       jhost_unref(env, jhost);
150
151   }
152   xbt_dynar_free(&hosts);
153
154   /* Cleanup java storages */
155   for (auto const& elm : java_storage_map)
156     jstorage_unref(env, elm.second);
157 }
158
159 JNIEXPORT void JNICALL Java_org_simgrid_msg_Msg_createEnvironment(JNIEnv * env, jclass cls, jstring jplatformFile)
160 {
161   const char *platformFile = env->GetStringUTFChars(jplatformFile, 0);
162
163   MSG_create_environment(platformFile);
164
165   env->ReleaseStringUTFChars(jplatformFile, platformFile);
166 }
167
168 JNIEXPORT jobject JNICALL Java_org_simgrid_msg_Msg_environmentGetRoutingRoot(JNIEnv * env, jclass cls)
169 {
170   msg_netzone_t as = MSG_zone_get_root();
171   jobject jas      = jnetzone_new_instance(env);
172   if (not jas) {
173     jxbt_throw_jni(env, "java As instantiation failed");
174     return nullptr;
175   }
176   jas = jnetzone_ref(env, jas);
177   if (not jas) {
178     jxbt_throw_jni(env, "new global ref allocation failed");
179     return nullptr;
180   }
181   jnetzone_bind(jas, as, env);
182
183   return (jobject) jas;
184 }
185
186 JNIEXPORT void JNICALL Java_org_simgrid_msg_Msg_debug(JNIEnv * env, jclass cls, jstring js)
187 {
188   const char *s = env->GetStringUTFChars(js, 0);
189   XBT_DEBUG("%s", s);
190   env->ReleaseStringUTFChars(js, s);
191 }
192
193 JNIEXPORT void JNICALL Java_org_simgrid_msg_Msg_verb(JNIEnv * env, jclass cls, jstring js)
194 {
195   const char *s = env->GetStringUTFChars(js, 0);
196   XBT_VERB("%s", s);
197   env->ReleaseStringUTFChars(js, s);
198 }
199
200 JNIEXPORT void JNICALL Java_org_simgrid_msg_Msg_info(JNIEnv * env, jclass cls, jstring js)
201 {
202   const char *s = env->GetStringUTFChars(js, 0);
203   XBT_INFO("%s", s);
204   env->ReleaseStringUTFChars(js, s);
205 }
206
207 JNIEXPORT void JNICALL Java_org_simgrid_msg_Msg_warn(JNIEnv * env, jclass cls, jstring js)
208 {
209   const char *s = env->GetStringUTFChars(js, 0);
210   XBT_WARN("%s", s);
211   env->ReleaseStringUTFChars(js, s);
212 }
213
214 JNIEXPORT void JNICALL Java_org_simgrid_msg_Msg_error(JNIEnv * env, jclass cls, jstring js)
215 {
216   const char *s = env->GetStringUTFChars(js, 0);
217   XBT_ERROR("%s", s);
218   env->ReleaseStringUTFChars(js, s);
219 }
220
221 JNIEXPORT void JNICALL Java_org_simgrid_msg_Msg_critical(JNIEnv * env, jclass cls, jstring js)
222 {
223   const char *s = env->GetStringUTFChars(js, 0);
224   XBT_CRITICAL("%s", s);
225   env->ReleaseStringUTFChars(js, s);
226 }
227
228 static int java_main(int argc, char *argv[]);
229
230 JNIEXPORT void JNICALL
231 Java_org_simgrid_msg_Msg_deployApplication(JNIEnv * env, jclass cls, jstring jdeploymentFile)
232 {
233   const char *deploymentFile = env->GetStringUTFChars(jdeploymentFile, 0);
234
235   SIMIX_function_register_default(java_main);
236   MSG_launch_application(deploymentFile);
237 }
238
239 JNIEXPORT void JNICALL Java_org_simgrid_msg_Msg_energyInit() {
240   sg_host_energy_plugin_init();
241 }
242 } // extern "C"
243
244 /** Run a Java org.simgrid.msg.Process
245  *
246  *  If needed, this waits for the process starting time.
247  *  Then it calls the Process.run() method.
248  */
249 static void run_jprocess(JNIEnv *env, jobject jprocess)
250 {
251   // wait for the process's start time
252   jfieldID jprocess_field_Process_startTime = jxbt_get_sfield(env, "org/simgrid/msg/Process", "startTime", "D");
253   jdouble startTime = env->GetDoubleField(jprocess, jprocess_field_Process_startTime);
254   if (startTime > MSG_get_clock())
255     MSG_process_sleep(startTime - MSG_get_clock());
256   //Execution of the "run" method.
257   jmethodID id = jxbt_get_smethod(env, "org/simgrid/msg/Process", "run", "()V");
258   xbt_assert((id != nullptr), "Method run() not found...");
259   env->CallVoidMethod(jprocess, id);
260 }
261
262 /** Create a Java org.simgrid.msg.Process with the arguments and run it */
263 static int java_main(int argc, char *argv[])
264 {
265   JNIEnv *env = get_current_thread_env();
266   simgrid::kernel::context::JavaContext* context = static_cast<simgrid::kernel::context::JavaContext*>(SIMIX_context_self());
267
268   //Change the "." in class name for "/".
269   std::string arg0 = argv[0];
270   std::replace(begin(arg0), end(arg0), '.', '/');
271   jclass class_Process = env->FindClass(arg0.c_str());
272   //Retrieve the methodID for the constructor
273   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]);
274   jmethodID constructor_Process = env->GetMethodID(class_Process, "<init>", "(Lorg/simgrid/msg/Host;Ljava/lang/String;[Ljava/lang/String;)V");
275   xbt_assert((constructor_Process != nullptr), "Constructor not found for class %s. Is there a (Host, String ,String[]) constructor in your class ?", argv[0]);
276
277   //Retrieve the name of the process.
278   jstring jname = env->NewStringUTF(argv[0]);
279   //Build the arguments
280   jobjectArray args = static_cast<jobjectArray>(env->NewObjectArray(argc - 1, env->FindClass("java/lang/String"),
281                                                                     env->NewStringUTF("")));
282   for (int i = 1; i < argc; i++)
283       env->SetObjectArrayElement(args,i - 1, env->NewStringUTF(argv[i]));
284   //Retrieve the host for the process.
285   jstring jhostName = env->NewStringUTF(MSG_host_self()->getCname());
286   jobject jhost = Java_org_simgrid_msg_Host_getByName(env, nullptr, jhostName);
287   //creates the process
288   jobject jprocess = env->NewObject(class_Process, constructor_Process, jhost, jname, args);
289   xbt_assert((jprocess != nullptr), "Process allocation failed.");
290   jprocess = env->NewGlobalRef(jprocess);
291   //bind the process to the context
292   msg_process_t process = MSG_process_self();
293
294   context->jprocess = jprocess;
295   /* sets the PID and the PPID of the process */
296   env->SetIntField(jprocess, jprocess_field_Process_pid, static_cast<jint>(MSG_process_get_PID(process)));
297   env->SetIntField(jprocess, jprocess_field_Process_ppid, static_cast<jint>(MSG_process_get_PPID(process)));
298   jprocess_bind(jprocess, process, env);
299
300   run_jprocess(env, context->jprocess);
301   return 0;
302 }
303
304 namespace simgrid {
305 namespace kernel {
306 namespace context {
307
308 /** Run the Java org.simgrid.msg.Process */
309 void java_main_jprocess(jobject jprocess)
310 {
311   JNIEnv *env = get_current_thread_env();
312   simgrid::kernel::context::JavaContext* context = static_cast<simgrid::kernel::context::JavaContext*>(SIMIX_context_self());
313   context->jprocess = jprocess;
314   jprocess_bind(context->jprocess, MSG_process_self(), env);
315
316   run_jprocess(env, context->jprocess);
317 }
318 }}}