Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Replace MSG_get_host_number with MSG_hosts_as_dynar.
[simgrid.git] / src / jmsg.c
index d7a2ae8..2013fd2 100644 (file)
@@ -176,9 +176,6 @@ Java_org_simgrid_msg_MsgNative_processKill(JNIEnv * env, jclass cls,
     return;
   }
 
-  /* delete the global reference */
-  jprocess_delete_global_ref(native_to_java_process(process), env);
-
   /* kill the native process (this wrapper is call by the destructor of the java 
    * process instance)
    */
@@ -389,7 +386,10 @@ Java_org_simgrid_msg_MsgNative_hostGetName(JNIEnv * env, jclass cls,
 JNIEXPORT jint JNICALL
 Java_org_simgrid_msg_MsgNative_hostGetNumber(JNIEnv * env, jclass cls)
 {
-  return (jint) MSG_get_host_number();
+  xbt_dynar_t hosts =  MSG_hosts_as_dynar();
+  int nb_host = xbt_dynar_length(hosts);
+  xbt_dynar_free(&hosts);
+  return (jint) nb_host;
 }
 
 JNIEXPORT jobject JNICALL
@@ -760,13 +760,6 @@ Java_org_simgrid_msg_MsgNative_taskExecute(JNIEnv * env, jclass cls,
  * Unsortable functions                                                        *
  ***************************************************************************************/
 
-
-JNIEXPORT jint JNICALL
-Java_org_simgrid_msg_Msg_getErrCode(JNIEnv * env, jclass cls)
-{
-  return (jint) MSG_get_errno();
-}
-
 JNIEXPORT jdouble JNICALL
 Java_org_simgrid_msg_Msg_getClock(JNIEnv * env, jclass cls)
 {
@@ -813,7 +806,7 @@ JNIEXPORT void JNICALL
 {
   MSG_error_t rv;
   int index;
-  m_host_t *hosts;
+  xbt_dynar_t hosts;
   jobject jhost;
 
   /* Run everything */
@@ -828,14 +821,14 @@ JNIEXPORT void JNICALL
 
   XBT_INFO("Clean java world");
   /* Cleanup java hosts */
-  hosts = MSG_get_host_table();
-  for (index = 0; index < MSG_get_host_number() - 1; index++) {
-    jhost = (jobject) hosts[index]->data;
+  hosts = MSG_hosts_as_dynar();
+  for (index = 0; index < xbt_dynar_length(hosts) - 1; index++) {
+    jhost = (jobject) xbt_dynar_get_as(hosts,index,m_host_t)->data;
     if (jhost)
       jhost_unref(env, jhost);
 
   }
-
+  xbt_dynar_free(&hosts);
   XBT_INFO("Clean native world");
 }
 JNIEXPORT void JNICALL
@@ -900,8 +893,8 @@ Java_org_simgrid_msg_MsgNative_allHosts(JNIEnv * env, jclass cls_arg)
   jstring jname;
   m_host_t host;
 
-  int count = MSG_get_host_number();
-  m_host_t *table = MSG_get_host_table();
+  xbt_dynar_t table =  MSG_hosts_as_dynar();
+  int count = xbt_dynar_length(table);
 
   jclass cls = jxbt_get_class(env, "org/simgrid/msg/Host");
 
@@ -917,7 +910,7 @@ Java_org_simgrid_msg_MsgNative_allHosts(JNIEnv * env, jclass cls_arg)
   }
 
   for (index = 0; index < count; index++) {
-    host = table[index];
+    host = xbt_dynar_get_as(table,index,m_host_t);
     jhost = (jobject) (MSG_host_get_data(host));
 
     if (!jhost) {
@@ -930,7 +923,7 @@ Java_org_simgrid_msg_MsgNative_allHosts(JNIEnv * env, jclass cls_arg)
 
     (*env)->SetObjectArrayElement(env, jtable, index, jhost);
   }
-
+  xbt_dynar_free(&table);
   return jtable;
 }