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

外挂编程

开发平台:

Windows_Unix

  1. """SCons.Scanner.C
  2. This module implements the depenency scanner for C/C++ code. 
  3. """
  4. #
  5. # Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 The SCons Foundation
  6. #
  7. # Permission is hereby granted, free of charge, to any person obtaining
  8. # a copy of this software and associated documentation files (the
  9. # "Software"), to deal in the Software without restriction, including
  10. # without limitation the rights to use, copy, modify, merge, publish,
  11. # distribute, sublicense, and/or sell copies of the Software, and to
  12. # permit persons to whom the Software is furnished to do so, subject to
  13. # the following conditions:
  14. #
  15. # The above copyright notice and this permission notice shall be included
  16. # in all copies or substantial portions of the Software.
  17. #
  18. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
  19. # KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  20. # WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  21. # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
  22. # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  23. # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  24. # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  25. #
  26. __revision__ = "src/engine/SCons/Scanner/C.py 3057 2008/06/09 22:21:00 knight"
  27. import SCons.Node.FS
  28. import SCons.Scanner
  29. import SCons.Util
  30. import SCons.cpp
  31. class SConsCPPScanner(SCons.cpp.PreProcessor):
  32.     """
  33.     SCons-specific subclass of the cpp.py module's processing.
  34.     We subclass this so that: 1) we can deal with files represented
  35.     by Nodes, not strings; 2) we can keep track of the files that are
  36.     missing.
  37.     """
  38.     def __init__(self, *args, **kw):
  39.         apply(SCons.cpp.PreProcessor.__init__, (self,)+args, kw)
  40.         self.missing = []
  41.     def initialize_result(self, fname):
  42.         self.result = SCons.Util.UniqueList([fname])
  43.     def finalize_result(self, fname):
  44.         return self.result[1:]
  45.     def find_include_file(self, t):
  46.         keyword, quote, fname = t
  47.         result = SCons.Node.FS.find_file(fname, self.searchpath[quote])
  48.         if not result:
  49.             self.missing.append((fname, self.current_file))
  50.         return result
  51.     def read_file(self, file):
  52.         try:
  53.             fp = open(str(file.rfile()))
  54.         except EnvironmentError, e:
  55.             self.missing.append((file, self.current_file))
  56.             return ''
  57.         else:
  58.             return fp.read()
  59. def dictify_CPPDEFINES(env):
  60.     cppdefines = env.get('CPPDEFINES', {})
  61.     if cppdefines is None:
  62.         return {}
  63.     if SCons.Util.is_Sequence(cppdefines):
  64.         result = {}
  65.         for c in cppdefines:
  66.             if SCons.Util.is_Sequence(c):
  67.                 result[c[0]] = c[1]
  68.             else:
  69.                 result[c] = None
  70.         return result
  71.     if not SCons.Util.is_Dict(cppdefines):
  72.         return {cppdefines : None}
  73.     return cppdefines
  74. class SConsCPPScannerWrapper:
  75.     """
  76.     The SCons wrapper around a cpp.py scanner.
  77.     This is the actual glue between the calling conventions of generic
  78.     SCons scanners, and the (subclass of) cpp.py class that knows how
  79.     to look for #include lines with reasonably real C-preprocessor-like
  80.     evaluation of #if/#ifdef/#else/#elif lines.
  81.     """
  82.     def __init__(self, name, variable):
  83.         self.name = name
  84.         self.path = SCons.Scanner.FindPathDirs(variable)
  85.     def __call__(self, node, env, path = ()):
  86.         cpp = SConsCPPScanner(current = node.get_dir(),
  87.                               cpppath = path,
  88.                               dict = dictify_CPPDEFINES(env))
  89.         result = cpp(node)
  90.         for included, includer in cpp.missing:
  91.             fmt = "No dependency generated for file: %s (included from: %s) -- file not found"
  92.             SCons.Warnings.warn(SCons.Warnings.DependencyWarning,
  93.                                 fmt % (included, includer))
  94.         return result
  95.     def recurse_nodes(self, nodes):
  96.         return nodes
  97.     def select(self, node):
  98.         return self
  99. def CScanner():
  100.     """Return a prototype Scanner instance for scanning source files
  101.     that use the C pre-processor"""
  102.     # Here's how we would (or might) use the CPP scanner code above that
  103.     # knows how to evaluate #if/#ifdef/#else/#elif lines when searching
  104.     # for #includes.  This is commented out for now until we add the
  105.     # right configurability to let users pick between the scanners.
  106.     #return SConsCPPScannerWrapper("CScanner", "CPPPATH")
  107.     cs = SCons.Scanner.ClassicCPP("CScanner",
  108.                                   "$CPPSUFFIXES",
  109.                                   "CPPPATH",
  110.                                   '^[ t]*#[ t]*(?:include|import)[ t]*(<|")([^>"]+)(>|")')
  111.     return cs