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

外挂编程

开发平台:

Windows_Unix

  1. #
  2. # Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 The SCons Foundation
  3. #
  4. # Permission is hereby granted, free of charge, to any person obtaining
  5. # a copy of this software and associated documentation files (the
  6. # "Software"), to deal in the Software without restriction, including
  7. # without limitation the rights to use, copy, modify, merge, publish,
  8. # distribute, sublicense, and/or sell copies of the Software, and to
  9. # permit persons to whom the Software is furnished to do so, subject to
  10. # the following conditions:
  11. #
  12. # The above copyright notice and this permission notice shall be included
  13. # in all copies or substantial portions of the Software.
  14. #
  15. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
  16. # KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  17. # WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  18. # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
  19. # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  20. # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  21. # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  22. #
  23. __revision__ = "src/engine/SCons/Scanner/Dir.py 3057 2008/06/09 22:21:00 knight"
  24. import SCons.Node.FS
  25. import SCons.Scanner
  26. def only_dirs(nodes):
  27.     is_Dir = lambda n: isinstance(n.disambiguate(), SCons.Node.FS.Dir)
  28.     return filter(is_Dir, nodes)
  29. def DirScanner(**kw):
  30.     """Return a prototype Scanner instance for scanning
  31.     directories for on-disk files"""
  32.     kw['node_factory'] = SCons.Node.FS.Entry
  33.     kw['recursive'] = only_dirs
  34.     return apply(SCons.Scanner.Base, (scan_on_disk, "DirScanner"), kw)
  35. def DirEntryScanner(**kw):
  36.     """Return a prototype Scanner instance for "scanning"
  37.     directory Nodes for their in-memory entries"""
  38.     kw['node_factory'] = SCons.Node.FS.Entry
  39.     kw['recursive'] = None
  40.     return apply(SCons.Scanner.Base, (scan_in_memory, "DirEntryScanner"), kw)
  41. skip_entry = {}
  42. skip_entry_list = [
  43.    '.',
  44.    '..',
  45.    '.sconsign',
  46.    # Used by the native dblite.py module.
  47.    '.sconsign.dblite',
  48.    # Used by dbm and dumbdbm.
  49.    '.sconsign.dir',
  50.    # Used by dbm.
  51.    '.sconsign.pag',
  52.    # Used by dumbdbm.
  53.    '.sconsign.dat',
  54.    '.sconsign.bak',
  55.    # Used by some dbm emulations using Berkeley DB.
  56.    '.sconsign.db',
  57. ]
  58. for skip in skip_entry_list:
  59.     skip_entry[skip] = 1
  60.     skip_entry[SCons.Node.FS._my_normcase(skip)] = 1
  61. do_not_scan = lambda k: not skip_entry.has_key(k)
  62. def scan_on_disk(node, env, path=()):
  63.     """
  64.     Scans a directory for on-disk files and directories therein.
  65.     Looking up the entries will add these to the in-memory Node tree
  66.     representation of the file system, so all we have to do is just
  67.     that and then call the in-memory scanning function.
  68.     """
  69.     try:
  70.         flist = node.fs.listdir(node.abspath)
  71.     except (IOError, OSError):
  72.         return []
  73.     e = node.Entry
  74.     for f in  filter(do_not_scan, flist):
  75.         # Add ./ to the beginning of the file name so if it begins with a
  76.         # '#' we don't look it up relative to the top-level directory.
  77.         e('./' + f)
  78.     return scan_in_memory(node, env, path)
  79. def scan_in_memory(node, env, path=()):
  80.     """
  81.     "Scans" a Node.FS.Dir for its in-memory entries.
  82.     """
  83.     try:
  84.         entries = node.entries
  85.     except AttributeError:
  86.         # It's not a Node.FS.Dir (or doesn't look enough like one for
  87.         # our purposes), which can happen if a target list containing
  88.         # mixed Node types (Dirs and Files, for example) has a Dir as
  89.         # the first entry.
  90.         return []
  91.     entry_list = filter(do_not_scan, entries.keys())
  92.     entry_list.sort()
  93.     return map(lambda n, e=entries: e[n], entry_list)