X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/a4b0c4ab9d54f75705f6d8b6c14b2f52a1245ea2..b47ba9d4ca3cdedcd61f4cda5bf031f8660d1c0e:/src/xbt/xbt_os_file.cpp diff --git a/src/xbt/xbt_os_file.cpp b/src/xbt/xbt_os_file.cpp index edf22816ae..ce487f4ebd 100644 --- a/src/xbt/xbt_os_file.cpp +++ b/src/xbt/xbt_os_file.cpp @@ -1,20 +1,38 @@ -/* xbt_os_file.cpp -- portable interface to file-related functions */ +/* xbt_os_file.cpp -- portable interface to file-related functions */ -/* Copyright (c) 2017-2018. 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 */ #ifdef _WIN32 #include #endif +#if HAVE_UNISTD_H +#include +#endif + #include +#include #include /* POSIX dirname */ +simgrid::xbt::Path::Path() +{ +#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::get_dir_name() { std::string p(path_);