c727b9b9ab5c4a6fd415ea2455ee5672ce251280
[ardour.git] / libs / ardour / vst_search_path.cc
1 /*
2     Copyright (C) 2008 John Emmas
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17 */
18
19 #include <glib.h>
20 #include <glibmm.h>
21 #include <string.h>
22
23 #include "ardour/vst_search_path.h"
24
25 #ifdef PLATFORM_WINDOWS
26
27 #include <windows.h>
28 #include <shlobj.h> // CSIDL_*
29 #include "pbd/windows_special_dirs.h"
30
31 namespace ARDOUR {
32
33 const char*
34 vst_search_path ()
35 {
36         DWORD dwType = REG_SZ;  
37         HKEY hKey;
38         DWORD dwSize = PATH_MAX;  
39         char* p = 0;
40         char* user_home = 0;
41         char tmp[PATH_MAX+1];
42
43         if (ERROR_SUCCESS == RegOpenKeyExA (HKEY_CURRENT_USER, "Software\\VST", 0, KEY_READ, &hKey)) {
44                 // Look for the user's VST Registry entry
45                 if (ERROR_SUCCESS == RegQueryValueExA (hKey, "VSTPluginsPath", 0, &dwType, (LPBYTE)tmp, &dwSize))
46                         p = g_build_filename (Glib::locale_to_utf8(tmp).c_str(), 0);
47
48                 RegCloseKey (hKey);
49         }
50
51         if (p == 0) {
52                 if (ERROR_SUCCESS == RegOpenKeyExA (HKEY_LOCAL_MACHINE, "Software\\VST", 0, KEY_READ, &hKey))
53                 {
54                         // Look for a global VST Registry entry
55                         if (ERROR_SUCCESS == RegQueryValueExA (hKey, "VSTPluginsPath", 0, &dwType, (LPBYTE)tmp, &dwSize))
56                                 p = g_build_filename (Glib::locale_to_utf8(tmp).c_str(), 0);
57
58                         RegCloseKey (hKey);
59                 }
60         }
61
62         if (p == 0) {
63                 char *pVSTx86 = 0;
64                 char *pProgFilesX86 = PBD::get_win_special_folder (CSIDL_PROGRAM_FILESX86);
65
66                 if (pProgFilesX86) {
67                         // Look for a VST folder under C:\Program Files (x86)
68                         if (pVSTx86 = g_build_filename (pProgFilesX86, "Steinberg", "VSTPlugins", 0))
69                         {
70                                 if (Glib::file_test (pVSTx86, Glib::FILE_TEST_EXISTS))
71                                         if (Glib::file_test (pVSTx86, Glib::FILE_TEST_IS_DIR))
72                                                 p = g_build_filename (pVSTx86, 0);
73
74                                 g_free (pVSTx86);
75                         }
76
77                         g_free (pProgFilesX86);
78                 }
79
80                 if (p == 0) {
81                         // Look for a VST folder under C:\Program Files
82                         char *pVST = 0;
83                         char *pProgFiles = PBD::get_win_special_folder (CSIDL_PROGRAM_FILES);
84
85                         if (pProgFiles) {
86                                 if (pVST = g_build_filename (pProgFiles, "Steinberg", "VSTPlugins", 0)) {
87                                         if (Glib::file_test (pVST, Glib::FILE_TEST_EXISTS))
88                                                 if (Glib::file_test (pVST, Glib::FILE_TEST_IS_DIR))
89                                                         p = g_build_filename (pVST, 0);
90
91                                         g_free (pVST);
92                                 }
93
94                                 g_free (pProgFiles);
95                         }
96                 }
97         }
98
99         if (p == 0) {
100                 // If all else failed, assume the plugins are under "My Documents"
101                 user_home = (char*) g_get_user_special_dir (G_USER_DIRECTORY_DOCUMENTS);
102                 if (user_home) {
103                         p = g_build_filename (user_home, "Plugins", "VST", 0);
104                 } else {
105                         user_home = g_build_filename(g_get_home_dir(), "My Documents", 0);
106                         if (user_home)
107                                 p = g_build_filename (user_home, "Plugins", "VST", 0);
108                 }
109         } else {
110                 // Concatenate the registry path with the user's personal path
111                 user_home = (char*) g_get_user_special_dir (G_USER_DIRECTORY_DOCUMENTS);
112
113                 if (user_home) {
114                         p = g_build_path (";", p, g_build_filename(user_home, "Plugins", "VST", 0), 0);
115                 } else {
116                         user_home = g_build_filename(g_get_home_dir(), "My Documents", 0);
117
118                         if (user_home) {
119                                 p = g_build_path (";", p, g_build_filename (user_home, "Plugins", "VST", 0), 0);
120                         }
121                 }
122         }
123
124         return p;
125 }
126
127 }  // namespace ARDOUR
128
129 #else 
130
131 /* Unix-like. Probably require some OS X specific breakdown if we ever add VST
132  * support on that platform.
133  */
134
135 namespace ARDOUR {
136
137 const char *
138 vst_search_path ()
139 {
140         return "/usr/local/lib/vst:/usr/lib/vst";
141 }
142
143 } // namespace ARDOUR
144
145 #endif /* PLATFORM_WINDOWS */
146