blob: 35a87a8f3eba9db0dee1bf04fb7b31b8331ab426 [file] [log] [blame]
Marc-André Lemburg246d8472003-04-24 11:36:11 +00001#!/usr/bin/env python
2
Brett Cannon8ab27df2003-08-05 03:52:04 +00003""" This module tries to retrieve as much platform-identifying data as
Marc-André Lemburg246d8472003-04-24 11:36:11 +00004 possible. It makes this information available via function APIs.
5
6 If called from the command line, it prints the platform
7 information concatenated as single string to stdout. The output
8 format is useable as part of a filename.
9
10"""
11# This module is maintained by Marc-Andre Lemburg <mal@egenix.com>.
12# If you find problems, please submit bug reports/patches via the
13# Python SourceForge Project Page and assign them to "lemburg".
14#
15# Note: Please keep this module compatible to Python 1.5.2.
16#
17# Still needed:
18# * more support for WinCE
19# * support for MS-DOS (PythonDX ?)
20# * support for Amiga and other still unsupported platforms running Python
21# * support for additional Linux distributions
22#
Brett Cannon8ab27df2003-08-05 03:52:04 +000023# Many thanks to all those who helped adding platform-specific
Marc-André Lemburg246d8472003-04-24 11:36:11 +000024# checks (in no particular order):
25#
26# Charles G Waldman, David Arnold, Gordon McMillan, Ben Darnell,
27# Jeff Bauer, Cliff Crawford, Ivan Van Laningham, Josef
28# Betancourt, Randall Hopper, Karl Putland, John Farrell, Greg
29# Andruk, Just van Rossum, Thomas Heller, Mark R. Levinson, Mark
30# Hammond, Bill Tutt, Hans Nowak, Uwe Zessin (OpenVMS support),
Marc-André Lemburg9e0dc962007-01-13 21:00:08 +000031# Colin Kong, Trent Mick, Guido van Rossum, Anthony Baxter
Marc-André Lemburg246d8472003-04-24 11:36:11 +000032#
33# History:
Marc-André Lemburg380f4172005-11-07 16:11:02 +000034#
35# <see CVS and SVN checkin messages for history>
36#
Marc-André Lemburg9e0dc962007-01-13 21:00:08 +000037# 1.0.6 - added linux_distribution()
38# 1.0.5 - fixed Java support to allow running the module on Jython
39# 1.0.4 - added IronPython support
Marc-André Lemburgcdc79232004-06-19 17:17:00 +000040# 1.0.3 - added normalization of Windows system name
Marc-André Lemburg91e83e22004-03-25 18:35:12 +000041# 1.0.2 - added more Windows support
Marc-André Lemburg366a0fe2003-04-24 11:46:35 +000042# 1.0.1 - reformatted to make doc.py happy
Marc-André Lemburg246d8472003-04-24 11:36:11 +000043# 1.0.0 - reformatted a bit and checked into Python CVS
44# 0.8.0 - added sys.version parser and various new access
45# APIs (python_version(), python_compiler(), etc.)
46# 0.7.2 - fixed architecture() to use sizeof(pointer) where available
47# 0.7.1 - added support for Caldera OpenLinux
48# 0.7.0 - some fixes for WinCE; untabified the source file
49# 0.6.2 - support for OpenVMS - requires version 1.5.2-V006 or higher and
50# vms_lib.getsyi() configured
51# 0.6.1 - added code to prevent 'uname -p' on platforms which are
52# known not to support it
53# 0.6.0 - fixed win32_ver() to hopefully work on Win95,98,NT and Win2k;
54# did some cleanup of the interfaces - some APIs have changed
55# 0.5.5 - fixed another type in the MacOS code... should have
56# used more coffee today ;-)
57# 0.5.4 - fixed a few typos in the MacOS code
58# 0.5.3 - added experimental MacOS support; added better popen()
59# workarounds in _syscmd_ver() -- still not 100% elegant
60# though
61# 0.5.2 - fixed uname() to return '' instead of 'unknown' in all
62# return values (the system uname command tends to return
63# 'unknown' instead of just leaving the field emtpy)
64# 0.5.1 - included code for slackware dist; added exception handlers
65# to cover up situations where platforms don't have os.popen
66# (e.g. Mac) or fail on socket.gethostname(); fixed libc
67# detection RE
68# 0.5.0 - changed the API names referring to system commands to *syscmd*;
69# added java_ver(); made syscmd_ver() a private
70# API (was system_ver() in previous versions) -- use uname()
71# instead; extended the win32_ver() to also return processor
72# type information
73# 0.4.0 - added win32_ver() and modified the platform() output for WinXX
74# 0.3.4 - fixed a bug in _follow_symlinks()
75# 0.3.3 - fixed popen() and "file" command invokation bugs
76# 0.3.2 - added architecture() API and support for it in platform()
77# 0.3.1 - fixed syscmd_ver() RE to support Windows NT
78# 0.3.0 - added system alias support
79# 0.2.3 - removed 'wince' again... oh well.
80# 0.2.2 - added 'wince' to syscmd_ver() supported platforms
81# 0.2.1 - added cache logic and changed the platform string format
82# 0.2.0 - changed the API to use functions instead of module globals
83# since some action take too long to be run on module import
84# 0.1.0 - first release
85#
86# You can always get the latest version of this module at:
87#
88# http://www.egenix.com/files/python/platform.py
89#
90# If that URL should fail, try contacting the author.
91
92__copyright__ = """
93 Copyright (c) 1999-2000, Marc-Andre Lemburg; mailto:mal@lemburg.com
Marc-André Lemburg9e0dc962007-01-13 21:00:08 +000094 Copyright (c) 2000-2007, eGenix.com Software GmbH; mailto:info@egenix.com
Marc-André Lemburg246d8472003-04-24 11:36:11 +000095
96 Permission to use, copy, modify, and distribute this software and its
97 documentation for any purpose and without fee or royalty is hereby granted,
98 provided that the above copyright notice appear in all copies and that
99 both that copyright notice and this permission notice appear in
100 supporting documentation or portions thereof, including modifications,
101 that you make.
102
103 EGENIX.COM SOFTWARE GMBH DISCLAIMS ALL WARRANTIES WITH REGARD TO
104 THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
105 FITNESS, IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL,
106 INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING
107 FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
108 NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
109 WITH THE USE OR PERFORMANCE OF THIS SOFTWARE !
110
111"""
112
Marc-André Lemburg9e0dc962007-01-13 21:00:08 +0000113__version__ = '1.0.6'
Marc-André Lemburg246d8472003-04-24 11:36:11 +0000114
115import sys,string,os,re
116
117### Platform specific APIs
118
Marc-André Lemburg366a0fe2003-04-24 11:46:35 +0000119_libc_search = re.compile(r'(__libc_init)'
120 '|'
Tim Peters0eadaac2003-04-24 16:02:54 +0000121 '(GLIBC_([0-9.]+))'
122 '|'
Marc-André Lemburg366a0fe2003-04-24 11:46:35 +0000123 '(libc(_\w+)?\.so(?:\.(\d[0-9.]*))?)')
124
Marc-André Lemburg246d8472003-04-24 11:36:11 +0000125def libc_ver(executable=sys.executable,lib='',version='',
126
Marc-André Lemburg366a0fe2003-04-24 11:46:35 +0000127 chunksize=2048):
Marc-André Lemburg246d8472003-04-24 11:36:11 +0000128
Brett Cannon8ab27df2003-08-05 03:52:04 +0000129 """ Tries to determine the libc version that the file executable
130 (which defaults to the Python interpreter) is linked against.
Marc-André Lemburg246d8472003-04-24 11:36:11 +0000131
132 Returns a tuple of strings (lib,version) which default to the
133 given parameters in case the lookup fails.
134
135 Note that the function has intimate knowledge of how different
Brett Cannon8ab27df2003-08-05 03:52:04 +0000136 libc versions add symbols to the executable and thus is probably
137 only useable for executables compiled using gcc.
Marc-André Lemburg246d8472003-04-24 11:36:11 +0000138
139 The file is read and scanned in chunks of chunksize bytes.
140
141 """
Marc-André Lemburg9e0dc962007-01-13 21:00:08 +0000142 if hasattr(os.path, 'realpath'):
143 # Python 2.2 introduced os.path.realpath(); it is used
144 # here to work around problems with Cygwin not being
145 # able to open symlinks for reading
146 executable = os.path.realpath(executable)
Marc-André Lemburg246d8472003-04-24 11:36:11 +0000147 f = open(executable,'rb')
148 binary = f.read(chunksize)
149 pos = 0
150 while 1:
Marc-André Lemburg366a0fe2003-04-24 11:46:35 +0000151 m = _libc_search.search(binary,pos)
Marc-André Lemburg246d8472003-04-24 11:36:11 +0000152 if not m:
153 binary = f.read(chunksize)
154 if not binary:
155 break
156 pos = 0
157 continue
158 libcinit,glibc,glibcversion,so,threads,soversion = m.groups()
159 if libcinit and not lib:
160 lib = 'libc'
161 elif glibc:
162 if lib != 'glibc':
163 lib = 'glibc'
164 version = glibcversion
165 elif glibcversion > version:
166 version = glibcversion
167 elif so:
168 if lib != 'glibc':
169 lib = 'libc'
170 if soversion > version:
171 version = soversion
172 if threads and version[-len(threads):] != threads:
173 version = version + threads
174 pos = m.end()
175 f.close()
176 return lib,version
177
178def _dist_try_harder(distname,version,id):
179
Tim Peters0eadaac2003-04-24 16:02:54 +0000180 """ Tries some special tricks to get the distribution
Marc-André Lemburg246d8472003-04-24 11:36:11 +0000181 information in case the default method fails.
182
183 Currently supports older SuSE Linux, Caldera OpenLinux and
184 Slackware Linux distributions.
185
186 """
187 if os.path.exists('/var/adm/inst-log/info'):
188 # SuSE Linux stores distribution information in that file
189 info = open('/var/adm/inst-log/info').readlines()
190 distname = 'SuSE'
191 for line in info:
192 tv = string.split(line)
193 if len(tv) == 2:
194 tag,value = tv
195 else:
196 continue
197 if tag == 'MIN_DIST_VERSION':
198 version = string.strip(value)
199 elif tag == 'DIST_IDENT':
200 values = string.split(value,'-')
201 id = values[2]
202 return distname,version,id
203
204 if os.path.exists('/etc/.installed'):
205 # Caldera OpenLinux has some infos in that file (thanks to Colin Kong)
206 info = open('/etc/.installed').readlines()
207 for line in info:
208 pkg = string.split(line,'-')
209 if len(pkg) >= 2 and pkg[0] == 'OpenLinux':
210 # XXX does Caldera support non Intel platforms ? If yes,
211 # where can we find the needed id ?
212 return 'OpenLinux',pkg[1],id
213
214 if os.path.isdir('/usr/lib/setup'):
215 # Check for slackware verson tag file (thanks to Greg Andruk)
216 verfiles = os.listdir('/usr/lib/setup')
Guido van Rossum843c7342004-05-04 18:18:59 +0000217 for n in range(len(verfiles)-1, -1, -1):
Marc-André Lemburg246d8472003-04-24 11:36:11 +0000218 if verfiles[n][:14] != 'slack-version-':
219 del verfiles[n]
220 if verfiles:
221 verfiles.sort()
222 distname = 'slackware'
223 version = verfiles[-1][14:]
224 return distname,version,id
225
226 return distname,version,id
227
Marc-André Lemburg366a0fe2003-04-24 11:46:35 +0000228_release_filename = re.compile(r'(\w+)[-_](release|version)')
Marc-André Lemburg9e0dc962007-01-13 21:00:08 +0000229_lsb_release_version = re.compile(r'(.+)'
230 ' release '
231 '([\d.]+)'
232 '[^(]*(?:\((.+)\))?')
233_release_version = re.compile(r'([^0-9]+)'
234 '(?: release )?'
235 '([\d.]+)'
236 '[^(]*(?:\((.+)\))?')
Marc-André Lemburg366a0fe2003-04-24 11:46:35 +0000237
Marc-André Lemburg9e0dc962007-01-13 21:00:08 +0000238# See also http://www.novell.com/coolsolutions/feature/11251.html
Tim Petersf733abb2007-01-30 03:03:46 +0000239# and http://linuxmafia.com/faq/Admin/release-files.html
Marc-André Lemburg9e0dc962007-01-13 21:00:08 +0000240# and http://data.linux-ntfs.org/rpm/whichrpm
241# and http://www.die.net/doc/linux/man/man1/lsb_release.1.html
Marc-André Lemburg380f4172005-11-07 16:11:02 +0000242
Marc-André Lemburg50967bd2008-03-08 10:01:43 +0000243_supported_dists = (
244 'SuSE', 'debian', 'fedora', 'redhat', 'centos',
245 'mandrake', 'mandriva', 'rocks', 'slackware', 'yellowdog', 'gentoo',
246 'UnitedLinux', 'turbolinux')
Marc-André Lemburg9e0dc962007-01-13 21:00:08 +0000247
248def _parse_release_file(firstline):
Tim Petersf733abb2007-01-30 03:03:46 +0000249
Marc-André Lemburg9e0dc962007-01-13 21:00:08 +0000250 # Parse the first line
251 m = _lsb_release_version.match(firstline)
252 if m is not None:
253 # LSB format: "distro release x.x (codename)"
254 return tuple(m.groups())
255
256 # Pre-LSB format: "distro x.x (codename)"
257 m = _release_version.match(firstline)
258 if m is not None:
259 return tuple(m.groups())
260
261 # Unkown format... take the first two words
262 l = string.split(string.strip(firstline))
263 if l:
264 version = l[0]
265 if len(l) > 1:
266 id = l[1]
267 else:
268 id = ''
269 return '', version, id
270
271def _test_parse_release_file():
Tim Petersf733abb2007-01-30 03:03:46 +0000272
Marc-André Lemburg9e0dc962007-01-13 21:00:08 +0000273 for input, output in (
274 # Examples of release file contents:
275 ('SuSE Linux 9.3 (x86-64)', ('SuSE Linux ', '9.3', 'x86-64'))
276 ('SUSE LINUX 10.1 (X86-64)', ('SUSE LINUX ', '10.1', 'X86-64'))
277 ('SUSE LINUX 10.1 (i586)', ('SUSE LINUX ', '10.1', 'i586'))
278 ('Fedora Core release 5 (Bordeaux)', ('Fedora Core', '5', 'Bordeaux'))
279 ('Red Hat Linux release 8.0 (Psyche)', ('Red Hat Linux', '8.0', 'Psyche'))
280 ('Red Hat Linux release 9 (Shrike)', ('Red Hat Linux', '9', 'Shrike'))
281 ('Red Hat Enterprise Linux release 4 (Nahant)', ('Red Hat Enterprise Linux', '4', 'Nahant'))
282 ('CentOS release 4', ('CentOS', '4', None))
283 ('Rocks release 4.2.1 (Cydonia)', ('Rocks', '4.2.1', 'Cydonia'))
284 ):
285 parsed = _parse_release_file(input)
286 if parsed != output:
287 print (input, parsed)
288
289def linux_distribution(distname='', version='', id='',
290
291 supported_dists=_supported_dists,
292 full_distribution_name=1):
293
294 """ Tries to determine the name of the Linux OS distribution name.
295
296 The function first looks for a distribution release file in
297 /etc and then reverts to _dist_try_harder() in case no
298 suitable files are found.
299
300 supported_dists may be given to define the set of Linux
301 distributions to look for. It defaults to a list of currently
302 supported Linux distributions identified by their release file
303 name.
304
305 If full_distribution_name is true (default), the full
306 distribution read from the OS is returned. Otherwise the short
307 name taken from supported_dists is used.
308
309 Returns a tuple (distname,version,id) which default to the
310 args given as parameters.
311
312 """
313 try:
314 etc = os.listdir('/etc')
315 except os.error:
316 # Probably not a Unix system
317 return distname,version,id
318 etc.sort()
319 for file in etc:
320 m = _release_filename.match(file)
321 if m is not None:
322 _distname,dummy = m.groups()
323 if _distname in supported_dists:
324 distname = _distname
325 break
326 else:
327 return _dist_try_harder(distname,version,id)
Tim Petersf733abb2007-01-30 03:03:46 +0000328
Marc-André Lemburg9e0dc962007-01-13 21:00:08 +0000329 # Read the first line
330 f = open('/etc/'+file, 'r')
331 firstline = f.readline()
332 f.close()
333 _distname, _version, _id = _parse_release_file(firstline)
334
335 if _distname and full_distribution_name:
336 distname = _distname
337 if _version:
338 version = _version
339 if _id:
340 id = _id
341 return distname, version, id
342
343# To maintain backwards compatibility:
Tim Petersf733abb2007-01-30 03:03:46 +0000344
Marc-André Lemburg246d8472003-04-24 11:36:11 +0000345def dist(distname='',version='',id='',
346
Marc-André Lemburg9e0dc962007-01-13 21:00:08 +0000347 supported_dists=_supported_dists):
Marc-André Lemburg246d8472003-04-24 11:36:11 +0000348
Brett Cannon8ab27df2003-08-05 03:52:04 +0000349 """ Tries to determine the name of the Linux OS distribution name.
Marc-André Lemburg246d8472003-04-24 11:36:11 +0000350
351 The function first looks for a distribution release file in
352 /etc and then reverts to _dist_try_harder() in case no
353 suitable files are found.
354
Brett Cannon8ab27df2003-08-05 03:52:04 +0000355 Returns a tuple (distname,version,id) which default to the
Marc-André Lemburg246d8472003-04-24 11:36:11 +0000356 args given as parameters.
357
358 """
Marc-André Lemburg9e0dc962007-01-13 21:00:08 +0000359 return linux_distribution(distname, version, id,
360 supported_dists=supported_dists,
361 full_distribution_name=0)
Marc-André Lemburg246d8472003-04-24 11:36:11 +0000362
363class _popen:
364
365 """ Fairly portable (alternative) popen implementation.
366
367 This is mostly needed in case os.popen() is not available, or
368 doesn't work as advertised, e.g. in Win9X GUI programs like
369 PythonWin or IDLE.
370
371 Writing to the pipe is currently not supported.
372
373 """
374 tmpfile = ''
375 pipe = None
376 bufsize = None
377 mode = 'r'
378
379 def __init__(self,cmd,mode='r',bufsize=None):
380
381 if mode != 'r':
382 raise ValueError,'popen()-emulation only supports read mode'
383 import tempfile
384 self.tmpfile = tmpfile = tempfile.mktemp()
385 os.system(cmd + ' > %s' % tmpfile)
386 self.pipe = open(tmpfile,'rb')
387 self.bufsize = bufsize
388 self.mode = mode
389
390 def read(self):
391
392 return self.pipe.read()
393
394 def readlines(self):
395
396 if self.bufsize is not None:
397 return self.pipe.readlines()
398
399 def close(self,
400
401 remove=os.unlink,error=os.error):
402
403 if self.pipe:
404 rc = self.pipe.close()
405 else:
406 rc = 255
407 if self.tmpfile:
408 try:
409 remove(self.tmpfile)
410 except error:
411 pass
412 return rc
413
414 # Alias
415 __del__ = close
416
417def popen(cmd, mode='r', bufsize=None):
418
419 """ Portable popen() interface.
420 """
421 # Find a working popen implementation preferring win32pipe.popen
422 # over os.popen over _popen
423 popen = None
424 if os.environ.get('OS','') == 'Windows_NT':
425 # On NT win32pipe should work; on Win9x it hangs due to bugs
426 # in the MS C lib (see MS KnowledgeBase article Q150956)
427 try:
428 import win32pipe
429 except ImportError:
430 pass
431 else:
432 popen = win32pipe.popen
433 if popen is None:
434 if hasattr(os,'popen'):
435 popen = os.popen
436 # Check whether it works... it doesn't in GUI programs
437 # on Windows platforms
438 if sys.platform == 'win32': # XXX Others too ?
439 try:
440 popen('')
441 except os.error:
442 popen = _popen
443 else:
444 popen = _popen
445 if bufsize is None:
446 return popen(cmd,mode)
447 else:
448 return popen(cmd,mode,bufsize)
449
Marc-André Lemburg9e0dc962007-01-13 21:00:08 +0000450def _norm_version(version, build=''):
Marc-André Lemburg246d8472003-04-24 11:36:11 +0000451
Brett Cannon8ab27df2003-08-05 03:52:04 +0000452 """ Normalize the version and build strings and return a single
Walter Dörwalde5a7fad2005-11-21 17:01:27 +0000453 version string using the format major.minor.build (or patchlevel).
Marc-André Lemburg246d8472003-04-24 11:36:11 +0000454 """
455 l = string.split(version,'.')
456 if build:
457 l.append(build)
458 try:
459 ints = map(int,l)
460 except ValueError:
461 strings = l
462 else:
463 strings = map(str,ints)
464 version = string.join(strings[:3],'.')
465 return version
466
Marc-André Lemburg366a0fe2003-04-24 11:46:35 +0000467_ver_output = re.compile(r'(?:([\w ]+) ([\w.]+) '
468 '.*'
469 'Version ([\d.]+))')
470
Marc-André Lemburg9e0dc962007-01-13 21:00:08 +0000471def _syscmd_ver(system='', release='', version='',
Marc-André Lemburg246d8472003-04-24 11:36:11 +0000472
Marc-André Lemburg366a0fe2003-04-24 11:46:35 +0000473 supported_platforms=('win32','win16','dos','os2')):
Marc-André Lemburg246d8472003-04-24 11:36:11 +0000474
475 """ Tries to figure out the OS version used and returns
476 a tuple (system,release,version).
Tim Peters0eadaac2003-04-24 16:02:54 +0000477
Marc-André Lemburg246d8472003-04-24 11:36:11 +0000478 It uses the "ver" shell command for this which is known
479 to exists on Windows, DOS and OS/2. XXX Others too ?
480
481 In case this fails, the given parameters are used as
482 defaults.
483
484 """
485 if sys.platform not in supported_platforms:
486 return system,release,version
487
488 # Try some common cmd strings
489 for cmd in ('ver','command /c ver','cmd /c ver'):
490 try:
491 pipe = popen(cmd)
492 info = pipe.read()
493 if pipe.close():
494 raise os.error,'command failed'
495 # XXX How can I supress shell errors from being written
496 # to stderr ?
497 except os.error,why:
498 #print 'Command %s failed: %s' % (cmd,why)
499 continue
500 except IOError,why:
501 #print 'Command %s failed: %s' % (cmd,why)
502 continue
503 else:
504 break
505 else:
506 return system,release,version
507
508 # Parse the output
509 info = string.strip(info)
Marc-André Lemburg366a0fe2003-04-24 11:46:35 +0000510 m = _ver_output.match(info)
Marc-André Lemburg9e0dc962007-01-13 21:00:08 +0000511 if m is not None:
Marc-André Lemburg246d8472003-04-24 11:36:11 +0000512 system,release,version = m.groups()
513 # Strip trailing dots from version and release
514 if release[-1] == '.':
515 release = release[:-1]
516 if version[-1] == '.':
517 version = version[:-1]
518 # Normalize the version and build strings (eliminating additional
519 # zeros)
520 version = _norm_version(version)
521 return system,release,version
522
523def _win32_getvalue(key,name,default=''):
524
525 """ Read a value for name from the registry key.
526
527 In case this fails, default is returned.
528
529 """
530 from win32api import RegQueryValueEx
531 try:
532 return RegQueryValueEx(key,name)
533 except:
534 return default
535
536def win32_ver(release='',version='',csd='',ptype=''):
537
538 """ Get additional version information from the Windows Registry
539 and return a tuple (version,csd,ptype) referring to version
540 number, CSD level and OS type (multi/single
541 processor).
542
543 As a hint: ptype returns 'Uniprocessor Free' on single
544 processor NT machines and 'Multiprocessor Free' on multi
545 processor machines. The 'Free' refers to the OS version being
546 free of debugging code. It could also state 'Checked' which
547 means the OS version uses debugging code, i.e. code that
548 checks arguments, ranges, etc. (Thomas Heller).
549
Andrew M. Kuchling47c2ab62003-04-24 16:36:49 +0000550 Note: this function only works if Mark Hammond's win32
Marc-André Lemburg246d8472003-04-24 11:36:11 +0000551 package is installed and obviously only runs on Win32
552 compatible platforms.
553
554 """
555 # XXX Is there any way to find out the processor type on WinXX ?
556 # XXX Is win32 available on Windows CE ?
Marc-André Lemburg91e83e22004-03-25 18:35:12 +0000557 #
Marc-André Lemburg246d8472003-04-24 11:36:11 +0000558 # Adapted from code posted by Karl Putland to comp.lang.python.
Marc-André Lemburg91e83e22004-03-25 18:35:12 +0000559 #
560 # The mappings between reg. values and release names can be found
561 # here: http://msdn.microsoft.com/library/en-us/sysinfo/base/osversioninfo_str.asp
Marc-André Lemburg246d8472003-04-24 11:36:11 +0000562
563 # Import the needed APIs
564 try:
565 import win32api
566 except ImportError:
567 return release,version,csd,ptype
568 from win32api import RegQueryValueEx,RegOpenKeyEx,RegCloseKey,GetVersionEx
569 from win32con import HKEY_LOCAL_MACHINE,VER_PLATFORM_WIN32_NT,\
570 VER_PLATFORM_WIN32_WINDOWS
571
572 # Find out the registry key and some general version infos
573 maj,min,buildno,plat,csd = GetVersionEx()
574 version = '%i.%i.%i' % (maj,min,buildno & 0xFFFF)
575 if csd[:13] == 'Service Pack ':
576 csd = 'SP' + csd[13:]
577 if plat == VER_PLATFORM_WIN32_WINDOWS:
578 regkey = 'SOFTWARE\\Microsoft\\Windows\\CurrentVersion'
579 # Try to guess the release name
580 if maj == 4:
581 if min == 0:
582 release = '95'
Marc-André Lemburg91e83e22004-03-25 18:35:12 +0000583 elif min == 10:
Marc-André Lemburg246d8472003-04-24 11:36:11 +0000584 release = '98'
Marc-André Lemburg91e83e22004-03-25 18:35:12 +0000585 elif min == 90:
586 release = 'Me'
587 else:
588 release = 'postMe'
Marc-André Lemburg246d8472003-04-24 11:36:11 +0000589 elif maj == 5:
590 release = '2000'
591 elif plat == VER_PLATFORM_WIN32_NT:
592 regkey = 'SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion'
593 if maj <= 4:
594 release = 'NT'
595 elif maj == 5:
Marc-André Lemburg91e83e22004-03-25 18:35:12 +0000596 if min == 0:
597 release = '2000'
598 elif min == 1:
599 release = 'XP'
600 elif min == 2:
601 release = '2003Server'
602 else:
603 release = 'post2003'
Marc-André Lemburgb24cd0f2007-06-12 09:26:49 +0000604 elif maj == 6:
605 if min == 0:
606 # Per http://msdn2.microsoft.com/en-us/library/ms724429.aspx
607 productType = GetVersionEx(1)[8]
608 if productType == 1: # VER_NT_WORKSTATION
609 release = 'Vista'
610 else:
611 release = '2008Server'
612 else:
613 release = 'post2008Server'
Marc-André Lemburg246d8472003-04-24 11:36:11 +0000614 else:
615 if not release:
616 # E.g. Win3.1 with win32s
617 release = '%i.%i' % (maj,min)
618 return release,version,csd,ptype
619
620 # Open the registry key
621 try:
622 keyCurVer = RegOpenKeyEx(HKEY_LOCAL_MACHINE,regkey)
623 # Get a value to make sure the key exists...
624 RegQueryValueEx(keyCurVer,'SystemRoot')
625 except:
626 return release,version,csd,ptype
Tim Peters0eadaac2003-04-24 16:02:54 +0000627
Marc-André Lemburg246d8472003-04-24 11:36:11 +0000628 # Parse values
629 #subversion = _win32_getvalue(keyCurVer,
630 # 'SubVersionNumber',
631 # ('',1))[0]
632 #if subversion:
633 # release = release + subversion # 95a, 95b, etc.
634 build = _win32_getvalue(keyCurVer,
635 'CurrentBuildNumber',
636 ('',1))[0]
637 ptype = _win32_getvalue(keyCurVer,
638 'CurrentType',
639 (ptype,1))[0]
640
641 # Normalize version
642 version = _norm_version(version,build)
643
644 # Close key
645 RegCloseKey(keyCurVer)
646 return release,version,csd,ptype
647
648def _mac_ver_lookup(selectors,default=None):
649
650 from gestalt import gestalt
Jack Jansena290e3d2003-08-11 11:08:49 +0000651 import MacOS
Marc-André Lemburg246d8472003-04-24 11:36:11 +0000652 l = []
653 append = l.append
654 for selector in selectors:
655 try:
656 append(gestalt(selector))
Jack Jansena290e3d2003-08-11 11:08:49 +0000657 except (RuntimeError, MacOS.Error):
Marc-André Lemburg246d8472003-04-24 11:36:11 +0000658 append(default)
659 return l
660
661def _bcd2str(bcd):
662
663 return hex(bcd)[2:]
664
665def mac_ver(release='',versioninfo=('','',''),machine=''):
666
667 """ Get MacOS version information and return it as tuple (release,
668 versioninfo, machine) with versioninfo being a tuple (version,
669 dev_stage, non_release_version).
670
Brett Cannon8ab27df2003-08-05 03:52:04 +0000671 Entries which cannot be determined are set to the paramter values
672 which default to ''. All tuple entries are strings.
Marc-André Lemburg246d8472003-04-24 11:36:11 +0000673
674 Thanks to Mark R. Levinson for mailing documentation links and
675 code examples for this function. Documentation for the
676 gestalt() API is available online at:
677
678 http://www.rgaros.nl/gestalt/
679
680 """
681 # Check whether the version info module is available
682 try:
683 import gestalt
Jack Jansena290e3d2003-08-11 11:08:49 +0000684 import MacOS
Marc-André Lemburg246d8472003-04-24 11:36:11 +0000685 except ImportError:
686 return release,versioninfo,machine
687 # Get the infos
688 sysv,sysu,sysa = _mac_ver_lookup(('sysv','sysu','sysa'))
689 # Decode the infos
690 if sysv:
691 major = (sysv & 0xFF00) >> 8
692 minor = (sysv & 0x00F0) >> 4
693 patch = (sysv & 0x000F)
694 release = '%s.%i.%i' % (_bcd2str(major),minor,patch)
695 if sysu:
696 major = int((sysu & 0xFF000000L) >> 24)
697 minor = (sysu & 0x00F00000) >> 20
698 bugfix = (sysu & 0x000F0000) >> 16
699 stage = (sysu & 0x0000FF00) >> 8
700 nonrel = (sysu & 0x000000FF)
701 version = '%s.%i.%i' % (_bcd2str(major),minor,bugfix)
702 nonrel = _bcd2str(nonrel)
703 stage = {0x20:'development',
704 0x40:'alpha',
705 0x60:'beta',
706 0x80:'final'}.get(stage,'')
707 versioninfo = (version,stage,nonrel)
708 if sysa:
Tim Peters0eadaac2003-04-24 16:02:54 +0000709 machine = {0x1: '68k',
Ronald Oussoren749d0702006-04-17 13:37:15 +0000710 0x2: 'PowerPC',
711 0xa: 'i386'}.get(sysa,'')
Marc-André Lemburg246d8472003-04-24 11:36:11 +0000712 return release,versioninfo,machine
713
Neal Norwitz9b924c62003-06-29 04:17:45 +0000714def _java_getprop(name,default):
Marc-André Lemburg246d8472003-04-24 11:36:11 +0000715
716 from java.lang import System
717 try:
Marc-André Lemburg9e0dc962007-01-13 21:00:08 +0000718 value = System.getProperty(name)
719 if value is None:
720 return default
721 return value
722 except AttributeError:
Marc-André Lemburg246d8472003-04-24 11:36:11 +0000723 return default
724
725def java_ver(release='',vendor='',vminfo=('','',''),osinfo=('','','')):
Tim Peters0eadaac2003-04-24 16:02:54 +0000726
Brett Cannon8ab27df2003-08-05 03:52:04 +0000727 """ Version interface for Jython.
Marc-André Lemburg246d8472003-04-24 11:36:11 +0000728
729 Returns a tuple (release,vendor,vminfo,osinfo) with vminfo being
730 a tuple (vm_name,vm_release,vm_vendor) and osinfo being a
731 tuple (os_name,os_version,os_arch).
732
733 Values which cannot be determined are set to the defaults
734 given as parameters (which all default to '').
735
736 """
737 # Import the needed APIs
738 try:
739 import java.lang
740 except ImportError:
741 return release,vendor,vminfo,osinfo
742
Marc-André Lemburg9e0dc962007-01-13 21:00:08 +0000743 vendor = _java_getprop('java.vendor', vendor)
744 release = _java_getprop('java.version', release)
745 vm_name, vm_release, vm_vendor = vminfo
746 vm_name = _java_getprop('java.vm.name', vm_name)
747 vm_vendor = _java_getprop('java.vm.vendor', vm_vendor)
748 vm_release = _java_getprop('java.vm.version', vm_release)
749 vminfo = vm_name, vm_release, vm_vendor
750 os_name, os_version, os_arch = osinfo
751 os_arch = _java_getprop('java.os.arch', os_arch)
752 os_name = _java_getprop('java.os.name', os_name)
753 os_version = _java_getprop('java.os.version', os_version)
754 osinfo = os_name, os_version, os_arch
Tim Peters0eadaac2003-04-24 16:02:54 +0000755
Marc-André Lemburg9e0dc962007-01-13 21:00:08 +0000756 return release, vendor, vminfo, osinfo
Marc-André Lemburg246d8472003-04-24 11:36:11 +0000757
758### System name aliasing
759
760def system_alias(system,release,version):
761
762 """ Returns (system,release,version) aliased to common
763 marketing names used for some systems.
764
765 It also does some reordering of the information in some cases
766 where it would otherwise cause confusion.
767
768 """
769 if system == 'Rhapsody':
770 # Apple's BSD derivative
771 # XXX How can we determine the marketing release number ?
772 return 'MacOS X Server',system+release,version
773
774 elif system == 'SunOS':
775 # Sun's OS
776 if release < '5':
777 # These releases use the old name SunOS
778 return system,release,version
779 # Modify release (marketing release = SunOS release - 3)
780 l = string.split(release,'.')
781 if l:
782 try:
783 major = int(l[0])
784 except ValueError:
785 pass
786 else:
787 major = major - 3
788 l[0] = str(major)
789 release = string.join(l,'.')
790 if release < '6':
791 system = 'Solaris'
792 else:
793 # XXX Whatever the new SunOS marketing name is...
794 system = 'Solaris'
795
796 elif system == 'IRIX64':
797 # IRIX reports IRIX64 on platforms with 64-bit support; yet it
798 # is really a version and not a different platform, since 32-bit
799 # apps are also supported..
800 system = 'IRIX'
801 if version:
802 version = version + ' (64bit)'
803 else:
804 version = '64bit'
805
806 elif system in ('win32','win16'):
807 # In case one of the other tricks
808 system = 'Windows'
809
810 return system,release,version
811
812### Various internal helpers
813
814def _platform(*args):
815
816 """ Helper to format the platform string in a filename
817 compatible format e.g. "system-version-machine".
818 """
819 # Format the platform string
820 platform = string.join(
821 map(string.strip,
Marc-André Lemburg9e0dc962007-01-13 21:00:08 +0000822 filter(len, args)),
Marc-André Lemburg246d8472003-04-24 11:36:11 +0000823 '-')
824
825 # Cleanup some possible filename obstacles...
826 replace = string.replace
827 platform = replace(platform,' ','_')
828 platform = replace(platform,'/','-')
829 platform = replace(platform,'\\','-')
830 platform = replace(platform,':','-')
831 platform = replace(platform,';','-')
832 platform = replace(platform,'"','-')
833 platform = replace(platform,'(','-')
834 platform = replace(platform,')','-')
835
836 # No need to report 'unknown' information...
837 platform = replace(platform,'unknown','')
838
839 # Fold '--'s and remove trailing '-'
840 while 1:
841 cleaned = replace(platform,'--','-')
842 if cleaned == platform:
843 break
844 platform = cleaned
845 while platform[-1] == '-':
846 platform = platform[:-1]
847
848 return platform
849
850def _node(default=''):
851
852 """ Helper to determine the node name of this machine.
853 """
854 try:
855 import socket
856 except ImportError:
857 # No sockets...
858 return default
859 try:
860 return socket.gethostname()
861 except socket.error:
862 # Still not working...
863 return default
864
865# os.path.abspath is new in Python 1.5.2:
866if not hasattr(os.path,'abspath'):
867
868 def _abspath(path,
869
870 isabs=os.path.isabs,join=os.path.join,getcwd=os.getcwd,
871 normpath=os.path.normpath):
872
873 if not isabs(path):
874 path = join(getcwd(), path)
875 return normpath(path)
876
877else:
878
879 _abspath = os.path.abspath
880
881def _follow_symlinks(filepath):
882
883 """ In case filepath is a symlink, follow it until a
884 real file is reached.
885 """
886 filepath = _abspath(filepath)
887 while os.path.islink(filepath):
888 filepath = os.path.normpath(
889 os.path.join(filepath,os.readlink(filepath)))
890 return filepath
891
892def _syscmd_uname(option,default=''):
893
894 """ Interface to the system's uname command.
895 """
896 if sys.platform in ('dos','win32','win16','os2'):
897 # XXX Others too ?
898 return default
899 try:
900 f = os.popen('uname %s 2> /dev/null' % option)
901 except (AttributeError,os.error):
902 return default
903 output = string.strip(f.read())
904 rc = f.close()
905 if not output or rc:
906 return default
907 else:
908 return output
909
910def _syscmd_file(target,default=''):
911
912 """ Interface to the system's file command.
913
914 The function uses the -b option of the file command to have it
915 ommit the filename in its output and if possible the -L option
916 to have the command follow symlinks. It returns default in
917 case the command should fail.
918
919 """
920 target = _follow_symlinks(target)
921 try:
922 f = os.popen('file %s 2> /dev/null' % target)
923 except (AttributeError,os.error):
924 return default
925 output = string.strip(f.read())
926 rc = f.close()
927 if not output or rc:
928 return default
929 else:
930 return output
931
932### Information about the used architecture
933
934# Default values for architecture; non-empty strings override the
935# defaults given as parameters
936_default_architecture = {
937 'win32': ('','WindowsPE'),
938 'win16': ('','Windows'),
939 'dos': ('','MSDOS'),
940}
941
Marc-André Lemburg366a0fe2003-04-24 11:46:35 +0000942_architecture_split = re.compile(r'[\s,]').split
Marc-André Lemburg246d8472003-04-24 11:36:11 +0000943
Marc-André Lemburg366a0fe2003-04-24 11:46:35 +0000944def architecture(executable=sys.executable,bits='',linkage=''):
Marc-André Lemburg246d8472003-04-24 11:36:11 +0000945
946 """ Queries the given executable (defaults to the Python interpreter
Brett Cannon8ab27df2003-08-05 03:52:04 +0000947 binary) for various architecture information.
Marc-André Lemburg246d8472003-04-24 11:36:11 +0000948
Brett Cannon8ab27df2003-08-05 03:52:04 +0000949 Returns a tuple (bits,linkage) which contains information about
Marc-André Lemburg246d8472003-04-24 11:36:11 +0000950 the bit architecture and the linkage format used for the
951 executable. Both values are returned as strings.
952
953 Values that cannot be determined are returned as given by the
954 parameter presets. If bits is given as '', the sizeof(pointer)
955 (or sizeof(long) on Python version < 1.5.2) is used as
956 indicator for the supported pointer size.
957
958 The function relies on the system's "file" command to do the
959 actual work. This is available on most if not all Unix
Brett Cannon8ab27df2003-08-05 03:52:04 +0000960 platforms. On some non-Unix platforms where the "file" command
961 does not exist and the executable is set to the Python interpreter
962 binary defaults from _default_architecture are used.
Marc-André Lemburg246d8472003-04-24 11:36:11 +0000963
964 """
965 # Use the sizeof(pointer) as default number of bits if nothing
966 # else is given as default.
967 if not bits:
968 import struct
969 try:
970 size = struct.calcsize('P')
971 except struct.error:
972 # Older installations can only query longs
973 size = struct.calcsize('l')
974 bits = str(size*8) + 'bit'
Tim Peters0eadaac2003-04-24 16:02:54 +0000975
Marc-André Lemburg246d8472003-04-24 11:36:11 +0000976 # Get data from the 'file' system command
Marc-André Lemburg3b8f60b2007-01-13 23:13:54 +0000977 if executable:
978 output = _syscmd_file(executable, '')
979 else:
980 output = ''
Marc-André Lemburg246d8472003-04-24 11:36:11 +0000981
982 if not output and \
983 executable == sys.executable:
984 # "file" command did not return anything; we'll try to provide
Tim Peters0eadaac2003-04-24 16:02:54 +0000985 # some sensible defaults then...
Marc-André Lemburg246d8472003-04-24 11:36:11 +0000986 if _default_architecture.has_key(sys.platform):
987 b,l = _default_architecture[sys.platform]
988 if b:
989 bits = b
990 if l:
991 linkage = l
992 return bits,linkage
993
994 # Split the output into a list of strings omitting the filename
Marc-André Lemburg366a0fe2003-04-24 11:46:35 +0000995 fileout = _architecture_split(output)[1:]
Tim Peters0eadaac2003-04-24 16:02:54 +0000996
Marc-André Lemburg246d8472003-04-24 11:36:11 +0000997 if 'executable' not in fileout:
998 # Format not supported
999 return bits,linkage
1000
1001 # Bits
1002 if '32-bit' in fileout:
1003 bits = '32bit'
1004 elif 'N32' in fileout:
1005 # On Irix only
1006 bits = 'n32bit'
1007 elif '64-bit' in fileout:
1008 bits = '64bit'
1009
1010 # Linkage
1011 if 'ELF' in fileout:
1012 linkage = 'ELF'
1013 elif 'PE' in fileout:
1014 # E.g. Windows uses this format
1015 if 'Windows' in fileout:
1016 linkage = 'WindowsPE'
1017 else:
1018 linkage = 'PE'
1019 elif 'COFF' in fileout:
1020 linkage = 'COFF'
1021 elif 'MS-DOS' in fileout:
1022 linkage = 'MSDOS'
1023 else:
1024 # XXX the A.OUT format also falls under this class...
1025 pass
1026
1027 return bits,linkage
1028
1029### Portable uname() interface
Tim Peters0eadaac2003-04-24 16:02:54 +00001030
Marc-André Lemburg246d8472003-04-24 11:36:11 +00001031_uname_cache = None
1032
1033def uname():
1034
1035 """ Fairly portable uname interface. Returns a tuple
1036 of strings (system,node,release,version,machine,processor)
1037 identifying the underlying platform.
1038
1039 Note that unlike the os.uname function this also returns
Brett Cannon8ab27df2003-08-05 03:52:04 +00001040 possible processor information as an additional tuple entry.
Marc-André Lemburg246d8472003-04-24 11:36:11 +00001041
1042 Entries which cannot be determined are set to ''.
1043
1044 """
1045 global _uname_cache
1046
1047 if _uname_cache is not None:
1048 return _uname_cache
1049
1050 # Get some infos from the builtin os.uname API...
1051 try:
1052 system,node,release,version,machine = os.uname()
1053
1054 except AttributeError:
1055 # Hmm, no uname... we'll have to poke around the system then.
1056 system = sys.platform
1057 release = ''
1058 version = ''
1059 node = _node()
1060 machine = ''
1061 processor = ''
1062 use_syscmd_ver = 1
1063
1064 # Try win32_ver() on win32 platforms
1065 if system == 'win32':
1066 release,version,csd,ptype = win32_ver()
1067 if release and version:
1068 use_syscmd_ver = 0
Marc-André Lemburg9e0dc962007-01-13 21:00:08 +00001069 # XXX Should try to parse the PROCESSOR_* environment variables
1070 # available on Win XP and later; see
1071 # http://support.microsoft.com/kb/888731 and
1072 # http://www.geocities.com/rick_lively/MANUALS/ENV/MSWIN/PROCESSI.HTM
Tim Peters0eadaac2003-04-24 16:02:54 +00001073
Marc-André Lemburg246d8472003-04-24 11:36:11 +00001074 # Try the 'ver' system command available on some
1075 # platforms
1076 if use_syscmd_ver:
1077 system,release,version = _syscmd_ver(system)
Marc-André Lemburgcdc79232004-06-19 17:17:00 +00001078 # Normalize system to what win32_ver() normally returns
1079 # (_syscmd_ver() tends to return the vendor name as well)
1080 if system == 'Microsoft Windows':
1081 system = 'Windows'
Marc-André Lemburgb24cd0f2007-06-12 09:26:49 +00001082 elif system == 'Microsoft' and release == 'Windows':
1083 # Under Windows Vista and Windows Server 2008,
1084 # Microsoft changed the output of the ver command. The
1085 # release is no longer printed. This causes the
1086 # system and release to be misidentified.
1087 system = 'Windows'
1088 if '6.0' == version[:3]:
1089 release = 'Vista'
1090 else:
1091 release = ''
Marc-André Lemburg246d8472003-04-24 11:36:11 +00001092
1093 # In case we still don't know anything useful, we'll try to
1094 # help ourselves
1095 if system in ('win32','win16'):
1096 if not version:
1097 if system == 'win32':
1098 version = '32bit'
1099 else:
1100 version = '16bit'
1101 system = 'Windows'
1102
1103 elif system[:4] == 'java':
1104 release,vendor,vminfo,osinfo = java_ver()
1105 system = 'Java'
1106 version = string.join(vminfo,', ')
1107 if not version:
1108 version = vendor
1109
1110 elif os.name == 'mac':
1111 release,(version,stage,nonrel),machine = mac_ver()
1112 system = 'MacOS'
1113
1114 else:
1115 # System specific extensions
1116 if system == 'OpenVMS':
1117 # OpenVMS seems to have release and version mixed up
1118 if not release or release == '0':
1119 release = version
1120 version = ''
1121 # Get processor information
1122 try:
1123 import vms_lib
1124 except ImportError:
1125 pass
1126 else:
1127 csid, cpu_number = vms_lib.getsyi('SYI$_CPU',0)
1128 if (cpu_number >= 128):
1129 processor = 'Alpha'
1130 else:
1131 processor = 'VAX'
1132 else:
1133 # Get processor information from the uname system command
1134 processor = _syscmd_uname('-p','')
1135
1136 # 'unknown' is not really any useful as information; we'll convert
1137 # it to '' which is more portable
1138 if system == 'unknown':
1139 system = ''
1140 if node == 'unknown':
1141 node = ''
1142 if release == 'unknown':
1143 release = ''
1144 if version == 'unknown':
1145 version = ''
1146 if machine == 'unknown':
1147 machine = ''
1148 if processor == 'unknown':
1149 processor = ''
Sean Reifscheiderf09597c2007-09-17 20:53:21 +00001150
1151 # normalize name
1152 if system == 'Microsoft' and release == 'Windows':
1153 system = 'Windows'
1154 release = 'Vista'
1155
Marc-André Lemburg246d8472003-04-24 11:36:11 +00001156 _uname_cache = system,node,release,version,machine,processor
1157 return _uname_cache
1158
1159### Direct interfaces to some of the uname() return values
1160
1161def system():
1162
1163 """ Returns the system/OS name, e.g. 'Linux', 'Windows' or 'Java'.
1164
1165 An empty string is returned if the value cannot be determined.
1166
1167 """
1168 return uname()[0]
1169
1170def node():
1171
Brett Cannon8ab27df2003-08-05 03:52:04 +00001172 """ Returns the computer's network name (which may not be fully
1173 qualified)
Marc-André Lemburg246d8472003-04-24 11:36:11 +00001174
1175 An empty string is returned if the value cannot be determined.
1176
1177 """
1178 return uname()[1]
1179
1180def release():
1181
1182 """ Returns the system's release, e.g. '2.2.0' or 'NT'
1183
1184 An empty string is returned if the value cannot be determined.
1185
1186 """
1187 return uname()[2]
1188
1189def version():
1190
1191 """ Returns the system's release version, e.g. '#3 on degas'
1192
1193 An empty string is returned if the value cannot be determined.
1194
1195 """
1196 return uname()[3]
1197
1198def machine():
1199
1200 """ Returns the machine type, e.g. 'i386'
1201
1202 An empty string is returned if the value cannot be determined.
1203
1204 """
1205 return uname()[4]
1206
1207def processor():
1208
1209 """ Returns the (true) processor name, e.g. 'amdk6'
1210
1211 An empty string is returned if the value cannot be
1212 determined. Note that many platforms do not provide this
1213 information or simply return the same value as for machine(),
1214 e.g. NetBSD does this.
1215
1216 """
1217 return uname()[5]
1218
1219### Various APIs for extracting information from sys.version
1220
Marc-André Lemburg9e0dc962007-01-13 21:00:08 +00001221_sys_version_parser = re.compile(
1222 r'([\w.+]+)\s*'
1223 '\(#?([^,]+),\s*([\w ]+),\s*([\w :]+)\)\s*'
1224 '\[([^\]]+)\]?')
1225
1226_jython_sys_version_parser = re.compile(
1227 r'([\d\.]+)')
1228
1229_ironpython_sys_version_parser = re.compile(
1230 r'IronPython\s*'
1231 '([\d\.]+)'
1232 '(?: \(([\d\.]+)\))?'
1233 ' on (.NET [\d\.]+)')
Marc-André Lemburg246d8472003-04-24 11:36:11 +00001234
Marc-André Lemburg2be9d432007-01-13 22:32:21 +00001235_sys_version_cache = {}
1236
1237def _sys_version(sys_version=None):
Marc-André Lemburg246d8472003-04-24 11:36:11 +00001238
1239 """ Returns a parsed version of Python's sys.version as tuple
Marc-André Lemburg9e0dc962007-01-13 21:00:08 +00001240 (name, version, branch, revision, buildno, builddate, compiler)
1241 referring to the Python implementation name, version, branch,
1242 revision, build number, build date/time as string and the compiler
1243 identification string.
Marc-André Lemburg246d8472003-04-24 11:36:11 +00001244
1245 Note that unlike the Python sys.version, the returned value
1246 for the Python version will always include the patchlevel (it
1247 defaults to '.0').
1248
Marc-André Lemburg9e0dc962007-01-13 21:00:08 +00001249 The function returns empty strings for tuple entries that
1250 cannot be determined.
1251
Marc-André Lemburg2be9d432007-01-13 22:32:21 +00001252 sys_version may be given to parse an alternative version
1253 string, e.g. if the version was read from a different Python
1254 interpreter.
1255
Marc-André Lemburg246d8472003-04-24 11:36:11 +00001256 """
Marc-André Lemburg2be9d432007-01-13 22:32:21 +00001257 # Get the Python version
1258 if sys_version is None:
1259 sys_version = sys.version
Marc-André Lemburg246d8472003-04-24 11:36:11 +00001260
Marc-André Lemburg2be9d432007-01-13 22:32:21 +00001261 # Try the cache first
1262 result = _sys_version_cache.get(sys_version, None)
1263 if result is not None:
1264 return result
Marc-André Lemburg9e0dc962007-01-13 21:00:08 +00001265
Marc-André Lemburg2be9d432007-01-13 22:32:21 +00001266 # Parse it
1267 if sys_version[:10] == 'IronPython':
Marc-André Lemburg9e0dc962007-01-13 21:00:08 +00001268 # IronPython
1269 name = 'IronPython'
Marc-André Lemburg2be9d432007-01-13 22:32:21 +00001270 match = _ironpython_sys_version_parser.match(sys_version)
Marc-André Lemburg9e0dc962007-01-13 21:00:08 +00001271 if match is None:
1272 raise ValueError(
1273 'failed to parse IronPython sys.version: %s' %
Marc-André Lemburg2be9d432007-01-13 22:32:21 +00001274 repr(sys_version))
1275 version, alt_version, compiler = match.groups()
Marc-André Lemburg9e0dc962007-01-13 21:00:08 +00001276 branch = ''
1277 revision = ''
1278 buildno = ''
1279 builddate = ''
1280
1281 elif sys.platform[:4] == 'java':
1282 # Jython
1283 name = 'Jython'
Marc-André Lemburg2be9d432007-01-13 22:32:21 +00001284 match = _jython_sys_version_parser.match(sys_version)
Marc-André Lemburg9e0dc962007-01-13 21:00:08 +00001285 if match is None:
1286 raise ValueError(
1287 'failed to parse Jython sys.version: %s' %
Marc-André Lemburg2be9d432007-01-13 22:32:21 +00001288 repr(sys_version))
Marc-André Lemburg9e0dc962007-01-13 21:00:08 +00001289 version, = match.groups()
1290 branch = ''
1291 revision = ''
1292 compiler = sys.platform
1293 buildno = ''
1294 builddate = ''
1295
1296 else:
1297 # CPython
Marc-André Lemburg2be9d432007-01-13 22:32:21 +00001298 match = _sys_version_parser.match(sys_version)
Marc-André Lemburg9e0dc962007-01-13 21:00:08 +00001299 if match is None:
1300 raise ValueError(
1301 'failed to parse CPython sys.version: %s' %
Marc-André Lemburg2be9d432007-01-13 22:32:21 +00001302 repr(sys_version))
Marc-André Lemburg9e0dc962007-01-13 21:00:08 +00001303 version, buildno, builddate, buildtime, compiler = \
1304 match.groups()
1305 if hasattr(sys, 'subversion'):
Marc-André Lemburg2be9d432007-01-13 22:32:21 +00001306 # sys.subversion was added in Python 2.5
Marc-André Lemburg9e0dc962007-01-13 21:00:08 +00001307 name, branch, revision = sys.subversion
1308 else:
1309 name = 'CPython'
1310 branch = ''
1311 revision = ''
1312 builddate = builddate + ' ' + buildtime
Marc-André Lemburg2be9d432007-01-13 22:32:21 +00001313
1314 # Add the patchlevel version if missing
Marc-André Lemburg246d8472003-04-24 11:36:11 +00001315 l = string.split(version, '.')
1316 if len(l) == 2:
1317 l.append('0')
1318 version = string.join(l, '.')
Marc-André Lemburg2be9d432007-01-13 22:32:21 +00001319
1320 # Build and cache the result
1321 result = (name, version, branch, revision, buildno, builddate, compiler)
1322 _sys_version_cache[sys_version] = result
1323 return result
1324
1325def _test_sys_version():
1326
1327 _sys_version_cache.clear()
1328 for input, output in (
1329 ('2.4.3 (#1, Jun 21 2006, 13:54:21) \n[GCC 3.3.4 (pre 3.3.5 20040809)]',
1330 ('CPython', '2.4.3', '', '', '1', 'Jun 21 2006 13:54:21', 'GCC 3.3.4 (pre 3.3.5 20040809)')),
1331 ('IronPython 1.0.60816 on .NET 2.0.50727.42',
1332 ('IronPython', '1.0.60816', '', '', '', '', '.NET 2.0.50727.42')),
1333 ('IronPython 1.0 (1.0.61005.1977) on .NET 2.0.50727.42',
1334 ('IronPython', '1.0.0', '', '', '', '', '.NET 2.0.50727.42')),
1335 ):
1336 parsed = _sys_version(input)
1337 if parsed != output:
1338 print (input, parsed)
Marc-André Lemburg246d8472003-04-24 11:36:11 +00001339
Marc-André Lemburg9e0dc962007-01-13 21:00:08 +00001340def python_implementation():
1341
1342 """ Returns a string identifying the Python implementation.
1343
1344 Currently, the following implementations are identified:
1345 'CPython' (C implementation of Python),
1346 'IronPython' (.NET implementation of Python),
1347 'Jython' (Java implementation of Python).
1348
1349 """
1350 return _sys_version()[0]
1351
Marc-André Lemburg246d8472003-04-24 11:36:11 +00001352def python_version():
1353
1354 """ Returns the Python version as string 'major.minor.patchlevel'
1355
1356 Note that unlike the Python sys.version, the returned value
1357 will always include the patchlevel (it defaults to 0).
1358
1359 """
Marc-André Lemburg9e0dc962007-01-13 21:00:08 +00001360 if hasattr(sys, 'version_info'):
1361 return '%i.%i.%i' % sys.version_info[:3]
1362 return _sys_version()[1]
Marc-André Lemburg246d8472003-04-24 11:36:11 +00001363
1364def python_version_tuple():
1365
1366 """ Returns the Python version as tuple (major, minor, patchlevel)
1367 of strings.
1368
1369 Note that unlike the Python sys.version, the returned value
1370 will always include the patchlevel (it defaults to 0).
1371
1372 """
Marc-André Lemburg9e0dc962007-01-13 21:00:08 +00001373 if hasattr(sys, 'version_info'):
1374 return sys.version_info[:3]
1375 return tuple(string.split(_sys_version()[1], '.'))
1376
1377def python_branch():
1378
Neal Norwitz4b86f8b2007-01-13 21:22:37 +00001379 """ Returns a string identifying the Python implementation
Marc-André Lemburg9e0dc962007-01-13 21:00:08 +00001380 branch.
1381
1382 For CPython this is the Subversion branch from which the
1383 Python binary was built.
1384
1385 If not available, an empty string is returned.
1386
1387 """
Tim Petersf733abb2007-01-30 03:03:46 +00001388
Marc-André Lemburg9e0dc962007-01-13 21:00:08 +00001389 return _sys_version()[2]
1390
1391def python_revision():
1392
Neal Norwitz4b86f8b2007-01-13 21:22:37 +00001393 """ Returns a string identifying the Python implementation
Marc-André Lemburg9e0dc962007-01-13 21:00:08 +00001394 revision.
1395
1396 For CPython this is the Subversion revision from which the
1397 Python binary was built.
1398
1399 If not available, an empty string is returned.
1400
1401 """
1402 return _sys_version()[3]
Marc-André Lemburg246d8472003-04-24 11:36:11 +00001403
1404def python_build():
1405
1406 """ Returns a tuple (buildno, builddate) stating the Python
1407 build number and date as strings.
1408
1409 """
Marc-André Lemburg9e0dc962007-01-13 21:00:08 +00001410 return _sys_version()[4:6]
Marc-André Lemburg246d8472003-04-24 11:36:11 +00001411
1412def python_compiler():
1413
1414 """ Returns a string identifying the compiler used for compiling
1415 Python.
1416
1417 """
Marc-André Lemburg9e0dc962007-01-13 21:00:08 +00001418 return _sys_version()[6]
Marc-André Lemburg246d8472003-04-24 11:36:11 +00001419
1420### The Opus Magnum of platform strings :-)
1421
Marc-André Lemburg91e83e22004-03-25 18:35:12 +00001422_platform_cache = {}
Marc-André Lemburg246d8472003-04-24 11:36:11 +00001423
1424def platform(aliased=0, terse=0):
1425
1426 """ Returns a single string identifying the underlying platform
1427 with as much useful information as possible (but no more :).
Tim Peters0eadaac2003-04-24 16:02:54 +00001428
Marc-André Lemburg246d8472003-04-24 11:36:11 +00001429 The output is intended to be human readable rather than
1430 machine parseable. It may look different on different
1431 platforms and this is intended.
1432
1433 If "aliased" is true, the function will use aliases for
1434 various platforms that report system names which differ from
1435 their common names, e.g. SunOS will be reported as
1436 Solaris. The system_alias() function is used to implement
1437 this.
1438
1439 Setting terse to true causes the function to return only the
1440 absolute minimum information needed to identify the platform.
1441
1442 """
Marc-André Lemburg91e83e22004-03-25 18:35:12 +00001443 result = _platform_cache.get((aliased, terse), None)
1444 if result is not None:
1445 return result
Marc-André Lemburg246d8472003-04-24 11:36:11 +00001446
1447 # Get uname information and then apply platform specific cosmetics
1448 # to it...
1449 system,node,release,version,machine,processor = uname()
1450 if machine == processor:
1451 processor = ''
1452 if aliased:
1453 system,release,version = system_alias(system,release,version)
1454
1455 if system == 'Windows':
1456 # MS platforms
1457 rel,vers,csd,ptype = win32_ver(version)
1458 if terse:
1459 platform = _platform(system,release)
1460 else:
1461 platform = _platform(system,release,version,csd)
1462
1463 elif system in ('Linux',):
1464 # Linux based systems
1465 distname,distversion,distid = dist('')
1466 if distname and not terse:
1467 platform = _platform(system,release,machine,processor,
1468 'with',
1469 distname,distversion,distid)
1470 else:
1471 # If the distribution name is unknown check for libc vs. glibc
1472 libcname,libcversion = libc_ver(sys.executable)
1473 platform = _platform(system,release,machine,processor,
1474 'with',
1475 libcname+libcversion)
1476 elif system == 'Java':
1477 # Java platforms
1478 r,v,vminfo,(os_name,os_version,os_arch) = java_ver()
Marc-André Lemburg9e0dc962007-01-13 21:00:08 +00001479 if terse or not os_name:
Marc-André Lemburg246d8472003-04-24 11:36:11 +00001480 platform = _platform(system,release,version)
1481 else:
1482 platform = _platform(system,release,version,
1483 'on',
1484 os_name,os_version,os_arch)
1485
1486 elif system == 'MacOS':
1487 # MacOS platforms
1488 if terse:
1489 platform = _platform(system,release)
1490 else:
1491 platform = _platform(system,release,machine)
1492
1493 else:
1494 # Generic handler
1495 if terse:
1496 platform = _platform(system,release)
1497 else:
1498 bits,linkage = architecture(sys.executable)
1499 platform = _platform(system,release,machine,processor,bits,linkage)
Tim Peters0eadaac2003-04-24 16:02:54 +00001500
Marc-André Lemburg91e83e22004-03-25 18:35:12 +00001501 _platform_cache[(aliased, terse)] = platform
Marc-André Lemburg246d8472003-04-24 11:36:11 +00001502 return platform
1503
1504### Command line interface
1505
1506if __name__ == '__main__':
1507 # Default is to print the aliased verbose platform string
Tim Peters0eadaac2003-04-24 16:02:54 +00001508 terse = ('terse' in sys.argv or '--terse' in sys.argv)
Marc-André Lemburg246d8472003-04-24 11:36:11 +00001509 aliased = (not 'nonaliased' in sys.argv and not '--nonaliased' in sys.argv)
1510 print platform(aliased,terse)
1511 sys.exit(0)