]> git.ipfire.org Git - thirdparty/git.git/blame - builtin/check-attr.c
Merge branch 'es/add-doc-list-short-form-of-all-in-synopsis'
[thirdparty/git.git] / builtin / check-attr.c
CommitLineData
07047d68 1#define USE_THE_INDEX_VARIABLE
d0bfd026 2#include "builtin.h"
b2141fc1 3#include "config.h"
d0bfd026 4#include "attr.h"
32a8f510 5#include "environment.h"
f394e093 6#include "gettext.h"
dabab1d6 7#include "object-name.h"
d0bfd026 8#include "quote.h"
d1cbe1e6 9#include "repository.h"
e38da487 10#include "setup.h"
b4666852 11#include "parse-options.h"
d48be35c 12#include "write-or-die.h"
d0bfd026 13
4ca0f188 14static int all_attrs;
b2b3e9c2 15static int cached_attrs;
b4666852 16static int stdin_paths;
47cfc9bd 17static char *source;
b4666852 18static const char * const check_attr_usage[] = {
47cfc9bd
KN
19N_("git check-attr [--source <tree-ish>] [-a | --all | <attr>...] [--] <pathname>..."),
20N_("git check-attr --stdin [-z] [--source <tree-ish>] [-a | --all | <attr>...]"),
b4666852
DP
21NULL
22};
23
94a55e4e 24static int nul_term_line;
b4666852
DP
25
26static const struct option check_attr_options[] = {
d5d09d47
SB
27 OPT_BOOL('a', "all", &all_attrs, N_("report all attributes set on file")),
28 OPT_BOOL(0, "cached", &cached_attrs, N_("use .gitattributes only from the index")),
29 OPT_BOOL(0 , "stdin", &stdin_paths, N_("read file names from stdin")),
a86a8b97
JH
30 OPT_BOOL('z', NULL, &nul_term_line,
31 N_("terminate input and output records by a NUL character")),
47cfc9bd 32 OPT_STRING(0, "source", &source, N_("<tree-ish>"), N_("which tree-ish to check attributes at")),
b4666852
DP
33 OPT_END()
34};
d0bfd026 35
7f864111 36static void output_attr(struct attr_check *check, const char *file)
41038c5e
DP
37{
38 int j;
7f864111
JH
39 int cnt = check->nr;
40
41038c5e 41 for (j = 0; j < cnt; j++) {
7f864111 42 const char *value = check->items[j].value;
41038c5e
DP
43
44 if (ATTR_TRUE(value))
45 value = "set";
46 else if (ATTR_FALSE(value))
47 value = "unset";
48 else if (ATTR_UNSET(value))
49 value = "unspecified";
50
f7cd8c50
JH
51 if (nul_term_line) {
52 printf("%s%c" /* path */
53 "%s%c" /* attrname */
54 "%s%c" /* attrvalue */,
7f864111
JH
55 file, 0,
56 git_attr_name(check->items[j].attr), 0, value, 0);
f7cd8c50
JH
57 } else {
58 quote_c_style(file, NULL, stdout, 0);
7f864111
JH
59 printf(": %s: %s\n",
60 git_attr_name(check->items[j].attr), value);
f7cd8c50 61 }
41038c5e
DP
62 }
63}
64
47cfc9bd 65static void check_attr(const char *prefix, struct attr_check *check,
44451a2e 66 int collect_all,
7bd18054 67 const char *file)
47cfc9bd 68
46f96a6d 69{
f5114a40
MH
70 char *full_path =
71 prefix_path(prefix, prefix ? strlen(prefix) : 0, file);
7f864111
JH
72
73 if (collect_all) {
44451a2e 74 git_all_attrs(&the_index, full_path, check);
4ca0f188 75 } else {
44451a2e 76 git_check_attr(&the_index, full_path, check);
4ca0f188 77 }
7f864111
JH
78 output_attr(check, file);
79
f5114a40 80 free(full_path);
46f96a6d
MH
81}
82
47cfc9bd 83static void check_attr_stdin_paths(const char *prefix, struct attr_check *check,
44451a2e 84 int collect_all)
b4666852 85{
0d4cc1b4
JK
86 struct strbuf buf = STRBUF_INIT;
87 struct strbuf unquoted = STRBUF_INIT;
f418afa9 88 strbuf_getline_fn getline_fn;
b4666852 89
f418afa9 90 getline_fn = nul_term_line ? strbuf_getline_nul : strbuf_getline_lf;
f418afa9
JH
91 while (getline_fn(&buf, stdin) != EOF) {
92 if (!nul_term_line && buf.buf[0] == '"') {
0d4cc1b4
JK
93 strbuf_reset(&unquoted);
94 if (unquote_c_style(&unquoted, buf.buf, NULL))
b4666852 95 die("line is badly quoted");
0d4cc1b4 96 strbuf_swap(&buf, &unquoted);
b4666852 97 }
44451a2e 98 check_attr(prefix, check, collect_all, buf.buf);
b4666852
DP
99 maybe_flush_or_die(stdout, "attribute to stdout");
100 }
101 strbuf_release(&buf);
0d4cc1b4 102 strbuf_release(&unquoted);
b4666852
DP
103}
104
9e37a7e1
MH
105static NORETURN void error_with_usage(const char *msg)
106{
107 error("%s", msg);
108 usage_with_options(check_attr_usage, check_attr_options);
109}
110
d0bfd026
JH
111int cmd_check_attr(int argc, const char **argv, const char *prefix)
112{
7f864111 113 struct attr_check *check;
47cfc9bd 114 struct object_id initialized_oid;
d6541bb1 115 int cnt, i, doubledash, filei;
b4666852 116
cdbf6232
JH
117 if (!is_bare_repository())
118 setup_work_tree();
119
64589a03
JH
120 git_config(git_default_config, NULL);
121
37782920
SB
122 argc = parse_options(argc, argv, prefix, check_attr_options,
123 check_attr_usage, PARSE_OPT_KEEP_DASHDASH);
d0bfd026 124
f9815878
SL
125 prepare_repo_settings(the_repository);
126 the_repository->settings.command_requires_full_index = 0;
127
07047d68 128 if (repo_read_index(the_repository) < 0) {
6b06d518
BD
129 die("invalid cache");
130 }
131
b2b3e9c2 132 if (cached_attrs)
c4500e25 133 git_attr_set_direction(GIT_ATTR_INDEX);
b2b3e9c2 134
d0bfd026 135 doubledash = -1;
b4666852 136 for (i = 0; doubledash < 0 && i < argc; i++) {
d0bfd026
JH
137 if (!strcmp(argv[i], "--"))
138 doubledash = i;
139 }
140
4ca0f188
MH
141 /* Process --all and/or attribute arguments: */
142 if (all_attrs) {
143 if (doubledash >= 1)
144 error_with_usage("Attributes and --all both specified");
145
146 cnt = 0;
147 filei = doubledash + 1;
148 } else if (doubledash == 0) {
72541040
MH
149 error_with_usage("No attribute specified");
150 } else if (doubledash < 0) {
72541040
MH
151 if (!argc)
152 error_with_usage("No attribute specified");
153
ca64d061
MH
154 if (stdin_paths) {
155 /* Treat all arguments as attribute names. */
156 cnt = argc;
157 filei = argc;
158 } else {
159 /* Treat exactly one argument as an attribute name. */
160 cnt = 1;
161 filei = 1;
162 }
d6541bb1 163 } else {
b4666852 164 cnt = doubledash;
d6541bb1
MH
165 filei = doubledash + 1;
166 }
d0bfd026 167
72541040 168 /* Check file argument(s): */
fdf6be82
MH
169 if (stdin_paths) {
170 if (filei < argc)
171 error_with_usage("Can't specify files with --stdin");
172 } else {
173 if (filei >= argc)
174 error_with_usage("No file specified");
175 }
b4666852 176
7f864111
JH
177 check = attr_check_alloc();
178 if (!all_attrs) {
4ca0f188 179 for (i = 0; i < cnt; i++) {
e810e063
BW
180 const struct git_attr *a = git_attr(argv[i]);
181
4ca0f188
MH
182 if (!a)
183 return error("%s: not a valid attribute name",
7f864111
JH
184 argv[i]);
185 attr_check_append(check, a);
4ca0f188 186 }
d0bfd026
JH
187 }
188
47cfc9bd
KN
189 if (source) {
190 if (repo_get_oid_tree(the_repository, source, &initialized_oid))
191 die("%s: not a valid tree-ish source", source);
44451a2e 192 set_git_attr_source(source);
47cfc9bd
KN
193 }
194
b4666852 195 if (stdin_paths)
44451a2e 196 check_attr_stdin_paths(prefix, check, all_attrs);
b4666852 197 else {
d6541bb1 198 for (i = filei; i < argc; i++)
44451a2e 199 check_attr(prefix, check, all_attrs, argv[i]);
b4666852
DP
200 maybe_flush_or_die(stdout, "attribute to stdout");
201 }
7f864111
JH
202
203 attr_check_free(check);
d0bfd026
JH
204 return 0;
205}