__init__.py.svn-base
上传用户:market2
上传日期:2018-11-18
资源大小:18786k
文件大小:7k
源码类别:

外挂编程

开发平台:

Windows_Unix

  1. #
  2. # Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 The SCons Foundation
  3. #
  4. # Permission is hereby granted, free of charge, to any person obtaining
  5. # a copy of this software and associated documentation files (the
  6. # "Software"), to deal in the Software without restriction, including
  7. # without limitation the rights to use, copy, modify, merge, publish,
  8. # distribute, sublicense, and/or sell copies of the Software, and to
  9. # permit persons to whom the Software is furnished to do so, subject to
  10. # the following conditions:
  11. #
  12. # The above copyright notice and this permission notice shall be included
  13. # in all copies or substantial portions of the Software.
  14. #
  15. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
  16. # KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  17. # WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  18. # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
  19. # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  20. # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  21. # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  22. #
  23. __doc__ = """
  24. SCons compatibility package for old Python versions
  25. This subpackage holds modules that provide backwards-compatible
  26. implementations of various things that we'd like to use in SCons but which
  27. only show up in later versions of Python than the early, old version(s)
  28. we still support.
  29. This package will be imported by other code:
  30.     import SCons.compat
  31. But other code will not generally reference things in this package through
  32. the SCons.compat namespace.  The modules included here add things to
  33. the __builtin__ namespace or the global module list so that the rest
  34. of our code can use the objects and names imported here regardless of
  35. Python version.
  36. Simply enough, things that go in the __builtin__ name space come from
  37. our builtins module.
  38. The rest of the things here will be in individual compatibility modules
  39. that are either: 1) suitably modified copies of the future modules that
  40. we want to use; or 2) backwards compatible re-implementations of the
  41. specific portions of a future module's API that we want to use.
  42. GENERAL WARNINGS:  Implementations of functions in the SCons.compat
  43. modules are *NOT* guaranteed to be fully compliant with these functions in
  44. later versions of Python.  We are only concerned with adding functionality
  45. that we actually use in SCons, so be wary if you lift this code for
  46. other uses.  (That said, making these more nearly the same as later,
  47. official versions is still a desirable goal, we just don't need to be
  48. obsessive about it.)
  49. We name the compatibility modules with an initial '_scons_' (for example,
  50. _scons_subprocess.py is our compatibility module for subprocess) so
  51. that we can still try to import the real module name and fall back to
  52. our compatibility module if we get an ImportError.  The import_as()
  53. function defined below loads the module as the "real" name (without the
  54. '_scons'), after which all of the "import {module}" statements in the
  55. rest of our code will find our pre-loaded compatibility module.
  56. """
  57. __revision__ = "src/engine/SCons/compat/__init__.py 3057 2008/06/09 22:21:00 knight"
  58. def import_as(module, name):
  59.     """
  60.     Imports the specified module (from our local directory) as the
  61.     specified name.
  62.     """
  63.     import imp
  64.     import os.path
  65.     dir = os.path.split(__file__)[0]
  66.     file, filename, suffix_mode_type = imp.find_module(module, [dir])
  67.     imp.load_module(name, file, filename, suffix_mode_type)
  68. import builtins
  69. try:
  70.     import hashlib
  71. except ImportError:
  72.     # Pre-2.5 Python has no hashlib module.
  73.     try:
  74.         import_as('_scons_hashlib', 'hashlib')
  75.     except ImportError:
  76.         # If we failed importing our compatibility module, it probably
  77.         # means this version of Python has no md5 module.  Don't do
  78.         # anything and let the higher layer discover this fact, so it
  79.         # can fall back to using timestamp.
  80.         pass
  81. try:
  82.     set
  83. except NameError:
  84.     # Pre-2.4 Python has no native set type
  85.     try:
  86.         # Python 2.2 and 2.3 can use the copy of the 2.[45] sets module
  87.         # that we grabbed.
  88.         import_as('_scons_sets', 'sets')
  89.     except (ImportError, SyntaxError):
  90.         # Python 1.5 (ImportError, no __future_ module) and 2.1
  91.         # (SyntaxError, no generators in __future__) will blow up
  92.         # trying to import the 2.[45] sets module, so back off to a
  93.         # custom sets module that can be discarded easily when we
  94.         # stop supporting those versions.
  95.         import_as('_scons_sets15', 'sets')
  96.     import __builtin__
  97.     import sets
  98.     __builtin__.set = sets.Set
  99. import fnmatch
  100. try:
  101.     fnmatch.filter
  102. except AttributeError:
  103.     # Pre-2.2 Python has no fnmatch.filter() function.
  104.     def filter(names, pat):
  105.         """Return the subset of the list NAMES that match PAT"""
  106.         import os,posixpath
  107.         result=[]
  108.         pat = os.path.normcase(pat)
  109.         if not fnmatch._cache.has_key(pat):
  110.             import re
  111.             res = fnmatch.translate(pat)
  112.             fnmatch._cache[pat] = re.compile(res)
  113.         match = fnmatch._cache[pat].match
  114.         if os.path is posixpath:
  115.             # normcase on posix is NOP. Optimize it away from the loop.
  116.             for name in names:
  117.                 if match(name):
  118.                     result.append(name)
  119.         else:
  120.             for name in names:
  121.                 if match(os.path.normcase(name)):
  122.                     result.append(name)
  123.         return result
  124.     fnmatch.filter = filter
  125.     del filter
  126. try:
  127.     import itertools
  128. except ImportError:
  129.     # Pre-2.3 Python has no itertools module.
  130.     import_as('_scons_itertools', 'itertools')
  131. # If we need the compatibility version of textwrap, it  must be imported
  132. # before optparse, which uses it.
  133. try:
  134.     import textwrap
  135. except ImportError:
  136.     # Pre-2.3 Python has no textwrap module.
  137.     import_as('_scons_textwrap', 'textwrap')
  138. try:
  139.     import optparse
  140. except ImportError:
  141.     # Pre-2.3 Python has no optparse module.
  142.     import_as('_scons_optparse', 'optparse')
  143. import shlex
  144. try:
  145.     shlex.split
  146. except AttributeError:
  147.     # Pre-2.3 Python has no shlex.split() function.
  148.     #
  149.     # The full white-space splitting semantics of shlex.split() are
  150.     # complicated to reproduce by hand, so just use a compatibility
  151.     # version of the shlex module cribbed from Python 2.5 with some
  152.     # minor modifications for older Python versions.
  153.     del shlex
  154.     import_as('_scons_shlex', 'shlex')
  155. try:
  156.     import subprocess
  157. except ImportError:
  158.     # Pre-2.4 Python has no subprocess module.
  159.     import_as('_scons_subprocess', 'subprocess')
  160. import sys
  161. try:
  162.     sys.version_info
  163. except AttributeError:
  164.     # Pre-1.6 Python has no sys.version_info
  165.     import string
  166.     version_string = string.split(sys.version)[0]
  167.     version_ints = map(int, string.split(version_string, '.'))
  168.     sys.version_info = tuple(version_ints + ['final', 0])
  169. try:
  170.     import UserString
  171. except ImportError:
  172.     # Pre-1.6 Python has no UserString module.
  173.     import_as('_scons_UserString', 'UserString')