Merge branch 'nd/retire-fnmatch'
authorJunio C Hamano <gitster@pobox.com>
Fri, 25 Jan 2013 20:34:55 +0000 (12:34 -0800)
committerJunio C Hamano <gitster@pobox.com>
Fri, 25 Jan 2013 20:34:55 +0000 (12:34 -0800)
Replace our use of fnmatch(3) with a more feature-rich wildmatch.
A handful patches at the bottom have been moved to nd/wildmatch to
graduate as part of that branch, before this series solidifies.

We may want to mark USE_WILDMATCH as an experimental curiosity a
bit more clearly (i.e. should not be enabled in production
environment, because it will make the behaviour between builds
unpredictable).

* nd/retire-fnmatch:
  Makefile: add USE_WILDMATCH to use wildmatch as fnmatch
  wildmatch: advance faster in <asterisk> + <literal> patterns
  wildmatch: make a special case for "*/" with FNM_PATHNAME
  test-wildmatch: add "perf" command to compare wildmatch and fnmatch
  wildmatch: support "no FNM_PATHNAME" mode
  wildmatch: make dowild() take arbitrary flags
  wildmatch: rename constants and update prototype

1  2 
Makefile
dir.c
git-compat-util.h

diff --cc Makefile
Simple merge
diff --cc dir.c
index cf1e6b0082381670809a4293c4a49cfef681d756,6ef03961f334462f4408825635cda29ffb48bd16..57394e452eb0de117b27f64804e529b617a6c7e0
--- 1/dir.c
--- 2/dir.c
+++ b/dir.c
@@@ -685,20 -595,16 +685,21 @@@ int match_pathname(const char *pathname
        }
  
        return wildmatch(pattern, name,
-                        ignore_case ? FNM_CASEFOLD : 0) == 0;
+                        WM_PATHNAME | (ignore_case ? WM_CASEFOLD : 0),
+                        NULL) == 0;
  }
  
 -/* Scan the list and let the last match determine the fate.
 - * Return 1 for exclude, 0 for include and -1 for undecided.
 +/*
 + * Scan the given exclude list in reverse to see whether pathname
 + * should be ignored.  The first match (i.e. the last on the list), if
 + * any, determines the fate.  Returns the exclude_list element which
 + * matched, or NULL for undecided.
   */
 -int excluded_from_list(const char *pathname,
 -                     int pathlen, const char *basename, int *dtype,
 -                     struct exclude_list *el)
 +static struct exclude *last_exclude_matching_from_list(const char *pathname,
 +                                                     int pathlen,
 +                                                     const char *basename,
 +                                                     int *dtype,
 +                                                     struct exclude_list *el)
  {
        int i;
  
Simple merge