]> git.ipfire.org Git - thirdparty/git.git/blame - attr.c
completion: consolidate test_completion*() tests
[thirdparty/git.git] / attr.c
CommitLineData
86ab7f0c
MH
1/*
2 * Handle git attributes. See gitattributes(5) for a description of
3 * the file syntax, and Documentation/technical/api-gitattributes.txt
4 * for a description of the API.
5 *
6 * One basic design decision here is that we are not going to support
7 * an insanely large number of attributes.
8 */
9
06f33c17 10#define NO_THE_INDEX_COMPATIBILITY_MACROS
d0bfd026 11#include "cache.h"
6df42ab9 12#include "exec_cmd.h"
d0bfd026 13#include "attr.h"
6eba6210 14#include "dir.h"
d0bfd026 15
a5e92abd
JH
16const char git_attr__true[] = "(builtin)true";
17const char git_attr__false[] = "\0(builtin)false";
18static const char git_attr__unknown[] = "(builtin)unknown";
19#define ATTR__TRUE git_attr__true
20#define ATTR__FALSE git_attr__false
21#define ATTR__UNSET NULL
22#define ATTR__UNKNOWN git_attr__unknown
515106fa 23
86ab7f0c 24/* This is a randomly chosen prime. */
d0bfd026
JH
25#define HASHSIZE 257
26
27#ifndef DEBUG_ATTR
28#define DEBUG_ATTR 0
29#endif
30
31struct git_attr {
32 struct git_attr *next;
33 unsigned h;
f48fd688 34 int attr_nr;
d0bfd026
JH
35 char name[FLEX_ARRAY];
36};
f48fd688 37static int attr_nr;
d0bfd026 38
f48fd688 39static struct git_attr_check *check_all_attr;
d0bfd026
JH
40static struct git_attr *(git_attr_hash[HASHSIZE]);
41
352404ac
MH
42char *git_attr_name(struct git_attr *attr)
43{
44 return attr->name;
45}
46
d0bfd026
JH
47static unsigned hash_name(const char *name, int namelen)
48{
48fb7deb 49 unsigned val = 0, c;
d0bfd026
JH
50
51 while (namelen--) {
52 c = *name++;
53 val = ((val << 7) | (val >> 22)) ^ c;
54 }
55 return val;
56}
57
e4aee10a
JH
58static int invalid_attr_name(const char *name, int namelen)
59{
60 /*
d42453ab
MH
61 * Attribute name cannot begin with '-' and must consist of
62 * characters from [-A-Za-z0-9_.].
e4aee10a 63 */
c0b13b21 64 if (namelen <= 0 || *name == '-')
e4aee10a
JH
65 return -1;
66 while (namelen--) {
67 char ch = *name++;
68 if (! (ch == '-' || ch == '.' || ch == '_' ||
69 ('0' <= ch && ch <= '9') ||
70 ('a' <= ch && ch <= 'z') ||
71 ('A' <= ch && ch <= 'Z')) )
72 return -1;
73 }
74 return 0;
75}
76
7fb0eaa2 77static struct git_attr *git_attr_internal(const char *name, int len)
d0bfd026
JH
78{
79 unsigned hval = hash_name(name, len);
80 unsigned pos = hval % HASHSIZE;
81 struct git_attr *a;
82
83 for (a = git_attr_hash[pos]; a; a = a->next) {
84 if (a->h == hval &&
85 !memcmp(a->name, name, len) && !a->name[len])
86 return a;
87 }
88
e4aee10a
JH
89 if (invalid_attr_name(name, len))
90 return NULL;
91
d0bfd026
JH
92 a = xmalloc(sizeof(*a) + len + 1);
93 memcpy(a->name, name, len);
94 a->name[len] = 0;
95 a->h = hval;
96 a->next = git_attr_hash[pos];
f48fd688 97 a->attr_nr = attr_nr++;
d0bfd026 98 git_attr_hash[pos] = a;
f48fd688
JH
99
100 check_all_attr = xrealloc(check_all_attr,
101 sizeof(*check_all_attr) * attr_nr);
102 check_all_attr[a->attr_nr].attr = a;
515106fa 103 check_all_attr[a->attr_nr].value = ATTR__UNKNOWN;
d0bfd026
JH
104 return a;
105}
106
7fb0eaa2
JH
107struct git_attr *git_attr(const char *name)
108{
109 return git_attr_internal(name, strlen(name));
110}
111
515106fa 112/* What does a matched pattern decide? */
d0bfd026 113struct attr_state {
d0bfd026 114 struct git_attr *attr;
a5e92abd 115 const char *setto;
d0bfd026
JH
116};
117
ba845b75
MH
118/*
119 * One rule, as from a .gitattributes file.
120 *
121 * If is_macro is true, then u.attr is a pointer to the git_attr being
122 * defined.
123 *
124 * If is_macro is false, then u.pattern points at the filename pattern
125 * to which the rule applies. (The memory pointed to is part of the
126 * memory block allocated for the match_attr instance.)
127 *
128 * In either case, num_attr is the number of attributes affected by
129 * this rule, and state is an array listing them. The attributes are
130 * listed as they appear in the file (macros unexpanded).
131 */
d0bfd026 132struct match_attr {
f48fd688
JH
133 union {
134 char *pattern;
135 struct git_attr *attr;
136 } u;
137 char is_macro;
d0bfd026
JH
138 unsigned num_attr;
139 struct attr_state state[FLEX_ARRAY];
140};
141
142static const char blank[] = " \t\r\n";
143
d1751298
MH
144/*
145 * Parse a whitespace-delimited attribute state (i.e., "attr",
146 * "-attr", "!attr", or "attr=value") from the string starting at src.
147 * If e is not NULL, write the results to *e. Return a pointer to the
148 * remainder of the string (with leading whitespace removed), or NULL
149 * if there was an error.
150 */
515106fa 151static const char *parse_attr(const char *src, int lineno, const char *cp,
d1751298 152 struct attr_state *e)
515106fa
JH
153{
154 const char *ep, *equals;
155 int len;
156
157 ep = cp + strcspn(cp, blank);
158 equals = strchr(cp, '=');
159 if (equals && ep < equals)
160 equals = NULL;
161 if (equals)
162 len = equals - cp;
163 else
164 len = ep - cp;
d1751298 165 if (!e) {
515106fa
JH
166 if (*cp == '-' || *cp == '!') {
167 cp++;
168 len--;
169 }
170 if (invalid_attr_name(cp, len)) {
171 fprintf(stderr,
172 "%.*s is not a valid attribute name: %s:%d\n",
173 len, cp, src, lineno);
174 return NULL;
175 }
176 } else {
515106fa
JH
177 if (*cp == '-' || *cp == '!') {
178 e->setto = (*cp == '-') ? ATTR__FALSE : ATTR__UNSET;
179 cp++;
180 len--;
181 }
182 else if (!equals)
183 e->setto = ATTR__TRUE;
184 else {
182af834 185 e->setto = xmemdupz(equals + 1, ep - equals - 1);
515106fa 186 }
7fb0eaa2 187 e->attr = git_attr_internal(cp, len);
515106fa 188 }
515106fa
JH
189 return ep + strspn(ep, blank);
190}
191
f48fd688
JH
192static struct match_attr *parse_attr_line(const char *line, const char *src,
193 int lineno, int macro_ok)
d0bfd026
JH
194{
195 int namelen;
d68e1c18 196 int num_attr, i;
85c4a0d0 197 const char *cp, *name, *states;
515106fa 198 struct match_attr *res = NULL;
f48fd688 199 int is_macro;
d0bfd026
JH
200
201 cp = line + strspn(line, blank);
202 if (!*cp || *cp == '#')
203 return NULL;
204 name = cp;
205 namelen = strcspn(name, blank);
f48fd688
JH
206 if (strlen(ATTRIBUTE_MACRO_PREFIX) < namelen &&
207 !prefixcmp(name, ATTRIBUTE_MACRO_PREFIX)) {
208 if (!macro_ok) {
209 fprintf(stderr, "%s not allowed: %s:%d\n",
210 name, src, lineno);
211 return NULL;
212 }
213 is_macro = 1;
214 name += strlen(ATTRIBUTE_MACRO_PREFIX);
215 name += strspn(name, blank);
216 namelen = strcspn(name, blank);
e4aee10a
JH
217 if (invalid_attr_name(name, namelen)) {
218 fprintf(stderr,
219 "%.*s is not a valid attribute name: %s:%d\n",
220 namelen, name, src, lineno);
221 return NULL;
222 }
f48fd688
JH
223 }
224 else
225 is_macro = 0;
d0bfd026 226
85c4a0d0
MH
227 states = name + namelen;
228 states += strspn(states, blank);
229
d68e1c18
MH
230 /* First pass to count the attr_states */
231 for (cp = states, num_attr = 0; *cp; num_attr++) {
232 cp = parse_attr(src, lineno, cp, NULL);
233 if (!cp)
234 return NULL;
d0bfd026 235 }
d68e1c18
MH
236
237 res = xcalloc(1,
238 sizeof(*res) +
239 sizeof(struct attr_state) * num_attr +
240 (is_macro ? 0 : namelen + 1));
241 if (is_macro)
242 res->u.attr = git_attr_internal(name, namelen);
243 else {
244 res->u.pattern = (char *)&(res->state[num_attr]);
245 memcpy(res->u.pattern, name, namelen);
246 res->u.pattern[namelen] = 0;
d0bfd026 247 }
d68e1c18
MH
248 res->is_macro = is_macro;
249 res->num_attr = num_attr;
250
251 /* Second pass to fill the attr_states */
252 for (cp = states, i = 0; *cp; i++) {
253 cp = parse_attr(src, lineno, cp, &(res->state[i]));
254 }
255
d0bfd026
JH
256 return res;
257}
258
259/*
260 * Like info/exclude and .gitignore, the attribute information can
261 * come from many places.
262 *
263 * (1) .gitattribute file of the same directory;
515106fa
JH
264 * (2) .gitattribute file of the parent directory if (1) does not have
265 * any match; this goes recursively upwards, just like .gitignore.
266 * (3) $GIT_DIR/info/attributes, which overrides both of the above.
d0bfd026
JH
267 *
268 * In the same file, later entries override the earlier match, so in the
269 * global list, we would have entries from info/attributes the earliest
270 * (reading the file from top to bottom), .gitattribute of the root
271 * directory (again, reading the file from top to bottom) down to the
272 * current directory, and then scan the list backwards to find the first match.
273 * This is exactly the same as what excluded() does in dir.c to deal with
274 * .gitignore
275 */
276
277static struct attr_stack {
278 struct attr_stack *prev;
279 char *origin;
cd6a0b26 280 size_t originlen;
d0bfd026 281 unsigned num_matches;
a4413118 282 unsigned alloc;
d0bfd026
JH
283 struct match_attr **attrs;
284} *attr_stack;
285
286static void free_attr_elem(struct attr_stack *e)
287{
288 int i;
289 free(e->origin);
515106fa
JH
290 for (i = 0; i < e->num_matches; i++) {
291 struct match_attr *a = e->attrs[i];
292 int j;
293 for (j = 0; j < a->num_attr; j++) {
a5e92abd 294 const char *setto = a->state[j].setto;
515106fa
JH
295 if (setto == ATTR__TRUE ||
296 setto == ATTR__FALSE ||
297 setto == ATTR__UNSET ||
298 setto == ATTR__UNKNOWN)
299 ;
300 else
4b25d091 301 free((char *) setto);
515106fa
JH
302 }
303 free(a);
304 }
37475f97 305 free(e->attrs);
d0bfd026
JH
306 free(e);
307}
308
309static const char *builtin_attr[] = {
155a4b71 310 "[attr]binary -diff -merge -text",
d0bfd026
JH
311 NULL,
312};
313
a4413118
JH
314static void handle_attr_line(struct attr_stack *res,
315 const char *line,
316 const char *src,
317 int lineno,
318 int macro_ok)
319{
320 struct match_attr *a;
321
322 a = parse_attr_line(line, src, lineno, macro_ok);
323 if (!a)
324 return;
325 if (res->alloc <= res->num_matches) {
326 res->alloc = alloc_nr(res->num_matches);
327 res->attrs = xrealloc(res->attrs,
328 sizeof(struct match_attr *) *
329 res->alloc);
330 }
331 res->attrs[res->num_matches++] = a;
332}
333
d0bfd026
JH
334static struct attr_stack *read_attr_from_array(const char **list)
335{
336 struct attr_stack *res;
337 const char *line;
f48fd688 338 int lineno = 0;
d0bfd026
JH
339
340 res = xcalloc(1, sizeof(*res));
a4413118
JH
341 while ((line = *(list++)) != NULL)
342 handle_attr_line(res, line, "[builtin]", ++lineno, 1);
d0bfd026
JH
343 return res;
344}
345
06f33c17
JH
346static enum git_attr_direction direction;
347static struct index_state *use_index;
348
f48fd688 349static struct attr_stack *read_attr_from_file(const char *path, int macro_ok)
d0bfd026 350{
a4413118 351 FILE *fp = fopen(path, "r");
d0bfd026
JH
352 struct attr_stack *res;
353 char buf[2048];
f48fd688 354 int lineno = 0;
d0bfd026 355
11e50b27 356 if (!fp) {
8e950dab 357 if (errno != ENOENT && errno != ENOTDIR)
55b38a48 358 warn_on_inaccessible(path);
a4413118 359 return NULL;
11e50b27 360 }
a4413118
JH
361 res = xcalloc(1, sizeof(*res));
362 while (fgets(buf, sizeof(buf), fp))
363 handle_attr_line(res, buf, path, ++lineno, macro_ok);
364 fclose(fp);
365 return res;
366}
d0bfd026 367
1a9d7e9b
JH
368static void *read_index_data(const char *path)
369{
370 int pos, len;
371 unsigned long sz;
372 enum object_type type;
373 void *data;
06f33c17 374 struct index_state *istate = use_index ? use_index : &the_index;
1a9d7e9b
JH
375
376 len = strlen(path);
06f33c17 377 pos = index_name_pos(istate, path, len);
1a9d7e9b
JH
378 if (pos < 0) {
379 /*
380 * We might be in the middle of a merge, in which
381 * case we would read stage #2 (ours).
382 */
383 int i;
384 for (i = -pos - 1;
06f33c17
JH
385 (pos < 0 && i < istate->cache_nr &&
386 !strcmp(istate->cache[i]->name, path));
1a9d7e9b 387 i++)
06f33c17 388 if (ce_stage(istate->cache[i]) == 2)
1a9d7e9b
JH
389 pos = i;
390 }
391 if (pos < 0)
392 return NULL;
06f33c17 393 data = read_sha1_file(istate->cache[pos]->sha1, &type, &sz);
1a9d7e9b
JH
394 if (!data || type != OBJ_BLOB) {
395 free(data);
396 return NULL;
397 }
398 return data;
399}
400
06f33c17 401static struct attr_stack *read_attr_from_index(const char *path, int macro_ok)
a4413118
JH
402{
403 struct attr_stack *res;
1a9d7e9b
JH
404 char *buf, *sp;
405 int lineno = 0;
f48fd688 406
1a9d7e9b
JH
407 buf = read_index_data(path);
408 if (!buf)
06f33c17 409 return NULL;
1a9d7e9b 410
06f33c17 411 res = xcalloc(1, sizeof(*res));
1a9d7e9b
JH
412 for (sp = buf; *sp; ) {
413 char *ep;
414 int more;
415 for (ep = sp; *ep && *ep != '\n'; ep++)
416 ;
417 more = (*ep == '\n');
418 *ep = '\0';
419 handle_attr_line(res, sp, path, ++lineno, macro_ok);
420 sp = ep + more;
421 }
422 free(buf);
d0bfd026
JH
423 return res;
424}
425
06f33c17
JH
426static struct attr_stack *read_attr(const char *path, int macro_ok)
427{
428 struct attr_stack *res;
429
430 if (direction == GIT_ATTR_CHECKOUT) {
431 res = read_attr_from_index(path, macro_ok);
432 if (!res)
433 res = read_attr_from_file(path, macro_ok);
434 }
4191e80a 435 else if (direction == GIT_ATTR_CHECKIN) {
06f33c17
JH
436 res = read_attr_from_file(path, macro_ok);
437 if (!res)
438 /*
439 * There is no checked out .gitattributes file there, but
440 * we might have it in the index. We allow operation in a
441 * sparsely checked out work tree, so read from it.
442 */
443 res = read_attr_from_index(path, macro_ok);
444 }
4191e80a
NTND
445 else
446 res = read_attr_from_index(path, macro_ok);
06f33c17
JH
447 if (!res)
448 res = xcalloc(1, sizeof(*res));
449 return res;
450}
451
d0bfd026
JH
452#if DEBUG_ATTR
453static void debug_info(const char *what, struct attr_stack *elem)
454{
455 fprintf(stderr, "%s: %s\n", what, elem->origin ? elem->origin : "()");
456}
cf94ccda 457static void debug_set(const char *what, const char *match, struct git_attr *attr, const void *v)
f48fd688 458{
515106fa
JH
459 const char *value = v;
460
461 if (ATTR_TRUE(value))
462 value = "set";
463 else if (ATTR_FALSE(value))
464 value = "unset";
465 else if (ATTR_UNSET(value))
466 value = "unspecified";
467
468 fprintf(stderr, "%s: %s => %s (%s)\n",
469 what, attr->name, (char *) value, match);
f48fd688 470}
d0bfd026
JH
471#define debug_push(a) debug_info("push", (a))
472#define debug_pop(a) debug_info("pop", (a))
473#else
474#define debug_push(a) do { ; } while (0)
475#define debug_pop(a) do { ; } while (0)
f48fd688 476#define debug_set(a,b,c,d) do { ; } while (0)
d0bfd026
JH
477#endif
478
06f33c17
JH
479static void drop_attr_stack(void)
480{
481 while (attr_stack) {
482 struct attr_stack *elem = attr_stack;
483 attr_stack = elem->prev;
484 free_attr_elem(elem);
485 }
486}
487
c5147722 488static const char *git_etc_gitattributes(void)
6df42ab9
PO
489{
490 static const char *system_wide;
491 if (!system_wide)
492 system_wide = system_path(ETC_GITATTRIBUTES);
493 return system_wide;
494}
495
c5147722 496static int git_attr_system(void)
6df42ab9
PO
497{
498 return !git_env_bool("GIT_ATTR_NOSYSTEM", 0);
499}
500
f48fd688
JH
501static void bootstrap_attr_stack(void)
502{
909ca7b9 503 struct attr_stack *elem;
684e40f6 504 char *xdg_attributes_file;
f48fd688 505
909ca7b9
JH
506 if (attr_stack)
507 return;
f48fd688 508
909ca7b9
JH
509 elem = read_attr_from_array(builtin_attr);
510 elem->origin = NULL;
511 elem->prev = attr_stack;
512 attr_stack = elem;
6df42ab9 513
909ca7b9
JH
514 if (git_attr_system()) {
515 elem = read_attr_from_file(git_etc_gitattributes(), 1);
516 if (elem) {
517 elem->origin = NULL;
518 elem->prev = attr_stack;
519 attr_stack = elem;
6df42ab9 520 }
909ca7b9 521 }
6df42ab9 522
684e40f6
HKNN
523 if (!git_attributes_file) {
524 home_config_paths(NULL, &xdg_attributes_file, "attributes");
525 git_attributes_file = xdg_attributes_file;
526 }
f0c1c15c
JK
527 if (git_attributes_file) {
528 elem = read_attr_from_file(git_attributes_file, 1);
529 if (elem) {
530 elem->origin = NULL;
531 elem->prev = attr_stack;
532 attr_stack = elem;
533 }
909ca7b9 534 }
f48fd688 535
909ca7b9
JH
536 if (!is_bare_repository() || direction == GIT_ATTR_INDEX) {
537 elem = read_attr(GITATTRIBUTES_FILE, 1);
6c65b5ea 538 elem->origin = xstrdup("");
cd6a0b26 539 elem->originlen = 0;
f48fd688
JH
540 elem->prev = attr_stack;
541 attr_stack = elem;
909ca7b9 542 debug_push(elem);
f48fd688 543 }
909ca7b9
JH
544
545 elem = read_attr_from_file(git_path(INFOATTRIBUTES_FILE), 1);
546 if (!elem)
547 elem = xcalloc(1, sizeof(*elem));
548 elem->origin = NULL;
549 elem->prev = attr_stack;
550 attr_stack = elem;
f48fd688
JH
551}
552
a8727017 553static void prepare_attr_stack(const char *path)
d0bfd026
JH
554{
555 struct attr_stack *elem, *info;
a8727017 556 int dirlen, len;
a8727017
MH
557 const char *cp;
558
559 cp = strrchr(path, '/');
560 if (!cp)
561 dirlen = 0;
562 else
563 dirlen = cp - path;
f66cf96d 564
d0bfd026
JH
565 /*
566 * At the bottom of the attribute stack is the built-in
6df42ab9
PO
567 * set of attribute definitions, followed by the contents
568 * of $(prefix)/etc/gitattributes and a file specified by
569 * core.attributesfile. Then, contents from
d0bfd026
JH
570 * .gitattribute files from directories closer to the
571 * root to the ones in deeper directories are pushed
572 * to the stack. Finally, at the very top of the stack
573 * we always keep the contents of $GIT_DIR/info/attributes.
574 *
575 * When checking, we use entries from near the top of the
576 * stack, preferring $GIT_DIR/info/attributes, then
577 * .gitattributes in deeper directories to shallower ones,
578 * and finally use the built-in set as the default.
579 */
7373eab4 580 bootstrap_attr_stack();
d0bfd026
JH
581
582 /*
583 * Pop the "info" one that is always at the top of the stack.
584 */
585 info = attr_stack;
586 attr_stack = info->prev;
587
588 /*
589 * Pop the ones from directories that are not the prefix of
c432ef99
JH
590 * the path we are checking. Break out of the loop when we see
591 * the root one (whose origin is an empty string "") or the builtin
592 * one (whose origin is NULL) without popping it.
d0bfd026 593 */
77f7f822 594 while (attr_stack->origin) {
d0bfd026
JH
595 int namelen = strlen(attr_stack->origin);
596
597 elem = attr_stack;
598 if (namelen <= dirlen &&
1afca444
JK
599 !strncmp(elem->origin, path, namelen) &&
600 (!namelen || path[namelen] == '/'))
d0bfd026
JH
601 break;
602
603 debug_pop(elem);
604 attr_stack = elem->prev;
605 free_attr_elem(elem);
606 }
607
608 /*
609 * Read from parent directories and push them down
610 */
4191e80a 611 if (!is_bare_repository() || direction == GIT_ATTR_INDEX) {
c432ef99
JH
612 /*
613 * bootstrap_attr_stack() should have added, and the
614 * above loop should have stopped before popping, the
615 * root element whose attr_stack->origin is set to an
616 * empty string.
617 */
97410b27 618 struct strbuf pathbuf = STRBUF_INIT;
2d35d556 619
c432ef99 620 assert(attr_stack->origin);
97410b27 621 while (1) {
2d35d556
RS
622 len = strlen(attr_stack->origin);
623 if (dirlen <= len)
624 break;
97410b27
BC
625 cp = memchr(path + len + 1, '/', dirlen - len - 1);
626 if (!cp)
627 cp = path + dirlen;
628 strbuf_add(&pathbuf, path, cp - path);
f66cf96d 629 strbuf_addch(&pathbuf, '/');
97410b27 630 strbuf_addstr(&pathbuf, GITATTRIBUTES_FILE);
f66cf96d 631 elem = read_attr(pathbuf.buf, 0);
97410b27 632 strbuf_setlen(&pathbuf, cp - path);
cd6a0b26 633 elem->origin = strbuf_detach(&pathbuf, &elem->originlen);
2d35d556
RS
634 elem->prev = attr_stack;
635 attr_stack = elem;
636 debug_push(elem);
637 }
d0bfd026 638
97410b27
BC
639 strbuf_release(&pathbuf);
640 }
d4c98565 641
d0bfd026
JH
642 /*
643 * Finally push the "info" one at the top of the stack.
644 */
645 info->prev = attr_stack;
646 attr_stack = info;
647}
648
649static int path_matches(const char *pathname, int pathlen,
4742d136 650 const char *basename,
d0bfd026
JH
651 const char *pattern,
652 const char *base, int baselen)
653{
654 if (!strchr(pattern, '/')) {
6eba6210 655 return (fnmatch_icase(pattern, basename, 0) == 0);
d0bfd026
JH
656 }
657 /*
658 * match with FNM_PATHNAME; the pattern has base implicitly
659 * in front of it.
660 */
661 if (*pattern == '/')
662 pattern++;
663 if (pathlen < baselen ||
cf94ccda 664 (baselen && pathname[baselen] != '/') ||
d0bfd026
JH
665 strncmp(pathname, base, baselen))
666 return 0;
82881b38
MO
667 if (baselen != 0)
668 baselen++;
6eba6210 669 return fnmatch_icase(pattern, pathname + baselen, FNM_PATHNAME) == 0;
d0bfd026
JH
670}
671
ec775c41
HG
672static int macroexpand_one(int attr_nr, int rem);
673
515106fa
JH
674static int fill_one(const char *what, struct match_attr *a, int rem)
675{
676 struct git_attr_check *check = check_all_attr;
677 int i;
678
969f9d73 679 for (i = a->num_attr - 1; 0 < rem && 0 <= i; i--) {
515106fa 680 struct git_attr *attr = a->state[i].attr;
a5e92abd
JH
681 const char **n = &(check[attr->attr_nr].value);
682 const char *v = a->state[i].setto;
515106fa
JH
683
684 if (*n == ATTR__UNKNOWN) {
426c27b7
HG
685 debug_set(what,
686 a->is_macro ? a->u.attr->name : a->u.pattern,
687 attr, v);
515106fa
JH
688 *n = v;
689 rem--;
ec775c41 690 rem = macroexpand_one(attr->attr_nr, rem);
515106fa
JH
691 }
692 }
693 return rem;
694}
695
4742d136
NTND
696static int fill(const char *path, int pathlen, const char *basename,
697 struct attr_stack *stk, int rem)
d0bfd026 698{
515106fa 699 int i;
d0bfd026
JH
700 const char *base = stk->origin ? stk->origin : "";
701
702 for (i = stk->num_matches - 1; 0 < rem && 0 <= i; i--) {
703 struct match_attr *a = stk->attrs[i];
f48fd688
JH
704 if (a->is_macro)
705 continue;
4742d136 706 if (path_matches(path, pathlen, basename,
cd6a0b26 707 a->u.pattern, base, stk->originlen))
515106fa 708 rem = fill_one("fill", a, rem);
d0bfd026
JH
709 }
710 return rem;
711}
712
ec775c41 713static int macroexpand_one(int attr_nr, int rem)
f48fd688 714{
ec775c41
HG
715 struct attr_stack *stk;
716 struct match_attr *a = NULL;
515106fa 717 int i;
f48fd688 718
ec775c41
HG
719 if (check_all_attr[attr_nr].value != ATTR__TRUE)
720 return rem;
721
722 for (stk = attr_stack; !a && stk; stk = stk->prev)
723 for (i = stk->num_matches - 1; !a && 0 <= i; i--) {
724 struct match_attr *ma = stk->attrs[i];
725 if (!ma->is_macro)
726 continue;
727 if (ma->u.attr->attr_nr == attr_nr)
728 a = ma;
729 }
730
731 if (a)
515106fa 732 rem = fill_one("expand", a, rem);
ec775c41 733
f48fd688
JH
734 return rem;
735}
736
2d721744
MH
737/*
738 * Collect all attributes for path into the array pointed to by
739 * check_all_attr.
740 */
741static void collect_all_attrs(const char *path)
d0bfd026
JH
742{
743 struct attr_stack *stk;
2d721744 744 int i, pathlen, rem;
4742d136 745 const char *basename;
d0bfd026 746
2d721744 747 prepare_attr_stack(path);
f48fd688 748 for (i = 0; i < attr_nr; i++)
515106fa 749 check_all_attr[i].value = ATTR__UNKNOWN;
d0bfd026 750
4742d136
NTND
751 basename = strrchr(path, '/');
752 basename = basename ? basename + 1 : path;
753
d0bfd026 754 pathlen = strlen(path);
f48fd688
JH
755 rem = attr_nr;
756 for (stk = attr_stack; 0 < rem && stk; stk = stk->prev)
4742d136 757 rem = fill(path, pathlen, basename, stk, rem);
2d721744
MH
758}
759
d932f4eb 760int git_check_attr(const char *path, int num, struct git_attr_check *check)
2d721744
MH
761{
762 int i;
763
764 collect_all_attrs(path);
f48fd688 765
515106fa 766 for (i = 0; i < num; i++) {
a5e92abd 767 const char *value = check_all_attr[check[i].attr->attr_nr].value;
515106fa
JH
768 if (value == ATTR__UNKNOWN)
769 value = ATTR__UNSET;
770 check[i].value = value;
771 }
f48fd688 772
d0bfd026
JH
773 return 0;
774}
06f33c17 775
ee548df3
MH
776int git_all_attrs(const char *path, int *num, struct git_attr_check **check)
777{
778 int i, count, j;
779
780 collect_all_attrs(path);
781
782 /* Count the number of attributes that are set. */
783 count = 0;
784 for (i = 0; i < attr_nr; i++) {
785 const char *value = check_all_attr[i].value;
786 if (value != ATTR__UNSET && value != ATTR__UNKNOWN)
787 ++count;
788 }
789 *num = count;
790 *check = xmalloc(sizeof(**check) * count);
791 j = 0;
792 for (i = 0; i < attr_nr; i++) {
793 const char *value = check_all_attr[i].value;
794 if (value != ATTR__UNSET && value != ATTR__UNKNOWN) {
795 (*check)[j].attr = check_all_attr[i].attr;
796 (*check)[j].value = value;
797 ++j;
798 }
799 }
800
801 return 0;
802}
803
06f33c17
JH
804void git_attr_set_direction(enum git_attr_direction new, struct index_state *istate)
805{
806 enum git_attr_direction old = direction;
4191e80a
NTND
807
808 if (is_bare_repository() && new != GIT_ATTR_INDEX)
809 die("BUG: non-INDEX attr direction in a bare repo");
810
06f33c17
JH
811 direction = new;
812 if (new != old)
813 drop_attr_stack();
814 use_index = istate;
815}