fix a few dangling uses of Ardour as program name, in favor of PROGRAM_NAME
[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 #include <cstdlib>
20
21 #include "pbd/error.h"
22 #include "pbd/compose.h"
23 #include "pbd/filesystem_paths.h"
24
25 #include <glibmm/miscutils.h>
26 #include <glibmm/fileutils.h>
27
28 #include "ardour/directory_names.h"
29 #include "ardour/filesystem_paths.h"
30
31 #include "i18n.h"
32
33 #define WITH_STATIC_PATHS 1
34
35 using namespace PBD;
36
37 namespace ARDOUR {
38
39 using std::string;
40
41 sys::path
42 user_config_directory ()
43 {
44         sys::path p;
45
46 #ifdef __APPLE__
47         p = Glib::get_home_dir();
48         p /= "Library/Preferences";
49
50 #else
51         const char* c = 0;
52
53         /* adopt freedesktop standards, and put .ardour3 into $XDG_CONFIG_HOME or ~/.config
54          */
55
56         if ((c = getenv ("XDG_CONFIG_HOME")) != 0) {
57                 p = c;
58         } else {
59                 const string home_dir = Glib::get_home_dir();
60
61                 if (home_dir.empty ()) {
62                         const string error_msg = "Unable to determine home directory";
63
64                         // log the error
65                         error << error_msg << endmsg;
66
67                         throw sys::filesystem_error(error_msg);
68                 }
69
70                 p = home_dir;
71                 p /= ".config";
72         }
73 #endif
74
75         p /= user_config_dir_name;
76
77         std::string ps (p.to_string());
78
79         if (!Glib::file_test (ps, Glib::FILE_TEST_EXISTS)) {
80                 if (g_mkdir_with_parents (ps.c_str(), 0755)) {
81                         error << string_compose (_("Cannot create Configuration directory %1 - cannot run"),
82                                                    ps) << endmsg;
83                         exit (1);
84                 }
85         } else if (!Glib::file_test (ps, Glib::FILE_TEST_IS_DIR)) {
86                 error << string_compose (_("Configuration directory %1 already exists and is not a directory/folder - cannot run"),
87                                            ps) << endmsg;
88                 exit (1);
89         }
90
91         return p;
92 }
93
94 sys::path
95 ardour_module_directory ()
96 {
97         sys::path module_directory(MODULE_DIR);
98         module_directory /= "ardour3";
99         return module_directory;
100 }
101
102 SearchPath
103 ardour_search_path ()
104 {
105         SearchPath spath_env(Glib::getenv("ARDOUR_PATH"));
106         return spath_env;
107 }
108
109 SearchPath
110 system_config_search_path ()
111 {
112 #ifdef WITH_STATIC_PATHS
113         SearchPath config_path(string(CONFIG_DIR));
114 #else
115         SearchPath config_path(system_config_directories());
116 #endif
117
118         config_path.add_subdirectory_to_paths("ardour3");
119
120         return config_path;
121 }
122
123 SearchPath
124 system_data_search_path ()
125 {
126 #ifdef WITH_STATIC_PATHS
127         SearchPath data_path(string(DATA_DIR));
128 #else
129         SearchPath data_path(system_data_directories());
130 #endif
131
132         data_path.add_subdirectory_to_paths("ardour3");
133
134         return data_path;
135 }
136
137 } // namespace ARDOUR