1 /* exclude.c -- exclude file names
3 Copyright (C) 1992, 1993, 1994, 1997, 1999, 2000, 2001, 2002, 2003 Free
4 Software Foundation, Inc.
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; see the file COPYING.
18 If not, write to the Free Software Foundation,
19 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
21 /* Written by Paul Eggert <eggert@twinsun.com> */
45 # include <inttypes.h>
54 #include "unlocked-io.h"
58 # define SIZE_MAX ((size_t) -1)
61 /* Verify a requirement at compile-time (unlike assert, which is runtime). */
62 #define verify(name, assertion) struct name { char a[(assertion) ? 1 : -1]; }
64 /* Non-GNU systems lack these options, so we don't need to check them. */
66 # define FNM_CASEFOLD 0
68 #ifndef FNM_LEADING_DIR
69 # define FNM_LEADING_DIR 0
72 verify (EXCLUDE_macros_do_not_collide_with_FNM_macros
,
73 (((EXCLUDE_ANCHORED
| EXCLUDE_INCLUDE
| EXCLUDE_WILDCARDS
)
74 & (FNM_PATHNAME
| FNM_NOESCAPE
| FNM_PERIOD
| FNM_LEADING_DIR
78 /* An exclude pattern-options pair. The options are fnmatch options
79 ORed with EXCLUDE_* options. */
87 /* An exclude list, of pattern-options pairs. */
91 struct patopts
*exclude
;
96 /* Return a newly allocated and empty exclude list. */
101 struct exclude
*ex
= xmalloc (sizeof *ex
);
102 ex
->exclude_count
= 0;
103 ex
->exclude_alloc
= (1 << 6); /* This must be a power of 2. */
104 ex
->exclude
= xmalloc (ex
->exclude_alloc
* sizeof ex
->exclude
[0]);
108 /* Free the storage associated with an exclude list. */
111 free_exclude (struct exclude
*ex
)
117 /* Return zero if PATTERN matches F, obeying OPTIONS, except that
118 (unlike fnmatch) wildcards are disabled in PATTERN. */
121 fnmatch_no_wildcards (char const *pattern
, char const *f
, int options
)
123 if (! (options
& FNM_LEADING_DIR
))
124 return ((options
& FNM_CASEFOLD
)
125 ? strcasecmp (pattern
, f
)
126 : strcmp (pattern
, f
));
129 size_t patlen
= strlen (pattern
);
130 int r
= ((options
& FNM_CASEFOLD
)
131 ? strncasecmp (pattern
, f
, patlen
)
132 : strncmp (pattern
, f
, patlen
));
143 /* Return true if EX excludes F. */
146 excluded_filename (struct exclude
const *ex
, char const *f
)
148 size_t exclude_count
= ex
->exclude_count
;
150 /* If no options are given, the default is to include. */
151 if (exclude_count
== 0)
155 struct patopts
const *exclude
= ex
->exclude
;
158 /* Otherwise, the default is the opposite of the first option. */
159 bool excluded
= !! (exclude
[0].options
& EXCLUDE_INCLUDE
);
161 /* Scan through the options, seeing whether they change F from
162 excluded to included or vice versa. */
163 for (i
= 0; i
< exclude_count
; i
++)
165 char const *pattern
= exclude
[i
].pattern
;
166 int options
= exclude
[i
].options
;
167 if (excluded
== !! (options
& EXCLUDE_INCLUDE
))
169 int (*matcher
) (char const *, char const *, int) =
170 (options
& EXCLUDE_WILDCARDS
172 : fnmatch_no_wildcards
);
173 bool matched
= ((*matcher
) (pattern
, f
, options
) == 0);
176 if (! (options
& EXCLUDE_ANCHORED
))
177 for (p
= f
; *p
&& ! matched
; p
++)
178 if (*p
== '/' && p
[1] != '/')
179 matched
= ((*matcher
) (pattern
, p
+ 1, options
) == 0);
189 /* Append to EX the exclusion PATTERN with OPTIONS. */
192 add_exclude (struct exclude
*ex
, char const *pattern
, int options
)
194 struct patopts
*patopts
;
196 if (ex
->exclude_alloc
<= ex
->exclude_count
)
198 size_t s
= 2 * ex
->exclude_alloc
;
199 if (! (0 < s
&& s
<= SIZE_MAX
/ sizeof ex
->exclude
[0]))
201 ex
->exclude_alloc
= s
;
202 ex
->exclude
= xrealloc (ex
->exclude
, s
* sizeof ex
->exclude
[0]);
205 patopts
= &ex
->exclude
[ex
->exclude_count
++];
206 patopts
->pattern
= pattern
;
207 patopts
->options
= options
;
210 /* Use ADD_FUNC to append to EX the patterns in FILENAME, each with
211 OPTIONS. LINE_END terminates each pattern in the file. Return -1
212 on failure, 0 on success. */
215 add_exclude_file (void (*add_func
) (struct exclude
*, char const *, int),
216 struct exclude
*ex
, char const *filename
, int options
,
219 bool use_stdin
= filename
[0] == '-' && !filename
[1];
225 size_t buf_alloc
= (1 << 10); /* This must be a power of two. */
226 size_t buf_count
= 0;
232 else if (! (in
= fopen (filename
, "r")))
235 buf
= xmalloc (buf_alloc
);
237 while ((c
= getc (in
)) != EOF
)
239 buf
[buf_count
++] = c
;
240 if (buf_count
== buf_alloc
)
245 buf
= xrealloc (buf
, buf_alloc
);
252 if (!use_stdin
&& fclose (in
) != 0)
255 buf
= xrealloc (buf
, buf_count
+ 1);
257 for (pattern
= p
= buf
, lim
= buf
+ buf_count
; p
<= lim
; p
++)
258 if (p
< lim
? *p
== line_end
: buf
< p
&& p
[-1])
261 (*add_func
) (ex
, pattern
, options
);