remove use of boost::thread/boost::mutex; bump glibmm requirement to 2.30 in order...
[ardour.git] / libs / ardour / session_directory.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 <cerrno>
20
21 #include <glibmm/fileutils.h>
22 #include <glibmm/miscutils.h>
23
24 #include "pbd/error.h"
25 #include "pbd/compose.h"
26 #include "pbd/file_utils.h"
27
28 #include "ardour/directory_names.h"
29 #include "ardour/session_directory.h"
30 #include "ardour/utils.h"
31
32 #include "i18n.h"
33
34 namespace ARDOUR {
35
36 using namespace std;
37 using namespace PBD::sys;
38
39 SessionDirectory::SessionDirectory (const std::string& session_path)
40         : m_root_path(session_path)
41 {
42
43 }
44
45 SessionDirectory& 
46 SessionDirectory::operator= (const std::string& newpath)
47 {
48         m_root_path = newpath;
49         return *this;
50 }
51
52 bool
53 SessionDirectory::create ()
54 {
55         vector<std::string> sub_dirs = sub_directories ();
56         for (vector<std::string>::const_iterator i = sub_dirs.begin(); i != sub_dirs.end(); ++i)
57         {
58                 if (g_mkdir_with_parents (i->c_str(), 0755) != 0) {
59                         PBD::error << string_compose(_("Cannot create Session directory at path %1 Error: %2"), *i, g_strerror(errno)) << endmsg;
60                         return false;
61                 }
62         }
63
64         return true;
65 }
66
67 bool
68 SessionDirectory::is_valid () const
69 {
70         if (!Glib::file_test (m_root_path, Glib::FILE_TEST_IS_DIR)) return false;
71
72         vector<std::string> sub_dirs = sub_directories ();
73
74         for (vector<std::string>::iterator i = sub_dirs.begin(); i != sub_dirs.end(); ++i) {
75                 if (!Glib::file_test (*i, Glib::FILE_TEST_IS_DIR)) {
76                         PBD::warning << string_compose(_("Session subdirectory does not exist at path %1"), *i) << endmsg;
77                         return false;
78                 }
79         }
80         return true;
81 }
82
83 const std::string
84 SessionDirectory::old_sound_path () const
85 {
86         return Glib::build_filename (m_root_path, old_sound_dir_name);
87 }
88
89 const std::string
90 SessionDirectory::sources_root () const
91 {
92         std::string p = m_root_path;
93         std::string filename = Glib::path_get_basename(p);
94
95         if (filename == ".") {
96                 p = PBD::get_absolute_path (m_root_path);
97         }
98
99         const string legalized_root (legalize_for_path (Glib::path_get_basename(p)));
100
101         std::string sources_root_path = Glib::build_filename (m_root_path, interchange_dir_name);
102         return Glib::build_filename (sources_root_path, legalized_root);
103 }
104
105 const std::string
106 SessionDirectory::sound_path () const
107 {
108         if (Glib::file_test (old_sound_path (), Glib::FILE_TEST_IS_DIR)) return old_sound_path();
109
110         // the new style sound directory
111         return Glib::build_filename (sources_root(), sound_dir_name);
112 }
113
114 const std::string
115 SessionDirectory::midi_path () const
116 {
117         return Glib::build_filename (sources_root(), midi_dir_name);
118 }
119
120 const std::string
121 SessionDirectory::midi_patch_path () const
122 {
123         return Glib::build_filename (sources_root(), midi_patch_dir_name);
124 }
125
126 const std::string
127 SessionDirectory::peak_path () const
128 {
129         return Glib::build_filename (m_root_path, peak_dir_name);
130 }
131
132 const std::string
133 SessionDirectory::dead_path () const
134 {
135         return Glib::build_filename (m_root_path, dead_dir_name);
136 }
137
138 const std::string
139 SessionDirectory::export_path () const
140 {
141         return Glib::build_filename (m_root_path, export_dir_name);
142 }
143
144 const vector<std::string>
145 SessionDirectory::sub_directories () const
146 {
147         vector<std::string> tmp_paths;
148
149         tmp_paths.push_back (sound_path ());
150         tmp_paths.push_back (midi_path ());
151         tmp_paths.push_back (peak_path ());
152         tmp_paths.push_back (dead_path ());
153         tmp_paths.push_back (export_path ());
154
155         return tmp_paths;
156 }
157
158 } // namespace ARDOUR