Transfer 'export_formats_search_path()' into 'libs/ardour/search_paths.cc'
[ardour.git] / libs / ardour / search_paths.cc
1 /*
2     Copyright (C) 2011 Tim Mayberry 
3     Copyright (C) 2013 Paul Davis 
4
5     This program is free software; you can redistribute it and/or modify
6     it under the terms of the GNU General Public License as published by
7     the Free Software Foundation; either version 2 of the License, or
8     (at your option) any later version.
9
10     This program is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU General Public License for more details.
14
15     You should have received a copy of the GNU General Public License
16     along with this program; if not, write to the Free Software
17     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18
19 */
20
21 #include <glibmm/miscutils.h>
22
23 #include "ardour/search_paths.h"
24 #include "ardour/directory_names.h"
25 #include "ardour/filesystem_paths.h"
26
27 namespace {
28         const char * const backend_env_variable_name = "ARDOUR_BACKEND_PATH";
29         const char * const surfaces_env_variable_name = "ARDOUR_SURFACES_PATH";
30         const char * const export_env_variable_name = "ARDOUR_EXPORT_FORMATS_PATH";
31 } // anonymous
32
33 using namespace PBD;
34
35 namespace ARDOUR {
36
37 Searchpath
38 backend_search_path ()
39 {
40         Searchpath spath(user_config_directory ());
41         spath += ardour_dll_directory ();
42         spath.add_subdirectory_to_paths(backend_dir_name);
43
44         spath += Searchpath(Glib::getenv(backend_env_variable_name));
45         return spath;
46 }
47
48 Searchpath
49 control_protocol_search_path ()
50 {
51         Searchpath spath(user_config_directory ());
52         spath += ardour_dll_directory ();
53         spath.add_subdirectory_to_paths (surfaces_dir_name);
54         
55         spath += Searchpath(Glib::getenv(surfaces_env_variable_name));
56         return spath;
57 }
58
59 Searchpath
60 export_formats_search_path ()
61 {
62         Searchpath spath (ardour_data_search_path());
63         spath.add_subdirectory_to_paths (export_formats_dir_name);
64
65         bool export_formats_path_defined = false;
66         Searchpath spath_env (Glib::getenv(export_env_variable_name, export_formats_path_defined));
67
68         if (export_formats_path_defined) {
69                 spath += spath_env;
70         }
71
72         return spath;
73 }
74
75 } // namespace ARDOUR