blob: c1aaf79a677ba2575a0ca123630fbc19fad48178 [file] [log] [blame]
Tarek Ziade1231a4e2011-05-19 13:07:25 +02001"""Access to Python's configuration information."""
Tarek Ziadéedacea32010-01-29 11:41:03 +00002
Tarek Ziadéedacea32010-01-29 11:41:03 +00003import os
Tarek Ziade1231a4e2011-05-19 13:07:25 +02004import sys
Florent Xiclunaa4707382010-03-11 00:05:17 +00005from os.path import pardir, realpath
Tarek Ziadéedacea32010-01-29 11:41:03 +00006
Barry Warsawebbef6f2010-09-20 15:29:53 +00007__all__ = [
8 'get_config_h_filename',
9 'get_config_var',
10 'get_config_vars',
11 'get_makefile_filename',
12 'get_path',
13 'get_path_names',
14 'get_paths',
15 'get_platform',
16 'get_python_version',
17 'get_scheme_names',
18 'parse_config_h',
Tarek Ziade1231a4e2011-05-19 13:07:25 +020019]
Tarek Ziadé16ed6cb2010-05-25 09:47:06 +000020
Éric Araujoec177c12012-06-24 03:27:43 -040021_INSTALL_SCHEMES = {
22 'posix_prefix': {
Victor Stinner8510f432020-03-10 09:53:09 +010023 'stdlib': '{installed_base}/{platlibdir}/python{py_version_short}',
24 'platstdlib': '{platbase}/{platlibdir}/python{py_version_short}',
Éric Araujoec177c12012-06-24 03:27:43 -040025 'purelib': '{base}/lib/python{py_version_short}/site-packages',
Victor Stinner8510f432020-03-10 09:53:09 +010026 'platlib': '{platbase}/{platlibdir}/python{py_version_short}/site-packages',
Éric Araujoec177c12012-06-24 03:27:43 -040027 'include':
28 '{installed_base}/include/python{py_version_short}{abiflags}',
29 'platinclude':
30 '{installed_platbase}/include/python{py_version_short}{abiflags}',
31 'scripts': '{base}/bin',
32 'data': '{base}',
33 },
34 'posix_home': {
35 'stdlib': '{installed_base}/lib/python',
36 'platstdlib': '{base}/lib/python',
37 'purelib': '{base}/lib/python',
38 'platlib': '{base}/lib/python',
39 'include': '{installed_base}/include/python',
40 'platinclude': '{installed_base}/include/python',
41 'scripts': '{base}/bin',
42 'data': '{base}',
43 },
44 'nt': {
45 'stdlib': '{installed_base}/Lib',
46 'platstdlib': '{base}/Lib',
47 'purelib': '{base}/Lib/site-packages',
48 'platlib': '{base}/Lib/site-packages',
49 'include': '{installed_base}/Include',
50 'platinclude': '{installed_base}/Include',
51 'scripts': '{base}/Scripts',
52 'data': '{base}',
53 },
pxinwrab74c012020-12-21 06:27:42 +080054 }
55
56
57# NOTE: site.py has copy of this function.
58# Sync it when modify this function.
59def _getuserbase():
60 env_base = os.environ.get("PYTHONUSERBASE", None)
61 if env_base:
62 return env_base
63
64 # VxWorks has no home directories
65 if sys.platform == "vxworks":
66 return None
67
68 def joinuser(*args):
69 return os.path.expanduser(os.path.join(*args))
70
71 if os.name == "nt":
72 base = os.environ.get("APPDATA") or "~"
73 return joinuser(base, "Python")
74
75 if sys.platform == "darwin" and sys._framework:
76 return joinuser("~", "Library", sys._framework,
77 "%d.%d" % sys.version_info[:2])
78
79 return joinuser("~", ".local")
80
81_HAS_USER_BASE = (_getuserbase() is not None)
82
83if _HAS_USER_BASE:
84 _INSTALL_SCHEMES |= {
85 # NOTE: When modifying "purelib" scheme, update site._get_path() too.
86 'nt_user': {
87 'stdlib': '{userbase}/Python{py_version_nodot_plat}',
88 'platstdlib': '{userbase}/Python{py_version_nodot_plat}',
89 'purelib': '{userbase}/Python{py_version_nodot_plat}/site-packages',
90 'platlib': '{userbase}/Python{py_version_nodot_plat}/site-packages',
91 'include': '{userbase}/Python{py_version_nodot_plat}/Include',
92 'scripts': '{userbase}/Python{py_version_nodot_plat}/Scripts',
93 'data': '{userbase}',
94 },
95 'posix_user': {
96 'stdlib': '{userbase}/{platlibdir}/python{py_version_short}',
97 'platstdlib': '{userbase}/{platlibdir}/python{py_version_short}',
98 'purelib': '{userbase}/lib/python{py_version_short}/site-packages',
99 'platlib': '{userbase}/{platlibdir}/python{py_version_short}/site-packages',
100 'include': '{userbase}/include/python{py_version_short}',
101 'scripts': '{userbase}/bin',
102 'data': '{userbase}',
103 },
104 'osx_framework_user': {
105 'stdlib': '{userbase}/lib/python',
106 'platstdlib': '{userbase}/lib/python',
107 'purelib': '{userbase}/lib/python/site-packages',
108 'platlib': '{userbase}/lib/python/site-packages',
109 'include': '{userbase}/include',
110 'scripts': '{userbase}/bin',
111 'data': '{userbase}',
112 },
Éric Araujoec177c12012-06-24 03:27:43 -0400113 }
Tarek Ziadéedacea32010-01-29 11:41:03 +0000114
Éric Araujoec177c12012-06-24 03:27:43 -0400115_SCHEME_KEYS = ('stdlib', 'platstdlib', 'purelib', 'platlib', 'include',
116 'scripts', 'data')
Tarek Ziade1231a4e2011-05-19 13:07:25 +0200117
Tarek Ziadéedacea32010-01-29 11:41:03 +0000118_PY_VERSION = sys.version.split()[0]
Serhiy Storchaka885bdc42016-02-11 13:10:36 +0200119_PY_VERSION_SHORT = '%d.%d' % sys.version_info[:2]
120_PY_VERSION_SHORT_NO_DOT = '%d%d' % sys.version_info[:2]
Tarek Ziadéedacea32010-01-29 11:41:03 +0000121_PREFIX = os.path.normpath(sys.prefix)
Vinay Sajip7ded1f02012-05-26 03:45:29 +0100122_BASE_PREFIX = os.path.normpath(sys.base_prefix)
Tarek Ziadéedacea32010-01-29 11:41:03 +0000123_EXEC_PREFIX = os.path.normpath(sys.exec_prefix)
Vinay Sajip7ded1f02012-05-26 03:45:29 +0100124_BASE_EXEC_PREFIX = os.path.normpath(sys.base_exec_prefix)
Tarek Ziadéedacea32010-01-29 11:41:03 +0000125_CONFIG_VARS = None
126_USER_BASE = None
Victor Stinnerb103a932010-10-12 22:23:23 +0000127
Tarek Ziade1231a4e2011-05-19 13:07:25 +0200128
Victor Stinnerb103a932010-10-12 22:23:23 +0000129def _safe_realpath(path):
130 try:
131 return realpath(path)
132 except OSError:
133 return path
134
Victor Stinner171ba052010-03-12 14:20:59 +0000135if sys.executable:
Victor Stinnerb103a932010-10-12 22:23:23 +0000136 _PROJECT_BASE = os.path.dirname(_safe_realpath(sys.executable))
Victor Stinner171ba052010-03-12 14:20:59 +0000137else:
138 # sys.executable can be empty if argv[0] has been changed and Python is
139 # unable to retrieve the real program name
Victor Stinnerb103a932010-10-12 22:23:23 +0000140 _PROJECT_BASE = _safe_realpath(os.getcwd())
Tarek Ziadéedacea32010-01-29 11:41:03 +0000141
Steve Dower65e4cb12014-11-22 12:54:57 -0800142if (os.name == 'nt' and
143 _PROJECT_BASE.lower().endswith(('\\pcbuild\\win32', '\\pcbuild\\amd64'))):
Victor Stinnerb103a932010-10-12 22:23:23 +0000144 _PROJECT_BASE = _safe_realpath(os.path.join(_PROJECT_BASE, pardir, pardir))
Tarek Ziadéedacea32010-01-29 11:41:03 +0000145
doko@ubuntu.com1abe1c52012-06-30 20:42:45 +0200146# set for cross builds
doko@ubuntu.com7e6c2e22012-06-30 22:35:00 +0200147if "_PYTHON_PROJECT_BASE" in os.environ:
148 _PROJECT_BASE = _safe_realpath(os.environ["_PYTHON_PROJECT_BASE"])
doko@ubuntu.com1abe1c52012-06-30 20:42:45 +0200149
Vinay Sajip7ded1f02012-05-26 03:45:29 +0100150def _is_python_source_dir(d):
Antoine Pitrou961d54c2018-07-16 19:03:03 +0200151 for fn in ("Setup", "Setup.local"):
Vinay Sajip7ded1f02012-05-26 03:45:29 +0100152 if os.path.isfile(os.path.join(d, "Modules", fn)):
Tarek Ziadéedacea32010-01-29 11:41:03 +0000153 return True
154 return False
155
Vinay Sajip7ded1f02012-05-26 03:45:29 +0100156_sys_home = getattr(sys, '_home', None)
Steve Dower85e102a2019-02-04 17:15:13 -0800157
158if os.name == 'nt':
159 def _fix_pcbuild(d):
160 if d and os.path.normcase(d).startswith(
161 os.path.normcase(os.path.join(_PREFIX, "PCbuild"))):
162 return _PREFIX
163 return d
164 _PROJECT_BASE = _fix_pcbuild(_PROJECT_BASE)
165 _sys_home = _fix_pcbuild(_sys_home)
166
Vinay Sajip7ded1f02012-05-26 03:45:29 +0100167def is_python_build(check_home=False):
168 if check_home and _sys_home:
169 return _is_python_source_dir(_sys_home)
170 return _is_python_source_dir(_PROJECT_BASE)
171
172_PYTHON_BUILD = is_python_build(True)
Tarek Ziadéedacea32010-01-29 11:41:03 +0000173
174if _PYTHON_BUILD:
175 for scheme in ('posix_prefix', 'posix_home'):
Éric Araujoec177c12012-06-24 03:27:43 -0400176 _INSTALL_SCHEMES[scheme]['include'] = '{srcdir}/Include'
177 _INSTALL_SCHEMES[scheme]['platinclude'] = '{projectbase}/.'
Tarek Ziadéedacea32010-01-29 11:41:03 +0000178
Tarek Ziade1231a4e2011-05-19 13:07:25 +0200179
Éric Araujoec177c12012-06-24 03:27:43 -0400180def _subst_vars(s, local_vars):
181 try:
182 return s.format(**local_vars)
Steve Dowerdd180012020-09-05 00:45:54 +0100183 except KeyError as var:
Éric Araujoec177c12012-06-24 03:27:43 -0400184 try:
185 return s.format(**os.environ)
Steve Dowerdd180012020-09-05 00:45:54 +0100186 except KeyError:
Serhiy Storchaka5affd232017-04-05 09:37:24 +0300187 raise AttributeError('{%s}' % var) from None
Tarek Ziadéedacea32010-01-29 11:41:03 +0000188
189def _extend_dict(target_dict, other_dict):
190 target_keys = target_dict.keys()
191 for key, value in other_dict.items():
192 if key in target_keys:
193 continue
194 target_dict[key] = value
195
Tarek Ziade1231a4e2011-05-19 13:07:25 +0200196
Tarek Ziadéedacea32010-01-29 11:41:03 +0000197def _expand_vars(scheme, vars):
198 res = {}
199 if vars is None:
200 vars = {}
201 _extend_dict(vars, get_config_vars())
202
Éric Araujoec177c12012-06-24 03:27:43 -0400203 for key, value in _INSTALL_SCHEMES[scheme].items():
Tarek Ziadéedacea32010-01-29 11:41:03 +0000204 if os.name in ('posix', 'nt'):
205 value = os.path.expanduser(value)
206 res[key] = os.path.normpath(_subst_vars(value, vars))
207 return res
208
Tarek Ziade1231a4e2011-05-19 13:07:25 +0200209
Tarek Ziadéedacea32010-01-29 11:41:03 +0000210def _get_default_scheme():
211 if os.name == 'posix':
212 # the default scheme for posix is posix_prefix
213 return 'posix_prefix'
214 return os.name
215
Tarek Ziade1231a4e2011-05-19 13:07:25 +0200216
Tarek Ziadéedacea32010-01-29 11:41:03 +0000217
218
219def _parse_makefile(filename, vars=None):
220 """Parse a Makefile-style file.
221
222 A dictionary containing name/value pairs is returned. If an
223 optional dictionary is passed in as the second argument, it is
224 used instead of a new dictionary.
225 """
Tarek Ziadéedacea32010-01-29 11:41:03 +0000226 # Regexes needed for parsing Makefile (and similar syntaxes,
227 # like old-style Setup files).
Christian Heimes8c9cd5a2013-10-12 00:24:55 +0200228 import re
R David Murray44b548d2016-09-08 13:59:53 -0400229 _variable_rx = re.compile(r"([a-zA-Z][a-zA-Z0-9_]+)\s*=\s*(.*)")
Tarek Ziadéedacea32010-01-29 11:41:03 +0000230 _findvar1_rx = re.compile(r"\$\(([A-Za-z][A-Za-z0-9_]*)\)")
231 _findvar2_rx = re.compile(r"\${([A-Za-z][A-Za-z0-9_]*)}")
232
233 if vars is None:
234 vars = {}
235 done = {}
236 notdone = {}
237
Victor Stinner75d8c5c2010-10-23 17:02:31 +0000238 with open(filename, errors="surrogateescape") as f:
Tarek Ziadéedacea32010-01-29 11:41:03 +0000239 lines = f.readlines()
240
241 for line in lines:
242 if line.startswith('#') or line.strip() == '':
243 continue
244 m = _variable_rx.match(line)
245 if m:
246 n, v = m.group(1, 2)
247 v = v.strip()
248 # `$$' is a literal `$' in make
249 tmpv = v.replace('$$', '')
250
251 if "$" in tmpv:
252 notdone[n] = v
253 else:
254 try:
255 v = int(v)
256 except ValueError:
257 # insert literal `$'
258 done[n] = v.replace('$$', '$')
259 else:
260 done[n] = v
261
262 # do variable interpolation here
263 variables = list(notdone.keys())
264
Ronald Oussorend21886c2010-07-20 16:07:10 +0000265 # Variables with a 'PY_' prefix in the makefile. These need to
266 # be made available without that prefix through sysconfig.
267 # Special care is needed to ensure that variable expansion works, even
268 # if the expansion uses the name without a prefix.
269 renamed_variables = ('CFLAGS', 'LDFLAGS', 'CPPFLAGS')
270
Tarek Ziadéedacea32010-01-29 11:41:03 +0000271 while len(variables) > 0:
272 for name in tuple(variables):
273 value = notdone[name]
doko@ubuntu.comb2b12172016-01-11 21:41:40 +0100274 m1 = _findvar1_rx.search(value)
275 m2 = _findvar2_rx.search(value)
276 if m1 and m2:
277 m = m1 if m1.start() < m2.start() else m2
278 else:
279 m = m1 if m1 else m2
Tarek Ziadéedacea32010-01-29 11:41:03 +0000280 if m is not None:
281 n = m.group(1)
282 found = True
283 if n in done:
284 item = str(done[n])
285 elif n in notdone:
286 # get it on a subsequent round
287 found = False
288 elif n in os.environ:
289 # do it like make: fall back to environment
290 item = os.environ[n]
Ronald Oussorend21886c2010-07-20 16:07:10 +0000291
292 elif n in renamed_variables:
Tarek Ziade1231a4e2011-05-19 13:07:25 +0200293 if (name.startswith('PY_') and
294 name[3:] in renamed_variables):
Ronald Oussorend21886c2010-07-20 16:07:10 +0000295 item = ""
296
297 elif 'PY_' + n in notdone:
298 found = False
299
300 else:
301 item = str(done['PY_' + n])
302
Tarek Ziadéedacea32010-01-29 11:41:03 +0000303 else:
304 done[n] = item = ""
Ronald Oussorend21886c2010-07-20 16:07:10 +0000305
Tarek Ziadéedacea32010-01-29 11:41:03 +0000306 if found:
307 after = value[m.end():]
308 value = value[:m.start()] + item + after
309 if "$" in after:
310 notdone[name] = value
311 else:
312 try:
313 value = int(value)
314 except ValueError:
315 done[name] = value.strip()
316 else:
317 done[name] = value
318 variables.remove(name)
Ronald Oussorend21886c2010-07-20 16:07:10 +0000319
320 if name.startswith('PY_') \
Victor Stinner1273b7c2011-05-24 23:37:07 +0200321 and name[3:] in renamed_variables:
Ronald Oussorend21886c2010-07-20 16:07:10 +0000322
323 name = name[3:]
324 if name not in done:
325 done[name] = value
326
Tarek Ziadéedacea32010-01-29 11:41:03 +0000327 else:
Victor Stinner1273b7c2011-05-24 23:37:07 +0200328 # bogus variable reference (e.g. "prefix=$/opt/python");
329 # just drop it since we can't deal
330 done[name] = value
Tarek Ziadéedacea32010-01-29 11:41:03 +0000331 variables.remove(name)
332
Antoine Pitroudbec7802010-10-10 09:37:12 +0000333 # strip spurious spaces
334 for k, v in done.items():
335 if isinstance(v, str):
336 done[k] = v.strip()
337
Tarek Ziadéedacea32010-01-29 11:41:03 +0000338 # save the results in the global dictionary
339 vars.update(done)
340 return vars
341
Tarek Ziadéedacea32010-01-29 11:41:03 +0000342
Barry Warsawebbef6f2010-09-20 15:29:53 +0000343def get_makefile_filename():
Éric Araujo300623d2010-11-22 01:19:20 +0000344 """Return the path of the Makefile."""
Tarek Ziadéedacea32010-01-29 11:41:03 +0000345 if _PYTHON_BUILD:
Vinay Sajip7ded1f02012-05-26 03:45:29 +0100346 return os.path.join(_sys_home or _PROJECT_BASE, "Makefile")
Tarek Ziade1231a4e2011-05-19 13:07:25 +0200347 if hasattr(sys, 'abiflags'):
348 config_dir_name = 'config-%s%s' % (_PY_VERSION_SHORT, sys.abiflags)
349 else:
350 config_dir_name = 'config'
doko@ubuntu.com55532312016-06-14 08:55:19 +0200351 if hasattr(sys.implementation, '_multiarch'):
352 config_dir_name += '-%s' % sys.implementation._multiarch
Tarek Ziade1231a4e2011-05-19 13:07:25 +0200353 return os.path.join(get_path('stdlib'), config_dir_name, 'Makefile')
Tarek Ziadéedacea32010-01-29 11:41:03 +0000354
Zachary Warec4b53af2016-09-09 17:59:49 -0700355
Xavier de Gaye92dec542016-09-11 22:22:24 +0200356def _get_sysconfigdata_name():
357 return os.environ.get('_PYTHON_SYSCONFIGDATA_NAME',
358 '_sysconfigdata_{abi}_{platform}_{multiarch}'.format(
359 abi=sys.abiflags,
360 platform=sys.platform,
361 multiarch=getattr(sys.implementation, '_multiarch', ''),
362 ))
Zachary Warec4b53af2016-09-09 17:59:49 -0700363
364
Antoine Pitrou1e73a242011-10-18 17:52:24 +0200365def _generate_posix_vars():
366 """Generate the Python module containing build-time variables."""
367 import pprint
368 vars = {}
Tarek Ziadéedacea32010-01-29 11:41:03 +0000369 # load the installed Makefile:
Barry Warsawebbef6f2010-09-20 15:29:53 +0000370 makefile = get_makefile_filename()
Tarek Ziadéedacea32010-01-29 11:41:03 +0000371 try:
372 _parse_makefile(makefile, vars)
Andrew Svetlovf7a17b42012-12-25 16:47:37 +0200373 except OSError as e:
Tarek Ziadéedacea32010-01-29 11:41:03 +0000374 msg = "invalid Python installation: unable to open %s" % makefile
375 if hasattr(e, "strerror"):
376 msg = msg + " (%s)" % e.strerror
Andrew Svetlovf7a17b42012-12-25 16:47:37 +0200377 raise OSError(msg)
Tarek Ziadéedacea32010-01-29 11:41:03 +0000378 # load the installed pyconfig.h:
379 config_h = get_config_h_filename()
380 try:
Antoine Pitroub86680e2010-10-14 21:15:17 +0000381 with open(config_h) as f:
382 parse_config_h(f, vars)
Andrew Svetlovf7a17b42012-12-25 16:47:37 +0200383 except OSError as e:
Tarek Ziadéedacea32010-01-29 11:41:03 +0000384 msg = "invalid Python installation: unable to open %s" % config_h
385 if hasattr(e, "strerror"):
386 msg = msg + " (%s)" % e.strerror
Andrew Svetlovf7a17b42012-12-25 16:47:37 +0200387 raise OSError(msg)
Tarek Ziadéedacea32010-01-29 11:41:03 +0000388 # On AIX, there are wrong paths to the linker scripts in the Makefile
389 # -- these paths are relative to the Python source, but when installed
390 # the scripts are in another directory.
391 if _PYTHON_BUILD:
Antoine Pitrou0abb2182013-10-19 22:05:05 +0200392 vars['BLDSHARED'] = vars['LDSHARED']
Victor Stinner65651ea2011-10-20 00:41:21 +0200393
Trent Nelsonee528cc2012-10-17 04:23:50 -0400394 # There's a chicken-and-egg situation on OS X with regards to the
395 # _sysconfigdata module after the changes introduced by #15298:
396 # get_config_vars() is called by get_platform() as part of the
397 # `make pybuilddir.txt` target -- which is a precursor to the
398 # _sysconfigdata.py module being constructed. Unfortunately,
399 # get_config_vars() eventually calls _init_posix(), which attempts
Trent Nelsonecbe2a92012-10-17 18:03:24 -0400400 # to import _sysconfigdata, which we won't have built yet. In order
401 # for _init_posix() to work, if we're on Darwin, just mock up the
402 # _sysconfigdata module manually and populate it with the build vars.
403 # This is more than sufficient for ensuring the subsequent call to
404 # get_platform() succeeds.
Xavier de Gaye92dec542016-09-11 22:22:24 +0200405 name = _get_sysconfigdata_name()
Trent Nelsonecbe2a92012-10-17 18:03:24 -0400406 if 'darwin' in sys.platform:
Brett Cannonf15a59f2013-06-15 14:32:11 -0400407 import types
408 module = types.ModuleType(name)
Trent Nelsonecbe2a92012-10-17 18:03:24 -0400409 module.build_time_vars = vars
410 sys.modules[name] = module
Tarek Ziadéedacea32010-01-29 11:41:03 +0000411
Serhiy Storchaka885bdc42016-02-11 13:10:36 +0200412 pybuilddir = 'build/lib.%s-%s' % (get_platform(), _PY_VERSION_SHORT)
Trent Nelsonee528cc2012-10-17 04:23:50 -0400413 if hasattr(sys, "gettotalrefcount"):
414 pybuilddir += '-pydebug'
415 os.makedirs(pybuilddir, exist_ok=True)
Trent Nelsonecbe2a92012-10-17 18:03:24 -0400416 destfile = os.path.join(pybuilddir, name + '.py')
Trent Nelsonee528cc2012-10-17 04:23:50 -0400417
Trent Nelsonecbe2a92012-10-17 18:03:24 -0400418 with open(destfile, 'w', encoding='utf8') as f:
419 f.write('# system configuration generated and used by'
420 ' the sysconfig module\n')
421 f.write('build_time_vars = ')
422 pprint.pprint(vars, stream=f)
Trent Nelsonee528cc2012-10-17 04:23:50 -0400423
Trent Nelsonc101bf32012-10-16 08:13:12 -0400424 # Create file used for sys.path fixup -- see Modules/getpath.c
Victor Stinner52ad33a2019-09-25 02:10:35 +0200425 with open('pybuilddir.txt', 'w', encoding='utf8') as f:
Trent Nelsonc101bf32012-10-16 08:13:12 -0400426 f.write(pybuilddir)
427
Antoine Pitrou1e73a242011-10-18 17:52:24 +0200428def _init_posix(vars):
429 """Initialize the module as appropriate for POSIX systems."""
430 # _sysconfigdata is generated at build time, see _generate_posix_vars()
Zachary Warec4b53af2016-09-09 17:59:49 -0700431 name = _get_sysconfigdata_name()
doko@ubuntu.com55532312016-06-14 08:55:19 +0200432 _temp = __import__(name, globals(), locals(), ['build_time_vars'], 0)
433 build_time_vars = _temp.build_time_vars
Antoine Pitrou1e73a242011-10-18 17:52:24 +0200434 vars.update(build_time_vars)
Tarek Ziade1231a4e2011-05-19 13:07:25 +0200435
Tarek Ziadéedacea32010-01-29 11:41:03 +0000436def _init_non_posix(vars):
437 """Initialize the module as appropriate for NT"""
438 # set basic install directories
Matti Picusc0afb7f2020-12-07 19:33:20 +0200439 import _imp
Tarek Ziadéedacea32010-01-29 11:41:03 +0000440 vars['LIBDEST'] = get_path('stdlib')
441 vars['BINLIBDEST'] = get_path('platstdlib')
442 vars['INCLUDEPY'] = get_path('include')
Matti Picusc0afb7f2020-12-07 19:33:20 +0200443 vars['EXT_SUFFIX'] = _imp.extension_suffixes()[0]
Tarek Ziadéedacea32010-01-29 11:41:03 +0000444 vars['EXE'] = '.exe'
445 vars['VERSION'] = _PY_VERSION_SHORT_NO_DOT
Victor Stinnerb103a932010-10-12 22:23:23 +0000446 vars['BINDIR'] = os.path.dirname(_safe_realpath(sys.executable))
Steve Dowerdd180012020-09-05 00:45:54 +0100447 vars['TZPATH'] = ''
Tarek Ziadéedacea32010-01-29 11:41:03 +0000448
449#
450# public APIs
451#
452
Tarek Ziadébd797682010-02-02 23:16:13 +0000453
454def parse_config_h(fp, vars=None):
455 """Parse a config.h-style file.
456
457 A dictionary containing name/value pairs is returned. If an
458 optional dictionary is passed in as the second argument, it is
459 used instead of a new dictionary.
460 """
Tarek Ziadébd797682010-02-02 23:16:13 +0000461 if vars is None:
462 vars = {}
Christian Heimes8c9cd5a2013-10-12 00:24:55 +0200463 import re
Tarek Ziadébd797682010-02-02 23:16:13 +0000464 define_rx = re.compile("#define ([A-Z][A-Za-z0-9_]+) (.*)\n")
465 undef_rx = re.compile("/[*] #undef ([A-Z][A-Za-z0-9_]+) [*]/\n")
466
467 while True:
468 line = fp.readline()
469 if not line:
470 break
471 m = define_rx.match(line)
472 if m:
473 n, v = m.group(1, 2)
Tarek Ziade1231a4e2011-05-19 13:07:25 +0200474 try:
475 v = int(v)
476 except ValueError:
477 pass
Tarek Ziadébd797682010-02-02 23:16:13 +0000478 vars[n] = v
479 else:
480 m = undef_rx.match(line)
481 if m:
482 vars[m.group(1)] = 0
483 return vars
484
Tarek Ziade1231a4e2011-05-19 13:07:25 +0200485
Tarek Ziadébd797682010-02-02 23:16:13 +0000486def get_config_h_filename():
Éric Araujo300623d2010-11-22 01:19:20 +0000487 """Return the path of pyconfig.h."""
Tarek Ziadébd797682010-02-02 23:16:13 +0000488 if _PYTHON_BUILD:
489 if os.name == "nt":
Vinay Sajip7ded1f02012-05-26 03:45:29 +0100490 inc_dir = os.path.join(_sys_home or _PROJECT_BASE, "PC")
Tarek Ziadébd797682010-02-02 23:16:13 +0000491 else:
Vinay Sajip7ded1f02012-05-26 03:45:29 +0100492 inc_dir = _sys_home or _PROJECT_BASE
Tarek Ziadébd797682010-02-02 23:16:13 +0000493 else:
494 inc_dir = get_path('platinclude')
495 return os.path.join(inc_dir, 'pyconfig.h')
496
Tarek Ziade1231a4e2011-05-19 13:07:25 +0200497
Tarek Ziadéedacea32010-01-29 11:41:03 +0000498def get_scheme_names():
Éric Araujo300623d2010-11-22 01:19:20 +0000499 """Return a tuple containing the schemes names."""
Éric Araujoec177c12012-06-24 03:27:43 -0400500 return tuple(sorted(_INSTALL_SCHEMES))
Tarek Ziade1231a4e2011-05-19 13:07:25 +0200501
Tarek Ziadéedacea32010-01-29 11:41:03 +0000502
503def get_path_names():
Éric Araujo300623d2010-11-22 01:19:20 +0000504 """Return a tuple containing the paths names."""
Éric Araujoec177c12012-06-24 03:27:43 -0400505 return _SCHEME_KEYS
Tarek Ziade1231a4e2011-05-19 13:07:25 +0200506
Tarek Ziadéedacea32010-01-29 11:41:03 +0000507
508def get_paths(scheme=_get_default_scheme(), vars=None, expand=True):
Éric Araujo300623d2010-11-22 01:19:20 +0000509 """Return a mapping containing an install scheme.
Tarek Ziadéedacea32010-01-29 11:41:03 +0000510
511 ``scheme`` is the install scheme name. If not provided, it will
512 return the default scheme for the current platform.
513 """
514 if expand:
515 return _expand_vars(scheme, vars)
516 else:
Éric Araujoec177c12012-06-24 03:27:43 -0400517 return _INSTALL_SCHEMES[scheme]
Tarek Ziade1231a4e2011-05-19 13:07:25 +0200518
Tarek Ziadéedacea32010-01-29 11:41:03 +0000519
520def get_path(name, scheme=_get_default_scheme(), vars=None, expand=True):
Éric Araujo300623d2010-11-22 01:19:20 +0000521 """Return a path corresponding to the scheme.
Tarek Ziadéedacea32010-01-29 11:41:03 +0000522
523 ``scheme`` is the install scheme name.
524 """
525 return get_paths(scheme, vars, expand)[name]
526
Tarek Ziade1231a4e2011-05-19 13:07:25 +0200527
Tarek Ziadéedacea32010-01-29 11:41:03 +0000528def get_config_vars(*args):
529 """With no arguments, return a dictionary of all configuration
530 variables relevant for the current platform.
531
532 On Unix, this means every variable defined in Python's installed Makefile;
Ned Deilydf8aa2b2012-07-21 05:36:30 -0700533 On Windows it's a much smaller set.
Tarek Ziadéedacea32010-01-29 11:41:03 +0000534
535 With arguments, return a list of values that result from looking up
536 each argument in the configuration variable dictionary.
537 """
Tarek Ziadéedacea32010-01-29 11:41:03 +0000538 global _CONFIG_VARS
539 if _CONFIG_VARS is None:
540 _CONFIG_VARS = {}
541 # Normalized versions of prefix and exec_prefix are handy to have;
542 # in fact, these are the standard versions used most places in the
Éric Araujo859aad62012-06-24 00:07:41 -0400543 # Distutils.
Tarek Ziadéedacea32010-01-29 11:41:03 +0000544 _CONFIG_VARS['prefix'] = _PREFIX
545 _CONFIG_VARS['exec_prefix'] = _EXEC_PREFIX
546 _CONFIG_VARS['py_version'] = _PY_VERSION
547 _CONFIG_VARS['py_version_short'] = _PY_VERSION_SHORT
Serhiy Storchaka885bdc42016-02-11 13:10:36 +0200548 _CONFIG_VARS['py_version_nodot'] = _PY_VERSION_SHORT_NO_DOT
Vinay Sajip7ded1f02012-05-26 03:45:29 +0100549 _CONFIG_VARS['installed_base'] = _BASE_PREFIX
Tarek Ziadéedacea32010-01-29 11:41:03 +0000550 _CONFIG_VARS['base'] = _PREFIX
Vinay Sajip7ded1f02012-05-26 03:45:29 +0100551 _CONFIG_VARS['installed_platbase'] = _BASE_EXEC_PREFIX
Tarek Ziadéedacea32010-01-29 11:41:03 +0000552 _CONFIG_VARS['platbase'] = _EXEC_PREFIX
Tarek Ziadéedacea32010-01-29 11:41:03 +0000553 _CONFIG_VARS['projectbase'] = _PROJECT_BASE
Victor Stinner8510f432020-03-10 09:53:09 +0100554 _CONFIG_VARS['platlibdir'] = sys.platlibdir
Barry Warsawd5eaa5f2010-11-25 01:34:47 +0000555 try:
556 _CONFIG_VARS['abiflags'] = sys.abiflags
557 except AttributeError:
558 # sys.abiflags may not be defined on all platforms.
559 _CONFIG_VARS['abiflags'] = ''
Steve Dowerdd180012020-09-05 00:45:54 +0100560 try:
561 _CONFIG_VARS['py_version_nodot_plat'] = sys.winver.replace('.', '')
562 except AttributeError:
563 _CONFIG_VARS['py_version_nodot_plat'] = ''
Tarek Ziadéedacea32010-01-29 11:41:03 +0000564
Jesus Cea4791a242012-10-05 03:15:39 +0200565 if os.name == 'nt':
Tarek Ziadéedacea32010-01-29 11:41:03 +0000566 _init_non_posix(_CONFIG_VARS)
567 if os.name == 'posix':
568 _init_posix(_CONFIG_VARS)
Barry Warsaw87b96372013-11-22 11:08:05 -0500569 # For backward compatibility, see issue19555
570 SO = _CONFIG_VARS.get('EXT_SUFFIX')
571 if SO is not None:
572 _CONFIG_VARS['SO'] = SO
pxinwrab74c012020-12-21 06:27:42 +0800573 if _HAS_USER_BASE:
574 # Setting 'userbase' is done below the call to the
575 # init function to enable using 'get_config_var' in
576 # the init-function.
577 _CONFIG_VARS['userbase'] = _getuserbase()
Ronald Oussoren4cda46a2010-05-08 10:49:43 +0000578
Richard Oudkerk46874ad2012-07-27 12:06:55 +0100579 # Always convert srcdir to an absolute path
580 srcdir = _CONFIG_VARS.get('srcdir', _PROJECT_BASE)
581 if os.name == 'posix':
582 if _PYTHON_BUILD:
583 # If srcdir is a relative path (typically '.' or '..')
584 # then it should be interpreted relative to the directory
585 # containing Makefile.
586 base = os.path.dirname(get_makefile_filename())
587 srcdir = os.path.join(base, srcdir)
588 else:
589 # srcdir is not meaningful since the installation is
590 # spread about the filesystem. We choose the
591 # directory containing the Makefile since we know it
592 # exists.
593 srcdir = os.path.dirname(get_makefile_filename())
594 _CONFIG_VARS['srcdir'] = _safe_realpath(srcdir)
Tarek Ziadéedacea32010-01-29 11:41:03 +0000595
Ned Deilydf8aa2b2012-07-21 05:36:30 -0700596 # OS X platforms require special customization to handle
597 # multi-architecture, multi-os-version installers
Tarek Ziadéedacea32010-01-29 11:41:03 +0000598 if sys.platform == 'darwin':
Ned Deilydf8aa2b2012-07-21 05:36:30 -0700599 import _osx_support
600 _osx_support.customize_config_vars(_CONFIG_VARS)
Tarek Ziadéedacea32010-01-29 11:41:03 +0000601
602 if args:
603 vals = []
604 for name in args:
605 vals.append(_CONFIG_VARS.get(name))
606 return vals
607 else:
608 return _CONFIG_VARS
609
Tarek Ziade1231a4e2011-05-19 13:07:25 +0200610
Tarek Ziadéedacea32010-01-29 11:41:03 +0000611def get_config_var(name):
612 """Return the value of a single variable using the dictionary returned by
613 'get_config_vars()'.
614
615 Equivalent to get_config_vars().get(name)
616 """
Barry Warsaw197a7702013-11-21 18:57:14 -0500617 if name == 'SO':
618 import warnings
Serhiy Storchakaeaec3592013-11-26 17:08:24 +0200619 warnings.warn('SO is deprecated, use EXT_SUFFIX', DeprecationWarning, 2)
Tarek Ziadéedacea32010-01-29 11:41:03 +0000620 return get_config_vars().get(name)
621
Tarek Ziade1231a4e2011-05-19 13:07:25 +0200622
Tarek Ziadéedacea32010-01-29 11:41:03 +0000623def get_platform():
624 """Return a string that identifies the current platform.
625
626 This is used mainly to distinguish platform-specific build directories and
Benjamin Peterson06930632017-09-04 16:36:05 -0700627 platform-specific built distributions. Typically includes the OS name and
628 version and the architecture (as supplied by 'os.uname()'), although the
629 exact information included depends on the OS; on Linux, the kernel version
630 isn't particularly important.
Tarek Ziadéedacea32010-01-29 11:41:03 +0000631
632 Examples of returned values:
633 linux-i586
634 linux-alpha (?)
635 solaris-2.6-sun4u
Tarek Ziadéedacea32010-01-29 11:41:03 +0000636
637 Windows will return one of:
638 win-amd64 (64bit Windows on AMD64 (aka x86_64, Intel64, EM64T, etc)
Tarek Ziadéedacea32010-01-29 11:41:03 +0000639 win32 (all others - specifically, sys.platform is returned)
640
641 For other non-POSIX platforms, currently just returns 'sys.platform'.
Benjamin Peterson06930632017-09-04 16:36:05 -0700642
Tarek Ziadéedacea32010-01-29 11:41:03 +0000643 """
Tarek Ziadéedacea32010-01-29 11:41:03 +0000644 if os.name == 'nt':
Zachary Ware49ce74e2017-09-06 15:45:25 -0700645 if 'amd64' in sys.version.lower():
Tarek Ziadéedacea32010-01-29 11:41:03 +0000646 return 'win-amd64'
Paul Monson62dfd7d2019-04-25 11:36:45 -0700647 if '(arm)' in sys.version.lower():
648 return 'win-arm32'
Paul Monsondaf62622019-06-12 10:16:49 -0700649 if '(arm64)' in sys.version.lower():
650 return 'win-arm64'
Tarek Ziadéedacea32010-01-29 11:41:03 +0000651 return sys.platform
652
653 if os.name != "posix" or not hasattr(os, 'uname'):
Ned Deilydf8aa2b2012-07-21 05:36:30 -0700654 # XXX what about the architecture? NT is Intel or Alpha
Tarek Ziadéedacea32010-01-29 11:41:03 +0000655 return sys.platform
656
doko@ubuntu.com1abe1c52012-06-30 20:42:45 +0200657 # Set for cross builds explicitly
658 if "_PYTHON_HOST_PLATFORM" in os.environ:
659 return os.environ["_PYTHON_HOST_PLATFORM"]
660
Tarek Ziadéedacea32010-01-29 11:41:03 +0000661 # Try to distinguish various flavours of Unix
662 osname, host, release, version, machine = os.uname()
663
Benjamin Peterson288d1da2017-09-28 22:44:27 -0700664 # Convert the OS name to lowercase, remove '/' characters, and translate
665 # spaces (for "Power Macintosh")
Tarek Ziadéedacea32010-01-29 11:41:03 +0000666 osname = osname.lower().replace('/', '')
667 machine = machine.replace(' ', '_')
668 machine = machine.replace('/', '-')
669
670 if osname[:5] == "linux":
671 # At least on Linux/Intel, 'machine' is the processor --
672 # i386, etc.
673 # XXX what about Alpha, SPARC, etc?
674 return "%s-%s" % (osname, machine)
675 elif osname[:5] == "sunos":
676 if release[0] >= "5": # SunOS 5 == Solaris 2
677 osname = "solaris"
678 release = "%d.%s" % (int(release[0]) - 3, release[2:])
Jesus Cea1aa1cf32012-01-18 04:49:26 +0100679 # We can't use "platform.architecture()[0]" because a
680 # bootstrap problem. We use a dict to get an error
681 # if some suspicious happens.
682 bitness = {2147483647:"32bit", 9223372036854775807:"64bit"}
Jesus Cea031605a2012-01-18 05:04:49 +0100683 machine += ".%s" % bitness[sys.maxsize]
Tarek Ziadéedacea32010-01-29 11:41:03 +0000684 # fall through to standard osname-release-machine representation
Tarek Ziadéedacea32010-01-29 11:41:03 +0000685 elif osname[:3] == "aix":
Michael Felt39afa2d2019-12-15 15:17:53 +0100686 from _aix_support import aix_platform
687 return aix_platform()
Tarek Ziadéedacea32010-01-29 11:41:03 +0000688 elif osname[:6] == "cygwin":
689 osname = "cygwin"
Christian Heimes8c9cd5a2013-10-12 00:24:55 +0200690 import re
Tarek Ziade1231a4e2011-05-19 13:07:25 +0200691 rel_re = re.compile(r'[\d.]+')
Tarek Ziadéedacea32010-01-29 11:41:03 +0000692 m = rel_re.match(release)
693 if m:
694 release = m.group()
695 elif osname[:6] == "darwin":
Ned Deilydf8aa2b2012-07-21 05:36:30 -0700696 import _osx_support
697 osname, release, machine = _osx_support.get_platform_osx(
698 get_config_vars(),
699 osname, release, machine)
Tarek Ziadéedacea32010-01-29 11:41:03 +0000700
701 return "%s-%s-%s" % (osname, release, machine)
702
703
704def get_python_version():
705 return _PY_VERSION_SHORT
Tarek Ziadéa7514992010-05-25 09:44:36 +0000706
Tarek Ziade1231a4e2011-05-19 13:07:25 +0200707
Tarek Ziadéa7514992010-05-25 09:44:36 +0000708def _print_dict(title, data):
709 for index, (key, value) in enumerate(sorted(data.items())):
710 if index == 0:
Tarek Ziade1231a4e2011-05-19 13:07:25 +0200711 print('%s: ' % (title))
712 print('\t%s = "%s"' % (key, value))
713
Tarek Ziadéa7514992010-05-25 09:44:36 +0000714
715def _main():
Éric Araujo300623d2010-11-22 01:19:20 +0000716 """Display all information sysconfig detains."""
Antoine Pitrou1e73a242011-10-18 17:52:24 +0200717 if '--generate-posix-vars' in sys.argv:
718 _generate_posix_vars()
719 return
Tarek Ziade1231a4e2011-05-19 13:07:25 +0200720 print('Platform: "%s"' % get_platform())
721 print('Python version: "%s"' % get_python_version())
722 print('Current installation scheme: "%s"' % _get_default_scheme())
Éric Araujo559b5f12011-05-25 18:21:43 +0200723 print()
Tarek Ziadéa7514992010-05-25 09:44:36 +0000724 _print_dict('Paths', get_paths())
Tarek Ziade1231a4e2011-05-19 13:07:25 +0200725 print()
Tarek Ziadéa7514992010-05-25 09:44:36 +0000726 _print_dict('Variables', get_config_vars())
727
Tarek Ziade1231a4e2011-05-19 13:07:25 +0200728
Tarek Ziadéa7514992010-05-25 09:44:36 +0000729if __name__ == '__main__':
730 _main()