blob: c295d307ccf2c5ce5109fbc94215669428a1b387 [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
222
Guido van Rossum305e5d01997-04-11 17:18:45 +0000223static int
Fred Drakeedabdc12000-07-08 06:16:37 +0000224search_for_prefix(char *argv0_path, char *home)
Guido van Rossum305e5d01997-04-11 17:18:45 +0000225{
Fred Drakeedabdc12000-07-08 06:16:37 +0000226 size_t n;
227 char *vpath;
Guido van Rossum305e5d01997-04-11 17:18:45 +0000228
Fred Drakeedabdc12000-07-08 06:16:37 +0000229 /* If PYTHONHOME is set, we believe it unconditionally */
230 if (home) {
231 char *delim;
232 strcpy(prefix, home);
233 delim = strchr(prefix, DELIM);
234 if (delim)
235 *delim = '\0';
236 joinpath(prefix, lib_python);
237 joinpath(prefix, LANDMARK);
238 return 1;
239 }
Jeremy Hylton847a9962000-05-26 21:49:07 +0000240
Fred Drakeedabdc12000-07-08 06:16:37 +0000241 /* Check to see if argv[0] is in the build directory */
242 strcpy(prefix, argv0_path);
243 joinpath(prefix, "Modules/Setup");
244 if (isfile(prefix)) {
245 /* Check VPATH to see if argv0_path is in the build directory.
246 * Complication: the VPATH passed in is relative to the
247 * Modules build directory and points to the Modules source
248 * directory; we need it relative to the build tree and
249 * pointing to the source tree. Solution: chop off a leading
250 * ".." (but only if it's there -- it could be an absolute
251 * path) and chop off the final component (assuming it's
252 * "Modules").
253 */
254 vpath = VPATH;
255 if (vpath[0] == '.' && vpath[1] == '.' && vpath[2] == '/')
256 vpath += 3;
257 strcpy(prefix, argv0_path);
258 joinpath(prefix, vpath);
259 reduce(prefix);
260 joinpath(prefix, "Lib");
261 joinpath(prefix, LANDMARK);
262 if (ismodule(prefix))
263 return -1;
264 }
Guido van Rossum305e5d01997-04-11 17:18:45 +0000265
Fred Drakeedabdc12000-07-08 06:16:37 +0000266 /* Search from argv0_path, until root is found */
267 strcpy(prefix, argv0_path);
268 do {
269 n = strlen(prefix);
270 joinpath(prefix, lib_python);
271 joinpath(prefix, LANDMARK);
272 if (ismodule(prefix))
273 return 1;
274 prefix[n] = '\0';
275 reduce(prefix);
276 } while (prefix[0]);
Guido van Rossum305e5d01997-04-11 17:18:45 +0000277
Fred Drakeedabdc12000-07-08 06:16:37 +0000278 /* Look at configure's PREFIX */
279 strcpy(prefix, PREFIX);
280 joinpath(prefix, lib_python);
281 joinpath(prefix, LANDMARK);
282 if (ismodule(prefix))
283 return 1;
Guido van Rossum305e5d01997-04-11 17:18:45 +0000284
Fred Drakeedabdc12000-07-08 06:16:37 +0000285 /* Fail */
286 return 0;
Guido van Rossum305e5d01997-04-11 17:18:45 +0000287}
288
289
290static int
Fred Drakeedabdc12000-07-08 06:16:37 +0000291search_for_exec_prefix(char *argv0_path, char *home)
Guido van Rossum305e5d01997-04-11 17:18:45 +0000292{
Fred Drakeedabdc12000-07-08 06:16:37 +0000293 size_t n;
Guido van Rossum305e5d01997-04-11 17:18:45 +0000294
Fred Drakeedabdc12000-07-08 06:16:37 +0000295 /* If PYTHONHOME is set, we believe it unconditionally */
296 if (home) {
297 char *delim;
298 delim = strchr(home, DELIM);
299 if (delim)
300 strcpy(exec_prefix, delim+1);
301 else
302 strcpy(exec_prefix, home);
303 joinpath(exec_prefix, lib_python);
304 joinpath(exec_prefix, "lib-dynload");
305 return 1;
306 }
Guido van Rossum305e5d01997-04-11 17:18:45 +0000307
Fred Drakeedabdc12000-07-08 06:16:37 +0000308 /* Check to see if argv[0] is in the build directory */
309 strcpy(exec_prefix, argv0_path);
310 joinpath(exec_prefix, "Modules/Setup");
311 if (isfile(exec_prefix)) {
312 reduce(exec_prefix);
313 return -1;
314 }
Jeremy Hylton847a9962000-05-26 21:49:07 +0000315
Fred Drakeedabdc12000-07-08 06:16:37 +0000316 /* Search from argv0_path, until root is found */
317 strcpy(exec_prefix, argv0_path);
318 do {
319 n = strlen(exec_prefix);
320 joinpath(exec_prefix, lib_python);
321 joinpath(exec_prefix, "lib-dynload");
322 if (isdir(exec_prefix))
323 return 1;
324 exec_prefix[n] = '\0';
325 reduce(exec_prefix);
326 } while (exec_prefix[0]);
Guido van Rossum305e5d01997-04-11 17:18:45 +0000327
Fred Drakeedabdc12000-07-08 06:16:37 +0000328 /* Look at configure's EXEC_PREFIX */
329 strcpy(exec_prefix, EXEC_PREFIX);
330 joinpath(exec_prefix, lib_python);
331 joinpath(exec_prefix, "lib-dynload");
332 if (isdir(exec_prefix))
333 return 1;
Guido van Rossum305e5d01997-04-11 17:18:45 +0000334
Fred Drakeedabdc12000-07-08 06:16:37 +0000335 /* Fail */
336 return 0;
Guido van Rossum305e5d01997-04-11 17:18:45 +0000337}
338
339
340static void
Thomas Woutersf3f33dc2000-07-21 06:00:07 +0000341calculate_path(void)
Guido van Rossum305e5d01997-04-11 17:18:45 +0000342{
Thomas Woutersbd4bc4e2000-07-22 23:57:55 +0000343 extern char *Py_GetProgramName(void);
Guido van Rossum305e5d01997-04-11 17:18:45 +0000344
Fred Drakeedabdc12000-07-08 06:16:37 +0000345 static char delimiter[2] = {DELIM, '\0'};
346 static char separator[2] = {SEP, '\0'};
347 char *pythonpath = PYTHONPATH;
348 char *rtpypath = getenv("PYTHONPATH");
349 char *home = Py_GetPythonHome();
350 char *path = getenv("PATH");
351 char *prog = Py_GetProgramName();
352 char argv0_path[MAXPATHLEN+1];
353 int pfound, efound; /* 1 if found; -1 if found build directory */
354 char *buf;
355 size_t bufsz;
356 size_t prefixsz;
357 char *defpath = pythonpath;
Guido van Rossum54ecc3d1999-01-27 17:53:11 +0000358#ifdef WITH_NEXT_FRAMEWORK
Fred Drakeedabdc12000-07-08 06:16:37 +0000359 NSModule pythonModule;
Guido van Rossum54ecc3d1999-01-27 17:53:11 +0000360#endif
361
362#ifdef WITH_NEXT_FRAMEWORK
Fred Drakeedabdc12000-07-08 06:16:37 +0000363 pythonModule = NSModuleForSymbol(NSLookupAndBindSymbol("_Py_Initialize"));
364 /* Use dylib functions to find out where the framework was loaded from */
365 buf = NSLibraryNameForModule(pythonModule);
366 if (buf != NULL) {
367 /* We're in a framework. */
368 strcpy(progpath, buf);
Guido van Rossum305e5d01997-04-11 17:18:45 +0000369
Fred Drakeedabdc12000-07-08 06:16:37 +0000370 /* Frameworks have support for versioning */
371 strcpy(lib_python, "lib");
372 }
373 else {
374 /* If we're not in a framework, fall back to the old way
375 (even though NSNameOfModule() probably does the same thing.) */
Guido van Rossum54ecc3d1999-01-27 17:53:11 +0000376#endif
377
Guido van Rossum305e5d01997-04-11 17:18:45 +0000378 /* Initialize this dynamically for K&R C */
379 sprintf(lib_python, "lib/python%s", VERSION);
380
381 /* If there is no slash in the argv0 path, then we have to
382 * assume python is on the user's $PATH, since there's no
383 * other way to find a directory to start the search from. If
384 * $PATH isn't exported, you lose.
385 */
386 if (strchr(prog, SEP))
Fred Drakeedabdc12000-07-08 06:16:37 +0000387 strcpy(progpath, prog);
Guido van Rossum305e5d01997-04-11 17:18:45 +0000388 else if (path) {
Fred Drakeedabdc12000-07-08 06:16:37 +0000389 while (1) {
390 char *delim = strchr(path, DELIM);
Guido van Rossum305e5d01997-04-11 17:18:45 +0000391
Fred Drakeedabdc12000-07-08 06:16:37 +0000392 if (delim) {
393 size_t len = delim - path;
394 strncpy(progpath, path, len);
395 *(progpath + len) = '\0';
396 }
397 else
398 strcpy(progpath, path);
Guido van Rossum305e5d01997-04-11 17:18:45 +0000399
Fred Drakeedabdc12000-07-08 06:16:37 +0000400 joinpath(progpath, prog);
401 if (isxfile(progpath))
402 break;
Guido van Rossum305e5d01997-04-11 17:18:45 +0000403
Fred Drakeedabdc12000-07-08 06:16:37 +0000404 if (!delim) {
405 progpath[0] = '\0';
406 break;
407 }
408 path = delim + 1;
409 }
Guido van Rossum305e5d01997-04-11 17:18:45 +0000410 }
411 else
Fred Drakeedabdc12000-07-08 06:16:37 +0000412 progpath[0] = '\0';
Guido van Rossum54ecc3d1999-01-27 17:53:11 +0000413#ifdef WITH_NEXT_FRAMEWORK
Fred Drakeedabdc12000-07-08 06:16:37 +0000414 }
Guido van Rossum54ecc3d1999-01-27 17:53:11 +0000415#endif
Guido van Rossum305e5d01997-04-11 17:18:45 +0000416
Fred Drakeedabdc12000-07-08 06:16:37 +0000417 strcpy(argv0_path, progpath);
Guido van Rossum305e5d01997-04-11 17:18:45 +0000418
419#if HAVE_READLINK
Fred Drakeedabdc12000-07-08 06:16:37 +0000420 {
421 char tmpbuffer[MAXPATHLEN+1];
422 int linklen = readlink(progpath, tmpbuffer, MAXPATHLEN);
423 while (linklen != -1) {
424 /* It's not null terminated! */
425 tmpbuffer[linklen] = '\0';
426 if (tmpbuffer[0] == SEP)
427 strcpy(argv0_path, tmpbuffer);
428 else {
429 /* Interpret relative to progpath */
430 reduce(argv0_path);
431 joinpath(argv0_path, tmpbuffer);
432 }
433 linklen = readlink(argv0_path, tmpbuffer, MAXPATHLEN);
434 }
435 }
Guido van Rossum305e5d01997-04-11 17:18:45 +0000436#endif /* HAVE_READLINK */
437
Fred Drakeedabdc12000-07-08 06:16:37 +0000438 reduce(argv0_path);
Guido van Rossum305e5d01997-04-11 17:18:45 +0000439
Fred Drakeedabdc12000-07-08 06:16:37 +0000440 if (!(pfound = search_for_prefix(argv0_path, home))) {
441 if (!Py_FrozenFlag)
442 fprintf(stderr,
443 "Could not find platform independent libraries <prefix>\n");
444 strcpy(prefix, PREFIX);
445 joinpath(prefix, lib_python);
446 }
447 else
448 reduce(prefix);
Guido van Rossum305e5d01997-04-11 17:18:45 +0000449
Fred Drakeedabdc12000-07-08 06:16:37 +0000450 if (!(efound = search_for_exec_prefix(argv0_path, home))) {
451 if (!Py_FrozenFlag)
452 fprintf(stderr,
453 "Could not find platform dependent libraries <exec_prefix>\n");
454 strcpy(exec_prefix, EXEC_PREFIX);
455 joinpath(exec_prefix, "lib/lib-dynload");
456 }
457 /* If we found EXEC_PREFIX do *not* reduce it! (Yet.) */
Guido van Rossum305e5d01997-04-11 17:18:45 +0000458
Fred Drakeedabdc12000-07-08 06:16:37 +0000459 if ((!pfound || !efound) && !Py_FrozenFlag)
460 fprintf(stderr,
461 "Consider setting $PYTHONHOME to <prefix>[:<exec_prefix>]\n");
Guido van Rossum305e5d01997-04-11 17:18:45 +0000462
Fred Drakeedabdc12000-07-08 06:16:37 +0000463 /* Calculate size of return buffer.
464 */
465 bufsz = 0;
Guido van Rossum305e5d01997-04-11 17:18:45 +0000466
Fred Drakeedabdc12000-07-08 06:16:37 +0000467 if (rtpypath)
468 bufsz += strlen(rtpypath) + 1;
Guido van Rossum305e5d01997-04-11 17:18:45 +0000469
Fred Drakeedabdc12000-07-08 06:16:37 +0000470 prefixsz = strlen(prefix) + 1;
Guido van Rossum305e5d01997-04-11 17:18:45 +0000471
Fred Drakeedabdc12000-07-08 06:16:37 +0000472 while (1) {
473 char *delim = strchr(defpath, DELIM);
Guido van Rossum305e5d01997-04-11 17:18:45 +0000474
Fred Drakeedabdc12000-07-08 06:16:37 +0000475 if (defpath[0] != SEP)
476 /* Paths are relative to prefix */
477 bufsz += prefixsz;
Guido van Rossum305e5d01997-04-11 17:18:45 +0000478
Fred Drakeedabdc12000-07-08 06:16:37 +0000479 if (delim)
480 bufsz += delim - defpath + 1;
481 else {
482 bufsz += strlen(defpath) + 1;
483 break;
484 }
485 defpath = delim + 1;
486 }
Guido van Rossum305e5d01997-04-11 17:18:45 +0000487
Fred Drakeedabdc12000-07-08 06:16:37 +0000488 bufsz += strlen(exec_prefix) + 1;
Guido van Rossum305e5d01997-04-11 17:18:45 +0000489
Fred Drakeedabdc12000-07-08 06:16:37 +0000490 /* This is the only malloc call in this file */
491 buf = PyMem_Malloc(bufsz);
Guido van Rossum305e5d01997-04-11 17:18:45 +0000492
Fred Drakeedabdc12000-07-08 06:16:37 +0000493 if (buf == NULL) {
494 /* We can't exit, so print a warning and limp along */
495 fprintf(stderr, "Not enough memory for dynamic PYTHONPATH.\n");
496 fprintf(stderr, "Using default static PYTHONPATH.\n");
497 module_search_path = PYTHONPATH;
498 }
499 else {
500 /* Run-time value of $PYTHONPATH goes first */
501 if (rtpypath) {
502 strcpy(buf, rtpypath);
503 strcat(buf, delimiter);
504 }
505 else
506 buf[0] = '\0';
Guido van Rossum305e5d01997-04-11 17:18:45 +0000507
Fred Drakeedabdc12000-07-08 06:16:37 +0000508 /* Next goes merge of compile-time $PYTHONPATH with
509 * dynamically located prefix.
510 */
511 defpath = pythonpath;
512 while (1) {
513 char *delim = strchr(defpath, DELIM);
Guido van Rossum305e5d01997-04-11 17:18:45 +0000514
Fred Drakeedabdc12000-07-08 06:16:37 +0000515 if (defpath[0] != SEP) {
516 strcat(buf, prefix);
517 strcat(buf, separator);
518 }
Guido van Rossum305e5d01997-04-11 17:18:45 +0000519
Fred Drakeedabdc12000-07-08 06:16:37 +0000520 if (delim) {
521 size_t len = delim - defpath + 1;
522 size_t end = strlen(buf) + len;
523 strncat(buf, defpath, len);
524 *(buf + end) = '\0';
525 }
526 else {
527 strcat(buf, defpath);
528 break;
529 }
530 defpath = delim + 1;
531 }
532 strcat(buf, delimiter);
Guido van Rossum305e5d01997-04-11 17:18:45 +0000533
Fred Drakeedabdc12000-07-08 06:16:37 +0000534 /* Finally, on goes the directory for dynamic-load modules */
535 strcat(buf, exec_prefix);
Guido van Rossum305e5d01997-04-11 17:18:45 +0000536
Fred Drakeedabdc12000-07-08 06:16:37 +0000537 /* And publish the results */
538 module_search_path = buf;
539 }
Guido van Rossum305e5d01997-04-11 17:18:45 +0000540
Fred Drakeedabdc12000-07-08 06:16:37 +0000541 /* Reduce prefix and exec_prefix to their essence,
542 * e.g. /usr/local/lib/python1.5 is reduced to /usr/local.
543 * If we're loading relative to the build directory,
544 * return the compiled-in defaults instead.
545 */
546 if (pfound > 0) {
547 reduce(prefix);
548 reduce(prefix);
549 }
550 else
551 strcpy(prefix, PREFIX);
Guido van Rossum305e5d01997-04-11 17:18:45 +0000552
Fred Drakeedabdc12000-07-08 06:16:37 +0000553 if (efound > 0) {
554 reduce(exec_prefix);
555 reduce(exec_prefix);
556 reduce(exec_prefix);
557 }
558 else
559 strcpy(exec_prefix, EXEC_PREFIX);
Guido van Rossum305e5d01997-04-11 17:18:45 +0000560}
561
562
563/* External interface */
Guido van Rossum667d7041995-08-04 04:20:48 +0000564
565char *
Thomas Woutersf3f33dc2000-07-21 06:00:07 +0000566Py_GetPath(void)
Guido van Rossum667d7041995-08-04 04:20:48 +0000567{
Fred Drakeedabdc12000-07-08 06:16:37 +0000568 if (!module_search_path)
569 calculate_path();
570 return module_search_path;
Guido van Rossum667d7041995-08-04 04:20:48 +0000571}
Guido van Rossumc34c9a51996-06-12 04:20:27 +0000572
Guido van Rossumc34c9a51996-06-12 04:20:27 +0000573char *
Thomas Woutersf3f33dc2000-07-21 06:00:07 +0000574Py_GetPrefix(void)
Guido van Rossumc34c9a51996-06-12 04:20:27 +0000575{
Fred Drakeedabdc12000-07-08 06:16:37 +0000576 if (!module_search_path)
577 calculate_path();
578 return prefix;
Guido van Rossumc34c9a51996-06-12 04:20:27 +0000579}
580
581char *
Thomas Woutersf3f33dc2000-07-21 06:00:07 +0000582Py_GetExecPrefix(void)
Guido van Rossumc34c9a51996-06-12 04:20:27 +0000583{
Fred Drakeedabdc12000-07-08 06:16:37 +0000584 if (!module_search_path)
585 calculate_path();
586 return exec_prefix;
Guido van Rossumc34c9a51996-06-12 04:20:27 +0000587}
Guido van Rossum7929c6f1997-05-20 22:38:21 +0000588
589char *
Thomas Woutersf3f33dc2000-07-21 06:00:07 +0000590Py_GetProgramFullPath(void)
Guido van Rossum7929c6f1997-05-20 22:38:21 +0000591{
Fred Drakeedabdc12000-07-08 06:16:37 +0000592 if (!module_search_path)
593 calculate_path();
594 return progpath;
Guido van Rossum7929c6f1997-05-20 22:38:21 +0000595}