Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
dcd96e9c2103e1edd86e30982358e3ff0519ac29
[simgrid.git] / src / bindings / java / jmsg_file.h
1 /* Functions related to the java file API.                            */
2
3 /* Copyright (c) 2012-2015. 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 MSG_JFILE_H
10 #define MSG_JFILE_H
11 #include <jni.h>
12 #include "simgrid/msg.h"
13
14 SG_BEGIN_DECL()
15
16 jfieldID jfile_field_bind;
17
18 void jfile_bind(JNIEnv *env, jobject jfile, msg_file_t fd);
19 msg_file_t jfile_get_native(JNIEnv *env, jobject jfile);
20
21 JNIEXPORT void JNICALL Java_org_simgrid_msg_File_nativeInit(JNIEnv *env, jclass cls);
22 JNIEXPORT void JNICALL Java_org_simgrid_msg_File_open(JNIEnv *env, jobject jfile, jobject jpath);
23 JNIEXPORT jlong JNICALL Java_org_simgrid_msg_File_read(JNIEnv *env, jobject jfile, jlong jsize);
24 JNIEXPORT jlong JNICALL Java_org_simgrid_msg_File_write(JNIEnv *env, jobject jfile, jlong jsize);
25 JNIEXPORT void JNICALL Java_org_simgrid_msg_File_seek(JNIEnv *env, jobject jfile, jlong joffset, jlong jorigin);
26 JNIEXPORT void JNICALL Java_org_simgrid_msg_File_close(JNIEnv *env, jobject jfile);
27
28 SG_END_DECL()
29 #endif