home *** CD-ROM | disk | FTP | other *** search
/ Freelog 116 / FreelogNo116-JuilletSeptembre2013.iso / Bureautique / gImageReader / gimagereader_0.9-1_win32.exe / bin / distutils / sysconfig.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2011-03-24  |  15KB  |  450 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.7)
  3.  
  4. """Provide access to Python's configuration information.  The specific
  5. configuration variables available depend heavily on the platform and
  6. configuration.  The values may be retrieved using
  7. get_config_var(name), and the list of variables is available via
  8. get_config_vars().keys().  Additional convenience functions are also
  9. available.
  10.  
  11. Written by:   Fred L. Drake, Jr.
  12. Email:        <fdrake@acm.org>
  13. """
  14. __revision__ = '$Id: sysconfig.py 86264 2010-11-06 14:16:30Z eric.araujo $'
  15. import os
  16. import re
  17. import string
  18. import sys
  19. from distutils.errors import DistutilsPlatformError
  20. PREFIX = os.path.normpath(sys.prefix)
  21. EXEC_PREFIX = os.path.normpath(sys.exec_prefix)
  22. project_base = os.path.dirname(os.path.abspath(sys.executable))
  23. if os.name == 'nt' and 'pcbuild' in project_base[-8:].lower():
  24.     project_base = os.path.abspath(os.path.join(project_base, os.path.pardir))
  25. if os.name == 'nt' and '\\pc\\v' in project_base[-10:].lower():
  26.     project_base = os.path.abspath(os.path.join(project_base, os.path.pardir, os.path.pardir))
  27. if os.name == 'nt' and '\\pcbuild\\amd64' in project_base[-14:].lower():
  28.     project_base = os.path.abspath(os.path.join(project_base, os.path.pardir, os.path.pardir))
  29.  
  30. def _python_build():
  31.     for fn in ('Setup.dist', 'Setup.local'):
  32.         if os.path.isfile(os.path.join(project_base, 'Modules', fn)):
  33.             return True
  34.     
  35.     return False
  36.  
  37. python_build = _python_build()
  38.  
  39. def get_python_version():
  40.     """Return a string containing the major and minor Python version,
  41.     leaving off the patchlevel.  Sample return values could be '1.5'
  42.     or '2.2'.
  43.     """
  44.     return sys.version[:3]
  45.  
  46.  
  47. def get_python_inc(plat_specific = 0, prefix = None):
  48.     """Return the directory containing installed Python header files.
  49.  
  50.     If 'plat_specific' is false (the default), this is the path to the
  51.     non-platform-specific header files, i.e. Python.h and so on;
  52.     otherwise, this is the path to platform-specific header files
  53.     (namely pyconfig.h).
  54.  
  55.     If 'prefix' is supplied, use it instead of sys.prefix or
  56.     sys.exec_prefix -- i.e., ignore 'plat_specific'.
  57.     """
  58.     if prefix is None:
  59.         if not plat_specific or EXEC_PREFIX:
  60.             pass
  61.         prefix = PREFIX
  62.     if os.name == 'posix':
  63.         if python_build:
  64.             buildir = os.path.dirname(sys.executable)
  65.             if plat_specific:
  66.                 inc_dir = buildir
  67.             else:
  68.                 srcdir = os.path.abspath(os.path.join(buildir, get_config_var('srcdir')))
  69.                 inc_dir = os.path.join(srcdir, 'Include')
  70.             return inc_dir
  71.         return None.path.join(prefix, 'include', 'python' + get_python_version())
  72.     if None.name == 'nt':
  73.         return os.path.join(prefix, 'include')
  74.     if None.name == 'os2':
  75.         return os.path.join(prefix, 'Include')
  76.     raise None("I don't know where Python installs its C header files on platform '%s'" % os.name)
  77.  
  78.  
  79. def get_python_lib(plat_specific = 0, standard_lib = 0, prefix = None):
  80.     """Return the directory containing the Python library (standard or
  81.     site additions).
  82.  
  83.     If 'plat_specific' is true, return the directory containing
  84.     platform-specific modules, i.e. any module from a non-pure-Python
  85.     module distribution; otherwise, return the platform-shared library
  86.     directory.  If 'standard_lib' is true, return the directory
  87.     containing standard Python library modules; otherwise, return the
  88.     directory for site-specific modules.
  89.  
  90.     If 'prefix' is supplied, use it instead of sys.prefix or
  91.     sys.exec_prefix -- i.e., ignore 'plat_specific'.
  92.     """
  93.     if prefix is None:
  94.         if not plat_specific or EXEC_PREFIX:
  95.             pass
  96.         prefix = PREFIX
  97.     if os.name == 'posix':
  98.         libpython = os.path.join(prefix, 'lib', 'python' + get_python_version())
  99.         if standard_lib:
  100.             return libpython
  101.         return None.path.join(libpython, 'site-packages')
  102.     if os.name == 'nt':
  103.         if standard_lib:
  104.             return os.path.join(prefix, 'Lib')
  105.         if None() < '2.2':
  106.             return prefix
  107.         return None.path.join(prefix, 'Lib', 'site-packages')
  108.     if os.name == 'os2':
  109.         if standard_lib:
  110.             return os.path.join(prefix, 'Lib')
  111.         return None.path.join(prefix, 'Lib', 'site-packages')
  112.     raise DistutilsPlatformError("I don't know where Python installs its library on platform '%s'" % os.name)
  113.  
  114.  
  115. def customize_compiler(compiler):
  116.     """Do any platform-specific customization of a CCompiler instance.
  117.  
  118.     Mainly needed on Unix, so we can plug in the information that
  119.     varies across Unices and is stored in Python's Makefile.
  120.     """
  121.     if compiler.compiler_type == 'unix':
  122.         (cc, cxx, opt, cflags, ccshared, ldshared, so_ext) = get_config_vars('CC', 'CXX', 'OPT', 'CFLAGS', 'CCSHARED', 'LDSHARED', 'SO')
  123.         if 'CC' in os.environ:
  124.             cc = os.environ['CC']
  125.         if 'CXX' in os.environ:
  126.             cxx = os.environ['CXX']
  127.         if 'LDSHARED' in os.environ:
  128.             ldshared = os.environ['LDSHARED']
  129.         if 'CPP' in os.environ:
  130.             cpp = os.environ['CPP']
  131.         else:
  132.             cpp = cc + ' -E'
  133.         if 'LDFLAGS' in os.environ:
  134.             ldshared = ldshared + ' ' + os.environ['LDFLAGS']
  135.         if 'CFLAGS' in os.environ:
  136.             cflags = opt + ' ' + os.environ['CFLAGS']
  137.             ldshared = ldshared + ' ' + os.environ['CFLAGS']
  138.         if 'CPPFLAGS' in os.environ:
  139.             cpp = cpp + ' ' + os.environ['CPPFLAGS']
  140.             cflags = cflags + ' ' + os.environ['CPPFLAGS']
  141.             ldshared = ldshared + ' ' + os.environ['CPPFLAGS']
  142.         cc_cmd = cc + ' ' + cflags
  143.         compiler.set_executables(preprocessor = cpp, compiler = cc_cmd, compiler_so = cc_cmd + ' ' + ccshared, compiler_cxx = cxx, linker_so = ldshared, linker_exe = cc)
  144.         compiler.shared_lib_extension = so_ext
  145.  
  146.  
  147. def get_config_h_filename():
  148.     '''Return full pathname of installed pyconfig.h file.'''
  149.     if python_build:
  150.         if os.name == 'nt':
  151.             inc_dir = os.path.join(project_base, 'PC')
  152.         else:
  153.             inc_dir = project_base
  154.     else:
  155.         inc_dir = get_python_inc(plat_specific = 1)
  156.     if get_python_version() < '2.2':
  157.         config_h = 'config.h'
  158.     else:
  159.         config_h = 'pyconfig.h'
  160.     return os.path.join(inc_dir, config_h)
  161.  
  162.  
  163. def get_makefile_filename():
  164.     '''Return full pathname of installed Makefile from the Python build.'''
  165.     if python_build:
  166.         return os.path.join(os.path.dirname(sys.executable), 'Makefile')
  167.     lib_dir = None(plat_specific = 1, standard_lib = 1)
  168.     return os.path.join(lib_dir, 'config', 'Makefile')
  169.  
  170.  
  171. def parse_config_h(fp, g = None):
  172.     '''Parse a config.h-style file.
  173.  
  174.     A dictionary containing name/value pairs is returned.  If an
  175.     optional dictionary is passed in as the second argument, it is
  176.     used instead of a new dictionary.
  177.     '''
  178.     if g is None:
  179.         g = { }
  180.     define_rx = re.compile('#define ([A-Z][A-Za-z0-9_]+) (.*)\n')
  181.     undef_rx = re.compile('/[*] #undef ([A-Z][A-Za-z0-9_]+) [*]/\n')
  182.     while None:
  183.         line = fp.readline()
  184.         if not line:
  185.             break
  186.         m = define_rx.match(line)
  187.         if m:
  188.             (n, v) = m.group(1, 2)
  189.             
  190.             try:
  191.                 v = int(v)
  192.             except ValueError:
  193.                 pass
  194.  
  195.             g[n] = v
  196.             continue
  197.         m = undef_rx.match(line)
  198.         if m:
  199.             g[m.group(1)] = 0
  200.             continue
  201.             continue
  202.             return g
  203.  
  204. _variable_rx = re.compile('([a-zA-Z][a-zA-Z0-9_]+)\\s*=\\s*(.*)')
  205. _findvar1_rx = re.compile('\\$\\(([A-Za-z][A-Za-z0-9_]*)\\)')
  206. _findvar2_rx = re.compile('\\${([A-Za-z][A-Za-z0-9_]*)}')
  207.  
  208. def parse_makefile(fn, g = None):
  209.     '''Parse a Makefile-style file.
  210.  
  211.     A dictionary containing name/value pairs is returned.  If an
  212.     optional dictionary is passed in as the second argument, it is
  213.     used instead of a new dictionary.
  214.     '''
  215.     TextFile = TextFile
  216.     import distutils.text_file
  217.     fp = TextFile(fn, strip_comments = 1, skip_blanks = 1, join_lines = 1)
  218.     if g is None:
  219.         g = { }
  220.     done = { }
  221.     notdone = { }
  222.     while None:
  223.         line = fp.readline()
  224.         if line is None:
  225.             break
  226.         m = _variable_rx.match(line)
  227.         if m:
  228.             (n, v) = m.group(1, 2)
  229.             v = v.strip()
  230.             tmpv = v.replace('$$', '')
  231.             if '$' in tmpv:
  232.                 notdone[n] = v
  233.             else:
  234.                 
  235.                 try:
  236.                     v = int(v)
  237.                 except ValueError:
  238.                     done[n] = v.replace('$$', '$')
  239.  
  240.                 done[n] = v
  241.             continue
  242.             while notdone:
  243.                 for name in notdone.keys():
  244.                     value = notdone[name]
  245.                     if not _findvar1_rx.search(value):
  246.                         pass
  247.                     m = _findvar2_rx.search(value)
  248.                     if m:
  249.                         n = m.group(1)
  250.                         found = True
  251.                         if n in done:
  252.                             item = str(done[n])
  253.                         elif n in notdone:
  254.                             found = False
  255.                         elif n in os.environ:
  256.                             item = os.environ[n]
  257.                         else:
  258.                             done[n] = item = ''
  259.                         if found:
  260.                             after = value[m.end():]
  261.                             value = value[:m.start()] + item + after
  262.                             if '$' in after:
  263.                                 notdone[name] = value
  264.                             else:
  265.                                 
  266.                                 try:
  267.                                     value = int(value)
  268.                                 except ValueError:
  269.                                     done[name] = value.strip()
  270.  
  271.                                 done[name] = value
  272.                                 del notdone[name]
  273.                         
  274.                     del notdone[name]
  275.                 
  276.             fp.close()
  277.             for k, v in done.items():
  278.                 if isinstance(v, str):
  279.                     done[k] = v.strip()
  280.                     continue
  281.             g.update(done)
  282.             return g
  283.  
  284.  
  285. def expand_makefile_vars(s, vars):
  286.     '''Expand Makefile-style variables -- "${foo}" or "$(foo)" -- in
  287.     \'string\' according to \'vars\' (a dictionary mapping variable names to
  288.     values).  Variables not present in \'vars\' are silently expanded to the
  289.     empty string.  The variable values in \'vars\' should not contain further
  290.     variable expansions; if \'vars\' is the output of \'parse_makefile()\',
  291.     you\'re fine.  Returns a variable-expanded version of \'s\'.
  292.     '''
  293.     while not _findvar1_rx.search(s):
  294.         m = _findvar2_rx.search(s)
  295.         if m:
  296.             (beg, end) = m.span()
  297.             s = s[0:beg] + vars.get(m.group(1)) + s[end:]
  298.             continue
  299.     break
  300.     continue
  301.     return s
  302.  
  303. _config_vars = None
  304.  
  305. def _init_posix():
  306.     '''Initialize the module as appropriate for POSIX systems.'''
  307.     global _config_vars
  308.     g = { }
  309.     
  310.     try:
  311.         filename = get_makefile_filename()
  312.         parse_makefile(filename, g)
  313.     except IOError:
  314.         msg = None
  315.         my_msg = 'invalid Python installation: unable to open %s' % filename
  316.         if hasattr(msg, 'strerror'):
  317.             my_msg = my_msg + ' (%s)' % msg.strerror
  318.         raise DistutilsPlatformError(my_msg)
  319.  
  320.     
  321.     try:
  322.         filename = get_config_h_filename()
  323.         parse_config_h(file(filename), g)
  324.     except IOError:
  325.         msg = None
  326.         my_msg = 'invalid Python installation: unable to open %s' % filename
  327.         if hasattr(msg, 'strerror'):
  328.             my_msg = my_msg + ' (%s)' % msg.strerror
  329.         raise DistutilsPlatformError(my_msg)
  330.  
  331.     if sys.platform == 'darwin' and 'MACOSX_DEPLOYMENT_TARGET' in g:
  332.         cfg_target = g['MACOSX_DEPLOYMENT_TARGET']
  333.         cur_target = os.getenv('MACOSX_DEPLOYMENT_TARGET', '')
  334.         if cur_target == '':
  335.             cur_target = cfg_target
  336.             os.putenv('MACOSX_DEPLOYMENT_TARGET', cfg_target)
  337.         elif map(int, cfg_target.split('.')) > map(int, cur_target.split('.')):
  338.             my_msg = '$MACOSX_DEPLOYMENT_TARGET mismatch: now "%s" but "%s" during configure' % (cur_target, cfg_target)
  339.             raise DistutilsPlatformError(my_msg)
  340.         
  341.     if python_build:
  342.         g['LDSHARED'] = g['BLDSHARED']
  343.     elif get_python_version() < '2.1':
  344.         if sys.platform == 'aix4':
  345.             python_lib = get_python_lib(standard_lib = 1)
  346.             ld_so_aix = os.path.join(python_lib, 'config', 'ld_so_aix')
  347.             python_exp = os.path.join(python_lib, 'config', 'python.exp')
  348.             g['LDSHARED'] = '%s %s -bI:%s' % (ld_so_aix, g['CC'], python_exp)
  349.         elif sys.platform == 'beos':
  350.             python_lib = get_python_lib(standard_lib = 1)
  351.             linkerscript_path = string.split(g['LDSHARED'])[0]
  352.             linkerscript_name = os.path.basename(linkerscript_path)
  353.             linkerscript = os.path.join(python_lib, 'config', linkerscript_name)
  354.             g['LDSHARED'] = '%s -L%s/lib -lpython%s' % (linkerscript, PREFIX, get_python_version())
  355.         
  356.     _config_vars = g
  357.  
  358.  
  359. def _init_nt():
  360.     '''Initialize the module as appropriate for NT'''
  361.     global _config_vars
  362.     g = { }
  363.     g['LIBDEST'] = get_python_lib(plat_specific = 0, standard_lib = 1)
  364.     g['BINLIBDEST'] = get_python_lib(plat_specific = 1, standard_lib = 1)
  365.     g['INCLUDEPY'] = get_python_inc(plat_specific = 0)
  366.     g['SO'] = '.pyd'
  367.     g['EXE'] = '.exe'
  368.     g['VERSION'] = get_python_version().replace('.', '')
  369.     g['BINDIR'] = os.path.dirname(os.path.abspath(sys.executable))
  370.     _config_vars = g
  371.  
  372.  
  373. def _init_os2():
  374.     '''Initialize the module as appropriate for OS/2'''
  375.     global _config_vars
  376.     g = { }
  377.     g['LIBDEST'] = get_python_lib(plat_specific = 0, standard_lib = 1)
  378.     g['BINLIBDEST'] = get_python_lib(plat_specific = 1, standard_lib = 1)
  379.     g['INCLUDEPY'] = get_python_inc(plat_specific = 0)
  380.     g['SO'] = '.pyd'
  381.     g['EXE'] = '.exe'
  382.     _config_vars = g
  383.  
  384.  
  385. def get_config_vars(*args):
  386.     """With no arguments, return a dictionary of all configuration
  387.     variables relevant for the current platform.  Generally this includes
  388.     everything needed to build extensions and install both pure modules and
  389.     extensions.  On Unix, this means every variable defined in Python's
  390.     installed Makefile; on Windows and Mac OS it's a much smaller set.
  391.  
  392.     With arguments, return a list of values that result from looking up
  393.     each argument in the configuration variable dictionary.
  394.     """
  395.     global _config_vars
  396.     if _config_vars is None:
  397.         func = globals().get('_init_' + os.name)
  398.         if func:
  399.             func()
  400.         else:
  401.             _config_vars = { }
  402.         _config_vars['prefix'] = PREFIX
  403.         _config_vars['exec_prefix'] = EXEC_PREFIX
  404.         if sys.platform == 'darwin':
  405.             kernel_version = os.uname()[2]
  406.             major_version = int(kernel_version.split('.')[0])
  407.             if major_version < 8:
  408.                 for key in ('LDFLAGS', 'BASECFLAGS', 'LDSHARED', 'CFLAGS', 'PY_CFLAGS', 'BLDSHARED'):
  409.                     flags = _config_vars[key]
  410.                     flags = re.sub('-arch\\s+\\w+\\s', ' ', flags)
  411.                     flags = re.sub('-isysroot [^ \t]*', ' ', flags)
  412.                     _config_vars[key] = flags
  413.                 
  414.             elif 'ARCHFLAGS' in os.environ:
  415.                 arch = os.environ['ARCHFLAGS']
  416.                 for key in ('LDFLAGS', 'BASECFLAGS', 'LDSHARED', 'CFLAGS', 'PY_CFLAGS', 'BLDSHARED'):
  417.                     flags = _config_vars[key]
  418.                     flags = re.sub('-arch\\s+\\w+\\s', ' ', flags)
  419.                     flags = flags + ' ' + arch
  420.                     _config_vars[key] = flags
  421.                 
  422.             m = re.search('-isysroot\\s+(\\S+)', _config_vars['CFLAGS'])
  423.             if m is not None:
  424.                 sdk = m.group(1)
  425.                 if not os.path.exists(sdk):
  426.                     for key in ('LDFLAGS', 'BASECFLAGS', 'LDSHARED', 'CFLAGS', 'PY_CFLAGS', 'BLDSHARED'):
  427.                         flags = _config_vars[key]
  428.                         flags = re.sub('-isysroot\\s+\\S+(\\s|$)', ' ', flags)
  429.                         _config_vars[key] = flags
  430.                     
  431.                 
  432.             
  433.         
  434.     if args:
  435.         vals = []
  436.         for name in args:
  437.             vals.append(_config_vars.get(name))
  438.         
  439.         return vals
  440.     return None
  441.  
  442.  
  443. def get_config_var(name):
  444.     """Return the value of a single variable using the dictionary
  445.     returned by 'get_config_vars()'.  Equivalent to
  446.     get_config_vars().get(name)
  447.     """
  448.     return get_config_vars().get(name)
  449.  
  450.