don't try to backup sessions from older versions of ardour that are also read-only
[ardour.git] / libs / ardour / session_directory.cc
index 1a2b476cad5df8d6c6db74c5e76f2b01beabe56b..9653a15ae10b07c60f036ca5f7b9fe628e640000 100644 (file)
@@ -1,5 +1,5 @@
 /*
-       Copyright (C) 2007 Tim Mayberry 
+       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
        Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 */
 
-#include <pbd/error.h>
-#include <pbd/compose.h>
-#include <pbd/filesystem.h>
+#include "pbd/error.h"
+#include "pbd/compose.h"
+#include "pbd/filesystem.h"
 
-#include <ardour/directory_names.h>
-#include <ardour/session_directory.h>
-#include <ardour/utils.h>
+#include "ardour/directory_names.h"
+#include "ardour/session_directory.h"
+#include "ardour/utils.h"
 
 #include "i18n.h"
 
 namespace ARDOUR {
 
+using namespace std;
 using namespace PBD::sys;
 
 SessionDirectory::SessionDirectory (const path& session_path)
@@ -36,6 +37,13 @@ SessionDirectory::SessionDirectory (const path& session_path)
 
 }
 
+SessionDirectory& 
+SessionDirectory::operator= (const std::string& newpath)
+{
+       m_root_path = newpath;
+       return *this;
+}
+
 bool
 SessionDirectory::create ()
 {
@@ -46,10 +54,7 @@ SessionDirectory::create ()
        {
                try
                {
-                       if(create_directories(*i)) {
-                               PBD::info << string_compose(_("Created Session directory at path %1"), (*i).to_string()) << endmsg;
-                               is_new = true;
-                       }
+                       if(create_directories(*i)) is_new = true;
                }
                catch (PBD::sys::filesystem_error& ex)
                {
@@ -89,7 +94,13 @@ SessionDirectory::old_sound_path () const
 const path
 SessionDirectory::sources_root () const
 {
-       const string legalized_root(legalize_for_path(m_root_path.leaf()));
+       path p = m_root_path;
+
+       if (p.leaf() == ".") {
+               p = PBD::sys::get_absolute_path (m_root_path);
+       }
+       
+       const string legalized_root (legalize_for_path (p.leaf ()));
 
        return m_root_path / interchange_dir_name / legalized_root;
 }
@@ -110,21 +121,21 @@ SessionDirectory::midi_path () const
 }
 
 const path
-SessionDirectory::peak_path () const
+SessionDirectory::midi_patch_path () const
 {
-       return m_root_path / peak_dir_name;
+       return sources_root() / midi_patch_dir_name;
 }
 
 const path
-SessionDirectory::dead_sound_path () const
+SessionDirectory::peak_path () const
 {
-       return m_root_path / dead_sound_dir_name;
+       return m_root_path / peak_dir_name;
 }
 
 const path
-SessionDirectory::dead_midi_path () const
+SessionDirectory::dead_path () const
 {
-       return m_root_path / dead_midi_dir_name;
+       return m_root_path / dead_dir_name;
 }
 
 const path
@@ -136,14 +147,13 @@ SessionDirectory::export_path () const
 const vector<path>
 SessionDirectory::sub_directories () const
 {
-       vector<path> tmp_paths; 
-
-       tmp_paths.push_back ( sound_path () );
-       tmp_paths.push_back ( midi_path () );
-       tmp_paths.push_back ( peak_path () );
-       tmp_paths.push_back ( dead_sound_path () );
-       tmp_paths.push_back ( dead_midi_path () );
-       tmp_paths.push_back ( export_path () );
+       vector<path> tmp_paths;
+
+       tmp_paths.push_back (sound_path ());
+       tmp_paths.push_back (midi_path ());
+       tmp_paths.push_back (peak_path ());
+       tmp_paths.push_back (dead_path ());
+       tmp_paths.push_back (export_path ());
 
        return tmp_paths;
 }