e2d300646431fbd7a2b3f53ed4450b9af7a52f96
1#include "builtin.h"
2#include "cache.h"
3#include "dir.h"
4#include "quote.h"
5#include "pathspec.h"
6#include "parse-options.h"
7
8static int quiet, verbose, stdin_paths, show_non_matching;
9static const char * const check_ignore_usage[] = {
10"git check-ignore [options] pathname...",
11"git check-ignore [options] --stdin < <list-of-paths>",
12NULL
13};
14
15static int null_term_line;
16
17static const struct option check_ignore_options[] = {
18 OPT__QUIET(&quiet, N_("suppress progress reporting")),
19 OPT__VERBOSE(&verbose, N_("be verbose")),
20 OPT_GROUP(""),
21 OPT_BOOLEAN(0, "stdin", &stdin_paths,
22 N_("read file names from stdin")),
23 OPT_BOOLEAN('z', NULL, &null_term_line,
24 N_("input paths are terminated by a null character")),
25 OPT_BOOLEAN('n', "non-matching", &show_non_matching,
26 N_("show non-matching input paths")),
27 OPT_END()
28};
29
30static void output_exclude(const char *path, struct exclude *exclude)
31{
32 char *bang = (exclude && exclude->flags & EXC_FLAG_NEGATIVE) ? "!" : "";
33 char *slash = (exclude && exclude->flags & EXC_FLAG_MUSTBEDIR) ? "/" : "";
34 if (!null_term_line) {
35 if (!verbose) {
36 write_name_quoted(path, stdout, '\n');
37 } else {
38 if (exclude) {
39 quote_c_style(exclude->el->src, NULL, stdout, 0);
40 printf(":%d:%s%s%s\t",
41 exclude->srcpos,
42 bang, exclude->pattern, slash);
43 }
44 else {
45 printf("::\t");
46 }
47 quote_c_style(path, NULL, stdout, 0);
48 fputc('\n', stdout);
49 }
50 } else {
51 if (!verbose) {
52 printf("%s%c", path, '\0');
53 } else {
54 if (exclude)
55 printf("%s%c%d%c%s%s%s%c%s%c",
56 exclude->el->src, '\0',
57 exclude->srcpos, '\0',
58 bang, exclude->pattern, slash, '\0',
59 path, '\0');
60 else
61 printf("%c%c%c%s%c", '\0', '\0', '\0', path, '\0');
62 }
63 }
64}
65
66static int check_ignore(struct path_exclude_check *check,
67 const char *prefix, const char **pathspec)
68{
69 const char *path, *full_path;
70 char *seen;
71 int num_ignored = 0, dtype = DT_UNKNOWN, i;
72 struct exclude *exclude;
73
74 if (!pathspec || !*pathspec) {
75 if (!quiet)
76 fprintf(stderr, "no pathspec given.\n");
77 return 0;
78 }
79
80 /*
81 * look for pathspecs matching entries in the index, since these
82 * should not be ignored, in order to be consistent with
83 * 'git status', 'git add' etc.
84 */
85 seen = find_pathspecs_matching_against_index(pathspec);
86 for (i = 0; pathspec[i]; i++) {
87 path = pathspec[i];
88 full_path = prefix_path(prefix, prefix
89 ? strlen(prefix) : 0, path);
90 full_path = check_path_for_gitlink(full_path);
91 die_if_path_beyond_symlink(full_path, prefix);
92 exclude = NULL;
93 if (!seen[i]) {
94 exclude = last_exclude_matching_path(check, full_path,
95 -1, &dtype);
96 }
97 if (!quiet && (exclude || show_non_matching))
98 output_exclude(path, exclude);
99 if (exclude)
100 num_ignored++;
101 }
102 free(seen);
103
104 return num_ignored;
105}
106
107static int check_ignore_stdin_paths(struct path_exclude_check *check, const char *prefix)
108{
109 struct strbuf buf, nbuf;
110 char **pathspec = NULL;
111 size_t nr = 0, alloc = 0;
112 int line_termination = null_term_line ? 0 : '\n';
113 int num_ignored;
114
115 strbuf_init(&buf, 0);
116 strbuf_init(&nbuf, 0);
117 while (strbuf_getline(&buf, stdin, line_termination) != EOF) {
118 if (line_termination && buf.buf[0] == '"') {
119 strbuf_reset(&nbuf);
120 if (unquote_c_style(&nbuf, buf.buf, NULL))
121 die("line is badly quoted");
122 strbuf_swap(&buf, &nbuf);
123 }
124 ALLOC_GROW(pathspec, nr + 1, alloc);
125 pathspec[nr] = xcalloc(strlen(buf.buf) + 1, sizeof(*buf.buf));
126 strcpy(pathspec[nr++], buf.buf);
127 }
128 ALLOC_GROW(pathspec, nr + 1, alloc);
129 pathspec[nr] = NULL;
130 num_ignored = check_ignore(check, prefix, (const char **)pathspec);
131 maybe_flush_or_die(stdout, "attribute to stdout");
132 strbuf_release(&buf);
133 strbuf_release(&nbuf);
134 return num_ignored;
135}
136
137int cmd_check_ignore(int argc, const char **argv, const char *prefix)
138{
139 int num_ignored;
140 struct dir_struct dir;
141 struct path_exclude_check check;
142
143 git_config(git_default_config, NULL);
144
145 argc = parse_options(argc, argv, prefix, check_ignore_options,
146 check_ignore_usage, 0);
147
148 if (stdin_paths) {
149 if (argc > 0)
150 die(_("cannot specify pathnames with --stdin"));
151 } else {
152 if (null_term_line)
153 die(_("-z only makes sense with --stdin"));
154 if (argc == 0)
155 die(_("no path specified"));
156 }
157 if (quiet) {
158 if (argc > 1)
159 die(_("--quiet is only valid with a single pathname"));
160 if (verbose)
161 die(_("cannot have both --quiet and --verbose"));
162 }
163 if (show_non_matching && !verbose)
164 die(_("--non-matching is only valid with --verbose"));
165
166 /* read_cache() is only necessary so we can watch out for submodules. */
167 if (read_cache() < 0)
168 die(_("index file corrupt"));
169
170 memset(&dir, 0, sizeof(dir));
171 dir.flags |= DIR_COLLECT_IGNORED;
172 setup_standard_excludes(&dir);
173
174 path_exclude_check_init(&check, &dir);
175 if (stdin_paths) {
176 num_ignored = check_ignore_stdin_paths(&check, prefix);
177 } else {
178 num_ignored = check_ignore(&check, prefix, argv);
179 maybe_flush_or_die(stdout, "ignore to stdout");
180 }
181
182 clear_directory(&dir);
183 path_exclude_check_clear(&check);
184
185 return !num_ignored;
186}