blob: 7d9a9612bef230ff37148df15c4404bb117d773b [file] [log] [blame]
Guido van Rossum582646a1996-05-28 22:30:17 +00001
2/* Return the initial module search path. */
3
Guido van Rossum667d7041995-08-04 04:20:48 +00004#include "Python.h"
5#include "osdefs.h"
6
Guido van Rossum305e5d01997-04-11 17:18:45 +00007#include <sys/types.h>
8#include <sys/stat.h>
Guido van Rossum21f84971997-06-02 22:18:31 +00009#include <string.h>
Guido van Rossum667d7041995-08-04 04:20:48 +000010
Guido van Rossum305e5d01997-04-11 17:18:45 +000011#if HAVE_UNISTD_H
12#include <unistd.h>
13#endif /* HAVE_UNISTD_H */
14
Guido van Rossum54ecc3d1999-01-27 17:53:11 +000015#ifdef WITH_NEXT_FRAMEWORK
16#include <mach-o/dyld.h>
17#endif
18
Guido van Rossum305e5d01997-04-11 17:18:45 +000019/* Search in some common locations for the associated Python libraries.
20 *
21 * Two directories must be found, the platform independent directory
Barry Warsaw90126031997-04-11 20:27:03 +000022 * (prefix), containing the common .py and .pyc files, and the platform
23 * dependent directory (exec_prefix), containing the shared library
24 * modules. Note that prefix and exec_prefix can be the same directory,
25 * but for some installations, they are different.
Guido van Rossum305e5d01997-04-11 17:18:45 +000026 *
Barry Warsaw90126031997-04-11 20:27:03 +000027 * Py_GetPath() carries out separate searches for prefix and exec_prefix.
28 * Each search tries a number of different locations until a ``landmark''
29 * file or directory is found. If no prefix or exec_prefix is found, a
30 * warning message is issued and the preprocessor defined PREFIX and
31 * EXEC_PREFIX are used (even though they will not work); python carries on
32 * as best as is possible, but most imports will fail.
Guido van Rossum305e5d01997-04-11 17:18:45 +000033 *
34 * Before any searches are done, the location of the executable is
Barry Warsaw90126031997-04-11 20:27:03 +000035 * determined. If argv[0] has one or more slashs in it, it is used
36 * unchanged. Otherwise, it must have been invoked from the shell's path,
37 * so we search $PATH for the named executable and use that. If the
38 * executable was not found on $PATH (or there was no $PATH environment
39 * variable), the original argv[0] string is used.
Guido van Rossum305e5d01997-04-11 17:18:45 +000040 *
Barry Warsaw90126031997-04-11 20:27:03 +000041 * Next, the executable location is examined to see if it is a symbolic
42 * link. If so, the link is chased (correctly interpreting a relative
43 * pathname if one is found) and the directory of the link target is used.
Guido van Rossum305e5d01997-04-11 17:18:45 +000044 *
Barry Warsaw90126031997-04-11 20:27:03 +000045 * Finally, argv0_path is set to the directory containing the executable
46 * (i.e. the last component is stripped).
Guido van Rossum305e5d01997-04-11 17:18:45 +000047 *
Barry Warsaw90126031997-04-11 20:27:03 +000048 * With argv0_path in hand, we perform a number of steps. The same steps
49 * are performed for prefix and for exec_prefix, but with a different
50 * landmark.
Guido van Rossum305e5d01997-04-11 17:18:45 +000051 *
52 * Step 1. Are we running python out of the build directory? This is
53 * checked by looking for a different kind of landmark relative to
Barry Warsaw90126031997-04-11 20:27:03 +000054 * argv0_path. For prefix, the landmark's path is derived from the VPATH
55 * preprocessor variable (taking into account that its value is almost, but
56 * not quite, what we need). For exec_prefix, the landmark is
57 * Modules/Setup. If the landmark is found, we're done.
Guido van Rossum305e5d01997-04-11 17:18:45 +000058 *
59 * For the remaining steps, the prefix landmark will always be
Jeremy Hylton847a9962000-05-26 21:49:07 +000060 * lib/python$VERSION/os.py and the exec_prefix will always be
Guido van Rossum266033e1997-10-20 23:20:32 +000061 * lib/python$VERSION/lib-dynload, where $VERSION is Python's version
Barry Warsaw90126031997-04-11 20:27:03 +000062 * number as supplied by the Makefile. Note that this means that no more
63 * build directory checking is performed; if the first step did not find
64 * the landmarks, the assumption is that python is running from an
65 * installed setup.
Guido van Rossum305e5d01997-04-11 17:18:45 +000066 *
67 * Step 2. See if the $PYTHONHOME environment variable points to the
Barry Warsaw90126031997-04-11 20:27:03 +000068 * installed location of the Python libraries. If $PYTHONHOME is set, then
69 * it points to prefix and exec_prefix. $PYTHONHOME can be a single
70 * directory, which is used for both, or the prefix and exec_prefix
71 * directories separated by a colon.
Guido van Rossum305e5d01997-04-11 17:18:45 +000072 *
73 * Step 3. Try to find prefix and exec_prefix relative to argv0_path,
Barry Warsaw90126031997-04-11 20:27:03 +000074 * backtracking up the path until it is exhausted. This is the most common
75 * step to succeed. Note that if prefix and exec_prefix are different,
76 * exec_prefix is more likely to be found; however if exec_prefix is a
77 * subdirectory of prefix, both will be found.
Guido van Rossum305e5d01997-04-11 17:18:45 +000078 *
Barry Warsaw90126031997-04-11 20:27:03 +000079 * Step 4. Search the directories pointed to by the preprocessor variables
80 * PREFIX and EXEC_PREFIX. These are supplied by the Makefile but can be
81 * passed in as options to the configure script.
Guido van Rossum305e5d01997-04-11 17:18:45 +000082 *
Barry Warsaw90126031997-04-11 20:27:03 +000083 * That's it!
84 *
85 * Well, almost. Once we have determined prefix and exec_prefix, the
Thomas Wouters7e474022000-07-16 12:04:32 +000086 * preprocessor variable PYTHONPATH is used to construct a path. Each
Barry Warsaw90126031997-04-11 20:27:03 +000087 * relative path on PYTHONPATH is prefixed with prefix. Then the directory
88 * containing the shared library modules is appended. The environment
89 * variable $PYTHONPATH is inserted in front of it all. Finally, the
90 * prefix and exec_prefix globals are tweaked so they reflect the values
91 * expected by other code, by stripping the "lib/python$VERSION/..." stuff
92 * off. If either points to the build directory, the globals are reset to
93 * the corresponding preprocessor variables (so sys.prefix will reflect the
94 * installation location, even though sys.path points into the build
95 * directory). This seems to make more sense given that currently the only
96 * known use of sys.prefix and sys.exec_prefix is for the ILU installation
97 * process to find the installed Python tree.
98 */
Guido van Rossum305e5d01997-04-11 17:18:45 +000099
100#ifndef VERSION
101#define VERSION "1.5"
102#endif
103
104#ifndef VPATH
105#define VPATH "."
Guido van Rossum667d7041995-08-04 04:20:48 +0000106#endif
107
Guido van Rossumc34c9a51996-06-12 04:20:27 +0000108#ifndef PREFIX
109#define PREFIX "/usr/local"
110#endif
111
112#ifndef EXEC_PREFIX
Guido van Rossum6e12d561996-07-30 20:36:12 +0000113#define EXEC_PREFIX PREFIX
Guido van Rossumc34c9a51996-06-12 04:20:27 +0000114#endif
115
Guido van Rossum305e5d01997-04-11 17:18:45 +0000116#ifndef PYTHONPATH
117/* I know this isn't K&R C, but the Makefile specifies it anyway */
118#define PYTHONPATH PREFIX "/lib/python" VERSION ":" \
Guido van Rossum266033e1997-10-20 23:20:32 +0000119 EXEC_PREFIX "/lib/python" VERSION "/lib-dynload"
Guido van Rossum305e5d01997-04-11 17:18:45 +0000120#endif
Guido van Rossum667d7041995-08-04 04:20:48 +0000121
Guido van Rossum305e5d01997-04-11 17:18:45 +0000122#ifndef LANDMARK
Jeremy Hylton847a9962000-05-26 21:49:07 +0000123#define LANDMARK "os.py"
Guido van Rossum305e5d01997-04-11 17:18:45 +0000124#endif
125
Guido van Rossum305e5d01997-04-11 17:18:45 +0000126static char prefix[MAXPATHLEN+1];
127static char exec_prefix[MAXPATHLEN+1];
Guido van Rossum7929c6f1997-05-20 22:38:21 +0000128static char progpath[MAXPATHLEN+1];
Guido van Rossum305e5d01997-04-11 17:18:45 +0000129static char *module_search_path = NULL;
130static char lib_python[20]; /* Dynamically set to "lib/python" VERSION */
131
132static void
Fred Drakeedabdc12000-07-08 06:16:37 +0000133reduce(char *dir)
Guido van Rossum305e5d01997-04-11 17:18:45 +0000134{
Fred Drakeedabdc12000-07-08 06:16:37 +0000135 size_t i = strlen(dir);
136 while (i > 0 && dir[i] != SEP)
137 --i;
138 dir[i] = '\0';
Guido van Rossum305e5d01997-04-11 17:18:45 +0000139}
Guido van Rossumd29806c1998-01-19 22:06:22 +0000140
141
142#ifndef S_ISREG
143#define S_ISREG(x) (((x) & S_IFMT) == S_IFREG)
144#endif
145
146#ifndef S_ISDIR
147#define S_ISDIR(x) (((x) & S_IFMT) == S_IFDIR)
148#endif
Guido van Rossum305e5d01997-04-11 17:18:45 +0000149
150static int
Fred Drakeedabdc12000-07-08 06:16:37 +0000151isfile(char *filename) /* Is file, not directory */
Guido van Rossum305e5d01997-04-11 17:18:45 +0000152{
Fred Drakeedabdc12000-07-08 06:16:37 +0000153 struct stat buf;
154 if (stat(filename, &buf) != 0)
155 return 0;
156 if (!S_ISREG(buf.st_mode))
157 return 0;
158 return 1;
Guido van Rossumd29806c1998-01-19 22:06:22 +0000159}
160
161
162static int
Fred Drakeedabdc12000-07-08 06:16:37 +0000163ismodule(char *filename) /* Is module -- check for .pyc/.pyo too */
Guido van Rossumd29806c1998-01-19 22:06:22 +0000164{
Fred Drakeedabdc12000-07-08 06:16:37 +0000165 if (isfile(filename))
166 return 1;
Guido van Rossumd29806c1998-01-19 22:06:22 +0000167
Fred Drakeedabdc12000-07-08 06:16:37 +0000168 /* Check for the compiled version of prefix. */
169 if (strlen(filename) < MAXPATHLEN) {
170 strcat(filename, Py_OptimizeFlag ? "o" : "c");
171 if (isfile(filename))
172 return 1;
173 }
174 return 0;
Guido van Rossumd29806c1998-01-19 22:06:22 +0000175}
176
177
178static int
Fred Drakeedabdc12000-07-08 06:16:37 +0000179isxfile(char *filename) /* Is executable file */
Guido van Rossumd29806c1998-01-19 22:06:22 +0000180{
Fred Drakeedabdc12000-07-08 06:16:37 +0000181 struct stat buf;
182 if (stat(filename, &buf) != 0)
183 return 0;
184 if (!S_ISREG(buf.st_mode))
185 return 0;
186 if ((buf.st_mode & 0111) == 0)
187 return 0;
188 return 1;
Guido van Rossumd29806c1998-01-19 22:06:22 +0000189}
190
191
192static int
Fred Drakeedabdc12000-07-08 06:16:37 +0000193isdir(char *filename) /* Is directory */
Guido van Rossumd29806c1998-01-19 22:06:22 +0000194{
Fred Drakeedabdc12000-07-08 06:16:37 +0000195 struct stat buf;
196 if (stat(filename, &buf) != 0)
197 return 0;
198 if (!S_ISDIR(buf.st_mode))
199 return 0;
200 return 1;
Guido van Rossum305e5d01997-04-11 17:18:45 +0000201}
202
203
204static void
Fred Drakeedabdc12000-07-08 06:16:37 +0000205joinpath(char *buffer, char *stuff)
Guido van Rossum305e5d01997-04-11 17:18:45 +0000206{
Fred Drakeedabdc12000-07-08 06:16:37 +0000207 size_t n, k;
208 if (stuff[0] == SEP)
209 n = 0;
210 else {
211 n = strlen(buffer);
212 if (n > 0 && buffer[n-1] != SEP && n < MAXPATHLEN)
213 buffer[n++] = SEP;
214 }
215 k = strlen(stuff);
216 if (n + k > MAXPATHLEN)
217 k = MAXPATHLEN - n;
218 strncpy(buffer+n, stuff, k);
219 buffer[n+k] = '\0';
Guido van Rossum305e5d01997-04-11 17:18:45 +0000220}
221
Jeremy Hylton7198ba92000-09-25 17:00:24 +0000222static void
223init_path_from_argv0(char *path, char *argv0_path)
224{
225 if (argv0_path[0] == '/')
226 strcpy(path, argv0_path);
227 else if (argv0_path[0] == '.') {
228 getcwd(path, MAXPATHLEN);
229 if (argv0_path[1] == '/')
230 joinpath(path, argv0_path + 2);
231 else
232 joinpath(path, argv0_path);
233 }
234 else {
235 getcwd(path, MAXPATHLEN);
236 joinpath(path, argv0_path);
237 }
238}
Guido van Rossum305e5d01997-04-11 17:18:45 +0000239
Guido van Rossum305e5d01997-04-11 17:18:45 +0000240static int
Fred Drakeedabdc12000-07-08 06:16:37 +0000241search_for_prefix(char *argv0_path, char *home)
Guido van Rossum305e5d01997-04-11 17:18:45 +0000242{
Fred Drakeedabdc12000-07-08 06:16:37 +0000243 size_t n;
244 char *vpath;
Guido van Rossum305e5d01997-04-11 17:18:45 +0000245
Fred Drakeedabdc12000-07-08 06:16:37 +0000246 /* If PYTHONHOME is set, we believe it unconditionally */
247 if (home) {
248 char *delim;
249 strcpy(prefix, home);
250 delim = strchr(prefix, DELIM);
251 if (delim)
252 *delim = '\0';
253 joinpath(prefix, lib_python);
254 joinpath(prefix, LANDMARK);
255 return 1;
256 }
Jeremy Hylton847a9962000-05-26 21:49:07 +0000257
Fred Drakeedabdc12000-07-08 06:16:37 +0000258 /* Check to see if argv[0] is in the build directory */
259 strcpy(prefix, argv0_path);
260 joinpath(prefix, "Modules/Setup");
261 if (isfile(prefix)) {
262 /* Check VPATH to see if argv0_path is in the build directory.
263 * Complication: the VPATH passed in is relative to the
264 * Modules build directory and points to the Modules source
265 * directory; we need it relative to the build tree and
266 * pointing to the source tree. Solution: chop off a leading
267 * ".." (but only if it's there -- it could be an absolute
268 * path) and chop off the final component (assuming it's
269 * "Modules").
270 */
271 vpath = VPATH;
272 if (vpath[0] == '.' && vpath[1] == '.' && vpath[2] == '/')
273 vpath += 3;
274 strcpy(prefix, argv0_path);
275 joinpath(prefix, vpath);
276 reduce(prefix);
277 joinpath(prefix, "Lib");
278 joinpath(prefix, LANDMARK);
279 if (ismodule(prefix))
280 return -1;
281 }
Guido van Rossum305e5d01997-04-11 17:18:45 +0000282
Fred Drakeedabdc12000-07-08 06:16:37 +0000283 /* Search from argv0_path, until root is found */
Jeremy Hylton7198ba92000-09-25 17:00:24 +0000284 init_path_from_argv0(prefix, argv0_path);
Fred Drakeedabdc12000-07-08 06:16:37 +0000285 do {
286 n = strlen(prefix);
287 joinpath(prefix, lib_python);
288 joinpath(prefix, LANDMARK);
289 if (ismodule(prefix))
290 return 1;
291 prefix[n] = '\0';
292 reduce(prefix);
293 } while (prefix[0]);
Guido van Rossum305e5d01997-04-11 17:18:45 +0000294
Fred Drakeedabdc12000-07-08 06:16:37 +0000295 /* Look at configure's PREFIX */
296 strcpy(prefix, PREFIX);
297 joinpath(prefix, lib_python);
298 joinpath(prefix, LANDMARK);
299 if (ismodule(prefix))
300 return 1;
Guido van Rossum305e5d01997-04-11 17:18:45 +0000301
Fred Drakeedabdc12000-07-08 06:16:37 +0000302 /* Fail */
303 return 0;
Guido van Rossum305e5d01997-04-11 17:18:45 +0000304}
305
306
307static int
Fred Drakeedabdc12000-07-08 06:16:37 +0000308search_for_exec_prefix(char *argv0_path, char *home)
Guido van Rossum305e5d01997-04-11 17:18:45 +0000309{
Fred Drakeedabdc12000-07-08 06:16:37 +0000310 size_t n;
Guido van Rossum305e5d01997-04-11 17:18:45 +0000311
Fred Drakeedabdc12000-07-08 06:16:37 +0000312 /* If PYTHONHOME is set, we believe it unconditionally */
313 if (home) {
314 char *delim;
315 delim = strchr(home, DELIM);
316 if (delim)
317 strcpy(exec_prefix, delim+1);
318 else
319 strcpy(exec_prefix, home);
320 joinpath(exec_prefix, lib_python);
321 joinpath(exec_prefix, "lib-dynload");
322 return 1;
323 }
Guido van Rossum305e5d01997-04-11 17:18:45 +0000324
Fred Drakeedabdc12000-07-08 06:16:37 +0000325 /* Check to see if argv[0] is in the build directory */
326 strcpy(exec_prefix, argv0_path);
327 joinpath(exec_prefix, "Modules/Setup");
328 if (isfile(exec_prefix)) {
329 reduce(exec_prefix);
330 return -1;
331 }
Jeremy Hylton847a9962000-05-26 21:49:07 +0000332
Fred Drakeedabdc12000-07-08 06:16:37 +0000333 /* Search from argv0_path, until root is found */
Jeremy Hylton7198ba92000-09-25 17:00:24 +0000334 init_path_from_argv0(exec_prefix, argv0_path);
Fred Drakeedabdc12000-07-08 06:16:37 +0000335 do {
336 n = strlen(exec_prefix);
337 joinpath(exec_prefix, lib_python);
338 joinpath(exec_prefix, "lib-dynload");
339 if (isdir(exec_prefix))
340 return 1;
341 exec_prefix[n] = '\0';
342 reduce(exec_prefix);
343 } while (exec_prefix[0]);
Guido van Rossum305e5d01997-04-11 17:18:45 +0000344
Fred Drakeedabdc12000-07-08 06:16:37 +0000345 /* Look at configure's EXEC_PREFIX */
346 strcpy(exec_prefix, EXEC_PREFIX);
347 joinpath(exec_prefix, lib_python);
348 joinpath(exec_prefix, "lib-dynload");
349 if (isdir(exec_prefix))
350 return 1;
Guido van Rossum305e5d01997-04-11 17:18:45 +0000351
Fred Drakeedabdc12000-07-08 06:16:37 +0000352 /* Fail */
353 return 0;
Guido van Rossum305e5d01997-04-11 17:18:45 +0000354}
355
356
357static void
Thomas Woutersf3f33dc2000-07-21 06:00:07 +0000358calculate_path(void)
Guido van Rossum305e5d01997-04-11 17:18:45 +0000359{
Thomas Woutersbd4bc4e2000-07-22 23:57:55 +0000360 extern char *Py_GetProgramName(void);
Guido van Rossum305e5d01997-04-11 17:18:45 +0000361
Fred Drakeedabdc12000-07-08 06:16:37 +0000362 static char delimiter[2] = {DELIM, '\0'};
363 static char separator[2] = {SEP, '\0'};
364 char *pythonpath = PYTHONPATH;
365 char *rtpypath = getenv("PYTHONPATH");
366 char *home = Py_GetPythonHome();
367 char *path = getenv("PATH");
368 char *prog = Py_GetProgramName();
369 char argv0_path[MAXPATHLEN+1];
370 int pfound, efound; /* 1 if found; -1 if found build directory */
371 char *buf;
372 size_t bufsz;
373 size_t prefixsz;
374 char *defpath = pythonpath;
Guido van Rossum54ecc3d1999-01-27 17:53:11 +0000375#ifdef WITH_NEXT_FRAMEWORK
Fred Drakeedabdc12000-07-08 06:16:37 +0000376 NSModule pythonModule;
Guido van Rossum54ecc3d1999-01-27 17:53:11 +0000377#endif
378
379#ifdef WITH_NEXT_FRAMEWORK
Fred Drakeedabdc12000-07-08 06:16:37 +0000380 pythonModule = NSModuleForSymbol(NSLookupAndBindSymbol("_Py_Initialize"));
381 /* Use dylib functions to find out where the framework was loaded from */
382 buf = NSLibraryNameForModule(pythonModule);
383 if (buf != NULL) {
384 /* We're in a framework. */
385 strcpy(progpath, buf);
Guido van Rossum305e5d01997-04-11 17:18:45 +0000386
Fred Drakeedabdc12000-07-08 06:16:37 +0000387 /* Frameworks have support for versioning */
388 strcpy(lib_python, "lib");
389 }
390 else {
391 /* If we're not in a framework, fall back to the old way
392 (even though NSNameOfModule() probably does the same thing.) */
Guido van Rossum54ecc3d1999-01-27 17:53:11 +0000393#endif
394
Guido van Rossum305e5d01997-04-11 17:18:45 +0000395 /* Initialize this dynamically for K&R C */
396 sprintf(lib_python, "lib/python%s", VERSION);
397
398 /* If there is no slash in the argv0 path, then we have to
399 * assume python is on the user's $PATH, since there's no
400 * other way to find a directory to start the search from. If
401 * $PATH isn't exported, you lose.
402 */
403 if (strchr(prog, SEP))
Fred Drakeedabdc12000-07-08 06:16:37 +0000404 strcpy(progpath, prog);
Guido van Rossum305e5d01997-04-11 17:18:45 +0000405 else if (path) {
Fred Drakeedabdc12000-07-08 06:16:37 +0000406 while (1) {
407 char *delim = strchr(path, DELIM);
Guido van Rossum305e5d01997-04-11 17:18:45 +0000408
Fred Drakeedabdc12000-07-08 06:16:37 +0000409 if (delim) {
410 size_t len = delim - path;
411 strncpy(progpath, path, len);
412 *(progpath + len) = '\0';
413 }
414 else
415 strcpy(progpath, path);
Guido van Rossum305e5d01997-04-11 17:18:45 +0000416
Fred Drakeedabdc12000-07-08 06:16:37 +0000417 joinpath(progpath, prog);
418 if (isxfile(progpath))
419 break;
Guido van Rossum305e5d01997-04-11 17:18:45 +0000420
Fred Drakeedabdc12000-07-08 06:16:37 +0000421 if (!delim) {
422 progpath[0] = '\0';
423 break;
424 }
425 path = delim + 1;
426 }
Guido van Rossum305e5d01997-04-11 17:18:45 +0000427 }
428 else
Fred Drakeedabdc12000-07-08 06:16:37 +0000429 progpath[0] = '\0';
Guido van Rossum54ecc3d1999-01-27 17:53:11 +0000430#ifdef WITH_NEXT_FRAMEWORK
Fred Drakeedabdc12000-07-08 06:16:37 +0000431 }
Guido van Rossum54ecc3d1999-01-27 17:53:11 +0000432#endif
Guido van Rossum305e5d01997-04-11 17:18:45 +0000433
Fred Drakeedabdc12000-07-08 06:16:37 +0000434 strcpy(argv0_path, progpath);
Guido van Rossum305e5d01997-04-11 17:18:45 +0000435
436#if HAVE_READLINK
Fred Drakeedabdc12000-07-08 06:16:37 +0000437 {
438 char tmpbuffer[MAXPATHLEN+1];
439 int linklen = readlink(progpath, tmpbuffer, MAXPATHLEN);
440 while (linklen != -1) {
441 /* It's not null terminated! */
442 tmpbuffer[linklen] = '\0';
443 if (tmpbuffer[0] == SEP)
444 strcpy(argv0_path, tmpbuffer);
445 else {
446 /* Interpret relative to progpath */
447 reduce(argv0_path);
448 joinpath(argv0_path, tmpbuffer);
449 }
450 linklen = readlink(argv0_path, tmpbuffer, MAXPATHLEN);
451 }
452 }
Guido van Rossum305e5d01997-04-11 17:18:45 +0000453#endif /* HAVE_READLINK */
454
Fred Drakeedabdc12000-07-08 06:16:37 +0000455 reduce(argv0_path);
Guido van Rossum305e5d01997-04-11 17:18:45 +0000456
Fred Drakeedabdc12000-07-08 06:16:37 +0000457 if (!(pfound = search_for_prefix(argv0_path, home))) {
458 if (!Py_FrozenFlag)
459 fprintf(stderr,
460 "Could not find platform independent libraries <prefix>\n");
461 strcpy(prefix, PREFIX);
462 joinpath(prefix, lib_python);
463 }
464 else
465 reduce(prefix);
Guido van Rossum305e5d01997-04-11 17:18:45 +0000466
Fred Drakeedabdc12000-07-08 06:16:37 +0000467 if (!(efound = search_for_exec_prefix(argv0_path, home))) {
468 if (!Py_FrozenFlag)
469 fprintf(stderr,
470 "Could not find platform dependent libraries <exec_prefix>\n");
471 strcpy(exec_prefix, EXEC_PREFIX);
472 joinpath(exec_prefix, "lib/lib-dynload");
473 }
474 /* If we found EXEC_PREFIX do *not* reduce it! (Yet.) */
Guido van Rossum305e5d01997-04-11 17:18:45 +0000475
Fred Drakeedabdc12000-07-08 06:16:37 +0000476 if ((!pfound || !efound) && !Py_FrozenFlag)
477 fprintf(stderr,
478 "Consider setting $PYTHONHOME to <prefix>[:<exec_prefix>]\n");
Guido van Rossum305e5d01997-04-11 17:18:45 +0000479
Fred Drakeedabdc12000-07-08 06:16:37 +0000480 /* Calculate size of return buffer.
481 */
482 bufsz = 0;
Guido van Rossum305e5d01997-04-11 17:18:45 +0000483
Fred Drakeedabdc12000-07-08 06:16:37 +0000484 if (rtpypath)
485 bufsz += strlen(rtpypath) + 1;
Guido van Rossum305e5d01997-04-11 17:18:45 +0000486
Fred Drakeedabdc12000-07-08 06:16:37 +0000487 prefixsz = strlen(prefix) + 1;
Guido van Rossum305e5d01997-04-11 17:18:45 +0000488
Fred Drakeedabdc12000-07-08 06:16:37 +0000489 while (1) {
490 char *delim = strchr(defpath, DELIM);
Guido van Rossum305e5d01997-04-11 17:18:45 +0000491
Fred Drakeedabdc12000-07-08 06:16:37 +0000492 if (defpath[0] != SEP)
493 /* Paths are relative to prefix */
494 bufsz += prefixsz;
Guido van Rossum305e5d01997-04-11 17:18:45 +0000495
Fred Drakeedabdc12000-07-08 06:16:37 +0000496 if (delim)
497 bufsz += delim - defpath + 1;
498 else {
499 bufsz += strlen(defpath) + 1;
500 break;
501 }
502 defpath = delim + 1;
503 }
Guido van Rossum305e5d01997-04-11 17:18:45 +0000504
Fred Drakeedabdc12000-07-08 06:16:37 +0000505 bufsz += strlen(exec_prefix) + 1;
Guido van Rossum305e5d01997-04-11 17:18:45 +0000506
Fred Drakeedabdc12000-07-08 06:16:37 +0000507 /* This is the only malloc call in this file */
508 buf = PyMem_Malloc(bufsz);
Guido van Rossum305e5d01997-04-11 17:18:45 +0000509
Fred Drakeedabdc12000-07-08 06:16:37 +0000510 if (buf == NULL) {
511 /* We can't exit, so print a warning and limp along */
512 fprintf(stderr, "Not enough memory for dynamic PYTHONPATH.\n");
513 fprintf(stderr, "Using default static PYTHONPATH.\n");
514 module_search_path = PYTHONPATH;
515 }
516 else {
517 /* Run-time value of $PYTHONPATH goes first */
518 if (rtpypath) {
519 strcpy(buf, rtpypath);
520 strcat(buf, delimiter);
521 }
522 else
523 buf[0] = '\0';
Guido van Rossum305e5d01997-04-11 17:18:45 +0000524
Fred Drakeedabdc12000-07-08 06:16:37 +0000525 /* Next goes merge of compile-time $PYTHONPATH with
526 * dynamically located prefix.
527 */
528 defpath = pythonpath;
529 while (1) {
530 char *delim = strchr(defpath, DELIM);
Guido van Rossum305e5d01997-04-11 17:18:45 +0000531
Fred Drakeedabdc12000-07-08 06:16:37 +0000532 if (defpath[0] != SEP) {
533 strcat(buf, prefix);
534 strcat(buf, separator);
535 }
Guido van Rossum305e5d01997-04-11 17:18:45 +0000536
Fred Drakeedabdc12000-07-08 06:16:37 +0000537 if (delim) {
538 size_t len = delim - defpath + 1;
539 size_t end = strlen(buf) + len;
540 strncat(buf, defpath, len);
541 *(buf + end) = '\0';
542 }
543 else {
544 strcat(buf, defpath);
545 break;
546 }
547 defpath = delim + 1;
548 }
549 strcat(buf, delimiter);
Guido van Rossum305e5d01997-04-11 17:18:45 +0000550
Fred Drakeedabdc12000-07-08 06:16:37 +0000551 /* Finally, on goes the directory for dynamic-load modules */
552 strcat(buf, exec_prefix);
Guido van Rossum305e5d01997-04-11 17:18:45 +0000553
Fred Drakeedabdc12000-07-08 06:16:37 +0000554 /* And publish the results */
555 module_search_path = buf;
556 }
Guido van Rossum305e5d01997-04-11 17:18:45 +0000557
Fred Drakeedabdc12000-07-08 06:16:37 +0000558 /* Reduce prefix and exec_prefix to their essence,
559 * e.g. /usr/local/lib/python1.5 is reduced to /usr/local.
560 * If we're loading relative to the build directory,
561 * return the compiled-in defaults instead.
562 */
563 if (pfound > 0) {
564 reduce(prefix);
565 reduce(prefix);
566 }
567 else
568 strcpy(prefix, PREFIX);
Guido van Rossum305e5d01997-04-11 17:18:45 +0000569
Fred Drakeedabdc12000-07-08 06:16:37 +0000570 if (efound > 0) {
571 reduce(exec_prefix);
572 reduce(exec_prefix);
573 reduce(exec_prefix);
574 }
575 else
576 strcpy(exec_prefix, EXEC_PREFIX);
Guido van Rossum305e5d01997-04-11 17:18:45 +0000577}
578
579
580/* External interface */
Guido van Rossum667d7041995-08-04 04:20:48 +0000581
582char *
Thomas Woutersf3f33dc2000-07-21 06:00:07 +0000583Py_GetPath(void)
Guido van Rossum667d7041995-08-04 04:20:48 +0000584{
Fred Drakeedabdc12000-07-08 06:16:37 +0000585 if (!module_search_path)
586 calculate_path();
587 return module_search_path;
Guido van Rossum667d7041995-08-04 04:20:48 +0000588}
Guido van Rossumc34c9a51996-06-12 04:20:27 +0000589
Guido van Rossumc34c9a51996-06-12 04:20:27 +0000590char *
Thomas Woutersf3f33dc2000-07-21 06:00:07 +0000591Py_GetPrefix(void)
Guido van Rossumc34c9a51996-06-12 04:20:27 +0000592{
Fred Drakeedabdc12000-07-08 06:16:37 +0000593 if (!module_search_path)
594 calculate_path();
595 return prefix;
Guido van Rossumc34c9a51996-06-12 04:20:27 +0000596}
597
598char *
Thomas Woutersf3f33dc2000-07-21 06:00:07 +0000599Py_GetExecPrefix(void)
Guido van Rossumc34c9a51996-06-12 04:20:27 +0000600{
Fred Drakeedabdc12000-07-08 06:16:37 +0000601 if (!module_search_path)
602 calculate_path();
603 return exec_prefix;
Guido van Rossumc34c9a51996-06-12 04:20:27 +0000604}
Guido van Rossum7929c6f1997-05-20 22:38:21 +0000605
606char *
Thomas Woutersf3f33dc2000-07-21 06:00:07 +0000607Py_GetProgramFullPath(void)
Guido van Rossum7929c6f1997-05-20 22:38:21 +0000608{
Fred Drakeedabdc12000-07-08 06:16:37 +0000609 if (!module_search_path)
610 calculate_path();
611 return progpath;
Guido van Rossum7929c6f1997-05-20 22:38:21 +0000612}