6 #include "parse-options.h"
9 static int cached_attrs;
10 static int stdin_paths;
11 static const char * const check_attr_usage[] = {
12 N_("git check-attr [-a | --all | <attr>...] [--] <pathname>..."),
13 N_("git check-attr --stdin [-z] [-a | --all | <attr>...]"),
17 static int nul_term_line;
19 static const struct option check_attr_options[] = {
20 OPT_BOOL('a', "all", &all_attrs, N_("report all attributes set on file")),
21 OPT_BOOL(0, "cached", &cached_attrs, N_("use .gitattributes only from the index")),
22 OPT_BOOL(0 , "stdin", &stdin_paths, N_("read file names from stdin")),
23 OPT_BOOL('z', NULL, &nul_term_line,
24 N_("terminate input and output records by a NUL character")),
28 static void output_attr(struct attr_check *check, const char *file)
33 for (j = 0; j < cnt; j++) {
34 const char *value = check->items[j].value;
38 else if (ATTR_FALSE(value))
40 else if (ATTR_UNSET(value))
41 value = "unspecified";
44 printf("%s%c" /* path */
46 "%s%c" /* attrvalue */,
48 git_attr_name(check->items[j].attr), 0, value, 0);
50 quote_c_style(file, NULL, stdout, 0);
52 git_attr_name(check->items[j].attr), value);
57 static void check_attr(const char *prefix,
58 struct attr_check *check,
63 prefix_path(prefix, prefix ? strlen(prefix) : 0, file);
66 git_all_attrs(&the_index, full_path, check);
68 git_check_attr(&the_index, full_path, check);
70 output_attr(check, file);
75 static void check_attr_stdin_paths(const char *prefix,
76 struct attr_check *check,
79 struct strbuf buf = STRBUF_INIT;
80 struct strbuf unquoted = STRBUF_INIT;
81 strbuf_getline_fn getline_fn;
83 getline_fn = nul_term_line ? strbuf_getline_nul : strbuf_getline_lf;
84 while (getline_fn(&buf, stdin) != EOF) {
85 if (!nul_term_line && buf.buf[0] == '"') {
86 strbuf_reset(&unquoted);
87 if (unquote_c_style(&unquoted, buf.buf, NULL))
88 die("line is badly quoted");
89 strbuf_swap(&buf, &unquoted);
91 check_attr(prefix, check, collect_all, buf.buf);
92 maybe_flush_or_die(stdout, "attribute to stdout");
95 strbuf_release(&unquoted);
98 static NORETURN void error_with_usage(const char *msg)
101 usage_with_options(check_attr_usage, check_attr_options);
104 int cmd_check_attr(int argc, const char **argv, const char *prefix)
106 struct attr_check *check;
107 int cnt, i, doubledash, filei;
109 if (!is_bare_repository())
112 git_config(git_default_config, NULL);
114 argc = parse_options(argc, argv, prefix, check_attr_options,
115 check_attr_usage, PARSE_OPT_KEEP_DASHDASH);
117 if (read_cache() < 0) {
118 die("invalid cache");
122 git_attr_set_direction(GIT_ATTR_INDEX);
125 for (i = 0; doubledash < 0 && i < argc; i++) {
126 if (!strcmp(argv[i], "--"))
130 /* Process --all and/or attribute arguments: */
133 error_with_usage("Attributes and --all both specified");
136 filei = doubledash + 1;
137 } else if (doubledash == 0) {
138 error_with_usage("No attribute specified");
139 } else if (doubledash < 0) {
141 error_with_usage("No attribute specified");
144 /* Treat all arguments as attribute names. */
148 /* Treat exactly one argument as an attribute name. */
154 filei = doubledash + 1;
157 /* Check file argument(s): */
160 error_with_usage("Can't specify files with --stdin");
163 error_with_usage("No file specified");
166 check = attr_check_alloc();
168 for (i = 0; i < cnt; i++) {
169 const struct git_attr *a = git_attr(argv[i]);
172 return error("%s: not a valid attribute name",
174 attr_check_append(check, a);
179 check_attr_stdin_paths(prefix, check, all_attrs);
181 for (i = filei; i < argc; i++)
182 check_attr(prefix, check, all_attrs, argv[i]);
183 maybe_flush_or_die(stdout, "attribute to stdout");
186 attr_check_free(check);