Home | Trees | Indices | Help |
|
---|
|
1 """SCons.Scanner.C 2 3 This module implements the depenency scanner for C/C++ code. 4 5 """ 6 7 # 8 # Copyright (c) 2001 - 2014 The SCons Foundation 9 # 10 # Permission is hereby granted, free of charge, to any person obtaining 11 # a copy of this software and associated documentation files (the 12 # "Software"), to deal in the Software without restriction, including 13 # without limitation the rights to use, copy, modify, merge, publish, 14 # distribute, sublicense, and/or sell copies of the Software, and to 15 # permit persons to whom the Software is furnished to do so, subject to 16 # the following conditions: 17 # 18 # The above copyright notice and this permission notice shall be included 19 # in all copies or substantial portions of the Software. 20 # 21 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY 22 # KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE 23 # WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 24 # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 25 # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 26 # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 27 # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 28 # 29 30 __revision__ = "src/engine/SCons/Scanner/C.py 2014/09/27 12:51:43 garyo" 31 32 import SCons.Node.FS 33 import SCons.Scanner 34 import SCons.Util 35 36 import SCons.cpp 3739 """ 40 SCons-specific subclass of the cpp.py module's processing. 41 42 We subclass this so that: 1) we can deal with files represented 43 by Nodes, not strings; 2) we can keep track of the files that are 44 missing. 45 """6752 return self.result[1:]54 keyword, quote, fname = t 55 result = SCons.Node.FS.find_file(fname, self.searchpath[quote]) 56 if not result: 57 self.missing.append((fname, self.current_file)) 58 return result69 cppdefines = env.get('CPPDEFINES', {}) 70 if cppdefines is None: 71 return {} 72 if SCons.Util.is_Sequence(cppdefines): 73 result = {} 74 for c in cppdefines: 75 if SCons.Util.is_Sequence(c): 76 result[c[0]] = c[1] 77 else: 78 result[c] = None 79 return result 80 if not SCons.Util.is_Dict(cppdefines): 81 return {cppdefines : None} 82 return cppdefines8385 """ 86 The SCons wrapper around a cpp.py scanner. 87 88 This is the actual glue between the calling conventions of generic 89 SCons scanners, and the (subclass of) cpp.py class that knows how 90 to look for #include lines with reasonably real C-preprocessor-like 91 evaluation of #if/#ifdef/#else/#elif lines. 92 """11197 cpp = SConsCPPScanner(current = node.get_dir(), 98 cpppath = path, 99 dict = dictify_CPPDEFINES(env)) 100 result = cpp(node) 101 for included, includer in cpp.missing: 102 fmt = "No dependency generated for file: %s (included from: %s) -- file not found" 103 SCons.Warnings.warn(SCons.Warnings.DependencyWarning, 104 fmt % (included, includer)) 105 return result106113 """Return a prototype Scanner instance for scanning source files 114 that use the C pre-processor""" 115 116 # Here's how we would (or might) use the CPP scanner code above that 117 # knows how to evaluate #if/#ifdef/#else/#elif lines when searching 118 # for #includes. This is commented out for now until we add the 119 # right configurability to let users pick between the scanners. 120 #return SConsCPPScannerWrapper("CScanner", "CPPPATH") 121 122 cs = SCons.Scanner.ClassicCPP("CScanner", 123 "$CPPSUFFIXES", 124 "CPPPATH", 125 '^[ \t]*#[ \t]*(?:include|import)[ \t]*(<|")([^>"]+)(>|")') 126 return cs127 128 # Local Variables: 129 # tab-width:4 130 # indent-tabs-mode:nil 131 # End: 132 # vim: set expandtab tabstop=4 shiftwidth=4: 133
Home | Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0.1 on Sat Sep 27 12:53:25 2014 | http://epydoc.sourceforge.net |