From bcb7e37261cb4ff621191b7fa1b0472bddc57272 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Fri, 19 Dec 2003 12:53:40 +0000 Subject: . --- lib/ChangeLog | 39 +++++++++++++++++++++++++++++++++++++++ lib/Makefile.in | 3 --- src/Makefile.in | 2 +- 3 files changed, 40 insertions(+), 4 deletions(-) diff --git a/lib/ChangeLog b/lib/ChangeLog index 96f3c2c34..00307dd40 100644 --- a/lib/ChangeLog +++ b/lib/ChangeLog @@ -1,3 +1,42 @@ +2003-12-19 Jim Meyering + + Rewrite fts to use a hash table or O(1)-mem cycle-detection + code rather than the tree-based tsearch functions. + * fts_.h: Include hash.h and cycle-check.h. + (FTS_TIGHT_CYCLE_CHECK): New value. + (FTS_OPTIONMASK): Adjust to include the new value. + (FTS_NAMEONLY, FTS_STOP): Increase to allow room for new value. + (struct FTS) [active_dir_ht]: New member. Replaces fts_dir_signatures. + (struct FTS) [cycle_state]: New member. + * fts.c: Don't include . + [HAVE_INTTYPES_H]: Include . + (tdestroy, tfind, tsearch): Remove definitions. + (struct Active_dir): Rename from `known_object'. + (AD_compare, AD_hash): New functions. + (enter_dir, leave_dir): Rewrite to manipulate a hash table + rather than a tree. + (fts_open): Initialize hash table or cycle_state buffer. + (free_node): Remove function. + (find_matching_ancestor): Renamed/rewritten from look_up_active_dir. + (fts_cross_check): Adapt to use new data structure. + + * Makefile.am (libfetish_a_SOURCES): Remove search_.h. + (DISTCLEANFILES): Remove definition. + +2003-12-18 Jim Meyering + + Rewrite cycle detection code to work properly. + Add some framework (compiled out by default) to test it. + * fts.c (Dprintf, ENTER_DIR, LEAVE_DIR): Define. + (add_object): Remove function. Rewritten as... + (enter_dir): New function. + (leave_dir, free_node): New functions. + (fts_read): Ensure that we call ENTER_DIR or LEAVE_DIR, + as appropriate, before returning. + (look_up_active_dir, fts_cross_check) [FTS_DEBUG]: New functions. + (fts_stat): Don't perform the cycle check here. + Now it's done via enter_dir. + 2003-12-12 Jim Meyering * fts_.h (FTS) [fts_dir_signatures]: Add comment. diff --git a/lib/Makefile.in b/lib/Makefile.in index 71c6039ab..032c95c67 100644 --- a/lib/Makefile.in +++ b/lib/Makefile.in @@ -478,7 +478,6 @@ libfetish_a_SOURCES = \ same.c same.h \ save-cwd.c save-cwd.h \ savedir.c savedir.h \ - search_.h \ settime.c \ sha1.c sha1.h \ sig2str.h \ @@ -531,7 +530,6 @@ EXTRA_DIST = config.charset ref-add.sin ref-del.sin \ stdbool_.h alloca_.h fnmatch_.h fnmatch_loop.c charset_alias = $(DESTDIR)$(libdir)/charset.alias charset_tmp = $(DESTDIR)$(libdir)/charset.tmp -DISTCLEANFILES = ftw.h search.h all: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) all-am @@ -876,7 +874,6 @@ clean-generic: distclean-generic: -rm -f $(CONFIG_CLEAN_FILES) - -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" diff --git a/src/Makefile.in b/src/Makefile.in index fab1e517c..419521d2f 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -974,7 +974,7 @@ uninstall-binPROGRAMS: done clean-binPROGRAMS: - -test -z "$(bin_PROGRAMS)" || rm -f $(bin_PROGRAMS) + -test -z "$(bin_PROGRAMS)" || rm -f $(bin_PROGRAMS) > /dev/null 2>&1 || /bin/rm -f $(bin_PROGRAMS) installcheck-binPROGRAMS: $(bin_PROGRAMS) bad=0; pid=$$$$; list="$(bin_PROGRAMS)"; for p in $$list; do \ -- cgit v1.2.3-54-g00ecf