| 
									
										
										
										
											1997-05-19 14:16:21 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* Return the initial module search path. */ | 
					
						
							| 
									
										
										
										
											1998-08-08 20:05:31 +00:00
										 |  |  | /* Used by DOS, OS/2, Windows 3.1, Windows 95/98, Windows NT. */ | 
					
						
							| 
									
										
										
										
											1997-05-19 14:16:21 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-30 19:45:39 +00:00
										 |  |  | /* ----------------------------------------------------------------
 | 
					
						
							|  |  |  |    PATH RULES FOR WINDOWS: | 
					
						
							|  |  |  |    This describes how sys.path is formed on Windows.  It describes the  | 
					
						
							|  |  |  |    functionality, not the implementation (ie, the order in which these  | 
					
						
							|  |  |  |    are actually fetched is different) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    * Python always adds an empty entry at the start, which corresponds | 
					
						
							|  |  |  |      to the current directory. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-22 21:49:32 +00:00
										 |  |  |    * If the PYTHONPATH env. var. exists, its entries are added next. | 
					
						
							| 
									
										
										
										
											2000-03-30 19:45:39 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |    * We look in the registry for "application paths" - that is, sub-keys | 
					
						
							|  |  |  |      under the main PythonPath registry key.  These are added next (the | 
					
						
							|  |  |  |      order of sub-key processing is undefined). | 
					
						
							|  |  |  |      HKEY_CURRENT_USER is searched and added first. | 
					
						
							|  |  |  |      HKEY_LOCAL_MACHINE is searched and added next. | 
					
						
							|  |  |  |      (Note that all known installers only use HKLM, so HKCU is typically | 
					
						
							|  |  |  |      empty) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    * We attempt to locate the "Python Home" - if the PYTHONHOME env var | 
					
						
							|  |  |  |      is set, we believe it.  Otherwise, we use the path of our host .EXE's | 
					
						
							| 
									
										
										
										
											2000-05-26 21:49:07 +00:00
										 |  |  |      to try and locate our "landmark" (lib\\os.py) and deduce our home. | 
					
						
							| 
									
										
										
										
											2000-03-30 19:45:39 +00:00
										 |  |  |      - If we DO have a Python Home: The relevant sub-directories (Lib,  | 
					
						
							|  |  |  |        plat-win, lib-tk, etc) are based on the Python Home | 
					
						
							|  |  |  |      - If we DO NOT have a Python Home, the core Python Path is | 
					
						
							|  |  |  |        loaded from the registry.  This is the main PythonPath key,  | 
					
						
							|  |  |  |        and both HKLM and HKCU are combined to form the path) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    * Iff - we can not locate the Python Home, have not had a PYTHONPATH | 
					
						
							|  |  |  |      specified, and can't locate any Registry entries (ie, we have _nothing_ | 
					
						
							|  |  |  |      we can assume is a good path), a default path with relative entries is  | 
					
						
							|  |  |  |      used (eg. .\Lib;.\plat-win, etc) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   The end result of all this is: | 
					
						
							|  |  |  |   * When running python.exe, or any other .exe in the main Python directory | 
					
						
							|  |  |  |     (either an installed version, or directly from the PCbuild directory), | 
					
						
							|  |  |  |     the core path is deduced, and the core paths in the registry are | 
					
						
							|  |  |  |     ignored.  Other "application paths" in the registry are always read. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   * When Python is hosted in another exe (different directory, embedded via  | 
					
						
							|  |  |  |     COM, etc), the Python Home will not be deduced, so the core path from | 
					
						
							| 
									
										
										
										
											2001-09-07 14:08:01 +00:00
										 |  |  |     the registry is used.  Other "application paths" in the registry are  | 
					
						
							| 
									
										
										
										
											2000-03-30 19:45:39 +00:00
										 |  |  |     always read. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   * If Python can't find its home and there is no registry (eg, frozen | 
					
						
							|  |  |  |     exe, some very strange installation setup) you get a path with | 
					
						
							|  |  |  |     some default, but relative, paths. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    ---------------------------------------------------------------- */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-05-19 14:16:21 +00:00
										 |  |  | #include "Python.h"
 | 
					
						
							|  |  |  | #include "osdefs.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-06-30 15:26:10 +00:00
										 |  |  | #ifdef MS_WINDOWS
 | 
					
						
							| 
									
										
										
										
											1997-08-13 19:55:43 +00:00
										 |  |  | #include <windows.h>
 | 
					
						
							| 
									
										
										
										
											2000-03-30 19:45:39 +00:00
										 |  |  | #include <tchar.h>
 | 
					
						
							| 
									
										
										
										
											1997-08-13 19:55:43 +00:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-05-19 14:16:21 +00:00
										 |  |  | #include <sys/types.h>
 | 
					
						
							|  |  |  | #include <sys/stat.h>
 | 
					
						
							|  |  |  | #include <string.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Search in some common locations for the associated Python libraries.
 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Py_GetPath() tries to return a sensible Python module search path. | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											1998-02-19 21:00:45 +00:00
										 |  |  |  * The approach is an adaptation for Windows of the strategy used in | 
					
						
							|  |  |  |  * ../Modules/getpath.c; it uses the Windows Registry as one of its | 
					
						
							|  |  |  |  * information sources. | 
					
						
							| 
									
										
										
										
											1997-05-19 14:16:21 +00:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifndef LANDMARK
 | 
					
						
							| 
									
										
										
										
											2000-05-26 21:49:07 +00:00
										 |  |  | #define LANDMARK "lib\\os.py"
 | 
					
						
							| 
									
										
										
										
											1997-05-19 14:16:21 +00:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static char prefix[MAXPATHLEN+1]; | 
					
						
							|  |  |  | static char progpath[MAXPATHLEN+1]; | 
					
						
							| 
									
										
										
										
											2002-12-30 22:08:05 +00:00
										 |  |  | static char dllpath[MAXPATHLEN+1]; | 
					
						
							| 
									
										
										
										
											1997-05-19 14:16:21 +00:00
										 |  |  | static char *module_search_path = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-08-13 21:30:44 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-05-19 14:16:21 +00:00
										 |  |  | static int | 
					
						
							| 
									
										
										
										
											2000-07-22 19:25:51 +00:00
										 |  |  | is_sep(char ch)	/* determine if "ch" is a separator character */ | 
					
						
							| 
									
										
										
										
											1997-05-19 14:16:21 +00:00
										 |  |  | { | 
					
						
							|  |  |  | #ifdef ALTSEP
 | 
					
						
							|  |  |  | 	return ch == SEP || ch == ALTSEP; | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | 	return ch == SEP; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-10-07 11:10:50 +00:00
										 |  |  | /* assumes 'dir' null terminated in bounds.  Never writes
 | 
					
						
							|  |  |  |    beyond existing terminator. | 
					
						
							|  |  |  | */ | 
					
						
							| 
									
										
										
										
											1997-05-19 14:16:21 +00:00
										 |  |  | static void | 
					
						
							| 
									
										
										
										
											2000-07-22 19:25:51 +00:00
										 |  |  | reduce(char *dir) | 
					
						
							| 
									
										
										
										
											1997-05-19 14:16:21 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2000-06-28 22:20:06 +00:00
										 |  |  | 	size_t i = strlen(dir); | 
					
						
							| 
									
										
										
										
											1997-05-19 14:16:21 +00:00
										 |  |  | 	while (i > 0 && !is_sep(dir[i])) | 
					
						
							|  |  |  | 		--i; | 
					
						
							|  |  |  | 	dir[i] = '\0'; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int | 
					
						
							| 
									
										
										
										
											2000-07-22 19:25:51 +00:00
										 |  |  | exists(char *filename) | 
					
						
							| 
									
										
										
										
											1997-05-19 14:16:21 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct stat buf; | 
					
						
							|  |  |  | 	return stat(filename, &buf) == 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-10-07 11:10:50 +00:00
										 |  |  | /* Assumes 'filename' MAXPATHLEN+1 bytes long - 
 | 
					
						
							|  |  |  |    may extend 'filename' by one character. | 
					
						
							|  |  |  | */ | 
					
						
							| 
									
										
										
										
											1998-08-08 23:40:40 +00:00
										 |  |  | static int | 
					
						
							| 
									
										
										
										
											2000-07-22 19:25:51 +00:00
										 |  |  | ismodule(char *filename)	/* Is module -- check for .pyc/.pyo too */ | 
					
						
							| 
									
										
										
										
											1998-08-08 23:40:40 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	if (exists(filename)) | 
					
						
							|  |  |  | 		return 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Check for the compiled version of prefix. */ | 
					
						
							|  |  |  | 	if (strlen(filename) < MAXPATHLEN) { | 
					
						
							|  |  |  | 		strcat(filename, Py_OptimizeFlag ? "o" : "c"); | 
					
						
							|  |  |  | 		if (exists(filename)) | 
					
						
							|  |  |  | 			return 1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-08-07 19:12:27 +00:00
										 |  |  | /* Add a path component, by appending stuff to buffer.
 | 
					
						
							|  |  |  |    buffer must have at least MAXPATHLEN + 1 bytes allocated, and contain a | 
					
						
							|  |  |  |    NUL-terminated string with no more than MAXPATHLEN characters (not counting | 
					
						
							|  |  |  |    the trailing NUL).  It's a fatal error if it contains a string longer than | 
					
						
							|  |  |  |    that (callers must be careful!).  If these requirements are met, it's | 
					
						
							|  |  |  |    guaranteed that buffer will still be a NUL-terminated string with no more | 
					
						
							|  |  |  |    than MAXPATHLEN characters at exit.  If stuff is too long, only as much of | 
					
						
							|  |  |  |    stuff as fits will be appended. | 
					
						
							|  |  |  | */ | 
					
						
							| 
									
										
										
										
											1997-05-19 14:16:21 +00:00
										 |  |  | static void | 
					
						
							| 
									
										
										
										
											2000-07-22 19:25:51 +00:00
										 |  |  | join(char *buffer, char *stuff) | 
					
						
							| 
									
										
										
										
											1997-05-19 14:16:21 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2000-06-28 22:20:06 +00:00
										 |  |  | 	size_t n, k; | 
					
						
							| 
									
										
										
										
											1997-05-19 14:16:21 +00:00
										 |  |  | 	if (is_sep(stuff[0])) | 
					
						
							|  |  |  | 		n = 0; | 
					
						
							|  |  |  | 	else { | 
					
						
							|  |  |  | 		n = strlen(buffer); | 
					
						
							|  |  |  | 		if (n > 0 && !is_sep(buffer[n-1]) && n < MAXPATHLEN) | 
					
						
							|  |  |  | 			buffer[n++] = SEP; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2004-08-07 19:12:27 +00:00
										 |  |  | 	if (n > MAXPATHLEN) | 
					
						
							|  |  |  | 		Py_FatalError("buffer overflow in getpathp.c's joinpath()"); | 
					
						
							| 
									
										
										
										
											1997-05-19 14:16:21 +00:00
										 |  |  | 	k = strlen(stuff); | 
					
						
							|  |  |  | 	if (n + k > MAXPATHLEN) | 
					
						
							|  |  |  | 		k = MAXPATHLEN - n; | 
					
						
							|  |  |  | 	strncpy(buffer+n, stuff, k); | 
					
						
							|  |  |  | 	buffer[n+k] = '\0'; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-10-07 11:10:50 +00:00
										 |  |  | /* gotlandmark only called by search_for_prefix, which ensures
 | 
					
						
							|  |  |  |    'prefix' is null terminated in bounds.  join() ensures | 
					
						
							|  |  |  |    'landmark' can not overflow prefix if too long. | 
					
						
							|  |  |  | */ | 
					
						
							| 
									
										
										
										
											2000-03-29 01:49:47 +00:00
										 |  |  | static int | 
					
						
							| 
									
										
										
										
											2000-07-22 19:25:51 +00:00
										 |  |  | gotlandmark(char *landmark) | 
					
						
							| 
									
										
										
										
											2000-03-29 01:49:47 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	int n, ok; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	n = strlen(prefix); | 
					
						
							|  |  |  | 	join(prefix, landmark); | 
					
						
							|  |  |  | 	ok = ismodule(prefix); | 
					
						
							|  |  |  | 	prefix[n] = '\0'; | 
					
						
							|  |  |  | 	return ok; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-10-07 11:10:50 +00:00
										 |  |  | /* assumes argv0_path is MAXPATHLEN+1 bytes long, already \0 term'd. 
 | 
					
						
							|  |  |  |    assumption provided by only caller, calculate_path() */ | 
					
						
							| 
									
										
										
										
											1997-05-19 14:16:21 +00:00
										 |  |  | static int | 
					
						
							| 
									
										
										
										
											2000-07-22 19:25:51 +00:00
										 |  |  | search_for_prefix(char *argv0_path, char *landmark) | 
					
						
							| 
									
										
										
										
											1997-05-19 14:16:21 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2000-03-29 01:49:47 +00:00
										 |  |  | 	/* Search from argv0_path, until landmark is found */ | 
					
						
							| 
									
										
										
										
											1997-05-19 14:16:21 +00:00
										 |  |  | 	strcpy(prefix, argv0_path); | 
					
						
							|  |  |  | 	do { | 
					
						
							| 
									
										
										
										
											2000-03-29 01:49:47 +00:00
										 |  |  | 		if (gotlandmark(landmark)) | 
					
						
							| 
									
										
										
										
											1997-05-19 14:16:21 +00:00
										 |  |  | 			return 1; | 
					
						
							|  |  |  | 		reduce(prefix); | 
					
						
							|  |  |  | 	} while (prefix[0]); | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-06-30 15:26:10 +00:00
										 |  |  | #ifdef MS_WINDOWS
 | 
					
						
							| 
									
										
										
										
											1998-08-08 23:40:40 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-30 19:45:39 +00:00
										 |  |  | /* a string loaded from the DLL at startup.*/ | 
					
						
							|  |  |  | extern const char *PyWin_DLLVersionString; | 
					
						
							| 
									
										
										
										
											1997-09-29 23:39:31 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-08-13 21:30:44 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* Load a PYTHONPATH value from the registry.
 | 
					
						
							|  |  |  |    Load from either HKEY_LOCAL_MACHINE or HKEY_CURRENT_USER. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-30 19:45:39 +00:00
										 |  |  |    Works in both Unicode and 8bit environments.  Only uses the | 
					
						
							|  |  |  |    Ex family of functions so it also works with Windows CE. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-08-13 21:30:44 +00:00
										 |  |  |    Returns NULL, or a pointer that should be freed. | 
					
						
							| 
									
										
										
										
											2001-02-23 11:38:38 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |    XXX - this code is pretty strange, as it used to also | 
					
						
							|  |  |  |    work on Win16, where the buffer sizes werent available | 
					
						
							|  |  |  |    in advance.  It could be simplied now Win16/Win32s is dead! | 
					
						
							| 
									
										
										
										
											1997-08-13 21:30:44 +00:00
										 |  |  | */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static char * | 
					
						
							| 
									
										
										
										
											2000-03-30 19:45:39 +00:00
										 |  |  | getpythonregpath(HKEY keyBase, int skipcore) | 
					
						
							| 
									
										
										
										
											1997-08-13 21:30:44 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	HKEY newKey = 0; | 
					
						
							|  |  |  | 	DWORD dataSize = 0; | 
					
						
							| 
									
										
										
										
											2000-03-30 19:45:39 +00:00
										 |  |  | 	DWORD numKeys = 0; | 
					
						
							| 
									
										
										
										
											1997-08-13 21:30:44 +00:00
										 |  |  | 	LONG rc; | 
					
						
							|  |  |  | 	char *retval = NULL; | 
					
						
							| 
									
										
										
										
											2000-03-30 19:45:39 +00:00
										 |  |  | 	TCHAR *dataBuf = NULL; | 
					
						
							|  |  |  | 	static const TCHAR keyPrefix[] = _T("Software\\Python\\PythonCore\\"); | 
					
						
							|  |  |  | 	static const TCHAR keySuffix[] = _T("\\PythonPath"); | 
					
						
							| 
									
										
										
										
											2000-06-28 22:20:06 +00:00
										 |  |  | 	size_t versionLen; | 
					
						
							| 
									
										
										
										
											2000-03-30 19:45:39 +00:00
										 |  |  | 	DWORD index; | 
					
						
							|  |  |  | 	TCHAR *keyBuf = NULL; | 
					
						
							|  |  |  | 	TCHAR *keyBufPtr; | 
					
						
							|  |  |  | 	TCHAR **ppPaths = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Tried to use sysget("winver") but here is too early :-( */ | 
					
						
							|  |  |  | 	versionLen = _tcslen(PyWin_DLLVersionString); | 
					
						
							|  |  |  | 	/* Space for all the chars, plus one \0 */ | 
					
						
							|  |  |  | 	keyBuf = keyBufPtr = malloc(sizeof(keyPrefix) +  | 
					
						
							|  |  |  | 		                    sizeof(TCHAR)*(versionLen-1) +  | 
					
						
							|  |  |  | 				    sizeof(keySuffix)); | 
					
						
							|  |  |  | 	if (keyBuf==NULL) goto done; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	memcpy(keyBufPtr, keyPrefix, sizeof(keyPrefix)-sizeof(TCHAR)); | 
					
						
							|  |  |  | 	keyBufPtr += sizeof(keyPrefix)/sizeof(TCHAR) - 1; | 
					
						
							|  |  |  | 	memcpy(keyBufPtr, PyWin_DLLVersionString, versionLen * sizeof(TCHAR)); | 
					
						
							|  |  |  | 	keyBufPtr += versionLen; | 
					
						
							|  |  |  | 	/* NULL comes with this one! */ | 
					
						
							|  |  |  | 	memcpy(keyBufPtr, keySuffix, sizeof(keySuffix)); | 
					
						
							|  |  |  | 	/* Open the root Python key */ | 
					
						
							|  |  |  | 	rc=RegOpenKeyEx(keyBase, | 
					
						
							|  |  |  | 	                keyBuf, /* subkey */ | 
					
						
							|  |  |  | 	                0, /* reserved */ | 
					
						
							|  |  |  | 	                KEY_READ, | 
					
						
							|  |  |  | 	                &newKey); | 
					
						
							|  |  |  | 	if (rc!=ERROR_SUCCESS) goto done; | 
					
						
							|  |  |  | 	/* Find out how big our core buffer is, and how many subkeys we have */ | 
					
						
							|  |  |  | 	rc = RegQueryInfoKey(newKey, NULL, NULL, NULL, &numKeys, NULL, NULL,  | 
					
						
							|  |  |  | 	                NULL, NULL, &dataSize, NULL, NULL); | 
					
						
							|  |  |  | 	if (rc!=ERROR_SUCCESS) goto done; | 
					
						
							|  |  |  | 	if (skipcore) dataSize = 0; /* Only count core ones if we want them! */ | 
					
						
							|  |  |  | 	/* Allocate a temp array of char buffers, so we only need to loop 
 | 
					
						
							|  |  |  | 	   reading the registry once | 
					
						
							|  |  |  | 	*/ | 
					
						
							|  |  |  | 	ppPaths = malloc( sizeof(TCHAR *) * numKeys ); | 
					
						
							|  |  |  | 	if (ppPaths==NULL) goto done; | 
					
						
							|  |  |  | 	memset(ppPaths, 0, sizeof(TCHAR *) * numKeys); | 
					
						
							|  |  |  | 	/* Loop over all subkeys, allocating a temp sub-buffer. */ | 
					
						
							|  |  |  | 	for(index=0;index<numKeys;index++) { | 
					
						
							|  |  |  | 		TCHAR keyBuf[MAX_PATH+1]; | 
					
						
							|  |  |  | 		HKEY subKey = 0; | 
					
						
							|  |  |  | 		DWORD reqdSize = MAX_PATH+1; | 
					
						
							|  |  |  | 		/* Get the sub-key name */ | 
					
						
							|  |  |  | 		DWORD rc = RegEnumKeyEx(newKey, index, keyBuf, &reqdSize, | 
					
						
							|  |  |  | 		                        NULL, NULL, NULL, NULL ); | 
					
						
							|  |  |  | 		if (rc!=ERROR_SUCCESS) goto done; | 
					
						
							|  |  |  | 		/* Open the sub-key */ | 
					
						
							|  |  |  | 		rc=RegOpenKeyEx(newKey, | 
					
						
							|  |  |  | 						keyBuf, /* subkey */ | 
					
						
							|  |  |  | 						0, /* reserved */ | 
					
						
							|  |  |  | 						KEY_READ, | 
					
						
							|  |  |  | 						&subKey); | 
					
						
							|  |  |  | 		if (rc!=ERROR_SUCCESS) goto done; | 
					
						
							|  |  |  | 		/* Find the value of the buffer size, malloc, then read it */ | 
					
						
							|  |  |  | 		RegQueryValueEx(subKey, NULL, 0, NULL, NULL, &reqdSize); | 
					
						
							|  |  |  | 		if (reqdSize) { | 
					
						
							|  |  |  | 			ppPaths[index] = malloc(reqdSize); | 
					
						
							|  |  |  | 			if (ppPaths[index]) { | 
					
						
							| 
									
										
										
										
											2000-09-10 09:14:53 +00:00
										 |  |  | 				RegQueryValueEx(subKey, NULL, 0, NULL,  | 
					
						
							|  |  |  | 				                (LPBYTE)ppPaths[index],  | 
					
						
							|  |  |  | 				                &reqdSize); | 
					
						
							| 
									
										
										
										
											2000-03-30 19:45:39 +00:00
										 |  |  | 				dataSize += reqdSize + 1; /* 1 for the ";" */ | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											1997-08-13 21:30:44 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2000-03-30 19:45:39 +00:00
										 |  |  | 		RegCloseKey(subKey); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2001-02-23 11:38:38 +00:00
										 |  |  | 	/* original datasize from RegQueryInfo doesn't include the \0 */ | 
					
						
							| 
									
										
										
										
											2000-03-30 19:45:39 +00:00
										 |  |  | 	dataBuf = malloc((dataSize+1) * sizeof(TCHAR)); | 
					
						
							|  |  |  | 	if (dataBuf) { | 
					
						
							|  |  |  | 		TCHAR *szCur = dataBuf; | 
					
						
							|  |  |  | 		DWORD reqdSize = dataSize; | 
					
						
							|  |  |  | 		/* Copy our collected strings */ | 
					
						
							|  |  |  | 		for (index=0;index<numKeys;index++) { | 
					
						
							|  |  |  | 			if (index > 0) { | 
					
						
							|  |  |  | 				*(szCur++) = _T(';'); | 
					
						
							| 
									
										
										
										
											1997-08-13 21:30:44 +00:00
										 |  |  | 				dataSize--; | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2000-09-10 09:14:53 +00:00
										 |  |  | 			if (ppPaths[index]) { | 
					
						
							|  |  |  | 				int len = _tcslen(ppPaths[index]); | 
					
						
							|  |  |  | 				_tcsncpy(szCur, ppPaths[index], len); | 
					
						
							|  |  |  | 				szCur += len; | 
					
						
							|  |  |  | 				dataSize -= len; | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											1997-08-13 21:30:44 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2000-03-30 19:45:39 +00:00
										 |  |  | 		if (skipcore) | 
					
						
							|  |  |  | 			*szCur = '\0'; | 
					
						
							|  |  |  | 		else { | 
					
						
							| 
									
										
										
										
											2001-02-23 11:38:38 +00:00
										 |  |  | 			/* If we have no values, we dont need a ';' */ | 
					
						
							|  |  |  | 			if (numKeys) { | 
					
						
							|  |  |  | 				*(szCur++) = _T(';'); | 
					
						
							|  |  |  | 				dataSize--; | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2000-09-10 09:14:53 +00:00
										 |  |  | 			/* Now append the core path entries - 
 | 
					
						
							|  |  |  | 			   this will include the NULL  | 
					
						
							|  |  |  | 			*/ | 
					
						
							|  |  |  | 			rc = RegQueryValueEx(newKey, NULL, 0, NULL,  | 
					
						
							|  |  |  | 			                     (LPBYTE)szCur, &dataSize); | 
					
						
							| 
									
										
										
										
											1997-08-13 21:30:44 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2000-03-30 19:45:39 +00:00
										 |  |  | 		/* And set the result - caller must free 
 | 
					
						
							|  |  |  | 		   If MBCS, it is fine as is.  If Unicode, allocate new | 
					
						
							|  |  |  | 		   buffer and convert. | 
					
						
							|  |  |  | 		*/ | 
					
						
							|  |  |  | #ifdef UNICODE
 | 
					
						
							|  |  |  | 		retval = (char *)malloc(reqdSize+1); | 
					
						
							|  |  |  | 		if (retval) | 
					
						
							|  |  |  | 			WideCharToMultiByte(CP_ACP, 0,  | 
					
						
							|  |  |  | 					dataBuf, -1, /* source */  | 
					
						
							| 
									
										
										
										
											2003-01-29 22:38:29 +00:00
										 |  |  | 					retval, reqdSize+1, /* dest */ | 
					
						
							| 
									
										
										
										
											2000-03-30 19:45:39 +00:00
										 |  |  | 					NULL, NULL); | 
					
						
							|  |  |  | 		free(dataBuf); | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | 		retval = dataBuf; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | done: | 
					
						
							|  |  |  | 	/* Loop freeing my temp buffers */ | 
					
						
							|  |  |  | 	if (ppPaths) { | 
					
						
							|  |  |  | 		for(index=0;index<numKeys;index++) | 
					
						
							|  |  |  | 			if (ppPaths[index]) free(ppPaths[index]); | 
					
						
							|  |  |  | 		free(ppPaths); | 
					
						
							| 
									
										
										
										
											1997-08-13 21:30:44 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	if (newKey) | 
					
						
							|  |  |  | 		RegCloseKey(newKey); | 
					
						
							| 
									
										
										
										
											2000-03-30 19:45:39 +00:00
										 |  |  | 	if (keyBuf) | 
					
						
							|  |  |  | 		free(keyBuf); | 
					
						
							| 
									
										
										
										
											1997-08-13 21:30:44 +00:00
										 |  |  | 	return retval; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2002-06-30 15:26:10 +00:00
										 |  |  | #endif /* MS_WINDOWS */
 | 
					
						
							| 
									
										
										
										
											1997-08-13 21:30:44 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-05-19 14:16:21 +00:00
										 |  |  | static void | 
					
						
							| 
									
										
										
										
											2000-07-22 19:25:51 +00:00
										 |  |  | get_progpath(void) | 
					
						
							| 
									
										
										
										
											1997-05-19 14:16:21 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2000-07-22 23:59:33 +00:00
										 |  |  | 	extern char *Py_GetProgramName(void); | 
					
						
							| 
									
										
										
										
											1997-05-19 14:16:21 +00:00
										 |  |  | 	char *path = getenv("PATH"); | 
					
						
							|  |  |  | 	char *prog = Py_GetProgramName(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-06-30 15:26:10 +00:00
										 |  |  | #ifdef MS_WINDOWS
 | 
					
						
							| 
									
										
										
										
											2002-12-30 22:08:05 +00:00
										 |  |  | 	extern HANDLE PyWin_DLLhModule; | 
					
						
							| 
									
										
										
										
											2000-03-30 19:45:39 +00:00
										 |  |  | #ifdef UNICODE
 | 
					
						
							|  |  |  | 	WCHAR wprogpath[MAXPATHLEN+1]; | 
					
						
							| 
									
										
										
										
											2000-10-07 11:10:50 +00:00
										 |  |  | 	/* Windows documents that GetModuleFileName() will "truncate",
 | 
					
						
							|  |  |  | 	   but makes no mention of the null terminator.  Play it safe. | 
					
						
							|  |  |  | 	   PLUS Windows itself defines MAX_PATH as the same, but anyway... | 
					
						
							|  |  |  | 	*/ | 
					
						
							| 
									
										
										
										
											2002-07-22 13:28:21 +00:00
										 |  |  | 	wprogpath[MAXPATHLEN]=_T('\0'); | 
					
						
							| 
									
										
										
										
											2002-12-30 22:08:05 +00:00
										 |  |  | 	if (PyWin_DLLhModule && | 
					
						
							|  |  |  | 	    GetModuleFileName(PyWin_DLLhModule, wprogpath, MAXPATHLEN)) { | 
					
						
							|  |  |  | 		WideCharToMultiByte(CP_ACP, 0,  | 
					
						
							|  |  |  | 		                    wprogpath, -1,  | 
					
						
							|  |  |  | 		                    dllpath, MAXPATHLEN+1,  | 
					
						
							|  |  |  | 		                    NULL, NULL); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2003-08-18 17:53:33 +00:00
										 |  |  | 	wprogpath[MAXPATHLEN]=_T('\0'); | 
					
						
							| 
									
										
										
										
											2000-03-30 19:45:39 +00:00
										 |  |  | 	if (GetModuleFileName(NULL, wprogpath, MAXPATHLEN)) { | 
					
						
							| 
									
										
										
										
											2000-10-07 11:10:50 +00:00
										 |  |  | 		WideCharToMultiByte(CP_ACP, 0,  | 
					
						
							|  |  |  | 		                    wprogpath, -1,  | 
					
						
							|  |  |  | 		                    progpath, MAXPATHLEN+1,  | 
					
						
							|  |  |  | 		                    NULL, NULL); | 
					
						
							| 
									
										
										
										
											2000-03-30 19:45:39 +00:00
										 |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2000-10-07 11:10:50 +00:00
										 |  |  | 	/* static init of progpath ensures final char remains \0 */ | 
					
						
							| 
									
										
										
										
											2002-12-30 22:08:05 +00:00
										 |  |  | 	if (PyWin_DLLhModule) | 
					
						
							|  |  |  | 		if (!GetModuleFileName(PyWin_DLLhModule, dllpath, MAXPATHLEN)) | 
					
						
							|  |  |  | 			dllpath[0] = 0; | 
					
						
							| 
									
										
										
										
											1997-08-13 21:30:44 +00:00
										 |  |  | 	if (GetModuleFileName(NULL, progpath, MAXPATHLEN)) | 
					
						
							|  |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2000-03-30 19:45:39 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											1997-08-13 21:30:44 +00:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 	if (prog == NULL || *prog == '\0') | 
					
						
							|  |  |  | 		prog = "python"; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-05-19 14:16:21 +00:00
										 |  |  | 	/* If there is no slash in the argv0 path, then we have to
 | 
					
						
							|  |  |  | 	 * assume python is on the user's $PATH, since there's no | 
					
						
							|  |  |  | 	 * other way to find a directory to start the search from.  If | 
					
						
							|  |  |  | 	 * $PATH isn't exported, you lose. | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | #ifdef ALTSEP
 | 
					
						
							|  |  |  | 	if (strchr(prog, SEP) || strchr(prog, ALTSEP)) | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | 	if (strchr(prog, SEP)) | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2000-10-07 11:10:50 +00:00
										 |  |  | 		strncpy(progpath, prog, MAXPATHLEN); | 
					
						
							| 
									
										
										
										
											1997-05-19 14:16:21 +00:00
										 |  |  | 	else if (path) { | 
					
						
							|  |  |  | 		while (1) { | 
					
						
							|  |  |  | 			char *delim = strchr(path, DELIM); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (delim) { | 
					
						
							| 
									
										
										
										
											2000-06-28 22:20:06 +00:00
										 |  |  | 				size_t len = delim - path; | 
					
						
							| 
									
										
										
										
											2000-10-07 11:10:50 +00:00
										 |  |  | 				/* ensure we can't overwrite buffer */ | 
					
						
							|  |  |  | 				len = min(MAXPATHLEN,len); | 
					
						
							| 
									
										
										
										
											1997-05-19 14:16:21 +00:00
										 |  |  | 				strncpy(progpath, path, len); | 
					
						
							|  |  |  | 				*(progpath + len) = '\0'; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			else | 
					
						
							| 
									
										
										
										
											2000-10-07 11:10:50 +00:00
										 |  |  | 				strncpy(progpath, path, MAXPATHLEN); | 
					
						
							| 
									
										
										
										
											1997-05-19 14:16:21 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-10-07 11:10:50 +00:00
										 |  |  | 			/* join() is safe for MAXPATHLEN+1 size buffer */ | 
					
						
							| 
									
										
										
										
											1997-05-19 14:16:21 +00:00
										 |  |  | 			join(progpath, prog); | 
					
						
							|  |  |  | 			if (exists(progpath)) | 
					
						
							|  |  |  | 				break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (!delim) { | 
					
						
							|  |  |  | 				progpath[0] = '\0'; | 
					
						
							|  |  |  | 				break; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			path = delim + 1; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		progpath[0] = '\0'; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void | 
					
						
							| 
									
										
										
										
											2000-07-22 19:25:51 +00:00
										 |  |  | calculate_path(void) | 
					
						
							| 
									
										
										
										
											1997-05-19 14:16:21 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	char argv0_path[MAXPATHLEN+1]; | 
					
						
							|  |  |  | 	char *buf; | 
					
						
							| 
									
										
										
										
											2000-06-28 22:20:06 +00:00
										 |  |  | 	size_t bufsz; | 
					
						
							| 
									
										
										
										
											1998-07-27 13:48:07 +00:00
										 |  |  | 	char *pythonhome = Py_GetPythonHome(); | 
					
						
							| 
									
										
										
										
											2001-07-23 16:30:27 +00:00
										 |  |  | 	char *envpath = Py_GETENV("PYTHONPATH"); | 
					
						
							| 
									
										
										
										
											1998-08-08 23:40:40 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-06-30 15:26:10 +00:00
										 |  |  | #ifdef MS_WINDOWS
 | 
					
						
							| 
									
										
										
										
											2000-03-30 19:45:39 +00:00
										 |  |  | 	int skiphome, skipdefault; | 
					
						
							| 
									
										
										
										
											1998-08-08 23:40:40 +00:00
										 |  |  | 	char *machinepath = NULL; | 
					
						
							|  |  |  | 	char *userpath = NULL; | 
					
						
							| 
									
										
										
										
											2002-12-30 22:08:05 +00:00
										 |  |  | 	char zip_path[MAXPATHLEN+1]; | 
					
						
							|  |  |  | 	size_t len; | 
					
						
							| 
									
										
										
										
											1997-08-13 21:30:44 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											1997-05-19 14:16:21 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	get_progpath(); | 
					
						
							| 
									
										
										
										
											2000-10-07 11:10:50 +00:00
										 |  |  | 	/* progpath guaranteed \0 terminated in MAXPATH+1 bytes. */ | 
					
						
							| 
									
										
										
										
											1997-05-19 14:16:21 +00:00
										 |  |  | 	strcpy(argv0_path, progpath); | 
					
						
							|  |  |  | 	reduce(argv0_path); | 
					
						
							| 
									
										
										
										
											1997-08-13 21:30:44 +00:00
										 |  |  | 	if (pythonhome == NULL || *pythonhome == '\0') { | 
					
						
							|  |  |  | 		if (search_for_prefix(argv0_path, LANDMARK)) | 
					
						
							|  |  |  | 			pythonhome = prefix; | 
					
						
							| 
									
										
										
										
											1998-08-08 23:40:40 +00:00
										 |  |  | 		else | 
					
						
							|  |  |  | 			pythonhome = NULL; | 
					
						
							| 
									
										
										
										
											1997-05-19 14:16:21 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											1997-08-13 21:30:44 +00:00
										 |  |  | 	else | 
					
						
							| 
									
										
										
										
											2000-10-07 11:10:50 +00:00
										 |  |  | 		strncpy(prefix, pythonhome, MAXPATHLEN); | 
					
						
							| 
									
										
										
										
											1997-08-13 21:30:44 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (envpath && *envpath == '\0') | 
					
						
							|  |  |  | 		envpath = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-29 01:49:47 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-06-30 15:26:10 +00:00
										 |  |  | #ifdef MS_WINDOWS
 | 
					
						
							| 
									
										
										
										
											2002-12-30 22:08:05 +00:00
										 |  |  | 	/* Calculate zip archive path */ | 
					
						
							|  |  |  | 	if (dllpath[0])		/* use name of python DLL */ | 
					
						
							|  |  |  | 		strncpy(zip_path, dllpath, MAXPATHLEN); | 
					
						
							|  |  |  | 	else			/* use name of executable program */ | 
					
						
							|  |  |  | 		strncpy(zip_path, progpath, MAXPATHLEN); | 
					
						
							| 
									
										
										
										
											2002-12-31 12:35:41 +00:00
										 |  |  | 	zip_path[MAXPATHLEN] = '\0'; | 
					
						
							| 
									
										
										
										
											2002-12-30 22:08:05 +00:00
										 |  |  | 	len = strlen(zip_path); | 
					
						
							|  |  |  | 	if (len > 4) { | 
					
						
							|  |  |  | 		zip_path[len-3] = 'z';	/* change ending to "zip" */ | 
					
						
							|  |  |  | 		zip_path[len-2] = 'i'; | 
					
						
							|  |  |  | 		zip_path[len-1] = 'p'; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	else { | 
					
						
							|  |  |  | 		zip_path[0] = 0; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  |   | 
					
						
							| 
									
										
										
										
											2000-03-30 19:45:39 +00:00
										 |  |  | 	skiphome = pythonhome==NULL ? 0 : 1; | 
					
						
							|  |  |  | 	machinepath = getpythonregpath(HKEY_LOCAL_MACHINE, skiphome); | 
					
						
							|  |  |  | 	userpath = getpythonregpath(HKEY_CURRENT_USER, skiphome); | 
					
						
							|  |  |  | 	/* We only use the default relative PYTHONPATH if we havent
 | 
					
						
							|  |  |  | 	   anything better to use! */ | 
					
						
							|  |  |  | 	skipdefault = envpath!=NULL || pythonhome!=NULL || \ | 
					
						
							|  |  |  | 		      machinepath!=NULL || userpath!=NULL; | 
					
						
							| 
									
										
										
										
											1998-08-08 23:40:40 +00:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* We need to construct a path from the following parts.
 | 
					
						
							| 
									
										
										
										
											1997-08-13 21:30:44 +00:00
										 |  |  | 	   (1) the PYTHONPATH environment variable, if set; | 
					
						
							| 
									
										
										
										
											2002-12-30 22:08:05 +00:00
										 |  |  | 	   (2) for Win32, the zip archive file path; | 
					
						
							|  |  |  | 	   (3) for Win32, the machinepath and userpath, if set; | 
					
						
							|  |  |  | 	   (4) the PYTHONPATH config macro, with the leading "." | 
					
						
							| 
									
										
										
										
											1997-08-13 21:30:44 +00:00
										 |  |  | 	       of each component replaced with pythonhome, if set; | 
					
						
							| 
									
										
										
										
											2002-12-30 22:08:05 +00:00
										 |  |  | 	   (5) the directory containing the executable (argv0_path). | 
					
						
							|  |  |  | 	   The length calculation calculates #4 first. | 
					
						
							| 
									
										
										
										
											1998-08-08 23:40:40 +00:00
										 |  |  | 	   Extra rules: | 
					
						
							| 
									
										
										
										
											2002-12-30 22:08:05 +00:00
										 |  |  | 	   - If PYTHONHOME is set (in any way) item (3) is ignored. | 
					
						
							|  |  |  | 	   - If registry values are used, (4) and (5) are ignored. | 
					
						
							| 
									
										
										
										
											1997-08-13 21:30:44 +00:00
										 |  |  | 	*/ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Calculate size of return buffer */ | 
					
						
							|  |  |  | 	if (pythonhome != NULL) { | 
					
						
							|  |  |  | 		char *p; | 
					
						
							|  |  |  | 		bufsz = 1;	 | 
					
						
							|  |  |  | 		for (p = PYTHONPATH; *p; p++) { | 
					
						
							|  |  |  | 			if (*p == DELIM) | 
					
						
							|  |  |  | 				bufsz++; /* number of DELIM plus one */ | 
					
						
							| 
									
										
										
										
											1997-05-19 14:16:21 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											1997-08-13 21:30:44 +00:00
										 |  |  | 		bufsz *= strlen(pythonhome); | 
					
						
							| 
									
										
										
										
											1997-05-19 14:16:21 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											1997-08-13 21:30:44 +00:00
										 |  |  | 	else | 
					
						
							|  |  |  | 		bufsz = 0; | 
					
						
							| 
									
										
										
										
											1997-12-11 02:32:43 +00:00
										 |  |  | 	bufsz += strlen(PYTHONPATH) + 1; | 
					
						
							| 
									
										
										
										
											1997-08-13 19:55:43 +00:00
										 |  |  | 	bufsz += strlen(argv0_path) + 1; | 
					
						
							| 
									
										
										
										
											2002-06-30 15:26:10 +00:00
										 |  |  | #ifdef MS_WINDOWS
 | 
					
						
							| 
									
										
										
										
											1997-08-13 21:30:44 +00:00
										 |  |  | 	if (userpath) | 
					
						
							|  |  |  | 		bufsz += strlen(userpath) + 1; | 
					
						
							| 
									
										
										
										
											1998-08-08 19:58:59 +00:00
										 |  |  | 	if (machinepath) | 
					
						
							|  |  |  | 		bufsz += strlen(machinepath) + 1; | 
					
						
							| 
									
										
										
										
											2002-12-30 22:08:05 +00:00
										 |  |  | 	bufsz += strlen(zip_path) + 1; | 
					
						
							| 
									
										
										
										
											1997-08-13 21:30:44 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											1998-08-08 19:58:59 +00:00
										 |  |  | 	if (envpath != NULL) | 
					
						
							|  |  |  | 		bufsz += strlen(envpath) + 1; | 
					
						
							| 
									
										
										
										
											1997-05-19 14:16:21 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	module_search_path = buf = malloc(bufsz); | 
					
						
							|  |  |  | 	if (buf == NULL) { | 
					
						
							|  |  |  | 		/* We can't exit, so print a warning and limp along */ | 
					
						
							| 
									
										
										
										
											1997-08-13 21:30:44 +00:00
										 |  |  | 		fprintf(stderr, "Can't malloc dynamic PYTHONPATH.\n"); | 
					
						
							|  |  |  | 		if (envpath) { | 
					
						
							| 
									
										
										
										
											2000-03-29 01:49:47 +00:00
										 |  |  | 			fprintf(stderr, "Using environment $PYTHONPATH.\n"); | 
					
						
							| 
									
										
										
										
											1997-08-13 21:30:44 +00:00
										 |  |  | 			module_search_path = envpath; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		else { | 
					
						
							| 
									
										
										
										
											2000-03-29 01:49:47 +00:00
										 |  |  | 			fprintf(stderr, "Using default static path.\n"); | 
					
						
							| 
									
										
										
										
											1997-08-13 21:30:44 +00:00
										 |  |  | 			module_search_path = PYTHONPATH; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2002-06-30 15:26:10 +00:00
										 |  |  | #ifdef MS_WINDOWS
 | 
					
						
							| 
									
										
										
										
											1998-02-19 21:00:45 +00:00
										 |  |  | 		if (machinepath) | 
					
						
							|  |  |  | 			free(machinepath); | 
					
						
							|  |  |  | 		if (userpath) | 
					
						
							|  |  |  | 			free(userpath); | 
					
						
							| 
									
										
										
										
											2002-06-30 15:26:10 +00:00
										 |  |  | #endif /* MS_WINDOWS */
 | 
					
						
							| 
									
										
										
										
											1997-05-19 14:16:21 +00:00
										 |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1997-08-13 21:30:44 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (envpath) { | 
					
						
							|  |  |  | 		strcpy(buf, envpath); | 
					
						
							|  |  |  | 		buf = strchr(buf, '\0'); | 
					
						
							|  |  |  | 		*buf++ = DELIM; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2002-06-30 15:26:10 +00:00
										 |  |  | #ifdef MS_WINDOWS
 | 
					
						
							| 
									
										
										
										
											2002-12-30 22:08:05 +00:00
										 |  |  | 	if (zip_path[0]) { | 
					
						
							|  |  |  | 		strcpy(buf, zip_path); | 
					
						
							|  |  |  | 		buf = strchr(buf, '\0'); | 
					
						
							|  |  |  | 		*buf++ = DELIM; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1998-08-08 19:58:59 +00:00
										 |  |  | 	if (userpath) { | 
					
						
							|  |  |  | 		strcpy(buf, userpath); | 
					
						
							|  |  |  | 		buf = strchr(buf, '\0'); | 
					
						
							|  |  |  | 		*buf++ = DELIM; | 
					
						
							|  |  |  | 		free(userpath); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1997-08-13 21:30:44 +00:00
										 |  |  | 	if (machinepath) { | 
					
						
							|  |  |  | 		strcpy(buf, machinepath); | 
					
						
							|  |  |  | 		buf = strchr(buf, '\0'); | 
					
						
							|  |  |  | 		*buf++ = DELIM; | 
					
						
							| 
									
										
										
										
											1998-02-19 21:00:45 +00:00
										 |  |  | 		free(machinepath); | 
					
						
							| 
									
										
										
										
											2000-03-29 01:49:47 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2000-03-30 19:45:39 +00:00
										 |  |  | 	if (pythonhome == NULL) { | 
					
						
							|  |  |  | 		if (!skipdefault) { | 
					
						
							|  |  |  | 			strcpy(buf, PYTHONPATH); | 
					
						
							|  |  |  | 			buf = strchr(buf, '\0'); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											1997-08-13 21:30:44 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2000-03-30 19:45:39 +00:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											1997-08-13 21:30:44 +00:00
										 |  |  | 	if (pythonhome == NULL) { | 
					
						
							|  |  |  | 		strcpy(buf, PYTHONPATH); | 
					
						
							|  |  |  | 		buf = strchr(buf, '\0'); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2002-06-30 15:26:10 +00:00
										 |  |  | #endif /* MS_WINDOWS */
 | 
					
						
							| 
									
										
										
										
											1997-08-13 21:30:44 +00:00
										 |  |  | 	else { | 
					
						
							|  |  |  | 		char *p = PYTHONPATH; | 
					
						
							|  |  |  | 		char *q; | 
					
						
							| 
									
										
										
										
											2000-06-28 22:20:06 +00:00
										 |  |  | 		size_t n; | 
					
						
							| 
									
										
										
										
											1997-08-13 21:30:44 +00:00
										 |  |  | 		for (;;) { | 
					
						
							|  |  |  | 			q = strchr(p, DELIM); | 
					
						
							|  |  |  | 			if (q == NULL) | 
					
						
							|  |  |  | 				n = strlen(p); | 
					
						
							|  |  |  | 			else | 
					
						
							|  |  |  | 				n = q-p; | 
					
						
							|  |  |  | 			if (p[0] == '.' && is_sep(p[1])) { | 
					
						
							|  |  |  | 				strcpy(buf, pythonhome); | 
					
						
							|  |  |  | 				buf = strchr(buf, '\0'); | 
					
						
							|  |  |  | 				p++; | 
					
						
							|  |  |  | 				n--; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			strncpy(buf, p, n); | 
					
						
							|  |  |  | 			buf += n; | 
					
						
							|  |  |  | 			if (q == NULL) | 
					
						
							|  |  |  | 				break; | 
					
						
							|  |  |  | 			*buf++ = DELIM; | 
					
						
							|  |  |  | 			p = q+1; | 
					
						
							| 
									
										
										
										
											1997-05-19 14:16:21 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1997-08-13 21:30:44 +00:00
										 |  |  | 	if (argv0_path) { | 
					
						
							|  |  |  | 		*buf++ = DELIM; | 
					
						
							|  |  |  | 		strcpy(buf, argv0_path); | 
					
						
							|  |  |  | 		buf = strchr(buf, '\0'); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1997-05-19 14:16:21 +00:00
										 |  |  | 	*buf = '\0'; | 
					
						
							| 
									
										
										
										
											2001-09-07 14:08:01 +00:00
										 |  |  | 	/* Now to pull one last hack/trick.  If sys.prefix is
 | 
					
						
							|  |  |  | 	   empty, then try and find it somewhere on the paths | 
					
						
							|  |  |  | 	   we calculated.  We scan backwards, as our general policy | 
					
						
							|  |  |  | 	   is that Python core directories are at the *end* of | 
					
						
							|  |  |  | 	   sys.path.  We assume that our "lib" directory is | 
					
						
							|  |  |  | 	   on the path, and that our 'prefix' directory is | 
					
						
							|  |  |  | 	   the parent of that. | 
					
						
							|  |  |  | 	*/ | 
					
						
							|  |  |  | 	if (*prefix=='\0') { | 
					
						
							|  |  |  | 		char lookBuf[MAXPATHLEN+1]; | 
					
						
							|  |  |  | 		char *look = buf - 1; /* 'buf' is at the end of the buffer */ | 
					
						
							|  |  |  | 		while (1) { | 
					
						
							|  |  |  | 			int nchars; | 
					
						
							|  |  |  | 			char *lookEnd = look; | 
					
						
							|  |  |  | 			/* 'look' will end up one character before the
 | 
					
						
							|  |  |  | 			   start of the path in question - even if this | 
					
						
							|  |  |  | 			   is one character before the start of the buffer | 
					
						
							|  |  |  | 			*/ | 
					
						
							|  |  |  | 			while (*look != DELIM && look >= module_search_path) | 
					
						
							|  |  |  | 				look--; | 
					
						
							|  |  |  | 			nchars = lookEnd-look; | 
					
						
							|  |  |  | 			strncpy(lookBuf, look+1, nchars); | 
					
						
							|  |  |  | 			lookBuf[nchars] = '\0'; | 
					
						
							|  |  |  | 			/* Up one level to the parent */ | 
					
						
							|  |  |  | 			reduce(lookBuf); | 
					
						
							|  |  |  | 			if (search_for_prefix(lookBuf, LANDMARK)) { | 
					
						
							|  |  |  | 				break; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			/* If we are out of paths to search - give up */ | 
					
						
							|  |  |  | 			if (look < module_search_path) | 
					
						
							|  |  |  | 				break; | 
					
						
							|  |  |  | 			look--; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1997-05-19 14:16:21 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* External interface */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | char * | 
					
						
							| 
									
										
										
										
											2000-07-22 19:25:51 +00:00
										 |  |  | Py_GetPath(void) | 
					
						
							| 
									
										
										
										
											1997-05-19 14:16:21 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	if (!module_search_path) | 
					
						
							|  |  |  | 		calculate_path(); | 
					
						
							|  |  |  | 	return module_search_path; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | char * | 
					
						
							| 
									
										
										
										
											2000-07-22 19:25:51 +00:00
										 |  |  | Py_GetPrefix(void) | 
					
						
							| 
									
										
										
										
											1997-05-19 14:16:21 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1997-08-13 21:30:44 +00:00
										 |  |  | 	if (!module_search_path) | 
					
						
							|  |  |  | 		calculate_path(); | 
					
						
							|  |  |  | 	return prefix; | 
					
						
							| 
									
										
										
										
											1997-05-19 14:16:21 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | char * | 
					
						
							| 
									
										
										
										
											2000-07-22 19:25:51 +00:00
										 |  |  | Py_GetExecPrefix(void) | 
					
						
							| 
									
										
										
										
											1997-05-19 14:16:21 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1997-08-13 21:30:44 +00:00
										 |  |  | 	return Py_GetPrefix(); | 
					
						
							| 
									
										
										
										
											1997-05-19 14:16:21 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | char * | 
					
						
							| 
									
										
										
										
											2000-07-22 19:25:51 +00:00
										 |  |  | Py_GetProgramFullPath(void) | 
					
						
							| 
									
										
										
										
											1997-05-19 14:16:21 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	if (!module_search_path) | 
					
						
							|  |  |  | 		calculate_path(); | 
					
						
							|  |  |  | 	return progpath; | 
					
						
							|  |  |  | } |