Transfer 'export_formats_search_path()' into 'libs/ardour/search_paths.cc'

This commit is contained in:
John Emmas 2014-03-10 14:20:45 +00:00
parent 75c55b0aa0
commit d1fd112bdf
5 changed files with 24 additions and 86 deletions

View file

@ -1,34 +0,0 @@
/*
Copyright (C) 2011 Paul Davis
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_export_formats_search_path_h__
#define __ardour_export_formats_search_path_h__
#include "pbd/search_path.h"
namespace ARDOUR {
/**
* return a Searchpath containing directories in which to look for
* export_formats.
*/
PBD::Searchpath export_formats_search_path ();
} // namespace ARDOUR
#endif /* __ardour_export_formats_search_path_h__ */

View file

@ -47,6 +47,12 @@ namespace ARDOUR {
*/ */
LIBARDOUR_API PBD::Searchpath control_protocol_search_path (); LIBARDOUR_API PBD::Searchpath control_protocol_search_path ();
/**
* return a Searchpath containing directories in which to look for
* export_formats.
*/
LIBARDOUR_API PBD::Searchpath export_formats_search_path ();
} // namespace ARDOUR } // namespace ARDOUR
#endif /* __libardour_search_paths_h__ */ #endif /* __libardour_search_paths_h__ */

View file

@ -1,51 +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.
*/
#include <iostream>
#include <glibmm/miscutils.h>
#include "ardour/export_formats_search_path.h"
#include "ardour/directory_names.h"
#include "ardour/filesystem_paths.h"
namespace {
const char * const export_env_variable_name = "ARDOUR_EXPORT_FORMATS_PATH";
} // anonymous
using namespace PBD;
namespace ARDOUR {
Searchpath
export_formats_search_path ()
{
Searchpath spath (ardour_data_search_path());
spath.add_subdirectory_to_paths (export_formats_dir_name);
bool export_formats_path_defined = false;
Searchpath spath_env (Glib::getenv(export_env_variable_name, export_formats_path_defined));
if (export_formats_path_defined) {
spath += spath_env;
}
return spath;
}
} // namespace ARDOUR

View file

@ -34,7 +34,7 @@
#include "ardour/export_profile_manager.h" #include "ardour/export_profile_manager.h"
#include "ardour/export_format_specification.h" #include "ardour/export_format_specification.h"
#include "ardour/export_formats_search_path.h" #include "ardour/search_paths.h"
#include "ardour/export_timespan.h" #include "ardour/export_timespan.h"
#include "ardour/export_channel_configuration.h" #include "ardour/export_channel_configuration.h"
#include "ardour/export_filename.h" #include "ardour/export_filename.h"

View file

@ -27,6 +27,7 @@
namespace { namespace {
const char * const backend_env_variable_name = "ARDOUR_BACKEND_PATH"; const char * const backend_env_variable_name = "ARDOUR_BACKEND_PATH";
const char * const surfaces_env_variable_name = "ARDOUR_SURFACES_PATH"; const char * const surfaces_env_variable_name = "ARDOUR_SURFACES_PATH";
const char * const export_env_variable_name = "ARDOUR_EXPORT_FORMATS_PATH";
} // anonymous } // anonymous
using namespace PBD; using namespace PBD;
@ -55,4 +56,20 @@ control_protocol_search_path ()
return spath; return spath;
} }
Searchpath
export_formats_search_path ()
{
Searchpath spath (ardour_data_search_path());
spath.add_subdirectory_to_paths (export_formats_dir_name);
bool export_formats_path_defined = false;
Searchpath spath_env (Glib::getenv(export_env_variable_name, export_formats_path_defined));
if (export_formats_path_defined) {
spath += spath_env;
}
return spath;
}
} // namespace ARDOUR } // namespace ARDOUR