Add PBD::sys::path class that has a similar API to boost::filesystem::path but using...
[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/filesystem.h>
27
28 #include <ardour/directory_names.h>
29 #include <ardour/session_directory.h>
30
31 #include "i18n.h"
32
33 namespace ARDOUR {
34
35 using namespace PBD::sys;
36
37 SessionDirectory::SessionDirectory (const string& session_path)
38         : m_root_path(session_path)
39 {
40
41 }
42
43 bool
44 SessionDirectory::create ()
45 {
46         if (is_directory (m_root_path))
47         {
48                 PBD::error << string_compose(_("Cannot create Session directory at path %1 as it already exists"), m_root_path.to_string()) << endmsg;
49                 return false;
50         }
51
52         vector<path> sub_dirs = sub_directories ();
53         for (vector<path>::const_iterator i = sub_dirs.begin(); i != sub_dirs.end(); ++i)
54         {
55                 if (!create_directories(*i))
56                 {
57                         PBD::error << string_compose(_("Cannot create Session directory at path %1 Error: %2"), (*i).to_string(), g_strerror (errno)) << endmsg;
58                         return false;
59                 }
60         }
61
62         return true;
63 }
64
65 bool
66 SessionDirectory::is_valid () const
67 {
68         if (!is_directory (m_root_path)) return false;
69
70         vector<path> sub_dirs = sub_directories ();
71
72         for (vector<path>::iterator i = sub_dirs.begin(); i != sub_dirs.end(); ++i) {
73                 if (!is_directory (*i)) {
74                         PBD::warning << string_compose(_("Session subdirectory does not exist at path %1"), (*i).to_string()) << endmsg;
75                         return false;
76                 }
77         }
78         return true;
79 }
80
81 const path
82 SessionDirectory::old_sound_path () const
83 {
84         return path(m_root_path) /= old_sound_dir_name;
85 }
86
87 const path
88 SessionDirectory::sound_path () const
89 {
90         if(is_directory (old_sound_path ())) return old_sound_path();
91
92         // the new style sound directory
93         path l_sound_path(m_root_path);
94
95         l_sound_path /= interchange_dir_name;
96         l_sound_path /= basename(m_root_path);
97         l_sound_path /= sound_dir_name;
98
99         return l_sound_path;
100 }
101
102 const path
103 SessionDirectory::peak_path () const
104 {
105         return path(m_root_path) /= peak_dir_name;
106 }
107
108 const path
109 SessionDirectory::dead_sound_path () const
110 {
111         return path(m_root_path) /= dead_sound_dir_name;
112 }
113
114 const vector<path>
115 SessionDirectory::sub_directories () const
116 {
117         vector<path> tmp_paths; 
118
119         tmp_paths.push_back ( sound_path () );
120         tmp_paths.push_back ( peak_path () );
121         tmp_paths.push_back ( dead_sound_path () );
122
123         return tmp_paths;
124 }
125
126 } // namespace ARDOUR