| 
									
										
										
										
											1999-03-22 14:52:19 +00:00
										 |  |  | """distutils.util
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-04-04 02:05:59 +00:00
										 |  |  | Miscellaneous utility functions -- anything that doesn't fit into | 
					
						
							| 
									
										
										
										
											2000-09-30 18:49:14 +00:00
										 |  |  | one of the other *util.py modules. | 
					
						
							|  |  |  | """
 | 
					
						
							| 
									
										
										
										
											1999-03-22 14:52:19 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-08 00:34:13 +02:00
										 |  |  | import os | 
					
						
							|  |  |  | import re | 
					
						
							|  |  |  | import imp | 
					
						
							|  |  |  | import sys | 
					
						
							|  |  |  | import string | 
					
						
							| 
									
										
										
										
											2000-09-30 20:37:56 +00:00
										 |  |  | from distutils.errors import DistutilsPlatformError | 
					
						
							|  |  |  | from distutils.dep_util import newer | 
					
						
							| 
									
										
										
										
											2010-07-22 12:50:05 +00:00
										 |  |  | from distutils.spawn import spawn | 
					
						
							| 
									
										
										
										
											2002-06-04 20:14:43 +00:00
										 |  |  | from distutils import log | 
					
						
							| 
									
										
										
										
											2009-10-25 23:08:47 +00:00
										 |  |  | from distutils.errors import DistutilsByteCompileError | 
					
						
							| 
									
										
										
										
											2000-04-22 15:14:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-22 12:50:05 +00:00
										 |  |  | def get_platform (): | 
					
						
							|  |  |  |     """Return a string that identifies the current platform.  This is used
 | 
					
						
							|  |  |  |     mainly to distinguish platform-specific build directories and | 
					
						
							|  |  |  |     platform-specific built distributions.  Typically includes the OS name | 
					
						
							|  |  |  |     and version and the architecture (as supplied by 'os.uname()'), | 
					
						
							|  |  |  |     although the exact information included depends on the OS; eg. for IRIX | 
					
						
							|  |  |  |     the architecture isn't particularly important (IRIX only runs on SGI | 
					
						
							|  |  |  |     hardware), but for Linux the kernel version isn't particularly | 
					
						
							|  |  |  |     important. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     Examples of returned values: | 
					
						
							|  |  |  |        linux-i586 | 
					
						
							|  |  |  |        linux-alpha (?) | 
					
						
							|  |  |  |        solaris-2.6-sun4u | 
					
						
							|  |  |  |        irix-5.3 | 
					
						
							|  |  |  |        irix64-6.2 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     Windows will return one of: | 
					
						
							|  |  |  |        win-amd64 (64bit Windows on AMD64 (aka x86_64, Intel64, EM64T, etc) | 
					
						
							|  |  |  |        win-ia64 (64bit Windows on Itanium) | 
					
						
							|  |  |  |        win32 (all others - specifically, sys.platform is returned) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     For other non-POSIX platforms, currently just returns 'sys.platform'. | 
					
						
							|  |  |  |     """
 | 
					
						
							|  |  |  |     if os.name == 'nt': | 
					
						
							|  |  |  |         # sniff sys.version for architecture. | 
					
						
							|  |  |  |         prefix = " bit (" | 
					
						
							|  |  |  |         i = sys.version.find(prefix) | 
					
						
							|  |  |  |         if i == -1: | 
					
						
							|  |  |  |             return sys.platform | 
					
						
							|  |  |  |         j = sys.version.find(")", i) | 
					
						
							|  |  |  |         look = sys.version[i+len(prefix):j].lower() | 
					
						
							|  |  |  |         if look == 'amd64': | 
					
						
							|  |  |  |             return 'win-amd64' | 
					
						
							|  |  |  |         if look == 'itanium': | 
					
						
							|  |  |  |             return 'win-ia64' | 
					
						
							|  |  |  |         return sys.platform | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if os.name != "posix" or not hasattr(os, 'uname'): | 
					
						
							|  |  |  |         # XXX what about the architecture? NT is Intel or Alpha, | 
					
						
							|  |  |  |         # Mac OS is M68k or PPC, etc. | 
					
						
							|  |  |  |         return sys.platform | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # Try to distinguish various flavours of Unix | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     (osname, host, release, version, machine) = os.uname() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # Convert the OS name to lowercase, remove '/' characters | 
					
						
							|  |  |  |     # (to accommodate BSD/OS), and translate spaces (for "Power Macintosh") | 
					
						
							|  |  |  |     osname = osname.lower().replace('/', '') | 
					
						
							|  |  |  |     machine = machine.replace(' ', '_') | 
					
						
							|  |  |  |     machine = machine.replace('/', '-') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if osname[:5] == "linux": | 
					
						
							|  |  |  |         # At least on Linux/Intel, 'machine' is the processor -- | 
					
						
							|  |  |  |         # i386, etc. | 
					
						
							|  |  |  |         # XXX what about Alpha, SPARC, etc? | 
					
						
							|  |  |  |         return  "%s-%s" % (osname, machine) | 
					
						
							|  |  |  |     elif osname[:5] == "sunos": | 
					
						
							|  |  |  |         if release[0] >= "5":           # SunOS 5 == Solaris 2 | 
					
						
							|  |  |  |             osname = "solaris" | 
					
						
							|  |  |  |             release = "%d.%s" % (int(release[0]) - 3, release[2:]) | 
					
						
							| 
									
										
										
										
											2012-01-18 04:27:37 +01:00
										 |  |  |             # We can't use "platform.architecture()[0]" because a | 
					
						
							|  |  |  |             # bootstrap problem. We use a dict to get an error | 
					
						
							|  |  |  |             # if some suspicious happens. | 
					
						
							|  |  |  |             bitness = {2147483647:"32bit", 9223372036854775807:"64bit"} | 
					
						
							| 
									
										
										
										
											2012-01-18 05:04:49 +01:00
										 |  |  |             machine += ".%s" % bitness[sys.maxsize] | 
					
						
							| 
									
										
										
										
											2010-07-22 12:50:05 +00:00
										 |  |  |         # fall through to standard osname-release-machine representation | 
					
						
							|  |  |  |     elif osname[:4] == "irix":              # could be "irix64"! | 
					
						
							|  |  |  |         return "%s-%s" % (osname, release) | 
					
						
							|  |  |  |     elif osname[:3] == "aix": | 
					
						
							|  |  |  |         return "%s-%s.%s" % (osname, version, release) | 
					
						
							|  |  |  |     elif osname[:6] == "cygwin": | 
					
						
							|  |  |  |         osname = "cygwin" | 
					
						
							|  |  |  |         rel_re = re.compile (r'[\d.]+', re.ASCII) | 
					
						
							|  |  |  |         m = rel_re.match(release) | 
					
						
							|  |  |  |         if m: | 
					
						
							|  |  |  |             release = m.group() | 
					
						
							|  |  |  |     elif osname[:6] == "darwin": | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # For our purposes, we'll assume that the system version from | 
					
						
							|  |  |  |         # distutils' perspective is what MACOSX_DEPLOYMENT_TARGET is set | 
					
						
							|  |  |  |         # to. This makes the compatibility story a bit more sane because the | 
					
						
							|  |  |  |         # machine is going to compile and link as if it were | 
					
						
							|  |  |  |         # MACOSX_DEPLOYMENT_TARGET. | 
					
						
							|  |  |  |         from distutils.sysconfig import get_config_vars | 
					
						
							|  |  |  |         cfgvars = get_config_vars() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-15 16:46:11 +02:00
										 |  |  |         macver = cfgvars.get('MACOSX_DEPLOYMENT_TARGET') | 
					
						
							| 
									
										
										
										
											2010-07-22 12:50:05 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         if 1: | 
					
						
							|  |  |  |             # Always calculate the release of the running machine, | 
					
						
							|  |  |  |             # needed to determine if we can build fat binaries or not. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             macrelease = macver | 
					
						
							|  |  |  |             # Get the system version. Reading this plist is a documented | 
					
						
							|  |  |  |             # way to get the system version (see the documentation for | 
					
						
							|  |  |  |             # the Gestalt Manager) | 
					
						
							|  |  |  |             try: | 
					
						
							|  |  |  |                 f = open('/System/Library/CoreServices/SystemVersion.plist') | 
					
						
							|  |  |  |             except IOError: | 
					
						
							|  |  |  |                 # We're on a plain darwin box, fall back to the default | 
					
						
							|  |  |  |                 # behaviour. | 
					
						
							|  |  |  |                 pass | 
					
						
							|  |  |  |             else: | 
					
						
							| 
									
										
										
										
											2010-11-05 23:51:56 +00:00
										 |  |  |                 try: | 
					
						
							|  |  |  |                     m = re.search( | 
					
						
							|  |  |  |                             r'<key>ProductUserVisibleVersion</key>\s*' + | 
					
						
							|  |  |  |                             r'<string>(.*?)</string>', f.read()) | 
					
						
							|  |  |  |                     if m is not None: | 
					
						
							|  |  |  |                         macrelease = '.'.join(m.group(1).split('.')[:2]) | 
					
						
							|  |  |  |                     # else: fall back to the default behaviour | 
					
						
							|  |  |  |                 finally: | 
					
						
							|  |  |  |                     f.close() | 
					
						
							| 
									
										
										
										
											2010-07-22 12:50:05 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         if not macver: | 
					
						
							|  |  |  |             macver = macrelease | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if macver: | 
					
						
							|  |  |  |             from distutils.sysconfig import get_config_vars | 
					
						
							|  |  |  |             release = macver | 
					
						
							|  |  |  |             osname = "macosx" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             if (macrelease + '.') >= '10.4.' and \ | 
					
						
							|  |  |  |                     '-arch' in get_config_vars().get('CFLAGS', '').strip(): | 
					
						
							|  |  |  |                 # The universal build will build fat binaries, but not on | 
					
						
							|  |  |  |                 # systems before 10.4 | 
					
						
							|  |  |  |                 # | 
					
						
							|  |  |  |                 # Try to detect 4-way universal builds, those have machine-type | 
					
						
							|  |  |  |                 # 'universal' instead of 'fat'. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 machine = 'fat' | 
					
						
							|  |  |  |                 cflags = get_config_vars().get('CFLAGS') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 archs = re.findall('-arch\s+(\S+)', cflags) | 
					
						
							|  |  |  |                 archs = tuple(sorted(set(archs))) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 if len(archs) == 1: | 
					
						
							|  |  |  |                     machine = archs[0] | 
					
						
							|  |  |  |                 elif archs == ('i386', 'ppc'): | 
					
						
							|  |  |  |                     machine = 'fat' | 
					
						
							|  |  |  |                 elif archs == ('i386', 'x86_64'): | 
					
						
							|  |  |  |                     machine = 'intel' | 
					
						
							|  |  |  |                 elif archs == ('i386', 'ppc', 'x86_64'): | 
					
						
							|  |  |  |                     machine = 'fat3' | 
					
						
							|  |  |  |                 elif archs == ('ppc64', 'x86_64'): | 
					
						
							|  |  |  |                     machine = 'fat64' | 
					
						
							|  |  |  |                 elif archs == ('i386', 'ppc', 'ppc64', 'x86_64'): | 
					
						
							|  |  |  |                     machine = 'universal' | 
					
						
							|  |  |  |                 else: | 
					
						
							|  |  |  |                     raise ValueError( | 
					
						
							|  |  |  |                        "Don't know machine value for archs=%r"%(archs,)) | 
					
						
							| 
									
										
										
										
											2010-01-29 11:46:31 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-22 12:50:05 +00:00
										 |  |  |             elif machine == 'i386': | 
					
						
							|  |  |  |                 # On OSX the machine type returned by uname is always the | 
					
						
							|  |  |  |                 # 32-bit variant, even if the executable architecture is | 
					
						
							|  |  |  |                 # the 64-bit variant | 
					
						
							|  |  |  |                 if sys.maxsize >= 2**32: | 
					
						
							|  |  |  |                     machine = 'x86_64' | 
					
						
							| 
									
										
										
										
											2010-01-29 11:46:31 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-22 12:50:05 +00:00
										 |  |  |             elif machine in ('PowerPC', 'Power_Macintosh'): | 
					
						
							|  |  |  |                 # Pick a sane name for the PPC architecture. | 
					
						
							|  |  |  |                 machine = 'ppc' | 
					
						
							| 
									
										
										
										
											2010-01-29 11:46:31 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-22 12:50:05 +00:00
										 |  |  |                 # See 'i386' case | 
					
						
							|  |  |  |                 if sys.maxsize >= 2**32: | 
					
						
							|  |  |  |                     machine = 'ppc64' | 
					
						
							| 
									
										
										
										
											2010-01-29 11:46:31 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-22 12:50:05 +00:00
										 |  |  |     return "%s-%s-%s" % (osname, release, machine) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # get_platform () | 
					
						
							| 
									
										
										
										
											2000-03-07 03:27:08 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-22 12:50:05 +00:00
										 |  |  | def convert_path (pathname): | 
					
						
							|  |  |  |     """Return 'pathname' as a name that will work on the native filesystem,
 | 
					
						
							| 
									
										
										
										
											2000-09-30 18:40:42 +00:00
										 |  |  |     i.e. split it on '/' and put it back together again using the current | 
					
						
							|  |  |  |     directory separator.  Needed because filenames in the setup script are | 
					
						
							|  |  |  |     always supplied in Unix style, and have to be converted to the local | 
					
						
							|  |  |  |     convention before we can actually use them in the filesystem.  Raises | 
					
						
							| 
									
										
										
										
											2000-09-30 18:49:14 +00:00
										 |  |  |     ValueError on non-Unix-ish systems if 'pathname' either starts or | 
					
						
							|  |  |  |     ends with a slash. | 
					
						
							| 
									
										
										
										
											2000-09-30 18:40:42 +00:00
										 |  |  |     """
 | 
					
						
							| 
									
										
										
										
											2000-09-22 01:05:43 +00:00
										 |  |  |     if os.sep == '/': | 
					
						
							|  |  |  |         return pathname | 
					
						
							| 
									
										
										
										
											2002-08-13 17:42:57 +00:00
										 |  |  |     if not pathname: | 
					
						
							|  |  |  |         return pathname | 
					
						
							|  |  |  |     if pathname[0] == '/': | 
					
						
							| 
									
										
										
										
											2007-08-30 03:52:21 +00:00
										 |  |  |         raise ValueError("path '%s' cannot be absolute" % pathname) | 
					
						
							| 
									
										
										
										
											2002-08-13 17:42:57 +00:00
										 |  |  |     if pathname[-1] == '/': | 
					
						
							| 
									
										
										
										
											2007-08-30 03:52:21 +00:00
										 |  |  |         raise ValueError("path '%s' cannot end with '/'" % pathname) | 
					
						
							| 
									
										
										
										
											2000-09-22 01:05:43 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-04-17 08:48:32 +00:00
										 |  |  |     paths = pathname.split('/') | 
					
						
							| 
									
										
										
										
											2001-01-28 12:23:32 +00:00
										 |  |  |     while '.' in paths: | 
					
						
							|  |  |  |         paths.remove('.') | 
					
						
							|  |  |  |     if not paths: | 
					
						
							|  |  |  |         return os.curdir | 
					
						
							| 
									
										
										
										
											2006-03-17 08:00:19 +00:00
										 |  |  |     return os.path.join(*paths) | 
					
						
							| 
									
										
										
										
											2000-03-07 03:27:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-22 12:50:05 +00:00
										 |  |  | # convert_path () | 
					
						
							| 
									
										
										
										
											2000-03-22 00:22:44 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-22 12:50:05 +00:00
										 |  |  | def change_root (new_root, pathname): | 
					
						
							|  |  |  |     """Return 'pathname' with 'new_root' prepended.  If 'pathname' is
 | 
					
						
							|  |  |  |     relative, this is equivalent to "os.path.join(new_root,pathname)". | 
					
						
							| 
									
										
										
										
											2000-04-27 01:53:46 +00:00
										 |  |  |     Otherwise, it requires making 'pathname' relative and then joining the | 
					
						
							| 
									
										
										
										
											2000-05-31 02:14:32 +00:00
										 |  |  |     two, which is tricky on DOS/Windows and Mac OS. | 
					
						
							|  |  |  |     """
 | 
					
						
							|  |  |  |     if os.name == 'posix': | 
					
						
							| 
									
										
										
										
											2000-09-26 01:56:15 +00:00
										 |  |  |         if not os.path.isabs(pathname): | 
					
						
							|  |  |  |             return os.path.join(new_root, pathname) | 
					
						
							| 
									
										
										
										
											2000-05-31 02:14:32 +00:00
										 |  |  |         else: | 
					
						
							| 
									
										
										
										
											2000-09-26 01:56:15 +00:00
										 |  |  |             return os.path.join(new_root, pathname[1:]) | 
					
						
							| 
									
										
										
										
											2000-04-27 01:53:46 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     elif os.name == 'nt': | 
					
						
							| 
									
										
										
										
											2000-09-26 01:56:15 +00:00
										 |  |  |         (drive, path) = os.path.splitdrive(pathname) | 
					
						
							| 
									
										
										
										
											2000-05-31 02:14:32 +00:00
										 |  |  |         if path[0] == '\\': | 
					
						
							|  |  |  |             path = path[1:] | 
					
						
							| 
									
										
										
										
											2000-09-26 01:56:15 +00:00
										 |  |  |         return os.path.join(new_root, path) | 
					
						
							| 
									
										
										
										
											2000-04-27 01:53:46 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-01-31 18:56:00 +00:00
										 |  |  |     elif os.name == 'os2': | 
					
						
							|  |  |  |         (drive, path) = os.path.splitdrive(pathname) | 
					
						
							|  |  |  |         if path[0] == os.sep: | 
					
						
							|  |  |  |             path = path[1:] | 
					
						
							|  |  |  |         return os.path.join(new_root, path) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-22 12:50:05 +00:00
										 |  |  |     else: | 
					
						
							|  |  |  |         raise DistutilsPlatformError("nothing known about platform '%s'" % os.name) | 
					
						
							| 
									
										
										
										
											2009-07-02 14:25:23 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-22 12:50:05 +00:00
										 |  |  | _environ_checked = 0 | 
					
						
							|  |  |  | def check_environ (): | 
					
						
							|  |  |  |     """Ensure that 'os.environ' has all the environment variables we
 | 
					
						
							|  |  |  |     guarantee that users can use in config files, command-line options, | 
					
						
							| 
									
										
										
										
											2000-09-30 18:40:42 +00:00
										 |  |  |     etc.  Currently this includes: | 
					
						
							|  |  |  |       HOME - user's home directory (Unix only) | 
					
						
							|  |  |  |       PLAT - description of the current platform, including hardware | 
					
						
							|  |  |  |              and OS (see 'get_platform()') | 
					
						
							| 
									
										
										
										
											2000-03-22 00:22:44 +00:00
										 |  |  |     """
 | 
					
						
							| 
									
										
										
										
											2000-05-12 00:40:00 +00:00
										 |  |  |     global _environ_checked | 
					
						
							|  |  |  |     if _environ_checked: | 
					
						
							|  |  |  |         return | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-08-18 22:13:04 +00:00
										 |  |  |     if os.name == 'posix' and 'HOME' not in os.environ: | 
					
						
							| 
									
										
										
										
											2000-03-22 00:22:44 +00:00
										 |  |  |         import pwd | 
					
						
							| 
									
										
										
										
											2000-09-26 01:56:15 +00:00
										 |  |  |         os.environ['HOME'] = pwd.getpwuid(os.getuid())[5] | 
					
						
							| 
									
										
										
										
											2000-03-22 00:22:44 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-08-18 22:13:04 +00:00
										 |  |  |     if 'PLAT' not in os.environ: | 
					
						
							| 
									
										
										
										
											2010-07-22 12:50:05 +00:00
										 |  |  |         os.environ['PLAT'] = get_platform() | 
					
						
							| 
									
										
										
										
											2000-03-22 00:22:44 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-05-12 00:40:00 +00:00
										 |  |  |     _environ_checked = 1 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-22 00:22:44 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-22 12:50:05 +00:00
										 |  |  | def subst_vars (s, local_vars): | 
					
						
							|  |  |  |     """Perform shell/Perl-style variable substitution on 'string'.  Every
 | 
					
						
							|  |  |  |     occurrence of '$' followed by a name is considered a variable, and | 
					
						
							| 
									
										
										
										
											2000-09-30 18:49:14 +00:00
										 |  |  |     variable is substituted by the value found in the 'local_vars' | 
					
						
							|  |  |  |     dictionary, or in 'os.environ' if it's not in 'local_vars'. | 
					
						
							|  |  |  |     'os.environ' is first checked/augmented to guarantee that it contains | 
					
						
							|  |  |  |     certain values: see 'check_environ()'.  Raise ValueError for any | 
					
						
							|  |  |  |     variables not found in either 'local_vars' or 'os.environ'. | 
					
						
							| 
									
										
										
										
											2000-09-30 18:40:42 +00:00
										 |  |  |     """
 | 
					
						
							| 
									
										
										
										
											2000-09-26 01:56:15 +00:00
										 |  |  |     check_environ() | 
					
						
							| 
									
										
										
										
											2000-03-22 00:22:44 +00:00
										 |  |  |     def _subst (match, local_vars=local_vars): | 
					
						
							|  |  |  |         var_name = match.group(1) | 
					
						
							| 
									
										
										
										
											2006-08-18 22:13:04 +00:00
										 |  |  |         if var_name in local_vars: | 
					
						
							| 
									
										
										
										
											2000-09-26 01:56:15 +00:00
										 |  |  |             return str(local_vars[var_name]) | 
					
						
							| 
									
										
										
										
											2000-03-22 00:22:44 +00:00
										 |  |  |         else: | 
					
						
							|  |  |  |             return os.environ[var_name] | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-09-30 18:49:14 +00:00
										 |  |  |     try: | 
					
						
							| 
									
										
										
										
											2001-01-25 20:10:32 +00:00
										 |  |  |         return re.sub(r'\$([a-zA-Z_][a-zA-Z_0-9]*)', _subst, s) | 
					
						
							| 
									
										
										
										
											2007-01-10 16:19:56 +00:00
										 |  |  |     except KeyError as var: | 
					
						
							| 
									
										
										
										
											2007-08-30 03:52:21 +00:00
										 |  |  |         raise ValueError("invalid variable '$%s'" % var) | 
					
						
							| 
									
										
										
										
											2000-03-22 00:22:44 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-22 12:50:05 +00:00
										 |  |  | # subst_vars () | 
					
						
							| 
									
										
										
										
											2000-03-29 02:48:40 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-22 12:50:05 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | def grok_environment_error (exc, prefix="error: "): | 
					
						
							|  |  |  |     """Generate a useful error message from an EnvironmentError (IOError or
 | 
					
						
							|  |  |  |     OSError) exception object.  Handles Python 1.5.1 and 1.5.2 styles, and | 
					
						
							| 
									
										
										
										
											2000-06-17 02:16:46 +00:00
										 |  |  |     does what it can to deal with exception objects that don't have a | 
					
						
							|  |  |  |     filename (which happens when the error is due to a two-file operation, | 
					
						
							|  |  |  |     such as 'rename()' or 'link()'.  Returns the error message as a string | 
					
						
							|  |  |  |     prefixed with 'prefix'. | 
					
						
							|  |  |  |     """
 | 
					
						
							|  |  |  |     # check for Python 1.5.2-style {IO,OS}Error exception objects | 
					
						
							| 
									
										
										
										
											2000-09-26 01:56:15 +00:00
										 |  |  |     if hasattr(exc, 'filename') and hasattr(exc, 'strerror'): | 
					
						
							| 
									
										
										
										
											2000-06-17 02:16:46 +00:00
										 |  |  |         if exc.filename: | 
					
						
							|  |  |  |             error = prefix + "%s: %s" % (exc.filename, exc.strerror) | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             # two-argument functions in posix module don't | 
					
						
							|  |  |  |             # include the filename in the exception object! | 
					
						
							|  |  |  |             error = prefix + "%s" % exc.strerror | 
					
						
							|  |  |  |     else: | 
					
						
							| 
									
										
										
										
											2008-01-06 21:41:49 +00:00
										 |  |  |         error = prefix + str(exc.args[-1]) | 
					
						
							| 
									
										
										
										
											2000-06-17 02:16:46 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     return error | 
					
						
							| 
									
										
										
										
											2000-06-24 20:40:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-22 12:50:05 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-06-24 20:40:02 +00:00
										 |  |  | # Needed by 'split_quoted()' | 
					
						
							| 
									
										
										
										
											2004-03-25 14:58:19 +00:00
										 |  |  | _wordchars_re = _squote_re = _dquote_re = None | 
					
						
							|  |  |  | def _init_regex(): | 
					
						
							|  |  |  |     global _wordchars_re, _squote_re, _dquote_re | 
					
						
							|  |  |  |     _wordchars_re = re.compile(r'[^\\\'\"%s ]*' % string.whitespace) | 
					
						
							|  |  |  |     _squote_re = re.compile(r"'(?:[^'\\]|\\.)*'") | 
					
						
							|  |  |  |     _dquote_re = re.compile(r'"(?:[^"\\]|\\.)*"') | 
					
						
							| 
									
										
										
										
											2000-06-24 20:40:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-22 12:50:05 +00:00
										 |  |  | def split_quoted (s): | 
					
						
							| 
									
										
										
										
											2000-06-24 20:40:02 +00:00
										 |  |  |     """Split a string up according to Unix shell-like rules for quotes and
 | 
					
						
							| 
									
										
										
										
											2010-07-22 12:50:05 +00:00
										 |  |  |     backslashes.  In short: words are delimited by spaces, as long as those | 
					
						
							| 
									
										
										
										
											2000-06-24 20:40:02 +00:00
										 |  |  |     spaces are not escaped by a backslash, or inside a quoted string. | 
					
						
							|  |  |  |     Single and double quotes are equivalent, and the quote characters can | 
					
						
							|  |  |  |     be backslash-escaped.  The backslash is stripped from any two-character | 
					
						
							|  |  |  |     escape sequence, leaving only the escaped character.  The quote | 
					
						
							|  |  |  |     characters are stripped from any quoted string.  Returns a list of | 
					
						
							|  |  |  |     words. | 
					
						
							|  |  |  |     """
 | 
					
						
							| 
									
										
										
										
											2010-07-22 12:50:05 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-06-24 20:40:02 +00:00
										 |  |  |     # This is a nice algorithm for splitting up a single string, since it | 
					
						
							|  |  |  |     # doesn't require character-by-character examination.  It was a little | 
					
						
							|  |  |  |     # bit of a brain-bender to get it working right, though... | 
					
						
							| 
									
										
										
										
											2004-03-25 14:58:19 +00:00
										 |  |  |     if _wordchars_re is None: _init_regex() | 
					
						
							| 
									
										
										
										
											2000-06-24 20:40:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-04-17 08:48:32 +00:00
										 |  |  |     s = s.strip() | 
					
						
							| 
									
										
										
										
											2000-06-24 20:40:02 +00:00
										 |  |  |     words = [] | 
					
						
							|  |  |  |     pos = 0 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     while s: | 
					
						
							|  |  |  |         m = _wordchars_re.match(s, pos) | 
					
						
							|  |  |  |         end = m.end() | 
					
						
							|  |  |  |         if end == len(s): | 
					
						
							|  |  |  |             words.append(s[:end]) | 
					
						
							|  |  |  |             break | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-08-08 14:38:13 +00:00
										 |  |  |         if s[end] in string.whitespace: # unescaped, unquoted whitespace: now | 
					
						
							| 
									
										
										
										
											2000-06-24 20:40:02 +00:00
										 |  |  |             words.append(s[:end])       # we definitely have a word delimiter | 
					
						
							| 
									
										
										
										
											2007-04-17 08:48:32 +00:00
										 |  |  |             s = s[end:].lstrip() | 
					
						
							| 
									
										
										
										
											2000-06-24 20:40:02 +00:00
										 |  |  |             pos = 0 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         elif s[end] == '\\':            # preserve whatever is being escaped; | 
					
						
							|  |  |  |                                         # will become part of the current word | 
					
						
							|  |  |  |             s = s[:end] + s[end+1:] | 
					
						
							|  |  |  |             pos = end+1 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             if s[end] == "'":           # slurp singly-quoted string | 
					
						
							|  |  |  |                 m = _squote_re.match(s, end) | 
					
						
							|  |  |  |             elif s[end] == '"':         # slurp doubly-quoted string | 
					
						
							|  |  |  |                 m = _dquote_re.match(s, end) | 
					
						
							|  |  |  |             else: | 
					
						
							| 
									
										
										
										
											2007-08-30 03:52:21 +00:00
										 |  |  |                 raise RuntimeError("this can't happen (bad char '%c')" % s[end]) | 
					
						
							| 
									
										
										
										
											2000-06-24 20:40:02 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |             if m is None: | 
					
						
							| 
									
										
										
										
											2007-08-30 03:52:21 +00:00
										 |  |  |                 raise ValueError("bad string (mismatched %s quotes?)" % s[end]) | 
					
						
							| 
									
										
										
										
											2000-06-24 20:40:02 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |             (beg, end) = m.span() | 
					
						
							|  |  |  |             s = s[:beg] + s[beg+1:end-1] + s[end:] | 
					
						
							|  |  |  |             pos = m.end() - 2 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if pos >= len(s): | 
					
						
							|  |  |  |             words.append(s) | 
					
						
							|  |  |  |             break | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return words | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-22 12:50:05 +00:00
										 |  |  | # split_quoted () | 
					
						
							| 
									
										
										
										
											2000-08-02 01:37:30 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-22 12:50:05 +00:00
										 |  |  | def execute (func, args, msg=None, verbose=0, dry_run=0): | 
					
						
							|  |  |  |     """Perform some action that affects the outside world (eg.  by
 | 
					
						
							|  |  |  |     writing to the filesystem).  Such actions are special because they | 
					
						
							|  |  |  |     are disabled by the 'dry_run' flag.  This method takes care of all | 
					
						
							| 
									
										
										
										
											2002-06-04 20:14:43 +00:00
										 |  |  |     that bureaucracy for you; all you have to do is supply the | 
					
						
							|  |  |  |     function to call and an argument tuple for it (to embody the | 
					
						
							|  |  |  |     "external action" being performed), and an optional message to | 
					
						
							|  |  |  |     print. | 
					
						
							| 
									
										
										
										
											2000-08-02 01:37:30 +00:00
										 |  |  |     """
 | 
					
						
							|  |  |  |     if msg is None: | 
					
						
							| 
									
										
										
										
											2004-02-12 17:35:32 +00:00
										 |  |  |         msg = "%s%r" % (func.__name__, args) | 
					
						
							| 
									
										
										
										
											2001-12-06 20:51:35 +00:00
										 |  |  |         if msg[-2:] == ',)':        # correct for singleton tuple | 
					
						
							| 
									
										
										
										
											2000-08-02 01:37:30 +00:00
										 |  |  |             msg = msg[0:-2] + ')' | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-06-04 20:14:43 +00:00
										 |  |  |     log.info(msg) | 
					
						
							| 
									
										
										
										
											2000-08-02 01:37:30 +00:00
										 |  |  |     if not dry_run: | 
					
						
							| 
									
										
										
										
											2006-03-17 08:00:19 +00:00
										 |  |  |         func(*args) | 
					
						
							| 
									
										
										
										
											2000-08-02 01:37:30 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-09-25 01:25:06 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-22 12:50:05 +00:00
										 |  |  | def strtobool (val): | 
					
						
							| 
									
										
										
										
											2000-09-25 01:25:06 +00:00
										 |  |  |     """Convert a string representation of truth to true (1) or false (0).
 | 
					
						
							| 
									
										
										
										
											2004-07-18 06:16:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-09-25 01:25:06 +00:00
										 |  |  |     True values are 'y', 'yes', 't', 'true', 'on', and '1'; false values | 
					
						
							|  |  |  |     are 'n', 'no', 'f', 'false', 'off', and '0'.  Raises ValueError if | 
					
						
							|  |  |  |     'val' is anything else. | 
					
						
							|  |  |  |     """
 | 
					
						
							| 
									
										
										
										
											2007-04-17 08:48:32 +00:00
										 |  |  |     val = val.lower() | 
					
						
							| 
									
										
										
										
											2000-09-25 01:25:06 +00:00
										 |  |  |     if val in ('y', 'yes', 't', 'true', 'on', '1'): | 
					
						
							|  |  |  |         return 1 | 
					
						
							|  |  |  |     elif val in ('n', 'no', 'f', 'false', 'off', '0'): | 
					
						
							|  |  |  |         return 0 | 
					
						
							|  |  |  |     else: | 
					
						
							| 
									
										
										
										
											2007-08-30 03:52:21 +00:00
										 |  |  |         raise ValueError("invalid truth value %r" % (val,)) | 
					
						
							| 
									
										
										
										
											2000-09-30 20:37:56 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-22 12:50:05 +00:00
										 |  |  | def byte_compile (py_files, | 
					
						
							|  |  |  |                   optimize=0, force=0, | 
					
						
							|  |  |  |                   prefix=None, base_dir=None, | 
					
						
							|  |  |  |                   verbose=1, dry_run=0, | 
					
						
							|  |  |  |                   direct=None): | 
					
						
							| 
									
										
										
										
											2000-10-01 23:49:30 +00:00
										 |  |  |     """Byte-compile a collection of Python source files to either .pyc
 | 
					
						
							| 
									
										
										
										
											2011-10-08 03:02:37 +02:00
										 |  |  |     or .pyo files in a __pycache__ subdirectory.  'py_files' is a list | 
					
						
							|  |  |  |     of files to compile; any files that don't end in ".py" are silently | 
					
						
							|  |  |  |     skipped.  'optimize' must be one of the following: | 
					
						
							| 
									
										
										
										
											2000-09-30 20:37:56 +00:00
										 |  |  |       0 - don't optimize (generate .pyc) | 
					
						
							|  |  |  |       1 - normal optimization (like "python -O") | 
					
						
							|  |  |  |       2 - extra optimization (like "python -OO") | 
					
						
							|  |  |  |     If 'force' is true, all files are recompiled regardless of | 
					
						
							|  |  |  |     timestamps. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     The source filename encoded in each bytecode file defaults to the | 
					
						
							|  |  |  |     filenames listed in 'py_files'; you can modify these with 'prefix' and | 
					
						
							|  |  |  |     'basedir'.  'prefix' is a string that will be stripped off of each | 
					
						
							|  |  |  |     source filename, and 'base_dir' is a directory name that will be | 
					
						
							|  |  |  |     prepended (after 'prefix' is stripped).  You can supply either or both | 
					
						
							|  |  |  |     (or neither) of 'prefix' and 'base_dir', as you wish. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-06-04 20:14:43 +00:00
										 |  |  |     If 'dry_run' is true, doesn't actually do anything that would | 
					
						
							|  |  |  |     affect the filesystem. | 
					
						
							| 
									
										
										
										
											2000-09-30 20:37:56 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     Byte-compilation is either done directly in this interpreter process | 
					
						
							|  |  |  |     with the standard py_compile module, or indirectly by writing a | 
					
						
							|  |  |  |     temporary script and executing it.  Normally, you should let | 
					
						
							|  |  |  |     'byte_compile()' figure out to use direct compilation or not (see | 
					
						
							|  |  |  |     the source for details).  The 'direct' flag is used by the script | 
					
						
							|  |  |  |     generated in indirect mode; unless you know what you're doing, leave | 
					
						
							|  |  |  |     it set to None. | 
					
						
							|  |  |  |     """
 | 
					
						
							| 
									
										
										
										
											2009-10-25 23:08:47 +00:00
										 |  |  |     # nothing is done if sys.dont_write_bytecode is True | 
					
						
							|  |  |  |     if sys.dont_write_bytecode: | 
					
						
							|  |  |  |         raise DistutilsByteCompileError('byte-compiling is disabled.') | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-09-30 20:37:56 +00:00
										 |  |  |     # First, if the caller didn't force us into direct or indirect mode, | 
					
						
							|  |  |  |     # figure out which mode we should be in.  We take a conservative | 
					
						
							|  |  |  |     # approach: choose direct mode *only* if the current interpreter is | 
					
						
							|  |  |  |     # in debug mode and optimize is 0.  If we're not in debug mode (-O | 
					
						
							|  |  |  |     # or -OO), we don't know which level of optimization this | 
					
						
							|  |  |  |     # interpreter is running with, so we can't do direct | 
					
						
							|  |  |  |     # byte-compilation and be certain that it's the right thing.  Thus, | 
					
						
							|  |  |  |     # always compile indirectly if the current interpreter is in either | 
					
						
							|  |  |  |     # optimize mode, or if either optimization level was requested by | 
					
						
							|  |  |  |     # the caller. | 
					
						
							|  |  |  |     if direct is None: | 
					
						
							|  |  |  |         direct = (__debug__ and optimize == 0) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # "Indirect" byte-compilation: write a temporary script and then | 
					
						
							|  |  |  |     # run it with the appropriate flags. | 
					
						
							|  |  |  |     if not direct: | 
					
						
							| 
									
										
										
										
											2002-12-03 08:45:11 +00:00
										 |  |  |         try: | 
					
						
							|  |  |  |             from tempfile import mkstemp | 
					
						
							|  |  |  |             (script_fd, script_name) = mkstemp(".py") | 
					
						
							|  |  |  |         except ImportError: | 
					
						
							|  |  |  |             from tempfile import mktemp | 
					
						
							|  |  |  |             (script_fd, script_name) = None, mktemp(".py") | 
					
						
							| 
									
										
										
										
											2002-06-04 20:14:43 +00:00
										 |  |  |         log.info("writing byte-compilation script '%s'", script_name) | 
					
						
							| 
									
										
										
										
											2000-09-30 20:37:56 +00:00
										 |  |  |         if not dry_run: | 
					
						
							| 
									
										
										
										
											2002-12-03 08:45:11 +00:00
										 |  |  |             if script_fd is not None: | 
					
						
							|  |  |  |                 script = os.fdopen(script_fd, "w") | 
					
						
							|  |  |  |             else: | 
					
						
							|  |  |  |                 script = open(script_name, "w") | 
					
						
							| 
									
										
										
										
											2000-09-30 20:37:56 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |             script.write("""\
 | 
					
						
							|  |  |  | from distutils.util import byte_compile | 
					
						
							|  |  |  | files = [ | 
					
						
							|  |  |  | """)
 | 
					
						
							| 
									
										
										
										
											2000-10-03 03:31:05 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |             # XXX would be nice to write absolute filenames, just for | 
					
						
							|  |  |  |             # safety's sake (script should be more robust in the face of | 
					
						
							|  |  |  |             # chdir'ing before running it).  But this requires abspath'ing | 
					
						
							|  |  |  |             # 'prefix' as well, and that breaks the hack in build_lib's | 
					
						
							|  |  |  |             # 'byte_compile()' method that carefully tacks on a trailing | 
					
						
							|  |  |  |             # slash (os.sep really) to make sure the prefix here is "just | 
					
						
							|  |  |  |             # right".  This whole prefix business is rather delicate -- the | 
					
						
							|  |  |  |             # problem is that it's really a directory, but I'm treating it | 
					
						
							|  |  |  |             # as a dumb string, so trailing slashes and so forth matter. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             #py_files = map(os.path.abspath, py_files) | 
					
						
							|  |  |  |             #if prefix: | 
					
						
							|  |  |  |             #    prefix = os.path.abspath(prefix) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-04-17 08:48:32 +00:00
										 |  |  |             script.write(",\n".join(map(repr, py_files)) + "]\n") | 
					
						
							| 
									
										
										
										
											2000-09-30 20:37:56 +00:00
										 |  |  |             script.write("""
 | 
					
						
							| 
									
										
										
										
											2004-02-12 17:35:32 +00:00
										 |  |  | byte_compile(files, optimize=%r, force=%r, | 
					
						
							|  |  |  |              prefix=%r, base_dir=%r, | 
					
						
							|  |  |  |              verbose=%r, dry_run=0, | 
					
						
							| 
									
										
										
										
											2000-09-30 20:37:56 +00:00
										 |  |  |              direct=1) | 
					
						
							| 
									
										
										
										
											2004-02-12 17:35:32 +00:00
										 |  |  | """ % (optimize, force, prefix, base_dir, verbose))
 | 
					
						
							| 
									
										
										
										
											2000-09-30 20:37:56 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |             script.close() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         cmd = [sys.executable, script_name] | 
					
						
							|  |  |  |         if optimize == 1: | 
					
						
							|  |  |  |             cmd.insert(1, "-O") | 
					
						
							|  |  |  |         elif optimize == 2: | 
					
						
							|  |  |  |             cmd.insert(1, "-OO") | 
					
						
							| 
									
										
										
										
											2002-06-04 20:14:43 +00:00
										 |  |  |         spawn(cmd, dry_run=dry_run) | 
					
						
							| 
									
										
										
										
											2000-10-03 03:31:05 +00:00
										 |  |  |         execute(os.remove, (script_name,), "removing %s" % script_name, | 
					
						
							| 
									
										
										
										
											2002-06-04 20:14:43 +00:00
										 |  |  |                 dry_run=dry_run) | 
					
						
							| 
									
										
										
										
											2001-12-06 20:51:35 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-09-30 20:37:56 +00:00
										 |  |  |     # "Direct" byte-compilation: use the py_compile module to compile | 
					
						
							|  |  |  |     # right here, right now.  Note that the script generated in indirect | 
					
						
							|  |  |  |     # mode simply calls 'byte_compile()' in direct mode, a weird sort of | 
					
						
							|  |  |  |     # cross-process recursion.  Hey, it works! | 
					
						
							|  |  |  |     else: | 
					
						
							|  |  |  |         from py_compile import compile | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         for file in py_files: | 
					
						
							|  |  |  |             if file[-3:] != ".py": | 
					
						
							| 
									
										
										
										
											2000-10-01 23:49:30 +00:00
										 |  |  |                 # This lets us be lazy and not filter filenames in | 
					
						
							|  |  |  |                 # the "install_lib" command. | 
					
						
							|  |  |  |                 continue | 
					
						
							| 
									
										
										
										
											2000-09-30 20:37:56 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |             # Terminology from the py_compile module: | 
					
						
							|  |  |  |             #   cfile - byte-compiled file | 
					
						
							|  |  |  |             #   dfile - purported source filename (same as 'file' by default) | 
					
						
							| 
									
										
										
										
											2011-10-08 00:34:13 +02:00
										 |  |  |             if optimize >= 0: | 
					
						
							|  |  |  |                 cfile = imp.cache_from_source(file, debug_override=not optimize) | 
					
						
							|  |  |  |             else: | 
					
						
							|  |  |  |                 cfile = imp.cache_from_source(file) | 
					
						
							| 
									
										
										
										
											2000-09-30 20:37:56 +00:00
										 |  |  |             dfile = file | 
					
						
							|  |  |  |             if prefix: | 
					
						
							|  |  |  |                 if file[:len(prefix)] != prefix: | 
					
						
							| 
									
										
										
										
											2010-07-22 12:50:05 +00:00
										 |  |  |                     raise ValueError("invalid prefix: filename %r doesn't start with %r" | 
					
						
							|  |  |  |                            % (file, prefix)) | 
					
						
							| 
									
										
										
										
											2000-09-30 20:37:56 +00:00
										 |  |  |                 dfile = dfile[len(prefix):] | 
					
						
							|  |  |  |             if base_dir: | 
					
						
							|  |  |  |                 dfile = os.path.join(base_dir, dfile) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             cfile_base = os.path.basename(cfile) | 
					
						
							|  |  |  |             if direct: | 
					
						
							|  |  |  |                 if force or newer(file, cfile): | 
					
						
							| 
									
										
										
										
											2002-06-04 20:14:43 +00:00
										 |  |  |                     log.info("byte-compiling %s to %s", file, cfile_base) | 
					
						
							| 
									
										
										
										
											2000-09-30 20:37:56 +00:00
										 |  |  |                     if not dry_run: | 
					
						
							|  |  |  |                         compile(file, cfile, dfile) | 
					
						
							|  |  |  |                 else: | 
					
						
							| 
									
										
										
										
											2002-06-04 20:14:43 +00:00
										 |  |  |                     log.debug("skipping byte-compilation of %s to %s", | 
					
						
							|  |  |  |                               file, cfile_base) | 
					
						
							| 
									
										
										
										
											2000-09-30 20:37:56 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-22 12:50:05 +00:00
										 |  |  | # byte_compile () | 
					
						
							| 
									
										
										
										
											2001-03-22 03:03:41 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-22 12:50:05 +00:00
										 |  |  | def rfc822_escape (header): | 
					
						
							| 
									
										
										
										
											2001-03-22 03:03:41 +00:00
										 |  |  |     """Return a version of the string escaped for inclusion in an
 | 
					
						
							| 
									
										
										
										
											2001-03-23 17:30:26 +00:00
										 |  |  |     RFC-822 header, by ensuring there are 8 spaces space after each newline. | 
					
						
							| 
									
										
										
										
											2001-03-22 03:03:41 +00:00
										 |  |  |     """
 | 
					
						
							| 
									
										
										
										
											2009-12-06 09:28:17 +00:00
										 |  |  |     lines = header.split('\n') | 
					
						
							|  |  |  |     sep = '\n' + 8 * ' ' | 
					
						
							| 
									
										
										
										
											2007-04-17 08:48:32 +00:00
										 |  |  |     return sep.join(lines) | 
					
						
							| 
									
										
										
										
											2008-12-01 04:38:52 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | # 2to3 support | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def run_2to3(files, fixer_names=None, options=None, explicit=None): | 
					
						
							|  |  |  |     """Invoke 2to3 on a list of Python files.
 | 
					
						
							|  |  |  |     The files should all come from the build area, as the | 
					
						
							|  |  |  |     modification is done in-place. To reduce the build time, | 
					
						
							|  |  |  |     only files modified since the last invocation of this | 
					
						
							|  |  |  |     function should be passed in the files argument."""
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if not files: | 
					
						
							|  |  |  |         return | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # Make this class local, to delay import of 2to3 | 
					
						
							|  |  |  |     from lib2to3.refactor import RefactoringTool, get_fixers_from_package | 
					
						
							|  |  |  |     class DistutilsRefactoringTool(RefactoringTool): | 
					
						
							|  |  |  |         def log_error(self, msg, *args, **kw): | 
					
						
							|  |  |  |             log.error(msg, *args) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         def log_message(self, msg, *args): | 
					
						
							|  |  |  |             log.info(msg, *args) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         def log_debug(self, msg, *args): | 
					
						
							|  |  |  |             log.debug(msg, *args) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if fixer_names is None: | 
					
						
							|  |  |  |         fixer_names = get_fixers_from_package('lib2to3.fixes') | 
					
						
							|  |  |  |     r = DistutilsRefactoringTool(fixer_names, options=options) | 
					
						
							|  |  |  |     r.refactor(files, write=True) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-31 00:34:54 +00:00
										 |  |  | def copydir_run_2to3(src, dest, template=None, fixer_names=None, | 
					
						
							|  |  |  |                      options=None, explicit=None): | 
					
						
							|  |  |  |     """Recursively copy a directory, only copying new and changed files,
 | 
					
						
							|  |  |  |     running run_2to3 over all newly copied Python modules afterward. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     If you give a template string, it's parsed like a MANIFEST.in. | 
					
						
							|  |  |  |     """
 | 
					
						
							|  |  |  |     from distutils.dir_util import mkpath | 
					
						
							|  |  |  |     from distutils.file_util import copy_file | 
					
						
							|  |  |  |     from distutils.filelist import FileList | 
					
						
							|  |  |  |     filelist = FileList() | 
					
						
							|  |  |  |     curdir = os.getcwd() | 
					
						
							|  |  |  |     os.chdir(src) | 
					
						
							|  |  |  |     try: | 
					
						
							|  |  |  |         filelist.findall() | 
					
						
							|  |  |  |     finally: | 
					
						
							|  |  |  |         os.chdir(curdir) | 
					
						
							|  |  |  |     filelist.files[:] = filelist.allfiles | 
					
						
							|  |  |  |     if template: | 
					
						
							|  |  |  |         for line in template.splitlines(): | 
					
						
							|  |  |  |             line = line.strip() | 
					
						
							|  |  |  |             if not line: continue | 
					
						
							|  |  |  |             filelist.process_template_line(line) | 
					
						
							|  |  |  |     copied = [] | 
					
						
							|  |  |  |     for filename in filelist.files: | 
					
						
							|  |  |  |         outname = os.path.join(dest, filename) | 
					
						
							|  |  |  |         mkpath(os.path.dirname(outname)) | 
					
						
							|  |  |  |         res = copy_file(os.path.join(src, filename), outname, update=1) | 
					
						
							|  |  |  |         if res[1]: copied.append(outname) | 
					
						
							|  |  |  |     run_2to3([fn for fn in copied if fn.lower().endswith('.py')], | 
					
						
							|  |  |  |              fixer_names=fixer_names, options=options, explicit=explicit) | 
					
						
							|  |  |  |     return copied | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-01 04:38:52 +00:00
										 |  |  | class Mixin2to3: | 
					
						
							|  |  |  |     '''Mixin class for commands that run 2to3.
 | 
					
						
							|  |  |  |     To configure 2to3, setup scripts may either change | 
					
						
							|  |  |  |     the class variables, or inherit from individual commands | 
					
						
							|  |  |  |     to override how 2to3 is invoked.'''
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # provide list of fixers to run; | 
					
						
							|  |  |  |     # defaults to all from lib2to3.fixers | 
					
						
							|  |  |  |     fixer_names = None | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # options dictionary | 
					
						
							|  |  |  |     options = None | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # list of fixers to invoke even though they are marked as explicit | 
					
						
							|  |  |  |     explicit = None | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def run_2to3(self, files): | 
					
						
							|  |  |  |         return run_2to3(files, self.fixer_names, self.options, self.explicit) |