Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of git+ssh://scm.gforge.inria.fr//gitroot/simgrid/simgrid
[simgrid.git] / src / bindings / java / jmsg.c
1 /* Java Wrappers to the MSG API.                                            */
2
3 /* Copyright (c) 2007-2013. 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 #include <locale.h>
13
14 #include "smx_context_java.h"
15 #include "smx_context_cojava.h"
16
17 #include "jmsg_process.h"
18
19 #include "jmsg_as.h"
20
21 #include "jmsg_host.h"
22 #include "jmsg_task.h"
23 #include "jxbt_utilities.h"
24
25 #include "jmsg.h"
26
27 /* Shut up some errors in eclipse online compiler. I wish such a pimple wouldn't be needed */
28 #ifndef JNIEXPORT
29 #define JNIEXPORT
30 #endif
31 #ifndef JNICALL
32 #define JNICALL
33 #endif
34 /* end of eclipse-mandated pimple */
35
36 static int create_jprocess(int argc, char *argv[]);
37
38 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(jmsg);
39
40 JavaVM *__java_vm = NULL;
41
42 JavaVM *get_java_VM(void)
43 {
44   return __java_vm;
45 }
46
47 JNIEnv *get_current_thread_env(void)
48 {
49   JNIEnv *env;
50
51   (*__java_vm)->AttachCurrentThread(__java_vm, (void **) &env, NULL);
52   return env;
53 }
54
55 void jmsg_throw_status(JNIEnv *env, msg_error_t status) {
56   switch (status) {
57     case MSG_TIMEOUT:
58         jxbt_throw_time_out_failure(env,NULL);
59     break;
60     case MSG_TRANSFER_FAILURE:
61         jxbt_throw_transfer_failure(env,NULL);
62     break;
63     case MSG_HOST_FAILURE:
64         jxbt_throw_host_failure(env,NULL);
65     break;
66     default:
67         jxbt_throw_native(env,xbt_strdup("communication failed"));
68   }
69 }
70
71
72 /***************************************************************************************
73  * Unsortable functions                                                        *
74  ***************************************************************************************/
75
76 JNIEXPORT jdouble JNICALL
77 Java_org_simgrid_msg_Msg_getClock(JNIEnv * env, jclass cls)
78 {
79   return (jdouble) MSG_get_clock();
80 }
81
82 JNIEXPORT void JNICALL
83 Java_org_simgrid_msg_Msg_init(JNIEnv * env, jclass cls, jobjectArray jargs)
84 {
85   char **argv = NULL;
86   int index;
87   int argc = 0;
88   jstring jval;
89   const char *tmp;
90
91   XBT_LOG_CONNECT(jmsg);
92 #ifdef HAVE_TRACING
93   XBT_LOG_CONNECT(jtrace);
94 #endif
95
96   (*env)->GetJavaVM(env, &__java_vm);
97
98   if ((*env)->FindClass(env, "java/dyn/Coroutine")) {
99         XBT_INFO("Using Coroutines. Your simulation is on steroid.");
100         smx_factory_initializer_to_use = SIMIX_ctx_cojava_factory_init;
101   }
102   else {
103         XBT_INFO("Using regular java threads. Coroutines could speed your simulation up.");
104         smx_factory_initializer_to_use = SIMIX_ctx_java_factory_init;
105   }
106   jthrowable exc = (*env)->ExceptionOccurred(env);
107   if (exc) {
108     (*env)->ExceptionClear(env);
109   }
110
111   setlocale(LC_NUMERIC,"C");
112
113   if (jargs)
114     argc = (int) (*env)->GetArrayLength(env, jargs);
115
116   argc++;
117   argv = xbt_new(char *, argc + 1);
118   argv[0] = strdup("java");
119
120   for (index = 0; index < argc - 1; index++) {
121     jval = (jstring) (*env)->GetObjectArrayElement(env, jargs, index);
122     tmp = (*env)->GetStringUTFChars(env, jval, 0);
123     argv[index + 1] = strdup(tmp);
124     (*env)->ReleaseStringUTFChars(env, jval, tmp);
125   }
126   argv[argc] = NULL;
127
128   MSG_init(&argc, argv);
129
130   for (index = 0; index < argc; index++)
131     free(argv[index]);
132
133   free(argv);
134 }
135
136 JNIEXPORT void JNICALL
137     JNICALL Java_org_simgrid_msg_Msg_run(JNIEnv * env, jclass cls)
138 {
139   msg_error_t rv;
140   int index;
141   xbt_dynar_t hosts;
142   jobject jhost;
143
144   /* Run everything */
145   XBT_DEBUG("Ready to run MSG_MAIN");
146   rv = MSG_main();
147   XBT_DEBUG("Done running MSG_MAIN");
148   jxbt_check_res("MSG_main()", rv, MSG_OK,
149                  xbt_strdup("unexpected error : MSG_main() failed .. please report this bug "));
150
151   XBT_INFO("MSG_main finished; Cleaning up the simulation...");
152   /* Cleanup java hosts */
153   hosts = MSG_hosts_as_dynar();
154   for (index = 0; index < xbt_dynar_length(hosts) - 1; index++) {
155     jhost = (jobject) MSG_host_get_data(xbt_dynar_get_as(hosts,index,msg_host_t));
156     if (jhost)
157       jhost_unref(env, jhost);
158
159   }
160   xbt_dynar_free(&hosts);
161 }
162
163 JNIEXPORT void JNICALL
164 Java_org_simgrid_msg_Msg_createEnvironment(JNIEnv * env, jclass cls,
165                                        jstring jplatformFile)
166 {
167
168   const char *platformFile =
169       (*env)->GetStringUTFChars(env, jplatformFile, 0);
170
171   MSG_create_environment(platformFile);
172
173   (*env)->ReleaseStringUTFChars(env, jplatformFile, platformFile);
174 }
175
176 JNIEXPORT jobject JNICALL
177 Java_org_simgrid_msg_Msg_environmentGetRoutingRoot(JNIEnv * env, jclass cls)
178 {
179   msg_as_t as = MSG_environment_get_routing_root();
180   jobject jas = jas_new_instance(env);
181   if (!jas) {
182     jxbt_throw_jni(env, "java As instantiation failed");
183     return NULL;
184   }
185   jas = jas_ref(env, jas);
186   if (!jas) {
187     jxbt_throw_jni(env, "new global ref allocation failed");
188     return NULL;
189   }
190   jas_bind(jas, as, env);
191
192   return (jobject) jas;
193 }
194
195 JNIEXPORT void JNICALL
196 Java_org_simgrid_msg_Msg_debug(JNIEnv * env, jclass cls, jstring js)
197 {
198   const char *s = (*env)->GetStringUTFChars(env, js, 0);
199   XBT_DEBUG("%s", s);
200   (*env)->ReleaseStringUTFChars(env, js, s);
201 }
202 JNIEXPORT void JNICALL
203 Java_org_simgrid_msg_Msg_verb(JNIEnv * env, jclass cls, jstring js)
204 {
205   const char *s = (*env)->GetStringUTFChars(env, js, 0);
206   XBT_VERB("%s", s);
207   (*env)->ReleaseStringUTFChars(env, js, s);
208 }
209 JNIEXPORT void JNICALL
210 Java_org_simgrid_msg_Msg_info(JNIEnv * env, jclass cls, jstring js)
211 {
212   const char *s = (*env)->GetStringUTFChars(env, js, 0);
213   XBT_INFO("%s", s);
214   (*env)->ReleaseStringUTFChars(env, js, s);
215 }
216 JNIEXPORT void JNICALL
217 Java_org_simgrid_msg_Msg_warn(JNIEnv * env, jclass cls, jstring js)
218 {
219   const char *s = (*env)->GetStringUTFChars(env, js, 0);
220   XBT_WARN("%s", s);
221   (*env)->ReleaseStringUTFChars(env, js, s);
222 }
223 JNIEXPORT void JNICALL
224 Java_org_simgrid_msg_Msg_error(JNIEnv * env, jclass cls, jstring js)
225 {
226   const char *s = (*env)->GetStringUTFChars(env, js, 0);
227   XBT_ERROR("%s", s);
228   (*env)->ReleaseStringUTFChars(env, js, s);
229 }
230 JNIEXPORT void JNICALL
231 Java_org_simgrid_msg_Msg_critical(JNIEnv * env, jclass cls, jstring js)
232 {
233   const char *s = (*env)->GetStringUTFChars(env, js, 0);
234   XBT_CRITICAL("%s", s);
235   (*env)->ReleaseStringUTFChars(env, js, s);
236 }
237 JNIEXPORT void JNICALL
238 Java_org_simgrid_msg_Msg_deployApplication(JNIEnv * env, jclass cls,
239                                        jstring jdeploymentFile)
240 {
241
242   const char *deploymentFile =
243       (*env)->GetStringUTFChars(env, jdeploymentFile, 0);
244
245   SIMIX_function_register_default(create_jprocess);
246   MSG_launch_application(deploymentFile);
247 }
248 /**
249  * Function called when there is the need to create the java Process object
250  * (when we are using deployement files).
251  * it HAS to be executed on the process context, else really bad things will happen.
252  */
253 static int create_jprocess(int argc, char *argv[]) {
254   JNIEnv *env = get_current_thread_env();
255   //Change the "." in class name for "/".
256   xbt_str_subst(argv[0],'.','/',0);
257   jclass class_Process = (*env)->FindClass(env, argv[0]);
258   xbt_str_subst(argv[0],'/','.',0);
259   //Retrieve the methodID for the constructor
260   xbt_assert((class_Process != NULL), "Class not found (%s).", argv[0]);
261   jmethodID constructor_Process = (*env)->GetMethodID(env, class_Process, "<init>", "(Lorg/simgrid/msg/Host;Ljava/lang/String;[Ljava/lang/String;)V");
262   xbt_assert((constructor_Process != NULL), "Constructor not found for class %s. Is there a (Host, String ,String[]) constructor in your class ?", argv[0]);
263
264   //Retrieve the name of the process.
265   jstring jname = (*env)->NewStringUTF(env, argv[0]);
266   //Build the arguments
267   jobjectArray args = (jobjectArray)((*env)->NewObjectArray(env,argc - 1,
268   (*env)->FindClass(env,"java/lang/String"),
269   (*env)->NewStringUTF(env,"")));
270   int i;
271   for (i = 1; i < argc; i++)
272       (*env)->SetObjectArrayElement(env,args,i - 1,(*env)->NewStringUTF(env, argv[i]));
273   //Retrieve the host for the process.
274   jstring jhostName = (*env)->NewStringUTF(env, MSG_host_get_name(MSG_host_self()));
275   jobject jhost = Java_org_simgrid_msg_Host_getByName(env, NULL, jhostName);
276   //creates the process
277   jobject jprocess = (*env)->NewObject(env, class_Process, constructor_Process, jhost, jname, args);
278   xbt_assert((jprocess != NULL), "Process allocation failed.");
279   jprocess = (*env)->NewGlobalRef(env, jprocess);
280   //bind the process to the context
281   msg_process_t process = MSG_process_self();
282   smx_ctx_java_t context = (smx_ctx_java_t)MSG_process_get_smx_ctx(process);
283   context->jprocess = jprocess;
284 /* sets the PID and the PPID of the process */
285 (*env)->SetIntField(env, jprocess, jprocess_field_Process_pid,(jint) MSG_process_get_PID(process));
286 (*env)->SetIntField(env, jprocess, jprocess_field_Process_ppid, (jint) MSG_process_get_PPID(process));
287   jprocess_bind(jprocess, process, env);
288
289   return 0;
290 }
291