Add/Update docs in pbd/file_utils.h
[ardour.git] / libs / pbd / file_utils.cc
1 /*
2     Copyright (C) 2007-2014 Tim Mayberry
3     Copyright (C) 1998-2014 Paul Davis
4
5     This program is free software; you can redistribute it and/or modify
6     it under the terms of the GNU General Public License as published by
7     the Free Software Foundation; either version 2 of the License, or
8     (at your option) any later version.
9
10     This program is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU General Public License for more details.
14
15     You should have received a copy of the GNU General Public License
16     along with this program; if not, write to the Free Software
17     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18
19 */
20
21 #include <algorithm>
22 #include <vector>
23
24 #include <glib.h>
25 #include <glib/gstdio.h>
26
27 #ifdef COMPILER_MINGW
28 #include <io.h> // For W_OK
29 #endif
30
31 #include <glibmm/fileutils.h>
32 #include <glibmm/miscutils.h>
33 #include <glibmm/pattern.h>
34
35 #include <errno.h>
36 #include <string.h> /* strerror */
37
38 /* open() */
39 #include <sys/types.h>
40 #include <sys/stat.h>
41 #include <fcntl.h>
42
43 /* close(), read(), write() */
44 #ifdef COMPILER_MSVC
45 #include <io.h> // Microsoft's nearest equivalent to <unistd.h>
46 #include <ardourext/misc.h>
47 #else
48 #include <unistd.h>
49 #include <regex.h>
50 #endif
51
52 #include "pbd/compose.h"
53 #include "pbd/file_utils.h"
54 #include "pbd/debug.h"
55 #include "pbd/error.h"
56 #include "pbd/pathexpand.h"
57 #include "pbd/stl_delete.h"
58
59 #include "i18n.h"
60
61 using namespace std;
62
63 namespace PBD {
64
65 void
66 run_functor_for_paths (vector<string>& result,
67                        const Searchpath& paths,
68                        bool (*functor)(const string &, void *),
69                        void *arg,
70                        bool pass_files_only,
71                        bool pass_fullpath, bool return_fullpath,
72                        bool recurse)
73 {
74         for (vector<string>::const_iterator i = paths.begin(); i != paths.end(); ++i) {
75                 string expanded_path = path_expand (*i);
76                 DEBUG_TRACE (DEBUG::FileUtils,
77                                 string_compose("Find files in expanded path: %1\n", expanded_path));
78
79                 if (!Glib::file_test (expanded_path, Glib::FILE_TEST_IS_DIR)) continue;
80
81                 try
82                 {
83                         Glib::Dir dir(expanded_path);
84
85                         for (Glib::DirIterator di = dir.begin(); di != dir.end(); di++) {
86
87                                 string fullpath = Glib::build_filename (expanded_path, *di);
88                                 string basename = *di;
89
90                                 bool is_dir = Glib::file_test (fullpath, Glib::FILE_TEST_IS_DIR);
91
92                                 if (is_dir && recurse) {
93                                         DEBUG_TRACE (DEBUG::FileUtils,
94                                                         string_compose("Descending into directory:  %1\n",
95                                                                 fullpath));
96                                         run_functor_for_paths (result, fullpath, functor, arg, pass_files_only,
97                                                                pass_fullpath, return_fullpath, recurse);
98                                 }
99
100                                 if (is_dir && pass_files_only) {
101                                         continue;
102                                 }
103
104                                 string functor_str;
105
106                                 if (pass_fullpath) {
107                                         functor_str = fullpath;
108                                 } else {
109                                         functor_str = basename;
110                                 }
111
112                                 DEBUG_TRACE (DEBUG::FileUtils,
113                                                 string_compose("Run Functor using string: %1\n", functor_str));
114
115                                 if (!functor(functor_str, arg)) {
116                                         continue;
117                                 }
118
119                                 DEBUG_TRACE (DEBUG::FileUtils,
120                                                 string_compose("Found file %1 matching functor\n", functor_str));
121
122                                 if (return_fullpath) {
123                                         result.push_back(fullpath);
124                                 } else {
125                                         result.push_back(basename);
126                                 }
127                         }
128                 }
129                 catch (Glib::FileError& err)
130                 {
131                         warning << err.what() << endmsg;
132                 }
133         }
134 }
135
136 static
137 bool accept_all_files (string const &, void *)
138 {
139         return true;
140 }
141
142 void
143 get_paths (vector<string>& result,
144            const std::string& directory_path,
145            bool files_only,
146            bool recurse)
147 {
148         run_functor_for_paths (result, directory_path, accept_all_files, 0,
149                                files_only, true, true, recurse);
150 }
151
152 void
153 get_files (vector<string>& result, const std::string& directory_path)
154 {
155         return get_paths (result, directory_path, true, false);
156 }
157
158 static
159 bool
160 pattern_filter (const string& str, void *arg)
161 {
162         Glib::PatternSpec* pattern = (Glib::PatternSpec*)arg;
163         return pattern->match(str);
164 }
165
166 void
167 find_files_matching_pattern (vector<string>& result,
168                              const Searchpath& paths,
169                              const Glib::PatternSpec& pattern)
170 {
171         run_functor_for_paths (result, paths, pattern_filter,
172                                const_cast<Glib::PatternSpec*>(&pattern),
173                                true, false, true, false);
174 }
175
176 void
177 find_files_matching_pattern (vector<string>& result,
178                              const Searchpath& paths,
179                              const string& pattern)
180 {
181         Glib::PatternSpec tmp(pattern);
182         find_files_matching_pattern (result, paths, tmp);
183 }
184
185 bool
186 find_file (const Searchpath& search_path,
187            const string& filename,
188            std::string& result)
189 {
190         vector<std::string> tmp;
191
192         find_files_matching_pattern (tmp, search_path, filename);
193
194         if (tmp.size() == 0) {
195                 DEBUG_TRACE (DEBUG::FileUtils,
196                              string_compose("No file matching %1 found in Path: %2\n",
197                              filename, search_path.to_string()));
198                 return false;
199         }
200
201         if (tmp.size() != 1) {
202                 DEBUG_TRACE (DEBUG::FileUtils,
203                              string_compose("Found more that one file matching %1 in Path: %2\n",
204                              filename, search_path.to_string()));
205         }
206
207         result = tmp.front();
208
209         DEBUG_TRACE (DEBUG::FileUtils,
210                      string_compose("Found file %1 in Path: %2\n",
211                      filename, search_path.to_string()));
212
213         return true;
214 }
215
216 static
217 bool
218 regexp_filter (const string& str, void *arg)
219 {
220         regex_t* pattern = (regex_t*)arg;
221         return regexec (pattern, str.c_str(), 0, 0, 0) == 0;
222 }
223
224 void
225 find_files_matching_regex (vector<string>& result,
226                            const Searchpath& paths,
227                            const std::string& regexp)
228 {
229         int err;
230         char msg[256];
231         regex_t compiled_pattern;
232
233         if ((err = regcomp (&compiled_pattern, regexp.c_str(),
234                             REG_EXTENDED|REG_NOSUB))) {
235
236                 regerror (err, &compiled_pattern,
237                           msg, sizeof (msg));
238
239                 error << "Cannot compile soundfile regexp for use ("
240                       << msg
241                       << ")"
242                       << endmsg;
243
244                 return;
245         }
246
247         DEBUG_TRACE (DEBUG::FileUtils,
248                         string_compose("Matching files using regexp: %1\n", regexp));
249
250         find_files_matching_filter (result, paths,
251                                     regexp_filter, &compiled_pattern,
252                                     true, true, false);
253
254         regfree (&compiled_pattern);
255 }
256
257 void
258 find_paths_matching_filter (vector<string>& result,
259                             const Searchpath& paths,
260                             bool (*filter)(const string &, void *),
261                             void *arg,
262                             bool pass_fullpath, bool return_fullpath,
263                             bool recurse)
264 {
265         run_functor_for_paths (result, paths, filter, arg, false, pass_fullpath, return_fullpath, recurse);
266 }
267
268 void
269 find_files_matching_filter (vector<string>& result,
270                             const Searchpath& paths,
271                             bool (*filter)(const string &, void *),
272                             void *arg,
273                             bool pass_fullpath, bool return_fullpath,
274                             bool recurse)
275 {
276         run_functor_for_paths (result, paths, filter, arg, true, pass_fullpath, return_fullpath, recurse);
277 }
278
279 bool
280 copy_file(const std::string & from_path, const std::string & to_path)
281 {
282         if (!Glib::file_test (from_path, Glib::FILE_TEST_EXISTS)) return false;
283
284         int fd_from = -1;
285         int fd_to = -1;
286         char buf[4096]; // BUFSIZ  ??
287         ssize_t nread;
288
289         fd_from = ::open(from_path.c_str(), O_RDONLY);
290         if (fd_from < 0) {
291                 goto copy_error;
292         }
293
294         fd_to = ::open(to_path.c_str(), O_WRONLY | O_CREAT, 0666);
295         if (fd_to < 0) {
296                 goto copy_error;
297         }
298
299         while (nread = ::read(fd_from, buf, sizeof(buf)), nread > 0) {
300                 char *out_ptr = buf;
301                 do {
302                         ssize_t nwritten = ::write(fd_to, out_ptr, nread);
303                         if (nwritten >= 0) {
304                                 nread -= nwritten;
305                                 out_ptr += nwritten;
306                         } else if (errno != EINTR) {
307                                 goto copy_error;
308                         }
309                 } while (nread > 0);
310         }
311
312         if (nread == 0) {
313                 if (::close(fd_to)) {
314                         fd_to = -1;
315                         goto copy_error;
316                 }
317                 ::close(fd_from);
318                 return true;
319         }
320
321 copy_error:
322         int saved_errno = errno;
323
324         if (fd_from >= 0) {
325                 ::close(fd_from);
326         }
327         if (fd_to >= 0) {
328                 ::close(fd_to);
329         }
330
331         error << string_compose (_("Unable to Copy file %1 to %2 (%3)"),
332                         from_path, to_path, strerror(saved_errno))
333                 << endmsg;
334         return false;
335 }
336
337 void
338 copy_files(const std::string & from_path, const std::string & to_dir)
339 {
340         vector<string> files;
341         find_files_matching_filter (files, from_path, accept_all_files, 0, true, false);
342
343         for (vector<string>::iterator i = files.begin(); i != files.end(); ++i) {
344                 std::string from = Glib::build_filename (from_path, *i);
345                 std::string to = Glib::build_filename (to_dir, *i);
346                 copy_file (from, to);
347         }
348 }
349
350 std::string
351 get_absolute_path (const std::string & p)
352 {
353         if (Glib::path_is_absolute(p)) return p;
354         return Glib::build_filename (Glib::get_current_dir(), p);
355 }
356
357 bool
358 equivalent_paths (const std::string& a, const std::string& b)
359 {
360         GStatBuf bA;
361         int const rA = g_stat (a.c_str(), &bA);
362         GStatBuf bB;
363         int const rB = g_stat (b.c_str(), &bB);
364
365         return (rA == 0 && rB == 0 && bA.st_dev == bB.st_dev && bA.st_ino == bB.st_ino);
366 }
367
368 bool
369 path_is_within (std::string const & haystack, std::string needle)
370 {
371         while (1) {
372                 if (equivalent_paths (haystack, needle)) {
373                         return true;
374                 }
375
376                 needle = Glib::path_get_dirname (needle);
377                 if (needle == "." || needle == "/") {
378                         break;
379                 }
380         }
381
382         return false;
383 }
384
385 bool
386 exists_and_writable (const std::string & p)
387 {
388         /* writable() really reflects the whole folder, but if for any
389            reason the session state file can't be written to, still
390            make us unwritable.
391         */
392
393         GStatBuf statbuf;
394
395         if (g_stat (p.c_str(), &statbuf) != 0) {
396                 /* doesn't exist - not writable */
397                 return false;
398         } else {
399                 if (!(statbuf.st_mode & S_IWUSR)) {
400                         /* exists and is not writable */
401                         return false;
402                 }
403                 /* filesystem may be mounted read-only, so even though file
404                  * permissions permit access, the mount status does not.
405                  * access(2) seems like the best test for this.
406                  */
407                 if (g_access (p.c_str(), W_OK) != 0) {
408                         return false;
409                 }
410         }
411
412         return true;
413 }
414
415 int
416 remove_directory_internal (const string& dir, size_t* size, vector<string>* paths,
417                            bool just_remove_files)
418 {
419         vector<string> tmp_paths;
420         struct stat statbuf;
421         int ret = 0;
422
423         get_paths (tmp_paths, dir, just_remove_files, true);
424
425         for (vector<string>::const_iterator i = tmp_paths.begin();
426              i != tmp_paths.end(); ++i) {
427
428                 if (g_stat (i->c_str(), &statbuf)) {
429                         continue;
430                 }
431
432                 if (::g_remove (i->c_str())) {
433                         error << string_compose (_("cannot remove path %1 (%2)"), *i, strerror (errno))
434                               << endmsg;
435                         ret = 1;
436                 }
437
438                 if (paths) {
439                         paths->push_back (Glib::path_get_basename(*i));
440                 }
441
442                 if (size) {
443                         *size += statbuf.st_size;
444                 }
445
446         }
447
448         return ret;
449 }
450
451 int
452 clear_directory (const string& dir, size_t* size, vector<string>* paths)
453 {
454         return remove_directory_internal (dir, size, paths, true);
455 }
456
457 // rm -rf <dir> -- used to remove saved plugin state
458 void
459 remove_directory (const std::string& dir)
460 {
461         remove_directory_internal (dir, 0, 0, false);
462 }
463
464 } // namespace PBD