platform.py 47 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458
  1. #!/usr/bin/env python3
  2. """ This module tries to retrieve as much platform-identifying data as
  3. possible. It makes this information available via function APIs.
  4. If called from the command line, it prints the platform
  5. information concatenated as single string to stdout. The output
  6. format is useable as part of a filename.
  7. """
  8. # This module is maintained by Marc-Andre Lemburg <mal@egenix.com>.
  9. # If you find problems, please submit bug reports/patches via the
  10. # Python bug tracker (http://bugs.python.org) and assign them to "lemburg".
  11. #
  12. # Still needed:
  13. # * more support for WinCE
  14. # * support for MS-DOS (PythonDX ?)
  15. # * support for Amiga and other still unsupported platforms running Python
  16. # * support for additional Linux distributions
  17. #
  18. # Many thanks to all those who helped adding platform-specific
  19. # checks (in no particular order):
  20. #
  21. # Charles G Waldman, David Arnold, Gordon McMillan, Ben Darnell,
  22. # Jeff Bauer, Cliff Crawford, Ivan Van Laningham, Josef
  23. # Betancourt, Randall Hopper, Karl Putland, John Farrell, Greg
  24. # Andruk, Just van Rossum, Thomas Heller, Mark R. Levinson, Mark
  25. # Hammond, Bill Tutt, Hans Nowak, Uwe Zessin (OpenVMS support),
  26. # Colin Kong, Trent Mick, Guido van Rossum, Anthony Baxter, Steve
  27. # Dower
  28. #
  29. # History:
  30. #
  31. # <see CVS and SVN checkin messages for history>
  32. #
  33. # 1.0.8 - changed Windows support to read version from kernel32.dll
  34. # 1.0.7 - added DEV_NULL
  35. # 1.0.6 - added linux_distribution()
  36. # 1.0.5 - fixed Java support to allow running the module on Jython
  37. # 1.0.4 - added IronPython support
  38. # 1.0.3 - added normalization of Windows system name
  39. # 1.0.2 - added more Windows support
  40. # 1.0.1 - reformatted to make doc.py happy
  41. # 1.0.0 - reformatted a bit and checked into Python CVS
  42. # 0.8.0 - added sys.version parser and various new access
  43. # APIs (python_version(), python_compiler(), etc.)
  44. # 0.7.2 - fixed architecture() to use sizeof(pointer) where available
  45. # 0.7.1 - added support for Caldera OpenLinux
  46. # 0.7.0 - some fixes for WinCE; untabified the source file
  47. # 0.6.2 - support for OpenVMS - requires version 1.5.2-V006 or higher and
  48. # vms_lib.getsyi() configured
  49. # 0.6.1 - added code to prevent 'uname -p' on platforms which are
  50. # known not to support it
  51. # 0.6.0 - fixed win32_ver() to hopefully work on Win95,98,NT and Win2k;
  52. # did some cleanup of the interfaces - some APIs have changed
  53. # 0.5.5 - fixed another type in the MacOS code... should have
  54. # used more coffee today ;-)
  55. # 0.5.4 - fixed a few typos in the MacOS code
  56. # 0.5.3 - added experimental MacOS support; added better popen()
  57. # workarounds in _syscmd_ver() -- still not 100% elegant
  58. # though
  59. # 0.5.2 - fixed uname() to return '' instead of 'unknown' in all
  60. # return values (the system uname command tends to return
  61. # 'unknown' instead of just leaving the field emtpy)
  62. # 0.5.1 - included code for slackware dist; added exception handlers
  63. # to cover up situations where platforms don't have os.popen
  64. # (e.g. Mac) or fail on socket.gethostname(); fixed libc
  65. # detection RE
  66. # 0.5.0 - changed the API names referring to system commands to *syscmd*;
  67. # added java_ver(); made syscmd_ver() a private
  68. # API (was system_ver() in previous versions) -- use uname()
  69. # instead; extended the win32_ver() to also return processor
  70. # type information
  71. # 0.4.0 - added win32_ver() and modified the platform() output for WinXX
  72. # 0.3.4 - fixed a bug in _follow_symlinks()
  73. # 0.3.3 - fixed popen() and "file" command invokation bugs
  74. # 0.3.2 - added architecture() API and support for it in platform()
  75. # 0.3.1 - fixed syscmd_ver() RE to support Windows NT
  76. # 0.3.0 - added system alias support
  77. # 0.2.3 - removed 'wince' again... oh well.
  78. # 0.2.2 - added 'wince' to syscmd_ver() supported platforms
  79. # 0.2.1 - added cache logic and changed the platform string format
  80. # 0.2.0 - changed the API to use functions instead of module globals
  81. # since some action take too long to be run on module import
  82. # 0.1.0 - first release
  83. #
  84. # You can always get the latest version of this module at:
  85. #
  86. # http://www.egenix.com/files/python/platform.py
  87. #
  88. # If that URL should fail, try contacting the author.
  89. __copyright__ = """
  90. Copyright (c) 1999-2000, Marc-Andre Lemburg; mailto:mal@lemburg.com
  91. Copyright (c) 2000-2010, eGenix.com Software GmbH; mailto:info@egenix.com
  92. Permission to use, copy, modify, and distribute this software and its
  93. documentation for any purpose and without fee or royalty is hereby granted,
  94. provided that the above copyright notice appear in all copies and that
  95. both that copyright notice and this permission notice appear in
  96. supporting documentation or portions thereof, including modifications,
  97. that you make.
  98. EGENIX.COM SOFTWARE GMBH DISCLAIMS ALL WARRANTIES WITH REGARD TO
  99. THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
  100. FITNESS, IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL,
  101. INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING
  102. FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
  103. NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
  104. WITH THE USE OR PERFORMANCE OF THIS SOFTWARE !
  105. """
  106. __version__ = '1.0.7'
  107. import collections
  108. import sys, os, re, subprocess
  109. import warnings
  110. ### Globals & Constants
  111. # Determine the platform's /dev/null device
  112. try:
  113. DEV_NULL = os.devnull
  114. except AttributeError:
  115. # os.devnull was added in Python 2.4, so emulate it for earlier
  116. # Python versions
  117. if sys.platform in ('dos', 'win32', 'win16'):
  118. # Use the old CP/M NUL as device name
  119. DEV_NULL = 'NUL'
  120. else:
  121. # Standard Unix uses /dev/null
  122. DEV_NULL = '/dev/null'
  123. # Directory to search for configuration information on Unix.
  124. # Constant used by test_platform to test linux_distribution().
  125. _UNIXCONFDIR = '/etc'
  126. ### Platform specific APIs
  127. _libc_search = re.compile(b'(__libc_init)'
  128. b'|'
  129. b'(GLIBC_([0-9.]+))'
  130. b'|'
  131. br'(libc(_\w+)?\.so(?:\.(\d[0-9.]*))?)', re.ASCII)
  132. def libc_ver(executable=sys.executable, lib='', version='',
  133. chunksize=16384):
  134. """ Tries to determine the libc version that the file executable
  135. (which defaults to the Python interpreter) is linked against.
  136. Returns a tuple of strings (lib,version) which default to the
  137. given parameters in case the lookup fails.
  138. Note that the function has intimate knowledge of how different
  139. libc versions add symbols to the executable and thus is probably
  140. only useable for executables compiled using gcc.
  141. The file is read and scanned in chunks of chunksize bytes.
  142. """
  143. if hasattr(os.path, 'realpath'):
  144. # Python 2.2 introduced os.path.realpath(); it is used
  145. # here to work around problems with Cygwin not being
  146. # able to open symlinks for reading
  147. executable = os.path.realpath(executable)
  148. with open(executable, 'rb') as f:
  149. binary = f.read(chunksize)
  150. pos = 0
  151. while 1:
  152. if b'libc' in binary or b'GLIBC' in binary:
  153. m = _libc_search.search(binary, pos)
  154. else:
  155. m = None
  156. if not m:
  157. binary = f.read(chunksize)
  158. if not binary:
  159. break
  160. pos = 0
  161. continue
  162. libcinit, glibc, glibcversion, so, threads, soversion = [
  163. s.decode('latin1') if s is not None else s
  164. for s in m.groups()]
  165. if libcinit and not lib:
  166. lib = 'libc'
  167. elif glibc:
  168. if lib != 'glibc':
  169. lib = 'glibc'
  170. version = glibcversion
  171. elif glibcversion > version:
  172. version = glibcversion
  173. elif so:
  174. if lib != 'glibc':
  175. lib = 'libc'
  176. if soversion and soversion > version:
  177. version = soversion
  178. if threads and version[-len(threads):] != threads:
  179. version = version + threads
  180. pos = m.end()
  181. return lib, version
  182. def _dist_try_harder(distname, version, id):
  183. """ Tries some special tricks to get the distribution
  184. information in case the default method fails.
  185. Currently supports older SuSE Linux, Caldera OpenLinux and
  186. Slackware Linux distributions.
  187. """
  188. if os.path.exists('/var/adm/inst-log/info'):
  189. # SuSE Linux stores distribution information in that file
  190. distname = 'SuSE'
  191. for line in open('/var/adm/inst-log/info'):
  192. tv = line.split()
  193. if len(tv) == 2:
  194. tag, value = tv
  195. else:
  196. continue
  197. if tag == 'MIN_DIST_VERSION':
  198. version = value.strip()
  199. elif tag == 'DIST_IDENT':
  200. values = value.split('-')
  201. id = values[2]
  202. return distname, version, id
  203. if os.path.exists('/etc/.installed'):
  204. # Caldera OpenLinux has some infos in that file (thanks to Colin Kong)
  205. for line in open('/etc/.installed'):
  206. pkg = line.split('-')
  207. if len(pkg) >= 2 and pkg[0] == 'OpenLinux':
  208. # XXX does Caldera support non Intel platforms ? If yes,
  209. # where can we find the needed id ?
  210. return 'OpenLinux', pkg[1], id
  211. if os.path.isdir('/usr/lib/setup'):
  212. # Check for slackware version tag file (thanks to Greg Andruk)
  213. verfiles = os.listdir('/usr/lib/setup')
  214. for n in range(len(verfiles)-1, -1, -1):
  215. if verfiles[n][:14] != 'slack-version-':
  216. del verfiles[n]
  217. if verfiles:
  218. verfiles.sort()
  219. distname = 'slackware'
  220. version = verfiles[-1][14:]
  221. return distname, version, id
  222. return distname, version, id
  223. _release_filename = re.compile(r'(\w+)[-_](release|version)', re.ASCII)
  224. _lsb_release_version = re.compile(r'(.+)'
  225. ' release '
  226. '([\d.]+)'
  227. '[^(]*(?:\((.+)\))?', re.ASCII)
  228. _release_version = re.compile(r'([^0-9]+)'
  229. '(?: release )?'
  230. '([\d.]+)'
  231. '[^(]*(?:\((.+)\))?', re.ASCII)
  232. # See also http://www.novell.com/coolsolutions/feature/11251.html
  233. # and http://linuxmafia.com/faq/Admin/release-files.html
  234. # and http://data.linux-ntfs.org/rpm/whichrpm
  235. # and http://www.die.net/doc/linux/man/man1/lsb_release.1.html
  236. _supported_dists = (
  237. 'SuSE', 'debian', 'fedora', 'redhat', 'centos',
  238. 'mandrake', 'mandriva', 'rocks', 'slackware', 'yellowdog', 'gentoo',
  239. 'UnitedLinux', 'turbolinux', 'arch', 'mageia')
  240. def _parse_release_file(firstline):
  241. # Default to empty 'version' and 'id' strings. Both defaults are used
  242. # when 'firstline' is empty. 'id' defaults to empty when an id can not
  243. # be deduced.
  244. version = ''
  245. id = ''
  246. # Parse the first line
  247. m = _lsb_release_version.match(firstline)
  248. if m is not None:
  249. # LSB format: "distro release x.x (codename)"
  250. return tuple(m.groups())
  251. # Pre-LSB format: "distro x.x (codename)"
  252. m = _release_version.match(firstline)
  253. if m is not None:
  254. return tuple(m.groups())
  255. # Unknown format... take the first two words
  256. l = firstline.strip().split()
  257. if l:
  258. version = l[0]
  259. if len(l) > 1:
  260. id = l[1]
  261. return '', version, id
  262. def linux_distribution(distname='', version='', id='',
  263. supported_dists=_supported_dists,
  264. full_distribution_name=1):
  265. import warnings
  266. warnings.warn("dist() and linux_distribution() functions are deprecated "
  267. "in Python 3.5", PendingDeprecationWarning, stacklevel=2)
  268. return _linux_distribution(distname, version, id, supported_dists,
  269. full_distribution_name)
  270. def _linux_distribution(distname, version, id, supported_dists,
  271. full_distribution_name):
  272. """ Tries to determine the name of the Linux OS distribution name.
  273. The function first looks for a distribution release file in
  274. /etc and then reverts to _dist_try_harder() in case no
  275. suitable files are found.
  276. supported_dists may be given to define the set of Linux
  277. distributions to look for. It defaults to a list of currently
  278. supported Linux distributions identified by their release file
  279. name.
  280. If full_distribution_name is true (default), the full
  281. distribution read from the OS is returned. Otherwise the short
  282. name taken from supported_dists is used.
  283. Returns a tuple (distname, version, id) which default to the
  284. args given as parameters.
  285. """
  286. try:
  287. etc = os.listdir(_UNIXCONFDIR)
  288. except OSError:
  289. # Probably not a Unix system
  290. return distname, version, id
  291. etc.sort()
  292. for file in etc:
  293. m = _release_filename.match(file)
  294. if m is not None:
  295. _distname, dummy = m.groups()
  296. if _distname in supported_dists:
  297. distname = _distname
  298. break
  299. else:
  300. return _dist_try_harder(distname, version, id)
  301. # Read the first line
  302. with open(os.path.join(_UNIXCONFDIR, file), 'r',
  303. encoding='utf-8', errors='surrogateescape') as f:
  304. firstline = f.readline()
  305. _distname, _version, _id = _parse_release_file(firstline)
  306. if _distname and full_distribution_name:
  307. distname = _distname
  308. if _version:
  309. version = _version
  310. if _id:
  311. id = _id
  312. return distname, version, id
  313. # To maintain backwards compatibility:
  314. def dist(distname='', version='', id='',
  315. supported_dists=_supported_dists):
  316. """ Tries to determine the name of the Linux OS distribution name.
  317. The function first looks for a distribution release file in
  318. /etc and then reverts to _dist_try_harder() in case no
  319. suitable files are found.
  320. Returns a tuple (distname, version, id) which default to the
  321. args given as parameters.
  322. """
  323. import warnings
  324. warnings.warn("dist() and linux_distribution() functions are deprecated "
  325. "in Python 3.5", PendingDeprecationWarning, stacklevel=2)
  326. return _linux_distribution(distname, version, id,
  327. supported_dists=supported_dists,
  328. full_distribution_name=0)
  329. def popen(cmd, mode='r', bufsize=-1):
  330. """ Portable popen() interface.
  331. """
  332. import warnings
  333. warnings.warn('use os.popen instead', DeprecationWarning, stacklevel=2)
  334. return os.popen(cmd, mode, bufsize)
  335. def _norm_version(version, build=''):
  336. """ Normalize the version and build strings and return a single
  337. version string using the format major.minor.build (or patchlevel).
  338. """
  339. l = version.split('.')
  340. if build:
  341. l.append(build)
  342. try:
  343. ints = map(int, l)
  344. except ValueError:
  345. strings = l
  346. else:
  347. strings = list(map(str, ints))
  348. version = '.'.join(strings[:3])
  349. return version
  350. _ver_output = re.compile(r'(?:([\w ]+) ([\w.]+) '
  351. '.*'
  352. '\[.* ([\d.]+)\])')
  353. # Examples of VER command output:
  354. #
  355. # Windows 2000: Microsoft Windows 2000 [Version 5.00.2195]
  356. # Windows XP: Microsoft Windows XP [Version 5.1.2600]
  357. # Windows Vista: Microsoft Windows [Version 6.0.6002]
  358. #
  359. # Note that the "Version" string gets localized on different
  360. # Windows versions.
  361. def _syscmd_ver(system='', release='', version='',
  362. supported_platforms=('win32', 'win16', 'dos')):
  363. """ Tries to figure out the OS version used and returns
  364. a tuple (system, release, version).
  365. It uses the "ver" shell command for this which is known
  366. to exists on Windows, DOS. XXX Others too ?
  367. In case this fails, the given parameters are used as
  368. defaults.
  369. """
  370. if sys.platform not in supported_platforms:
  371. return system, release, version
  372. # Try some common cmd strings
  373. for cmd in ('ver', 'command /c ver', 'cmd /c ver'):
  374. try:
  375. pipe = os.popen(cmd)
  376. info = pipe.read()
  377. if pipe.close():
  378. raise OSError('command failed')
  379. # XXX How can I suppress shell errors from being written
  380. # to stderr ?
  381. except OSError as why:
  382. #print 'Command %s failed: %s' % (cmd, why)
  383. continue
  384. else:
  385. break
  386. else:
  387. return system, release, version
  388. # Parse the output
  389. info = info.strip()
  390. m = _ver_output.match(info)
  391. if m is not None:
  392. system, release, version = m.groups()
  393. # Strip trailing dots from version and release
  394. if release[-1] == '.':
  395. release = release[:-1]
  396. if version[-1] == '.':
  397. version = version[:-1]
  398. # Normalize the version and build strings (eliminating additional
  399. # zeros)
  400. version = _norm_version(version)
  401. return system, release, version
  402. _WIN32_CLIENT_RELEASES = {
  403. (5, 0): "2000",
  404. (5, 1): "XP",
  405. # Strictly, 5.2 client is XP 64-bit, but platform.py historically
  406. # has always called it 2003 Server
  407. (5, 2): "2003Server",
  408. (5, None): "post2003",
  409. (6, 0): "Vista",
  410. (6, 1): "7",
  411. (6, 2): "8",
  412. (6, 3): "8.1",
  413. (6, None): "post8.1",
  414. (10, 0): "10",
  415. (10, None): "post10",
  416. }
  417. # Server release name lookup will default to client names if necessary
  418. _WIN32_SERVER_RELEASES = {
  419. (5, 2): "2003Server",
  420. (6, 0): "2008Server",
  421. (6, 1): "2008ServerR2",
  422. (6, 2): "2012Server",
  423. (6, 3): "2012ServerR2",
  424. (6, None): "post2012ServerR2",
  425. }
  426. def _get_real_winver(maj, min, build):
  427. if maj < 6 or (maj == 6 and min < 2):
  428. return maj, min, build
  429. from ctypes import (c_buffer, POINTER, byref, create_unicode_buffer,
  430. Structure, WinDLL)
  431. from ctypes.wintypes import DWORD, HANDLE
  432. class VS_FIXEDFILEINFO(Structure):
  433. _fields_ = [
  434. ("dwSignature", DWORD),
  435. ("dwStrucVersion", DWORD),
  436. ("dwFileVersionMS", DWORD),
  437. ("dwFileVersionLS", DWORD),
  438. ("dwProductVersionMS", DWORD),
  439. ("dwProductVersionLS", DWORD),
  440. ("dwFileFlagsMask", DWORD),
  441. ("dwFileFlags", DWORD),
  442. ("dwFileOS", DWORD),
  443. ("dwFileType", DWORD),
  444. ("dwFileSubtype", DWORD),
  445. ("dwFileDateMS", DWORD),
  446. ("dwFileDateLS", DWORD),
  447. ]
  448. kernel32 = WinDLL('kernel32')
  449. version = WinDLL('version')
  450. # We will immediately double the length up to MAX_PATH, but the
  451. # path may be longer, so we retry until the returned string is
  452. # shorter than our buffer.
  453. name_len = actual_len = 130
  454. while actual_len == name_len:
  455. name_len *= 2
  456. name = create_unicode_buffer(name_len)
  457. actual_len = kernel32.GetModuleFileNameW(HANDLE(kernel32._handle),
  458. name, len(name))
  459. if not actual_len:
  460. return maj, min, build
  461. size = version.GetFileVersionInfoSizeW(name, None)
  462. if not size:
  463. return maj, min, build
  464. ver_block = c_buffer(size)
  465. if (not version.GetFileVersionInfoW(name, None, size, ver_block) or
  466. not ver_block):
  467. return maj, min, build
  468. pvi = POINTER(VS_FIXEDFILEINFO)()
  469. if not version.VerQueryValueW(ver_block, "", byref(pvi), byref(DWORD())):
  470. return maj, min, build
  471. maj = pvi.contents.dwProductVersionMS >> 16
  472. min = pvi.contents.dwProductVersionMS & 0xFFFF
  473. build = pvi.contents.dwProductVersionLS >> 16
  474. return maj, min, build
  475. def win32_ver(release='', version='', csd='', ptype=''):
  476. try:
  477. from sys import getwindowsversion
  478. except ImportError:
  479. return release, version, csd, ptype
  480. try:
  481. from winreg import OpenKeyEx, QueryValueEx, CloseKey, HKEY_LOCAL_MACHINE
  482. except ImportError:
  483. from _winreg import OpenKeyEx, QueryValueEx, CloseKey, HKEY_LOCAL_MACHINE
  484. winver = getwindowsversion()
  485. maj, min, build = _get_real_winver(*winver[:3])
  486. version = '{0}.{1}.{2}'.format(maj, min, build)
  487. release = (_WIN32_CLIENT_RELEASES.get((maj, min)) or
  488. _WIN32_CLIENT_RELEASES.get((maj, None)) or
  489. release)
  490. # getwindowsversion() reflect the compatibility mode Python is
  491. # running under, and so the service pack value is only going to be
  492. # valid if the versions match.
  493. if winver[:2] == (maj, min):
  494. try:
  495. csd = 'SP{}'.format(winver.service_pack_major)
  496. except AttributeError:
  497. if csd[:13] == 'Service Pack ':
  498. csd = 'SP' + csd[13:]
  499. # VER_NT_SERVER = 3
  500. if getattr(winver, 'product', None) == 3:
  501. release = (_WIN32_SERVER_RELEASES.get((maj, min)) or
  502. _WIN32_SERVER_RELEASES.get((maj, None)) or
  503. release)
  504. key = None
  505. try:
  506. key = OpenKeyEx(HKEY_LOCAL_MACHINE,
  507. r'SOFTWARE\Microsoft\Windows NT\CurrentVersion')
  508. ptype = QueryValueEx(key, 'CurrentType')[0]
  509. except:
  510. pass
  511. finally:
  512. if key:
  513. CloseKey(key)
  514. return release, version, csd, ptype
  515. def _mac_ver_xml():
  516. fn = '/System/Library/CoreServices/SystemVersion.plist'
  517. if not os.path.exists(fn):
  518. return None
  519. try:
  520. import plistlib
  521. except ImportError:
  522. return None
  523. with open(fn, 'rb') as f:
  524. pl = plistlib.load(f)
  525. release = pl['ProductVersion']
  526. versioninfo = ('', '', '')
  527. machine = os.uname().machine
  528. if machine in ('ppc', 'Power Macintosh'):
  529. # Canonical name
  530. machine = 'PowerPC'
  531. return release, versioninfo, machine
  532. def mac_ver(release='', versioninfo=('', '', ''), machine=''):
  533. """ Get MacOS version information and return it as tuple (release,
  534. versioninfo, machine) with versioninfo being a tuple (version,
  535. dev_stage, non_release_version).
  536. Entries which cannot be determined are set to the parameter values
  537. which default to ''. All tuple entries are strings.
  538. """
  539. # First try reading the information from an XML file which should
  540. # always be present
  541. info = _mac_ver_xml()
  542. if info is not None:
  543. return info
  544. # If that also doesn't work return the default values
  545. return release, versioninfo, machine
  546. def _java_getprop(name, default):
  547. from java.lang import System
  548. try:
  549. value = System.getProperty(name)
  550. if value is None:
  551. return default
  552. return value
  553. except AttributeError:
  554. return default
  555. def java_ver(release='', vendor='', vminfo=('', '', ''), osinfo=('', '', '')):
  556. """ Version interface for Jython.
  557. Returns a tuple (release, vendor, vminfo, osinfo) with vminfo being
  558. a tuple (vm_name, vm_release, vm_vendor) and osinfo being a
  559. tuple (os_name, os_version, os_arch).
  560. Values which cannot be determined are set to the defaults
  561. given as parameters (which all default to '').
  562. """
  563. # Import the needed APIs
  564. try:
  565. import java.lang
  566. except ImportError:
  567. return release, vendor, vminfo, osinfo
  568. vendor = _java_getprop('java.vendor', vendor)
  569. release = _java_getprop('java.version', release)
  570. vm_name, vm_release, vm_vendor = vminfo
  571. vm_name = _java_getprop('java.vm.name', vm_name)
  572. vm_vendor = _java_getprop('java.vm.vendor', vm_vendor)
  573. vm_release = _java_getprop('java.vm.version', vm_release)
  574. vminfo = vm_name, vm_release, vm_vendor
  575. os_name, os_version, os_arch = osinfo
  576. os_arch = _java_getprop('java.os.arch', os_arch)
  577. os_name = _java_getprop('java.os.name', os_name)
  578. os_version = _java_getprop('java.os.version', os_version)
  579. osinfo = os_name, os_version, os_arch
  580. return release, vendor, vminfo, osinfo
  581. ### System name aliasing
  582. def system_alias(system, release, version):
  583. """ Returns (system, release, version) aliased to common
  584. marketing names used for some systems.
  585. It also does some reordering of the information in some cases
  586. where it would otherwise cause confusion.
  587. """
  588. if system == 'Rhapsody':
  589. # Apple's BSD derivative
  590. # XXX How can we determine the marketing release number ?
  591. return 'MacOS X Server', system+release, version
  592. elif system == 'SunOS':
  593. # Sun's OS
  594. if release < '5':
  595. # These releases use the old name SunOS
  596. return system, release, version
  597. # Modify release (marketing release = SunOS release - 3)
  598. l = release.split('.')
  599. if l:
  600. try:
  601. major = int(l[0])
  602. except ValueError:
  603. pass
  604. else:
  605. major = major - 3
  606. l[0] = str(major)
  607. release = '.'.join(l)
  608. if release < '6':
  609. system = 'Solaris'
  610. else:
  611. # XXX Whatever the new SunOS marketing name is...
  612. system = 'Solaris'
  613. elif system == 'IRIX64':
  614. # IRIX reports IRIX64 on platforms with 64-bit support; yet it
  615. # is really a version and not a different platform, since 32-bit
  616. # apps are also supported..
  617. system = 'IRIX'
  618. if version:
  619. version = version + ' (64bit)'
  620. else:
  621. version = '64bit'
  622. elif system in ('win32', 'win16'):
  623. # In case one of the other tricks
  624. system = 'Windows'
  625. return system, release, version
  626. ### Various internal helpers
  627. def _platform(*args):
  628. """ Helper to format the platform string in a filename
  629. compatible format e.g. "system-version-machine".
  630. """
  631. # Format the platform string
  632. platform = '-'.join(x.strip() for x in filter(len, args))
  633. # Cleanup some possible filename obstacles...
  634. platform = platform.replace(' ', '_')
  635. platform = platform.replace('/', '-')
  636. platform = platform.replace('\\', '-')
  637. platform = platform.replace(':', '-')
  638. platform = platform.replace(';', '-')
  639. platform = platform.replace('"', '-')
  640. platform = platform.replace('(', '-')
  641. platform = platform.replace(')', '-')
  642. # No need to report 'unknown' information...
  643. platform = platform.replace('unknown', '')
  644. # Fold '--'s and remove trailing '-'
  645. while 1:
  646. cleaned = platform.replace('--', '-')
  647. if cleaned == platform:
  648. break
  649. platform = cleaned
  650. while platform[-1] == '-':
  651. platform = platform[:-1]
  652. return platform
  653. def _node(default=''):
  654. """ Helper to determine the node name of this machine.
  655. """
  656. try:
  657. import socket
  658. except ImportError:
  659. # No sockets...
  660. return default
  661. try:
  662. return socket.gethostname()
  663. except OSError:
  664. # Still not working...
  665. return default
  666. def _follow_symlinks(filepath):
  667. """ In case filepath is a symlink, follow it until a
  668. real file is reached.
  669. """
  670. filepath = os.path.abspath(filepath)
  671. while os.path.islink(filepath):
  672. filepath = os.path.normpath(
  673. os.path.join(os.path.dirname(filepath), os.readlink(filepath)))
  674. return filepath
  675. def _syscmd_uname(option, default=''):
  676. """ Interface to the system's uname command.
  677. """
  678. if sys.platform in ('dos', 'win32', 'win16'):
  679. # XXX Others too ?
  680. return default
  681. try:
  682. f = os.popen('uname %s 2> %s' % (option, DEV_NULL))
  683. except (AttributeError, OSError):
  684. return default
  685. output = f.read().strip()
  686. rc = f.close()
  687. if not output or rc:
  688. return default
  689. else:
  690. return output
  691. def _syscmd_file(target, default=''):
  692. """ Interface to the system's file command.
  693. The function uses the -b option of the file command to have it
  694. omit the filename in its output. Follow the symlinks. It returns
  695. default in case the command should fail.
  696. """
  697. if sys.platform in ('dos', 'win32', 'win16'):
  698. # XXX Others too ?
  699. return default
  700. target = _follow_symlinks(target)
  701. try:
  702. proc = subprocess.Popen(['file', target],
  703. stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
  704. except (AttributeError, OSError):
  705. return default
  706. output = proc.communicate()[0].decode('latin-1')
  707. rc = proc.wait()
  708. if not output or rc:
  709. return default
  710. else:
  711. return output
  712. ### Information about the used architecture
  713. # Default values for architecture; non-empty strings override the
  714. # defaults given as parameters
  715. _default_architecture = {
  716. 'win32': ('', 'WindowsPE'),
  717. 'win16': ('', 'Windows'),
  718. 'dos': ('', 'MSDOS'),
  719. }
  720. def architecture(executable=sys.executable, bits='', linkage=''):
  721. """ Queries the given executable (defaults to the Python interpreter
  722. binary) for various architecture information.
  723. Returns a tuple (bits, linkage) which contains information about
  724. the bit architecture and the linkage format used for the
  725. executable. Both values are returned as strings.
  726. Values that cannot be determined are returned as given by the
  727. parameter presets. If bits is given as '', the sizeof(pointer)
  728. (or sizeof(long) on Python version < 1.5.2) is used as
  729. indicator for the supported pointer size.
  730. The function relies on the system's "file" command to do the
  731. actual work. This is available on most if not all Unix
  732. platforms. On some non-Unix platforms where the "file" command
  733. does not exist and the executable is set to the Python interpreter
  734. binary defaults from _default_architecture are used.
  735. """
  736. # Use the sizeof(pointer) as default number of bits if nothing
  737. # else is given as default.
  738. if not bits:
  739. import struct
  740. try:
  741. size = struct.calcsize('P')
  742. except struct.error:
  743. # Older installations can only query longs
  744. size = struct.calcsize('l')
  745. bits = str(size*8) + 'bit'
  746. # Get data from the 'file' system command
  747. if executable:
  748. fileout = _syscmd_file(executable, '')
  749. else:
  750. fileout = ''
  751. if not fileout and \
  752. executable == sys.executable:
  753. # "file" command did not return anything; we'll try to provide
  754. # some sensible defaults then...
  755. if sys.platform in _default_architecture:
  756. b, l = _default_architecture[sys.platform]
  757. if b:
  758. bits = b
  759. if l:
  760. linkage = l
  761. return bits, linkage
  762. if 'executable' not in fileout:
  763. # Format not supported
  764. return bits, linkage
  765. # Bits
  766. if '32-bit' in fileout:
  767. bits = '32bit'
  768. elif 'N32' in fileout:
  769. # On Irix only
  770. bits = 'n32bit'
  771. elif '64-bit' in fileout:
  772. bits = '64bit'
  773. # Linkage
  774. if 'ELF' in fileout:
  775. linkage = 'ELF'
  776. elif 'PE' in fileout:
  777. # E.g. Windows uses this format
  778. if 'Windows' in fileout:
  779. linkage = 'WindowsPE'
  780. else:
  781. linkage = 'PE'
  782. elif 'COFF' in fileout:
  783. linkage = 'COFF'
  784. elif 'MS-DOS' in fileout:
  785. linkage = 'MSDOS'
  786. else:
  787. # XXX the A.OUT format also falls under this class...
  788. pass
  789. return bits, linkage
  790. ### Portable uname() interface
  791. uname_result = collections.namedtuple("uname_result",
  792. "system node release version machine processor")
  793. _uname_cache = None
  794. def uname():
  795. """ Fairly portable uname interface. Returns a tuple
  796. of strings (system, node, release, version, machine, processor)
  797. identifying the underlying platform.
  798. Note that unlike the os.uname function this also returns
  799. possible processor information as an additional tuple entry.
  800. Entries which cannot be determined are set to ''.
  801. """
  802. global _uname_cache
  803. no_os_uname = 0
  804. if _uname_cache is not None:
  805. return _uname_cache
  806. processor = ''
  807. # Get some infos from the builtin os.uname API...
  808. try:
  809. system, node, release, version, machine = os.uname()
  810. except AttributeError:
  811. no_os_uname = 1
  812. if no_os_uname or not list(filter(None, (system, node, release, version, machine))):
  813. # Hmm, no there is either no uname or uname has returned
  814. #'unknowns'... we'll have to poke around the system then.
  815. if no_os_uname:
  816. system = sys.platform
  817. release = ''
  818. version = ''
  819. node = _node()
  820. machine = ''
  821. use_syscmd_ver = 1
  822. # Try win32_ver() on win32 platforms
  823. if system == 'win32':
  824. release, version, csd, ptype = win32_ver()
  825. if release and version:
  826. use_syscmd_ver = 0
  827. # Try to use the PROCESSOR_* environment variables
  828. # available on Win XP and later; see
  829. # http://support.microsoft.com/kb/888731 and
  830. # http://www.geocities.com/rick_lively/MANUALS/ENV/MSWIN/PROCESSI.HTM
  831. if not machine:
  832. # WOW64 processes mask the native architecture
  833. if "PROCESSOR_ARCHITEW6432" in os.environ:
  834. machine = os.environ.get("PROCESSOR_ARCHITEW6432", '')
  835. else:
  836. machine = os.environ.get('PROCESSOR_ARCHITECTURE', '')
  837. if not processor:
  838. processor = os.environ.get('PROCESSOR_IDENTIFIER', machine)
  839. # Try the 'ver' system command available on some
  840. # platforms
  841. if use_syscmd_ver:
  842. system, release, version = _syscmd_ver(system)
  843. # Normalize system to what win32_ver() normally returns
  844. # (_syscmd_ver() tends to return the vendor name as well)
  845. if system == 'Microsoft Windows':
  846. system = 'Windows'
  847. elif system == 'Microsoft' and release == 'Windows':
  848. # Under Windows Vista and Windows Server 2008,
  849. # Microsoft changed the output of the ver command. The
  850. # release is no longer printed. This causes the
  851. # system and release to be misidentified.
  852. system = 'Windows'
  853. if '6.0' == version[:3]:
  854. release = 'Vista'
  855. else:
  856. release = ''
  857. # In case we still don't know anything useful, we'll try to
  858. # help ourselves
  859. if system in ('win32', 'win16'):
  860. if not version:
  861. if system == 'win32':
  862. version = '32bit'
  863. else:
  864. version = '16bit'
  865. system = 'Windows'
  866. elif system[:4] == 'java':
  867. release, vendor, vminfo, osinfo = java_ver()
  868. system = 'Java'
  869. version = ', '.join(vminfo)
  870. if not version:
  871. version = vendor
  872. # System specific extensions
  873. if system == 'OpenVMS':
  874. # OpenVMS seems to have release and version mixed up
  875. if not release or release == '0':
  876. release = version
  877. version = ''
  878. # Get processor information
  879. try:
  880. import vms_lib
  881. except ImportError:
  882. pass
  883. else:
  884. csid, cpu_number = vms_lib.getsyi('SYI$_CPU', 0)
  885. if (cpu_number >= 128):
  886. processor = 'Alpha'
  887. else:
  888. processor = 'VAX'
  889. if not processor:
  890. # Get processor information from the uname system command
  891. processor = _syscmd_uname('-p', '')
  892. #If any unknowns still exist, replace them with ''s, which are more portable
  893. if system == 'unknown':
  894. system = ''
  895. if node == 'unknown':
  896. node = ''
  897. if release == 'unknown':
  898. release = ''
  899. if version == 'unknown':
  900. version = ''
  901. if machine == 'unknown':
  902. machine = ''
  903. if processor == 'unknown':
  904. processor = ''
  905. # normalize name
  906. if system == 'Microsoft' and release == 'Windows':
  907. system = 'Windows'
  908. release = 'Vista'
  909. _uname_cache = uname_result(system, node, release, version,
  910. machine, processor)
  911. return _uname_cache
  912. ### Direct interfaces to some of the uname() return values
  913. def system():
  914. """ Returns the system/OS name, e.g. 'Linux', 'Windows' or 'Java'.
  915. An empty string is returned if the value cannot be determined.
  916. """
  917. return uname().system
  918. def node():
  919. """ Returns the computer's network name (which may not be fully
  920. qualified)
  921. An empty string is returned if the value cannot be determined.
  922. """
  923. return uname().node
  924. def release():
  925. """ Returns the system's release, e.g. '2.2.0' or 'NT'
  926. An empty string is returned if the value cannot be determined.
  927. """
  928. return uname().release
  929. def version():
  930. """ Returns the system's release version, e.g. '#3 on degas'
  931. An empty string is returned if the value cannot be determined.
  932. """
  933. return uname().version
  934. def machine():
  935. """ Returns the machine type, e.g. 'i386'
  936. An empty string is returned if the value cannot be determined.
  937. """
  938. return uname().machine
  939. def processor():
  940. """ Returns the (true) processor name, e.g. 'amdk6'
  941. An empty string is returned if the value cannot be
  942. determined. Note that many platforms do not provide this
  943. information or simply return the same value as for machine(),
  944. e.g. NetBSD does this.
  945. """
  946. return uname().processor
  947. ### Various APIs for extracting information from sys.version
  948. _sys_version_parser = re.compile(
  949. r'([\w.+]+)\s*' # "version<space>"
  950. r'\(#?([^,]+)' # "(#buildno"
  951. r'(?:,\s*([\w ]*)' # ", builddate"
  952. r'(?:,\s*([\w :]*))?)?\)\s*' # ", buildtime)<space>"
  953. r'\[([^\]]+)\]?', re.ASCII) # "[compiler]"
  954. _ironpython_sys_version_parser = re.compile(
  955. r'IronPython\s*'
  956. '([\d\.]+)'
  957. '(?: \(([\d\.]+)\))?'
  958. ' on (.NET [\d\.]+)', re.ASCII)
  959. # IronPython covering 2.6 and 2.7
  960. _ironpython26_sys_version_parser = re.compile(
  961. r'([\d.]+)\s*'
  962. '\(IronPython\s*'
  963. '[\d.]+\s*'
  964. '\(([\d.]+)\) on ([\w.]+ [\d.]+(?: \(\d+-bit\))?)\)'
  965. )
  966. _pypy_sys_version_parser = re.compile(
  967. r'([\w.+]+)\s*'
  968. '\(#?([^,]+),\s*([\w ]+),\s*([\w :]+)\)\s*'
  969. '\[PyPy [^\]]+\]?')
  970. _sys_version_cache = {}
  971. def _sys_version(sys_version=None):
  972. """ Returns a parsed version of Python's sys.version as tuple
  973. (name, version, branch, revision, buildno, builddate, compiler)
  974. referring to the Python implementation name, version, branch,
  975. revision, build number, build date/time as string and the compiler
  976. identification string.
  977. Note that unlike the Python sys.version, the returned value
  978. for the Python version will always include the patchlevel (it
  979. defaults to '.0').
  980. The function returns empty strings for tuple entries that
  981. cannot be determined.
  982. sys_version may be given to parse an alternative version
  983. string, e.g. if the version was read from a different Python
  984. interpreter.
  985. """
  986. # Get the Python version
  987. if sys_version is None:
  988. sys_version = sys.version
  989. # Try the cache first
  990. result = _sys_version_cache.get(sys_version, None)
  991. if result is not None:
  992. return result
  993. # Parse it
  994. if 'IronPython' in sys_version:
  995. # IronPython
  996. name = 'IronPython'
  997. if sys_version.startswith('IronPython'):
  998. match = _ironpython_sys_version_parser.match(sys_version)
  999. else:
  1000. match = _ironpython26_sys_version_parser.match(sys_version)
  1001. if match is None:
  1002. raise ValueError(
  1003. 'failed to parse IronPython sys.version: %s' %
  1004. repr(sys_version))
  1005. version, alt_version, compiler = match.groups()
  1006. buildno = ''
  1007. builddate = ''
  1008. elif sys.platform.startswith('java'):
  1009. # Jython
  1010. name = 'Jython'
  1011. match = _sys_version_parser.match(sys_version)
  1012. if match is None:
  1013. raise ValueError(
  1014. 'failed to parse Jython sys.version: %s' %
  1015. repr(sys_version))
  1016. version, buildno, builddate, buildtime, _ = match.groups()
  1017. if builddate is None:
  1018. builddate = ''
  1019. compiler = sys.platform
  1020. elif "PyPy" in sys_version:
  1021. # PyPy
  1022. name = "PyPy"
  1023. match = _pypy_sys_version_parser.match(sys_version)
  1024. if match is None:
  1025. raise ValueError("failed to parse PyPy sys.version: %s" %
  1026. repr(sys_version))
  1027. version, buildno, builddate, buildtime = match.groups()
  1028. compiler = ""
  1029. else:
  1030. # CPython
  1031. match = _sys_version_parser.match(sys_version)
  1032. if match is None:
  1033. raise ValueError(
  1034. 'failed to parse CPython sys.version: %s' %
  1035. repr(sys_version))
  1036. version, buildno, builddate, buildtime, compiler = \
  1037. match.groups()
  1038. name = 'CPython'
  1039. if builddate is None:
  1040. builddate = ''
  1041. elif buildtime:
  1042. builddate = builddate + ' ' + buildtime
  1043. if hasattr(sys, '_mercurial'):
  1044. _, branch, revision = sys._mercurial
  1045. elif hasattr(sys, 'subversion'):
  1046. # sys.subversion was added in Python 2.5
  1047. _, branch, revision = sys.subversion
  1048. else:
  1049. branch = ''
  1050. revision = ''
  1051. # Add the patchlevel version if missing
  1052. l = version.split('.')
  1053. if len(l) == 2:
  1054. l.append('0')
  1055. version = '.'.join(l)
  1056. # Build and cache the result
  1057. result = (name, version, branch, revision, buildno, builddate, compiler)
  1058. _sys_version_cache[sys_version] = result
  1059. return result
  1060. def python_implementation():
  1061. """ Returns a string identifying the Python implementation.
  1062. Currently, the following implementations are identified:
  1063. 'CPython' (C implementation of Python),
  1064. 'IronPython' (.NET implementation of Python),
  1065. 'Jython' (Java implementation of Python),
  1066. 'PyPy' (Python implementation of Python).
  1067. """
  1068. return _sys_version()[0]
  1069. def python_version():
  1070. """ Returns the Python version as string 'major.minor.patchlevel'
  1071. Note that unlike the Python sys.version, the returned value
  1072. will always include the patchlevel (it defaults to 0).
  1073. """
  1074. return _sys_version()[1]
  1075. def python_version_tuple():
  1076. """ Returns the Python version as tuple (major, minor, patchlevel)
  1077. of strings.
  1078. Note that unlike the Python sys.version, the returned value
  1079. will always include the patchlevel (it defaults to 0).
  1080. """
  1081. return tuple(_sys_version()[1].split('.'))
  1082. def python_branch():
  1083. """ Returns a string identifying the Python implementation
  1084. branch.
  1085. For CPython this is the Subversion branch from which the
  1086. Python binary was built.
  1087. If not available, an empty string is returned.
  1088. """
  1089. return _sys_version()[2]
  1090. def python_revision():
  1091. """ Returns a string identifying the Python implementation
  1092. revision.
  1093. For CPython this is the Subversion revision from which the
  1094. Python binary was built.
  1095. If not available, an empty string is returned.
  1096. """
  1097. return _sys_version()[3]
  1098. def python_build():
  1099. """ Returns a tuple (buildno, builddate) stating the Python
  1100. build number and date as strings.
  1101. """
  1102. return _sys_version()[4:6]
  1103. def python_compiler():
  1104. """ Returns a string identifying the compiler used for compiling
  1105. Python.
  1106. """
  1107. return _sys_version()[6]
  1108. ### The Opus Magnum of platform strings :-)
  1109. _platform_cache = {}
  1110. def platform(aliased=0, terse=0):
  1111. """ Returns a single string identifying the underlying platform
  1112. with as much useful information as possible (but no more :).
  1113. The output is intended to be human readable rather than
  1114. machine parseable. It may look different on different
  1115. platforms and this is intended.
  1116. If "aliased" is true, the function will use aliases for
  1117. various platforms that report system names which differ from
  1118. their common names, e.g. SunOS will be reported as
  1119. Solaris. The system_alias() function is used to implement
  1120. this.
  1121. Setting terse to true causes the function to return only the
  1122. absolute minimum information needed to identify the platform.
  1123. """
  1124. result = _platform_cache.get((aliased, terse), None)
  1125. if result is not None:
  1126. return result
  1127. # Get uname information and then apply platform specific cosmetics
  1128. # to it...
  1129. system, node, release, version, machine, processor = uname()
  1130. if machine == processor:
  1131. processor = ''
  1132. if aliased:
  1133. system, release, version = system_alias(system, release, version)
  1134. if system == 'Windows':
  1135. # MS platforms
  1136. rel, vers, csd, ptype = win32_ver(version)
  1137. if terse:
  1138. platform = _platform(system, release)
  1139. else:
  1140. platform = _platform(system, release, version, csd)
  1141. elif system in ('Linux',):
  1142. # Linux based systems
  1143. with warnings.catch_warnings():
  1144. # see issue #1322 for more information
  1145. warnings.filterwarnings(
  1146. 'ignore',
  1147. 'dist\(\) and linux_distribution\(\) '
  1148. 'functions are deprecated .*',
  1149. PendingDeprecationWarning,
  1150. )
  1151. distname, distversion, distid = dist('')
  1152. if distname and not terse:
  1153. platform = _platform(system, release, machine, processor,
  1154. 'with',
  1155. distname, distversion, distid)
  1156. else:
  1157. # If the distribution name is unknown check for libc vs. glibc
  1158. libcname, libcversion = libc_ver(sys.executable)
  1159. platform = _platform(system, release, machine, processor,
  1160. 'with',
  1161. libcname+libcversion)
  1162. elif system == 'Java':
  1163. # Java platforms
  1164. r, v, vminfo, (os_name, os_version, os_arch) = java_ver()
  1165. if terse or not os_name:
  1166. platform = _platform(system, release, version)
  1167. else:
  1168. platform = _platform(system, release, version,
  1169. 'on',
  1170. os_name, os_version, os_arch)
  1171. elif system == 'MacOS':
  1172. # MacOS platforms
  1173. if terse:
  1174. platform = _platform(system, release)
  1175. else:
  1176. platform = _platform(system, release, machine)
  1177. else:
  1178. # Generic handler
  1179. if terse:
  1180. platform = _platform(system, release)
  1181. else:
  1182. bits, linkage = architecture(sys.executable)
  1183. platform = _platform(system, release, machine,
  1184. processor, bits, linkage)
  1185. _platform_cache[(aliased, terse)] = platform
  1186. return platform
  1187. ### Command line interface
  1188. if __name__ == '__main__':
  1189. # Default is to print the aliased verbose platform string
  1190. terse = ('terse' in sys.argv or '--terse' in sys.argv)
  1191. aliased = (not 'nonaliased' in sys.argv and not '--nonaliased' in sys.argv)
  1192. print(platform(aliased, terse))
  1193. sys.exit(0)