Show matching controller name in automation lane header.
[ardour.git] / libs / ardour / session_directory.cc
index 6eacc8a814533b67c5d36cb465a14b91e686f84e..7ff9c6f5a7dcf0d9ad70d5518671be2eea23d366 100644 (file)
        Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 */
 
+#include <cerrno>
+
 #include <glibmm/fileutils.h>
 #include <glibmm/miscutils.h>
 
 #include "pbd/error.h"
 #include "pbd/compose.h"
 #include "pbd/file_utils.h"
-#include "pbd/filesystem.h"
 
 #include "ardour/directory_names.h"
 #include "ardour/session_directory.h"
@@ -51,22 +52,16 @@ SessionDirectory::operator= (const std::string& newpath)
 bool
 SessionDirectory::create ()
 {
-       bool is_new = false;
-
        vector<std::string> sub_dirs = sub_directories ();
        for (vector<std::string>::const_iterator i = sub_dirs.begin(); i != sub_dirs.end(); ++i)
        {
-               if (Glib::file_test (*i, Glib::FILE_TEST_EXISTS)) {
-                       is_new = false;
-               }
-
                if (g_mkdir_with_parents (i->c_str(), 0755) != 0) {
                        PBD::error << string_compose(_("Cannot create Session directory at path %1 Error: %2"), *i, g_strerror(errno)) << endmsg;
-
+                       return false;
                }
        }
 
-       return is_new;
+       return true;
 }
 
 bool
@@ -94,17 +89,33 @@ SessionDirectory::old_sound_path () const
 const std::string
 SessionDirectory::sources_root () const
 {
-       // fix this later
-       path p = m_root_path;
+       std::string p = m_root_path;
+       std::string filename = Glib::path_get_basename(p);
+
+       if (filename == ".") {
+               p = PBD::get_absolute_path (m_root_path);
+       }
+
+       const string legalized_root (legalize_for_path (Glib::path_get_basename(p)));
+
+       std::string sources_root_path = Glib::build_filename (m_root_path, interchange_dir_name);
+       return Glib::build_filename (sources_root_path, legalized_root);
+}
+
+const std::string
+SessionDirectory::sources_root_2X () const
+{
+       std::string p = m_root_path;
+       std::string filename = Glib::path_get_basename(p);
 
-       if (p.leaf() == ".") {
+       if (filename == ".") {
                p = PBD::get_absolute_path (m_root_path);
        }
 
-       const string legalized_root (legalize_for_path (p.leaf ()));
+       const string legalized_root (legalize_for_path_2X (Glib::path_get_basename(p)));
 
-       path sources_root_path = m_root_path / interchange_dir_name / legalized_root;
-       return sources_root_path.to_string ();
+       std::string sources_root_path = Glib::build_filename (m_root_path, interchange_dir_name);
+       return Glib::build_filename (sources_root_path, legalized_root);
 }
 
 const std::string
@@ -116,6 +127,12 @@ SessionDirectory::sound_path () const
        return Glib::build_filename (sources_root(), sound_dir_name);
 }
 
+const std::string
+SessionDirectory::sound_path_2X () const
+{
+       return Glib::build_filename (sources_root_2X(), sound_dir_name);
+}
+
 const std::string
 SessionDirectory::midi_path () const
 {