1 /* Copyright (C) 1991-1993, 1996-1999, 2000 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. */
23 /* Enable GNU extensions in fnmatch.h. */
25 # define _GNU_SOURCE 1
33 #if HAVE_STRING_H || defined _LIBC
39 #if defined STDC_HEADERS || defined _LIBC
43 /* For platform which support the ISO C amendement 1 functionality we
44 support user defined character classes. */
45 #if defined _LIBC || (defined HAVE_WCTYPE_H && defined HAVE_WCHAR_H)
46 /* Solaris 2.5 has a bug: <wchar.h> must be included before <wctype.h>. */
51 /* We need some of the locale data (the collation sequence information)
52 but there is no interface to get this information in general. Therefore
53 we support a correct implementation only in glibc. */
55 # include "../locale/localeinfo.h"
57 # define CONCAT(a,b) __CONCAT(a,b)
60 /* Comment out all this code if we are using the GNU C Library, and are not
61 actually compiling the library itself. This code is part of the GNU C
62 Library, but also included in many other GNU distributions. Compiling
63 and linking in this code is a waste when using the GNU C library
64 (especially if it is a shared library). Rather than having every GNU
65 program understand `configure --with-gnu-libc' and omit the object files,
66 it is simpler to just do this in the source for each such file. */
68 #if defined _LIBC || !defined __GNU_LIBRARY__
71 # if defined STDC_HEADERS || !defined isascii
74 # define ISASCII(c) isascii(c)
78 # define ISBLANK(c) (ISASCII (c) && isblank (c))
80 # define ISBLANK(c) ((c) == ' ' || (c) == '\t')
83 # define ISGRAPH(c) (ISASCII (c) && isgraph (c))
85 # define ISGRAPH(c) (ISASCII (c) && isprint (c) && !isspace (c))
88 # define ISPRINT(c) (ISASCII (c) && isprint (c))
89 # define ISDIGIT(c) (ISASCII (c) && isdigit (c))
90 # define ISALNUM(c) (ISASCII (c) && isalnum (c))
91 # define ISALPHA(c) (ISASCII (c) && isalpha (c))
92 # define ISCNTRL(c) (ISASCII (c) && iscntrl (c))
93 # define ISLOWER(c) (ISASCII (c) && islower (c))
94 # define ISPUNCT(c) (ISASCII (c) && ispunct (c))
95 # define ISSPACE(c) (ISASCII (c) && isspace (c))
96 # define ISUPPER(c) (ISASCII (c) && isupper (c))
97 # define ISXDIGIT(c) (ISASCII (c) && isxdigit (c))
99 # define STREQ(s1, s2) ((strcmp (s1, s2) == 0))
101 # if defined _LIBC || (defined HAVE_WCTYPE_H && defined HAVE_WCHAR_H)
102 /* The GNU C library provides support for user-defined character classes
103 and the functions from ISO C amendement 1. */
104 # ifdef CHARCLASS_NAME_MAX
105 # define CHAR_CLASS_MAX_LENGTH CHARCLASS_NAME_MAX
107 /* This shouldn't happen but some implementation might still have this
108 problem. Use a reasonable default value. */
109 # define CHAR_CLASS_MAX_LENGTH 256
113 # define IS_CHAR_CLASS(string) __wctype (string)
115 # define IS_CHAR_CLASS(string) wctype (string)
119 # define ISWCTYPE(WC, WT) __iswctype (WC, WT)
121 # define ISWCTYPE(WC, WT) iswctype (WC, WT)
124 # if (HAVE_MBSTATE_T && HAVE_MBSRTOWCS) || _LIBC
125 /* In this case we are implementing the multibyte character handling. */
126 # define HANDLE_MULTIBYTE 1
130 # define CHAR_CLASS_MAX_LENGTH 6 /* Namely, `xdigit'. */
132 # define IS_CHAR_CLASS(string) \
133 (STREQ (string, "alpha") || STREQ (string, "upper") \
134 || STREQ (string, "lower") || STREQ (string, "digit") \
135 || STREQ (string, "alnum") || STREQ (string, "xdigit") \
136 || STREQ (string, "space") || STREQ (string, "print") \
137 || STREQ (string, "punct") || STREQ (string, "graph") \
138 || STREQ (string, "cntrl") || STREQ (string, "blank"))
141 /* Avoid depending on library functions or files
142 whose names are inconsistent. */
144 # if !defined _LIBC && !defined getenv
145 extern char *getenv ();
152 /* This function doesn't exist on most systems. */
154 # if !defined HAVE___STRCHRNUL && !defined _LIBC
160 char *result
= strchr (s
, c
);
162 result
= strchr (s
, '\0');
167 # if HANDLE_MULTIBYTE && !defined HAVE___STRCHRNUL && !defined _LIBC
173 wchar_t *result
= wcschr (s
, c
);
175 result
= wcschr (s
, '\0');
180 # ifndef internal_function
181 /* Inside GNU libc we mark some function in a special way. In other
182 environments simply ignore the marking. */
183 # define internal_function
186 /* Note that this evaluates C many times. */
188 # define FOLD(c) ((flags & FNM_CASEFOLD) ? tolower (c) : (c))
190 # define FOLD(c) ((flags & FNM_CASEFOLD) && ISUPPER (c) ? tolower (c) : (c))
193 # define UCHAR unsigned char
194 # define FCT internal_fnmatch
197 # define BTOWC(C) __btowc (C)
199 # define BTOWC(C) btowc (C)
201 # define STRCHR(S, C) strchr (S, C)
202 # define STRCHRNUL(S, C) __strchrnul (S, C)
203 # define STRCOLL(S1, S2) strcoll (S1, S2)
205 # include "fnmatch_loop.c"
208 # if HANDLE_MULTIBYTE
209 /* Note that this evaluates C many times. */
211 # define FOLD(c) ((flags & FNM_CASEFOLD) ? towlower (c) : (c))
213 # define FOLD(c) ((flags & FNM_CASEFOLD) && ISUPPER (c) ? towlower (c) : (c))
215 # define CHAR wchar_t
216 # define UCHAR wint_t
217 # define FCT internal_fnwmatch
219 # define BTOWC(C) (C)
220 # define STRCHR(S, C) wcschr (S, C)
221 # define STRCHRNUL(S, C) __wcschrnul (S, C)
222 # define STRCOLL(S1, S2) wcscoll (S1, S2)
224 # define WIDE_CHAR_VERSION 1
227 # undef IS_CHAR_CLASS
229 /* We have to convert the wide character string in a multibyte string. But
230 we know that the character class names are ASCII strings and since the
231 internal wide character encoding is UCS4 we can use a simplified method
232 to convert the string to a multibyte character string. */
234 is_char_class (const wchar_t *wcs
)
236 char s
[CHAR_CLASS_MAX_LENGTH
+ 1];
241 if (*wcs
< 0x20 || *wcs
>= 0x7f)
246 while (*wcs
++ != L
'\0');
251 /* Since we cannot assume anything about the internal encoding we have to
252 convert the string back to multibyte representation the hard way. */
254 is_char_class (const wchar_t *wcs
)
261 memset (&ps
, '\0', sizeof (ps
));
264 n
= wcsrtombs (NULL
, &pwc
, 0, &ps
);
265 if (n
== (size_t) -1)
266 /* Something went wrong. */
270 assert (mbsinit (&ps
));
272 (void) wcsrtombs (s
, &pwc
, n
+ 1, &ps
);
277 # define IS_CHAR_CLASS(string) is_char_class (string)
279 # include "fnmatch_loop.c"
283 fnmatch (pattern
, string
, flags
)
288 # if HANDLE_MULTIBYTE
295 /* This is an optimization for 8-bit character set. */
296 return internal_fnmatch (pattern
, string
, flags
& FNM_PERIOD
, flags
);
298 /* Convert the strings into wide characters. */
299 memset (&ps
, '\0', sizeof (ps
));
300 n
= mbsrtowcs (NULL
, &pattern
, 0, &ps
);
301 if (n
== (size_t) -1)
303 XXX Do we have to set `errno' to something which mbsrtows hasn't
306 wpattern
= (wchar_t *) alloca ((n
+ 1) * sizeof (wchar_t));
307 assert (mbsinit (&ps
));
308 (void) mbsrtowcs (wpattern
, &pattern
, n
+ 1, &ps
);
310 assert (mbsinit (&ps
));
311 n
= mbsrtowcs (NULL
, &string
, 0, &ps
);
312 if (n
== (size_t) -1)
314 XXX Do we have to set `errno' to something which mbsrtows hasn't
317 wstring
= (wchar_t *) alloca ((n
+ 1) * sizeof (wchar_t));
318 assert (mbsinit (&ps
));
319 (void) mbsrtowcs (wstring
, &string
, n
+ 1, &ps
);
321 return internal_fnwmatch (wpattern
, wstring
, flags
& FNM_PERIOD
, flags
);
323 return internal_fnmatch (pattern
, string
, flags
& FNM_PERIOD
, flags
);
324 # endif /* mbstate_t and mbsrtowcs or _LIBC. */
327 #endif /* _LIBC or not __GNU_LIBRARY__. */