2 * Copyright (C) 2005 Junio C Hamano
11 #include "xdiff-interface.h"
13 static int use_size_cache;
15 int diff_rename_limit_default = -1;
17 int git_diff_config(const char *var, const char *value)
19 if (!strcmp(var, "diff.renamelimit")) {
20 diff_rename_limit_default = git_config_int(var, value);
24 return git_default_config(var, value);
27 static char *quote_one(const char *str)
34 needlen = quote_c_style(str, NULL, NULL, 0);
37 xp = xmalloc(needlen + 1);
38 quote_c_style(str, xp, NULL, 0);
42 static char *quote_two(const char *one, const char *two)
44 int need_one = quote_c_style(one, NULL, NULL, 1);
45 int need_two = quote_c_style(two, NULL, NULL, 1);
48 if (need_one + need_two) {
49 if (!need_one) need_one = strlen(one);
50 if (!need_two) need_one = strlen(two);
52 xp = xmalloc(need_one + need_two + 3);
54 quote_c_style(one, xp + 1, NULL, 1);
55 quote_c_style(two, xp + need_one + 1, NULL, 1);
56 strcpy(xp + need_one + need_two + 1, "\"");
59 need_one = strlen(one);
60 need_two = strlen(two);
61 xp = xmalloc(need_one + need_two + 1);
63 strcpy(xp + need_one, two);
67 static const char *external_diff(void)
69 static const char *external_diff_cmd = NULL;
70 static int done_preparing = 0;
73 return external_diff_cmd;
74 external_diff_cmd = getenv("GIT_EXTERNAL_DIFF");
76 return external_diff_cmd;
79 #define TEMPFILE_PATH_LEN 50
81 static struct diff_tempfile {
82 const char *name; /* filename external diff should read from */
85 char tmp_path[TEMPFILE_PATH_LEN];
88 static int count_lines(const char *data, int size)
90 int count, ch, completely_empty = 1, nl_just_seen = 0;
101 completely_empty = 0;
104 if (completely_empty)
107 count++; /* no trailing newline */
111 static void print_line_count(int count)
121 printf("1,%d", count);
126 static void copy_file(int prefix, const char *data, int size)
128 int ch, nl_just_seen = 1;
140 printf("\n\\ No newline at end of file\n");
143 static void emit_rewrite_diff(const char *name_a,
145 struct diff_filespec *one,
146 struct diff_filespec *two)
149 diff_populate_filespec(one, 0);
150 diff_populate_filespec(two, 0);
151 lc_a = count_lines(one->data, one->size);
152 lc_b = count_lines(two->data, two->size);
153 printf("--- %s\n+++ %s\n@@ -", name_a, name_b);
154 print_line_count(lc_a);
156 print_line_count(lc_b);
159 copy_file('-', one->data, one->size);
161 copy_file('+', two->data, two->size);
164 static int fill_mmfile(mmfile_t *mf, struct diff_filespec *one)
166 if (!DIFF_FILE_VALID(one)) {
167 mf->ptr = ""; /* does not matter */
171 else if (diff_populate_filespec(one, 0))
174 mf->size = one->size;
178 struct emit_callback {
179 const char **label_path;
182 static int fn_out(void *priv, mmbuffer_t *mb, int nbuf)
185 struct emit_callback *ecbdata = priv;
187 if (ecbdata->label_path[0]) {
188 printf("--- %s\n", ecbdata->label_path[0]);
189 printf("+++ %s\n", ecbdata->label_path[1]);
190 ecbdata->label_path[0] = ecbdata->label_path[1] = NULL;
192 for (i = 0; i < nbuf; i++)
193 if (!fwrite(mb[i].ptr, mb[i].size, 1, stdout))
199 struct xdiff_emit_state xm;
203 struct diffstat_file {
205 unsigned is_unmerged:1;
206 unsigned is_binary:1;
207 unsigned int added, deleted;
211 static struct diffstat_file *diffstat_add(struct diffstat_t *diffstat,
214 struct diffstat_file *x;
215 x = xcalloc(sizeof (*x), 1);
216 if (diffstat->nr == diffstat->alloc) {
217 diffstat->alloc = alloc_nr(diffstat->alloc);
218 diffstat->files = xrealloc(diffstat->files,
219 diffstat->alloc * sizeof(x));
221 diffstat->files[diffstat->nr++] = x;
222 x->name = strdup(name);
226 static void diffstat_consume(void *priv, char *line, unsigned long len)
228 struct diffstat_t *diffstat = priv;
229 struct diffstat_file *x = diffstat->files[diffstat->nr - 1];
233 else if (line[0] == '-')
237 static const char pluses[] = "++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++";
238 static const char minuses[]= "----------------------------------------------------------------------";
240 static void show_stats(struct diffstat_t* data)
243 int i, len, add, del, total, adds = 0, dels = 0;
244 int max, max_change = 0, max_len = 0;
245 int total_files = data->nr;
250 for (i = 0; i < data->nr; i++) {
251 struct diffstat_file *file = data->files[i];
253 if (file->is_binary || file->is_unmerged)
255 if (max_change < file->added + file->deleted)
256 max_change = file->added + file->deleted;
257 len = strlen(file->name);
262 for (i = 0; i < data->nr; i++) {
263 char *name = data->files[i]->name;
264 int added = data->files[i]->added;
265 int deleted = data->files[i]->deleted;
267 if (0 < (len = quote_c_style(name, NULL, NULL, 0))) {
268 char *qname = xmalloc(len + 1);
269 quote_c_style(name, qname, NULL, 0);
271 data->files[i]->name = name = qname;
275 * "scale" the filename
286 slash = strchr(name, '/');
293 * scale the add/delete
299 if (data->files[i]->is_binary) {
300 printf(" %s%-*s | Bin\n", prefix, len, name);
301 goto free_diffstat_file;
303 else if (data->files[i]->is_unmerged) {
304 printf(" %s%-*s | Unmerged\n", prefix, len, name);
305 goto free_diffstat_file;
307 else if (added + deleted == 0) {
309 goto free_diffstat_file;
318 if (max_change > 0) {
319 total = (total * max + max_change / 2) / max_change;
320 add = (add * max + max_change / 2) / max_change;
323 printf(" %s%-*s |%5d %.*s%.*s\n", prefix,
324 len, name, added + deleted,
325 add, pluses, del, minuses);
327 free(data->files[i]->name);
328 free(data->files[i]);
331 printf(" %d files changed, %d insertions(+), %d deletions(-)\n",
332 total_files, adds, dels);
335 #define FIRST_FEW_BYTES 8000
336 static int mmfile_is_binary(mmfile_t *mf)
339 if (FIRST_FEW_BYTES < sz)
340 sz = FIRST_FEW_BYTES;
341 if (memchr(mf->ptr, 0, sz))
346 static void builtin_diff(const char *name_a,
348 struct diff_filespec *one,
349 struct diff_filespec *two,
350 const char *xfrm_msg,
351 int complete_rewrite)
357 a_one = quote_two("a/", name_a);
358 b_two = quote_two("b/", name_b);
359 lbl[0] = DIFF_FILE_VALID(one) ? a_one : "/dev/null";
360 lbl[1] = DIFF_FILE_VALID(two) ? b_two : "/dev/null";
361 printf("diff --git %s %s\n", a_one, b_two);
362 if (lbl[0][0] == '/') {
364 printf("new file mode %06o\n", two->mode);
365 if (xfrm_msg && xfrm_msg[0])
368 else if (lbl[1][0] == '/') {
369 printf("deleted file mode %06o\n", one->mode);
370 if (xfrm_msg && xfrm_msg[0])
374 if (one->mode != two->mode) {
375 printf("old mode %06o\n", one->mode);
376 printf("new mode %06o\n", two->mode);
378 if (xfrm_msg && xfrm_msg[0])
381 * we do not run diff between different kind
384 if ((one->mode ^ two->mode) & S_IFMT)
385 goto free_ab_and_return;
386 if (complete_rewrite) {
387 emit_rewrite_diff(name_a, name_b, one, two);
388 goto free_ab_and_return;
392 if (fill_mmfile(&mf1, one) < 0 || fill_mmfile(&mf2, two) < 0)
393 die("unable to read files to diff");
395 if (mmfile_is_binary(&mf1) || mmfile_is_binary(&mf2))
396 printf("Binary files %s and %s differ\n", lbl[0], lbl[1]);
398 /* Crazy xdl interfaces.. */
399 const char *diffopts = getenv("GIT_DIFF_OPTS");
403 struct emit_callback ecbdata;
405 ecbdata.label_path = lbl;
406 xpp.flags = XDF_NEED_MINIMAL;
408 xecfg.flags = XDL_EMIT_FUNCNAMES;
411 else if (!strncmp(diffopts, "--unified=", 10))
412 xecfg.ctxlen = strtoul(diffopts + 10, NULL, 10);
413 else if (!strncmp(diffopts, "-u", 2))
414 xecfg.ctxlen = strtoul(diffopts + 2, NULL, 10);
417 xdl_diff(&mf1, &mf2, &xpp, &xecfg, &ecb);
426 static void builtin_diffstat(const char *name_a, const char *name_b,
427 struct diff_filespec *one, struct diff_filespec *two,
428 struct diffstat_t *diffstat)
431 struct diffstat_file *data;
433 data = diffstat_add(diffstat, name_a ? name_a : name_b);
436 data->is_unmerged = 1;
440 if (fill_mmfile(&mf1, one) < 0 || fill_mmfile(&mf2, two) < 0)
441 die("unable to read files to diff");
443 if (mmfile_is_binary(&mf1) || mmfile_is_binary(&mf2))
446 /* Crazy xdl interfaces.. */
451 xpp.flags = XDF_NEED_MINIMAL;
454 ecb.outf = xdiff_outf;
456 xdl_diff(&mf1, &mf2, &xpp, &xecfg, &ecb);
460 struct diff_filespec *alloc_filespec(const char *path)
462 int namelen = strlen(path);
463 struct diff_filespec *spec = xmalloc(sizeof(*spec) + namelen + 1);
465 memset(spec, 0, sizeof(*spec));
466 spec->path = (char *)(spec + 1);
467 memcpy(spec->path, path, namelen+1);
471 void fill_filespec(struct diff_filespec *spec, const unsigned char *sha1,
475 spec->mode = canon_mode(mode);
476 memcpy(spec->sha1, sha1, 20);
477 spec->sha1_valid = !!memcmp(sha1, null_sha1, 20);
482 * Given a name and sha1 pair, if the dircache tells us the file in
483 * the work tree has that object contents, return true, so that
484 * prepare_temp_file() does not have to inflate and extract.
486 static int work_tree_matches(const char *name, const unsigned char *sha1)
488 struct cache_entry *ce;
492 /* We do not read the cache ourselves here, because the
493 * benchmark with my previous version that always reads cache
494 * shows that it makes things worse for diff-tree comparing
495 * two linux-2.6 kernel trees in an already checked out work
496 * tree. This is because most diff-tree comparisons deal with
497 * only a small number of files, while reading the cache is
498 * expensive for a large project, and its cost outweighs the
499 * savings we get by not inflating the object to a temporary
500 * file. Practically, this code only helps when we are used
501 * by diff-cache --cached, which does read the cache before
508 pos = cache_name_pos(name, len);
511 ce = active_cache[pos];
512 if ((lstat(name, &st) < 0) ||
513 !S_ISREG(st.st_mode) || /* careful! */
514 ce_match_stat(ce, &st, 0) ||
515 memcmp(sha1, ce->sha1, 20))
517 /* we return 1 only when we can stat, it is a regular file,
518 * stat information matches, and sha1 recorded in the cache
519 * matches. I.e. we know the file in the work tree really is
520 * the same as the <name, sha1> pair.
525 static struct sha1_size_cache {
526 unsigned char sha1[20];
529 static int sha1_size_cache_nr, sha1_size_cache_alloc;
531 static struct sha1_size_cache *locate_size_cache(unsigned char *sha1,
536 struct sha1_size_cache *e;
539 last = sha1_size_cache_nr;
540 while (last > first) {
541 int cmp, next = (last + first) >> 1;
542 e = sha1_size_cache[next];
543 cmp = memcmp(e->sha1, sha1, 20);
555 /* insert to make it at "first" */
556 if (sha1_size_cache_alloc <= sha1_size_cache_nr) {
557 sha1_size_cache_alloc = alloc_nr(sha1_size_cache_alloc);
558 sha1_size_cache = xrealloc(sha1_size_cache,
559 sha1_size_cache_alloc *
560 sizeof(*sha1_size_cache));
562 sha1_size_cache_nr++;
563 if (first < sha1_size_cache_nr)
564 memmove(sha1_size_cache + first + 1, sha1_size_cache + first,
565 (sha1_size_cache_nr - first - 1) *
566 sizeof(*sha1_size_cache));
567 e = xmalloc(sizeof(struct sha1_size_cache));
568 sha1_size_cache[first] = e;
569 memcpy(e->sha1, sha1, 20);
575 * While doing rename detection and pickaxe operation, we may need to
576 * grab the data for the blob (or file) for our own in-core comparison.
577 * diff_filespec has data and size fields for this purpose.
579 int diff_populate_filespec(struct diff_filespec *s, int size_only)
582 if (!DIFF_FILE_VALID(s))
583 die("internal error: asking to populate invalid file.");
584 if (S_ISDIR(s->mode))
592 if (!s->sha1_valid ||
593 work_tree_matches(s->path, s->sha1)) {
596 if (lstat(s->path, &st) < 0) {
597 if (errno == ENOENT) {
606 s->size = st.st_size;
611 if (S_ISLNK(st.st_mode)) {
613 s->data = xmalloc(s->size);
615 ret = readlink(s->path, s->data, s->size);
622 fd = open(s->path, O_RDONLY);
625 s->data = mmap(NULL, s->size, PROT_READ, MAP_PRIVATE, fd, 0);
627 if (s->data == MAP_FAILED)
629 s->should_munmap = 1;
633 struct sha1_size_cache *e;
636 e = locate_size_cache(s->sha1, 1, 0);
641 if (!sha1_object_info(s->sha1, type, &s->size))
642 locate_size_cache(s->sha1, 0, s->size);
645 s->data = read_sha1_file(s->sha1, type, &s->size);
652 void diff_free_filespec_data(struct diff_filespec *s)
656 else if (s->should_munmap)
657 munmap(s->data, s->size);
658 s->should_free = s->should_munmap = 0;
664 static void prep_temp_blob(struct diff_tempfile *temp,
667 const unsigned char *sha1,
672 fd = git_mkstemp(temp->tmp_path, TEMPFILE_PATH_LEN, ".diff_XXXXXX");
674 die("unable to create temp-file");
675 if (write(fd, blob, size) != size)
676 die("unable to write temp-file");
678 temp->name = temp->tmp_path;
679 strcpy(temp->hex, sha1_to_hex(sha1));
681 sprintf(temp->mode, "%06o", mode);
684 static void prepare_temp_file(const char *name,
685 struct diff_tempfile *temp,
686 struct diff_filespec *one)
688 if (!DIFF_FILE_VALID(one)) {
690 /* A '-' entry produces this for file-2, and
691 * a '+' entry produces this for file-1.
693 temp->name = "/dev/null";
694 strcpy(temp->hex, ".");
695 strcpy(temp->mode, ".");
699 if (!one->sha1_valid ||
700 work_tree_matches(name, one->sha1)) {
702 if (lstat(name, &st) < 0) {
704 goto not_a_valid_file;
705 die("stat(%s): %s", name, strerror(errno));
707 if (S_ISLNK(st.st_mode)) {
709 char buf[PATH_MAX + 1]; /* ought to be SYMLINK_MAX */
710 if (sizeof(buf) <= st.st_size)
711 die("symlink too long: %s", name);
712 ret = readlink(name, buf, st.st_size);
714 die("readlink(%s)", name);
715 prep_temp_blob(temp, buf, st.st_size,
717 one->sha1 : null_sha1),
719 one->mode : S_IFLNK));
722 /* we can borrow from the file in the work tree */
724 if (!one->sha1_valid)
725 strcpy(temp->hex, sha1_to_hex(null_sha1));
727 strcpy(temp->hex, sha1_to_hex(one->sha1));
728 /* Even though we may sometimes borrow the
729 * contents from the work tree, we always want
730 * one->mode. mode is trustworthy even when
731 * !(one->sha1_valid), as long as
732 * DIFF_FILE_VALID(one).
734 sprintf(temp->mode, "%06o", one->mode);
739 if (diff_populate_filespec(one, 0))
740 die("cannot read data blob for %s", one->path);
741 prep_temp_blob(temp, one->data, one->size,
742 one->sha1, one->mode);
746 static void remove_tempfile(void)
750 for (i = 0; i < 2; i++)
751 if (diff_temp[i].name == diff_temp[i].tmp_path) {
752 unlink(diff_temp[i].name);
753 diff_temp[i].name = NULL;
757 static void remove_tempfile_on_signal(int signo)
760 signal(SIGINT, SIG_DFL);
764 static int spawn_prog(const char *pgm, const char **arg)
772 die("unable to fork");
774 execvp(pgm, (char *const*) arg);
778 while (waitpid(pid, &status, 0) < 0) {
784 /* Earlier we did not check the exit status because
785 * diff exits non-zero if files are different, and
786 * we are not interested in knowing that. It was a
787 * mistake which made it harder to quit a diff-*
788 * session that uses the git-apply-patch-script as
789 * the GIT_EXTERNAL_DIFF. A custom GIT_EXTERNAL_DIFF
790 * should also exit non-zero only when it wants to
791 * abort the entire diff-* session.
793 if (WIFEXITED(status) && !WEXITSTATUS(status))
798 /* An external diff command takes:
800 * diff-cmd name infile1 infile1-sha1 infile1-mode \
801 * infile2 infile2-sha1 infile2-mode [ rename-to ]
804 static void run_external_diff(const char *pgm,
807 struct diff_filespec *one,
808 struct diff_filespec *two,
809 const char *xfrm_msg,
810 int complete_rewrite)
812 const char *spawn_arg[10];
813 struct diff_tempfile *temp = diff_temp;
815 static int atexit_asked = 0;
816 const char *othername;
817 const char **arg = &spawn_arg[0];
819 othername = (other? other : name);
821 prepare_temp_file(name, &temp[0], one);
822 prepare_temp_file(othername, &temp[1], two);
823 if (! atexit_asked &&
824 (temp[0].name == temp[0].tmp_path ||
825 temp[1].name == temp[1].tmp_path)) {
827 atexit(remove_tempfile);
829 signal(SIGINT, remove_tempfile_on_signal);
835 *arg++ = temp[0].name;
836 *arg++ = temp[0].hex;
837 *arg++ = temp[0].mode;
838 *arg++ = temp[1].name;
839 *arg++ = temp[1].hex;
840 *arg++ = temp[1].mode;
850 retval = spawn_prog(pgm, spawn_arg);
853 fprintf(stderr, "external diff died, stopping at %s.\n", name);
858 static void run_diff_cmd(const char *pgm,
861 struct diff_filespec *one,
862 struct diff_filespec *two,
863 const char *xfrm_msg,
864 int complete_rewrite)
867 run_external_diff(pgm, name, other, one, two, xfrm_msg,
872 builtin_diff(name, other ? other : name,
873 one, two, xfrm_msg, complete_rewrite);
875 printf("* Unmerged path %s\n", name);
878 static void diff_fill_sha1_info(struct diff_filespec *one)
880 if (DIFF_FILE_VALID(one)) {
881 if (!one->sha1_valid) {
883 if (lstat(one->path, &st) < 0)
884 die("stat %s", one->path);
885 if (index_path(one->sha1, one->path, &st, 0))
886 die("cannot hash %s\n", one->path);
890 memset(one->sha1, 0, 20);
893 static void run_diff(struct diff_filepair *p, struct diff_options *o)
895 const char *pgm = external_diff();
896 char msg[PATH_MAX*2+300], *xfrm_msg;
897 struct diff_filespec *one;
898 struct diff_filespec *two;
901 char *name_munged, *other_munged;
902 int complete_rewrite = 0;
905 if (DIFF_PAIR_UNMERGED(p)) {
907 run_diff_cmd(pgm, p->one->path, NULL, NULL, NULL, NULL, 0);
912 other = (strcmp(name, p->two->path) ? p->two->path : NULL);
913 name_munged = quote_one(name);
914 other_munged = quote_one(other);
915 one = p->one; two = p->two;
917 diff_fill_sha1_info(one);
918 diff_fill_sha1_info(two);
922 case DIFF_STATUS_COPIED:
923 len += snprintf(msg + len, sizeof(msg) - len,
924 "similarity index %d%%\n"
927 (int)(0.5 + p->score * 100.0/MAX_SCORE),
928 name_munged, other_munged);
930 case DIFF_STATUS_RENAMED:
931 len += snprintf(msg + len, sizeof(msg) - len,
932 "similarity index %d%%\n"
935 (int)(0.5 + p->score * 100.0/MAX_SCORE),
936 name_munged, other_munged);
938 case DIFF_STATUS_MODIFIED:
940 len += snprintf(msg + len, sizeof(msg) - len,
941 "dissimilarity index %d%%\n",
942 (int)(0.5 + p->score *
944 complete_rewrite = 1;
953 if (memcmp(one->sha1, two->sha1, 20)) {
955 int abbrev = o->full_index ? 40 : DEFAULT_ABBREV;
956 memcpy(one_sha1, sha1_to_hex(one->sha1), 41);
958 len += snprintf(msg + len, sizeof(msg) - len,
960 abbrev, one_sha1, abbrev,
961 sha1_to_hex(two->sha1));
962 if (one->mode == two->mode)
963 len += snprintf(msg + len, sizeof(msg) - len,
965 len += snprintf(msg + len, sizeof(msg) - len, "\n");
970 xfrm_msg = len ? msg : NULL;
973 DIFF_FILE_VALID(one) && DIFF_FILE_VALID(two) &&
974 (S_IFMT & one->mode) != (S_IFMT & two->mode)) {
975 /* a filepair that changes between file and symlink
976 * needs to be split into deletion and creation.
978 struct diff_filespec *null = alloc_filespec(two->path);
979 run_diff_cmd(NULL, name, other, one, null, xfrm_msg, 0);
981 null = alloc_filespec(one->path);
982 run_diff_cmd(NULL, name, other, null, two, xfrm_msg, 0);
986 run_diff_cmd(pgm, name, other, one, two, xfrm_msg,
993 static void run_diffstat(struct diff_filepair *p, struct diff_options *o,
994 struct diffstat_t *diffstat)
999 if (DIFF_PAIR_UNMERGED(p)) {
1001 builtin_diffstat(p->one->path, NULL, NULL, NULL, diffstat);
1005 name = p->one->path;
1006 other = (strcmp(name, p->two->path) ? p->two->path : NULL);
1008 diff_fill_sha1_info(p->one);
1009 diff_fill_sha1_info(p->two);
1011 builtin_diffstat(name, other, p->one, p->two, diffstat);
1014 void diff_setup(struct diff_options *options)
1016 memset(options, 0, sizeof(*options));
1017 options->output_format = DIFF_FORMAT_RAW;
1018 options->line_termination = '\n';
1019 options->break_opt = -1;
1020 options->rename_limit = -1;
1022 options->change = diff_change;
1023 options->add_remove = diff_addremove;
1026 int diff_setup_done(struct diff_options *options)
1028 if ((options->find_copies_harder &&
1029 options->detect_rename != DIFF_DETECT_COPY) ||
1030 (0 <= options->rename_limit && !options->detect_rename))
1034 * These cases always need recursive; we do not drop caller-supplied
1035 * recursive bits for other formats here.
1037 if ((options->output_format == DIFF_FORMAT_PATCH) ||
1038 (options->output_format == DIFF_FORMAT_DIFFSTAT))
1039 options->recursive = 1;
1041 if (options->detect_rename && options->rename_limit < 0)
1042 options->rename_limit = diff_rename_limit_default;
1043 if (options->setup & DIFF_SETUP_USE_CACHE) {
1045 /* read-cache does not die even when it fails
1046 * so it is safe for us to do this here. Also
1047 * it does not smudge active_cache or active_nr
1048 * when it fails, so we do not have to worry about
1049 * cleaning it up ourselves either.
1053 if (options->setup & DIFF_SETUP_USE_SIZE_CACHE)
1055 if (options->abbrev <= 0 || 40 < options->abbrev)
1056 options->abbrev = 40; /* full */
1061 int diff_opt_parse(struct diff_options *options, const char **av, int ac)
1063 const char *arg = av[0];
1064 if (!strcmp(arg, "-p") || !strcmp(arg, "-u"))
1065 options->output_format = DIFF_FORMAT_PATCH;
1066 else if (!strcmp(arg, "--patch-with-raw")) {
1067 options->output_format = DIFF_FORMAT_PATCH;
1068 options->with_raw = 1;
1070 else if (!strcmp(arg, "--stat"))
1071 options->output_format = DIFF_FORMAT_DIFFSTAT;
1072 else if (!strcmp(arg, "--patch-with-stat")) {
1073 options->output_format = DIFF_FORMAT_PATCH;
1074 options->with_stat = 1;
1076 else if (!strcmp(arg, "-z"))
1077 options->line_termination = 0;
1078 else if (!strncmp(arg, "-l", 2))
1079 options->rename_limit = strtoul(arg+2, NULL, 10);
1080 else if (!strcmp(arg, "--full-index"))
1081 options->full_index = 1;
1082 else if (!strcmp(arg, "--name-only"))
1083 options->output_format = DIFF_FORMAT_NAME;
1084 else if (!strcmp(arg, "--name-status"))
1085 options->output_format = DIFF_FORMAT_NAME_STATUS;
1086 else if (!strcmp(arg, "-R"))
1087 options->reverse_diff = 1;
1088 else if (!strncmp(arg, "-S", 2))
1089 options->pickaxe = arg + 2;
1090 else if (!strcmp(arg, "-s"))
1091 options->output_format = DIFF_FORMAT_NO_OUTPUT;
1092 else if (!strncmp(arg, "-O", 2))
1093 options->orderfile = arg + 2;
1094 else if (!strncmp(arg, "--diff-filter=", 14))
1095 options->filter = arg + 14;
1096 else if (!strcmp(arg, "--pickaxe-all"))
1097 options->pickaxe_opts = DIFF_PICKAXE_ALL;
1098 else if (!strcmp(arg, "--pickaxe-regex"))
1099 options->pickaxe_opts = DIFF_PICKAXE_REGEX;
1100 else if (!strncmp(arg, "-B", 2)) {
1101 if ((options->break_opt =
1102 diff_scoreopt_parse(arg)) == -1)
1105 else if (!strncmp(arg, "-M", 2)) {
1106 if ((options->rename_score =
1107 diff_scoreopt_parse(arg)) == -1)
1109 options->detect_rename = DIFF_DETECT_RENAME;
1111 else if (!strncmp(arg, "-C", 2)) {
1112 if ((options->rename_score =
1113 diff_scoreopt_parse(arg)) == -1)
1115 options->detect_rename = DIFF_DETECT_COPY;
1117 else if (!strcmp(arg, "--find-copies-harder"))
1118 options->find_copies_harder = 1;
1119 else if (!strcmp(arg, "--abbrev"))
1120 options->abbrev = DEFAULT_ABBREV;
1121 else if (!strncmp(arg, "--abbrev=", 9)) {
1122 options->abbrev = strtoul(arg + 9, NULL, 10);
1123 if (options->abbrev < MINIMUM_ABBREV)
1124 options->abbrev = MINIMUM_ABBREV;
1125 else if (40 < options->abbrev)
1126 options->abbrev = 40;
1133 static int parse_num(const char **cp_p)
1135 unsigned long num, scale;
1137 const char *cp = *cp_p;
1144 if ( !dot && ch == '.' ) {
1147 } else if ( ch == '%' ) {
1148 scale = dot ? scale*100 : 100;
1149 cp++; /* % is always at the end */
1151 } else if ( ch >= '0' && ch <= '9' ) {
1152 if ( scale < 100000 ) {
1154 num = (num*10) + (ch-'0');
1163 /* user says num divided by scale and we say internally that
1164 * is MAX_SCORE * num / scale.
1166 return (num >= scale) ? MAX_SCORE : (MAX_SCORE * num / scale);
1169 int diff_scoreopt_parse(const char *opt)
1171 int opt1, opt2, cmd;
1176 if (cmd != 'M' && cmd != 'C' && cmd != 'B')
1177 return -1; /* that is not a -M, -C nor -B option */
1179 opt1 = parse_num(&opt);
1185 else if (*opt != '/')
1186 return -1; /* we expect -B80/99 or -B80 */
1189 opt2 = parse_num(&opt);
1194 return opt1 | (opt2 << 16);
1197 struct diff_queue_struct diff_queued_diff;
1199 void diff_q(struct diff_queue_struct *queue, struct diff_filepair *dp)
1201 if (queue->alloc <= queue->nr) {
1202 queue->alloc = alloc_nr(queue->alloc);
1203 queue->queue = xrealloc(queue->queue,
1204 sizeof(dp) * queue->alloc);
1206 queue->queue[queue->nr++] = dp;
1209 struct diff_filepair *diff_queue(struct diff_queue_struct *queue,
1210 struct diff_filespec *one,
1211 struct diff_filespec *two)
1213 struct diff_filepair *dp = xmalloc(sizeof(*dp));
1218 dp->source_stays = 0;
1219 dp->broken_pair = 0;
1225 void diff_free_filepair(struct diff_filepair *p)
1227 diff_free_filespec_data(p->one);
1228 diff_free_filespec_data(p->two);
1234 /* This is different from find_unique_abbrev() in that
1235 * it stuffs the result with dots for alignment.
1237 const char *diff_unique_abbrev(const unsigned char *sha1, int len)
1242 return sha1_to_hex(sha1);
1244 abbrev = find_unique_abbrev(sha1, len);
1246 return sha1_to_hex(sha1);
1247 abblen = strlen(abbrev);
1249 static char hex[41];
1250 if (len < abblen && abblen <= len + 2)
1251 sprintf(hex, "%s%.*s", abbrev, len+3-abblen, "..");
1253 sprintf(hex, "%s...", abbrev);
1256 return sha1_to_hex(sha1);
1259 static void diff_flush_raw(struct diff_filepair *p,
1260 int line_termination,
1261 int inter_name_termination,
1262 struct diff_options *options,
1267 int abbrev = options->abbrev;
1268 const char *path_one, *path_two;
1270 path_one = p->one->path;
1271 path_two = p->two->path;
1272 if (line_termination) {
1273 path_one = quote_one(path_one);
1274 path_two = quote_one(path_two);
1278 sprintf(status, "%c%03d", p->status,
1279 (int)(0.5 + p->score * 100.0/MAX_SCORE));
1281 status[0] = p->status;
1284 switch (p->status) {
1285 case DIFF_STATUS_COPIED:
1286 case DIFF_STATUS_RENAMED:
1289 case DIFF_STATUS_ADDED:
1290 case DIFF_STATUS_DELETED:
1297 if (output_format != DIFF_FORMAT_NAME_STATUS) {
1298 printf(":%06o %06o %s ",
1299 p->one->mode, p->two->mode,
1300 diff_unique_abbrev(p->one->sha1, abbrev));
1302 diff_unique_abbrev(p->two->sha1, abbrev));
1304 printf("%s%c%s", status, inter_name_termination, path_one);
1306 printf("%c%s", inter_name_termination, path_two);
1307 putchar(line_termination);
1308 if (path_one != p->one->path)
1309 free((void*)path_one);
1310 if (path_two != p->two->path)
1311 free((void*)path_two);
1314 static void diff_flush_name(struct diff_filepair *p,
1315 int inter_name_termination,
1316 int line_termination)
1318 char *path = p->two->path;
1320 if (line_termination)
1321 path = quote_one(p->two->path);
1323 path = p->two->path;
1324 printf("%s%c", path, line_termination);
1325 if (p->two->path != path)
1329 int diff_unmodified_pair(struct diff_filepair *p)
1331 /* This function is written stricter than necessary to support
1332 * the currently implemented transformers, but the idea is to
1333 * let transformers to produce diff_filepairs any way they want,
1334 * and filter and clean them up here before producing the output.
1336 struct diff_filespec *one, *two;
1338 if (DIFF_PAIR_UNMERGED(p))
1339 return 0; /* unmerged is interesting */
1344 /* deletion, addition, mode or type change
1345 * and rename are all interesting.
1347 if (DIFF_FILE_VALID(one) != DIFF_FILE_VALID(two) ||
1348 DIFF_PAIR_MODE_CHANGED(p) ||
1349 strcmp(one->path, two->path))
1352 /* both are valid and point at the same path. that is, we are
1353 * dealing with a change.
1355 if (one->sha1_valid && two->sha1_valid &&
1356 !memcmp(one->sha1, two->sha1, sizeof(one->sha1)))
1357 return 1; /* no change */
1358 if (!one->sha1_valid && !two->sha1_valid)
1359 return 1; /* both look at the same file on the filesystem. */
1363 static void diff_flush_patch(struct diff_filepair *p, struct diff_options *o)
1365 if (diff_unmodified_pair(p))
1368 if ((DIFF_FILE_VALID(p->one) && S_ISDIR(p->one->mode)) ||
1369 (DIFF_FILE_VALID(p->two) && S_ISDIR(p->two->mode)))
1370 return; /* no tree diffs in patch format */
1375 static void diff_flush_stat(struct diff_filepair *p, struct diff_options *o,
1376 struct diffstat_t *diffstat)
1378 if (diff_unmodified_pair(p))
1381 if ((DIFF_FILE_VALID(p->one) && S_ISDIR(p->one->mode)) ||
1382 (DIFF_FILE_VALID(p->two) && S_ISDIR(p->two->mode)))
1383 return; /* no tree diffs in patch format */
1385 run_diffstat(p, o, diffstat);
1388 int diff_queue_is_empty(void)
1390 struct diff_queue_struct *q = &diff_queued_diff;
1392 for (i = 0; i < q->nr; i++)
1393 if (!diff_unmodified_pair(q->queue[i]))
1399 void diff_debug_filespec(struct diff_filespec *s, int x, const char *one)
1401 fprintf(stderr, "queue[%d] %s (%s) %s %06o %s\n",
1404 DIFF_FILE_VALID(s) ? "valid" : "invalid",
1406 s->sha1_valid ? sha1_to_hex(s->sha1) : "");
1407 fprintf(stderr, "queue[%d] %s size %lu flags %d\n",
1409 s->size, s->xfrm_flags);
1412 void diff_debug_filepair(const struct diff_filepair *p, int i)
1414 diff_debug_filespec(p->one, i, "one");
1415 diff_debug_filespec(p->two, i, "two");
1416 fprintf(stderr, "score %d, status %c stays %d broken %d\n",
1417 p->score, p->status ? p->status : '?',
1418 p->source_stays, p->broken_pair);
1421 void diff_debug_queue(const char *msg, struct diff_queue_struct *q)
1425 fprintf(stderr, "%s\n", msg);
1426 fprintf(stderr, "q->nr = %d\n", q->nr);
1427 for (i = 0; i < q->nr; i++) {
1428 struct diff_filepair *p = q->queue[i];
1429 diff_debug_filepair(p, i);
1434 static void diff_resolve_rename_copy(void)
1437 struct diff_filepair *p, *pp;
1438 struct diff_queue_struct *q = &diff_queued_diff;
1440 diff_debug_queue("resolve-rename-copy", q);
1442 for (i = 0; i < q->nr; i++) {
1444 p->status = 0; /* undecided */
1445 if (DIFF_PAIR_UNMERGED(p))
1446 p->status = DIFF_STATUS_UNMERGED;
1447 else if (!DIFF_FILE_VALID(p->one))
1448 p->status = DIFF_STATUS_ADDED;
1449 else if (!DIFF_FILE_VALID(p->two))
1450 p->status = DIFF_STATUS_DELETED;
1451 else if (DIFF_PAIR_TYPE_CHANGED(p))
1452 p->status = DIFF_STATUS_TYPE_CHANGED;
1454 /* from this point on, we are dealing with a pair
1455 * whose both sides are valid and of the same type, i.e.
1456 * either in-place edit or rename/copy edit.
1458 else if (DIFF_PAIR_RENAME(p)) {
1459 if (p->source_stays) {
1460 p->status = DIFF_STATUS_COPIED;
1463 /* See if there is some other filepair that
1464 * copies from the same source as us. If so
1465 * we are a copy. Otherwise we are either a
1466 * copy if the path stays, or a rename if it
1467 * does not, but we already handled "stays" case.
1469 for (j = i + 1; j < q->nr; j++) {
1471 if (strcmp(pp->one->path, p->one->path))
1472 continue; /* not us */
1473 if (!DIFF_PAIR_RENAME(pp))
1474 continue; /* not a rename/copy */
1475 /* pp is a rename/copy from the same source */
1476 p->status = DIFF_STATUS_COPIED;
1480 p->status = DIFF_STATUS_RENAMED;
1482 else if (memcmp(p->one->sha1, p->two->sha1, 20) ||
1483 p->one->mode != p->two->mode)
1484 p->status = DIFF_STATUS_MODIFIED;
1486 /* This is a "no-change" entry and should not
1487 * happen anymore, but prepare for broken callers.
1489 error("feeding unmodified %s to diffcore",
1491 p->status = DIFF_STATUS_UNKNOWN;
1494 diff_debug_queue("resolve-rename-copy done", q);
1497 static void flush_one_pair(struct diff_filepair *p,
1498 int diff_output_format,
1499 struct diff_options *options,
1500 struct diffstat_t *diffstat)
1502 int inter_name_termination = '\t';
1503 int line_termination = options->line_termination;
1504 if (!line_termination)
1505 inter_name_termination = 0;
1507 switch (p->status) {
1508 case DIFF_STATUS_UNKNOWN:
1511 die("internal error in diff-resolve-rename-copy");
1514 switch (diff_output_format) {
1515 case DIFF_FORMAT_DIFFSTAT:
1516 diff_flush_stat(p, options, diffstat);
1518 case DIFF_FORMAT_PATCH:
1519 diff_flush_patch(p, options);
1521 case DIFF_FORMAT_RAW:
1522 case DIFF_FORMAT_NAME_STATUS:
1523 diff_flush_raw(p, line_termination,
1524 inter_name_termination,
1525 options, diff_output_format);
1527 case DIFF_FORMAT_NAME:
1529 inter_name_termination,
1532 case DIFF_FORMAT_NO_OUTPUT:
1538 void diff_flush(struct diff_options *options)
1540 struct diff_queue_struct *q = &diff_queued_diff;
1542 int diff_output_format = options->output_format;
1543 struct diffstat_t *diffstat = NULL;
1545 if (diff_output_format == DIFF_FORMAT_DIFFSTAT || options->with_stat) {
1546 diffstat = xcalloc(sizeof (struct diffstat_t), 1);
1547 diffstat->xm.consume = diffstat_consume;
1550 if (options->with_raw) {
1551 for (i = 0; i < q->nr; i++) {
1552 struct diff_filepair *p = q->queue[i];
1553 flush_one_pair(p, DIFF_FORMAT_RAW, options, NULL);
1555 putchar(options->line_termination);
1557 if (options->with_stat) {
1558 for (i = 0; i < q->nr; i++) {
1559 struct diff_filepair *p = q->queue[i];
1560 flush_one_pair(p, DIFF_FORMAT_DIFFSTAT, options,
1563 show_stats(diffstat);
1566 putchar(options->line_termination);
1568 for (i = 0; i < q->nr; i++) {
1569 struct diff_filepair *p = q->queue[i];
1570 flush_one_pair(p, diff_output_format, options, diffstat);
1571 diff_free_filepair(p);
1575 show_stats(diffstat);
1581 q->nr = q->alloc = 0;
1584 static void diffcore_apply_filter(const char *filter)
1587 struct diff_queue_struct *q = &diff_queued_diff;
1588 struct diff_queue_struct outq;
1590 outq.nr = outq.alloc = 0;
1595 if (strchr(filter, DIFF_STATUS_FILTER_AON)) {
1597 for (i = found = 0; !found && i < q->nr; i++) {
1598 struct diff_filepair *p = q->queue[i];
1599 if (((p->status == DIFF_STATUS_MODIFIED) &&
1601 strchr(filter, DIFF_STATUS_FILTER_BROKEN)) ||
1603 strchr(filter, DIFF_STATUS_MODIFIED)))) ||
1604 ((p->status != DIFF_STATUS_MODIFIED) &&
1605 strchr(filter, p->status)))
1611 /* otherwise we will clear the whole queue
1612 * by copying the empty outq at the end of this
1613 * function, but first clear the current entries
1616 for (i = 0; i < q->nr; i++)
1617 diff_free_filepair(q->queue[i]);
1620 /* Only the matching ones */
1621 for (i = 0; i < q->nr; i++) {
1622 struct diff_filepair *p = q->queue[i];
1624 if (((p->status == DIFF_STATUS_MODIFIED) &&
1626 strchr(filter, DIFF_STATUS_FILTER_BROKEN)) ||
1628 strchr(filter, DIFF_STATUS_MODIFIED)))) ||
1629 ((p->status != DIFF_STATUS_MODIFIED) &&
1630 strchr(filter, p->status)))
1633 diff_free_filepair(p);
1640 void diffcore_std(struct diff_options *options)
1642 if (options->break_opt != -1)
1643 diffcore_break(options->break_opt);
1644 if (options->detect_rename)
1645 diffcore_rename(options);
1646 if (options->break_opt != -1)
1647 diffcore_merge_broken();
1648 if (options->pickaxe)
1649 diffcore_pickaxe(options->pickaxe, options->pickaxe_opts);
1650 if (options->orderfile)
1651 diffcore_order(options->orderfile);
1652 diff_resolve_rename_copy();
1653 diffcore_apply_filter(options->filter);
1657 void diffcore_std_no_resolve(struct diff_options *options)
1659 if (options->pickaxe)
1660 diffcore_pickaxe(options->pickaxe, options->pickaxe_opts);
1661 if (options->orderfile)
1662 diffcore_order(options->orderfile);
1663 diffcore_apply_filter(options->filter);
1666 void diff_addremove(struct diff_options *options,
1667 int addremove, unsigned mode,
1668 const unsigned char *sha1,
1669 const char *base, const char *path)
1671 char concatpath[PATH_MAX];
1672 struct diff_filespec *one, *two;
1674 /* This may look odd, but it is a preparation for
1675 * feeding "there are unchanged files which should
1676 * not produce diffs, but when you are doing copy
1677 * detection you would need them, so here they are"
1678 * entries to the diff-core. They will be prefixed
1679 * with something like '=' or '*' (I haven't decided
1680 * which but should not make any difference).
1681 * Feeding the same new and old to diff_change()
1682 * also has the same effect.
1683 * Before the final output happens, they are pruned after
1684 * merged into rename/copy pairs as appropriate.
1686 if (options->reverse_diff)
1687 addremove = (addremove == '+' ? '-' :
1688 addremove == '-' ? '+' : addremove);
1690 if (!path) path = "";
1691 sprintf(concatpath, "%s%s", base, path);
1692 one = alloc_filespec(concatpath);
1693 two = alloc_filespec(concatpath);
1695 if (addremove != '+')
1696 fill_filespec(one, sha1, mode);
1697 if (addremove != '-')
1698 fill_filespec(two, sha1, mode);
1700 diff_queue(&diff_queued_diff, one, two);
1703 void diff_change(struct diff_options *options,
1704 unsigned old_mode, unsigned new_mode,
1705 const unsigned char *old_sha1,
1706 const unsigned char *new_sha1,
1707 const char *base, const char *path)
1709 char concatpath[PATH_MAX];
1710 struct diff_filespec *one, *two;
1712 if (options->reverse_diff) {
1714 const unsigned char *tmp_c;
1715 tmp = old_mode; old_mode = new_mode; new_mode = tmp;
1716 tmp_c = old_sha1; old_sha1 = new_sha1; new_sha1 = tmp_c;
1718 if (!path) path = "";
1719 sprintf(concatpath, "%s%s", base, path);
1720 one = alloc_filespec(concatpath);
1721 two = alloc_filespec(concatpath);
1722 fill_filespec(one, old_sha1, old_mode);
1723 fill_filespec(two, new_sha1, new_mode);
1725 diff_queue(&diff_queued_diff, one, two);
1728 void diff_unmerge(struct diff_options *options,
1731 struct diff_filespec *one, *two;
1732 one = alloc_filespec(path);
1733 two = alloc_filespec(path);
1734 diff_queue(&diff_queued_diff, one, two);