summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/session_directory.h
diff options
context:
space:
mode:
authorDoug McLain <doug@nostar.net>2008-06-02 05:02:28 +0000
committerDoug McLain <doug@nostar.net>2008-06-02 05:02:28 +0000
commit9c0d7d72d70082a54f823cd44c0ccda5da64bb6f (patch)
tree96ec400b83b8c1c06852b1936f684b5fbcd47a79 /libs/ardour/ardour/session_directory.h
parent2f3f697bb8e185eb43c2c50b4eefc2bcb937f269 (diff)
remove empty sigc++2 directory
git-svn-id: svn://localhost/ardour2/branches/3.0@3432 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/ardour/session_directory.h')
-rw-r--r--libs/ardour/ardour/session_directory.h136
1 files changed, 0 insertions, 136 deletions
diff --git a/libs/ardour/ardour/session_directory.h b/libs/ardour/ardour/session_directory.h
deleted file mode 100644
index a4fb7d07c5..0000000000
--- a/libs/ardour/ardour/session_directory.h
+++ /dev/null
@@ -1,136 +0,0 @@
-/*
- 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
- the Free Software Foundation; either version 2 of the License, or
- (at your option) any later version.
-
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
-
- You should have received a copy of the GNU General Public License
- along with this program; if not, write to the Free Software
- Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
-*/
-
-#ifndef __ardour_session_directory_h__
-#define __ardour_session_directory_h__
-
-#include <string>
-#include <vector>
-
-#include <pbd/filesystem.h>
-
-namespace ARDOUR {
-
-using std::string;
-using std::vector;
-using PBD::sys::path;
-
-class SessionDirectory
-{
-public:
-
- /**
- * @param session_path An absolute path to a session directory.
- */
- SessionDirectory (const path& session_path);
-
- /**
- * @return the absolute path to the root directory of the session
- */
- const path root_path() const { return m_root_path; }
-
- /**
- * @return the absolute path to the directory in which
- * the session stores audio files.
- *
- * If the session is an older session with an existing
- * "sounds" directory then it will return a path to that
- * directory otherwise it will return the new location
- * of root_path()/interchange/session_name/audiofiles
- */
- const path sound_path () const;
-
- /**
- * @return the absolute path to the directory in which
- * the session stores MIDI files, ie
- * root_path()/interchange/session_name/midifiles
- */
- const path midi_path () const;
-
- /**
- * @return The absolute path to the directory in which all
- * peak files are stored for a session.
- */
- const path peak_path () const;
-
- /**
- * @return The absolute path to the directory that audio
- * files are moved to when they are no longer part of the
- * session.
- */
- const path dead_sound_path () const;
-
- /**
- * @return The absolute path to the directory that midi
- * files are moved to when they are no longer part of the
- * session.
- */
- const path dead_midi_path () const;
-
- /**
- * @return The absolute path to the directory that audio
- * files are created in by default when exporting.
- */
- const path export_path () const;
-
- /**
- * @return true if session directory and all the required
- * subdirectories exist.
- */
- bool is_valid () const;
-
- /**
- * Create the session directory and all the subdirectories.
- *
- * @throw PBD::sys::filesystem_error if the directories were
- * not able to be created.
- *
- * @return true If a new session directory was created, otherwise
- * (if it already existed) false.
- *
- * @post is_valid ()
- */
- bool create ();
-
-protected:
-
- /**
- * @return The path to the old style sound directory.
- * It isn't created by create().
- */
- const path old_sound_path () const;
-
- /**
- * @return The path to the directory under which source directories
- * are created for different source types.
- * i.e root_path()/interchange/session_name
- */
- const path sources_root() const;
-
- /**
- * @return a vector containing the fullpath of all subdirectories.
- */
- const vector<PBD::sys::path> sub_directories () const;
-
- /// The path to the root of the session directory.
- const path m_root_path;
-};
-
-} // namespace ARDOUR
-
-#endif