X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/cd4198031d4f1c3c98cc0d21bcac25d1eb363259..2df88396d94796a341f1dbaa1d41f3162745d927:/src/xbt/xbt_os_file.cpp diff --git a/src/xbt/xbt_os_file.cpp b/src/xbt/xbt_os_file.cpp index 1e1e9f82e8..ce487f4ebd 100644 --- a/src/xbt/xbt_os_file.cpp +++ b/src/xbt/xbt_os_file.cpp @@ -1,40 +1,46 @@ -/* xbt_os_file.cpp -- portable interface to file-related functions */ +/* xbt_os_file.cpp -- portable interface to file-related functions */ -/* Copyright (c) 2017. The SimGrid Team. - * All rights reserved. */ +/* Copyright (c) 2017-2019. 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 "src/internal_config.h" +#include "xbt/asserts.h" #include "xbt/file.hpp" /* this module */ -#include "xbt/file.h" -#include "xbt/sysdep.h" - #ifdef _WIN32 #include #endif +#if HAVE_UNISTD_H +#include +#endif + #include +#include #include /* POSIX dirname */ -/** @brief Returns the file component of a path (reimplementation of POSIX basename) - * - * The argument is never modified, and the returned value must be freed after use. - */ -char *xbt_basename(const char *path) +simgrid::xbt::Path::Path() { - return xbt_strdup(simgrid::xbt::Path(path).getBasename().c_str()); +#if HAVE_UNISTD_H + char buffer[2048]; + char* ret = getcwd(buffer, 2048); + xbt_assert(ret == buffer, "Error during getcwd: %s", strerror(errno)); + path_ = std::string(buffer); +#else + path_ = std::string("."); +#endif } -std::string simgrid::xbt::Path::getDirname() +std::string simgrid::xbt::Path::get_dir_name() { std::string p(path_); char *res = dirname(&p[0]); return std::string(res, strlen(res)); } -std::string simgrid::xbt::Path::getBasename() +std::string simgrid::xbt::Path::get_base_name() { std::string p(path_); char *res = basename(&p[0]);