summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2005-02-10 06:02:02 (GMT)
committerSteven Knight <knight@baldmt.com>2005-02-10 06:02:02 (GMT)
commit11f1e91b731f3914d520b3bddb38da3ec55cb7ce (patch)
treeb859c75a691e4a85bfce764b0a1940a2cc2f4c79 /src
parentac121612f842bbfe3cf35459dbd85c63c0fa7aa5 (diff)
downloadSCons-11f1e91b731f3914d520b3bddb38da3ec55cb7ce.zip
SCons-11f1e91b731f3914d520b3bddb38da3ec55cb7ce.tar.gz
SCons-11f1e91b731f3914d520b3bddb38da3ec55cb7ce.tar.bz2
Don't create a Node for every file we try to find during scan.
Diffstat (limited to 'src')
-rw-r--r--src/CHANGES.txt3
-rw-r--r--src/engine/SCons/Node/FS.py247
-rw-r--r--src/engine/SCons/Node/FSTests.py26
-rw-r--r--src/engine/SCons/Scanner/__init__.py2
4 files changed, 180 insertions, 98 deletions
diff --git a/src/CHANGES.txt b/src/CHANGES.txt
index db0145b..de12b22 100644
--- a/src/CHANGES.txt
+++ b/src/CHANGES.txt
@@ -190,6 +190,9 @@ RELEASE 0.97 - XXX
- Cache evaluation of LazyActions so we don't create a new object
for each invocation.
+ - When scanning, don't create Nodes for include files that don't
+ actually exist on disk.
+
From Wayne Lee:
- Avoid "maximum recursion limit" errors when removing $(-$) pairs
diff --git a/src/engine/SCons/Node/FS.py b/src/engine/SCons/Node/FS.py
index 59b589b..314faf8 100644
--- a/src/engine/SCons/Node/FS.py
+++ b/src/engine/SCons/Node/FS.py
@@ -531,11 +531,6 @@ class Base(SCons.Node.Node):
if dir.srcdir:
srcnode = self.fs.Entry(name, dir.srcdir,
klass=self.__class__)
- if srcnode.is_under(dir):
- # Shouldn't source from something in the build
- # path: probably means build_dir is under
- # src_dir and we are reflecting.
- break
return srcnode
name = dir.name + os.sep + name
dir=dir.get_dir()
@@ -1011,98 +1006,121 @@ class FS(LocalFS):
self.__setTopLevelDir()
self.Top.addRepository(d)
- def Rsearch(self, path, clazz=_classEntry, cwd=None):
+ def do_Rsearch(self, path, func, clazz=_classEntry, cwd=None, verbose=lambda x: x):
"""Search for something in a Repository. Returns the first
one found in the list, or None if there isn't one.
__cacheable__
"""
if isinstance(path, SCons.Node.Node):
return path
+
+ path, dir = self.__transformPath(path, cwd)
+ d, name = os.path.split(path)
+ norm_name = _my_normcase(name)
+ if d:
+ dir = dir.Dir(d)
+ try:
+ node = dir.entries[norm_name]
+ except KeyError:
+ node = dir.node_on_disk(name, clazz)
else:
- name, d = self.__transformPath(path, cwd)
- n = self._doLookup(clazz, name, d)
- if n.exists():
- return n
- if isinstance(n, Dir):
- # If n is a Directory that has Repositories directly
- # attached to it, then any of those is a valid Repository
- # path. Return the first one that exists.
- reps = filter(lambda x: x.exists(), n.getRepositories())
- if len(reps):
- return reps[0]
- d = n.get_dir()
- name = n.name
- # Search repositories of all directories that this file is under.
- while d:
- for rep in d.getRepositories():
- try:
- rnode = self._doLookup(clazz, name, rep)
- # Only find the node if it exists and it is not
- # a derived file. If for some reason, we are
- # explicitly building a file IN a Repository, we
- # don't want it to show up in the build tree.
- # This is usually the case with BuildDir().
- # We only want to find pre-existing files.
- if rnode.exists() and \
- (isinstance(rnode, Dir) or not rnode.is_derived()):
- return rnode
- except TypeError:
- pass # Wrong type of node.
- # Prepend directory name
- name = d.name + os.sep + name
- # Go up one directory
- d = d.get_dir()
+ node = func(node)
+ if node:
+ dir = node.get_dir()
+ if node:
+ verbose("... FOUND '%s' in '%s'\n" % (name, dir))
+ return node
+ fname = '.'
+ while dir:
+ for rep in dir.getRepositories():
+ rdir = rep.Dir(fname)
+ try:
+ node = rdir.entries[norm_name]
+ except KeyError:
+ node = rdir.node_on_disk(name, clazz)
+ else:
+ node = func(node)
+ if node:
+ verbose("... FOUND '%s' in '%s'\n" % (name, dir))
+ return node
+ fname = dir.name + os.sep + fname
+ dir = dir.get_dir()
return None
+ def Rsearch(self, path, clazz=_classEntry, cwd=None):
+ def func(node):
+ if node.exists() and \
+ (isinstance(node, Dir) or not node.is_derived()):
+ return node
+ return None
+ return self.do_Rsearch(path, func, clazz, cwd)
+
def Rsearchall(self, pathlist, must_exist=1, clazz=_classEntry, cwd=None):
"""Search for a list of somethings in the Repository list.
__cacheable__
"""
- ret = []
+ result = []
if SCons.Util.is_String(pathlist):
pathlist = string.split(pathlist, os.pathsep)
if not SCons.Util.is_List(pathlist):
pathlist = [pathlist]
+
+ if must_exist:
+ select = lambda x, clazz=clazz: isinstance(x, clazz) and x.exists()
+ else:
+ select = lambda x, clazz=clazz: isinstance(x, clazz)
+
for path in filter(None, pathlist):
if isinstance(path, SCons.Node.Node):
- ret.append(path)
+ result.append(path)
+ continue
+
+ path, dir = self.__transformPath(path, cwd)
+ d, name = os.path.split(path)
+ norm_name = _my_normcase(name)
+ if d:
+ dir = dir.Dir(d)
+ try:
+ node = dir.entries[norm_name]
+ except KeyError:
+ # If there's no Node on disk, we'll filter
+ # out the returned None below.
+ if must_exist:
+ n = dir.node_on_disk(name, clazz)
+ else:
+ n = self._doLookup(clazz, name, dir)
+ dir.srcdir_duplicate(name, clazz)
+ result.append(n)
else:
- name, d = self.__transformPath(path, cwd)
- n = self._doLookup(clazz, name, d)
- if not must_exist or n.exists():
- ret.append(n)
- if isinstance(n, Dir):
- # If this node is a directory, then any repositories
- # attached to this node can be repository paths.
- ret.extend(filter(lambda x, me=must_exist, clazz=clazz: isinstance(x, clazz) and (not me or x.exists()),
- n.getRepositories()))
-
- d = n.get_dir()
- name = n.name
- # Search repositories of all directories that this file
- # is under.
- while d:
- for rep in d.getRepositories():
- try:
- rnode = self._doLookup(clazz, name, rep)
- # Only find the node if it exists (or
- # must_exist is zero) and it is not a
- # derived file. If for some reason, we
- # are explicitly building a file IN a
- # Repository, we don't want it to show up in
- # the build tree. This is usually the case
- # with BuildDir(). We only want to find
- # pre-existing files.
- if (not must_exist or rnode.exists()) and \
- (not rnode.is_derived() or isinstance(rnode, Dir)):
- ret.append(rnode)
- except TypeError:
- pass # Wrong type of node.
- # Prepend directory name
- name = d.name + os.sep + name
- # Go up one directory
- d = d.get_dir()
- return ret
+ if not must_exist or node.exists():
+ result.append(node)
+ if isinstance(node, Dir):
+ result.extend(filter(select, node.getRepositories()))
+ if node:
+ dir = node.get_dir()
+ fname = '.'
+ while dir:
+ for rep in dir.getRepositories():
+ rdir = rep.Dir(fname)
+ try:
+ node = rdir.entries[norm_name]
+ except KeyError:
+ # If there's no Node on disk, we'll filter
+ # out the returned None below.
+ if must_exist:
+ n = rdir.node_on_disk(name, clazz)
+ else:
+ n = self._doLookup(clazz, name, rdir)
+ rdir.srcdir_duplicate(name, clazz)
+ result.append(n)
+ else:
+ if (not must_exist or node.exists()) and \
+ (isinstance(node, Dir) or not node.is_derived()):
+ result.append(node)
+ fname = dir.name + os.sep + fname
+ dir = dir.get_dir()
+
+ return filter(None, result)
def CacheDir(self, path):
self.CachePath = path
@@ -1355,6 +1373,34 @@ class Dir(Base):
sccspath = 'SCCS' + os.sep + 's.'+name
return self.entry_exists_on_disk(sccspath)
+ def srcdir_duplicate(self, name, clazz):
+ dname = '.'
+ dir = self
+ while dir:
+ if dir.srcdir:
+ srcdir = dir.srcdir.Dir(dname)
+ if srcdir.entry_exists_on_disk(name):
+ srcnode = self.fs._doLookup(clazz, name, srcdir)
+ if self.duplicate:
+ node = self.fs._doLookup(clazz, name, self)
+ node.do_duplicate(srcnode)
+ return node
+ else:
+ return srcnode
+ dname = dir.name + os.sep + dname
+ dir = dir.get_dir()
+ return None
+
+ def node_on_disk(self, name, clazz):
+ if self.entry_exists_on_disk(name) or \
+ self.sccs_on_disk(name) or \
+ self.rcs_on_disk(name):
+ try:
+ return self.fs._doLookup(clazz, name, self)
+ except TypeError:
+ pass
+ return self.srcdir_duplicate(name, clazz)
+
class RootDir(Dir):
"""A class for the root directory of a file system.
@@ -1811,27 +1857,48 @@ def find_file(filename, paths, node_factory=default_fs.File, verbose=None):
else:
verbose = lambda x: x
- retval = None
+ filedir, filename = os.path.split(filename)
+ if filedir:
+ lookup_dir = lambda d, fd=filedir: d.Dir(fd)
+ else:
+ lookup_dir = lambda d: d
if callable(paths):
paths = paths()
- for dir in paths:
- verbose("looking for '%s' in '%s' ...\n" % (filename, dir))
- try:
- node = node_factory(filename, dir)
- # Return true if the node exists or is a derived node.
+ # Give Entries a chance to morph into Dirs.
+ paths = map(lambda p: p.must_be_a_Dir(), paths)
+
+ for pathdir in paths:
+ verbose("looking for '%s' in '%s' ...\n" % (filename, pathdir))
+ dir = lookup_dir(pathdir)
+ def func(node):
if node.is_derived() or \
node.is_pseudo_derived() or \
(isinstance(node, SCons.Node.FS.Base) and node.exists()):
- retval = node
- verbose("... FOUND '%s' in '%s'\n" % (filename, dir))
- break
- except TypeError:
- # If we find a directory instead of a file, we don't care
- pass
+ return node
+ return None
+
+ node = default_fs.do_Rsearch(filename, func, File, dir, verbose)
+ if node:
+ return node
- return retval
+ dirname = '.'
+ while dir:
+ if dir.srcdir:
+ d = dir.srcdir.Dir(dirname)
+ if d.is_under(dir):
+ # Shouldn't source from something in the build path:
+ # build_dir is probably under src_dir, in which case
+ # we are reflecting.
+ break
+ node = dir.fs.do_Rsearch(filename, func, File, d, verbose)
+ if node:
+ return File(filename, dir.Dir(dirname), dir.fs)
+ dirname = dir.name + os.sep + dirname
+ dir = dir.get_dir()
+
+ return None
def find_files(filenames, paths, node_factory = default_fs.File):
"""
diff --git a/src/engine/SCons/Node/FSTests.py b/src/engine/SCons/Node/FSTests.py
index 9e9626a..2846f64 100644
--- a/src/engine/SCons/Node/FSTests.py
+++ b/src/engine/SCons/Node/FSTests.py
@@ -408,8 +408,7 @@ class BuildDirTestCase(unittest.TestCase):
fs.BuildDir('build/var3', 'src', duplicate=0)
d1 = fs.Dir('build/var3')
r = d1.rdir()
- s = fs.Dir('src')
- assert r == s, "%s != %s" % (r, s)
+ assert r == d1, "%s != %s" % (r, d1)
# verify the link creation attempts in file_link()
class LinkSimulator :
@@ -542,6 +541,8 @@ class BuildDirTestCase(unittest.TestCase):
'work/src/b1/b2/f' : 'work/src/f',
'work/src/b1/b2/b1' : 'work/src/b1/',
'work/src/b1/b2/b1/f' : 'work/src/b1/f',
+ 'work/src/b1/b2/b1/b2' : 'work/src/b1/b2',
+ 'work/src/b1/b2/b1/b2/f' : 'work/src/b1/b2/f',
}
alter_map = {
@@ -1328,18 +1329,18 @@ class RepositoryTestCase(unittest.TestCase):
list = fs.Rsearchall('#d2')
assert list == [], list
- test.subdir(['work', 'd2'])
fs.File('d2').built() # Clear exists cache
+ test.subdir(['work', 'd2'])
list = fs.Rsearchall('d2')
assert map(str, list) == ['d2'], list
- test.subdir(['rep2', 'd2'])
fs.File('../rep2/d2').built() # Clear exists cache
+ test.subdir(['rep2', 'd2'])
list = fs.Rsearchall('d2')
assert map(str, list) == ['d2', test.workpath('rep2', 'd2')], list
- test.subdir(['rep1', 'd2'])
fs.File('../rep1/d2').built() # Clear exists cache
+ test.subdir(['rep1', 'd2'])
list = fs.Rsearchall('d2')
assert map(str, list) == ['d2',
test.workpath('rep1', 'd2'),
@@ -1348,13 +1349,13 @@ class RepositoryTestCase(unittest.TestCase):
list = fs.Rsearchall(['d3', 'd4'])
assert list == [], list
- test.subdir(['work', 'd3'])
fs.File('d3').built() # Clear exists cache
+ test.subdir(['work', 'd3'])
list = map(str, fs.Rsearchall(['d3', 'd4']))
assert list == ['d3'], list
- test.subdir(['rep3', 'd4'])
fs.File('../rep3/d4').built() # Clear exists cache
+ test.subdir(['rep3', 'd4'])
list = map(str, fs.Rsearchall(['d3', 'd4']))
assert list == ['d3', test.workpath('rep3', 'd4')], list
@@ -1425,6 +1426,8 @@ class find_fileTestCase(unittest.TestCase):
"""Testing find_file function"""
test = TestCmd(workdir = '')
test.write('./foo', 'Some file\n')
+ test.subdir('bar')
+ test.write(['bar', 'on_disk'], 'Another file\n')
fs = SCons.Node.FS.FS(test.workpath(""))
os.chdir(test.workpath("")) # FS doesn't like the cwd to be something other than it's root
node_derived = fs.File(test.workpath('bar/baz'))
@@ -1461,6 +1464,15 @@ class find_fileTestCase(unittest.TestCase):
" find_file: ... FOUND 'baz' in 'bar'\n"
c = sio.getvalue()
assert c == expect, c
+
+ sio = StringIO.StringIO()
+ sys.stdout = sio
+ SCons.Node.FS.find_file('on_disk', paths, fs.File, verbose=1)
+ expect = " find_file: looking for 'on_disk' in '.' ...\n" + \
+ " find_file: looking for 'on_disk' in 'bar' ...\n" + \
+ " find_file: ... FOUND 'on_disk' in 'bar'\n"
+ c = sio.getvalue()
+ assert c == expect, c
finally:
sys.stdout = save_sys_stdout
diff --git a/src/engine/SCons/Scanner/__init__.py b/src/engine/SCons/Scanner/__init__.py
index c7cf382..3f7ead4 100644
--- a/src/engine/SCons/Scanner/__init__.py
+++ b/src/engine/SCons/Scanner/__init__.py
@@ -323,7 +323,7 @@ class Classic(Current):
if callable(path): path = path()
n = SCons.Node.FS.find_file(include,
(source_dir,) + tuple(path),
- self.fs.File)
+ SCons.Node.FS.File)
return n, include
def sort_key(self, include):