mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-16 11:46:25 +01:00
Add ARDOUR::user_config_directory in new header ardour/filesystem_paths.h
git-svn-id: svn://localhost/ardour2/trunk@2041 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
0cab8ee556
commit
8d88671178
5 changed files with 92 additions and 0 deletions
|
|
@ -32,6 +32,7 @@ chan_count.cc
|
||||||
diskstream.cc
|
diskstream.cc
|
||||||
directory_names.cc
|
directory_names.cc
|
||||||
filename_extensions.cc
|
filename_extensions.cc
|
||||||
|
filesystem_paths.cc
|
||||||
find_session.cc
|
find_session.cc
|
||||||
template_utils.cc
|
template_utils.cc
|
||||||
track.cc
|
track.cc
|
||||||
|
|
|
||||||
|
|
@ -16,6 +16,7 @@ extern const char* const peak_dir_name;
|
||||||
extern const char* const export_dir_name;
|
extern const char* const export_dir_name;
|
||||||
extern const char* const templates_dir_name;
|
extern const char* const templates_dir_name;
|
||||||
extern const char* const surfaces_dir_name;
|
extern const char* const surfaces_dir_name;
|
||||||
|
extern const char* const user_config_dir_name;
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
37
libs/ardour/ardour/filesystem_paths.h
Normal file
37
libs/ardour/ardour/filesystem_paths.h
Normal file
|
|
@ -0,0 +1,37 @@
|
||||||
|
/*
|
||||||
|
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_FILESYSTEM_PATHS_INCLUDED
|
||||||
|
#define ARDOUR_FILESYSTEM_PATHS_INCLUDED
|
||||||
|
|
||||||
|
#include <pbd/filesystem.h>
|
||||||
|
|
||||||
|
namespace ARDOUR {
|
||||||
|
|
||||||
|
using namespace PBD;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return the path to the directory used to store user specific ardour
|
||||||
|
* configuration files.
|
||||||
|
*/
|
||||||
|
sys::path user_config_directory ();
|
||||||
|
|
||||||
|
} // namespace ARDOUR
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
@ -14,5 +14,6 @@ const char* const interchange_dir_name = X_("interchange");
|
||||||
const char* const export_dir_name = X_("export");
|
const char* const export_dir_name = X_("export");
|
||||||
const char* const templates_dir_name = X_("templates");
|
const char* const templates_dir_name = X_("templates");
|
||||||
const char* const surfaces_dir_name = X_("surfaces");
|
const char* const surfaces_dir_name = X_("surfaces");
|
||||||
|
const char* const user_config_dir_name = X_(".ardour2");
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
52
libs/ardour/filesystem_paths.cc
Normal file
52
libs/ardour/filesystem_paths.cc
Normal file
|
|
@ -0,0 +1,52 @@
|
||||||
|
/*
|
||||||
|
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.
|
||||||
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <pbd/error.h>
|
||||||
|
|
||||||
|
#include <glibmm/miscutils.h>
|
||||||
|
|
||||||
|
#include <ardour/directory_names.h>
|
||||||
|
#include <ardour/filesystem_paths.h>
|
||||||
|
|
||||||
|
namespace ARDOUR {
|
||||||
|
|
||||||
|
using std::string;
|
||||||
|
|
||||||
|
sys::path
|
||||||
|
user_config_directory ()
|
||||||
|
{
|
||||||
|
const string home_dir = Glib::get_home_dir ();
|
||||||
|
|
||||||
|
if (home_dir.empty ())
|
||||||
|
{
|
||||||
|
const string error_msg = "Unable to determine home directory";
|
||||||
|
|
||||||
|
// log the error
|
||||||
|
error << error_msg << endmsg;
|
||||||
|
|
||||||
|
throw sys::filesystem_error(error_msg);
|
||||||
|
}
|
||||||
|
|
||||||
|
sys::path p(home_dir);
|
||||||
|
p /= user_config_dir_name;
|
||||||
|
|
||||||
|
return p;
|
||||||
|
}
|
||||||
|
|
||||||
|
} // namespace ARDOUR
|
||||||
Loading…
Add table
Add a link
Reference in a new issue