Merge git://github.com/git-l10n/git-po
[git.git] / compat / fnmatch / fnmatch.c
blob5ef0685135662e3cefc80eed5c5ae030fe1a5d49
1 /* Copyright (C) 1991, 92, 93, 96, 97, 98, 99 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 This library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Library General Public License as
6 published by the Free Software Foundation; either version 2 of the
7 License, or (at your option) any later version.
9 This library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Library General Public License for more details.
14 You should have received a copy of the GNU Library General Public
15 License along with this library; see the file COPYING.LIB. If not,
16 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 Boston, MA 02111-1307, USA. */
19 #if HAVE_CONFIG_H
20 # include <config.h>
21 #endif
23 /* Enable GNU extensions in fnmatch.h. */
24 #ifndef _GNU_SOURCE
25 # define _GNU_SOURCE 1
26 #endif
28 #include <errno.h>
29 #include <fnmatch.h>
30 #include <ctype.h>
32 #if HAVE_STRING_H || defined _LIBC
33 # include <string.h>
34 #else
35 # include <strings.h>
36 #endif
38 #if defined STDC_HEADERS || defined _LIBC
39 # include <stdlib.h>
40 #endif
42 /* For platforms which support the ISO C amendment 1 functionality we
43 support user defined character classes. */
44 #if defined _LIBC || (defined HAVE_WCTYPE_H && defined HAVE_WCHAR_H)
45 /* Solaris 2.5 has a bug: <wchar.h> must be included before <wctype.h>. */
46 # include <wchar.h>
47 # include <wctype.h>
48 #endif
50 /* Comment out all this code if we are using the GNU C Library, and are not
51 actually compiling the library itself. This code is part of the GNU C
52 Library, but also included in many other GNU distributions. Compiling
53 and linking in this code is a waste when using the GNU C library
54 (especially if it is a shared library). Rather than having every GNU
55 program understand `configure --with-gnu-libc' and omit the object files,
56 it is simpler to just do this in the source for each such file. */
58 #if defined NO_FNMATCH || defined NO_FNMATCH_CASEFOLD || \
59 defined _LIBC || !defined __GNU_LIBRARY__
62 # if defined STDC_HEADERS || !defined isascii
63 # define ISASCII(c) 1
64 # else
65 # define ISASCII(c) isascii(c)
66 # endif
68 # ifdef isblank
69 # define ISBLANK(c) (ISASCII (c) && isblank (c))
70 # else
71 # define ISBLANK(c) ((c) == ' ' || (c) == '\t')
72 # endif
73 # ifdef isgraph
74 # define ISGRAPH(c) (ISASCII (c) && isgraph (c))
75 # else
76 # define ISGRAPH(c) (ISASCII (c) && isprint (c) && !isspace (c))
77 # endif
79 # define ISPRINT(c) (ISASCII (c) && isprint (c))
80 # define ISDIGIT(c) (ISASCII (c) && isdigit (c))
81 # define ISALNUM(c) (ISASCII (c) && isalnum (c))
82 # define ISALPHA(c) (ISASCII (c) && isalpha (c))
83 # define ISCNTRL(c) (ISASCII (c) && iscntrl (c))
84 # define ISLOWER(c) (ISASCII (c) && islower (c))
85 # define ISPUNCT(c) (ISASCII (c) && ispunct (c))
86 # define ISSPACE(c) (ISASCII (c) && isspace (c))
87 # define ISUPPER(c) (ISASCII (c) && isupper (c))
88 # define ISXDIGIT(c) (ISASCII (c) && isxdigit (c))
90 # define STREQ(s1, s2) ((strcmp (s1, s2) == 0))
92 # if defined _LIBC || (defined HAVE_WCTYPE_H && defined HAVE_WCHAR_H)
93 /* The GNU C library provides support for user-defined character classes
94 and the functions from ISO C amendment 1. */
95 # ifdef CHARCLASS_NAME_MAX
96 # define CHAR_CLASS_MAX_LENGTH CHARCLASS_NAME_MAX
97 # else
98 /* This shouldn't happen but some implementation might still have this
99 problem. Use a reasonable default value. */
100 # define CHAR_CLASS_MAX_LENGTH 256
101 # endif
103 # ifdef _LIBC
104 # define IS_CHAR_CLASS(string) __wctype (string)
105 # else
106 # define IS_CHAR_CLASS(string) wctype (string)
107 # endif
108 # else
109 # define CHAR_CLASS_MAX_LENGTH 6 /* Namely, `xdigit'. */
111 # define IS_CHAR_CLASS(string) \
112 (STREQ (string, "alpha") || STREQ (string, "upper") \
113 || STREQ (string, "lower") || STREQ (string, "digit") \
114 || STREQ (string, "alnum") || STREQ (string, "xdigit") \
115 || STREQ (string, "space") || STREQ (string, "print") \
116 || STREQ (string, "punct") || STREQ (string, "graph") \
117 || STREQ (string, "cntrl") || STREQ (string, "blank"))
118 # endif
120 /* Avoid depending on library functions or files
121 whose names are inconsistent. */
123 # if !defined _LIBC && !defined getenv
124 extern char *getenv ();
125 # endif
127 # ifndef errno
128 extern int errno;
129 # endif
131 # ifndef NULL
132 # define NULL 0
133 # endif
135 /* This function doesn't exist on most systems. */
137 # if !defined HAVE___STRCHRNUL && !defined _LIBC
138 static char *
139 __strchrnul (const char *s, int c)
143 char *result = strchr (s, c);
144 if (result == NULL)
145 result = strchr (s, '\0');
146 return result;
148 # endif
150 # ifndef internal_function
151 /* Inside GNU libc we mark some function in a special way. In other
152 environments simply ignore the marking. */
153 # define internal_function
154 # endif
156 /* Match STRING against the filename pattern PATTERN, returning zero if
157 it matches, nonzero if not. */
158 static int internal_fnmatch __P ((const char *pattern, const char *string,
159 int no_leading_period, int flags))
160 internal_function;
161 static int
162 internal_function
163 internal_fnmatch (const char *pattern, const char *string, int no_leading_period, int flags)
169 register const char *p = pattern, *n = string;
170 register unsigned char c;
172 /* Note that this evaluates C many times. */
173 # ifdef _LIBC
174 # define FOLD(c) ((flags & FNM_CASEFOLD) ? tolower (c) : (c))
175 # else
176 # define FOLD(c) ((flags & FNM_CASEFOLD) && ISUPPER (c) ? tolower (c) : (c))
177 # endif
179 while ((c = *p++) != '\0')
181 c = FOLD (c);
183 switch (c)
185 case '?':
186 if (*n == '\0')
187 return FNM_NOMATCH;
188 else if (*n == '/' && (flags & FNM_FILE_NAME))
189 return FNM_NOMATCH;
190 else if (*n == '.' && no_leading_period
191 && (n == string
192 || (n[-1] == '/' && (flags & FNM_FILE_NAME))))
193 return FNM_NOMATCH;
194 break;
196 case '\\':
197 if (!(flags & FNM_NOESCAPE))
199 c = *p++;
200 if (c == '\0')
201 /* Trailing \ loses. */
202 return FNM_NOMATCH;
203 c = FOLD (c);
205 if (FOLD ((unsigned char) *n) != c)
206 return FNM_NOMATCH;
207 break;
209 case '*':
210 if (*n == '.' && no_leading_period
211 && (n == string
212 || (n[-1] == '/' && (flags & FNM_FILE_NAME))))
213 return FNM_NOMATCH;
215 for (c = *p++; c == '?' || c == '*'; c = *p++)
217 if (*n == '/' && (flags & FNM_FILE_NAME))
218 /* A slash does not match a wildcard under FNM_FILE_NAME. */
219 return FNM_NOMATCH;
220 else if (c == '?')
222 /* A ? needs to match one character. */
223 if (*n == '\0')
224 /* There isn't another character; no match. */
225 return FNM_NOMATCH;
226 else
227 /* One character of the string is consumed in matching
228 this ? wildcard, so *??? won't match if there are
229 less than three characters. */
230 ++n;
234 if (c == '\0')
235 /* The wildcard(s) is/are the last element of the pattern.
236 If the name is a file name and contains another slash
237 this does mean it cannot match. */
238 return ((flags & FNM_FILE_NAME) && strchr (n, '/') != NULL
239 ? FNM_NOMATCH : 0);
240 else
242 const char *endp;
244 endp = __strchrnul (n, (flags & FNM_FILE_NAME) ? '/' : '\0');
246 if (c == '[')
248 int flags2 = ((flags & FNM_FILE_NAME)
249 ? flags : (flags & ~FNM_PERIOD));
251 for (--p; n < endp; ++n)
252 if (internal_fnmatch (p, n,
253 (no_leading_period
254 && (n == string
255 || (n[-1] == '/'
256 && (flags
257 & FNM_FILE_NAME)))),
258 flags2)
259 == 0)
260 return 0;
262 else if (c == '/' && (flags & FNM_FILE_NAME))
264 while (*n != '\0' && *n != '/')
265 ++n;
266 if (*n == '/'
267 && (internal_fnmatch (p, n + 1, flags & FNM_PERIOD,
268 flags) == 0))
269 return 0;
271 else
273 int flags2 = ((flags & FNM_FILE_NAME)
274 ? flags : (flags & ~FNM_PERIOD));
276 if (c == '\\' && !(flags & FNM_NOESCAPE))
277 c = *p;
278 c = FOLD (c);
279 for (--p; n < endp; ++n)
280 if (FOLD ((unsigned char) *n) == c
281 && (internal_fnmatch (p, n,
282 (no_leading_period
283 && (n == string
284 || (n[-1] == '/'
285 && (flags
286 & FNM_FILE_NAME)))),
287 flags2) == 0))
288 return 0;
292 /* If we come here no match is possible with the wildcard. */
293 return FNM_NOMATCH;
295 case '[':
297 /* Nonzero if the sense of the character class is inverted. */
298 static int posixly_correct;
299 register int not;
300 char cold;
302 if (posixly_correct == 0)
303 posixly_correct = getenv ("POSIXLY_CORRECT") != NULL ? 1 : -1;
305 if (*n == '\0')
306 return FNM_NOMATCH;
308 if (*n == '.' && no_leading_period && (n == string
309 || (n[-1] == '/'
310 && (flags
311 & FNM_FILE_NAME))))
312 return FNM_NOMATCH;
314 if (*n == '/' && (flags & FNM_FILE_NAME))
315 /* `/' cannot be matched. */
316 return FNM_NOMATCH;
318 not = (*p == '!' || (posixly_correct < 0 && *p == '^'));
319 if (not)
320 ++p;
322 c = *p++;
323 for (;;)
325 unsigned char fn = FOLD ((unsigned char) *n);
327 if (!(flags & FNM_NOESCAPE) && c == '\\')
329 if (*p == '\0')
330 return FNM_NOMATCH;
331 c = FOLD ((unsigned char) *p);
332 ++p;
334 if (c == fn)
335 goto matched;
337 else if (c == '[' && *p == ':')
339 /* Leave room for the null. */
340 char str[CHAR_CLASS_MAX_LENGTH + 1];
341 size_t c1 = 0;
342 # if defined _LIBC || (defined HAVE_WCTYPE_H && defined HAVE_WCHAR_H)
343 wctype_t wt;
344 # endif
345 const char *startp = p;
347 for (;;)
349 if (c1 > CHAR_CLASS_MAX_LENGTH)
350 /* The name is too long and therefore the pattern
351 is ill-formed. */
352 return FNM_NOMATCH;
354 c = *++p;
355 if (c == ':' && p[1] == ']')
357 p += 2;
358 break;
360 if (c < 'a' || c >= 'z')
362 /* This cannot possibly be a character class name.
363 Match it as a normal range. */
364 p = startp;
365 c = '[';
366 goto normal_bracket;
368 str[c1++] = c;
370 str[c1] = '\0';
372 # if defined _LIBC || (defined HAVE_WCTYPE_H && defined HAVE_WCHAR_H)
373 wt = IS_CHAR_CLASS (str);
374 if (wt == 0)
375 /* Invalid character class name. */
376 return FNM_NOMATCH;
378 if (__iswctype (__btowc ((unsigned char) *n), wt))
379 goto matched;
380 # else
381 if ((STREQ (str, "alnum") && ISALNUM ((unsigned char) *n))
382 || (STREQ (str, "alpha") && ISALPHA ((unsigned char) *n))
383 || (STREQ (str, "blank") && ISBLANK ((unsigned char) *n))
384 || (STREQ (str, "cntrl") && ISCNTRL ((unsigned char) *n))
385 || (STREQ (str, "digit") && ISDIGIT ((unsigned char) *n))
386 || (STREQ (str, "graph") && ISGRAPH ((unsigned char) *n))
387 || (STREQ (str, "lower") && ISLOWER ((unsigned char) *n))
388 || (STREQ (str, "print") && ISPRINT ((unsigned char) *n))
389 || (STREQ (str, "punct") && ISPUNCT ((unsigned char) *n))
390 || (STREQ (str, "space") && ISSPACE ((unsigned char) *n))
391 || (STREQ (str, "upper") && ISUPPER ((unsigned char) *n))
392 || (STREQ (str, "xdigit") && ISXDIGIT ((unsigned char) *n)))
393 goto matched;
394 # endif
396 else if (c == '\0')
397 /* [ (unterminated) loses. */
398 return FNM_NOMATCH;
399 else
401 normal_bracket:
402 if (FOLD (c) == fn)
403 goto matched;
405 cold = c;
406 c = *p++;
408 if (c == '-' && *p != ']')
410 /* It is a range. */
411 unsigned char cend = *p++;
412 if (!(flags & FNM_NOESCAPE) && cend == '\\')
413 cend = *p++;
414 if (cend == '\0')
415 return FNM_NOMATCH;
417 if (cold <= fn && fn <= FOLD (cend))
418 goto matched;
420 c = *p++;
424 if (c == ']')
425 break;
428 if (!not)
429 return FNM_NOMATCH;
430 break;
432 matched:
433 /* Skip the rest of the [...] that already matched. */
434 while (c != ']')
436 if (c == '\0')
437 /* [... (unterminated) loses. */
438 return FNM_NOMATCH;
440 c = *p++;
441 if (!(flags & FNM_NOESCAPE) && c == '\\')
443 if (*p == '\0')
444 return FNM_NOMATCH;
445 /* XXX 1003.2d11 is unclear if this is right. */
446 ++p;
448 else if (c == '[' && *p == ':')
451 if (*++p == '\0')
452 return FNM_NOMATCH;
453 while (*p != ':' || p[1] == ']');
454 p += 2;
455 c = *p;
458 if (not)
459 return FNM_NOMATCH;
461 break;
463 default:
464 if (c != FOLD ((unsigned char) *n))
465 return FNM_NOMATCH;
468 ++n;
471 if (*n == '\0')
472 return 0;
474 if ((flags & FNM_LEADING_DIR) && *n == '/')
475 /* The FNM_LEADING_DIR flag says that "foo*" matches "foobar/frobozz". */
476 return 0;
478 return FNM_NOMATCH;
480 # undef FOLD
485 fnmatch (const char *pattern, const char *string, int flags)
490 return internal_fnmatch (pattern, string, flags & FNM_PERIOD, flags);
493 #endif /* _LIBC or not __GNU_LIBRARY__. */