Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Move a tiny bit of 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 void path_push(std::string const& str);
17 void path_pop();
18 FILE* path_fopen(const std::string& name, const char* mode);
19 std::ifstream* path_ifsopen(const std::string& name);
20 std::string path_to_string();
21
22 class Path {
23 public:
24   /** Build a path from the current working directory (CWD) */
25   explicit Path();
26   /** Build a path from the provided parameter */
27   explicit Path(const char* path): path_(path) {}
28   /** Build a path from the provided parameter */
29   explicit Path(const std::string& path) : path_(path) {}
30
31   /** @brief Returns the full path name */
32   const std::string& get_name() const { return path_; }
33   /** @brief Returns the directory component of a path (reimplementation of POSIX dirname) */
34   std::string get_dir_name() const;
35   /** @brief Returns the file component of a path (reimplementation of POSIX basename) */
36   std::string get_base_name() const;
37
38 private:
39   std::string path_;
40 };
41 }}
42
43 #endif                          /* XBT_FILE_HPP */