Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' into actor-yield
[simgrid.git] / src / bindings / java / jmsg_storage.cpp
1 /* Java bindings of the Storage API.                                        */
2
3 /* Copyright (c) 2012-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 "simgrid/msg.h"
9
10 #include "include/xbt/signal.hpp"
11 #include "jmsg.hpp"
12 #include "jmsg_storage.h"
13 #include "jxbt_utilities.hpp"
14 #include "simgrid/s4u/Storage.hpp"
15
16 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(java);
17
18 extern "C" {
19
20 static jmethodID jstorage_method_Storage_constructor;
21 static jfieldID jstorage_field_Storage_bind;
22 static jfieldID jstorage_field_Storage_name;
23
24 jobject jstorage_new_instance(JNIEnv * env) {
25   jclass cls = jxbt_get_class(env, "org/simgrid/msg/Storage");
26   return env->NewObject(cls, jstorage_method_Storage_constructor);
27 }
28
29 msg_storage_t jstorage_get_native(JNIEnv * env, jobject jstorage) {
30   return (msg_storage_t) (uintptr_t) env->GetLongField(jstorage, jstorage_field_Storage_bind);
31 }
32
33 JNIEXPORT void JNICALL Java_org_simgrid_msg_Storage_nativeInit(JNIEnv *env, jclass cls) {
34   jclass class_Storage = env->FindClass("org/simgrid/msg/Storage");
35   xbt_assert(class_Storage, "Native initialization of msg/Storage failed. Please report that bug");
36   jstorage_method_Storage_constructor = env->GetMethodID(class_Storage, "<init>", "()V");
37   jstorage_field_Storage_bind = jxbt_get_jfield(env,class_Storage, "bind", "J");
38   jstorage_field_Storage_name = jxbt_get_jfield(env, class_Storage, "name", "Ljava/lang/String;");
39   xbt_assert(jstorage_field_Storage_name && jstorage_method_Storage_constructor && jstorage_field_Storage_bind,
40              "Native initialization of msg/Storage failed. Please report that bug");
41 }
42
43 void jstorage_bind(jobject jstorage, msg_storage_t storage, JNIEnv * env) {
44   env->SetLongField(jstorage, jstorage_field_Storage_bind, (jlong) (uintptr_t) (storage));
45 }
46
47 jobject jstorage_ref(JNIEnv * env, jobject jstorage) {
48   return env->NewGlobalRef(jstorage);
49 }
50
51 void jstorage_unref(JNIEnv * env, jobject jstorage) {
52   env->DeleteGlobalRef(jstorage);
53 }
54
55 JNIEXPORT jobject JNICALL Java_org_simgrid_msg_Storage_getByName(JNIEnv * env, jclass cls, jstring jname) {
56   msg_storage_t storage;
57   jobject jstorage = nullptr;
58
59   /* get the C string from the java string */
60   if (jname == nullptr) {
61     jxbt_throw_null(env, "No host can have a null name");
62     return nullptr;
63   }
64   const char *name = env->GetStringUTFChars(jname, 0);
65   storage = MSG_storage_get_by_name(name);
66
67   if (not storage) { /* invalid name */
68     jxbt_throw_storage_not_found(env, name);
69     env->ReleaseStringUTFChars(jname, name);
70     return nullptr;
71   }
72   env->ReleaseStringUTFChars(jname, name);
73
74   if (java_storage_map.find(storage) == java_storage_map.end()) {
75     /* Instantiate a new java storage */
76     jstorage = jstorage_new_instance(env);
77
78     if (not jstorage) {
79       jxbt_throw_jni(env, "java storage instantiation failed");
80       return nullptr;
81     }
82
83     /* get a global reference to the newly created storage */
84     jstorage = jstorage_ref(env, jstorage);
85
86     if (not jstorage) {
87       jxbt_throw_jni(env, "new global ref allocation failed");
88       return nullptr;
89     }
90     /* Sets the java storage name */
91     env->SetObjectField(jstorage, jstorage_field_Storage_name, jname);
92     /* bind the java storage and the native storage */
93     jstorage_bind(jstorage, storage, env);
94
95     /* the native storage data field is set with the global reference to the
96      * java storage returned by this function
97      */
98     java_storage_map.insert({storage, jstorage});
99   } else
100     jstorage = java_storage_map.at(storage);
101
102   /* return the global reference to the java storage instance */
103   return (jobject)jstorage;
104 }
105
106 JNIEXPORT jlong JNICALL Java_org_simgrid_msg_Storage_getSize(JNIEnv * env,jobject jstorage) {
107   msg_storage_t storage = jstorage_get_native(env, jstorage);
108
109   if (not storage) {
110     jxbt_throw_notbound(env, "storage", jstorage);
111     return -1;
112   }
113
114   return (jlong) MSG_storage_get_size(storage);
115 }
116
117 JNIEXPORT jlong JNICALL Java_org_simgrid_msg_Storage_getFreeSize(JNIEnv * env,jobject jstorage) {
118   msg_storage_t storage = jstorage_get_native(env, jstorage);
119
120   if (not storage) {
121     jxbt_throw_notbound(env, "storage", jstorage);
122     return -1;
123   }
124
125   return (jlong) MSG_storage_get_free_size(storage);
126 }
127
128 JNIEXPORT jlong JNICALL Java_org_simgrid_msg_Storage_getUsedSize(JNIEnv * env,jobject jstorage) {
129   msg_storage_t storage = jstorage_get_native(env, jstorage);
130
131   if (not storage) {
132     jxbt_throw_notbound(env, "storage", jstorage);
133     return -1;
134   }
135
136   return (jlong) MSG_storage_get_used_size(storage);
137 }
138
139 JNIEXPORT jobject JNICALL Java_org_simgrid_msg_Storage_getProperty(JNIEnv *env, jobject jstorage, jobject jname) {
140   msg_storage_t storage = jstorage_get_native(env, jstorage);
141
142   if (not storage) {
143     jxbt_throw_notbound(env, "storage", jstorage);
144     return nullptr;
145   }
146   const char *name = env->GetStringUTFChars((jstring) jname, 0);
147
148   const char *property = MSG_storage_get_property_value(storage, name);
149   if (not property) {
150     return nullptr;
151   }
152   jobject jproperty = env->NewStringUTF(property);
153
154   env->ReleaseStringUTFChars((jstring) jname, name);
155
156   return jproperty;
157 }
158
159 JNIEXPORT void JNICALL
160 Java_org_simgrid_msg_Storage_setProperty(JNIEnv *env, jobject jstorage, jobject jname, jobject jvalue) {
161   msg_storage_t storage = jstorage_get_native(env, jstorage);
162
163   if (not storage) {
164     jxbt_throw_notbound(env, "storage", jstorage);
165     return;
166   }
167   const char *name = env->GetStringUTFChars((jstring) jname, 0);
168   const char *value_java = env->GetStringUTFChars((jstring) jvalue, 0);
169
170   storage->setProperty(name, std::string(value_java));
171
172   env->ReleaseStringUTFChars((jstring) jvalue, value_java);
173   env->ReleaseStringUTFChars((jstring) jname, name);
174
175 }
176
177 JNIEXPORT jobject JNICALL Java_org_simgrid_msg_Storage_getHost(JNIEnv * env,jobject jstorage) {
178   msg_storage_t storage = jstorage_get_native(env, jstorage);
179
180   if (not storage) {
181     jxbt_throw_notbound(env, "storage", jstorage);
182     return nullptr;
183   }
184   const char *host_name = MSG_storage_get_host(storage);
185   if (not host_name) {
186     return nullptr;
187   }
188   jobject jhost_name = env->NewStringUTF(host_name);
189
190   return jhost_name;
191 }
192
193 JNIEXPORT jobjectArray JNICALL Java_org_simgrid_msg_Storage_all(JNIEnv * env, jclass cls_arg)
194 {
195   int index;
196   jobjectArray jtable;
197   jobject jstorage;
198   jstring jname;
199   msg_storage_t storage;
200
201   xbt_dynar_t table =  MSG_storages_as_dynar();
202   int count = xbt_dynar_length(table);
203
204   jclass cls = jxbt_get_class(env, "org/simgrid/msg/Storage");
205
206   if (not cls) {
207     return nullptr;
208   }
209
210   jtable = env->NewObjectArray((jsize) count, cls, nullptr);
211
212   if (not jtable) {
213     jxbt_throw_jni(env, "Storages table allocation failed");
214     return nullptr;
215   }
216
217   for (index = 0; index < count; index++) {
218     storage = xbt_dynar_get_as(table,index,msg_storage_t);
219     if (java_storage_map.find(storage) != java_storage_map.end()) {
220       jstorage = java_storage_map.at(storage);
221     } else {
222       jname = env->NewStringUTF(MSG_storage_get_name(storage));
223       jstorage = Java_org_simgrid_msg_Storage_getByName(env, cls_arg, jname);
224     }
225
226     env->SetObjectArrayElement(jtable, index, jstorage);
227   }
228   xbt_dynar_free(&table);
229   return jtable;
230 }
231 }