X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/d656f9465e7b1c36319f86eeafdcec58fe9551a4..b9625f82f86db0674e911887addce45dca31b57f:/src/bindings/java/jmsg_file.cpp diff --git a/src/bindings/java/jmsg_file.cpp b/src/bindings/java/jmsg_file.cpp index ff8dcba252..449f6059a4 100644 --- a/src/bindings/java/jmsg_file.cpp +++ b/src/bindings/java/jmsg_file.cpp @@ -1,14 +1,13 @@ /* Java bindings of the file API. */ -/* Copyright (c) 2012-2017. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2012-2020. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ #include "jmsg_file.h" #include "jxbt_utilities.hpp" - -extern "C" { +#include void jfile_bind(JNIEnv *env, jobject jfile, msg_file_t fd) { env->SetLongField(jfile, jfile_field_bind, reinterpret_cast(fd)); @@ -26,31 +25,30 @@ JNIEXPORT void JNICALL Java_org_simgrid_msg_File_nativeInit(JNIEnv *env, jclass JNIEXPORT void JNICALL Java_org_simgrid_msg_File_open(JNIEnv *env, jobject jfile, jobject jpath) { const char *path = env->GetStringUTFChars((jstring) jpath, 0); - msg_file_t file = MSG_file_open(path, nullptr); + sg_file_t file = sg_file_open(path, nullptr); jfile_bind(env, jfile, file); env->ReleaseStringUTFChars(static_cast(jpath), path); } JNIEXPORT jlong JNICALL Java_org_simgrid_msg_File_read(JNIEnv *env, jobject jfile, jlong jsize) { - msg_file_t file = jfile_get_native(env, jfile); - return static_cast(MSG_file_read(file, static_cast(jsize))); + sg_file_t file = jfile_get_native(env, jfile); + return static_cast(sg_file_read(file, static_cast(jsize))); } JNIEXPORT jlong JNICALL Java_org_simgrid_msg_File_write(JNIEnv *env, jobject jfile, jlong jsize) { - msg_file_t file = jfile_get_native(env, jfile); - return static_cast(MSG_file_write(file, static_cast(jsize))); + sg_file_t file = jfile_get_native(env, jfile); + return static_cast(sg_file_write(file, static_cast(jsize))); } JNIEXPORT void JNICALL Java_org_simgrid_msg_File_seek(JNIEnv *env, jobject jfile, jlong offset, jlong origin) { - msg_file_t file = jfile_get_native(env, jfile); - MSG_file_seek(file, static_cast(offset), static_cast(origin)); + sg_file_t file = jfile_get_native(env, jfile); + sg_file_seek(file, static_cast(offset), static_cast(origin)); } JNIEXPORT void JNICALL Java_org_simgrid_msg_File_close(JNIEnv *env, jobject jfile) { - msg_file_t file = jfile_get_native(env, jfile); + const_sg_file_t file = jfile_get_native(env, jfile); - MSG_file_close(file); + sg_file_close(file); jfile_bind(env, jfile, nullptr); } -}