summaryrefslogtreecommitdiff
path: root/builtin-check-attr.c
blob: 47b07210d61ad53c5d68e6c5dea767e2f52a131a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#include "builtin.h"
#include "attr.h"
#include "quote.h"
 
static const char check_attr_usage[] =
"git-check-attr attr... [--] pathname...";
 
int cmd_check_attr(int argc, const char **argv, const char *prefix)
{
	struct git_attr_check *check;
	int cnt, i, doubledash;
 
	doubledash = -1;
	for (i = 1; doubledash < 0 && i < argc; i++) {
		if (!strcmp(argv[i], "--"))
			doubledash = i;
	}
 
	/* If there is no double dash, we handle only one attribute */
	if (doubledash < 0) {
		cnt = 1;
		doubledash = 1;
	} else
		cnt = doubledash - 1;
	doubledash++;
 
	if (cnt <= 0 || argc < doubledash)
		usage(check_attr_usage);
	check = xcalloc(cnt, sizeof(*check));
	for (i = 0; i < cnt; i++) {
		const char *name;
		name = argv[i + 1];
		check[i].attr = git_attr(name, strlen(name));
	}
 
	for (i = doubledash; i < argc; i++) {
		int j;
		if (git_checkattr(argv[i], cnt, check))
			die("git_checkattr died");
		for (j = 0; j < cnt; j++) {
			write_name_quoted("", 0, argv[i], 1, stdout);
			printf(": %s: %s\n", argv[j+1],
			       (check[j].isset < 0) ? "unspecified" :
			       (check[j].isset == 0) ? "unset" :
			       "set");
		}
	}
	return 0;
}