X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/8bc85164acb335cf909052b966b2ee4932e06cd7..3718b81f92488f30d14590c0b69b13c3843604d5:/src/smpi/mpi/smpi_file.cpp diff --git a/src/smpi/mpi/smpi_file.cpp b/src/smpi/mpi/smpi_file.cpp index 872d9a7e3c..82c5e2fe5f 100644 --- a/src/smpi/mpi/smpi_file.cpp +++ b/src/smpi/mpi/smpi_file.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2007-2020. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2007-2021. 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. */ @@ -21,7 +21,7 @@ XBT_LOG_NEW_DEFAULT_SUBCATEGORY(smpi_io, smpi, "Logging specific to SMPI (RMA operations)"); -MPI_Errhandler SMPI_default_File_Errhandler = MPI_ERRORS_RETURN; +MPI_Errhandler SMPI_default_File_Errhandler = _smpi_cfg_default_errhandler_is_error ? MPI_ERRORS_ARE_FATAL : MPI_ERRORS_RETURN;; namespace simgrid{ namespace smpi{ @@ -30,8 +30,8 @@ namespace smpi{ if (info_ != MPI_INFO_NULL) info_->ref(); std::string fullname=filename; - if (simgrid::s4u::Host::current()->get_disks().empty()) - xbt_die("SMPI/IO : Trying to open file on a diskless host ! Add one to your platform file"); + xbt_assert(not simgrid::s4u::Host::current()->get_disks().empty(), + "SMPI/IO : Trying to open file on a diskless host ! Add one to your platform file"); size_t found=fullname.find('/'); //in case no fullpath is provided ... just pick the first mountpoint. @@ -71,6 +71,7 @@ namespace smpi{ simgrid::smpi::colls::bcast(&shared_mutex_, 1, MPI_AINT, 0, comm); if(comm_->rank() != 0) intrusive_ptr_add_ref(&*shared_mutex_); + this->add_f(); } File::~File(){ @@ -80,6 +81,7 @@ namespace smpi{ } delete win_; delete file_; + F2C::free_f(this->f2c_id()); if (info_ != MPI_INFO_NULL) simgrid::smpi::Info::unref(info_); if (errhandler_ != MPI_ERRHANDLER_NULL) @@ -98,7 +100,7 @@ namespace smpi{ int File::del(const char* filename, const Info*) { //get the file with MPI_MODE_DELETE_ON_CLOSE and then close it - File* f = new File(MPI_COMM_SELF,filename,MPI_MODE_DELETE_ON_CLOSE|MPI_MODE_RDWR, nullptr); + auto* f = new File(MPI_COMM_SELF, filename, MPI_MODE_DELETE_ON_CLOSE | MPI_MODE_RDWR, nullptr); close(&f); return MPI_SUCCESS; } @@ -119,15 +121,15 @@ namespace smpi{ int File::seek(MPI_Offset offset, int whence){ switch(whence){ - case(MPI_SEEK_SET): + case MPI_SEEK_SET: XBT_VERB("Seeking in MPI_File %s, setting offset %lld", file_->get_path(), offset); file_->seek(offset,SEEK_SET); break; - case(MPI_SEEK_CUR): + case MPI_SEEK_CUR: XBT_VERB("Seeking in MPI_File %s, current offset + %lld", file_->get_path(), offset); file_->seek(offset,SEEK_CUR); break; - case(MPI_SEEK_END): + case MPI_SEEK_END: XBT_VERB("Seeking in MPI_File %s, end offset + %lld", file_->get_path(), offset); file_->seek(offset,SEEK_END); break; @@ -282,6 +284,11 @@ namespace smpi{ return file_->size(); } + void File::set_size(int size) + { + file_->write(size, true); + } + int File::flags() const { return flags_; @@ -294,9 +301,6 @@ namespace smpi{ MPI_Info File::info() { - if (info_ == MPI_INFO_NULL) - info_ = new Info(); - info_->ref(); return info_; }