summaryrefslogtreecommitdiff
path: root/libs/ardour/filesystem_paths.cc
diff options
context:
space:
mode:
authorTim Mayberry <mojofunk@gmail.com>2007-06-27 12:12:00 +0000
committerTim Mayberry <mojofunk@gmail.com>2007-06-27 12:12:00 +0000
commit8d886711785c3449e0fad389285409c86a6d0dc7 (patch)
tree46febd2276421598e66290160b34e90c1f78e65d /libs/ardour/filesystem_paths.cc
parent0cab8ee55631c8b2adf7033ae1576aa79dcef20c (diff)
Add ARDOUR::user_config_directory in new header ardour/filesystem_paths.h
git-svn-id: svn://localhost/ardour2/trunk@2041 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/filesystem_paths.cc')
-rw-r--r--libs/ardour/filesystem_paths.cc52
1 files changed, 52 insertions, 0 deletions
diff --git a/libs/ardour/filesystem_paths.cc b/libs/ardour/filesystem_paths.cc
new file mode 100644
index 0000000000..55a8a9983f
--- /dev/null
+++ b/libs/ardour/filesystem_paths.cc
@@ -0,0 +1,52 @@
+/*
+ Copyright (C) 2007 Tim Mayberry
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+
+*/
+
+#include <pbd/error.h>
+
+#include <glibmm/miscutils.h>
+
+#include <ardour/directory_names.h>
+#include <ardour/filesystem_paths.h>
+
+namespace ARDOUR {
+
+using std::string;
+
+sys::path
+user_config_directory ()
+{
+ const string home_dir = Glib::get_home_dir ();
+
+ if (home_dir.empty ())
+ {
+ const string error_msg = "Unable to determine home directory";
+
+ // log the error
+ error << error_msg << endmsg;
+
+ throw sys::filesystem_error(error_msg);
+ }
+
+ sys::path p(home_dir);
+ p /= user_config_dir_name;
+
+ return p;
+}
+
+} // namespace ARDOUR