1999-01-06 12:28:34 -04:00
|
|
|
"""Provide access to Python's configuration information. The specific names
|
|
|
|
defined in the module depend heavily on the platform and configuration.
|
1998-12-18 19:46:33 -04:00
|
|
|
|
|
|
|
Written by: Fred L. Drake, Jr.
|
|
|
|
Email: <fdrake@acm.org>
|
|
|
|
Initial date: 17-Dec-1998
|
|
|
|
"""
|
|
|
|
|
|
|
|
__version__ = "$Revision$"
|
|
|
|
|
1999-01-06 10:46:06 -04:00
|
|
|
import os
|
|
|
|
import re
|
|
|
|
import string
|
|
|
|
import sys
|
1998-12-18 19:46:33 -04:00
|
|
|
|
2000-03-09 11:54:52 -04:00
|
|
|
from errors import DistutilsPlatformError
|
2000-02-01 20:05:14 -04:00
|
|
|
|
1998-12-18 19:46:33 -04:00
|
|
|
|
2000-03-09 11:54:52 -04:00
|
|
|
prefix = os.path.normpath(sys.prefix)
|
|
|
|
exec_prefix = os.path.normpath(sys.exec_prefix)
|
|
|
|
|
|
|
|
|
|
|
|
def get_python_inc(plat_specific=0):
|
2000-03-08 23:16:05 -04:00
|
|
|
"""Return the directory containing installed Python header files.
|
2000-03-09 11:54:52 -04:00
|
|
|
|
|
|
|
If 'plat_specific' is false (the default), this is the path to the
|
|
|
|
non-platform-specific header files, i.e. Python.h and so on;
|
|
|
|
otherwise, this is the path to platform-specific header files
|
|
|
|
(namely config.h).
|
|
|
|
|
|
|
|
"""
|
2000-03-08 23:16:05 -04:00
|
|
|
the_prefix = (plat_specific and exec_prefix or prefix)
|
|
|
|
if os.name == "posix":
|
2000-03-09 11:54:52 -04:00
|
|
|
return os.path.join(the_prefix, "include", "python" + sys.version[:3])
|
2000-03-08 23:16:05 -04:00
|
|
|
elif os.name == "nt":
|
2000-03-09 11:54:52 -04:00
|
|
|
return os.path.join(the_prefix, "Include") # include or Include?
|
2000-03-08 23:16:05 -04:00
|
|
|
elif os.name == "mac":
|
2000-03-09 11:54:52 -04:00
|
|
|
return os.path.join(the_prefix, "Include")
|
2000-03-08 23:16:05 -04:00
|
|
|
else:
|
|
|
|
raise DistutilsPlatformError, \
|
|
|
|
("I don't know where Python installs its C header files " +
|
|
|
|
"on platform '%s'") % os.name
|
|
|
|
|
|
|
|
|
2000-03-09 11:54:52 -04:00
|
|
|
def get_python_lib(plat_specific=0, standard_lib=0):
|
2000-03-08 23:16:05 -04:00
|
|
|
"""Return the directory containing the Python library (standard or
|
2000-03-09 11:54:52 -04:00
|
|
|
site additions).
|
|
|
|
|
|
|
|
If 'plat_specific' is true, return the directory containing
|
|
|
|
platform-specific modules, i.e. any module from a non-pure-Python
|
|
|
|
module distribution; otherwise, return the platform-shared library
|
|
|
|
directory. If 'standard_lib' is true, return the directory
|
|
|
|
containing standard Python library modules; otherwise, return the
|
|
|
|
directory for site-specific modules.
|
2000-03-08 23:16:05 -04:00
|
|
|
|
2000-03-09 11:54:52 -04:00
|
|
|
"""
|
2000-03-08 23:16:05 -04:00
|
|
|
the_prefix = (plat_specific and exec_prefix or prefix)
|
|
|
|
|
|
|
|
if os.name == "posix":
|
2000-03-09 11:54:52 -04:00
|
|
|
libpython = os.path.join(the_prefix,
|
|
|
|
"lib", "python" + sys.version[:3])
|
2000-03-08 23:16:05 -04:00
|
|
|
if standard_lib:
|
|
|
|
return libpython
|
|
|
|
else:
|
2000-03-09 11:54:52 -04:00
|
|
|
return os.path.join(libpython, "site-packages")
|
2000-03-08 23:16:05 -04:00
|
|
|
|
|
|
|
elif os.name == "nt":
|
|
|
|
if standard_lib:
|
2000-03-09 11:54:52 -04:00
|
|
|
return os.path.join(the_prefix, "Lib")
|
2000-03-08 23:16:05 -04:00
|
|
|
else:
|
|
|
|
return the_prefix
|
|
|
|
|
|
|
|
elif os.name == "mac":
|
|
|
|
if platform_specific:
|
|
|
|
if standard_lib:
|
2000-03-09 11:54:52 -04:00
|
|
|
return os.path.join(exec_prefix, "Mac", "Plugins")
|
2000-03-08 23:16:05 -04:00
|
|
|
else:
|
|
|
|
raise DistutilsPlatformError, \
|
|
|
|
"OK, where DO site-specific extensions go on the Mac?"
|
|
|
|
else:
|
|
|
|
if standard_lib:
|
2000-03-09 11:54:52 -04:00
|
|
|
return os.path.join(prefix, "Lib")
|
2000-03-08 23:16:05 -04:00
|
|
|
else:
|
|
|
|
raise DistutilsPlatformError, \
|
|
|
|
"OK, where DO site-specific modules go on the Mac?"
|
|
|
|
else:
|
|
|
|
raise DistutilsPlatformError, \
|
|
|
|
("I don't know where Python installs its library " +
|
|
|
|
"on platform '%s'") % os.name
|
|
|
|
|
2000-03-09 11:54:52 -04:00
|
|
|
# get_python_lib()
|
2000-03-08 23:16:05 -04:00
|
|
|
|
|
|
|
|
1999-01-06 10:46:06 -04:00
|
|
|
def get_config_h_filename():
|
1999-01-06 12:28:34 -04:00
|
|
|
"""Return full pathname of installed config.h file."""
|
2000-03-09 11:54:52 -04:00
|
|
|
inc_dir = get_python_inc(plat_specific=1)
|
|
|
|
return os.path.join(inc_dir, "config.h")
|
2000-03-08 23:16:05 -04:00
|
|
|
|
1998-12-18 19:46:33 -04:00
|
|
|
|
1999-01-06 10:46:06 -04:00
|
|
|
def get_makefile_filename():
|
1999-01-06 12:28:34 -04:00
|
|
|
"""Return full pathname of installed Makefile from the Python build."""
|
2000-03-09 11:54:52 -04:00
|
|
|
lib_dir = get_python_lib(plat_specific=1, standard_lib=1)
|
|
|
|
return os.path.join(lib_dir, "config", "Makefile")
|
2000-03-08 23:16:05 -04:00
|
|
|
|
1998-12-18 19:46:33 -04:00
|
|
|
|
1999-01-06 10:46:06 -04:00
|
|
|
def parse_config_h(fp, g=None):
|
2000-03-09 11:54:52 -04:00
|
|
|
"""Parse a config.h-style file.
|
|
|
|
|
|
|
|
A dictionary containing name/value pairs is returned. If an
|
|
|
|
optional dictionary is passed in as the second argument, it is
|
|
|
|
used instead of a new dictionary.
|
1999-01-06 12:28:34 -04:00
|
|
|
"""
|
1999-01-06 10:46:06 -04:00
|
|
|
if g is None:
|
|
|
|
g = {}
|
1998-12-18 19:46:33 -04:00
|
|
|
define_rx = re.compile("#define ([A-Z][A-Z0-9_]+) (.*)\n")
|
|
|
|
undef_rx = re.compile("/[*] #undef ([A-Z][A-Z0-9_]+) [*]/\n")
|
1999-01-06 10:46:06 -04:00
|
|
|
#
|
1998-12-18 19:46:33 -04:00
|
|
|
while 1:
|
|
|
|
line = fp.readline()
|
|
|
|
if not line:
|
|
|
|
break
|
|
|
|
m = define_rx.match(line)
|
|
|
|
if m:
|
|
|
|
n, v = m.group(1, 2)
|
1998-12-22 08:42:04 -04:00
|
|
|
try: v = string.atoi(v)
|
|
|
|
except ValueError: pass
|
|
|
|
g[n] = v
|
1998-12-18 19:46:33 -04:00
|
|
|
else:
|
|
|
|
m = undef_rx.match(line)
|
|
|
|
if m:
|
|
|
|
g[m.group(1)] = 0
|
1999-01-06 10:46:06 -04:00
|
|
|
return g
|
1998-12-18 19:46:33 -04:00
|
|
|
|
1999-01-06 10:46:06 -04:00
|
|
|
def parse_makefile(fp, g=None):
|
2000-03-09 11:54:52 -04:00
|
|
|
"""Parse a Makefile-style file.
|
|
|
|
|
|
|
|
A dictionary containing name/value pairs is returned. If an
|
|
|
|
optional dictionary is passed in as the second argument, it is
|
|
|
|
used instead of a new dictionary.
|
|
|
|
|
1999-01-06 12:28:34 -04:00
|
|
|
"""
|
1999-01-06 10:46:06 -04:00
|
|
|
if g is None:
|
|
|
|
g = {}
|
1998-12-18 19:46:33 -04:00
|
|
|
variable_rx = re.compile("([a-zA-Z][a-zA-Z0-9_]+)\s*=\s*(.*)\n")
|
|
|
|
done = {}
|
|
|
|
notdone = {}
|
1999-01-06 10:46:06 -04:00
|
|
|
#
|
1998-12-18 19:46:33 -04:00
|
|
|
while 1:
|
|
|
|
line = fp.readline()
|
|
|
|
if not line:
|
|
|
|
break
|
|
|
|
m = variable_rx.match(line)
|
|
|
|
if m:
|
|
|
|
n, v = m.group(1, 2)
|
1998-12-22 08:42:04 -04:00
|
|
|
v = string.strip(v)
|
1998-12-18 19:46:33 -04:00
|
|
|
if "$" in v:
|
|
|
|
notdone[n] = v
|
|
|
|
else:
|
1998-12-22 08:42:04 -04:00
|
|
|
try: v = string.atoi(v)
|
|
|
|
except ValueError: pass
|
1998-12-18 19:46:33 -04:00
|
|
|
done[n] = v
|
|
|
|
|
|
|
|
# do variable interpolation here
|
|
|
|
findvar1_rx = re.compile(r"\$\(([A-Za-z][A-Za-z0-9_]*)\)")
|
|
|
|
findvar2_rx = re.compile(r"\${([A-Za-z][A-Za-z0-9_]*)}")
|
|
|
|
while notdone:
|
|
|
|
for name in notdone.keys():
|
|
|
|
value = notdone[name]
|
|
|
|
m = findvar1_rx.search(value)
|
|
|
|
if not m:
|
|
|
|
m = findvar2_rx.search(value)
|
|
|
|
if m:
|
|
|
|
n = m.group(1)
|
|
|
|
if done.has_key(n):
|
|
|
|
after = value[m.end():]
|
|
|
|
value = value[:m.start()] + done[n] + after
|
|
|
|
if "$" in after:
|
|
|
|
notdone[name] = value
|
|
|
|
else:
|
1998-12-22 08:42:04 -04:00
|
|
|
try: value = string.atoi(value)
|
|
|
|
except ValueError: pass
|
|
|
|
done[name] = string.strip(value)
|
1998-12-18 19:46:33 -04:00
|
|
|
del notdone[name]
|
|
|
|
elif notdone.has_key(n):
|
|
|
|
# get it on a subsequent round
|
|
|
|
pass
|
|
|
|
else:
|
|
|
|
done[n] = ""
|
|
|
|
after = value[m.end():]
|
|
|
|
value = value[:m.start()] + after
|
|
|
|
if "$" in after:
|
|
|
|
notdone[name] = value
|
|
|
|
else:
|
1998-12-22 08:42:04 -04:00
|
|
|
try: value = string.atoi(value)
|
|
|
|
except ValueError: pass
|
|
|
|
done[name] = string.strip(value)
|
1998-12-18 19:46:33 -04:00
|
|
|
del notdone[name]
|
|
|
|
else:
|
1998-12-22 08:42:04 -04:00
|
|
|
# bogus variable reference; just drop it since we can't deal
|
1998-12-18 19:46:33 -04:00
|
|
|
del notdone[name]
|
|
|
|
|
|
|
|
# save the results in the global dictionary
|
|
|
|
g.update(done)
|
1999-01-06 10:46:06 -04:00
|
|
|
return g
|
1998-12-18 19:46:33 -04:00
|
|
|
|
|
|
|
|
1999-01-06 10:46:06 -04:00
|
|
|
def _init_posix():
|
1999-01-06 12:28:34 -04:00
|
|
|
"""Initialize the module as appropriate for POSIX systems."""
|
1999-01-06 10:46:06 -04:00
|
|
|
g = globals()
|
|
|
|
# load the installed config.h:
|
|
|
|
parse_config_h(open(get_config_h_filename()), g)
|
2000-02-01 20:05:14 -04:00
|
|
|
# load the installed Makefile:
|
1999-01-06 10:46:06 -04:00
|
|
|
parse_makefile(open(get_makefile_filename()), g)
|
|
|
|
|
|
|
|
|
1999-06-07 22:58:36 -03:00
|
|
|
def _init_nt():
|
|
|
|
"""Initialize the module as appropriate for NT"""
|
2000-02-08 11:55:42 -04:00
|
|
|
g = globals()
|
1999-06-07 22:58:36 -03:00
|
|
|
# load config.h, though I don't know how useful this is
|
2000-02-08 11:55:42 -04:00
|
|
|
parse_config_h(open(get_config_h_filename()), g)
|
1999-06-07 22:58:36 -03:00
|
|
|
# set basic install directories
|
2000-03-09 11:54:52 -04:00
|
|
|
g['LIBDEST'] = get_python_lib(plat_specific=0, standard_lib=1)
|
|
|
|
g['BINLIBDEST'] = get_python_lib(plat_specific=1, standard_lib=1)
|
1999-06-07 22:58:36 -03:00
|
|
|
|
1999-08-29 15:22:13 -03:00
|
|
|
# XXX hmmm.. a normal install puts include files here
|
2000-03-09 11:54:52 -04:00
|
|
|
g['INCLUDEPY'] = get_python_inc(plat_specific=0)
|
1999-08-29 15:22:13 -03:00
|
|
|
|
2000-02-08 11:55:42 -04:00
|
|
|
g['SO'] = '.pyd'
|
2000-02-01 20:05:14 -04:00
|
|
|
g['exec_prefix'] = exec_prefix
|
1999-01-06 10:46:06 -04:00
|
|
|
|
2000-02-08 11:55:42 -04:00
|
|
|
|
2000-03-06 23:30:09 -04:00
|
|
|
def _init_mac():
|
|
|
|
"""Initialize the module as appropriate for Macintosh systems"""
|
|
|
|
g = globals()
|
|
|
|
# load the installed config.h (what if not installed? - still need to
|
|
|
|
# be able to install packages which don't require compilation)
|
|
|
|
parse_config_h(open(
|
|
|
|
os.path.join(sys.exec_prefix, "Mac", "Include", "config.h")), g)
|
|
|
|
# set basic install directories
|
2000-03-09 11:54:52 -04:00
|
|
|
g['LIBDEST'] = get_python_lib(plat_specific=0, standard_lib=1)
|
|
|
|
g['BINLIBDEST'] = get_python_lib(plat_specific=1, standard_lib=1)
|
2000-03-06 23:30:09 -04:00
|
|
|
|
|
|
|
# XXX hmmm.. a normal install puts include files here
|
2000-03-09 11:54:52 -04:00
|
|
|
g['INCLUDEPY'] = get_python_inc(plat_specific=0)
|
2000-03-06 23:30:09 -04:00
|
|
|
|
|
|
|
g['SO'] = '.ppc.slb'
|
|
|
|
g['exec_prefix'] = sys.exec_prefix
|
|
|
|
print sys.prefix
|
2000-03-08 23:16:05 -04:00
|
|
|
|
|
|
|
# XXX are these used anywhere?
|
2000-03-06 23:30:09 -04:00
|
|
|
g['install_lib'] = os.path.join(sys.exec_prefix, "Lib")
|
|
|
|
g['install_platlib'] = os.path.join(sys.exec_prefix, "Mac", "Lib")
|
|
|
|
|
|
|
|
|
1999-01-06 10:46:06 -04:00
|
|
|
try:
|
|
|
|
exec "_init_" + os.name
|
|
|
|
except NameError:
|
|
|
|
# not needed for this platform
|
|
|
|
pass
|
|
|
|
else:
|
|
|
|
exec "_init_%s()" % os.name
|
|
|
|
|
2000-02-08 11:55:42 -04:00
|
|
|
|
1998-12-18 19:46:33 -04:00
|
|
|
del _init_posix
|
1999-06-07 22:58:36 -03:00
|
|
|
del _init_nt
|
2000-03-06 23:30:09 -04:00
|
|
|
del _init_mac
|