]> git.ipfire.org Git - thirdparty/git.git/blame - builtin/check-attr.c
git-check-attr: Process command-line args more systematically
[thirdparty/git.git] / builtin / check-attr.c
CommitLineData
d0bfd026 1#include "builtin.h"
6b06d518 2#include "cache.h"
d0bfd026
JH
3#include "attr.h"
4#include "quote.h"
b4666852 5#include "parse-options.h"
d0bfd026 6
b4666852
DP
7static int stdin_paths;
8static const char * const check_attr_usage[] = {
9"git check-attr attr... [--] pathname...",
10"git check-attr --stdin attr... < <list-of-paths>",
11NULL
12};
13
14static int null_term_line;
15
16static const struct option check_attr_options[] = {
17 OPT_BOOLEAN(0 , "stdin", &stdin_paths, "read file names from stdin"),
18 OPT_BOOLEAN('z', NULL, &null_term_line,
19 "input paths are terminated by a null character"),
20 OPT_END()
21};
d0bfd026 22
46f96a6d 23static void output_attr(int cnt, struct git_attr_check *check,
66a1fb30 24 const char *file)
41038c5e
DP
25{
26 int j;
41038c5e
DP
27 for (j = 0; j < cnt; j++) {
28 const char *value = check[j].value;
29
30 if (ATTR_TRUE(value))
31 value = "set";
32 else if (ATTR_FALSE(value))
33 value = "unset";
34 else if (ATTR_UNSET(value))
35 value = "unspecified";
36
37 quote_c_style(file, NULL, stdout, 0);
66a1fb30 38 printf(": %s: %s\n", git_attr_name(check[j].attr), value);
41038c5e
DP
39 }
40}
41
46f96a6d
MH
42static void check_attr(int cnt, struct git_attr_check *check,
43 const char *file)
44{
45 if (git_checkattr(file, cnt, check))
46 die("git_checkattr died");
47 output_attr(cnt, check, file);
48}
49
66a1fb30 50static void check_attr_stdin_paths(int cnt, struct git_attr_check *check)
b4666852
DP
51{
52 struct strbuf buf, nbuf;
53 int line_termination = null_term_line ? 0 : '\n';
54
55 strbuf_init(&buf, 0);
56 strbuf_init(&nbuf, 0);
57 while (strbuf_getline(&buf, stdin, line_termination) != EOF) {
58 if (line_termination && buf.buf[0] == '"') {
59 strbuf_reset(&nbuf);
60 if (unquote_c_style(&nbuf, buf.buf, NULL))
61 die("line is badly quoted");
62 strbuf_swap(&buf, &nbuf);
63 }
66a1fb30 64 check_attr(cnt, check, buf.buf);
b4666852
DP
65 maybe_flush_or_die(stdout, "attribute to stdout");
66 }
67 strbuf_release(&buf);
68 strbuf_release(&nbuf);
69}
70
9e37a7e1
MH
71static NORETURN void error_with_usage(const char *msg)
72{
73 error("%s", msg);
74 usage_with_options(check_attr_usage, check_attr_options);
75}
76
d0bfd026
JH
77int cmd_check_attr(int argc, const char **argv, const char *prefix)
78{
79 struct git_attr_check *check;
d6541bb1 80 int cnt, i, doubledash, filei;
b4666852 81
37782920
SB
82 argc = parse_options(argc, argv, prefix, check_attr_options,
83 check_attr_usage, PARSE_OPT_KEEP_DASHDASH);
d0bfd026 84
6b06d518
BD
85 if (read_cache() < 0) {
86 die("invalid cache");
87 }
88
d0bfd026 89 doubledash = -1;
b4666852 90 for (i = 0; doubledash < 0 && i < argc; i++) {
d0bfd026
JH
91 if (!strcmp(argv[i], "--"))
92 doubledash = i;
93 }
94
72541040
MH
95 /* Check attribute argument(s): */
96 if (doubledash == 0) {
97 error_with_usage("No attribute specified");
98 } else if (doubledash < 0) {
99 /*
100 * There is no double dash; treat the first
101 * argument as an attribute.
102 */
103 if (!argc)
104 error_with_usage("No attribute specified");
105
d0bfd026 106 cnt = 1;
d6541bb1
MH
107 filei = 1;
108 } else {
b4666852 109 cnt = doubledash;
d6541bb1
MH
110 filei = doubledash + 1;
111 }
d0bfd026 112
72541040 113 /* Check file argument(s): */
27937447
MH
114 if (stdin_paths && filei < argc)
115 error_with_usage("Can't specify files with --stdin");
b4666852 116
d0bfd026
JH
117 check = xcalloc(cnt, sizeof(*check));
118 for (i = 0; i < cnt; i++) {
119 const char *name;
e4aee10a 120 struct git_attr *a;
b4666852 121 name = argv[i];
7fb0eaa2 122 a = git_attr(name);
e4aee10a
JH
123 if (!a)
124 return error("%s: not a valid attribute name", name);
125 check[i].attr = a;
d0bfd026
JH
126 }
127
b4666852 128 if (stdin_paths)
66a1fb30 129 check_attr_stdin_paths(cnt, check);
b4666852 130 else {
d6541bb1 131 for (i = filei; i < argc; i++)
66a1fb30 132 check_attr(cnt, check, argv[i]);
b4666852
DP
133 maybe_flush_or_die(stdout, "attribute to stdout");
134 }
d0bfd026
JH
135 return 0;
136}