Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Move two generic functions from surf to xbt
[simgrid.git] / include / xbt / file.hpp
1 /* Copyright (c) 2017-2023. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #ifndef XBT_FILE_HPP
7 #define XBT_FILE_HPP
8
9 #include <string>
10 #include <vector>
11 #include <xbt/base.h>
12
13 namespace simgrid {
14 namespace xbt {
15
16 FILE* fopen_path(const std::string& name, const char* mode, const std::vector<std::string>& path);
17 std::ifstream* ifsopen_path(const std::string& name, const std::vector<std::string>& path);
18
19 class Path {
20 public:
21   /** Build a path from the current working directory (CWD) */
22   explicit Path();
23   /** Build a path from the provided parameter */
24   explicit Path(const char* path): path_(path) {}
25   /** Build a path from the provided parameter */
26   explicit Path(const std::string& path) : path_(path) {}
27
28   /** @brief Returns the full path name */
29   const std::string& get_name() const { return path_; }
30   /** @brief Returns the directory component of a path (reimplementation of POSIX dirname) */
31   std::string get_dir_name() const;
32   /** @brief Returns the file component of a path (reimplementation of POSIX basename) */
33   std::string get_base_name() const;
34
35 private:
36   std::string path_;
37 };
38 }}
39
40 #endif                          /* XBT_FILE_HPP */