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

外挂编程

开发平台:

Windows_Unix

  1. """SCons.Scanner.D
  2. Scanner for the Digital Mars "D" programming language.
  3. Coded by Andy Friesen
  4. 17 Nov 2003
  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/Scanner/D.py 3057 2008/06/09 22:21:00 knight"
  29. import re
  30. import string
  31. import SCons.Scanner
  32. def DScanner():
  33.     """Return a prototype Scanner instance for scanning D source files"""
  34.     ds = D()
  35.     return ds
  36. class D(SCons.Scanner.Classic):
  37.     def __init__ (self):
  38.         SCons.Scanner.Classic.__init__ (self,
  39.             name = "DScanner",
  40.             suffixes = '$DSUFFIXES',
  41.             path_variable = 'DPATH',
  42.             regex = 'imports+(?:[a-zA-Z0-9_.]+)s*(?:,s*(?:[a-zA-Z0-9_.]+)s*)*;')
  43.         self.cre2 = re.compile ('(?:imports)?s*([a-zA-Z0-9_.]+)s*(?:,|;)', re.M)
  44.     def find_include(self, include, source_dir, path):
  45.         # translate dots (package separators) to slashes
  46.         inc = string.replace(include, '.', '/')
  47.         i = SCons.Node.FS.find_file(inc + '.d', (source_dir,) + path)
  48.         if i is None:
  49.             i = SCons.Node.FS.find_file (inc + '.di', (source_dir,) + path)
  50.         return i, include
  51.     def find_include_names(self, node):
  52.         includes = []
  53.         for i in self.cre.findall(node.get_contents()):
  54.             includes = includes + self.cre2.findall(i)
  55.         return includes