Waf: build UI/RC files, menu files, keybinding files, and fix paths in wrapper scripts.
[ardour.git] / libs / ardour / filesystem_paths.cc
1 /*
2     Copyright (C) 2007 Tim Mayberry 
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include "pbd/error.h"
21 #include "pbd/filesystem_paths.h"
22
23 #include <glibmm/miscutils.h>
24
25 #include "ardour/directory_names.h"
26 #include "ardour/filesystem_paths.h"
27
28 #define WITH_STATIC_PATHS 1
29
30 namespace ARDOUR {
31
32 using std::string;
33
34 sys::path
35 user_config_directory ()
36 {
37         const string home_dir = Glib::get_home_dir ();
38
39         if (home_dir.empty ()) {
40                 const string error_msg = "Unable to determine home directory";
41
42                 // log the error
43                 error << error_msg << endmsg;
44
45                 throw sys::filesystem_error(error_msg);
46         }
47
48         sys::path p(home_dir);
49         p /= user_config_dir_name;
50
51         return p;
52 }
53
54 sys::path
55 ardour_module_directory ()
56 {
57         sys::path module_directory(MODULE_DIR);
58         module_directory /= "ardour3";
59         return module_directory;
60 }
61
62 SearchPath
63 ardour_search_path ()
64 {
65         SearchPath spath_env(Glib::getenv("ARDOUR_PATH"));
66         return spath_env;
67 }
68
69 SearchPath
70 system_config_search_path ()
71 {
72 #ifdef WITH_STATIC_PATHS
73         SearchPath config_path(string(CONFIG_DIR));
74 #else
75         SearchPath config_path(system_config_directories());
76 #endif
77
78         config_path.add_subdirectory_to_paths("ardour3");
79
80         return config_path;
81 }
82
83 SearchPath
84 system_data_search_path ()
85 {
86 #ifdef WITH_STATIC_PATHS
87         SearchPath data_path(string(DATA_DIR));
88 #else
89         SearchPath data_path(system_data_directories());
90 #endif
91
92         data_path.add_subdirectory_to_paths("ardour3");
93
94         return data_path;
95 }
96
97 } // namespace ARDOUR