2 * "diff --no-index" support
3 * Copyright (c) 2007 by Johannes Schindelin
4 * Copyright (c) 2008 by Junio C Hamano
17 #include "string-list.h"
20 static int read_directory_contents(const char *path, struct string_list *list)
25 if (!(dir = opendir(path)))
26 return error("Could not open directory %s", path);
28 while ((e = readdir(dir)))
29 if (!is_dot_or_dotdot(e->d_name))
30 string_list_insert(list, e->d_name);
37 * This should be "(standard input)" or something, but it will
38 * probably expose many more breakages in the way no-index code
39 * is bolted onto the diff callchain.
41 static const char file_from_standard_input[] = "-";
43 static int get_mode(const char *path, int *mode)
47 if (!path || !strcmp(path, "/dev/null"))
49 #ifdef GIT_WINDOWS_NATIVE
50 else if (!strcasecmp(path, "nul"))
53 else if (path == file_from_standard_input)
54 *mode = create_ce_mode(0666);
55 else if (lstat(path, &st))
56 return error("Could not access '%s'", path);
62 static int populate_from_stdin(struct diff_filespec *s)
64 struct strbuf buf = STRBUF_INIT;
67 if (strbuf_read(&buf, 0, 0) < 0)
68 return error_errno("error while reading from stdin");
71 s->data = strbuf_detach(&buf, &size);
78 static struct diff_filespec *noindex_filespec(const char *name, int mode)
80 struct diff_filespec *s;
84 s = alloc_filespec(name);
85 fill_filespec(s, null_sha1, 0, mode);
86 if (name == file_from_standard_input)
87 populate_from_stdin(s);
91 static int queue_diff(struct diff_options *o,
92 const char *name1, const char *name2)
94 int mode1 = 0, mode2 = 0;
96 if (get_mode(name1, &mode1) || get_mode(name2, &mode2))
99 if (mode1 && mode2 && S_ISDIR(mode1) != S_ISDIR(mode2)) {
100 struct diff_filespec *d1, *d2;
102 if (S_ISDIR(mode1)) {
103 /* 2 is file that is created */
104 d1 = noindex_filespec(NULL, 0);
105 d2 = noindex_filespec(name2, mode2);
109 /* 1 is file that is deleted */
110 d1 = noindex_filespec(name1, mode1);
111 d2 = noindex_filespec(NULL, 0);
116 diff_queue(&diff_queued_diff, d1, d2);
118 /* and then let the entire directory be created or deleted */
121 if (S_ISDIR(mode1) || S_ISDIR(mode2)) {
122 struct strbuf buffer1 = STRBUF_INIT;
123 struct strbuf buffer2 = STRBUF_INIT;
124 struct string_list p1 = STRING_LIST_INIT_DUP;
125 struct string_list p2 = STRING_LIST_INIT_DUP;
127 size_t len1 = 0, len2 = 0;
129 if (name1 && read_directory_contents(name1, &p1))
131 if (name2 && read_directory_contents(name2, &p2)) {
132 string_list_clear(&p1, 0);
137 strbuf_addstr(&buffer1, name1);
138 strbuf_complete(&buffer1, '/');
143 strbuf_addstr(&buffer2, name2);
144 strbuf_complete(&buffer2, '/');
148 for (i1 = i2 = 0; !ret && (i1 < p1.nr || i2 < p2.nr); ) {
152 strbuf_setlen(&buffer1, len1);
153 strbuf_setlen(&buffer2, len2);
157 else if (i2 == p2.nr)
160 comp = strcmp(p1.items[i1].string, p2.items[i2].string);
165 strbuf_addstr(&buffer1, p1.items[i1++].string);
172 strbuf_addstr(&buffer2, p2.items[i2++].string);
176 ret = queue_diff(o, n1, n2);
178 string_list_clear(&p1, 0);
179 string_list_clear(&p2, 0);
180 strbuf_release(&buffer1);
181 strbuf_release(&buffer2);
185 struct diff_filespec *d1, *d2;
187 if (DIFF_OPT_TST(o, REVERSE_DIFF)) {
190 tmp = mode1; mode1 = mode2; mode2 = tmp;
191 tmp_c = name1; name1 = name2; name2 = tmp_c;
194 d1 = noindex_filespec(name1, mode1);
195 d2 = noindex_filespec(name2, mode2);
196 diff_queue(&diff_queued_diff, d1, d2);
201 /* append basename of F to D */
202 static void append_basename(struct strbuf *path, const char *dir, const char *file)
204 const char *tail = strrchr(file, '/');
206 strbuf_addstr(path, dir);
207 while (path->len && path->buf[path->len - 1] == '/')
209 strbuf_addch(path, '/');
210 strbuf_addstr(path, tail ? tail + 1 : file);
214 * DWIM "diff D F" into "diff D/F F" and "diff F D" into "diff F D/F"
215 * Note that we append the basename of F to D/, so "diff a/b/file D"
216 * becomes "diff a/b/file D/file", not "diff a/b/file D/a/b/file".
218 static void fixup_paths(const char **path, struct strbuf *replacement)
220 unsigned int isdir0, isdir1;
222 if (path[0] == file_from_standard_input ||
223 path[1] == file_from_standard_input)
225 isdir0 = is_directory(path[0]);
226 isdir1 = is_directory(path[1]);
227 if (isdir0 == isdir1)
230 append_basename(replacement, path[0], path[1]);
231 path[0] = replacement->buf;
233 append_basename(replacement, path[1], path[0]);
234 path[1] = replacement->buf;
238 void diff_no_index(struct rev_info *revs,
239 int argc, const char **argv)
242 const char *paths[2];
243 struct strbuf replacement = STRBUF_INIT;
244 const char *prefix = revs->prefix;
246 diff_setup(&revs->diffopt);
247 for (i = 1; i < argc - 2; ) {
249 if (!strcmp(argv[i], "--no-index"))
251 else if (!strcmp(argv[i], "--"))
254 j = diff_opt_parse(&revs->diffopt, argv + i, argc - i,
257 die("invalid diff option/value: %s", argv[i]);
262 prefixlen = prefix ? strlen(prefix) : 0;
263 for (i = 0; i < 2; i++) {
264 const char *p = argv[argc - 2 + i];
267 * stdin should be spelled as "-"; if you have
268 * path that is "-", spell it as "./-".
270 p = file_from_standard_input;
272 p = xstrdup(prefix_filename(prefix, prefixlen, p));
276 fixup_paths(paths, &replacement);
278 revs->diffopt.skip_stat_unmatch = 1;
279 if (!revs->diffopt.output_format)
280 revs->diffopt.output_format = DIFF_FORMAT_PATCH;
282 DIFF_OPT_SET(&revs->diffopt, NO_INDEX);
284 DIFF_OPT_SET(&revs->diffopt, RELATIVE_NAME);
285 revs->diffopt.prefix = prefix;
287 revs->max_count = -2;
288 diff_setup_done(&revs->diffopt);
290 setup_diff_pager(&revs->diffopt);
291 DIFF_OPT_SET(&revs->diffopt, EXIT_WITH_STATUS);
293 if (queue_diff(&revs->diffopt, paths[0], paths[1]))
295 diff_set_mnemonic_prefix(&revs->diffopt, "1/", "2/");
296 diffcore_std(&revs->diffopt);
297 diff_flush(&revs->diffopt);
299 strbuf_release(&replacement);
302 * The return code for --no-index imitates diff(1):
303 * 0 = no changes, 1 = changes, else error
305 exit(diff_result_code(&revs->diffopt, 0));