]> git.ipfire.org Git - thirdparty/git.git/blame - diff.c
color-words: take an optional regular expression describing words
[thirdparty/git.git] / diff.c
CommitLineData
6973dcae
JH
1/*
2 * Copyright (C) 2005 Junio C Hamano
3 */
6973dcae
JH
4#include "cache.h"
5#include "quote.h"
6#include "diff.h"
7#include "diffcore.h"
051308f6 8#include "delta.h"
6973dcae 9#include "xdiff-interface.h"
7c92fe0e 10#include "color.h"
8c701249 11#include "attr.h"
d5535ec7 12#include "run-command.h"
23707811 13#include "utf8.h"
be58e70d 14#include "userdiff.h"
6973dcae 15
1510fea7
SP
16#ifdef NO_FAST_WORKING_DIRECTORY
17#define FAST_WORKING_DIRECTORY 0
18#else
19#define FAST_WORKING_DIRECTORY 1
20#endif
21
96f1e58f 22static int diff_detect_rename_default;
50705915 23static int diff_rename_limit_default = 200;
a624eaa7 24static int diff_suppress_blank_empty;
6b2f2d98 25int diff_use_color_default = -1;
cbe02100 26static const char *external_diff_cmd_cfg;
aecbf914 27int diff_auto_refresh_index = 1;
a5a818ee 28static int diff_mnemonic_prefix;
6973dcae 29
7c92fe0e 30static char diff_colors[][COLOR_MAXLEN] = {
f37399e6 31 "\033[m", /* reset */
448c3ef1
JH
32 "", /* PLAIN (normal) */
33 "\033[1m", /* METAINFO (bold) */
34 "\033[36m", /* FRAGINFO (cyan) */
35 "\033[31m", /* OLD (red) */
36 "\033[32m", /* NEW (green) */
37 "\033[33m", /* COMMIT (yellow) */
38 "\033[41m", /* WHITESPACE (red background) */
cd112cef
JS
39};
40
9cb92c39
JK
41static void diff_filespec_load_driver(struct diff_filespec *one);
42static char *run_textconv(const char *, struct diff_filespec *, size_t *);
43
801235c5
JH
44static int parse_diff_color_slot(const char *var, int ofs)
45{
46 if (!strcasecmp(var+ofs, "plain"))
47 return DIFF_PLAIN;
48 if (!strcasecmp(var+ofs, "meta"))
49 return DIFF_METAINFO;
50 if (!strcasecmp(var+ofs, "frag"))
51 return DIFF_FRAGINFO;
52 if (!strcasecmp(var+ofs, "old"))
53 return DIFF_FILE_OLD;
54 if (!strcasecmp(var+ofs, "new"))
55 return DIFF_FILE_NEW;
ce436973
JK
56 if (!strcasecmp(var+ofs, "commit"))
57 return DIFF_COMMIT;
448c3ef1
JH
58 if (!strcasecmp(var+ofs, "whitespace"))
59 return DIFF_WHITESPACE;
801235c5
JH
60 die("bad config variable '%s'", var);
61}
62
83ad63cf
JH
63/*
64 * These are to give UI layer defaults.
65 * The core-level commands such as git-diff-files should
66 * never be affected by the setting of diff.renames
67 * the user happens to have in the configuration file.
68 */
ef90d6d4 69int git_diff_ui_config(const char *var, const char *value, void *cb)
801235c5 70{
a159ca0c 71 if (!strcmp(var, "diff.color") || !strcmp(var, "color.diff")) {
0f6f5a40 72 diff_use_color_default = git_config_colorbool(var, value, -1);
801235c5
JH
73 return 0;
74 }
b68ea12e
EW
75 if (!strcmp(var, "diff.renames")) {
76 if (!value)
77 diff_detect_rename_default = DIFF_DETECT_RENAME;
78 else if (!strcasecmp(value, "copies") ||
79 !strcasecmp(value, "copy"))
80 diff_detect_rename_default = DIFF_DETECT_COPY;
81 else if (git_config_bool(var,value))
82 diff_detect_rename_default = DIFF_DETECT_RENAME;
83 return 0;
84 }
aecbf914
JH
85 if (!strcmp(var, "diff.autorefreshindex")) {
86 diff_auto_refresh_index = git_config_bool(var, value);
87 return 0;
88 }
a5a818ee
JH
89 if (!strcmp(var, "diff.mnemonicprefix")) {
90 diff_mnemonic_prefix = git_config_bool(var, value);
91 return 0;
92 }
daec808c
BH
93 if (!strcmp(var, "diff.external"))
94 return git_config_string(&external_diff_cmd_cfg, var, value);
f1af60bd 95
ef90d6d4 96 return git_diff_basic_config(var, value, cb);
9a1805a8
JK
97}
98
ef90d6d4 99int git_diff_basic_config(const char *var, const char *value, void *cb)
9a1805a8 100{
2b6ca6df
LT
101 if (!strcmp(var, "diff.renamelimit")) {
102 diff_rename_limit_default = git_config_int(var, value);
103 return 0;
104 }
105
c7534ef4
JK
106 switch (userdiff_config(var, value)) {
107 case 0: break;
108 case -1: return -1;
109 default: return 0;
110 }
111
1968d77d 112 if (!prefixcmp(var, "diff.color.") || !prefixcmp(var, "color.diff.")) {
801235c5 113 int slot = parse_diff_color_slot(var, 11);
64f30e94
JH
114 if (!value)
115 return config_error_nonbool(var);
7c92fe0e 116 color_parse(value, var, diff_colors[slot]);
801235c5
JH
117 return 0;
118 }
f1af60bd 119
a624eaa7
JM
120 /* like GNU diff's --suppress-blank-empty option */
121 if (!strcmp(var, "diff.suppress-blank-empty")) {
122 diff_suppress_blank_empty = git_config_bool(var, value);
123 return 0;
124 }
125
ef90d6d4 126 return git_color_default_config(var, value, cb);
801235c5
JH
127}
128
6973dcae
JH
129static char *quote_two(const char *one, const char *two)
130{
131 int need_one = quote_c_style(one, NULL, NULL, 1);
132 int need_two = quote_c_style(two, NULL, NULL, 1);
f285a2d7 133 struct strbuf res = STRBUF_INIT;
6973dcae
JH
134
135 if (need_one + need_two) {
663af342
PH
136 strbuf_addch(&res, '"');
137 quote_c_style(one, &res, NULL, 1);
138 quote_c_style(two, &res, NULL, 1);
139 strbuf_addch(&res, '"');
140 } else {
141 strbuf_addstr(&res, one);
142 strbuf_addstr(&res, two);
6973dcae 143 }
b315c5c0 144 return strbuf_detach(&res, NULL);
6973dcae
JH
145}
146
147static const char *external_diff(void)
148{
149 static const char *external_diff_cmd = NULL;
150 static int done_preparing = 0;
151
152 if (done_preparing)
153 return external_diff_cmd;
154 external_diff_cmd = getenv("GIT_EXTERNAL_DIFF");
cbe02100
JS
155 if (!external_diff_cmd)
156 external_diff_cmd = external_diff_cmd_cfg;
6973dcae
JH
157 done_preparing = 1;
158 return external_diff_cmd;
159}
160
6973dcae
JH
161static struct diff_tempfile {
162 const char *name; /* filename external diff should read from */
163 char hex[41];
164 char mode[10];
1472966c 165 char tmp_path[PATH_MAX];
6973dcae
JH
166} diff_temp[2];
167
168static int count_lines(const char *data, int size)
169{
170 int count, ch, completely_empty = 1, nl_just_seen = 0;
171 count = 0;
172 while (0 < size--) {
173 ch = *data++;
174 if (ch == '\n') {
175 count++;
176 nl_just_seen = 1;
177 completely_empty = 0;
178 }
179 else {
180 nl_just_seen = 0;
181 completely_empty = 0;
182 }
183 }
184 if (completely_empty)
185 return 0;
186 if (!nl_just_seen)
187 count++; /* no trailing newline */
188 return count;
189}
190
c0c77734 191static void print_line_count(FILE *file, int count)
6973dcae
JH
192{
193 switch (count) {
194 case 0:
c0c77734 195 fprintf(file, "0,0");
6973dcae
JH
196 break;
197 case 1:
c0c77734 198 fprintf(file, "1");
6973dcae
JH
199 break;
200 default:
c0c77734 201 fprintf(file, "1,%d", count);
6973dcae
JH
202 break;
203 }
204}
205
c0c77734
DB
206static void copy_file_with_prefix(FILE *file,
207 int prefix, const char *data, int size,
1468bd47 208 const char *set, const char *reset)
6973dcae
JH
209{
210 int ch, nl_just_seen = 1;
211 while (0 < size--) {
212 ch = *data++;
13e36ec5 213 if (nl_just_seen) {
c0c77734
DB
214 fputs(set, file);
215 putc(prefix, file);
13e36ec5
JS
216 }
217 if (ch == '\n') {
6973dcae 218 nl_just_seen = 1;
c0c77734 219 fputs(reset, file);
13e36ec5 220 } else
6973dcae 221 nl_just_seen = 0;
c0c77734 222 putc(ch, file);
6973dcae
JH
223 }
224 if (!nl_just_seen)
c0c77734 225 fprintf(file, "%s\n\\ No newline at end of file\n", reset);
6973dcae
JH
226}
227
228static void emit_rewrite_diff(const char *name_a,
229 const char *name_b,
230 struct diff_filespec *one,
13e36ec5 231 struct diff_filespec *two,
3aa1f7ca
JK
232 const char *textconv_one,
233 const char *textconv_two,
eab9a40b 234 struct diff_options *o)
6973dcae
JH
235{
236 int lc_a, lc_b;
eab9a40b 237 int color_diff = DIFF_OPT_TST(o, COLOR_DIFF);
1a9eb3b9 238 const char *name_a_tab, *name_b_tab;
13e36ec5
JS
239 const char *metainfo = diff_get_color(color_diff, DIFF_METAINFO);
240 const char *fraginfo = diff_get_color(color_diff, DIFF_FRAGINFO);
241 const char *old = diff_get_color(color_diff, DIFF_FILE_OLD);
242 const char *new = diff_get_color(color_diff, DIFF_FILE_NEW);
243 const char *reset = diff_get_color(color_diff, DIFF_RESET);
d5625091 244 static struct strbuf a_name = STRBUF_INIT, b_name = STRBUF_INIT;
a5a818ee 245 const char *a_prefix, *b_prefix;
3aa1f7ca
JK
246 const char *data_one, *data_two;
247 size_t size_one, size_two;
a5a818ee
JH
248
249 if (diff_mnemonic_prefix && DIFF_OPT_TST(o, REVERSE_DIFF)) {
250 a_prefix = o->b_prefix;
251 b_prefix = o->a_prefix;
252 } else {
253 a_prefix = o->a_prefix;
254 b_prefix = o->b_prefix;
255 }
1a9eb3b9 256
8a13becc
JH
257 name_a += (*name_a == '/');
258 name_b += (*name_b == '/');
1a9eb3b9
JH
259 name_a_tab = strchr(name_a, ' ') ? "\t" : "";
260 name_b_tab = strchr(name_b, ' ') ? "\t" : "";
261
d5625091
JH
262 strbuf_reset(&a_name);
263 strbuf_reset(&b_name);
a5a818ee
JH
264 quote_two_c_style(&a_name, a_prefix, name_a, 0);
265 quote_two_c_style(&b_name, b_prefix, name_b, 0);
d5625091 266
6973dcae
JH
267 diff_populate_filespec(one, 0);
268 diff_populate_filespec(two, 0);
3aa1f7ca
JK
269 if (textconv_one) {
270 data_one = run_textconv(textconv_one, one, &size_one);
271 if (!data_one)
272 die("unable to read files to diff");
273 }
274 else {
275 data_one = one->data;
276 size_one = one->size;
277 }
278 if (textconv_two) {
279 data_two = run_textconv(textconv_two, two, &size_two);
280 if (!data_two)
281 die("unable to read files to diff");
282 }
283 else {
284 data_two = two->data;
285 size_two = two->size;
286 }
287
288 lc_a = count_lines(data_one, size_one);
289 lc_b = count_lines(data_two, size_two);
c0c77734
DB
290 fprintf(o->file,
291 "%s--- %s%s%s\n%s+++ %s%s%s\n%s@@ -",
292 metainfo, a_name.buf, name_a_tab, reset,
293 metainfo, b_name.buf, name_b_tab, reset, fraginfo);
294 print_line_count(o->file, lc_a);
295 fprintf(o->file, " +");
296 print_line_count(o->file, lc_b);
297 fprintf(o->file, " @@%s\n", reset);
6973dcae 298 if (lc_a)
3aa1f7ca 299 copy_file_with_prefix(o->file, '-', data_one, size_one, old, reset);
6973dcae 300 if (lc_b)
3aa1f7ca 301 copy_file_with_prefix(o->file, '+', data_two, size_two, new, reset);
6973dcae
JH
302}
303
304static int fill_mmfile(mmfile_t *mf, struct diff_filespec *one)
305{
306 if (!DIFF_FILE_VALID(one)) {
d2543b8e 307 mf->ptr = (char *)""; /* does not matter */
6973dcae
JH
308 mf->size = 0;
309 return 0;
310 }
311 else if (diff_populate_filespec(one, 0))
312 return -1;
9cb92c39 313
04427ac8
JK
314 mf->ptr = one->data;
315 mf->size = one->size;
6973dcae
JH
316 return 0;
317}
318
f59a59e2
JS
319struct diff_words_buffer {
320 mmfile_t text;
321 long alloc;
2e5d2003
JS
322 struct diff_words_orig {
323 const char *begin, *end;
324 } *orig;
325 int orig_nr, orig_alloc;
f59a59e2
JS
326};
327
328static void diff_words_append(char *line, unsigned long len,
329 struct diff_words_buffer *buffer)
330{
23c1575f 331 ALLOC_GROW(buffer->text.ptr, buffer->text.size + len, buffer->alloc);
f59a59e2
JS
332 line++;
333 len--;
334 memcpy(buffer->text.ptr + buffer->text.size, line, len);
335 buffer->text.size += len;
2b6a5417 336 buffer->text.ptr[buffer->text.size] = '\0';
f59a59e2
JS
337}
338
339struct diff_words_data {
f59a59e2 340 struct diff_words_buffer minus, plus;
2e5d2003 341 const char *current_plus;
c0c77734 342 FILE *file;
2b6a5417 343 regex_t *word_regex;
f59a59e2
JS
344};
345
f59a59e2
JS
346static void fn_out_diff_words_aux(void *priv, char *line, unsigned long len)
347{
348 struct diff_words_data *diff_words = priv;
2e5d2003
JS
349 int minus_first, minus_len, plus_first, plus_len;
350 const char *minus_begin, *minus_end, *plus_begin, *plus_end;
f59a59e2 351
2e5d2003
JS
352 if (line[0] != '@' || parse_hunk_header(line, len,
353 &minus_first, &minus_len, &plus_first, &plus_len))
354 return;
f59a59e2 355
2e5d2003
JS
356 /* POSIX requires that first be decremented by one if len == 0... */
357 if (minus_len) {
358 minus_begin = diff_words->minus.orig[minus_first].begin;
359 minus_end =
360 diff_words->minus.orig[minus_first + minus_len - 1].end;
361 } else
362 minus_begin = minus_end =
363 diff_words->minus.orig[minus_first].end;
364
365 if (plus_len) {
366 plus_begin = diff_words->plus.orig[plus_first].begin;
367 plus_end = diff_words->plus.orig[plus_first + plus_len - 1].end;
368 } else
369 plus_begin = plus_end = diff_words->plus.orig[plus_first].end;
370
371 if (diff_words->current_plus != plus_begin)
372 fwrite(diff_words->current_plus,
373 plus_begin - diff_words->current_plus, 1,
374 diff_words->file);
375 if (minus_begin != minus_end)
376 color_fwrite_lines(diff_words->file,
377 diff_get_color(1, DIFF_FILE_OLD),
378 minus_end - minus_begin, minus_begin);
379 if (plus_begin != plus_end)
380 color_fwrite_lines(diff_words->file,
381 diff_get_color(1, DIFF_FILE_NEW),
382 plus_end - plus_begin, plus_begin);
383
384 diff_words->current_plus = plus_end;
f59a59e2
JS
385}
386
2b6a5417
JS
387/* This function starts looking at *begin, and returns 0 iff a word was found. */
388static int find_word_boundaries(mmfile_t *buffer, regex_t *word_regex,
389 int *begin, int *end)
390{
391 if (word_regex && *begin < buffer->size) {
392 regmatch_t match[1];
393 if (!regexec(word_regex, buffer->ptr + *begin, 1, match, 0)) {
394 char *p = memchr(buffer->ptr + *begin + match[0].rm_so,
395 '\n', match[0].rm_eo - match[0].rm_so);
396 *end = p ? p - buffer->ptr : match[0].rm_eo + *begin;
397 *begin += match[0].rm_so;
398 return *begin >= *end;
399 }
400 return -1;
401 }
402
403 /* find the next word */
404 while (*begin < buffer->size && isspace(buffer->ptr[*begin]))
405 (*begin)++;
406 if (*begin >= buffer->size)
407 return -1;
408
409 /* find the end of the word */
410 *end = *begin + 1;
411 while (*end < buffer->size && !isspace(buffer->ptr[*end]))
412 (*end)++;
413
414 return 0;
415}
416
23c1575f 417/*
2e5d2003
JS
418 * This function splits the words in buffer->text, stores the list with
419 * newline separator into out, and saves the offsets of the original words
420 * in buffer->orig.
23c1575f 421 */
2b6a5417
JS
422static void diff_words_fill(struct diff_words_buffer *buffer, mmfile_t *out,
423 regex_t *word_regex)
23c1575f 424{
2e5d2003 425 int i, j;
2b6a5417 426 long alloc = 0;
2e5d2003
JS
427
428 out->size = 0;
2b6a5417 429 out->ptr = NULL;
2e5d2003
JS
430
431 /* fake an empty "0th" word */
432 ALLOC_GROW(buffer->orig, 1, buffer->orig_alloc);
433 buffer->orig[0].begin = buffer->orig[0].end = buffer->text.ptr;
434 buffer->orig_nr = 1;
435
436 for (i = 0; i < buffer->text.size; i++) {
2b6a5417
JS
437 if (find_word_boundaries(&buffer->text, word_regex, &i, &j))
438 return;
2e5d2003
JS
439
440 /* store original boundaries */
441 ALLOC_GROW(buffer->orig, buffer->orig_nr + 1,
442 buffer->orig_alloc);
443 buffer->orig[buffer->orig_nr].begin = buffer->text.ptr + i;
444 buffer->orig[buffer->orig_nr].end = buffer->text.ptr + j;
445 buffer->orig_nr++;
446
447 /* store one word */
2b6a5417 448 ALLOC_GROW(out->ptr, out->size + j - i + 1, alloc);
2e5d2003
JS
449 memcpy(out->ptr + out->size, buffer->text.ptr + i, j - i);
450 out->ptr[out->size + j - i] = '\n';
451 out->size += j - i + 1;
452
453 i = j - 1;
454 }
23c1575f
JS
455}
456
f59a59e2
JS
457/* this executes the word diff on the accumulated buffers */
458static void diff_words_show(struct diff_words_data *diff_words)
459{
460 xpparam_t xpp;
461 xdemitconf_t xecfg;
462 xdemitcb_t ecb;
463 mmfile_t minus, plus;
f59a59e2 464
2e5d2003
JS
465 /* special case: only removal */
466 if (!diff_words->plus.text.size) {
467 color_fwrite_lines(diff_words->file,
468 diff_get_color(1, DIFF_FILE_OLD),
469 diff_words->minus.text.size, diff_words->minus.text.ptr);
470 diff_words->minus.text.size = 0;
471 return;
472 }
473
474 diff_words->current_plus = diff_words->plus.text.ptr;
475
9ccd0a88 476 memset(&xpp, 0, sizeof(xpp));
30b25010 477 memset(&xecfg, 0, sizeof(xecfg));
2b6a5417
JS
478 diff_words_fill(&diff_words->minus, &minus, diff_words->word_regex);
479 diff_words_fill(&diff_words->plus, &plus, diff_words->word_regex);
f59a59e2 480 xpp.flags = XDF_NEED_MINIMAL;
2b6a5417 481 /* as only the hunk header will be parsed, we need a 0-context */
2e5d2003 482 xecfg.ctxlen = 0;
8a3f524b
JH
483 xdi_diff_outf(&minus, &plus, fn_out_diff_words_aux, diff_words,
484 &xpp, &xecfg, &ecb);
f59a59e2
JS
485 free(minus.ptr);
486 free(plus.ptr);
2e5d2003
JS
487 if (diff_words->current_plus != diff_words->plus.text.ptr +
488 diff_words->plus.text.size)
489 fwrite(diff_words->current_plus,
490 diff_words->plus.text.ptr + diff_words->plus.text.size
491 - diff_words->current_plus, 1,
492 diff_words->file);
f59a59e2 493 diff_words->minus.text.size = diff_words->plus.text.size = 0;
f59a59e2
JS
494}
495
23707811
JH
496typedef unsigned long (*sane_truncate_fn)(char *line, unsigned long len);
497
6973dcae 498struct emit_callback {
cd112cef 499 int nparents, color_diff;
cf1b7869 500 unsigned ws_rule;
23707811 501 sane_truncate_fn truncate;
6973dcae 502 const char **label_path;
f59a59e2 503 struct diff_words_data *diff_words;
34a5e1a2 504 int *found_changesp;
c0c77734 505 FILE *file;
6973dcae
JH
506};
507
f59a59e2
JS
508static void free_diff_words_data(struct emit_callback *ecbdata)
509{
510 if (ecbdata->diff_words) {
511 /* flush buffers */
512 if (ecbdata->diff_words->minus.text.size ||
513 ecbdata->diff_words->plus.text.size)
514 diff_words_show(ecbdata->diff_words);
515
8e0f7003 516 free (ecbdata->diff_words->minus.text.ptr);
2e5d2003 517 free (ecbdata->diff_words->minus.orig);
8e0f7003 518 free (ecbdata->diff_words->plus.text.ptr);
2e5d2003 519 free (ecbdata->diff_words->plus.orig);
2b6a5417 520 free(ecbdata->diff_words->word_regex);
f59a59e2
JS
521 free(ecbdata->diff_words);
522 ecbdata->diff_words = NULL;
523 }
524}
525
ce436973 526const char *diff_get_color(int diff_use_color, enum color_diff ix)
cd112cef
JS
527{
528 if (diff_use_color)
50f575fc
LT
529 return diff_colors[ix];
530 return "";
cd112cef
JS
531}
532
c0c77734 533static void emit_line(FILE *file, const char *set, const char *reset, const char *line, int len)
448c3ef1 534{
39280970
JH
535 int has_trailing_newline, has_trailing_carriage_return;
536
537 has_trailing_newline = (len > 0 && line[len-1] == '\n');
4afbcab9 538 if (has_trailing_newline)
06ff64ae 539 len--;
39280970
JH
540 has_trailing_carriage_return = (len > 0 && line[len-1] == '\r');
541 if (has_trailing_carriage_return)
542 len--;
06ff64ae 543
c0c77734
DB
544 fputs(set, file);
545 fwrite(line, len, 1, file);
546 fputs(reset, file);
39280970
JH
547 if (has_trailing_carriage_return)
548 fputc('\r', file);
4afbcab9
JH
549 if (has_trailing_newline)
550 fputc('\n', file);
448c3ef1
JH
551}
552
c5a8c3ec
JS
553static void emit_add_line(const char *reset, struct emit_callback *ecbdata, const char *line, int len)
554{
555 const char *ws = diff_get_color(ecbdata->color_diff, DIFF_WHITESPACE);
556 const char *set = diff_get_color(ecbdata->color_diff, DIFF_FILE_NEW);
557
558 if (!*ws)
c0c77734 559 emit_line(ecbdata->file, set, reset, line, len);
c1795bb0
WC
560 else {
561 /* Emit just the prefix, then the rest. */
c0c77734 562 emit_line(ecbdata->file, set, reset, line, ecbdata->nparents);
8f8841e9
JH
563 ws_check_emit(line + ecbdata->nparents,
564 len - ecbdata->nparents, ecbdata->ws_rule,
565 ecbdata->file, set, reset, ws);
c1795bb0 566 }
c5a8c3ec
JS
567}
568
23707811
JH
569static unsigned long sane_truncate_line(struct emit_callback *ecb, char *line, unsigned long len)
570{
571 const char *cp;
572 unsigned long allot;
573 size_t l = len;
574
575 if (ecb->truncate)
576 return ecb->truncate(line, len);
577 cp = line;
578 allot = l;
579 while (0 < l) {
580 (void) utf8_width(&cp, &l);
581 if (!cp)
582 break; /* truncated in the middle? */
583 }
584 return allot - l;
585}
586
cd112cef 587static void fn_out_consume(void *priv, char *line, unsigned long len)
6973dcae
JH
588{
589 int i;
448c3ef1 590 int color;
6973dcae 591 struct emit_callback *ecbdata = priv;
472ca780
JK
592 const char *meta = diff_get_color(ecbdata->color_diff, DIFF_METAINFO);
593 const char *plain = diff_get_color(ecbdata->color_diff, DIFF_PLAIN);
ce436973 594 const char *reset = diff_get_color(ecbdata->color_diff, DIFF_RESET);
6973dcae 595
34a5e1a2
JS
596 *(ecbdata->found_changesp) = 1;
597
6973dcae 598 if (ecbdata->label_path[0]) {
1a9eb3b9
JH
599 const char *name_a_tab, *name_b_tab;
600
601 name_a_tab = strchr(ecbdata->label_path[0], ' ') ? "\t" : "";
602 name_b_tab = strchr(ecbdata->label_path[1], ' ') ? "\t" : "";
603
c0c77734
DB
604 fprintf(ecbdata->file, "%s--- %s%s%s\n",
605 meta, ecbdata->label_path[0], reset, name_a_tab);
606 fprintf(ecbdata->file, "%s+++ %s%s%s\n",
607 meta, ecbdata->label_path[1], reset, name_b_tab);
6973dcae
JH
608 ecbdata->label_path[0] = ecbdata->label_path[1] = NULL;
609 }
cd112cef 610
a624eaa7
JM
611 if (diff_suppress_blank_empty
612 && len == 2 && line[0] == ' ' && line[1] == '\n') {
613 line[0] = '\n';
614 len = 1;
615 }
616
cd112cef
JS
617 /* This is not really necessary for now because
618 * this codepath only deals with two-way diffs.
619 */
620 for (i = 0; i < len && line[i] == '@'; i++)
621 ;
622 if (2 <= i && i < len && line[i] == ' ') {
623 ecbdata->nparents = i - 1;
23707811 624 len = sane_truncate_line(ecbdata, line, len);
c0c77734
DB
625 emit_line(ecbdata->file,
626 diff_get_color(ecbdata->color_diff, DIFF_FRAGINFO),
448c3ef1 627 reset, line, len);
23707811 628 if (line[len-1] != '\n')
c0c77734 629 putc('\n', ecbdata->file);
448c3ef1 630 return;
cd112cef 631 }
448c3ef1
JH
632
633 if (len < ecbdata->nparents) {
c0c77734 634 emit_line(ecbdata->file, reset, reset, line, len);
448c3ef1 635 return;
cd112cef 636 }
448c3ef1
JH
637
638 color = DIFF_PLAIN;
639 if (ecbdata->diff_words && ecbdata->nparents != 1)
640 /* fall back to normal diff */
641 free_diff_words_data(ecbdata);
642 if (ecbdata->diff_words) {
643 if (line[0] == '-') {
644 diff_words_append(line, len,
645 &ecbdata->diff_words->minus);
646 return;
647 } else if (line[0] == '+') {
648 diff_words_append(line, len,
649 &ecbdata->diff_words->plus);
650 return;
651 }
652 if (ecbdata->diff_words->minus.text.size ||
653 ecbdata->diff_words->plus.text.size)
654 diff_words_show(ecbdata->diff_words);
655 line++;
50f575fc 656 len--;
c0c77734 657 emit_line(ecbdata->file, plain, reset, line, len);
448c3ef1
JH
658 return;
659 }
660 for (i = 0; i < ecbdata->nparents && len; i++) {
661 if (line[i] == '-')
662 color = DIFF_FILE_OLD;
663 else if (line[i] == '+')
664 color = DIFF_FILE_NEW;
665 }
666
667 if (color != DIFF_FILE_NEW) {
c0c77734
DB
668 emit_line(ecbdata->file,
669 diff_get_color(ecbdata->color_diff, color),
448c3ef1
JH
670 reset, line, len);
671 return;
672 }
673 emit_add_line(reset, ecbdata, line, len);
6973dcae
JH
674}
675
676static char *pprint_rename(const char *a, const char *b)
677{
678 const char *old = a;
679 const char *new = b;
f285a2d7 680 struct strbuf name = STRBUF_INIT;
6973dcae
JH
681 int pfx_length, sfx_length;
682 int len_a = strlen(a);
683 int len_b = strlen(b);
663af342 684 int a_midlen, b_midlen;
e5bfbf9b
AJ
685 int qlen_a = quote_c_style(a, NULL, NULL, 0);
686 int qlen_b = quote_c_style(b, NULL, NULL, 0);
687
688 if (qlen_a || qlen_b) {
663af342
PH
689 quote_c_style(a, &name, NULL, 0);
690 strbuf_addstr(&name, " => ");
691 quote_c_style(b, &name, NULL, 0);
b315c5c0 692 return strbuf_detach(&name, NULL);
e5bfbf9b 693 }
6973dcae
JH
694
695 /* Find common prefix */
696 pfx_length = 0;
697 while (*old && *new && *old == *new) {
698 if (*old == '/')
699 pfx_length = old - a + 1;
700 old++;
701 new++;
702 }
703
704 /* Find common suffix */
705 old = a + len_a;
706 new = b + len_b;
707 sfx_length = 0;
708 while (a <= old && b <= new && *old == *new) {
709 if (*old == '/')
710 sfx_length = len_a - (old - a);
711 old--;
712 new--;
713 }
714
715 /*
716 * pfx{mid-a => mid-b}sfx
717 * {pfx-a => pfx-b}sfx
718 * pfx{sfx-a => sfx-b}
719 * name-a => name-b
720 */
663af342
PH
721 a_midlen = len_a - pfx_length - sfx_length;
722 b_midlen = len_b - pfx_length - sfx_length;
723 if (a_midlen < 0)
724 a_midlen = 0;
725 if (b_midlen < 0)
726 b_midlen = 0;
727
728 strbuf_grow(&name, pfx_length + a_midlen + b_midlen + sfx_length + 7);
6973dcae 729 if (pfx_length + sfx_length) {
663af342
PH
730 strbuf_add(&name, a, pfx_length);
731 strbuf_addch(&name, '{');
6973dcae 732 }
663af342
PH
733 strbuf_add(&name, a + pfx_length, a_midlen);
734 strbuf_addstr(&name, " => ");
735 strbuf_add(&name, b + pfx_length, b_midlen);
736 if (pfx_length + sfx_length) {
737 strbuf_addch(&name, '}');
738 strbuf_add(&name, a + len_a - sfx_length, sfx_length);
6973dcae 739 }
b315c5c0 740 return strbuf_detach(&name, NULL);
6973dcae
JH
741}
742
743struct diffstat_t {
6973dcae
JH
744 int nr;
745 int alloc;
746 struct diffstat_file {
f604652e 747 char *from_name;
6973dcae 748 char *name;
f604652e 749 char *print_name;
6973dcae
JH
750 unsigned is_unmerged:1;
751 unsigned is_binary:1;
752 unsigned is_renamed:1;
753 unsigned int added, deleted;
754 } **files;
755};
756
757static struct diffstat_file *diffstat_add(struct diffstat_t *diffstat,
758 const char *name_a,
759 const char *name_b)
760{
761 struct diffstat_file *x;
762 x = xcalloc(sizeof (*x), 1);
763 if (diffstat->nr == diffstat->alloc) {
764 diffstat->alloc = alloc_nr(diffstat->alloc);
765 diffstat->files = xrealloc(diffstat->files,
766 diffstat->alloc * sizeof(x));
767 }
768 diffstat->files[diffstat->nr++] = x;
769 if (name_b) {
f604652e
JH
770 x->from_name = xstrdup(name_a);
771 x->name = xstrdup(name_b);
6973dcae
JH
772 x->is_renamed = 1;
773 }
f604652e
JH
774 else {
775 x->from_name = NULL;
9befac47 776 x->name = xstrdup(name_a);
f604652e 777 }
6973dcae
JH
778 return x;
779}
780
781static void diffstat_consume(void *priv, char *line, unsigned long len)
782{
783 struct diffstat_t *diffstat = priv;
784 struct diffstat_file *x = diffstat->files[diffstat->nr - 1];
785
786 if (line[0] == '+')
787 x->added++;
788 else if (line[0] == '-')
789 x->deleted++;
790}
791
698ce6f8 792const char mime_boundary_leader[] = "------------";
6973dcae 793
a2540023
JH
794static int scale_linear(int it, int width, int max_change)
795{
796 /*
3ed74e60
JS
797 * make sure that at least one '-' is printed if there were deletions,
798 * and likewise for '+'.
a2540023 799 */
3ed74e60
JS
800 if (max_change < 2)
801 return it;
802 return ((it - 1) * (width - 1) + max_change - 1) / (max_change - 1);
a2540023
JH
803}
804
c0c77734
DB
805static void show_name(FILE *file,
806 const char *prefix, const char *name, int len,
785f7432 807 const char *reset, const char *set)
a2540023 808{
c0c77734 809 fprintf(file, " %s%s%-*s%s |", set, prefix, len, name, reset);
a2540023
JH
810}
811
c0c77734 812static void show_graph(FILE *file, char ch, int cnt, const char *set, const char *reset)
a2540023
JH
813{
814 if (cnt <= 0)
815 return;
c0c77734 816 fprintf(file, "%s", set);
a2540023 817 while (cnt--)
c0c77734
DB
818 putc(ch, file);
819 fprintf(file, "%s", reset);
a2540023
JH
820}
821
f604652e
JH
822static void fill_print_name(struct diffstat_file *file)
823{
824 char *pname;
825
826 if (file->print_name)
827 return;
828
829 if (!file->is_renamed) {
f285a2d7 830 struct strbuf buf = STRBUF_INIT;
f604652e
JH
831 if (quote_c_style(file->name, &buf, NULL, 0)) {
832 pname = strbuf_detach(&buf, NULL);
833 } else {
834 pname = file->name;
835 strbuf_release(&buf);
836 }
837 } else {
838 pname = pprint_rename(file->from_name, file->name);
839 }
840 file->print_name = pname;
841}
842
a2540023 843static void show_stats(struct diffstat_t* data, struct diff_options *options)
6973dcae 844{
6973dcae 845 int i, len, add, del, total, adds = 0, dels = 0;
a2540023 846 int max_change = 0, max_len = 0;
6973dcae 847 int total_files = data->nr;
a2540023 848 int width, name_width;
785f7432 849 const char *reset, *set, *add_c, *del_c;
6973dcae
JH
850
851 if (data->nr == 0)
852 return;
853
a2540023
JH
854 width = options->stat_width ? options->stat_width : 80;
855 name_width = options->stat_name_width ? options->stat_name_width : 50;
856
857 /* Sanity: give at least 5 columns to the graph,
858 * but leave at least 10 columns for the name.
859 */
861d1af3
OM
860 if (width < 25)
861 width = 25;
862 if (name_width < 10)
863 name_width = 10;
864 else if (width < name_width + 15)
865 name_width = width - 15;
a2540023
JH
866
867 /* Find the longest filename and max number of changes */
8f67f8ae
PH
868 reset = diff_get_color_opt(options, DIFF_RESET);
869 set = diff_get_color_opt(options, DIFF_PLAIN);
870 add_c = diff_get_color_opt(options, DIFF_FILE_NEW);
871 del_c = diff_get_color_opt(options, DIFF_FILE_OLD);
785f7432 872
6973dcae
JH
873 for (i = 0; i < data->nr; i++) {
874 struct diffstat_file *file = data->files[i];
a2540023 875 int change = file->added + file->deleted;
f604652e
JH
876 fill_print_name(file);
877 len = strlen(file->print_name);
6973dcae
JH
878 if (max_len < len)
879 max_len = len;
880
881 if (file->is_binary || file->is_unmerged)
882 continue;
a2540023
JH
883 if (max_change < change)
884 max_change = change;
6973dcae
JH
885 }
886
a2540023
JH
887 /* Compute the width of the graph part;
888 * 10 is for one blank at the beginning of the line plus
889 * " | count " between the name and the graph.
890 *
891 * From here on, name_width is the width of the name area,
892 * and width is the width of the graph area.
893 */
894 name_width = (name_width < max_len) ? name_width : max_len;
895 if (width < (name_width + 10) + max_change)
896 width = width - (name_width + 10);
897 else
898 width = max_change;
899
6973dcae 900 for (i = 0; i < data->nr; i++) {
d2543b8e 901 const char *prefix = "";
f604652e 902 char *name = data->files[i]->print_name;
6973dcae
JH
903 int added = data->files[i]->added;
904 int deleted = data->files[i]->deleted;
a2540023 905 int name_len;
6973dcae
JH
906
907 /*
908 * "scale" the filename
909 */
a2540023
JH
910 len = name_width;
911 name_len = strlen(name);
912 if (name_width < name_len) {
6973dcae
JH
913 char *slash;
914 prefix = "...";
a2540023
JH
915 len -= 3;
916 name += name_len - len;
6973dcae
JH
917 slash = strchr(name, '/');
918 if (slash)
919 name = slash;
920 }
6973dcae
JH
921
922 if (data->files[i]->is_binary) {
c0c77734
DB
923 show_name(options->file, prefix, name, len, reset, set);
924 fprintf(options->file, " Bin ");
925 fprintf(options->file, "%s%d%s", del_c, deleted, reset);
926 fprintf(options->file, " -> ");
927 fprintf(options->file, "%s%d%s", add_c, added, reset);
928 fprintf(options->file, " bytes");
929 fprintf(options->file, "\n");
f604652e 930 continue;
6973dcae
JH
931 }
932 else if (data->files[i]->is_unmerged) {
c0c77734
DB
933 show_name(options->file, prefix, name, len, reset, set);
934 fprintf(options->file, " Unmerged\n");
f604652e 935 continue;
6973dcae
JH
936 }
937 else if (!data->files[i]->is_renamed &&
938 (added + deleted == 0)) {
939 total_files--;
f604652e 940 continue;
6973dcae
JH
941 }
942
a2540023
JH
943 /*
944 * scale the add/delete
945 */
6973dcae
JH
946 add = added;
947 del = deleted;
948 total = add + del;
949 adds += add;
950 dels += del;
951
a2540023 952 if (width <= max_change) {
a2540023 953 add = scale_linear(add, width, max_change);
3ed74e60
JS
954 del = scale_linear(del, width, max_change);
955 total = add + del;
6973dcae 956 }
c0c77734 957 show_name(options->file, prefix, name, len, reset, set);
4d9b5359
JK
958 fprintf(options->file, "%5d%s", added + deleted,
959 added + deleted ? " " : "");
c0c77734
DB
960 show_graph(options->file, '+', add, add_c, reset);
961 show_graph(options->file, '-', del, del_c, reset);
962 fprintf(options->file, "\n");
963 }
964 fprintf(options->file,
965 "%s %d files changed, %d insertions(+), %d deletions(-)%s\n",
785f7432 966 set, total_files, adds, dels, reset);
6973dcae
JH
967}
968
c0c77734 969static void show_shortstats(struct diffstat_t* data, struct diff_options *options)
ebd124c6
NP
970{
971 int i, adds = 0, dels = 0, total_files = data->nr;
972
973 if (data->nr == 0)
974 return;
975
976 for (i = 0; i < data->nr; i++) {
977 if (!data->files[i]->is_binary &&
978 !data->files[i]->is_unmerged) {
979 int added = data->files[i]->added;
980 int deleted= data->files[i]->deleted;
981 if (!data->files[i]->is_renamed &&
982 (added + deleted == 0)) {
983 total_files--;
984 } else {
985 adds += added;
986 dels += deleted;
987 }
988 }
ebd124c6 989 }
c0c77734 990 fprintf(options->file, " %d files changed, %d insertions(+), %d deletions(-)\n",
ebd124c6
NP
991 total_files, adds, dels);
992}
993
74e2abe5
JH
994static void show_numstat(struct diffstat_t* data, struct diff_options *options)
995{
996 int i;
997
f604652e
JH
998 if (data->nr == 0)
999 return;
1000
74e2abe5
JH
1001 for (i = 0; i < data->nr; i++) {
1002 struct diffstat_file *file = data->files[i];
1003
bfddbc5e 1004 if (file->is_binary)
c0c77734 1005 fprintf(options->file, "-\t-\t");
bfddbc5e 1006 else
c0c77734
DB
1007 fprintf(options->file,
1008 "%d\t%d\t", file->added, file->deleted);
f604652e
JH
1009 if (options->line_termination) {
1010 fill_print_name(file);
1011 if (!file->is_renamed)
c0c77734 1012 write_name_quoted(file->name, options->file,
f604652e
JH
1013 options->line_termination);
1014 else {
c0c77734
DB
1015 fputs(file->print_name, options->file);
1016 putc(options->line_termination, options->file);
f604652e 1017 }
663af342 1018 } else {
f604652e 1019 if (file->is_renamed) {
c0c77734
DB
1020 putc('\0', options->file);
1021 write_name_quoted(file->from_name, options->file, '\0');
f604652e 1022 }
c0c77734 1023 write_name_quoted(file->name, options->file, '\0');
663af342 1024 }
74e2abe5
JH
1025 }
1026}
1027
c04a7155
JH
1028struct dirstat_file {
1029 const char *name;
1030 unsigned long changed;
7df7c019
LT
1031};
1032
c04a7155
JH
1033struct dirstat_dir {
1034 struct dirstat_file *files;
1035 int alloc, nr, percent, cumulative;
1036};
1037
1038static long gather_dirstat(FILE *file, struct dirstat_dir *dir, unsigned long changed, const char *base, int baselen)
7df7c019
LT
1039{
1040 unsigned long this_dir = 0;
1041 unsigned int sources = 0;
1042
1043 while (dir->nr) {
c04a7155 1044 struct dirstat_file *f = dir->files;
7df7c019
LT
1045 int namelen = strlen(f->name);
1046 unsigned long this;
1047 char *slash;
1048
1049 if (namelen < baselen)
1050 break;
1051 if (memcmp(f->name, base, baselen))
1052 break;
1053 slash = strchr(f->name + baselen, '/');
1054 if (slash) {
1055 int newbaselen = slash + 1 - f->name;
c0c77734 1056 this = gather_dirstat(file, dir, changed, f->name, newbaselen);
7df7c019
LT
1057 sources++;
1058 } else {
c04a7155 1059 this = f->changed;
7df7c019
LT
1060 dir->files++;
1061 dir->nr--;
1062 sources += 2;
1063 }
1064 this_dir += this;
1065 }
1066
1067 /*
1068 * We don't report dirstat's for
1069 * - the top level
1070 * - or cases where everything came from a single directory
1071 * under this directory (sources == 1).
1072 */
1073 if (baselen && sources != 1) {
1074 int permille = this_dir * 1000 / changed;
1075 if (permille) {
1076 int percent = permille / 10;
1077 if (percent >= dir->percent) {
c0c77734 1078 fprintf(file, "%4d.%01d%% %.*s\n", percent, permille % 10, baselen, base);
7df7c019
LT
1079 if (!dir->cumulative)
1080 return 0;
1081 }
1082 }
1083 }
1084 return this_dir;
1085}
1086
441bca0b
LT
1087static int dirstat_compare(const void *_a, const void *_b)
1088{
1089 const struct dirstat_file *a = _a;
1090 const struct dirstat_file *b = _b;
1091 return strcmp(a->name, b->name);
1092}
1093
c04a7155 1094static void show_dirstat(struct diff_options *options)
7df7c019
LT
1095{
1096 int i;
1097 unsigned long changed;
c04a7155
JH
1098 struct dirstat_dir dir;
1099 struct diff_queue_struct *q = &diff_queued_diff;
1100
1101 dir.files = NULL;
1102 dir.alloc = 0;
1103 dir.nr = 0;
1104 dir.percent = options->dirstat_percent;
f88d225f 1105 dir.cumulative = DIFF_OPT_TST(options, DIRSTAT_CUMULATIVE);
7df7c019 1106
7df7c019 1107 changed = 0;
c04a7155
JH
1108 for (i = 0; i < q->nr; i++) {
1109 struct diff_filepair *p = q->queue[i];
1110 const char *name;
1111 unsigned long copied, added, damage;
1112
1113 name = p->one->path ? p->one->path : p->two->path;
1114
1115 if (DIFF_FILE_VALID(p->one) && DIFF_FILE_VALID(p->two)) {
1116 diff_populate_filespec(p->one, 0);
1117 diff_populate_filespec(p->two, 0);
1118 diffcore_count_changes(p->one, p->two, NULL, NULL, 0,
1119 &copied, &added);
1120 diff_free_filespec_data(p->one);
1121 diff_free_filespec_data(p->two);
1122 } else if (DIFF_FILE_VALID(p->one)) {
1123 diff_populate_filespec(p->one, 1);
1124 copied = added = 0;
1125 diff_free_filespec_data(p->one);
1126 } else if (DIFF_FILE_VALID(p->two)) {
1127 diff_populate_filespec(p->two, 1);
1128 copied = 0;
1129 added = p->two->size;
1130 diff_free_filespec_data(p->two);
1131 } else
2b0b551d 1132 continue;
c04a7155
JH
1133
1134 /*
1135 * Original minus copied is the removed material,
1136 * added is the new material. They are both damages
fd33777b
HO
1137 * made to the preimage. In --dirstat-by-file mode, count
1138 * damaged files, not damaged lines. This is done by
1139 * counting only a single damaged line per file.
c04a7155
JH
1140 */
1141 damage = (p->one->size - copied) + added;
fd33777b
HO
1142 if (DIFF_OPT_TST(options, DIRSTAT_BY_FILE) && damage > 0)
1143 damage = 1;
c04a7155
JH
1144
1145 ALLOC_GROW(dir.files, dir.nr + 1, dir.alloc);
1146 dir.files[dir.nr].name = name;
1147 dir.files[dir.nr].changed = damage;
1148 changed += damage;
1149 dir.nr++;
7df7c019
LT
1150 }
1151
1152 /* This can happen even with many files, if everything was renames */
1153 if (!changed)
1154 return;
1155
1156 /* Show all directories with more than x% of the changes */
441bca0b 1157 qsort(dir.files, dir.nr, sizeof(dir.files[0]), dirstat_compare);
c0c77734 1158 gather_dirstat(options->file, &dir, changed, "", 0);
7df7c019
LT
1159}
1160
f604652e
JH
1161static void free_diffstat_info(struct diffstat_t *diffstat)
1162{
1163 int i;
1164 for (i = 0; i < diffstat->nr; i++) {
1165 struct diffstat_file *f = diffstat->files[i];
1166 if (f->name != f->print_name)
1167 free(f->print_name);
1168 free(f->name);
1169 free(f->from_name);
1170 free(f);
1171 }
1172 free(diffstat->files);
1173}
1174
88246898 1175struct checkdiff_t {
88246898 1176 const char *filename;
1ba111d1
JH
1177 int lineno;
1178 struct diff_options *o;
cf1b7869 1179 unsigned ws_rule;
62c64895 1180 unsigned status;
877f23cc 1181 int trailing_blanks_start;
88246898
JS
1182};
1183
04954043
JH
1184static int is_conflict_marker(const char *line, unsigned long len)
1185{
1186 char firstchar;
1187 int cnt;
1188
1189 if (len < 8)
1190 return 0;
1191 firstchar = line[0];
1192 switch (firstchar) {
1193 case '=': case '>': case '<':
1194 break;
1195 default:
1196 return 0;
1197 }
1198 for (cnt = 1; cnt < 7; cnt++)
1199 if (line[cnt] != firstchar)
1200 return 0;
1201 /* line[0] thru line[6] are same as firstchar */
1202 if (firstchar == '=') {
1203 /* divider between ours and theirs? */
1204 if (len != 8 || line[7] != '\n')
1205 return 0;
1206 } else if (len < 8 || !isspace(line[7])) {
1207 /* not divider before ours nor after theirs */
1208 return 0;
1209 }
1210 return 1;
1211}
1212
88246898
JS
1213static void checkdiff_consume(void *priv, char *line, unsigned long len)
1214{
1215 struct checkdiff_t *data = priv;
1ba111d1
JH
1216 int color_diff = DIFF_OPT_TST(data->o, COLOR_DIFF);
1217 const char *ws = diff_get_color(color_diff, DIFF_WHITESPACE);
1218 const char *reset = diff_get_color(color_diff, DIFF_RESET);
1219 const char *set = diff_get_color(color_diff, DIFF_FILE_NEW);
c1795bb0 1220 char *err;
88246898
JS
1221
1222 if (line[0] == '+') {
18374e58 1223 unsigned bad;
0ef617f4 1224 data->lineno++;
877f23cc
JH
1225 if (!ws_blank_line(line + 1, len - 1, data->ws_rule))
1226 data->trailing_blanks_start = 0;
1227 else if (!data->trailing_blanks_start)
1228 data->trailing_blanks_start = data->lineno;
04954043
JH
1229 if (is_conflict_marker(line + 1, len - 1)) {
1230 data->status |= 1;
1231 fprintf(data->o->file,
1232 "%s:%d: leftover conflict marker\n",
1233 data->filename, data->lineno);
1234 }
8f8841e9 1235 bad = ws_check(line + 1, len - 1, data->ws_rule);
18374e58 1236 if (!bad)
c1795bb0 1237 return;
18374e58
JH
1238 data->status |= bad;
1239 err = whitespace_error_string(bad);
1ba111d1
JH
1240 fprintf(data->o->file, "%s:%d: %s.\n",
1241 data->filename, data->lineno, err);
c1795bb0 1242 free(err);
1ba111d1 1243 emit_line(data->o->file, set, reset, line, 1);
8f8841e9 1244 ws_check_emit(line + 1, len - 1, data->ws_rule,
1ba111d1 1245 data->o->file, set, reset, ws);
877f23cc 1246 } else if (line[0] == ' ') {
88246898 1247 data->lineno++;
877f23cc
JH
1248 data->trailing_blanks_start = 0;
1249 } else if (line[0] == '@') {
88246898
JS
1250 char *plus = strchr(line, '+');
1251 if (plus)
0ef617f4 1252 data->lineno = strtol(plus, NULL, 10) - 1;
88246898
JS
1253 else
1254 die("invalid diff");
877f23cc 1255 data->trailing_blanks_start = 0;
88246898
JS
1256 }
1257}
1258
0660626c
JH
1259static unsigned char *deflate_it(char *data,
1260 unsigned long size,
1261 unsigned long *result_size)
051308f6 1262{
0660626c
JH
1263 int bound;
1264 unsigned char *deflated;
1265 z_stream stream;
1266
1267 memset(&stream, 0, sizeof(stream));
12f6c308 1268 deflateInit(&stream, zlib_compression_level);
0660626c
JH
1269 bound = deflateBound(&stream, size);
1270 deflated = xmalloc(bound);
1271 stream.next_out = deflated;
1272 stream.avail_out = bound;
1273
1274 stream.next_in = (unsigned char *)data;
1275 stream.avail_in = size;
1276 while (deflate(&stream, Z_FINISH) == Z_OK)
1277 ; /* nothing */
1278 deflateEnd(&stream);
1279 *result_size = stream.total_out;
1280 return deflated;
051308f6
JH
1281}
1282
c0c77734 1283static void emit_binary_diff_body(FILE *file, mmfile_t *one, mmfile_t *two)
051308f6 1284{
0660626c
JH
1285 void *cp;
1286 void *delta;
1287 void *deflated;
1288 void *data;
1289 unsigned long orig_size;
1290 unsigned long delta_size;
1291 unsigned long deflate_size;
1292 unsigned long data_size;
051308f6 1293
0660626c
JH
1294 /* We could do deflated delta, or we could do just deflated two,
1295 * whichever is smaller.
051308f6 1296 */
0660626c
JH
1297 delta = NULL;
1298 deflated = deflate_it(two->ptr, two->size, &deflate_size);
1299 if (one->size && two->size) {
1300 delta = diff_delta(one->ptr, one->size,
1301 two->ptr, two->size,
1302 &delta_size, deflate_size);
1303 if (delta) {
1304 void *to_free = delta;
1305 orig_size = delta_size;
1306 delta = deflate_it(delta, delta_size, &delta_size);
1307 free(to_free);
051308f6
JH
1308 }
1309 }
051308f6 1310
0660626c 1311 if (delta && delta_size < deflate_size) {
c0c77734 1312 fprintf(file, "delta %lu\n", orig_size);
0660626c
JH
1313 free(deflated);
1314 data = delta;
1315 data_size = delta_size;
1316 }
1317 else {
c0c77734 1318 fprintf(file, "literal %lu\n", two->size);
0660626c
JH
1319 free(delta);
1320 data = deflated;
1321 data_size = deflate_size;
1322 }
051308f6 1323
0660626c
JH
1324 /* emit data encoded in base85 */
1325 cp = data;
1326 while (data_size) {
1327 int bytes = (52 < data_size) ? 52 : data_size;
051308f6 1328 char line[70];
0660626c 1329 data_size -= bytes;
051308f6
JH
1330 if (bytes <= 26)
1331 line[0] = bytes + 'A' - 1;
1332 else
1333 line[0] = bytes - 26 + 'a' - 1;
1334 encode_85(line + 1, cp, bytes);
1d7f171c 1335 cp = (char *) cp + bytes;
c0c77734
DB
1336 fputs(line, file);
1337 fputc('\n', file);
051308f6 1338 }
c0c77734 1339 fprintf(file, "\n");
0660626c 1340 free(data);
051308f6
JH
1341}
1342
c0c77734 1343static void emit_binary_diff(FILE *file, mmfile_t *one, mmfile_t *two)
d4c452f0 1344{
c0c77734
DB
1345 fprintf(file, "GIT binary patch\n");
1346 emit_binary_diff_body(file, one, two);
1347 emit_binary_diff_body(file, two, one);
d4c452f0
JH
1348}
1349
72cf4841 1350static void diff_filespec_load_driver(struct diff_filespec *one)
6973dcae 1351{
122aa6f9
JK
1352 if (!one->driver)
1353 one->driver = userdiff_find_by_path(one->path);
1354 if (!one->driver)
1355 one->driver = userdiff_find_by_name("default");
29a3eefd
JH
1356}
1357
1358int diff_filespec_is_binary(struct diff_filespec *one)
1359{
122aa6f9
JK
1360 if (one->is_binary == -1) {
1361 diff_filespec_load_driver(one);
1362 if (one->driver->binary != -1)
1363 one->is_binary = one->driver->binary;
1364 else {
1365 if (!one->data && DIFF_FILE_VALID(one))
1366 diff_populate_filespec(one, 0);
1367 if (one->data)
1368 one->is_binary = buffer_is_binary(one->data,
1369 one->size);
1370 if (one->is_binary == -1)
1371 one->is_binary = 0;
1372 }
1373 }
29a3eefd 1374 return one->is_binary;
6973dcae
JH
1375}
1376
be58e70d 1377static const struct userdiff_funcname *diff_funcname_pattern(struct diff_filespec *one)
f258475a 1378{
122aa6f9
JK
1379 diff_filespec_load_driver(one);
1380 return one->driver->funcname.pattern ? &one->driver->funcname : NULL;
f258475a
JH
1381}
1382
a5a818ee
JH
1383void diff_set_mnemonic_prefix(struct diff_options *options, const char *a, const char *b)
1384{
1385 if (!options->a_prefix)
1386 options->a_prefix = a;
1387 if (!options->b_prefix)
1388 options->b_prefix = b;
1389}
1390
04427ac8
JK
1391static const char *get_textconv(struct diff_filespec *one)
1392{
1393 if (!DIFF_FILE_VALID(one))
1394 return NULL;
2675773a
JK
1395 if (!S_ISREG(one->mode))
1396 return NULL;
04427ac8
JK
1397 diff_filespec_load_driver(one);
1398 return one->driver->textconv;
1399}
1400
6973dcae
JH
1401static void builtin_diff(const char *name_a,
1402 const char *name_b,
1403 struct diff_filespec *one,
1404 struct diff_filespec *two,
1405 const char *xfrm_msg,
051308f6 1406 struct diff_options *o,
6973dcae
JH
1407 int complete_rewrite)
1408{
1409 mmfile_t mf1, mf2;
1410 const char *lbl[2];
1411 char *a_one, *b_two;
8f67f8ae
PH
1412 const char *set = diff_get_color_opt(o, DIFF_METAINFO);
1413 const char *reset = diff_get_color_opt(o, DIFF_RESET);
a5a818ee 1414 const char *a_prefix, *b_prefix;
c7534ef4 1415 const char *textconv_one = NULL, *textconv_two = NULL;
a5a818ee 1416
3aa1f7ca
JK
1417 if (DIFF_OPT_TST(o, ALLOW_TEXTCONV)) {
1418 textconv_one = get_textconv(one);
1419 textconv_two = get_textconv(two);
1420 }
1421
a5a818ee
JH
1422 diff_set_mnemonic_prefix(o, "a/", "b/");
1423 if (DIFF_OPT_TST(o, REVERSE_DIFF)) {
1424 a_prefix = o->b_prefix;
1425 b_prefix = o->a_prefix;
1426 } else {
1427 a_prefix = o->a_prefix;
1428 b_prefix = o->b_prefix;
1429 }
6973dcae 1430
71b989e7
LT
1431 /* Never use a non-valid filename anywhere if at all possible */
1432 name_a = DIFF_FILE_VALID(one) ? name_a : name_b;
1433 name_b = DIFF_FILE_VALID(two) ? name_b : name_a;
1434
a5a818ee
JH
1435 a_one = quote_two(a_prefix, name_a + (*name_a == '/'));
1436 b_two = quote_two(b_prefix, name_b + (*name_b == '/'));
6973dcae
JH
1437 lbl[0] = DIFF_FILE_VALID(one) ? a_one : "/dev/null";
1438 lbl[1] = DIFF_FILE_VALID(two) ? b_two : "/dev/null";
c0c77734 1439 fprintf(o->file, "%sdiff --git %s %s%s\n", set, a_one, b_two, reset);
6973dcae
JH
1440 if (lbl[0][0] == '/') {
1441 /* /dev/null */
c0c77734 1442 fprintf(o->file, "%snew file mode %06o%s\n", set, two->mode, reset);
50f575fc 1443 if (xfrm_msg && xfrm_msg[0])
c0c77734 1444 fprintf(o->file, "%s%s%s\n", set, xfrm_msg, reset);
6973dcae
JH
1445 }
1446 else if (lbl[1][0] == '/') {
c0c77734 1447 fprintf(o->file, "%sdeleted file mode %06o%s\n", set, one->mode, reset);
50f575fc 1448 if (xfrm_msg && xfrm_msg[0])
c0c77734 1449 fprintf(o->file, "%s%s%s\n", set, xfrm_msg, reset);
6973dcae
JH
1450 }
1451 else {
1452 if (one->mode != two->mode) {
c0c77734
DB
1453 fprintf(o->file, "%sold mode %06o%s\n", set, one->mode, reset);
1454 fprintf(o->file, "%snew mode %06o%s\n", set, two->mode, reset);
cd112cef 1455 }
50f575fc 1456 if (xfrm_msg && xfrm_msg[0])
c0c77734 1457 fprintf(o->file, "%s%s%s\n", set, xfrm_msg, reset);
6973dcae
JH
1458 /*
1459 * we do not run diff between different kind
1460 * of objects.
1461 */
1462 if ((one->mode ^ two->mode) & S_IFMT)
1463 goto free_ab_and_return;
0c01857d 1464 if (complete_rewrite &&
3aa1f7ca
JK
1465 (textconv_one || !diff_filespec_is_binary(one)) &&
1466 (textconv_two || !diff_filespec_is_binary(two))) {
1467 emit_rewrite_diff(name_a, name_b, one, two,
1468 textconv_one, textconv_two, o);
34a5e1a2 1469 o->found_changes = 1;
6973dcae
JH
1470 goto free_ab_and_return;
1471 }
1472 }
1473
1474 if (fill_mmfile(&mf1, one) < 0 || fill_mmfile(&mf2, two) < 0)
1475 die("unable to read files to diff");
1476
8f67f8ae 1477 if (!DIFF_OPT_TST(o, TEXT) &&
04427ac8
JK
1478 ( (diff_filespec_is_binary(one) && !textconv_one) ||
1479 (diff_filespec_is_binary(two) && !textconv_two) )) {
0660626c
JH
1480 /* Quite common confusing case */
1481 if (mf1.size == mf2.size &&
1482 !memcmp(mf1.ptr, mf2.ptr, mf1.size))
1483 goto free_ab_and_return;
8f67f8ae 1484 if (DIFF_OPT_TST(o, BINARY))
c0c77734 1485 emit_binary_diff(o->file, &mf1, &mf2);
051308f6 1486 else
c0c77734
DB
1487 fprintf(o->file, "Binary files %s and %s differ\n",
1488 lbl[0], lbl[1]);
34a5e1a2 1489 o->found_changes = 1;
051308f6 1490 }
6973dcae
JH
1491 else {
1492 /* Crazy xdl interfaces.. */
1493 const char *diffopts = getenv("GIT_DIFF_OPTS");
1494 xpparam_t xpp;
1495 xdemitconf_t xecfg;
1496 xdemitcb_t ecb;
1497 struct emit_callback ecbdata;
be58e70d 1498 const struct userdiff_funcname *pe;
f258475a 1499
04427ac8
JK
1500 if (textconv_one) {
1501 size_t size;
1502 mf1.ptr = run_textconv(textconv_one, one, &size);
1503 if (!mf1.ptr)
1504 die("unable to read files to diff");
1505 mf1.size = size;
1506 }
1507 if (textconv_two) {
1508 size_t size;
1509 mf2.ptr = run_textconv(textconv_two, two, &size);
1510 if (!mf2.ptr)
1511 die("unable to read files to diff");
1512 mf2.size = size;
1513 }
1514
45e7ca0f
BC
1515 pe = diff_funcname_pattern(one);
1516 if (!pe)
1517 pe = diff_funcname_pattern(two);
6973dcae 1518
9ccd0a88 1519 memset(&xpp, 0, sizeof(xpp));
30b25010 1520 memset(&xecfg, 0, sizeof(xecfg));
cd112cef 1521 memset(&ecbdata, 0, sizeof(ecbdata));
6973dcae 1522 ecbdata.label_path = lbl;
8f67f8ae 1523 ecbdata.color_diff = DIFF_OPT_TST(o, COLOR_DIFF);
34a5e1a2 1524 ecbdata.found_changesp = &o->found_changes;
cf1b7869 1525 ecbdata.ws_rule = whitespace_rule(name_b ? name_b : name_a);
c0c77734 1526 ecbdata.file = o->file;
0d21efa5 1527 xpp.flags = XDF_NEED_MINIMAL | o->xdl_opts;
ee1e5412 1528 xecfg.ctxlen = o->context;
6d0e674a 1529 xecfg.interhunkctxlen = o->interhunkcontext;
6973dcae 1530 xecfg.flags = XDL_EMIT_FUNCNAMES;
45e7ca0f 1531 if (pe)
a013585b 1532 xdiff_set_find_func(&xecfg, pe->pattern, pe->cflags);
6973dcae
JH
1533 if (!diffopts)
1534 ;
cc44c765 1535 else if (!prefixcmp(diffopts, "--unified="))
6973dcae 1536 xecfg.ctxlen = strtoul(diffopts + 10, NULL, 10);
cc44c765 1537 else if (!prefixcmp(diffopts, "-u"))
6973dcae 1538 xecfg.ctxlen = strtoul(diffopts + 2, NULL, 10);
c0c77734 1539 if (DIFF_OPT_TST(o, COLOR_DIFF_WORDS)) {
f59a59e2
JS
1540 ecbdata.diff_words =
1541 xcalloc(1, sizeof(struct diff_words_data));
c0c77734 1542 ecbdata.diff_words->file = o->file;
2b6a5417
JS
1543 if (o->word_regex) {
1544 ecbdata.diff_words->word_regex = (regex_t *)
1545 xmalloc(sizeof(regex_t));
1546 if (regcomp(ecbdata.diff_words->word_regex,
1547 o->word_regex, REG_EXTENDED))
1548 die ("Invalid regular expression: %s",
1549 o->word_regex);
1550 }
c0c77734 1551 }
8a3f524b
JH
1552 xdi_diff_outf(&mf1, &mf2, fn_out_consume, &ecbdata,
1553 &xpp, &xecfg, &ecb);
8f67f8ae 1554 if (DIFF_OPT_TST(o, COLOR_DIFF_WORDS))
f59a59e2 1555 free_diff_words_data(&ecbdata);
04427ac8
JK
1556 if (textconv_one)
1557 free(mf1.ptr);
1558 if (textconv_two)
1559 free(mf2.ptr);
6973dcae
JH
1560 }
1561
1562 free_ab_and_return:
fc3abdf5
JH
1563 diff_free_filespec_data(one);
1564 diff_free_filespec_data(two);
6973dcae
JH
1565 free(a_one);
1566 free(b_two);
1567 return;
1568}
1569
1570static void builtin_diffstat(const char *name_a, const char *name_b,
1571 struct diff_filespec *one,
1572 struct diff_filespec *two,
710158e3 1573 struct diffstat_t *diffstat,
0d21efa5 1574 struct diff_options *o,
710158e3 1575 int complete_rewrite)
6973dcae
JH
1576{
1577 mmfile_t mf1, mf2;
1578 struct diffstat_file *data;
1579
1580 data = diffstat_add(diffstat, name_a, name_b);
1581
1582 if (!one || !two) {
1583 data->is_unmerged = 1;
1584 return;
1585 }
710158e3
JH
1586 if (complete_rewrite) {
1587 diff_populate_filespec(one, 0);
1588 diff_populate_filespec(two, 0);
1589 data->deleted = count_lines(one->data, one->size);
1590 data->added = count_lines(two->data, two->size);
fc3abdf5 1591 goto free_and_return;
710158e3 1592 }
6973dcae
JH
1593 if (fill_mmfile(&mf1, one) < 0 || fill_mmfile(&mf2, two) < 0)
1594 die("unable to read files to diff");
1595
29a3eefd 1596 if (diff_filespec_is_binary(one) || diff_filespec_is_binary(two)) {
6973dcae 1597 data->is_binary = 1;
b1882587
AP
1598 data->added = mf2.size;
1599 data->deleted = mf1.size;
1600 } else {
6973dcae
JH
1601 /* Crazy xdl interfaces.. */
1602 xpparam_t xpp;
1603 xdemitconf_t xecfg;
1604 xdemitcb_t ecb;
1605
9ccd0a88 1606 memset(&xpp, 0, sizeof(xpp));
30b25010 1607 memset(&xecfg, 0, sizeof(xecfg));
0d21efa5 1608 xpp.flags = XDF_NEED_MINIMAL | o->xdl_opts;
8a3f524b
JH
1609 xdi_diff_outf(&mf1, &mf2, diffstat_consume, diffstat,
1610 &xpp, &xecfg, &ecb);
6973dcae 1611 }
fc3abdf5
JH
1612
1613 free_and_return:
1614 diff_free_filespec_data(one);
1615 diff_free_filespec_data(two);
6973dcae
JH
1616}
1617
88246898 1618static void builtin_checkdiff(const char *name_a, const char *name_b,
cd676a51 1619 const char *attr_path,
5ff10dd6
JH
1620 struct diff_filespec *one,
1621 struct diff_filespec *two,
1622 struct diff_options *o)
88246898
JS
1623{
1624 mmfile_t mf1, mf2;
1625 struct checkdiff_t data;
1626
1627 if (!two)
1628 return;
1629
1630 memset(&data, 0, sizeof(data));
88246898
JS
1631 data.filename = name_b ? name_b : name_a;
1632 data.lineno = 0;
1ba111d1 1633 data.o = o;
cd676a51 1634 data.ws_rule = whitespace_rule(attr_path);
88246898
JS
1635
1636 if (fill_mmfile(&mf1, one) < 0 || fill_mmfile(&mf2, two) < 0)
1637 die("unable to read files to diff");
1638
5ff10dd6
JH
1639 /*
1640 * All the other codepaths check both sides, but not checking
1641 * the "old" side here is deliberate. We are checking the newly
1642 * introduced changes, and as long as the "new" side is text, we
1643 * can and should check what it introduces.
1644 */
29a3eefd 1645 if (diff_filespec_is_binary(two))
fc3abdf5 1646 goto free_and_return;
88246898
JS
1647 else {
1648 /* Crazy xdl interfaces.. */
1649 xpparam_t xpp;
1650 xdemitconf_t xecfg;
1651 xdemitcb_t ecb;
1652
9ccd0a88 1653 memset(&xpp, 0, sizeof(xpp));
30b25010 1654 memset(&xecfg, 0, sizeof(xecfg));
c35539eb 1655 xecfg.ctxlen = 1; /* at least one context line */
88246898 1656 xpp.flags = XDF_NEED_MINIMAL;
8a3f524b
JH
1657 xdi_diff_outf(&mf1, &mf2, checkdiff_consume, &data,
1658 &xpp, &xecfg, &ecb);
877f23cc 1659
04c6e9e9
JH
1660 if ((data.ws_rule & WS_TRAILING_SPACE) &&
1661 data.trailing_blanks_start) {
877f23cc
JH
1662 fprintf(o->file, "%s:%d: ends with blank lines.\n",
1663 data.filename, data.trailing_blanks_start);
1664 data.status = 1; /* report errors */
1665 }
88246898 1666 }
fc3abdf5
JH
1667 free_and_return:
1668 diff_free_filespec_data(one);
1669 diff_free_filespec_data(two);
62c64895
WC
1670 if (data.status)
1671 DIFF_OPT_SET(o, CHECK_FAILED);
88246898
JS
1672}
1673
6973dcae
JH
1674struct diff_filespec *alloc_filespec(const char *path)
1675{
1676 int namelen = strlen(path);
1677 struct diff_filespec *spec = xmalloc(sizeof(*spec) + namelen + 1);
1678
1679 memset(spec, 0, sizeof(*spec));
1680 spec->path = (char *)(spec + 1);
1681 memcpy(spec->path, path, namelen+1);
9fb88419 1682 spec->count = 1;
122aa6f9 1683 spec->is_binary = -1;
6973dcae
JH
1684 return spec;
1685}
1686
9fb88419
LT
1687void free_filespec(struct diff_filespec *spec)
1688{
1689 if (!--spec->count) {
1690 diff_free_filespec_data(spec);
1691 free(spec);
1692 }
1693}
1694
6973dcae
JH
1695void fill_filespec(struct diff_filespec *spec, const unsigned char *sha1,
1696 unsigned short mode)
1697{
1698 if (mode) {
1699 spec->mode = canon_mode(mode);
e702496e 1700 hashcpy(spec->sha1, sha1);
0bef57ee 1701 spec->sha1_valid = !is_null_sha1(sha1);
6973dcae
JH
1702 }
1703}
1704
1705/*
5adf317b 1706 * Given a name and sha1 pair, if the index tells us the file in
6973dcae
JH
1707 * the work tree has that object contents, return true, so that
1708 * prepare_temp_file() does not have to inflate and extract.
1709 */
1510fea7 1710static int reuse_worktree_file(const char *name, const unsigned char *sha1, int want_file)
6973dcae
JH
1711{
1712 struct cache_entry *ce;
1713 struct stat st;
1714 int pos, len;
1715
1716 /* We do not read the cache ourselves here, because the
1717 * benchmark with my previous version that always reads cache
1718 * shows that it makes things worse for diff-tree comparing
1719 * two linux-2.6 kernel trees in an already checked out work
1720 * tree. This is because most diff-tree comparisons deal with
1721 * only a small number of files, while reading the cache is
1722 * expensive for a large project, and its cost outweighs the
1723 * savings we get by not inflating the object to a temporary
1724 * file. Practically, this code only helps when we are used
1725 * by diff-cache --cached, which does read the cache before
1726 * calling us.
1727 */
1728 if (!active_cache)
1729 return 0;
1730
1510fea7
SP
1731 /* We want to avoid the working directory if our caller
1732 * doesn't need the data in a normal file, this system
1733 * is rather slow with its stat/open/mmap/close syscalls,
1734 * and the object is contained in a pack file. The pack
1735 * is probably already open and will be faster to obtain
1736 * the data through than the working directory. Loose
1737 * objects however would tend to be slower as they need
1738 * to be individually opened and inflated.
1739 */
5caf9232 1740 if (!FAST_WORKING_DIRECTORY && !want_file && has_sha1_pack(sha1, NULL))
1510fea7
SP
1741 return 0;
1742
6973dcae
JH
1743 len = strlen(name);
1744 pos = cache_name_pos(name, len);
1745 if (pos < 0)
1746 return 0;
1747 ce = active_cache[pos];
eadb5831
JH
1748
1749 /*
1750 * This is not the sha1 we are looking for, or
1751 * unreusable because it is not a regular file.
1752 */
1753 if (hashcmp(sha1, ce->sha1) || !S_ISREG(ce->ce_mode))
6973dcae 1754 return 0;
eadb5831
JH
1755
1756 /*
1757 * If ce matches the file in the work tree, we can reuse it.
6973dcae 1758 */
eadb5831
JH
1759 if (ce_uptodate(ce) ||
1760 (!lstat(name, &st) && !ce_match_stat(ce, &st, 0)))
1761 return 1;
1762
1763 return 0;
6973dcae
JH
1764}
1765
3afaa72d
JH
1766static int populate_from_stdin(struct diff_filespec *s)
1767{
f285a2d7 1768 struct strbuf buf = STRBUF_INIT;
c32f749f 1769 size_t size = 0;
af6eb822 1770
f1696ee3 1771 if (strbuf_read(&buf, 0, 0) < 0)
af6eb822 1772 return error("error while reading from stdin %s",
3afaa72d 1773 strerror(errno));
af6eb822 1774
3afaa72d 1775 s->should_munmap = 0;
c32f749f
RS
1776 s->data = strbuf_detach(&buf, &size);
1777 s->size = size;
3afaa72d
JH
1778 s->should_free = 1;
1779 return 0;
1780}
1781
04786756
LT
1782static int diff_populate_gitlink(struct diff_filespec *s, int size_only)
1783{
1784 int len;
1785 char *data = xmalloc(100);
1786 len = snprintf(data, 100,
1787 "Subproject commit %s\n", sha1_to_hex(s->sha1));
1788 s->data = data;
1789 s->size = len;
1790 s->should_free = 1;
1791 if (size_only) {
1792 s->data = NULL;
1793 free(data);
1794 }
1795 return 0;
1796}
1797
6973dcae
JH
1798/*
1799 * While doing rename detection and pickaxe operation, we may need to
1800 * grab the data for the blob (or file) for our own in-core comparison.
1801 * diff_filespec has data and size fields for this purpose.
1802 */
1803int diff_populate_filespec(struct diff_filespec *s, int size_only)
1804{
1805 int err = 0;
1806 if (!DIFF_FILE_VALID(s))
1807 die("internal error: asking to populate invalid file.");
1808 if (S_ISDIR(s->mode))
1809 return -1;
1810
6973dcae 1811 if (s->data)
fc3abdf5 1812 return 0;
04786756 1813
6e0b8ed6
JH
1814 if (size_only && 0 < s->size)
1815 return 0;
1816
302b9282 1817 if (S_ISGITLINK(s->mode))
04786756
LT
1818 return diff_populate_gitlink(s, size_only);
1819
6973dcae 1820 if (!s->sha1_valid ||
1510fea7 1821 reuse_worktree_file(s->path, s->sha1, 0)) {
f285a2d7 1822 struct strbuf buf = STRBUF_INIT;
6973dcae
JH
1823 struct stat st;
1824 int fd;
6c510bee 1825
3afaa72d
JH
1826 if (!strcmp(s->path, "-"))
1827 return populate_from_stdin(s);
1828
6973dcae
JH
1829 if (lstat(s->path, &st) < 0) {
1830 if (errno == ENOENT) {
1831 err_empty:
1832 err = -1;
1833 empty:
d2543b8e 1834 s->data = (char *)"";
6973dcae
JH
1835 s->size = 0;
1836 return err;
1837 }
1838 }
dc49cd76 1839 s->size = xsize_t(st.st_size);
6973dcae
JH
1840 if (!s->size)
1841 goto empty;
6973dcae 1842 if (S_ISLNK(st.st_mode)) {
cf219d8c
LT
1843 struct strbuf sb = STRBUF_INIT;
1844
1845 if (strbuf_readlink(&sb, s->path, s->size))
6973dcae 1846 goto err_empty;
0956a6db
RS
1847 s->size = sb.len;
1848 s->data = strbuf_detach(&sb, NULL);
cf219d8c 1849 s->should_free = 1;
6973dcae
JH
1850 return 0;
1851 }
cf219d8c
LT
1852 if (size_only)
1853 return 0;
6973dcae
JH
1854 fd = open(s->path, O_RDONLY);
1855 if (fd < 0)
1856 goto err_empty;
c4712e45 1857 s->data = xmmap(NULL, s->size, PROT_READ, MAP_PRIVATE, fd, 0);
6973dcae 1858 close(fd);
6973dcae 1859 s->should_munmap = 1;
6c510bee
LT
1860
1861 /*
1862 * Convert from working tree format to canonical git format
1863 */
21e5ad50 1864 if (convert_to_git(s->path, s->data, s->size, &buf, safe_crlf)) {
c32f749f 1865 size_t size = 0;
6c510bee
LT
1866 munmap(s->data, s->size);
1867 s->should_munmap = 0;
c32f749f
RS
1868 s->data = strbuf_detach(&buf, &size);
1869 s->size = size;
6c510bee
LT
1870 s->should_free = 1;
1871 }
6973dcae
JH
1872 }
1873 else {
21666f1a 1874 enum object_type type;
6e0b8ed6 1875 if (size_only)
21666f1a 1876 type = sha1_object_info(s->sha1, &s->size);
6973dcae 1877 else {
21666f1a 1878 s->data = read_sha1_file(s->sha1, &type, &s->size);
6973dcae
JH
1879 s->should_free = 1;
1880 }
1881 }
1882 return 0;
1883}
1884
8ae92e63 1885void diff_free_filespec_blob(struct diff_filespec *s)
6973dcae
JH
1886{
1887 if (s->should_free)
1888 free(s->data);
1889 else if (s->should_munmap)
1890 munmap(s->data, s->size);
fc3abdf5
JH
1891
1892 if (s->should_free || s->should_munmap) {
1893 s->should_free = s->should_munmap = 0;
1894 s->data = NULL;
1895 }
eede7b7d
JK
1896}
1897
1898void diff_free_filespec_data(struct diff_filespec *s)
1899{
8ae92e63 1900 diff_free_filespec_blob(s);
6973dcae
JH
1901 free(s->cnt_data);
1902 s->cnt_data = NULL;
1903}
1904
1905static void prep_temp_blob(struct diff_tempfile *temp,
1906 void *blob,
1907 unsigned long size,
1908 const unsigned char *sha1,
1909 int mode)
1910{
1911 int fd;
1912
1472966c 1913 fd = git_mkstemp(temp->tmp_path, PATH_MAX, ".diff_XXXXXX");
6973dcae 1914 if (fd < 0)
e7a7be88 1915 die("unable to create temp-file: %s", strerror(errno));
93822c22 1916 if (write_in_full(fd, blob, size) != size)
6973dcae
JH
1917 die("unable to write temp-file");
1918 close(fd);
1919 temp->name = temp->tmp_path;
1920 strcpy(temp->hex, sha1_to_hex(sha1));
1921 temp->hex[40] = 0;
1922 sprintf(temp->mode, "%06o", mode);
1923}
1924
1925static void prepare_temp_file(const char *name,
1926 struct diff_tempfile *temp,
1927 struct diff_filespec *one)
1928{
1929 if (!DIFF_FILE_VALID(one)) {
1930 not_a_valid_file:
1931 /* A '-' entry produces this for file-2, and
1932 * a '+' entry produces this for file-1.
1933 */
1934 temp->name = "/dev/null";
1935 strcpy(temp->hex, ".");
1936 strcpy(temp->mode, ".");
1937 return;
1938 }
1939
1940 if (!one->sha1_valid ||
1510fea7 1941 reuse_worktree_file(name, one->sha1, 1)) {
6973dcae
JH
1942 struct stat st;
1943 if (lstat(name, &st) < 0) {
1944 if (errno == ENOENT)
1945 goto not_a_valid_file;
1946 die("stat(%s): %s", name, strerror(errno));
1947 }
1948 if (S_ISLNK(st.st_mode)) {
1949 int ret;
1950 char buf[PATH_MAX + 1]; /* ought to be SYMLINK_MAX */
dfab6aae 1951 ret = readlink(name, buf, sizeof(buf));
6973dcae
JH
1952 if (ret < 0)
1953 die("readlink(%s)", name);
dfab6aae
LT
1954 if (ret == sizeof(buf))
1955 die("symlink too long: %s", name);
1956 prep_temp_blob(temp, buf, ret,
6973dcae
JH
1957 (one->sha1_valid ?
1958 one->sha1 : null_sha1),
1959 (one->sha1_valid ?
1960 one->mode : S_IFLNK));
1961 }
1962 else {
1963 /* we can borrow from the file in the work tree */
1964 temp->name = name;
1965 if (!one->sha1_valid)
1966 strcpy(temp->hex, sha1_to_hex(null_sha1));
1967 else
1968 strcpy(temp->hex, sha1_to_hex(one->sha1));
1969 /* Even though we may sometimes borrow the
1970 * contents from the work tree, we always want
1971 * one->mode. mode is trustworthy even when
1972 * !(one->sha1_valid), as long as
1973 * DIFF_FILE_VALID(one).
1974 */
1975 sprintf(temp->mode, "%06o", one->mode);
1976 }
1977 return;
1978 }
1979 else {
1980 if (diff_populate_filespec(one, 0))
1981 die("cannot read data blob for %s", one->path);
1982 prep_temp_blob(temp, one->data, one->size,
1983 one->sha1, one->mode);
1984 }
1985}
1986
1987static void remove_tempfile(void)
1988{
1989 int i;
1990
1991 for (i = 0; i < 2; i++)
1992 if (diff_temp[i].name == diff_temp[i].tmp_path) {
1993 unlink(diff_temp[i].name);
1994 diff_temp[i].name = NULL;
1995 }
1996}
1997
1998static void remove_tempfile_on_signal(int signo)
1999{
2000 remove_tempfile();
2001 signal(SIGINT, SIG_DFL);
2002 raise(signo);
2003}
2004
6973dcae
JH
2005/* An external diff command takes:
2006 *
2007 * diff-cmd name infile1 infile1-sha1 infile1-mode \
2008 * infile2 infile2-sha1 infile2-mode [ rename-to ]
2009 *
2010 */
2011static void run_external_diff(const char *pgm,
2012 const char *name,
2013 const char *other,
2014 struct diff_filespec *one,
2015 struct diff_filespec *two,
2016 const char *xfrm_msg,
2017 int complete_rewrite)
2018{
2019 const char *spawn_arg[10];
2020 struct diff_tempfile *temp = diff_temp;
2021 int retval;
2022 static int atexit_asked = 0;
2023 const char *othername;
2024 const char **arg = &spawn_arg[0];
2025
2026 othername = (other? other : name);
2027 if (one && two) {
2028 prepare_temp_file(name, &temp[0], one);
2029 prepare_temp_file(othername, &temp[1], two);
2030 if (! atexit_asked &&
2031 (temp[0].name == temp[0].tmp_path ||
2032 temp[1].name == temp[1].tmp_path)) {
2033 atexit_asked = 1;
2034 atexit(remove_tempfile);
2035 }
2036 signal(SIGINT, remove_tempfile_on_signal);
2037 }
2038
2039 if (one && two) {
2040 *arg++ = pgm;
2041 *arg++ = name;
2042 *arg++ = temp[0].name;
2043 *arg++ = temp[0].hex;
2044 *arg++ = temp[0].mode;
2045 *arg++ = temp[1].name;
2046 *arg++ = temp[1].hex;
2047 *arg++ = temp[1].mode;
2048 if (other) {
2049 *arg++ = other;
2050 *arg++ = xfrm_msg;
2051 }
2052 } else {
2053 *arg++ = pgm;
2054 *arg++ = name;
2055 }
2056 *arg = NULL;
d5535ec7
JS
2057 fflush(NULL);
2058 retval = run_command_v_opt(spawn_arg, 0);
6973dcae
JH
2059 remove_tempfile();
2060 if (retval) {
2061 fprintf(stderr, "external diff died, stopping at %s.\n", name);
2062 exit(1);
2063 }
2064}
2065
2066static void run_diff_cmd(const char *pgm,
2067 const char *name,
2068 const char *other,
cd676a51 2069 const char *attr_path,
6973dcae
JH
2070 struct diff_filespec *one,
2071 struct diff_filespec *two,
2072 const char *xfrm_msg,
051308f6 2073 struct diff_options *o,
6973dcae
JH
2074 int complete_rewrite)
2075{
8f67f8ae 2076 if (!DIFF_OPT_TST(o, ALLOW_EXTERNAL))
f1af60bd
JH
2077 pgm = NULL;
2078 else {
be58e70d
JK
2079 struct userdiff_driver *drv = userdiff_find_by_path(attr_path);
2080 if (drv && drv->external)
2081 pgm = drv->external;
f1af60bd
JH
2082 }
2083
6973dcae
JH
2084 if (pgm) {
2085 run_external_diff(pgm, name, other, one, two, xfrm_msg,
2086 complete_rewrite);
2087 return;
2088 }
2089 if (one && two)
2090 builtin_diff(name, other ? other : name,
051308f6 2091 one, two, xfrm_msg, o, complete_rewrite);
6973dcae 2092 else
c0c77734 2093 fprintf(o->file, "* Unmerged path %s\n", name);
6973dcae
JH
2094}
2095
2096static void diff_fill_sha1_info(struct diff_filespec *one)
2097{
2098 if (DIFF_FILE_VALID(one)) {
2099 if (!one->sha1_valid) {
2100 struct stat st;
5332b2af
JS
2101 if (!strcmp(one->path, "-")) {
2102 hashcpy(one->sha1, null_sha1);
2103 return;
2104 }
6973dcae
JH
2105 if (lstat(one->path, &st) < 0)
2106 die("stat %s", one->path);
2107 if (index_path(one->sha1, one->path, &st, 0))
d7530708 2108 die("cannot hash %s", one->path);
6973dcae
JH
2109 }
2110 }
2111 else
e702496e 2112 hashclr(one->sha1);
6973dcae
JH
2113}
2114
125b7630
RS
2115static int similarity_index(struct diff_filepair *p)
2116{
2117 return p->score * 100 / MAX_SCORE;
2118}
2119
cd676a51
JH
2120static void strip_prefix(int prefix_length, const char **namep, const char **otherp)
2121{
2122 /* Strip the prefix but do not molest /dev/null and absolute paths */
2123 if (*namep && **namep != '/')
2124 *namep += prefix_length;
2125 if (*otherp && **otherp != '/')
2126 *otherp += prefix_length;
2127}
2128
6973dcae
JH
2129static void run_diff(struct diff_filepair *p, struct diff_options *o)
2130{
2131 const char *pgm = external_diff();
663af342
PH
2132 struct strbuf msg;
2133 char *xfrm_msg;
2134 struct diff_filespec *one = p->one;
2135 struct diff_filespec *two = p->two;
6973dcae
JH
2136 const char *name;
2137 const char *other;
cd676a51 2138 const char *attr_path;
6973dcae 2139 int complete_rewrite = 0;
663af342 2140
cd676a51
JH
2141 name = p->one->path;
2142 other = (strcmp(name, p->two->path) ? p->two->path : NULL);
2143 attr_path = name;
2144 if (o->prefix_length)
2145 strip_prefix(o->prefix_length, &name, &other);
6973dcae
JH
2146
2147 if (DIFF_PAIR_UNMERGED(p)) {
cd676a51
JH
2148 run_diff_cmd(pgm, name, NULL, attr_path,
2149 NULL, NULL, NULL, o, 0);
6973dcae
JH
2150 return;
2151 }
2152
6973dcae
JH
2153 diff_fill_sha1_info(one);
2154 diff_fill_sha1_info(two);
2155
663af342 2156 strbuf_init(&msg, PATH_MAX * 2 + 300);
6973dcae
JH
2157 switch (p->status) {
2158 case DIFF_STATUS_COPIED:
663af342
PH
2159 strbuf_addf(&msg, "similarity index %d%%", similarity_index(p));
2160 strbuf_addstr(&msg, "\ncopy from ");
2161 quote_c_style(name, &msg, NULL, 0);
2162 strbuf_addstr(&msg, "\ncopy to ");
2163 quote_c_style(other, &msg, NULL, 0);
2164 strbuf_addch(&msg, '\n');
6973dcae
JH
2165 break;
2166 case DIFF_STATUS_RENAMED:
663af342
PH
2167 strbuf_addf(&msg, "similarity index %d%%", similarity_index(p));
2168 strbuf_addstr(&msg, "\nrename from ");
2169 quote_c_style(name, &msg, NULL, 0);
2170 strbuf_addstr(&msg, "\nrename to ");
2171 quote_c_style(other, &msg, NULL, 0);
2172 strbuf_addch(&msg, '\n');
6973dcae
JH
2173 break;
2174 case DIFF_STATUS_MODIFIED:
2175 if (p->score) {
663af342 2176 strbuf_addf(&msg, "dissimilarity index %d%%\n",
125b7630 2177 similarity_index(p));
6973dcae
JH
2178 complete_rewrite = 1;
2179 break;
2180 }
2181 /* fallthru */
2182 default:
2183 /* nothing */
2184 ;
2185 }
2186
a89fccd2 2187 if (hashcmp(one->sha1, two->sha1)) {
8f67f8ae 2188 int abbrev = DIFF_OPT_TST(o, FULL_INDEX) ? 40 : DEFAULT_ABBREV;
6973dcae 2189
8f67f8ae 2190 if (DIFF_OPT_TST(o, BINARY)) {
82793c55 2191 mmfile_t mf;
29a3eefd
JH
2192 if ((!fill_mmfile(&mf, one) && diff_filespec_is_binary(one)) ||
2193 (!fill_mmfile(&mf, two) && diff_filespec_is_binary(two)))
82793c55
JH
2194 abbrev = 40;
2195 }
663af342 2196 strbuf_addf(&msg, "index %.*s..%.*s",
dcb3450f
LT
2197 abbrev, sha1_to_hex(one->sha1),
2198 abbrev, sha1_to_hex(two->sha1));
6973dcae 2199 if (one->mode == two->mode)
663af342
PH
2200 strbuf_addf(&msg, " %06o", one->mode);
2201 strbuf_addch(&msg, '\n');
6973dcae
JH
2202 }
2203
663af342
PH
2204 if (msg.len)
2205 strbuf_setlen(&msg, msg.len - 1);
2206 xfrm_msg = msg.len ? msg.buf : NULL;
6973dcae
JH
2207
2208 if (!pgm &&
2209 DIFF_FILE_VALID(one) && DIFF_FILE_VALID(two) &&
2210 (S_IFMT & one->mode) != (S_IFMT & two->mode)) {
2211 /* a filepair that changes between file and symlink
2212 * needs to be split into deletion and creation.
2213 */
2214 struct diff_filespec *null = alloc_filespec(two->path);
cd676a51
JH
2215 run_diff_cmd(NULL, name, other, attr_path,
2216 one, null, xfrm_msg, o, 0);
6973dcae
JH
2217 free(null);
2218 null = alloc_filespec(one->path);
cd676a51
JH
2219 run_diff_cmd(NULL, name, other, attr_path,
2220 null, two, xfrm_msg, o, 0);
6973dcae
JH
2221 free(null);
2222 }
2223 else
cd676a51
JH
2224 run_diff_cmd(pgm, name, other, attr_path,
2225 one, two, xfrm_msg, o, complete_rewrite);
6973dcae 2226
663af342 2227 strbuf_release(&msg);
6973dcae
JH
2228}
2229
2230static void run_diffstat(struct diff_filepair *p, struct diff_options *o,
2231 struct diffstat_t *diffstat)
2232{
2233 const char *name;
2234 const char *other;
710158e3 2235 int complete_rewrite = 0;
6973dcae
JH
2236
2237 if (DIFF_PAIR_UNMERGED(p)) {
2238 /* unmerged */
0d21efa5 2239 builtin_diffstat(p->one->path, NULL, NULL, NULL, diffstat, o, 0);
6973dcae
JH
2240 return;
2241 }
2242
2243 name = p->one->path;
2244 other = (strcmp(name, p->two->path) ? p->two->path : NULL);
2245
cd676a51
JH
2246 if (o->prefix_length)
2247 strip_prefix(o->prefix_length, &name, &other);
2248
6973dcae
JH
2249 diff_fill_sha1_info(p->one);
2250 diff_fill_sha1_info(p->two);
2251
710158e3
JH
2252 if (p->status == DIFF_STATUS_MODIFIED && p->score)
2253 complete_rewrite = 1;
0d21efa5 2254 builtin_diffstat(name, other, p->one, p->two, diffstat, o, complete_rewrite);
6973dcae
JH
2255}
2256
88246898
JS
2257static void run_checkdiff(struct diff_filepair *p, struct diff_options *o)
2258{
2259 const char *name;
2260 const char *other;
cd676a51 2261 const char *attr_path;
88246898
JS
2262
2263 if (DIFF_PAIR_UNMERGED(p)) {
2264 /* unmerged */
2265 return;
2266 }
2267
2268 name = p->one->path;
2269 other = (strcmp(name, p->two->path) ? p->two->path : NULL);
cd676a51
JH
2270 attr_path = other ? other : name;
2271
2272 if (o->prefix_length)
2273 strip_prefix(o->prefix_length, &name, &other);
88246898
JS
2274
2275 diff_fill_sha1_info(p->one);
2276 diff_fill_sha1_info(p->two);
2277
cd676a51 2278 builtin_checkdiff(name, other, attr_path, p->one, p->two, o);
88246898
JS
2279}
2280
6973dcae
JH
2281void diff_setup(struct diff_options *options)
2282{
2283 memset(options, 0, sizeof(*options));
c0c77734
DB
2284
2285 options->file = stdout;
2286
6973dcae
JH
2287 options->line_termination = '\n';
2288 options->break_opt = -1;
2289 options->rename_limit = -1;
7df7c019 2290 options->dirstat_percent = 3;
f88d225f 2291 DIFF_OPT_CLR(options, DIRSTAT_CUMULATIVE);
ee1e5412 2292 options->context = 3;
6973dcae
JH
2293
2294 options->change = diff_change;
2295 options->add_remove = diff_addremove;
6b2f2d98 2296 if (diff_use_color_default > 0)
8f67f8ae
PH
2297 DIFF_OPT_SET(options, COLOR_DIFF);
2298 else
2299 DIFF_OPT_CLR(options, COLOR_DIFF);
b68ea12e 2300 options->detect_rename = diff_detect_rename_default;
eab9a40b 2301
a5a818ee
JH
2302 if (!diff_mnemonic_prefix) {
2303 options->a_prefix = "a/";
2304 options->b_prefix = "b/";
2305 }
6973dcae
JH
2306}
2307
2308int diff_setup_done(struct diff_options *options)
2309{
d7de00f7
TH
2310 int count = 0;
2311
2312 if (options->output_format & DIFF_FORMAT_NAME)
2313 count++;
2314 if (options->output_format & DIFF_FORMAT_NAME_STATUS)
2315 count++;
2316 if (options->output_format & DIFF_FORMAT_CHECKDIFF)
2317 count++;
2318 if (options->output_format & DIFF_FORMAT_NO_OUTPUT)
2319 count++;
2320 if (count > 1)
2321 die("--name-only, --name-status, --check and -s are mutually exclusive");
2322
8f67f8ae 2323 if (DIFF_OPT_TST(options, FIND_COPIES_HARDER))
03b9d560
JH
2324 options->detect_rename = DIFF_DETECT_COPY;
2325
cd676a51
JH
2326 if (!DIFF_OPT_TST(options, RELATIVE_NAME))
2327 options->prefix = NULL;
2328 if (options->prefix)
2329 options->prefix_length = strlen(options->prefix);
2330 else
2331 options->prefix_length = 0;
2332
c6744349
TH
2333 if (options->output_format & (DIFF_FORMAT_NAME |
2334 DIFF_FORMAT_NAME_STATUS |
2335 DIFF_FORMAT_CHECKDIFF |
2336 DIFF_FORMAT_NO_OUTPUT))
2337 options->output_format &= ~(DIFF_FORMAT_RAW |
74e2abe5 2338 DIFF_FORMAT_NUMSTAT |
c6744349 2339 DIFF_FORMAT_DIFFSTAT |
ebd124c6 2340 DIFF_FORMAT_SHORTSTAT |
7df7c019 2341 DIFF_FORMAT_DIRSTAT |
c6744349
TH
2342 DIFF_FORMAT_SUMMARY |
2343 DIFF_FORMAT_PATCH);
2344
6973dcae
JH
2345 /*
2346 * These cases always need recursive; we do not drop caller-supplied
2347 * recursive bits for other formats here.
2348 */
c6744349 2349 if (options->output_format & (DIFF_FORMAT_PATCH |
74e2abe5 2350 DIFF_FORMAT_NUMSTAT |
c6744349 2351 DIFF_FORMAT_DIFFSTAT |
ebd124c6 2352 DIFF_FORMAT_SHORTSTAT |
7df7c019 2353 DIFF_FORMAT_DIRSTAT |
d7014dc0 2354 DIFF_FORMAT_SUMMARY |
c6744349 2355 DIFF_FORMAT_CHECKDIFF))
8f67f8ae 2356 DIFF_OPT_SET(options, RECURSIVE);
5e363541 2357 /*
3969cf7d 2358 * Also pickaxe would not work very well if you do not say recursive
5e363541 2359 */
3969cf7d 2360 if (options->pickaxe)
8f67f8ae 2361 DIFF_OPT_SET(options, RECURSIVE);
5e363541 2362
6973dcae
JH
2363 if (options->detect_rename && options->rename_limit < 0)
2364 options->rename_limit = diff_rename_limit_default;
2365 if (options->setup & DIFF_SETUP_USE_CACHE) {
2366 if (!active_cache)
2367 /* read-cache does not die even when it fails
2368 * so it is safe for us to do this here. Also
2369 * it does not smudge active_cache or active_nr
2370 * when it fails, so we do not have to worry about
2371 * cleaning it up ourselves either.
2372 */
2373 read_cache();
2374 }
6973dcae
JH
2375 if (options->abbrev <= 0 || 40 < options->abbrev)
2376 options->abbrev = 40; /* full */
2377
68aacb2f
JH
2378 /*
2379 * It does not make sense to show the first hit we happened
2380 * to have found. It does not make sense not to return with
2381 * exit code in such a case either.
2382 */
8f67f8ae 2383 if (DIFF_OPT_TST(options, QUIET)) {
68aacb2f 2384 options->output_format = DIFF_FORMAT_NO_OUTPUT;
8f67f8ae 2385 DIFF_OPT_SET(options, EXIT_WITH_STATUS);
68aacb2f
JH
2386 }
2387
6973dcae
JH
2388 return 0;
2389}
2390
d2543b8e 2391static int opt_arg(const char *arg, int arg_short, const char *arg_long, int *val)
ee1e5412
LT
2392{
2393 char c, *eq;
2394 int len;
2395
2396 if (*arg != '-')
2397 return 0;
2398 c = *++arg;
2399 if (!c)
2400 return 0;
2401 if (c == arg_short) {
2402 c = *++arg;
2403 if (!c)
2404 return 1;
2405 if (val && isdigit(c)) {
2406 char *end;
2407 int n = strtoul(arg, &end, 10);
2408 if (*end)
2409 return 0;
2410 *val = n;
2411 return 1;
2412 }
2413 return 0;
2414 }
2415 if (c != '-')
2416 return 0;
2417 arg++;
2418 eq = strchr(arg, '=');
2419 if (eq)
2420 len = eq - arg;
2421 else
2422 len = strlen(arg);
2423 if (!len || strncmp(arg, arg_long, len))
2424 return 0;
2425 if (eq) {
2426 int n;
2427 char *end;
2428 if (!isdigit(*++eq))
2429 return 0;
2430 n = strtoul(eq, &end, 10);
2431 if (*end)
2432 return 0;
2433 *val = n;
2434 }
2435 return 1;
2436}
2437
16befb8b
JH
2438static int diff_scoreopt_parse(const char *opt);
2439
6973dcae
JH
2440int diff_opt_parse(struct diff_options *options, const char **av, int ac)
2441{
2442 const char *arg = av[0];
d054680c
PH
2443
2444 /* Output format options */
6973dcae 2445 if (!strcmp(arg, "-p") || !strcmp(arg, "-u"))
c6744349 2446 options->output_format |= DIFF_FORMAT_PATCH;
ee1e5412 2447 else if (opt_arg(arg, 'U', "unified", &options->context))
c6744349 2448 options->output_format |= DIFF_FORMAT_PATCH;
a610786f
TH
2449 else if (!strcmp(arg, "--raw"))
2450 options->output_format |= DIFF_FORMAT_RAW;
8f67f8ae 2451 else if (!strcmp(arg, "--patch-with-raw"))
c6744349 2452 options->output_format |= DIFF_FORMAT_PATCH | DIFF_FORMAT_RAW;
8f67f8ae 2453 else if (!strcmp(arg, "--numstat"))
74e2abe5 2454 options->output_format |= DIFF_FORMAT_NUMSTAT;
8f67f8ae 2455 else if (!strcmp(arg, "--shortstat"))
ebd124c6 2456 options->output_format |= DIFF_FORMAT_SHORTSTAT;
7df7c019
LT
2457 else if (opt_arg(arg, 'X', "dirstat", &options->dirstat_percent))
2458 options->output_format |= DIFF_FORMAT_DIRSTAT;
f88d225f
JH
2459 else if (!strcmp(arg, "--cumulative")) {
2460 options->output_format |= DIFF_FORMAT_DIRSTAT;
2461 DIFF_OPT_SET(options, DIRSTAT_CUMULATIVE);
fd33777b
HO
2462 } else if (opt_arg(arg, 0, "dirstat-by-file",
2463 &options->dirstat_percent)) {
2464 options->output_format |= DIFF_FORMAT_DIRSTAT;
2465 DIFF_OPT_SET(options, DIRSTAT_BY_FILE);
f88d225f 2466 }
d054680c
PH
2467 else if (!strcmp(arg, "--check"))
2468 options->output_format |= DIFF_FORMAT_CHECKDIFF;
2469 else if (!strcmp(arg, "--summary"))
2470 options->output_format |= DIFF_FORMAT_SUMMARY;
2471 else if (!strcmp(arg, "--patch-with-stat"))
2472 options->output_format |= DIFF_FORMAT_PATCH | DIFF_FORMAT_DIFFSTAT;
2473 else if (!strcmp(arg, "--name-only"))
2474 options->output_format |= DIFF_FORMAT_NAME;
2475 else if (!strcmp(arg, "--name-status"))
2476 options->output_format |= DIFF_FORMAT_NAME_STATUS;
2477 else if (!strcmp(arg, "-s"))
2478 options->output_format |= DIFF_FORMAT_NO_OUTPUT;
cc44c765 2479 else if (!prefixcmp(arg, "--stat")) {
5c5b2ea9
LT
2480 char *end;
2481 int width = options->stat_width;
2482 int name_width = options->stat_name_width;
2483 arg += 6;
2484 end = (char *)arg;
2485
2486 switch (*arg) {
2487 case '-':
cc44c765 2488 if (!prefixcmp(arg, "-width="))
5c5b2ea9 2489 width = strtoul(arg + 7, &end, 10);
cc44c765 2490 else if (!prefixcmp(arg, "-name-width="))
5c5b2ea9
LT
2491 name_width = strtoul(arg + 12, &end, 10);
2492 break;
2493 case '=':
2494 width = strtoul(arg+1, &end, 10);
2495 if (*end == ',')
2496 name_width = strtoul(end+1, &end, 10);
2497 }
2498
2499 /* Important! This checks all the error cases! */
2500 if (*end)
2501 return 0;
c6744349 2502 options->output_format |= DIFF_FORMAT_DIFFSTAT;
5c5b2ea9
LT
2503 options->stat_name_width = name_width;
2504 options->stat_width = width;
a2540023 2505 }
d054680c
PH
2506
2507 /* renames options */
cc44c765 2508 else if (!prefixcmp(arg, "-B")) {
8f67f8ae 2509 if ((options->break_opt = diff_scoreopt_parse(arg)) == -1)
6973dcae
JH
2510 return -1;
2511 }
cc44c765 2512 else if (!prefixcmp(arg, "-M")) {
8f67f8ae 2513 if ((options->rename_score = diff_scoreopt_parse(arg)) == -1)
6973dcae
JH
2514 return -1;
2515 options->detect_rename = DIFF_DETECT_RENAME;
2516 }
cc44c765 2517 else if (!prefixcmp(arg, "-C")) {
ca6c0970 2518 if (options->detect_rename == DIFF_DETECT_COPY)
8f67f8ae
PH
2519 DIFF_OPT_SET(options, FIND_COPIES_HARDER);
2520 if ((options->rename_score = diff_scoreopt_parse(arg)) == -1)
6973dcae
JH
2521 return -1;
2522 options->detect_rename = DIFF_DETECT_COPY;
2523 }
d054680c
PH
2524 else if (!strcmp(arg, "--no-renames"))
2525 options->detect_rename = 0;
cd676a51
JH
2526 else if (!strcmp(arg, "--relative"))
2527 DIFF_OPT_SET(options, RELATIVE_NAME);
c0cb4a06
JH
2528 else if (!prefixcmp(arg, "--relative=")) {
2529 DIFF_OPT_SET(options, RELATIVE_NAME);
2530 options->prefix = arg + 11;
2531 }
d054680c
PH
2532
2533 /* xdiff options */
2534 else if (!strcmp(arg, "-w") || !strcmp(arg, "--ignore-all-space"))
2535 options->xdl_opts |= XDF_IGNORE_WHITESPACE;
2536 else if (!strcmp(arg, "-b") || !strcmp(arg, "--ignore-space-change"))
2537 options->xdl_opts |= XDF_IGNORE_WHITESPACE_CHANGE;
2538 else if (!strcmp(arg, "--ignore-space-at-eol"))
2539 options->xdl_opts |= XDF_IGNORE_WHITESPACE_AT_EOL;
2540
2541 /* flags options */
2542 else if (!strcmp(arg, "--binary")) {
2543 options->output_format |= DIFF_FORMAT_PATCH;
2544 DIFF_OPT_SET(options, BINARY);
2545 }
2546 else if (!strcmp(arg, "--full-index"))
2547 DIFF_OPT_SET(options, FULL_INDEX);
2548 else if (!strcmp(arg, "-a") || !strcmp(arg, "--text"))
2549 DIFF_OPT_SET(options, TEXT);
2550 else if (!strcmp(arg, "-R"))
2551 DIFF_OPT_SET(options, REVERSE_DIFF);
6973dcae 2552 else if (!strcmp(arg, "--find-copies-harder"))
8f67f8ae 2553 DIFF_OPT_SET(options, FIND_COPIES_HARDER);
750f7b66 2554 else if (!strcmp(arg, "--follow"))
8f67f8ae 2555 DIFF_OPT_SET(options, FOLLOW_RENAMES);
cd112cef 2556 else if (!strcmp(arg, "--color"))
8f67f8ae 2557 DIFF_OPT_SET(options, COLOR_DIFF);
fef88bb0 2558 else if (!strcmp(arg, "--no-color"))
8f67f8ae 2559 DIFF_OPT_CLR(options, COLOR_DIFF);
f59a59e2 2560 else if (!strcmp(arg, "--color-words"))
8f67f8ae 2561 options->flags |= DIFF_OPT_COLOR_DIFF | DIFF_OPT_COLOR_DIFF_WORDS;
2b6a5417
JS
2562 else if (!prefixcmp(arg, "--color-words=")) {
2563 options->flags |= DIFF_OPT_COLOR_DIFF | DIFF_OPT_COLOR_DIFF_WORDS;
2564 options->word_regex = arg + 14;
2565 }
41bbf9d5 2566 else if (!strcmp(arg, "--exit-code"))
8f67f8ae 2567 DIFF_OPT_SET(options, EXIT_WITH_STATUS);
68aacb2f 2568 else if (!strcmp(arg, "--quiet"))
8f67f8ae 2569 DIFF_OPT_SET(options, QUIET);
72909bef 2570 else if (!strcmp(arg, "--ext-diff"))
8f67f8ae 2571 DIFF_OPT_SET(options, ALLOW_EXTERNAL);
72909bef 2572 else if (!strcmp(arg, "--no-ext-diff"))
8f67f8ae 2573 DIFF_OPT_CLR(options, ALLOW_EXTERNAL);
e10ea812
JK
2574 else if (!strcmp(arg, "--textconv"))
2575 DIFF_OPT_SET(options, ALLOW_TEXTCONV);
2576 else if (!strcmp(arg, "--no-textconv"))
2577 DIFF_OPT_CLR(options, ALLOW_TEXTCONV);
50fd9bd8
JS
2578 else if (!strcmp(arg, "--ignore-submodules"))
2579 DIFF_OPT_SET(options, IGNORE_SUBMODULES);
d054680c
PH
2580
2581 /* misc options */
2582 else if (!strcmp(arg, "-z"))
2583 options->line_termination = 0;
2584 else if (!prefixcmp(arg, "-l"))
2585 options->rename_limit = strtoul(arg+2, NULL, 10);
2586 else if (!prefixcmp(arg, "-S"))
2587 options->pickaxe = arg + 2;
2588 else if (!strcmp(arg, "--pickaxe-all"))
2589 options->pickaxe_opts = DIFF_PICKAXE_ALL;
2590 else if (!strcmp(arg, "--pickaxe-regex"))
2591 options->pickaxe_opts = DIFF_PICKAXE_REGEX;
2592 else if (!prefixcmp(arg, "-O"))
2593 options->orderfile = arg + 2;
2594 else if (!prefixcmp(arg, "--diff-filter="))
2595 options->filter = arg + 14;
2596 else if (!strcmp(arg, "--abbrev"))
2597 options->abbrev = DEFAULT_ABBREV;
2598 else if (!prefixcmp(arg, "--abbrev=")) {
2599 options->abbrev = strtoul(arg + 9, NULL, 10);
2600 if (options->abbrev < MINIMUM_ABBREV)
2601 options->abbrev = MINIMUM_ABBREV;
2602 else if (40 < options->abbrev)
2603 options->abbrev = 40;
2604 }
eab9a40b
JS
2605 else if (!prefixcmp(arg, "--src-prefix="))
2606 options->a_prefix = arg + 13;
2607 else if (!prefixcmp(arg, "--dst-prefix="))
2608 options->b_prefix = arg + 13;
2609 else if (!strcmp(arg, "--no-prefix"))
2610 options->a_prefix = options->b_prefix = "";
6d0e674a
RS
2611 else if (opt_arg(arg, '\0', "inter-hunk-context",
2612 &options->interhunkcontext))
2613 ;
c0c77734
DB
2614 else if (!prefixcmp(arg, "--output=")) {
2615 options->file = fopen(arg + strlen("--output="), "w");
2616 options->close_file = 1;
2617 } else
6973dcae
JH
2618 return 0;
2619 return 1;
2620}
2621
2622static int parse_num(const char **cp_p)
2623{
2624 unsigned long num, scale;
2625 int ch, dot;
2626 const char *cp = *cp_p;
2627
2628 num = 0;
2629 scale = 1;
2630 dot = 0;
2631 for(;;) {
2632 ch = *cp;
2633 if ( !dot && ch == '.' ) {
2634 scale = 1;
2635 dot = 1;
2636 } else if ( ch == '%' ) {
2637 scale = dot ? scale*100 : 100;
2638 cp++; /* % is always at the end */
2639 break;
2640 } else if ( ch >= '0' && ch <= '9' ) {
2641 if ( scale < 100000 ) {
2642 scale *= 10;
2643 num = (num*10) + (ch-'0');
2644 }
2645 } else {
2646 break;
2647 }
2648 cp++;
2649 }
2650 *cp_p = cp;
2651
2652 /* user says num divided by scale and we say internally that
2653 * is MAX_SCORE * num / scale.
2654 */
dc49cd76 2655 return (int)((num >= scale) ? MAX_SCORE : (MAX_SCORE * num / scale));
6973dcae
JH
2656}
2657
16befb8b 2658static int diff_scoreopt_parse(const char *opt)
6973dcae
JH
2659{
2660 int opt1, opt2, cmd;
2661
2662 if (*opt++ != '-')
2663 return -1;
2664 cmd = *opt++;
2665 if (cmd != 'M' && cmd != 'C' && cmd != 'B')
2666 return -1; /* that is not a -M, -C nor -B option */
2667
2668 opt1 = parse_num(&opt);
2669 if (cmd != 'B')
2670 opt2 = 0;
2671 else {
2672 if (*opt == 0)
2673 opt2 = 0;
2674 else if (*opt != '/')
2675 return -1; /* we expect -B80/99 or -B80 */
2676 else {
2677 opt++;
2678 opt2 = parse_num(&opt);
2679 }
2680 }
2681 if (*opt != 0)
2682 return -1;
2683 return opt1 | (opt2 << 16);
2684}
2685
2686struct diff_queue_struct diff_queued_diff;
2687
2688void diff_q(struct diff_queue_struct *queue, struct diff_filepair *dp)
2689{
2690 if (queue->alloc <= queue->nr) {
2691 queue->alloc = alloc_nr(queue->alloc);
2692 queue->queue = xrealloc(queue->queue,
2693 sizeof(dp) * queue->alloc);
2694 }
2695 queue->queue[queue->nr++] = dp;
2696}
2697
2698struct diff_filepair *diff_queue(struct diff_queue_struct *queue,
2699 struct diff_filespec *one,
2700 struct diff_filespec *two)
2701{
ef677686 2702 struct diff_filepair *dp = xcalloc(1, sizeof(*dp));
6973dcae
JH
2703 dp->one = one;
2704 dp->two = two;
6973dcae
JH
2705 if (queue)
2706 diff_q(queue, dp);
2707 return dp;
2708}
2709
2710void diff_free_filepair(struct diff_filepair *p)
2711{
9fb88419
LT
2712 free_filespec(p->one);
2713 free_filespec(p->two);
6973dcae
JH
2714 free(p);
2715}
2716
2717/* This is different from find_unique_abbrev() in that
2718 * it stuffs the result with dots for alignment.
2719 */
2720const char *diff_unique_abbrev(const unsigned char *sha1, int len)
2721{
2722 int abblen;
2723 const char *abbrev;
2724 if (len == 40)
2725 return sha1_to_hex(sha1);
2726
2727 abbrev = find_unique_abbrev(sha1, len);
6973dcae
JH
2728 abblen = strlen(abbrev);
2729 if (abblen < 37) {
2730 static char hex[41];
2731 if (len < abblen && abblen <= len + 2)
2732 sprintf(hex, "%s%.*s", abbrev, len+3-abblen, "..");
2733 else
2734 sprintf(hex, "%s...", abbrev);
2735 return hex;
2736 }
2737 return sha1_to_hex(sha1);
2738}
2739
663af342 2740static void diff_flush_raw(struct diff_filepair *p, struct diff_options *opt)
6973dcae 2741{
663af342
PH
2742 int line_termination = opt->line_termination;
2743 int inter_name_termination = line_termination ? '\t' : '\0';
6973dcae 2744
663af342 2745 if (!(opt->output_format & DIFF_FORMAT_NAME_STATUS)) {
c0c77734
DB
2746 fprintf(opt->file, ":%06o %06o %s ", p->one->mode, p->two->mode,
2747 diff_unique_abbrev(p->one->sha1, opt->abbrev));
2748 fprintf(opt->file, "%s ", diff_unique_abbrev(p->two->sha1, opt->abbrev));
6973dcae 2749 }
663af342 2750 if (p->score) {
c0c77734
DB
2751 fprintf(opt->file, "%c%03d%c", p->status, similarity_index(p),
2752 inter_name_termination);
663af342 2753 } else {
c0c77734 2754 fprintf(opt->file, "%c%c", p->status, inter_name_termination);
6973dcae 2755 }
6973dcae 2756
cd676a51
JH
2757 if (p->status == DIFF_STATUS_COPIED ||
2758 p->status == DIFF_STATUS_RENAMED) {
2759 const char *name_a, *name_b;
2760 name_a = p->one->path;
2761 name_b = p->two->path;
2762 strip_prefix(opt->prefix_length, &name_a, &name_b);
c0c77734
DB
2763 write_name_quoted(name_a, opt->file, inter_name_termination);
2764 write_name_quoted(name_b, opt->file, line_termination);
663af342 2765 } else {
cd676a51
JH
2766 const char *name_a, *name_b;
2767 name_a = p->one->mode ? p->one->path : p->two->path;
2768 name_b = NULL;
2769 strip_prefix(opt->prefix_length, &name_a, &name_b);
c0c77734 2770 write_name_quoted(name_a, opt->file, line_termination);
663af342 2771 }
6973dcae
JH
2772}
2773
2774int diff_unmodified_pair(struct diff_filepair *p)
2775{
2776 /* This function is written stricter than necessary to support
2777 * the currently implemented transformers, but the idea is to
2778 * let transformers to produce diff_filepairs any way they want,
2779 * and filter and clean them up here before producing the output.
2780 */
663af342 2781 struct diff_filespec *one = p->one, *two = p->two;
6973dcae
JH
2782
2783 if (DIFF_PAIR_UNMERGED(p))
2784 return 0; /* unmerged is interesting */
2785
6973dcae
JH
2786 /* deletion, addition, mode or type change
2787 * and rename are all interesting.
2788 */
2789 if (DIFF_FILE_VALID(one) != DIFF_FILE_VALID(two) ||
2790 DIFF_PAIR_MODE_CHANGED(p) ||
2791 strcmp(one->path, two->path))
2792 return 0;
2793
2794 /* both are valid and point at the same path. that is, we are
2795 * dealing with a change.
2796 */
2797 if (one->sha1_valid && two->sha1_valid &&
a89fccd2 2798 !hashcmp(one->sha1, two->sha1))
6973dcae
JH
2799 return 1; /* no change */
2800 if (!one->sha1_valid && !two->sha1_valid)
2801 return 1; /* both look at the same file on the filesystem. */
2802 return 0;
2803}
2804
2805static void diff_flush_patch(struct diff_filepair *p, struct diff_options *o)
2806{
2807 if (diff_unmodified_pair(p))
2808 return;
2809
2810 if ((DIFF_FILE_VALID(p->one) && S_ISDIR(p->one->mode)) ||
2811 (DIFF_FILE_VALID(p->two) && S_ISDIR(p->two->mode)))
2812 return; /* no tree diffs in patch format */
2813
2814 run_diff(p, o);
2815}
2816
2817static void diff_flush_stat(struct diff_filepair *p, struct diff_options *o,
2818 struct diffstat_t *diffstat)
2819{
2820 if (diff_unmodified_pair(p))
2821 return;
2822
2823 if ((DIFF_FILE_VALID(p->one) && S_ISDIR(p->one->mode)) ||
2824 (DIFF_FILE_VALID(p->two) && S_ISDIR(p->two->mode)))
2825 return; /* no tree diffs in patch format */
2826
2827 run_diffstat(p, o, diffstat);
2828}
2829
88246898
JS
2830static void diff_flush_checkdiff(struct diff_filepair *p,
2831 struct diff_options *o)
2832{
2833 if (diff_unmodified_pair(p))
2834 return;
2835
2836 if ((DIFF_FILE_VALID(p->one) && S_ISDIR(p->one->mode)) ||
2837 (DIFF_FILE_VALID(p->two) && S_ISDIR(p->two->mode)))
2838 return; /* no tree diffs in patch format */
2839
2840 run_checkdiff(p, o);
2841}
2842
6973dcae
JH
2843int diff_queue_is_empty(void)
2844{
2845 struct diff_queue_struct *q = &diff_queued_diff;
2846 int i;
2847 for (i = 0; i < q->nr; i++)
2848 if (!diff_unmodified_pair(q->queue[i]))
2849 return 0;
2850 return 1;
2851}
2852
2853#if DIFF_DEBUG
2854void diff_debug_filespec(struct diff_filespec *s, int x, const char *one)
2855{
2856 fprintf(stderr, "queue[%d] %s (%s) %s %06o %s\n",
2857 x, one ? one : "",
2858 s->path,
2859 DIFF_FILE_VALID(s) ? "valid" : "invalid",
2860 s->mode,
2861 s->sha1_valid ? sha1_to_hex(s->sha1) : "");
2862 fprintf(stderr, "queue[%d] %s size %lu flags %d\n",
2863 x, one ? one : "",
2864 s->size, s->xfrm_flags);
2865}
2866
2867void diff_debug_filepair(const struct diff_filepair *p, int i)
2868{
2869 diff_debug_filespec(p->one, i, "one");
2870 diff_debug_filespec(p->two, i, "two");
64479711 2871 fprintf(stderr, "score %d, status %c rename_used %d broken %d\n",
6973dcae 2872 p->score, p->status ? p->status : '?',
64479711 2873 p->one->rename_used, p->broken_pair);
6973dcae
JH
2874}
2875
2876void diff_debug_queue(const char *msg, struct diff_queue_struct *q)
2877{
2878 int i;
2879 if (msg)
2880 fprintf(stderr, "%s\n", msg);
2881 fprintf(stderr, "q->nr = %d\n", q->nr);
2882 for (i = 0; i < q->nr; i++) {
2883 struct diff_filepair *p = q->queue[i];
2884 diff_debug_filepair(p, i);
2885 }
2886}
2887#endif
2888
2889static void diff_resolve_rename_copy(void)
2890{
64479711
LT
2891 int i;
2892 struct diff_filepair *p;
6973dcae
JH
2893 struct diff_queue_struct *q = &diff_queued_diff;
2894
2895 diff_debug_queue("resolve-rename-copy", q);
2896
2897 for (i = 0; i < q->nr; i++) {
2898 p = q->queue[i];
2899 p->status = 0; /* undecided */
2900 if (DIFF_PAIR_UNMERGED(p))
2901 p->status = DIFF_STATUS_UNMERGED;
2902 else if (!DIFF_FILE_VALID(p->one))
2903 p->status = DIFF_STATUS_ADDED;
2904 else if (!DIFF_FILE_VALID(p->two))
2905 p->status = DIFF_STATUS_DELETED;
2906 else if (DIFF_PAIR_TYPE_CHANGED(p))
2907 p->status = DIFF_STATUS_TYPE_CHANGED;
2908
2909 /* from this point on, we are dealing with a pair
2910 * whose both sides are valid and of the same type, i.e.
2911 * either in-place edit or rename/copy edit.
2912 */
2913 else if (DIFF_PAIR_RENAME(p)) {
64479711
LT
2914 /*
2915 * A rename might have re-connected a broken
2916 * pair up, causing the pathnames to be the
2917 * same again. If so, that's not a rename at
2918 * all, just a modification..
2919 *
2920 * Otherwise, see if this source was used for
2921 * multiple renames, in which case we decrement
2922 * the count, and call it a copy.
6973dcae 2923 */
64479711
LT
2924 if (!strcmp(p->one->path, p->two->path))
2925 p->status = DIFF_STATUS_MODIFIED;
2926 else if (--p->one->rename_used > 0)
6973dcae 2927 p->status = DIFF_STATUS_COPIED;
64479711 2928 else
6973dcae
JH
2929 p->status = DIFF_STATUS_RENAMED;
2930 }
a89fccd2 2931 else if (hashcmp(p->one->sha1, p->two->sha1) ||
d516c2d1
JS
2932 p->one->mode != p->two->mode ||
2933 is_null_sha1(p->one->sha1))
6973dcae
JH
2934 p->status = DIFF_STATUS_MODIFIED;
2935 else {
2936 /* This is a "no-change" entry and should not
2937 * happen anymore, but prepare for broken callers.
2938 */
2939 error("feeding unmodified %s to diffcore",
2940 p->one->path);
2941 p->status = DIFF_STATUS_UNKNOWN;
2942 }
2943 }
2944 diff_debug_queue("resolve-rename-copy done", q);
2945}
2946
c6744349 2947static int check_pair_status(struct diff_filepair *p)
6973dcae 2948{
6973dcae
JH
2949 switch (p->status) {
2950 case DIFF_STATUS_UNKNOWN:
c6744349 2951 return 0;
6973dcae
JH
2952 case 0:
2953 die("internal error in diff-resolve-rename-copy");
6973dcae 2954 default:
c6744349 2955 return 1;
6973dcae
JH
2956 }
2957}
2958
c6744349
TH
2959static void flush_one_pair(struct diff_filepair *p, struct diff_options *opt)
2960{
2961 int fmt = opt->output_format;
2962
2963 if (fmt & DIFF_FORMAT_CHECKDIFF)
2964 diff_flush_checkdiff(p, opt);
2965 else if (fmt & (DIFF_FORMAT_RAW | DIFF_FORMAT_NAME_STATUS))
2966 diff_flush_raw(p, opt);
cd676a51
JH
2967 else if (fmt & DIFF_FORMAT_NAME) {
2968 const char *name_a, *name_b;
2969 name_a = p->two->path;
2970 name_b = NULL;
2971 strip_prefix(opt->prefix_length, &name_a, &name_b);
c0c77734 2972 write_name_quoted(name_a, opt->file, opt->line_termination);
cd676a51 2973 }
c6744349
TH
2974}
2975
c0c77734 2976static void show_file_mode_name(FILE *file, const char *newdelete, struct diff_filespec *fs)
4bbd261b
SE
2977{
2978 if (fs->mode)
c0c77734 2979 fprintf(file, " %s mode %06o ", newdelete, fs->mode);
4bbd261b 2980 else
c0c77734
DB
2981 fprintf(file, " %s ", newdelete);
2982 write_name_quoted(fs->path, file, '\n');
4bbd261b
SE
2983}
2984
2985
c0c77734 2986static void show_mode_change(FILE *file, struct diff_filepair *p, int show_name)
4bbd261b
SE
2987{
2988 if (p->one->mode && p->two->mode && p->one->mode != p->two->mode) {
c0c77734 2989 fprintf(file, " mode change %06o => %06o%c", p->one->mode, p->two->mode,
663af342 2990 show_name ? ' ' : '\n');
0d26a64e 2991 if (show_name) {
c0c77734 2992 write_name_quoted(p->two->path, file, '\n');
0d26a64e 2993 }
4bbd261b
SE
2994 }
2995}
2996
c0c77734 2997static void show_rename_copy(FILE *file, const char *renamecopy, struct diff_filepair *p)
4bbd261b 2998{
b9f44164 2999 char *names = pprint_rename(p->one->path, p->two->path);
4bbd261b 3000
c0c77734 3001 fprintf(file, " %s %s (%d%%)\n", renamecopy, names, similarity_index(p));
b9f44164 3002 free(names);
c0c77734 3003 show_mode_change(file, p, 0);
4bbd261b
SE
3004}
3005
c0c77734 3006static void diff_summary(FILE *file, struct diff_filepair *p)
4bbd261b
SE
3007{
3008 switch(p->status) {
3009 case DIFF_STATUS_DELETED:
c0c77734 3010 show_file_mode_name(file, "delete", p->one);
4bbd261b
SE
3011 break;
3012 case DIFF_STATUS_ADDED:
c0c77734 3013 show_file_mode_name(file, "create", p->two);
4bbd261b
SE
3014 break;
3015 case DIFF_STATUS_COPIED:
c0c77734 3016 show_rename_copy(file, "copy", p);
4bbd261b
SE
3017 break;
3018 case DIFF_STATUS_RENAMED:
c0c77734 3019 show_rename_copy(file, "rename", p);
4bbd261b
SE
3020 break;
3021 default:
3022 if (p->score) {
c0c77734
DB
3023 fputs(" rewrite ", file);
3024 write_name_quoted(p->two->path, file, ' ');
3025 fprintf(file, "(%d%%)\n", similarity_index(p));
663af342 3026 }
c0c77734 3027 show_mode_change(file, p, !p->score);
4bbd261b
SE
3028 break;
3029 }
3030}
3031
fcb3d0ad 3032struct patch_id_t {
9126f009 3033 git_SHA_CTX *ctx;
fcb3d0ad
JS
3034 int patchlen;
3035};
3036
3037static int remove_space(char *line, int len)
3038{
3039 int i;
663af342
PH
3040 char *dst = line;
3041 unsigned char c;
fcb3d0ad 3042
663af342
PH
3043 for (i = 0; i < len; i++)
3044 if (!isspace((c = line[i])))
3045 *dst++ = c;
fcb3d0ad 3046
663af342 3047 return dst - line;
fcb3d0ad
JS
3048}
3049
3050static void patch_id_consume(void *priv, char *line, unsigned long len)
3051{
3052 struct patch_id_t *data = priv;
3053 int new_len;
3054
3055 /* Ignore line numbers when computing the SHA1 of the patch */
cc44c765 3056 if (!prefixcmp(line, "@@ -"))
fcb3d0ad
JS
3057 return;
3058
3059 new_len = remove_space(line, len);
3060
9126f009 3061 git_SHA1_Update(data->ctx, line, new_len);
fcb3d0ad
JS
3062 data->patchlen += new_len;
3063}
3064
3065/* returns 0 upon success, and writes result into sha1 */
3066static int diff_get_patch_id(struct diff_options *options, unsigned char *sha1)
3067{
3068 struct diff_queue_struct *q = &diff_queued_diff;
3069 int i;
9126f009 3070 git_SHA_CTX ctx;
fcb3d0ad
JS
3071 struct patch_id_t data;
3072 char buffer[PATH_MAX * 4 + 20];
3073
9126f009 3074 git_SHA1_Init(&ctx);
fcb3d0ad
JS
3075 memset(&data, 0, sizeof(struct patch_id_t));
3076 data.ctx = &ctx;
fcb3d0ad
JS
3077
3078 for (i = 0; i < q->nr; i++) {
3079 xpparam_t xpp;
3080 xdemitconf_t xecfg;
3081 xdemitcb_t ecb;
3082 mmfile_t mf1, mf2;
3083 struct diff_filepair *p = q->queue[i];
3084 int len1, len2;
3085
9ccd0a88 3086 memset(&xpp, 0, sizeof(xpp));
30b25010 3087 memset(&xecfg, 0, sizeof(xecfg));
fcb3d0ad
JS
3088 if (p->status == 0)
3089 return error("internal diff status error");
3090 if (p->status == DIFF_STATUS_UNKNOWN)
3091 continue;
3092 if (diff_unmodified_pair(p))
3093 continue;
3094 if ((DIFF_FILE_VALID(p->one) && S_ISDIR(p->one->mode)) ||
3095 (DIFF_FILE_VALID(p->two) && S_ISDIR(p->two->mode)))
3096 continue;
3097 if (DIFF_PAIR_UNMERGED(p))
3098 continue;
3099
3100 diff_fill_sha1_info(p->one);
3101 diff_fill_sha1_info(p->two);
3102 if (fill_mmfile(&mf1, p->one) < 0 ||
3103 fill_mmfile(&mf2, p->two) < 0)
3104 return error("unable to read files to diff");
3105
fcb3d0ad
JS
3106 len1 = remove_space(p->one->path, strlen(p->one->path));
3107 len2 = remove_space(p->two->path, strlen(p->two->path));
3108 if (p->one->mode == 0)
3109 len1 = snprintf(buffer, sizeof(buffer),
3110 "diff--gita/%.*sb/%.*s"
3111 "newfilemode%06o"
3112 "---/dev/null"
3113 "+++b/%.*s",
3114 len1, p->one->path,
3115 len2, p->two->path,
3116 p->two->mode,
3117 len2, p->two->path);
3118 else if (p->two->mode == 0)
3119 len1 = snprintf(buffer, sizeof(buffer),
3120 "diff--gita/%.*sb/%.*s"
3121 "deletedfilemode%06o"
3122 "---a/%.*s"
3123 "+++/dev/null",
3124 len1, p->one->path,
3125 len2, p->two->path,
3126 p->one->mode,
3127 len1, p->one->path);
3128 else
3129 len1 = snprintf(buffer, sizeof(buffer),
3130 "diff--gita/%.*sb/%.*s"
3131 "---a/%.*s"
3132 "+++b/%.*s",
3133 len1, p->one->path,
3134 len2, p->two->path,
3135 len1, p->one->path,
3136 len2, p->two->path);
9126f009 3137 git_SHA1_Update(&ctx, buffer, len1);
fcb3d0ad
JS
3138
3139 xpp.flags = XDF_NEED_MINIMAL;
3140 xecfg.ctxlen = 3;
9fdc3bb5 3141 xecfg.flags = XDL_EMIT_FUNCNAMES;
8a3f524b
JH
3142 xdi_diff_outf(&mf1, &mf2, patch_id_consume, &data,
3143 &xpp, &xecfg, &ecb);
fcb3d0ad
JS
3144 }
3145
9126f009 3146 git_SHA1_Final(sha1, &ctx);
fcb3d0ad
JS
3147 return 0;
3148}
3149
3150int diff_flush_patch_id(struct diff_options *options, unsigned char *sha1)
3151{
3152 struct diff_queue_struct *q = &diff_queued_diff;
3153 int i;
3154 int result = diff_get_patch_id(options, sha1);
3155
3156 for (i = 0; i < q->nr; i++)
3157 diff_free_filepair(q->queue[i]);
3158
3159 free(q->queue);
3160 q->queue = NULL;
3161 q->nr = q->alloc = 0;
3162
3163 return result;
3164}
3165
946c3784 3166static int is_summary_empty(const struct diff_queue_struct *q)
6973dcae 3167{
6973dcae 3168 int i;
6973dcae 3169
946c3784
TH
3170 for (i = 0; i < q->nr; i++) {
3171 const struct diff_filepair *p = q->queue[i];
3172
3173 switch (p->status) {
3174 case DIFF_STATUS_DELETED:
3175 case DIFF_STATUS_ADDED:
3176 case DIFF_STATUS_COPIED:
3177 case DIFF_STATUS_RENAMED:
3178 return 0;
3179 default:
3180 if (p->score)
3181 return 0;
3182 if (p->one->mode && p->two->mode &&
3183 p->one->mode != p->two->mode)
3184 return 0;
3185 break;
3186 }
6973dcae 3187 }
946c3784
TH
3188 return 1;
3189}
3190
6973dcae
JH
3191void diff_flush(struct diff_options *options)
3192{
3193 struct diff_queue_struct *q = &diff_queued_diff;
c6744349 3194 int i, output_format = options->output_format;
946c3784 3195 int separator = 0;
6973dcae 3196
c6744349
TH
3197 /*
3198 * Order: raw, stat, summary, patch
3199 * or: name/name-status/checkdiff (other bits clear)
3200 */
946c3784
TH
3201 if (!q->nr)
3202 goto free_queue;
6973dcae 3203
c6744349
TH
3204 if (output_format & (DIFF_FORMAT_RAW |
3205 DIFF_FORMAT_NAME |
3206 DIFF_FORMAT_NAME_STATUS |
3207 DIFF_FORMAT_CHECKDIFF)) {
6973dcae
JH
3208 for (i = 0; i < q->nr; i++) {
3209 struct diff_filepair *p = q->queue[i];
c6744349
TH
3210 if (check_pair_status(p))
3211 flush_one_pair(p, options);
6973dcae 3212 }
946c3784 3213 separator++;
6973dcae 3214 }
c6744349 3215
c04a7155 3216 if (output_format & (DIFF_FORMAT_DIFFSTAT|DIFF_FORMAT_SHORTSTAT|DIFF_FORMAT_NUMSTAT)) {
5e2b0636 3217 struct diffstat_t diffstat;
c6744349 3218
5e2b0636 3219 memset(&diffstat, 0, sizeof(struct diffstat_t));
6973dcae
JH
3220 for (i = 0; i < q->nr; i++) {
3221 struct diff_filepair *p = q->queue[i];
c6744349 3222 if (check_pair_status(p))
5e2b0636 3223 diff_flush_stat(p, options, &diffstat);
6973dcae 3224 }
74e2abe5
JH
3225 if (output_format & DIFF_FORMAT_NUMSTAT)
3226 show_numstat(&diffstat, options);
3227 if (output_format & DIFF_FORMAT_DIFFSTAT)
3228 show_stats(&diffstat, options);
f604652e 3229 if (output_format & DIFF_FORMAT_SHORTSTAT)
c0c77734 3230 show_shortstats(&diffstat, options);
f604652e 3231 free_diffstat_info(&diffstat);
3969cf7d 3232 separator++;
6973dcae 3233 }
c04a7155
JH
3234 if (output_format & DIFF_FORMAT_DIRSTAT)
3235 show_dirstat(options);
6973dcae 3236
946c3784 3237 if (output_format & DIFF_FORMAT_SUMMARY && !is_summary_empty(q)) {
c6744349 3238 for (i = 0; i < q->nr; i++)
c0c77734 3239 diff_summary(options->file, q->queue[i]);
3969cf7d 3240 separator++;
6973dcae
JH
3241 }
3242
c6744349 3243 if (output_format & DIFF_FORMAT_PATCH) {
946c3784 3244 if (separator) {
6b2fbaaf 3245 putc(options->line_termination, options->file);
946c3784
TH
3246 if (options->stat_sep) {
3247 /* attach patch instead of inline */
c0c77734 3248 fputs(options->stat_sep, options->file);
946c3784 3249 }
c6744349
TH
3250 }
3251
3252 for (i = 0; i < q->nr; i++) {
3253 struct diff_filepair *p = q->queue[i];
3254 if (check_pair_status(p))
3255 diff_flush_patch(p, options);
3256 }
4bbd261b
SE
3257 }
3258
04245581
JK
3259 if (output_format & DIFF_FORMAT_CALLBACK)
3260 options->format_callback(q, options, options->format_callback_data);
3261
c6744349
TH
3262 for (i = 0; i < q->nr; i++)
3263 diff_free_filepair(q->queue[i]);
946c3784 3264free_queue:
6973dcae
JH
3265 free(q->queue);
3266 q->queue = NULL;
3267 q->nr = q->alloc = 0;
c0c77734
DB
3268 if (options->close_file)
3269 fclose(options->file);
6973dcae
JH
3270}
3271
3272static void diffcore_apply_filter(const char *filter)
3273{
3274 int i;
3275 struct diff_queue_struct *q = &diff_queued_diff;
3276 struct diff_queue_struct outq;
3277 outq.queue = NULL;
3278 outq.nr = outq.alloc = 0;
3279
3280 if (!filter)
3281 return;
3282
3283 if (strchr(filter, DIFF_STATUS_FILTER_AON)) {
3284 int found;
3285 for (i = found = 0; !found && i < q->nr; i++) {
3286 struct diff_filepair *p = q->queue[i];
3287 if (((p->status == DIFF_STATUS_MODIFIED) &&
3288 ((p->score &&
3289 strchr(filter, DIFF_STATUS_FILTER_BROKEN)) ||
3290 (!p->score &&
3291 strchr(filter, DIFF_STATUS_MODIFIED)))) ||
3292 ((p->status != DIFF_STATUS_MODIFIED) &&
3293 strchr(filter, p->status)))
3294 found++;
3295 }
3296 if (found)
3297 return;
3298
3299 /* otherwise we will clear the whole queue
3300 * by copying the empty outq at the end of this
3301 * function, but first clear the current entries
3302 * in the queue.
3303 */
3304 for (i = 0; i < q->nr; i++)
3305 diff_free_filepair(q->queue[i]);
3306 }
3307 else {
3308 /* Only the matching ones */
3309 for (i = 0; i < q->nr; i++) {
3310 struct diff_filepair *p = q->queue[i];
3311
3312 if (((p->status == DIFF_STATUS_MODIFIED) &&
3313 ((p->score &&
3314 strchr(filter, DIFF_STATUS_FILTER_BROKEN)) ||
3315 (!p->score &&
3316 strchr(filter, DIFF_STATUS_MODIFIED)))) ||
3317 ((p->status != DIFF_STATUS_MODIFIED) &&
3318 strchr(filter, p->status)))
3319 diff_q(&outq, p);
3320 else
3321 diff_free_filepair(p);
3322 }
3323 }
3324 free(q->queue);
3325 *q = outq;
3326}
3327
5701115a
SV
3328/* Check whether two filespecs with the same mode and size are identical */
3329static int diff_filespec_is_identical(struct diff_filespec *one,
3330 struct diff_filespec *two)
3331{
2b459b48
JH
3332 if (S_ISGITLINK(one->mode))
3333 return 0;
5701115a
SV
3334 if (diff_populate_filespec(one, 0))
3335 return 0;
3336 if (diff_populate_filespec(two, 0))
3337 return 0;
3338 return !memcmp(one->data, two->data, one->size);
3339}
3340
fb13227e
JH
3341static void diffcore_skip_stat_unmatch(struct diff_options *diffopt)
3342{
3343 int i;
3344 struct diff_queue_struct *q = &diff_queued_diff;
3345 struct diff_queue_struct outq;
3346 outq.queue = NULL;
3347 outq.nr = outq.alloc = 0;
3348
3349 for (i = 0; i < q->nr; i++) {
3350 struct diff_filepair *p = q->queue[i];
3351
3352 /*
3353 * 1. Entries that come from stat info dirtyness
3354 * always have both sides (iow, not create/delete),
3355 * one side of the object name is unknown, with
3356 * the same mode and size. Keep the ones that
3357 * do not match these criteria. They have real
3358 * differences.
3359 *
3360 * 2. At this point, the file is known to be modified,
3361 * with the same mode and size, and the object
3362 * name of one side is unknown. Need to inspect
3363 * the identical contents.
3364 */
3365 if (!DIFF_FILE_VALID(p->one) || /* (1) */
3366 !DIFF_FILE_VALID(p->two) ||
3367 (p->one->sha1_valid && p->two->sha1_valid) ||
3368 (p->one->mode != p->two->mode) ||
3369 diff_populate_filespec(p->one, 1) ||
3370 diff_populate_filespec(p->two, 1) ||
3371 (p->one->size != p->two->size) ||
5701115a 3372 !diff_filespec_is_identical(p->one, p->two)) /* (2) */
fb13227e
JH
3373 diff_q(&outq, p);
3374 else {
3375 /*
3376 * The caller can subtract 1 from skip_stat_unmatch
3377 * to determine how many paths were dirty only
3378 * due to stat info mismatch.
3379 */
8f67f8ae 3380 if (!DIFF_OPT_TST(diffopt, NO_INDEX))
6d2d9e86 3381 diffopt->skip_stat_unmatch++;
fb13227e
JH
3382 diff_free_filepair(p);
3383 }
3384 }
3385 free(q->queue);
3386 *q = outq;
3387}
3388
6973dcae
JH
3389void diffcore_std(struct diff_options *options)
3390{
9d865356 3391 if (options->skip_stat_unmatch)
fb13227e 3392 diffcore_skip_stat_unmatch(options);
6973dcae
JH
3393 if (options->break_opt != -1)
3394 diffcore_break(options->break_opt);
3395 if (options->detect_rename)
3396 diffcore_rename(options);
3397 if (options->break_opt != -1)
3398 diffcore_merge_broken();
3399 if (options->pickaxe)
3400 diffcore_pickaxe(options->pickaxe, options->pickaxe_opts);
3401 if (options->orderfile)
3402 diffcore_order(options->orderfile);
3403 diff_resolve_rename_copy();
3404 diffcore_apply_filter(options->filter);
68aacb2f 3405
8f67f8ae
PH
3406 if (diff_queued_diff.nr)
3407 DIFF_OPT_SET(options, HAS_CHANGES);
3408 else
3409 DIFF_OPT_CLR(options, HAS_CHANGES);
6973dcae
JH
3410}
3411
da31b358
JH
3412int diff_result_code(struct diff_options *opt, int status)
3413{
3414 int result = 0;
3415 if (!DIFF_OPT_TST(opt, EXIT_WITH_STATUS) &&
3416 !(opt->output_format & DIFF_FORMAT_CHECKDIFF))
3417 return status;
3418 if (DIFF_OPT_TST(opt, EXIT_WITH_STATUS) &&
3419 DIFF_OPT_TST(opt, HAS_CHANGES))
3420 result |= 01;
3421 if ((opt->output_format & DIFF_FORMAT_CHECKDIFF) &&
3422 DIFF_OPT_TST(opt, CHECK_FAILED))
3423 result |= 02;
3424 return result;
3425}
6973dcae 3426
6973dcae
JH
3427void diff_addremove(struct diff_options *options,
3428 int addremove, unsigned mode,
3429 const unsigned char *sha1,
fd55a19e 3430 const char *concatpath)
6973dcae 3431{
6973dcae
JH
3432 struct diff_filespec *one, *two;
3433
50fd9bd8
JS
3434 if (DIFF_OPT_TST(options, IGNORE_SUBMODULES) && S_ISGITLINK(mode))
3435 return;
3436
6973dcae
JH
3437 /* This may look odd, but it is a preparation for
3438 * feeding "there are unchanged files which should
3439 * not produce diffs, but when you are doing copy
3440 * detection you would need them, so here they are"
3441 * entries to the diff-core. They will be prefixed
3442 * with something like '=' or '*' (I haven't decided
3443 * which but should not make any difference).
a6080a0a 3444 * Feeding the same new and old to diff_change()
6973dcae
JH
3445 * also has the same effect.
3446 * Before the final output happens, they are pruned after
3447 * merged into rename/copy pairs as appropriate.
3448 */
8f67f8ae 3449 if (DIFF_OPT_TST(options, REVERSE_DIFF))
6973dcae
JH
3450 addremove = (addremove == '+' ? '-' :
3451 addremove == '-' ? '+' : addremove);
3452
cd676a51
JH
3453 if (options->prefix &&
3454 strncmp(concatpath, options->prefix, options->prefix_length))
3455 return;
3456
6973dcae
JH
3457 one = alloc_filespec(concatpath);
3458 two = alloc_filespec(concatpath);
3459
3460 if (addremove != '+')
3461 fill_filespec(one, sha1, mode);
3462 if (addremove != '-')
3463 fill_filespec(two, sha1, mode);
3464
3465 diff_queue(&diff_queued_diff, one, two);
8f67f8ae 3466 DIFF_OPT_SET(options, HAS_CHANGES);
6973dcae
JH
3467}
3468
3469void diff_change(struct diff_options *options,
3470 unsigned old_mode, unsigned new_mode,
3471 const unsigned char *old_sha1,
3472 const unsigned char *new_sha1,
fd55a19e 3473 const char *concatpath)
6973dcae 3474{
6973dcae
JH
3475 struct diff_filespec *one, *two;
3476
50fd9bd8
JS
3477 if (DIFF_OPT_TST(options, IGNORE_SUBMODULES) && S_ISGITLINK(old_mode)
3478 && S_ISGITLINK(new_mode))
3479 return;
3480
8f67f8ae 3481 if (DIFF_OPT_TST(options, REVERSE_DIFF)) {
6973dcae
JH
3482 unsigned tmp;
3483 const unsigned char *tmp_c;
3484 tmp = old_mode; old_mode = new_mode; new_mode = tmp;
3485 tmp_c = old_sha1; old_sha1 = new_sha1; new_sha1 = tmp_c;
3486 }
cd676a51
JH
3487
3488 if (options->prefix &&
3489 strncmp(concatpath, options->prefix, options->prefix_length))
3490 return;
3491
6973dcae
JH
3492 one = alloc_filespec(concatpath);
3493 two = alloc_filespec(concatpath);
3494 fill_filespec(one, old_sha1, old_mode);
3495 fill_filespec(two, new_sha1, new_mode);
3496
3497 diff_queue(&diff_queued_diff, one, two);
8f67f8ae 3498 DIFF_OPT_SET(options, HAS_CHANGES);
6973dcae
JH
3499}
3500
3501void diff_unmerge(struct diff_options *options,
e9c84099
JH
3502 const char *path,
3503 unsigned mode, const unsigned char *sha1)
6973dcae
JH
3504{
3505 struct diff_filespec *one, *two;
cd676a51
JH
3506
3507 if (options->prefix &&
3508 strncmp(path, options->prefix, options->prefix_length))
3509 return;
3510
6973dcae
JH
3511 one = alloc_filespec(path);
3512 two = alloc_filespec(path);
e9c84099
JH
3513 fill_filespec(one, sha1, mode);
3514 diff_queue(&diff_queued_diff, one, two)->is_unmerged = 1;
6973dcae 3515}
9cb92c39
JK
3516
3517static char *run_textconv(const char *pgm, struct diff_filespec *spec,
3518 size_t *outsize)
3519{
3520 struct diff_tempfile temp;
3521 const char *argv[3];
3522 const char **arg = argv;
3523 struct child_process child;
3524 struct strbuf buf = STRBUF_INIT;
3525
3526 prepare_temp_file(spec->path, &temp, spec);
3527 *arg++ = pgm;
3528 *arg++ = temp.name;
3529 *arg = NULL;
3530
3531 memset(&child, 0, sizeof(child));
3532 child.argv = argv;
3533 child.out = -1;
3534 if (start_command(&child) != 0 ||
3535 strbuf_read(&buf, child.out, 0) < 0 ||
3536 finish_command(&child) != 0) {
3537 if (temp.name == temp.tmp_path)
3538 unlink(temp.name);
3539 error("error running textconv command '%s'", pgm);
3540 return NULL;
3541 }
3542 if (temp.name == temp.tmp_path)
3543 unlink(temp.name);
3544
3545 return strbuf_detach(&buf, outsize);
3546}