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

外挂编程

开发平台:

Windows_Unix

  1. """SCons.Tool.PharLapCommon
  2. This module contains common code used by all Tools for the
  3. Phar Lap ETS tool chain.  Right now, this is linkloc and
  4. 386asm.
  5. """
  6. #
  7. # Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 The SCons Foundation
  8. #
  9. # Permission is hereby granted, free of charge, to any person obtaining
  10. # a copy of this software and associated documentation files (the
  11. # "Software"), to deal in the Software without restriction, including
  12. # without limitation the rights to use, copy, modify, merge, publish,
  13. # distribute, sublicense, and/or sell copies of the Software, and to
  14. # permit persons to whom the Software is furnished to do so, subject to
  15. # the following conditions:
  16. #
  17. # The above copyright notice and this permission notice shall be included
  18. # in all copies or substantial portions of the Software.
  19. #
  20. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
  21. # KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  22. # WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  23. # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
  24. # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  25. # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  26. # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  27. #
  28. __revision__ = "src/engine/SCons/Tool/PharLapCommon.py 3057 2008/06/09 22:21:00 knight"
  29. import os
  30. import os.path
  31. import SCons.Errors
  32. import SCons.Util
  33. import re
  34. import string
  35. def getPharLapPath():
  36.     """Reads the registry to find the installed path of the Phar Lap ETS
  37.     development kit.
  38.     Raises UserError if no installed version of Phar Lap can
  39.     be found."""
  40.     if not SCons.Util.can_read_reg:
  41.         raise SCons.Errors.InternalError, "No Windows registry module was found"
  42.     try:
  43.         k=SCons.Util.RegOpenKeyEx(SCons.Util.HKEY_LOCAL_MACHINE,
  44.                                   'SOFTWARE\Pharlap\ETS')
  45.         val, type = SCons.Util.RegQueryValueEx(k, 'BaseDir')
  46.         # The following is a hack...there is (not surprisingly)
  47.         # an odd issue in the Phar Lap plug in that inserts
  48.         # a bunch of junk data after the phar lap path in the
  49.         # registry.  We must trim it.
  50.         idx=val.find('')
  51.         if idx >= 0:
  52.             val = val[:idx]
  53.                     
  54.         return os.path.normpath(val)
  55.     except SCons.Util.RegError:
  56.         raise SCons.Errors.UserError, "Cannot find Phar Lap ETS path in the registry.  Is it installed properly?"
  57. REGEX_ETS_VER = re.compile(r'#defines+ETS_VERs+([0-9]+)')
  58. def getPharLapVersion():
  59.     """Returns the version of the installed ETS Tool Suite as a
  60.     decimal number.  This version comes from the ETS_VER #define in
  61.     the embkern.h header.  For example, '#define ETS_VER 1010' (which
  62.     is what Phar Lap 10.1 defines) would cause this method to return
  63.     1010. Phar Lap 9.1 does not have such a #define, but this method
  64.     will return 910 as a default.
  65.     Raises UserError if no installed version of Phar Lap can
  66.     be found."""
  67.     include_path = os.path.join(getPharLapPath(), os.path.normpath("include/embkern.h"))
  68.     if not os.path.exists(include_path):
  69.         raise SCons.Errors.UserError, "Cannot find embkern.h in ETS include directory.nIs Phar Lap ETS installed properly?"
  70.     mo = REGEX_ETS_VER.search(open(include_path, 'r').read())
  71.     if mo:
  72.         return int(mo.group(1))
  73.     # Default return for Phar Lap 9.1
  74.     return 910
  75. def addPathIfNotExists(env_dict, key, path, sep=os.pathsep):
  76.     """This function will take 'key' out of the dictionary
  77.     'env_dict', then add the path 'path' to that key if it is not
  78.     already there.  This treats the value of env_dict[key] as if it
  79.     has a similar format to the PATH variable...a list of paths
  80.     separated by tokens.  The 'path' will get added to the list if it
  81.     is not already there."""
  82.     try:
  83.         is_list = 1
  84.         paths = env_dict[key]
  85.         if not SCons.Util.is_List(env_dict[key]):
  86.             paths = string.split(paths, sep)
  87.             is_list = 0
  88.         if not os.path.normcase(path) in map(os.path.normcase, paths):
  89.             paths = [ path ] + paths
  90.         if is_list:
  91.             env_dict[key] = paths
  92.         else:
  93.             env_dict[key] = string.join(paths, sep)
  94.     except KeyError:
  95.         env_dict[key] = path
  96. def addPharLapPaths(env):
  97.     """This function adds the path to the Phar Lap binaries, includes,
  98.     and libraries, if they are not already there."""
  99.     ph_path = getPharLapPath()
  100.     try:
  101.         env_dict = env['ENV']
  102.     except KeyError:
  103.         env_dict = {}
  104.         env['ENV'] = env_dict
  105.     addPathIfNotExists(env_dict, 'PATH',
  106.                        os.path.join(ph_path, 'bin'))
  107.     addPathIfNotExists(env_dict, 'INCLUDE',
  108.                        os.path.join(ph_path, 'include'))
  109.     addPathIfNotExists(env_dict, 'LIB',
  110.                        os.path.join(ph_path, 'lib'))
  111.     addPathIfNotExists(env_dict, 'LIB',
  112.                        os.path.join(ph_path, os.path.normpath('lib/vclib')))
  113.     
  114.     env['PHARLAP_PATH'] = getPharLapPath()
  115.     env['PHARLAP_VERSION'] = str(getPharLapVersion())
  116.