libdcp
filesystem.h
1 /*
2  Copyright (C) 2012-2023 Carl Hetherington <cth@carlh.net>
3 
4  This file is part of libdcp.
5 
6  libdcp is free software; you can redistribute it and/or modify
7  it under the terms of the GNU General Public License as published by
8  the Free Software Foundation; either version 2 of the License, or
9  (at your option) any later version.
10 
11  libdcp is distributed in the hope that it will be useful,
12  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  GNU General Public License for more details.
15 
16  You should have received a copy of the GNU General Public License
17  along with libdcp. If not, see <http://www.gnu.org/licenses/>.
18 
19  In addition, as a special exception, the copyright holders give
20  permission to link the code of portions of this program with the
21  OpenSSL library under certain conditions as described in each
22  individual source file, and distribute linked combinations
23  including the two.
24 
25  You must obey the GNU General Public License in all respects
26  for all of the code used other than OpenSSL. If you modify
27  file(s) with this exception, you may extend this exception to your
28  version of the file(s), but you are not obligated to do so. If you
29  do not wish to do so, delete this exception statement from your
30  version. If you delete this exception statement from all source
31  files in the program, then also delete it here.
32 */
33 
34 
35 #ifndef LIBDCP_FILESYSTEM_H
36 #define LIBDCP_FILESYSTEM_H
37 
38 
39 #include <boost/filesystem.hpp>
40 
41 
42 namespace dcp
43 {
44 namespace filesystem
45 {
46 
47 boost::filesystem::path absolute(boost::filesystem::path const& path);
48 boost::filesystem::path canonical(boost::filesystem::path const& path);
49 boost::filesystem::path weakly_canonical(boost::filesystem::path const& path);
50 boost::filesystem::path change_extension(boost::filesystem::path const& from, std::string const& new_extension);
51 void copy(boost::filesystem::path const& from, boost::filesystem::path const& to);
52 void copy_file(boost::filesystem::path const& from, boost::filesystem::path const& to);
53 void copy_file(boost::filesystem::path const& from, boost::filesystem::path const& to, boost::system::error_code& ec);
54 
55 enum class CopyOptions
56 {
57  NONE,
58  OVERWRITE_EXISTING
59 };
60 
61 void copy_file(boost::filesystem::path const& from, boost::filesystem::path const& to, CopyOptions options);
62 bool create_directory(boost::filesystem::path const& path);
63 bool create_directory(boost::filesystem::path const& path, boost::system::error_code& ec);
64 bool create_directories(boost::filesystem::path const& path);
65 bool create_directories(boost::filesystem::path const& path, boost::system::error_code& ec);
66 void create_hard_link(boost::filesystem::path const& from, boost::filesystem::path const& to);
67 void create_hard_link(boost::filesystem::path const& from, boost::filesystem::path const& to, boost::system::error_code& ec);
68 void create_symlink(boost::filesystem::path const& from, boost::filesystem::path const& to, boost::system::error_code& ec);
69 void current_path(boost::filesystem::path const& path);
70 boost::filesystem::path current_path();
71 bool exists(boost::filesystem::path const& path);
72 bool exists(boost::filesystem::path const& path, boost::system::error_code& ec);
73 std::string extension(boost::filesystem::path const& path);
74 bool is_directory(boost::filesystem::path const& path);
75 bool is_empty(boost::filesystem::path const& path);
76 bool is_regular_file(boost::filesystem::path const& path);
77 uintmax_t file_size(boost::filesystem::path const& path);
78 uintmax_t file_size(boost::filesystem::path const& path, boost::system::error_code& ec);
79 uintmax_t hard_link_count(boost::filesystem::path const& path);
80 std::time_t last_write_time(boost::filesystem::path const& path);
81 std::time_t last_write_time(boost::filesystem::path const& path, boost::system::error_code& ec);
82 bool remove(boost::filesystem::path const& path);
83 bool remove(boost::filesystem::path const& path, boost::system::error_code& ec);
84 uintmax_t remove_all(boost::filesystem::path const& path);
85 uintmax_t remove_all(boost::filesystem::path const& path, boost::system::error_code& ec);
86 void rename(boost::filesystem::path const& old_path, boost::filesystem::path const& new_path);
87 void rename(boost::filesystem::path const& old_path, boost::filesystem::path const& new_path, boost::system::error_code& ec);
88 boost::filesystem::space_info space(boost::filesystem::path const& path);
89 
90 
92 {
93 public:
94  directory_entry() {}
95  directory_entry(boost::filesystem::path const& path);
96 
97  boost::filesystem::path path() const;
98  operator boost::filesystem::path const&() const;
99 
100 private:
101  boost::filesystem::path _path;
102 };
103 
104 
106 {
107 public:
108  directory_iterator() = default;
109  directory_iterator(boost::filesystem::path const& path);
110  directory_iterator(boost::filesystem::path const& path, boost::system::error_code& ec);
111 
112  directory_iterator& operator++();
113  directory_entry operator*() const;
114  directory_entry* operator->() const;
115  bool operator!=(directory_iterator const& other) const;
116 
117 private:
118  boost::filesystem::directory_iterator _wrapped;
119  mutable directory_entry _entry;
120 };
121 
122 
123 directory_iterator const& begin(directory_iterator const& iter);
125 
126 
127 
129 {
130 public:
131  recursive_directory_iterator() = default;
132  recursive_directory_iterator(boost::filesystem::path const& path);
133 
134  recursive_directory_iterator& operator++();
135  directory_entry operator*() const;
136  directory_entry* operator->() const;
137  bool operator!=(recursive_directory_iterator const& other) const;
138 
139 private:
140  boost::filesystem::recursive_directory_iterator _wrapped;
141  mutable directory_entry _entry;
142 };
143 
144 
147 
148 
149 boost::filesystem::path fix_long_path(boost::filesystem::path long_path);
150 boost::filesystem::path unfix_long_path(boost::filesystem::path long_path);
151 
152 }
153 }
154 
155 
156 #endif
Definition: filesystem.h:92
Namespace for everything in libdcp.
Definition: array_data.h:50