Move a few declarations to first use.
[ardour.git] / libs / ardour / filesystem_paths.cc
index 5dc5e4dbdef823bb31cf4fc796e5a6a4d37801ec..11ddc885025d79010c36003eb4aa2883b9580d23 100644 (file)
 #include <cstdlib>
 
 #include "pbd/error.h"
+#include "pbd/compose.h"
 #include "pbd/filesystem_paths.h"
 
 #include <glibmm/miscutils.h>
+#include <glibmm/fileutils.h>
 
 #include "ardour/directory_names.h"
 #include "ardour/filesystem_paths.h"
 
+#include "i18n.h"
+
 #define WITH_STATIC_PATHS 1
 
 using namespace PBD;
@@ -37,9 +41,15 @@ using std::string;
 sys::path
 user_config_directory ()
 {
-       const char* c = 0;
        sys::path p;
 
+#ifdef __APPLE__
+       p = Glib::get_home_dir();
+       p /= "Library/Preferences";
+
+#else
+       const char* c = 0;
+
        /* adopt freedesktop standards, and put .ardour3 into $XDG_CONFIG_HOME or ~/.config
         */
 
@@ -60,9 +70,24 @@ user_config_directory ()
                p = home_dir;
                p /= ".config";
        }
+#endif
 
        p /= user_config_dir_name;
 
+       std::string ps (p.to_string());
+
+       if (!Glib::file_test (ps, Glib::FILE_TEST_EXISTS)) {
+               if (g_mkdir_with_parents (ps.c_str(), 0755)) {
+                       error << string_compose (_("Cannot create Configuration directory %1 - cannot run"),
+                                                  ps) << endmsg;
+                       exit (1);
+               }
+       } else if (!Glib::file_test (ps, Glib::FILE_TEST_IS_DIR)) {
+               error << string_compose (_("Configuration directory %1 already exists and is not a directory/folder - cannot run"),
+                                          ps) << endmsg;
+               exit (1);
+       }
+
        return p;
 }