Skip to content

Commit

Permalink
wildmatch: make wildmatch's return value compatible with fnmatch
Browse files Browse the repository at this point in the history
wildmatch returns non-zero if matched, zero otherwise. This patch
makes it return zero if matches, non-zero otherwise, like fnmatch().

Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
Nguyễn Thái Ngọc Duy authored and Junio C Hamano committed Oct 15, 2012
1 parent f1cf7b7 commit 3ae5396
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 11 deletions.
4 changes: 2 additions & 2 deletions test-wildmatch.c
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
int main(int argc, char **argv)
{
if (!strcmp(argv[1], "wildmatch"))
return wildmatch(argv[3], argv[2]) ? 0 : 1;
return !!wildmatch(argv[3], argv[2]);
else if (!strcmp(argv[1], "iwildmatch"))
return iwildmatch(argv[3], argv[2]) ? 0 : 1;
return !!iwildmatch(argv[3], argv[2]);
else if (!strcmp(argv[1], "fnmatch"))
return !!fnmatch(argv[3], argv[2], FNM_PATHNAME);
else
Expand Down
21 changes: 12 additions & 9 deletions wildmatch.c
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ typedef unsigned char uchar;

#define FALSE 0
#define TRUE 1

#define NOMATCH 1
#define MATCH 0
#define ABORT_ALL -1
#define ABORT_TO_STARSTAR -2

Expand Down Expand Up @@ -78,12 +81,12 @@ static int dowild(const uchar *p, const uchar *text)
/* FALLTHROUGH */
default:
if (t_ch != p_ch)
return FALSE;
return NOMATCH;
continue;
case '?':
/* Match anything but '/'. */
if (t_ch == '/')
return FALSE;
return NOMATCH;
continue;
case '*':
if (*++p == '*') {
Expand All @@ -96,14 +99,14 @@ static int dowild(const uchar *p, const uchar *text)
* only if there are no more slash characters. */
if (!special) {
if (strchr((char*)text, '/') != NULL)
return FALSE;
return NOMATCH;
}
return TRUE;
return MATCH;
}
while (1) {
if (t_ch == '\0')
break;
if ((matched = dowild(p, text)) != FALSE) {
if ((matched = dowild(p, text)) != NOMATCH) {
if (!special || matched != ABORT_TO_STARSTAR)
return matched;
} else if (!special && t_ch == '/')
Expand Down Expand Up @@ -202,26 +205,26 @@ static int dowild(const uchar *p, const uchar *text)
matched = TRUE;
} while (prev_ch = p_ch, (p_ch = *++p) != ']');
if (matched == special || t_ch == '/')
return FALSE;
return NOMATCH;
continue;
}
}

return *text ? FALSE : TRUE;
return *text ? NOMATCH : MATCH;
}

/* Match the "pattern" against the "text" string. */
int wildmatch(const char *pattern, const char *text)
{
return dowild((const uchar*)pattern, (const uchar*)text) == TRUE;
return dowild((const uchar*)pattern, (const uchar*)text);
}

/* Match the "pattern" against the forced-to-lower-case "text" string. */
int iwildmatch(const char *pattern, const char *text)
{
int ret;
force_lower_case = 1;
ret = dowild((const uchar*)pattern, (const uchar*)text) == TRUE;
ret = dowild((const uchar*)pattern, (const uchar*)text);
force_lower_case = 0;
return ret;
}

0 comments on commit 3ae5396

Please sign in to comment.