Guido van Rossum | 1aa7e3a | 1997-05-19 14:16:21 +0000 | [diff] [blame] | 1 | |
| 2 | /* Return the initial module search path. */ |
Guido van Rossum | c499572 | 1998-08-08 20:05:31 +0000 | [diff] [blame] | 3 | /* Used by DOS, OS/2, Windows 3.1, Windows 95/98, Windows NT. */ |
Guido van Rossum | 1aa7e3a | 1997-05-19 14:16:21 +0000 | [diff] [blame] | 4 | |
Guido van Rossum | 88716bb | 2000-03-30 19:45:39 +0000 | [diff] [blame] | 5 | /* ---------------------------------------------------------------- |
| 6 | PATH RULES FOR WINDOWS: |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 7 | This describes how sys.path is formed on Windows. It describes the |
| 8 | functionality, not the implementation (ie, the order in which these |
Guido van Rossum | 88716bb | 2000-03-30 19:45:39 +0000 | [diff] [blame] | 9 | are actually fetched is different) |
| 10 | |
| 11 | * Python always adds an empty entry at the start, which corresponds |
| 12 | to the current directory. |
| 13 | |
Georg Brandl | 7eb4b7d | 2005-07-22 21:49:32 +0000 | [diff] [blame] | 14 | * If the PYTHONPATH env. var. exists, its entries are added next. |
Guido van Rossum | 88716bb | 2000-03-30 19:45:39 +0000 | [diff] [blame] | 15 | |
| 16 | * We look in the registry for "application paths" - that is, sub-keys |
| 17 | under the main PythonPath registry key. These are added next (the |
| 18 | order of sub-key processing is undefined). |
| 19 | HKEY_CURRENT_USER is searched and added first. |
| 20 | HKEY_LOCAL_MACHINE is searched and added next. |
| 21 | (Note that all known installers only use HKLM, so HKCU is typically |
| 22 | empty) |
| 23 | |
| 24 | * We attempt to locate the "Python Home" - if the PYTHONHOME env var |
| 25 | is set, we believe it. Otherwise, we use the path of our host .EXE's |
Jeremy Hylton | 847a996 | 2000-05-26 21:49:07 +0000 | [diff] [blame] | 26 | to try and locate our "landmark" (lib\\os.py) and deduce our home. |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 27 | - If we DO have a Python Home: The relevant sub-directories (Lib, |
Georg Brandl | 6e47a33 | 2008-05-17 19:15:58 +0000 | [diff] [blame] | 28 | plat-win, etc) are based on the Python Home |
Guido van Rossum | 88716bb | 2000-03-30 19:45:39 +0000 | [diff] [blame] | 29 | - If we DO NOT have a Python Home, the core Python Path is |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 30 | loaded from the registry. This is the main PythonPath key, |
Guido van Rossum | 88716bb | 2000-03-30 19:45:39 +0000 | [diff] [blame] | 31 | and both HKLM and HKCU are combined to form the path) |
| 32 | |
| 33 | * Iff - we can not locate the Python Home, have not had a PYTHONPATH |
| 34 | specified, and can't locate any Registry entries (ie, we have _nothing_ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 35 | we can assume is a good path), a default path with relative entries is |
Guido van Rossum | 88716bb | 2000-03-30 19:45:39 +0000 | [diff] [blame] | 36 | used (eg. .\Lib;.\plat-win, etc) |
| 37 | |
| 38 | |
| 39 | The end result of all this is: |
| 40 | * When running python.exe, or any other .exe in the main Python directory |
| 41 | (either an installed version, or directly from the PCbuild directory), |
| 42 | the core path is deduced, and the core paths in the registry are |
| 43 | ignored. Other "application paths" in the registry are always read. |
| 44 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 45 | * When Python is hosted in another exe (different directory, embedded via |
Guido van Rossum | 88716bb | 2000-03-30 19:45:39 +0000 | [diff] [blame] | 46 | COM, etc), the Python Home will not be deduced, so the core path from |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 47 | the registry is used. Other "application paths" in the registry are |
Guido van Rossum | 88716bb | 2000-03-30 19:45:39 +0000 | [diff] [blame] | 48 | always read. |
| 49 | |
| 50 | * If Python can't find its home and there is no registry (eg, frozen |
| 51 | exe, some very strange installation setup) you get a path with |
| 52 | some default, but relative, paths. |
| 53 | |
Kristján Valur Jónsson | 3b69db2 | 2010-09-27 05:32:54 +0000 | [diff] [blame] | 54 | * An embedding application can use Py_SetPath() to override all of |
| 55 | these authomatic path computations. |
| 56 | |
Guido van Rossum | 88716bb | 2000-03-30 19:45:39 +0000 | [diff] [blame] | 57 | ---------------------------------------------------------------- */ |
| 58 | |
| 59 | |
Guido van Rossum | 1aa7e3a | 1997-05-19 14:16:21 +0000 | [diff] [blame] | 60 | #include "Python.h" |
| 61 | #include "osdefs.h" |
Martin v. Löwis | 790465f | 2008-04-05 20:41:37 +0000 | [diff] [blame] | 62 | #include <wchar.h> |
Guido van Rossum | 1aa7e3a | 1997-05-19 14:16:21 +0000 | [diff] [blame] | 63 | |
Martin v. Löwis | 6238d2b | 2002-06-30 15:26:10 +0000 | [diff] [blame] | 64 | #ifdef MS_WINDOWS |
Guido van Rossum | 8f1b651 | 1997-08-13 19:55:43 +0000 | [diff] [blame] | 65 | #include <windows.h> |
| 66 | #endif |
| 67 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 68 | #ifdef HAVE_SYS_TYPES_H |
Guido van Rossum | 1aa7e3a | 1997-05-19 14:16:21 +0000 | [diff] [blame] | 69 | #include <sys/types.h> |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 70 | #endif /* HAVE_SYS_TYPES_H */ |
| 71 | |
| 72 | #ifdef HAVE_SYS_STAT_H |
Guido van Rossum | 1aa7e3a | 1997-05-19 14:16:21 +0000 | [diff] [blame] | 73 | #include <sys/stat.h> |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 74 | #endif /* HAVE_SYS_STAT_H */ |
| 75 | |
Guido van Rossum | 1aa7e3a | 1997-05-19 14:16:21 +0000 | [diff] [blame] | 76 | #include <string.h> |
| 77 | |
Guido van Rossum | 1aa7e3a | 1997-05-19 14:16:21 +0000 | [diff] [blame] | 78 | /* Search in some common locations for the associated Python libraries. |
| 79 | * |
Guido van Rossum | 1aa7e3a | 1997-05-19 14:16:21 +0000 | [diff] [blame] | 80 | * Py_GetPath() tries to return a sensible Python module search path. |
| 81 | * |
Guido van Rossum | 42a9744 | 1998-02-19 21:00:45 +0000 | [diff] [blame] | 82 | * The approach is an adaptation for Windows of the strategy used in |
| 83 | * ../Modules/getpath.c; it uses the Windows Registry as one of its |
| 84 | * information sources. |
Kristján Valur Jónsson | 3b69db2 | 2010-09-27 05:32:54 +0000 | [diff] [blame] | 85 | * |
| 86 | * Py_SetPath() can be used to override this mechanism. Call Py_SetPath |
| 87 | * with a semicolon separated path prior to calling Py_Initialize. |
Guido van Rossum | 1aa7e3a | 1997-05-19 14:16:21 +0000 | [diff] [blame] | 88 | */ |
| 89 | |
| 90 | #ifndef LANDMARK |
Martin v. Löwis | 790465f | 2008-04-05 20:41:37 +0000 | [diff] [blame] | 91 | #define LANDMARK L"lib\\os.py" |
Guido van Rossum | 1aa7e3a | 1997-05-19 14:16:21 +0000 | [diff] [blame] | 92 | #endif |
| 93 | |
Martin v. Löwis | 790465f | 2008-04-05 20:41:37 +0000 | [diff] [blame] | 94 | static wchar_t prefix[MAXPATHLEN+1]; |
| 95 | static wchar_t progpath[MAXPATHLEN+1]; |
| 96 | static wchar_t dllpath[MAXPATHLEN+1]; |
| 97 | static wchar_t *module_search_path = NULL; |
Guido van Rossum | 1aa7e3a | 1997-05-19 14:16:21 +0000 | [diff] [blame] | 98 | |
Guido van Rossum | eea1449 | 1997-08-13 21:30:44 +0000 | [diff] [blame] | 99 | |
Guido van Rossum | 1aa7e3a | 1997-05-19 14:16:21 +0000 | [diff] [blame] | 100 | static int |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 101 | is_sep(wchar_t ch) /* determine if "ch" is a separator character */ |
Guido van Rossum | 1aa7e3a | 1997-05-19 14:16:21 +0000 | [diff] [blame] | 102 | { |
| 103 | #ifdef ALTSEP |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 104 | return ch == SEP || ch == ALTSEP; |
Guido van Rossum | 1aa7e3a | 1997-05-19 14:16:21 +0000 | [diff] [blame] | 105 | #else |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 106 | return ch == SEP; |
Guido van Rossum | 1aa7e3a | 1997-05-19 14:16:21 +0000 | [diff] [blame] | 107 | #endif |
| 108 | } |
| 109 | |
Mark Hammond | 8bf9e3b | 2000-10-07 11:10:50 +0000 | [diff] [blame] | 110 | /* assumes 'dir' null terminated in bounds. Never writes |
| 111 | beyond existing terminator. |
| 112 | */ |
Guido van Rossum | 1aa7e3a | 1997-05-19 14:16:21 +0000 | [diff] [blame] | 113 | static void |
Martin v. Löwis | 790465f | 2008-04-05 20:41:37 +0000 | [diff] [blame] | 114 | reduce(wchar_t *dir) |
Guido van Rossum | 1aa7e3a | 1997-05-19 14:16:21 +0000 | [diff] [blame] | 115 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 116 | size_t i = wcslen(dir); |
| 117 | while (i > 0 && !is_sep(dir[i])) |
| 118 | --i; |
| 119 | dir[i] = '\0'; |
Guido van Rossum | 1aa7e3a | 1997-05-19 14:16:21 +0000 | [diff] [blame] | 120 | } |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 121 | |
Guido van Rossum | 1aa7e3a | 1997-05-19 14:16:21 +0000 | [diff] [blame] | 122 | |
| 123 | static int |
Martin v. Löwis | 790465f | 2008-04-05 20:41:37 +0000 | [diff] [blame] | 124 | exists(wchar_t *filename) |
Guido van Rossum | 1aa7e3a | 1997-05-19 14:16:21 +0000 | [diff] [blame] | 125 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 126 | return GetFileAttributesW(filename) != 0xFFFFFFFF; |
Guido van Rossum | 1aa7e3a | 1997-05-19 14:16:21 +0000 | [diff] [blame] | 127 | } |
| 128 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 129 | /* Assumes 'filename' MAXPATHLEN+1 bytes long - |
Mark Hammond | 8bf9e3b | 2000-10-07 11:10:50 +0000 | [diff] [blame] | 130 | may extend 'filename' by one character. |
| 131 | */ |
Guido van Rossum | 43ff114 | 1998-08-08 23:40:40 +0000 | [diff] [blame] | 132 | static int |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 133 | ismodule(wchar_t *filename) /* Is module -- check for .pyc/.pyo too */ |
Guido van Rossum | 43ff114 | 1998-08-08 23:40:40 +0000 | [diff] [blame] | 134 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 135 | if (exists(filename)) |
| 136 | return 1; |
Guido van Rossum | 43ff114 | 1998-08-08 23:40:40 +0000 | [diff] [blame] | 137 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 138 | /* Check for the compiled version of prefix. */ |
| 139 | if (wcslen(filename) < MAXPATHLEN) { |
| 140 | wcscat(filename, Py_OptimizeFlag ? L"o" : L"c"); |
| 141 | if (exists(filename)) |
| 142 | return 1; |
| 143 | } |
| 144 | return 0; |
Guido van Rossum | 43ff114 | 1998-08-08 23:40:40 +0000 | [diff] [blame] | 145 | } |
| 146 | |
Tim Peters | 8484fbf | 2004-08-07 19:12:27 +0000 | [diff] [blame] | 147 | /* Add a path component, by appending stuff to buffer. |
| 148 | buffer must have at least MAXPATHLEN + 1 bytes allocated, and contain a |
| 149 | NUL-terminated string with no more than MAXPATHLEN characters (not counting |
| 150 | the trailing NUL). It's a fatal error if it contains a string longer than |
| 151 | that (callers must be careful!). If these requirements are met, it's |
| 152 | guaranteed that buffer will still be a NUL-terminated string with no more |
| 153 | than MAXPATHLEN characters at exit. If stuff is too long, only as much of |
| 154 | stuff as fits will be appended. |
| 155 | */ |
Guido van Rossum | 1aa7e3a | 1997-05-19 14:16:21 +0000 | [diff] [blame] | 156 | static void |
Martin v. Löwis | 790465f | 2008-04-05 20:41:37 +0000 | [diff] [blame] | 157 | join(wchar_t *buffer, wchar_t *stuff) |
Guido van Rossum | 1aa7e3a | 1997-05-19 14:16:21 +0000 | [diff] [blame] | 158 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 159 | size_t n, k; |
| 160 | if (is_sep(stuff[0])) |
| 161 | n = 0; |
| 162 | else { |
| 163 | n = wcslen(buffer); |
| 164 | if (n > 0 && !is_sep(buffer[n-1]) && n < MAXPATHLEN) |
| 165 | buffer[n++] = SEP; |
| 166 | } |
| 167 | if (n > MAXPATHLEN) |
| 168 | Py_FatalError("buffer overflow in getpathp.c's joinpath()"); |
| 169 | k = wcslen(stuff); |
| 170 | if (n + k > MAXPATHLEN) |
| 171 | k = MAXPATHLEN - n; |
| 172 | wcsncpy(buffer+n, stuff, k); |
| 173 | buffer[n+k] = '\0'; |
Guido van Rossum | 1aa7e3a | 1997-05-19 14:16:21 +0000 | [diff] [blame] | 174 | } |
| 175 | |
Mark Hammond | 8bf9e3b | 2000-10-07 11:10:50 +0000 | [diff] [blame] | 176 | /* gotlandmark only called by search_for_prefix, which ensures |
| 177 | 'prefix' is null terminated in bounds. join() ensures |
| 178 | 'landmark' can not overflow prefix if too long. |
| 179 | */ |
Guido van Rossum | 1aa7e3a | 1997-05-19 14:16:21 +0000 | [diff] [blame] | 180 | static int |
Martin v. Löwis | 790465f | 2008-04-05 20:41:37 +0000 | [diff] [blame] | 181 | gotlandmark(wchar_t *landmark) |
Guido van Rossum | e02e48b | 2000-03-29 01:49:47 +0000 | [diff] [blame] | 182 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 183 | int ok; |
| 184 | Py_ssize_t n; |
Guido van Rossum | e02e48b | 2000-03-29 01:49:47 +0000 | [diff] [blame] | 185 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 186 | n = wcslen(prefix); |
| 187 | join(prefix, landmark); |
| 188 | ok = ismodule(prefix); |
| 189 | prefix[n] = '\0'; |
| 190 | return ok; |
Guido van Rossum | e02e48b | 2000-03-29 01:49:47 +0000 | [diff] [blame] | 191 | } |
| 192 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 193 | /* assumes argv0_path is MAXPATHLEN+1 bytes long, already \0 term'd. |
Mark Hammond | 8bf9e3b | 2000-10-07 11:10:50 +0000 | [diff] [blame] | 194 | assumption provided by only caller, calculate_path() */ |
Guido van Rossum | e02e48b | 2000-03-29 01:49:47 +0000 | [diff] [blame] | 195 | static int |
Martin v. Löwis | 790465f | 2008-04-05 20:41:37 +0000 | [diff] [blame] | 196 | search_for_prefix(wchar_t *argv0_path, wchar_t *landmark) |
Guido van Rossum | 1aa7e3a | 1997-05-19 14:16:21 +0000 | [diff] [blame] | 197 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 198 | /* Search from argv0_path, until landmark is found */ |
| 199 | wcscpy(prefix, argv0_path); |
| 200 | do { |
| 201 | if (gotlandmark(landmark)) |
| 202 | return 1; |
| 203 | reduce(prefix); |
| 204 | } while (prefix[0]); |
| 205 | return 0; |
Guido van Rossum | 1aa7e3a | 1997-05-19 14:16:21 +0000 | [diff] [blame] | 206 | } |
| 207 | |
Martin v. Löwis | 6238d2b | 2002-06-30 15:26:10 +0000 | [diff] [blame] | 208 | #ifdef MS_WINDOWS |
Martin v. Löwis | bc186a8 | 2009-02-02 15:32:22 +0000 | [diff] [blame] | 209 | #ifdef Py_ENABLE_SHARED |
Guido van Rossum | 43ff114 | 1998-08-08 23:40:40 +0000 | [diff] [blame] | 210 | |
Guido van Rossum | 88716bb | 2000-03-30 19:45:39 +0000 | [diff] [blame] | 211 | /* a string loaded from the DLL at startup.*/ |
| 212 | extern const char *PyWin_DLLVersionString; |
Guido van Rossum | 271f977 | 1997-09-29 23:39:31 +0000 | [diff] [blame] | 213 | |
Guido van Rossum | eea1449 | 1997-08-13 21:30:44 +0000 | [diff] [blame] | 214 | |
| 215 | /* Load a PYTHONPATH value from the registry. |
| 216 | Load from either HKEY_LOCAL_MACHINE or HKEY_CURRENT_USER. |
| 217 | |
Guido van Rossum | 88716bb | 2000-03-30 19:45:39 +0000 | [diff] [blame] | 218 | Works in both Unicode and 8bit environments. Only uses the |
| 219 | Ex family of functions so it also works with Windows CE. |
| 220 | |
Guido van Rossum | eea1449 | 1997-08-13 21:30:44 +0000 | [diff] [blame] | 221 | Returns NULL, or a pointer that should be freed. |
Mark Hammond | 5edc627 | 2001-02-23 11:38:38 +0000 | [diff] [blame] | 222 | |
| 223 | XXX - this code is pretty strange, as it used to also |
| 224 | work on Win16, where the buffer sizes werent available |
| 225 | in advance. It could be simplied now Win16/Win32s is dead! |
Guido van Rossum | eea1449 | 1997-08-13 21:30:44 +0000 | [diff] [blame] | 226 | */ |
| 227 | |
Martin v. Löwis | 790465f | 2008-04-05 20:41:37 +0000 | [diff] [blame] | 228 | static wchar_t * |
Guido van Rossum | 88716bb | 2000-03-30 19:45:39 +0000 | [diff] [blame] | 229 | getpythonregpath(HKEY keyBase, int skipcore) |
Guido van Rossum | eea1449 | 1997-08-13 21:30:44 +0000 | [diff] [blame] | 230 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 231 | HKEY newKey = 0; |
| 232 | DWORD dataSize = 0; |
| 233 | DWORD numKeys = 0; |
| 234 | LONG rc; |
| 235 | wchar_t *retval = NULL; |
| 236 | WCHAR *dataBuf = NULL; |
| 237 | static const WCHAR keyPrefix[] = L"Software\\Python\\PythonCore\\"; |
| 238 | static const WCHAR keySuffix[] = L"\\PythonPath"; |
| 239 | size_t versionLen; |
| 240 | DWORD index; |
| 241 | WCHAR *keyBuf = NULL; |
| 242 | WCHAR *keyBufPtr; |
| 243 | WCHAR **ppPaths = NULL; |
Guido van Rossum | 271f977 | 1997-09-29 23:39:31 +0000 | [diff] [blame] | 244 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 245 | /* Tried to use sysget("winver") but here is too early :-( */ |
| 246 | versionLen = strlen(PyWin_DLLVersionString); |
| 247 | /* Space for all the chars, plus one \0 */ |
| 248 | keyBuf = keyBufPtr = malloc(sizeof(keyPrefix) + |
| 249 | sizeof(WCHAR)*(versionLen-1) + |
| 250 | sizeof(keySuffix)); |
| 251 | if (keyBuf==NULL) goto done; |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 252 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 253 | memcpy(keyBufPtr, keyPrefix, sizeof(keyPrefix)-sizeof(WCHAR)); |
| 254 | keyBufPtr += sizeof(keyPrefix)/sizeof(WCHAR) - 1; |
| 255 | mbstowcs(keyBufPtr, PyWin_DLLVersionString, versionLen); |
| 256 | keyBufPtr += versionLen; |
| 257 | /* NULL comes with this one! */ |
| 258 | memcpy(keyBufPtr, keySuffix, sizeof(keySuffix)); |
| 259 | /* Open the root Python key */ |
| 260 | rc=RegOpenKeyExW(keyBase, |
| 261 | keyBuf, /* subkey */ |
| 262 | 0, /* reserved */ |
| 263 | KEY_READ, |
| 264 | &newKey); |
| 265 | if (rc!=ERROR_SUCCESS) goto done; |
| 266 | /* Find out how big our core buffer is, and how many subkeys we have */ |
| 267 | rc = RegQueryInfoKey(newKey, NULL, NULL, NULL, &numKeys, NULL, NULL, |
| 268 | NULL, NULL, &dataSize, NULL, NULL); |
| 269 | if (rc!=ERROR_SUCCESS) goto done; |
| 270 | if (skipcore) dataSize = 0; /* Only count core ones if we want them! */ |
| 271 | /* Allocate a temp array of char buffers, so we only need to loop |
| 272 | reading the registry once |
| 273 | */ |
| 274 | ppPaths = malloc( sizeof(WCHAR *) * numKeys ); |
| 275 | if (ppPaths==NULL) goto done; |
| 276 | memset(ppPaths, 0, sizeof(WCHAR *) * numKeys); |
| 277 | /* Loop over all subkeys, allocating a temp sub-buffer. */ |
| 278 | for(index=0;index<numKeys;index++) { |
| 279 | WCHAR keyBuf[MAX_PATH+1]; |
| 280 | HKEY subKey = 0; |
| 281 | DWORD reqdSize = MAX_PATH+1; |
| 282 | /* Get the sub-key name */ |
| 283 | DWORD rc = RegEnumKeyExW(newKey, index, keyBuf, &reqdSize, |
| 284 | NULL, NULL, NULL, NULL ); |
| 285 | if (rc!=ERROR_SUCCESS) goto done; |
| 286 | /* Open the sub-key */ |
| 287 | rc=RegOpenKeyExW(newKey, |
| 288 | keyBuf, /* subkey */ |
| 289 | 0, /* reserved */ |
| 290 | KEY_READ, |
| 291 | &subKey); |
| 292 | if (rc!=ERROR_SUCCESS) goto done; |
| 293 | /* Find the value of the buffer size, malloc, then read it */ |
| 294 | RegQueryValueExW(subKey, NULL, 0, NULL, NULL, &reqdSize); |
| 295 | if (reqdSize) { |
| 296 | ppPaths[index] = malloc(reqdSize); |
| 297 | if (ppPaths[index]) { |
| 298 | RegQueryValueExW(subKey, NULL, 0, NULL, |
| 299 | (LPBYTE)ppPaths[index], |
| 300 | &reqdSize); |
| 301 | dataSize += reqdSize + 1; /* 1 for the ";" */ |
| 302 | } |
| 303 | } |
| 304 | RegCloseKey(subKey); |
| 305 | } |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 306 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 307 | /* return null if no path to return */ |
| 308 | if (dataSize == 0) goto done; |
| 309 | |
| 310 | /* original datasize from RegQueryInfo doesn't include the \0 */ |
| 311 | dataBuf = malloc((dataSize+1) * sizeof(WCHAR)); |
| 312 | if (dataBuf) { |
| 313 | WCHAR *szCur = dataBuf; |
| 314 | DWORD reqdSize = dataSize; |
| 315 | /* Copy our collected strings */ |
| 316 | for (index=0;index<numKeys;index++) { |
| 317 | if (index > 0) { |
| 318 | *(szCur++) = L';'; |
| 319 | dataSize--; |
| 320 | } |
| 321 | if (ppPaths[index]) { |
| 322 | Py_ssize_t len = wcslen(ppPaths[index]); |
| 323 | wcsncpy(szCur, ppPaths[index], len); |
| 324 | szCur += len; |
| 325 | assert(dataSize > (DWORD)len); |
| 326 | dataSize -= (DWORD)len; |
| 327 | } |
| 328 | } |
| 329 | if (skipcore) |
| 330 | *szCur = '\0'; |
| 331 | else { |
| 332 | /* If we have no values, we dont need a ';' */ |
| 333 | if (numKeys) { |
| 334 | *(szCur++) = L';'; |
| 335 | dataSize--; |
| 336 | } |
| 337 | /* Now append the core path entries - |
| 338 | this will include the NULL |
| 339 | */ |
| 340 | rc = RegQueryValueExW(newKey, NULL, 0, NULL, |
| 341 | (LPBYTE)szCur, &dataSize); |
| 342 | } |
| 343 | /* And set the result - caller must free */ |
| 344 | retval = dataBuf; |
| 345 | } |
Guido van Rossum | 88716bb | 2000-03-30 19:45:39 +0000 | [diff] [blame] | 346 | done: |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 347 | /* Loop freeing my temp buffers */ |
| 348 | if (ppPaths) { |
| 349 | for(index=0;index<numKeys;index++) |
| 350 | if (ppPaths[index]) free(ppPaths[index]); |
| 351 | free(ppPaths); |
| 352 | } |
| 353 | if (newKey) |
| 354 | RegCloseKey(newKey); |
| 355 | if (keyBuf) |
| 356 | free(keyBuf); |
| 357 | return retval; |
Guido van Rossum | eea1449 | 1997-08-13 21:30:44 +0000 | [diff] [blame] | 358 | } |
Martin v. Löwis | bc186a8 | 2009-02-02 15:32:22 +0000 | [diff] [blame] | 359 | #endif /* Py_ENABLE_SHARED */ |
Martin v. Löwis | 6238d2b | 2002-06-30 15:26:10 +0000 | [diff] [blame] | 360 | #endif /* MS_WINDOWS */ |
Guido van Rossum | eea1449 | 1997-08-13 21:30:44 +0000 | [diff] [blame] | 361 | |
Guido van Rossum | 1aa7e3a | 1997-05-19 14:16:21 +0000 | [diff] [blame] | 362 | static void |
Thomas Wouters | 7889010 | 2000-07-22 19:25:51 +0000 | [diff] [blame] | 363 | get_progpath(void) |
Guido van Rossum | 1aa7e3a | 1997-05-19 14:16:21 +0000 | [diff] [blame] | 364 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 365 | extern wchar_t *Py_GetProgramName(void); |
| 366 | wchar_t *path = _wgetenv(L"PATH"); |
| 367 | wchar_t *prog = Py_GetProgramName(); |
Guido van Rossum | 1aa7e3a | 1997-05-19 14:16:21 +0000 | [diff] [blame] | 368 | |
Martin v. Löwis | 6238d2b | 2002-06-30 15:26:10 +0000 | [diff] [blame] | 369 | #ifdef MS_WINDOWS |
Martin v. Löwis | bc186a8 | 2009-02-02 15:32:22 +0000 | [diff] [blame] | 370 | #ifdef Py_ENABLE_SHARED |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 371 | extern HANDLE PyWin_DLLhModule; |
| 372 | /* static init of progpath ensures final char remains \0 */ |
| 373 | if (PyWin_DLLhModule) |
| 374 | if (!GetModuleFileNameW(PyWin_DLLhModule, dllpath, MAXPATHLEN)) |
| 375 | dllpath[0] = 0; |
Martin v. Löwis | bc186a8 | 2009-02-02 15:32:22 +0000 | [diff] [blame] | 376 | #else |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 377 | dllpath[0] = 0; |
Martin v. Löwis | bc186a8 | 2009-02-02 15:32:22 +0000 | [diff] [blame] | 378 | #endif |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 379 | if (GetModuleFileNameW(NULL, progpath, MAXPATHLEN)) |
| 380 | return; |
Guido van Rossum | eea1449 | 1997-08-13 21:30:44 +0000 | [diff] [blame] | 381 | #endif |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 382 | if (prog == NULL || *prog == '\0') |
| 383 | prog = L"python"; |
Guido van Rossum | eea1449 | 1997-08-13 21:30:44 +0000 | [diff] [blame] | 384 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 385 | /* If there is no slash in the argv0 path, then we have to |
| 386 | * assume python is on the user's $PATH, since there's no |
| 387 | * other way to find a directory to start the search from. If |
| 388 | * $PATH isn't exported, you lose. |
| 389 | */ |
Guido van Rossum | 1aa7e3a | 1997-05-19 14:16:21 +0000 | [diff] [blame] | 390 | #ifdef ALTSEP |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 391 | if (wcschr(prog, SEP) || wcschr(prog, ALTSEP)) |
Guido van Rossum | 1aa7e3a | 1997-05-19 14:16:21 +0000 | [diff] [blame] | 392 | #else |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 393 | if (wcschr(prog, SEP)) |
Guido van Rossum | 1aa7e3a | 1997-05-19 14:16:21 +0000 | [diff] [blame] | 394 | #endif |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 395 | wcsncpy(progpath, prog, MAXPATHLEN); |
| 396 | else if (path) { |
| 397 | while (1) { |
| 398 | wchar_t *delim = wcschr(path, DELIM); |
Guido van Rossum | 1aa7e3a | 1997-05-19 14:16:21 +0000 | [diff] [blame] | 399 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 400 | if (delim) { |
| 401 | size_t len = delim - path; |
| 402 | /* ensure we can't overwrite buffer */ |
| 403 | len = min(MAXPATHLEN,len); |
| 404 | wcsncpy(progpath, path, len); |
| 405 | *(progpath + len) = '\0'; |
| 406 | } |
| 407 | else |
| 408 | wcsncpy(progpath, path, MAXPATHLEN); |
Guido van Rossum | 1aa7e3a | 1997-05-19 14:16:21 +0000 | [diff] [blame] | 409 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 410 | /* join() is safe for MAXPATHLEN+1 size buffer */ |
| 411 | join(progpath, prog); |
| 412 | if (exists(progpath)) |
| 413 | break; |
Guido van Rossum | 1aa7e3a | 1997-05-19 14:16:21 +0000 | [diff] [blame] | 414 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 415 | if (!delim) { |
| 416 | progpath[0] = '\0'; |
| 417 | break; |
| 418 | } |
| 419 | path = delim + 1; |
| 420 | } |
| 421 | } |
| 422 | else |
| 423 | progpath[0] = '\0'; |
Guido van Rossum | 1aa7e3a | 1997-05-19 14:16:21 +0000 | [diff] [blame] | 424 | } |
| 425 | |
| 426 | static void |
Thomas Wouters | 7889010 | 2000-07-22 19:25:51 +0000 | [diff] [blame] | 427 | calculate_path(void) |
Guido van Rossum | 1aa7e3a | 1997-05-19 14:16:21 +0000 | [diff] [blame] | 428 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 429 | wchar_t argv0_path[MAXPATHLEN+1]; |
| 430 | wchar_t *buf; |
| 431 | size_t bufsz; |
| 432 | wchar_t *pythonhome = Py_GetPythonHome(); |
| 433 | wchar_t *envpath = NULL; |
Guido van Rossum | eea1449 | 1997-08-13 21:30:44 +0000 | [diff] [blame] | 434 | |
Martin v. Löwis | 6238d2b | 2002-06-30 15:26:10 +0000 | [diff] [blame] | 435 | #ifdef MS_WINDOWS |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 436 | int skiphome, skipdefault; |
| 437 | wchar_t *machinepath = NULL; |
| 438 | wchar_t *userpath = NULL; |
| 439 | wchar_t zip_path[MAXPATHLEN+1]; |
| 440 | size_t len; |
Amaury Forgeot d'Arc | 66f8c43 | 2009-06-09 21:30:01 +0000 | [diff] [blame] | 441 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 442 | if (!Py_IgnoreEnvironmentFlag) { |
| 443 | envpath = _wgetenv(L"PYTHONPATH"); |
| 444 | } |
Amaury Forgeot d'Arc | 66f8c43 | 2009-06-09 21:30:01 +0000 | [diff] [blame] | 445 | #else |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 446 | char *_envpath = Py_GETENV("PYTHONPATH"); |
| 447 | wchar_t wenvpath[MAXPATHLEN+1]; |
| 448 | if (_envpath) { |
| 449 | size_t r = mbstowcs(wenvpath, _envpath, MAXPATHLEN+1); |
| 450 | envpath = wenvpath; |
| 451 | if (r == (size_t)-1 || r >= MAXPATHLEN) |
| 452 | envpath = NULL; |
| 453 | } |
Amaury Forgeot d'Arc | 66f8c43 | 2009-06-09 21:30:01 +0000 | [diff] [blame] | 454 | #endif |
Guido van Rossum | 1aa7e3a | 1997-05-19 14:16:21 +0000 | [diff] [blame] | 455 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 456 | get_progpath(); |
| 457 | /* progpath guaranteed \0 terminated in MAXPATH+1 bytes. */ |
| 458 | wcscpy(argv0_path, progpath); |
| 459 | reduce(argv0_path); |
| 460 | if (pythonhome == NULL || *pythonhome == '\0') { |
| 461 | if (search_for_prefix(argv0_path, LANDMARK)) |
| 462 | pythonhome = prefix; |
| 463 | else |
| 464 | pythonhome = NULL; |
| 465 | } |
| 466 | else |
| 467 | wcsncpy(prefix, pythonhome, MAXPATHLEN); |
Guido van Rossum | 1aa7e3a | 1997-05-19 14:16:21 +0000 | [diff] [blame] | 468 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 469 | if (envpath && *envpath == '\0') |
| 470 | envpath = NULL; |
Guido van Rossum | eea1449 | 1997-08-13 21:30:44 +0000 | [diff] [blame] | 471 | |
Guido van Rossum | e02e48b | 2000-03-29 01:49:47 +0000 | [diff] [blame] | 472 | |
Martin v. Löwis | 6238d2b | 2002-06-30 15:26:10 +0000 | [diff] [blame] | 473 | #ifdef MS_WINDOWS |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 474 | /* Calculate zip archive path */ |
| 475 | if (dllpath[0]) /* use name of python DLL */ |
| 476 | wcsncpy(zip_path, dllpath, MAXPATHLEN); |
| 477 | else /* use name of executable program */ |
| 478 | wcsncpy(zip_path, progpath, MAXPATHLEN); |
| 479 | zip_path[MAXPATHLEN] = '\0'; |
| 480 | len = wcslen(zip_path); |
| 481 | if (len > 4) { |
| 482 | zip_path[len-3] = 'z'; /* change ending to "zip" */ |
| 483 | zip_path[len-2] = 'i'; |
| 484 | zip_path[len-1] = 'p'; |
| 485 | } |
| 486 | else { |
| 487 | zip_path[0] = 0; |
| 488 | } |
| 489 | |
| 490 | skiphome = pythonhome==NULL ? 0 : 1; |
Martin v. Löwis | bc186a8 | 2009-02-02 15:32:22 +0000 | [diff] [blame] | 491 | #ifdef Py_ENABLE_SHARED |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 492 | machinepath = getpythonregpath(HKEY_LOCAL_MACHINE, skiphome); |
| 493 | userpath = getpythonregpath(HKEY_CURRENT_USER, skiphome); |
Martin v. Löwis | bc186a8 | 2009-02-02 15:32:22 +0000 | [diff] [blame] | 494 | #endif |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 495 | /* We only use the default relative PYTHONPATH if we havent |
| 496 | anything better to use! */ |
| 497 | skipdefault = envpath!=NULL || pythonhome!=NULL || \ |
| 498 | machinepath!=NULL || userpath!=NULL; |
Guido van Rossum | 43ff114 | 1998-08-08 23:40:40 +0000 | [diff] [blame] | 499 | #endif |
| 500 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 501 | /* We need to construct a path from the following parts. |
| 502 | (1) the PYTHONPATH environment variable, if set; |
| 503 | (2) for Win32, the zip archive file path; |
| 504 | (3) for Win32, the machinepath and userpath, if set; |
| 505 | (4) the PYTHONPATH config macro, with the leading "." |
| 506 | of each component replaced with pythonhome, if set; |
| 507 | (5) the directory containing the executable (argv0_path). |
| 508 | The length calculation calculates #4 first. |
| 509 | Extra rules: |
| 510 | - If PYTHONHOME is set (in any way) item (3) is ignored. |
| 511 | - If registry values are used, (4) and (5) are ignored. |
| 512 | */ |
Guido van Rossum | eea1449 | 1997-08-13 21:30:44 +0000 | [diff] [blame] | 513 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 514 | /* Calculate size of return buffer */ |
| 515 | if (pythonhome != NULL) { |
| 516 | wchar_t *p; |
| 517 | bufsz = 1; |
| 518 | for (p = PYTHONPATH; *p; p++) { |
| 519 | if (*p == DELIM) |
| 520 | bufsz++; /* number of DELIM plus one */ |
| 521 | } |
| 522 | bufsz *= wcslen(pythonhome); |
| 523 | } |
| 524 | else |
| 525 | bufsz = 0; |
| 526 | bufsz += wcslen(PYTHONPATH) + 1; |
| 527 | bufsz += wcslen(argv0_path) + 1; |
Martin v. Löwis | 6238d2b | 2002-06-30 15:26:10 +0000 | [diff] [blame] | 528 | #ifdef MS_WINDOWS |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 529 | if (userpath) |
| 530 | bufsz += wcslen(userpath) + 1; |
| 531 | if (machinepath) |
| 532 | bufsz += wcslen(machinepath) + 1; |
| 533 | bufsz += wcslen(zip_path) + 1; |
Guido van Rossum | eea1449 | 1997-08-13 21:30:44 +0000 | [diff] [blame] | 534 | #endif |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 535 | if (envpath != NULL) |
| 536 | bufsz += wcslen(envpath) + 1; |
Guido van Rossum | 1aa7e3a | 1997-05-19 14:16:21 +0000 | [diff] [blame] | 537 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 538 | module_search_path = buf = malloc(bufsz*sizeof(wchar_t)); |
| 539 | if (buf == NULL) { |
| 540 | /* We can't exit, so print a warning and limp along */ |
| 541 | fprintf(stderr, "Can't malloc dynamic PYTHONPATH.\n"); |
| 542 | if (envpath) { |
| 543 | fprintf(stderr, "Using environment $PYTHONPATH.\n"); |
| 544 | module_search_path = envpath; |
| 545 | } |
| 546 | else { |
| 547 | fprintf(stderr, "Using default static path.\n"); |
| 548 | module_search_path = PYTHONPATH; |
| 549 | } |
Martin v. Löwis | 6238d2b | 2002-06-30 15:26:10 +0000 | [diff] [blame] | 550 | #ifdef MS_WINDOWS |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 551 | if (machinepath) |
| 552 | free(machinepath); |
| 553 | if (userpath) |
| 554 | free(userpath); |
Martin v. Löwis | 6238d2b | 2002-06-30 15:26:10 +0000 | [diff] [blame] | 555 | #endif /* MS_WINDOWS */ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 556 | return; |
| 557 | } |
Guido van Rossum | eea1449 | 1997-08-13 21:30:44 +0000 | [diff] [blame] | 558 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 559 | if (envpath) { |
| 560 | wcscpy(buf, envpath); |
| 561 | buf = wcschr(buf, L'\0'); |
| 562 | *buf++ = DELIM; |
| 563 | } |
Martin v. Löwis | 6238d2b | 2002-06-30 15:26:10 +0000 | [diff] [blame] | 564 | #ifdef MS_WINDOWS |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 565 | if (zip_path[0]) { |
| 566 | wcscpy(buf, zip_path); |
| 567 | buf = wcschr(buf, L'\0'); |
| 568 | *buf++ = DELIM; |
| 569 | } |
| 570 | if (userpath) { |
| 571 | wcscpy(buf, userpath); |
| 572 | buf = wcschr(buf, L'\0'); |
| 573 | *buf++ = DELIM; |
| 574 | free(userpath); |
| 575 | } |
| 576 | if (machinepath) { |
| 577 | wcscpy(buf, machinepath); |
| 578 | buf = wcschr(buf, L'\0'); |
| 579 | *buf++ = DELIM; |
| 580 | free(machinepath); |
| 581 | } |
| 582 | if (pythonhome == NULL) { |
| 583 | if (!skipdefault) { |
| 584 | wcscpy(buf, PYTHONPATH); |
| 585 | buf = wcschr(buf, L'\0'); |
| 586 | } |
| 587 | } |
Guido van Rossum | 88716bb | 2000-03-30 19:45:39 +0000 | [diff] [blame] | 588 | #else |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 589 | if (pythonhome == NULL) { |
| 590 | wcscpy(buf, PYTHONPATH); |
| 591 | buf = wcschr(buf, L'\0'); |
| 592 | } |
Martin v. Löwis | 6238d2b | 2002-06-30 15:26:10 +0000 | [diff] [blame] | 593 | #endif /* MS_WINDOWS */ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 594 | else { |
| 595 | wchar_t *p = PYTHONPATH; |
| 596 | wchar_t *q; |
| 597 | size_t n; |
| 598 | for (;;) { |
| 599 | q = wcschr(p, DELIM); |
| 600 | if (q == NULL) |
| 601 | n = wcslen(p); |
| 602 | else |
| 603 | n = q-p; |
| 604 | if (p[0] == '.' && is_sep(p[1])) { |
| 605 | wcscpy(buf, pythonhome); |
| 606 | buf = wcschr(buf, L'\0'); |
| 607 | p++; |
| 608 | n--; |
| 609 | } |
| 610 | wcsncpy(buf, p, n); |
| 611 | buf += n; |
| 612 | if (q == NULL) |
| 613 | break; |
| 614 | *buf++ = DELIM; |
| 615 | p = q+1; |
| 616 | } |
| 617 | } |
| 618 | if (argv0_path) { |
| 619 | *buf++ = DELIM; |
| 620 | wcscpy(buf, argv0_path); |
| 621 | buf = wcschr(buf, L'\0'); |
| 622 | } |
| 623 | *buf = L'\0'; |
| 624 | /* Now to pull one last hack/trick. If sys.prefix is |
| 625 | empty, then try and find it somewhere on the paths |
| 626 | we calculated. We scan backwards, as our general policy |
| 627 | is that Python core directories are at the *end* of |
| 628 | sys.path. We assume that our "lib" directory is |
| 629 | on the path, and that our 'prefix' directory is |
| 630 | the parent of that. |
| 631 | */ |
| 632 | if (*prefix==L'\0') { |
| 633 | wchar_t lookBuf[MAXPATHLEN+1]; |
| 634 | wchar_t *look = buf - 1; /* 'buf' is at the end of the buffer */ |
| 635 | while (1) { |
| 636 | Py_ssize_t nchars; |
| 637 | wchar_t *lookEnd = look; |
| 638 | /* 'look' will end up one character before the |
| 639 | start of the path in question - even if this |
| 640 | is one character before the start of the buffer |
| 641 | */ |
| 642 | while (look >= module_search_path && *look != DELIM) |
| 643 | look--; |
| 644 | nchars = lookEnd-look; |
| 645 | wcsncpy(lookBuf, look+1, nchars); |
| 646 | lookBuf[nchars] = L'\0'; |
| 647 | /* Up one level to the parent */ |
| 648 | reduce(lookBuf); |
| 649 | if (search_for_prefix(lookBuf, LANDMARK)) { |
| 650 | break; |
| 651 | } |
| 652 | /* If we are out of paths to search - give up */ |
| 653 | if (look < module_search_path) |
| 654 | break; |
| 655 | look--; |
| 656 | } |
| 657 | } |
Guido van Rossum | 1aa7e3a | 1997-05-19 14:16:21 +0000 | [diff] [blame] | 658 | } |
| 659 | |
| 660 | |
| 661 | /* External interface */ |
| 662 | |
Kristján Valur Jónsson | 3b69db2 | 2010-09-27 05:32:54 +0000 | [diff] [blame] | 663 | void |
| 664 | Py_SetPath(const wchar_t *path) |
| 665 | { |
| 666 | if (module_search_path != NULL) { |
| 667 | free(module_search_path); |
| 668 | module_search_path = NULL; |
| 669 | } |
| 670 | if (path != NULL) { |
| 671 | extern wchar_t *Py_GetProgramName(void); |
| 672 | wchar_t *prog = Py_GetProgramName(); |
| 673 | wcsncpy(progpath, prog, MAXPATHLEN); |
| 674 | prefix[0] = L'\0'; |
| 675 | module_search_path = malloc((wcslen(path) + 1) * sizeof(wchar_t)); |
| 676 | if (module_search_path != NULL) |
| 677 | wcscpy(module_search_path, path); |
| 678 | } |
| 679 | } |
| 680 | |
Martin v. Löwis | 790465f | 2008-04-05 20:41:37 +0000 | [diff] [blame] | 681 | wchar_t * |
Thomas Wouters | 7889010 | 2000-07-22 19:25:51 +0000 | [diff] [blame] | 682 | Py_GetPath(void) |
Guido van Rossum | 1aa7e3a | 1997-05-19 14:16:21 +0000 | [diff] [blame] | 683 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 684 | if (!module_search_path) |
| 685 | calculate_path(); |
| 686 | return module_search_path; |
Guido van Rossum | 1aa7e3a | 1997-05-19 14:16:21 +0000 | [diff] [blame] | 687 | } |
| 688 | |
Martin v. Löwis | 790465f | 2008-04-05 20:41:37 +0000 | [diff] [blame] | 689 | wchar_t * |
Thomas Wouters | 7889010 | 2000-07-22 19:25:51 +0000 | [diff] [blame] | 690 | Py_GetPrefix(void) |
Guido van Rossum | 1aa7e3a | 1997-05-19 14:16:21 +0000 | [diff] [blame] | 691 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 692 | if (!module_search_path) |
| 693 | calculate_path(); |
| 694 | return prefix; |
Guido van Rossum | 1aa7e3a | 1997-05-19 14:16:21 +0000 | [diff] [blame] | 695 | } |
| 696 | |
Martin v. Löwis | 790465f | 2008-04-05 20:41:37 +0000 | [diff] [blame] | 697 | wchar_t * |
Thomas Wouters | 7889010 | 2000-07-22 19:25:51 +0000 | [diff] [blame] | 698 | Py_GetExecPrefix(void) |
Guido van Rossum | 1aa7e3a | 1997-05-19 14:16:21 +0000 | [diff] [blame] | 699 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 700 | return Py_GetPrefix(); |
Guido van Rossum | 1aa7e3a | 1997-05-19 14:16:21 +0000 | [diff] [blame] | 701 | } |
| 702 | |
Martin v. Löwis | 790465f | 2008-04-05 20:41:37 +0000 | [diff] [blame] | 703 | wchar_t * |
Thomas Wouters | 7889010 | 2000-07-22 19:25:51 +0000 | [diff] [blame] | 704 | Py_GetProgramFullPath(void) |
Guido van Rossum | 1aa7e3a | 1997-05-19 14:16:21 +0000 | [diff] [blame] | 705 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 706 | if (!module_search_path) |
| 707 | calculate_path(); |
| 708 | return progpath; |
Guido van Rossum | 1aa7e3a | 1997-05-19 14:16:21 +0000 | [diff] [blame] | 709 | } |
Martin v. Löwis | 4d0d471 | 2010-12-03 20:14:31 +0000 | [diff] [blame] | 710 | |
| 711 | /* Load python3.dll before loading any extension module that might refer |
| 712 | to it. That way, we can be sure that always the python3.dll corresponding |
| 713 | to this python DLL is loaded, not a python3.dll that might be on the path |
| 714 | by chance. |
| 715 | Return whether the DLL was found. |
| 716 | */ |
| 717 | static int python3_checked = 0; |
| 718 | static HANDLE hPython3; |
| 719 | int |
| 720 | _Py_CheckPython3() |
| 721 | { |
| 722 | wchar_t py3path[MAXPATHLEN+1]; |
| 723 | wchar_t *s; |
| 724 | if (python3_checked) |
| 725 | return hPython3 != NULL; |
| 726 | python3_checked = 1; |
| 727 | |
| 728 | /* If there is a python3.dll next to the python3y.dll, |
| 729 | assume this is a build tree; use that DLL */ |
| 730 | wcscpy(py3path, dllpath); |
| 731 | s = wcsrchr(py3path, L'\\'); |
| 732 | if (!s) |
| 733 | s = py3path; |
| 734 | wcscpy(s, L"\\python3.dll"); |
| 735 | hPython3 = LoadLibraryExW(py3path, NULL, LOAD_WITH_ALTERED_SEARCH_PATH); |
| 736 | if (hPython3 != NULL) |
| 737 | return 1; |
| 738 | |
| 739 | /* Check sys.prefix\DLLs\python3.dll */ |
| 740 | wcscpy(py3path, Py_GetPrefix()); |
| 741 | wcscat(py3path, L"\\DLLs\\python3.dll"); |
| 742 | hPython3 = LoadLibraryExW(py3path, NULL, LOAD_WITH_ALTERED_SEARCH_PATH); |
| 743 | return hPython3 != NULL; |
| 744 | } |