Transfer 'control_protocol_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 } // anonymous
31
32 using namespace PBD;
33
34 namespace ARDOUR {
35
36 Searchpath
37 backend_search_path ()
38 {
39         Searchpath spath(user_config_directory ());
40         spath += ardour_dll_directory ();
41         spath.add_subdirectory_to_paths(backend_dir_name);
42
43         spath += Searchpath(Glib::getenv(backend_env_variable_name));
44         return spath;
45 }
46
47 Searchpath
48 control_protocol_search_path ()
49 {
50         Searchpath spath(user_config_directory ());
51         spath += ardour_dll_directory ();
52         spath.add_subdirectory_to_paths (surfaces_dir_name);
53         
54         spath += Searchpath(Glib::getenv(surfaces_env_variable_name));
55         return spath;
56 }
57
58 } // namespace ARDOUR