Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Remove host data and had JAVA_HOST_LEVEL
[simgrid.git] / src / bindings / java / jmsg.h
1 /* Java Wrappers to the MSG API.                                            */
2
3 /* Copyright (c) 2007-2014. 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 #ifndef MSG4JAVA_H
10 #define MSG4JAVA_H
11 #include <msg/msg.h>
12 #include <jni.h>
13
14 extern int JAVA_HOST_LEVEL;
15 extern xbt_lib_t host_lib;
16
17 JavaVM *get_java_VM(void);
18 JNIEnv *get_current_thread_env(void);
19 /**
20  * This function throws the correct exception according to the status
21  * provided.
22  */
23 void jmsg_throw_status(JNIEnv *env, msg_error_t status);
24
25 /*
26  * Class                org_simgrid_msg_Msg
27  * Method               getClock
28  * Signature    ()D
29  */
30 JNIEXPORT jdouble JNICALL Java_org_simgrid_msg_Msg_getClock(JNIEnv *, jclass);
31 /**
32  * Class                org_simgrid_msg_Msg
33  * Method               run
34  */
35 JNIEXPORT void JNICALL
36     JNICALL Java_org_simgrid_msg_Msg_run(JNIEnv * env, jclass cls);
37
38 JNIEXPORT void JNICALL
39 Java_org_simgrid_msg_Msg_init(JNIEnv * env, jclass cls, jobjectArray jargs);
40
41 JNIEXPORT void JNICALL Java_org_simgrid_msg_Msg_debug(JNIEnv *, jclass,
42                                                  jstring);
43
44 JNIEXPORT void JNICALL Java_org_simgrid_msg_Msg_verb(JNIEnv *, jclass,
45                                                  jstring);
46
47 JNIEXPORT void JNICALL Java_org_simgrid_msg_Msg_info(JNIEnv *, jclass,
48                                                  jstring);
49
50 JNIEXPORT void JNICALL Java_org_simgrid_msg_Msg_warn(JNIEnv *, jclass,
51                                                  jstring);
52
53 JNIEXPORT void JNICALL Java_org_simgrid_msg_Msg_error(JNIEnv *, jclass,
54                                                  jstring);
55
56 JNIEXPORT void JNICALL Java_org_simgrid_msg_Msg_critical(JNIEnv *, jclass,
57                                                  jstring);
58
59 JNIEXPORT void JNICALL
60 Java_org_simgrid_msg_Msg_createEnvironment(JNIEnv * env, jclass cls,
61                                        jstring jplatformFile);
62 JNIEXPORT jobject JNICALL
63 Java_org_simgrid_msg_Msg_environmentGetRoutingRoot(JNIEnv * env, jclass cls);
64 JNIEXPORT void JNICALL
65 Java_org_simgrid_msg_Msg_deployApplication(JNIEnv * env, jclass cls,
66                                        jstring jdeploymentFile);
67
68 #endif                          /* !MSG4JAVA_H */