diff --abbrev=<n> option fix.
[git.git] / diff.c
1 /*
2  * Copyright (C) 2005 Junio C Hamano
3  */
4 #include <sys/types.h>
5 #include <sys/wait.h>
6 #include <signal.h>
7 #include "cache.h"
8 #include "quote.h"
9 #include "diff.h"
10 #include "diffcore.h"
11
12 static const char *diff_opts = "-pu";
13
14 static int use_size_cache;
15
16 int diff_rename_limit_default = -1;
17
18 int git_diff_config(const char *var, const char *value)
19 {
20         if (!strcmp(var, "diff.renamelimit")) {
21                 diff_rename_limit_default = git_config_int(var, value);
22                 return 0;
23         }
24
25         return git_default_config(var, value);
26 }
27
28 static char *quote_one(const char *str)
29 {
30         int needlen;
31         char *xp;
32
33         if (!str)
34                 return NULL;
35         needlen = quote_c_style(str, NULL, NULL, 0);
36         if (!needlen)
37                 return strdup(str);
38         xp = xmalloc(needlen + 1);
39         quote_c_style(str, xp, NULL, 0);
40         return xp;
41 }
42
43 static char *quote_two(const char *one, const char *two)
44 {
45         int need_one = quote_c_style(one, NULL, NULL, 1);
46         int need_two = quote_c_style(two, NULL, NULL, 1);
47         char *xp;
48
49         if (need_one + need_two) {
50                 if (!need_one) need_one = strlen(one);
51                 if (!need_two) need_one = strlen(two);
52
53                 xp = xmalloc(need_one + need_two + 3);
54                 xp[0] = '"';
55                 quote_c_style(one, xp + 1, NULL, 1);
56                 quote_c_style(two, xp + need_one + 1, NULL, 1);
57                 strcpy(xp + need_one + need_two + 1, "\"");
58                 return xp;
59         }
60         need_one = strlen(one);
61         need_two = strlen(two);
62         xp = xmalloc(need_one + need_two + 1);
63         strcpy(xp, one);
64         strcpy(xp + need_one, two);
65         return xp;
66 }
67
68 static const char *external_diff(void)
69 {
70         static const char *external_diff_cmd = NULL;
71         static int done_preparing = 0;
72         const char *env_diff_opts;
73
74         if (done_preparing)
75                 return external_diff_cmd;
76
77         /*
78          * Default values above are meant to match the
79          * Linux kernel development style.  Examples of
80          * alternative styles you can specify via environment
81          * variables are:
82          *
83          * GIT_DIFF_OPTS="-c";
84          */
85         external_diff_cmd = getenv("GIT_EXTERNAL_DIFF");
86
87         /* In case external diff fails... */
88         env_diff_opts = getenv("GIT_DIFF_OPTS");
89         if (env_diff_opts) diff_opts = env_diff_opts;
90
91         done_preparing = 1;
92         return external_diff_cmd;
93 }
94
95 #define TEMPFILE_PATH_LEN               50
96
97 static struct diff_tempfile {
98         const char *name; /* filename external diff should read from */
99         char hex[41];
100         char mode[10];
101         char tmp_path[TEMPFILE_PATH_LEN];
102 } diff_temp[2];
103
104 static int count_lines(const char *filename)
105 {
106         FILE *in;
107         int count, ch, completely_empty = 1, nl_just_seen = 0;
108         in = fopen(filename, "r");
109         count = 0;
110         while ((ch = fgetc(in)) != EOF)
111                 if (ch == '\n') {
112                         count++;
113                         nl_just_seen = 1;
114                         completely_empty = 0;
115                 }
116                 else {
117                         nl_just_seen = 0;
118                         completely_empty = 0;
119                 }
120         fclose(in);
121         if (completely_empty)
122                 return 0;
123         if (!nl_just_seen)
124                 count++; /* no trailing newline */
125         return count;
126 }
127
128 static void print_line_count(int count)
129 {
130         switch (count) {
131         case 0:
132                 printf("0,0");
133                 break;
134         case 1:
135                 printf("1");
136                 break;
137         default:
138                 printf("1,%d", count);
139                 break;
140         }
141 }
142
143 static void copy_file(int prefix, const char *filename)
144 {
145         FILE *in;
146         int ch, nl_just_seen = 1;
147         in = fopen(filename, "r");
148         while ((ch = fgetc(in)) != EOF) {
149                 if (nl_just_seen)
150                         putchar(prefix);
151                 putchar(ch);
152                 if (ch == '\n')
153                         nl_just_seen = 1;
154                 else
155                         nl_just_seen = 0;
156         }
157         fclose(in);
158         if (!nl_just_seen)
159                 printf("\n\\ No newline at end of file\n");
160 }
161
162 static void emit_rewrite_diff(const char *name_a,
163                               const char *name_b,
164                               struct diff_tempfile *temp)
165 {
166         /* Use temp[i].name as input, name_a and name_b as labels */
167         int lc_a, lc_b;
168         lc_a = count_lines(temp[0].name);
169         lc_b = count_lines(temp[1].name);
170         printf("--- %s\n+++ %s\n@@ -", name_a, name_b);
171         print_line_count(lc_a);
172         printf(" +");
173         print_line_count(lc_b);
174         printf(" @@\n");
175         if (lc_a)
176                 copy_file('-', temp[0].name);
177         if (lc_b)
178                 copy_file('+', temp[1].name);
179 }
180
181 static void builtin_diff(const char *name_a,
182                          const char *name_b,
183                          struct diff_tempfile *temp,
184                          const char *xfrm_msg,
185                          int complete_rewrite)
186 {
187         int i, next_at, cmd_size;
188         const char *const diff_cmd = "diff -L%s -L%s";
189         const char *const diff_arg  = "-- %s %s||:"; /* "||:" is to return 0 */
190         const char *input_name_sq[2];
191         const char *label_path[2];
192         char *cmd;
193
194         /* diff_cmd and diff_arg have 4 %s in total which makes
195          * the sum of these strings 8 bytes larger than required.
196          * we use 2 spaces around diff-opts, and we need to count
197          * terminating NUL; we used to subtract 5 here, but we do not
198          * care about small leaks in this subprocess that is about
199          * to exec "diff" anymore.
200          */
201         cmd_size = (strlen(diff_cmd) + strlen(diff_opts) + strlen(diff_arg)
202                     + 128);
203
204         for (i = 0; i < 2; i++) {
205                 input_name_sq[i] = sq_quote(temp[i].name);
206                 if (!strcmp(temp[i].name, "/dev/null"))
207                         label_path[i] = "/dev/null";
208                 else if (!i)
209                         label_path[i] = sq_quote(quote_two("a/", name_a));
210                 else
211                         label_path[i] = sq_quote(quote_two("b/", name_b));
212                 cmd_size += (strlen(label_path[i]) + strlen(input_name_sq[i]));
213         }
214
215         cmd = xmalloc(cmd_size);
216
217         next_at = 0;
218         next_at += snprintf(cmd+next_at, cmd_size-next_at,
219                             diff_cmd, label_path[0], label_path[1]);
220         next_at += snprintf(cmd+next_at, cmd_size-next_at,
221                             " %s ", diff_opts);
222         next_at += snprintf(cmd+next_at, cmd_size-next_at,
223                             diff_arg, input_name_sq[0], input_name_sq[1]);
224
225         printf("diff --git %s %s\n",
226                quote_two("a/", name_a), quote_two("b/", name_b));
227         if (label_path[0][0] == '/') {
228                 /* dev/null */
229                 printf("new file mode %s\n", temp[1].mode);
230                 if (xfrm_msg && xfrm_msg[0])
231                         puts(xfrm_msg);
232         }
233         else if (label_path[1][0] == '/') {
234                 printf("deleted file mode %s\n", temp[0].mode);
235                 if (xfrm_msg && xfrm_msg[0])
236                         puts(xfrm_msg);
237         }
238         else {
239                 if (strcmp(temp[0].mode, temp[1].mode)) {
240                         printf("old mode %s\n", temp[0].mode);
241                         printf("new mode %s\n", temp[1].mode);
242                 }
243                 if (xfrm_msg && xfrm_msg[0])
244                         puts(xfrm_msg);
245                 if (strncmp(temp[0].mode, temp[1].mode, 3))
246                         /* we do not run diff between different kind
247                          * of objects.
248                          */
249                         exit(0);
250                 if (complete_rewrite) {
251                         fflush(NULL);
252                         emit_rewrite_diff(name_a, name_b, temp);
253                         exit(0);
254                 }
255         }
256         fflush(NULL);
257         execlp("/bin/sh","sh", "-c", cmd, NULL);
258 }
259
260 struct diff_filespec *alloc_filespec(const char *path)
261 {
262         int namelen = strlen(path);
263         struct diff_filespec *spec = xmalloc(sizeof(*spec) + namelen + 1);
264
265         memset(spec, 0, sizeof(*spec));
266         spec->path = (char *)(spec + 1);
267         memcpy(spec->path, path, namelen+1);
268         return spec;
269 }
270
271 void fill_filespec(struct diff_filespec *spec, const unsigned char *sha1,
272                    unsigned short mode)
273 {
274         if (mode) {
275                 spec->mode = DIFF_FILE_CANON_MODE(mode);
276                 memcpy(spec->sha1, sha1, 20);
277                 spec->sha1_valid = !!memcmp(sha1, null_sha1, 20);
278         }
279 }
280
281 /*
282  * Given a name and sha1 pair, if the dircache tells us the file in
283  * the work tree has that object contents, return true, so that
284  * prepare_temp_file() does not have to inflate and extract.
285  */
286 static int work_tree_matches(const char *name, const unsigned char *sha1)
287 {
288         struct cache_entry *ce;
289         struct stat st;
290         int pos, len;
291
292         /* We do not read the cache ourselves here, because the
293          * benchmark with my previous version that always reads cache
294          * shows that it makes things worse for diff-tree comparing
295          * two linux-2.6 kernel trees in an already checked out work
296          * tree.  This is because most diff-tree comparisons deal with
297          * only a small number of files, while reading the cache is
298          * expensive for a large project, and its cost outweighs the
299          * savings we get by not inflating the object to a temporary
300          * file.  Practically, this code only helps when we are used
301          * by diff-cache --cached, which does read the cache before
302          * calling us.
303          */
304         if (!active_cache)
305                 return 0;
306
307         len = strlen(name);
308         pos = cache_name_pos(name, len);
309         if (pos < 0)
310                 return 0;
311         ce = active_cache[pos];
312         if ((lstat(name, &st) < 0) ||
313             !S_ISREG(st.st_mode) || /* careful! */
314             ce_match_stat(ce, &st) ||
315             memcmp(sha1, ce->sha1, 20))
316                 return 0;
317         /* we return 1 only when we can stat, it is a regular file,
318          * stat information matches, and sha1 recorded in the cache
319          * matches.  I.e. we know the file in the work tree really is
320          * the same as the <name, sha1> pair.
321          */
322         return 1;
323 }
324
325 static struct sha1_size_cache {
326         unsigned char sha1[20];
327         unsigned long size;
328 } **sha1_size_cache;
329 static int sha1_size_cache_nr, sha1_size_cache_alloc;
330
331 static struct sha1_size_cache *locate_size_cache(unsigned char *sha1,
332                                                  int find_only,
333                                                  unsigned long size)
334 {
335         int first, last;
336         struct sha1_size_cache *e;
337
338         first = 0;
339         last = sha1_size_cache_nr;
340         while (last > first) {
341                 int cmp, next = (last + first) >> 1;
342                 e = sha1_size_cache[next];
343                 cmp = memcmp(e->sha1, sha1, 20);
344                 if (!cmp)
345                         return e;
346                 if (cmp < 0) {
347                         last = next;
348                         continue;
349                 }
350                 first = next+1;
351         }
352         /* not found */
353         if (find_only)
354                 return NULL;
355         /* insert to make it at "first" */
356         if (sha1_size_cache_alloc <= sha1_size_cache_nr) {
357                 sha1_size_cache_alloc = alloc_nr(sha1_size_cache_alloc);
358                 sha1_size_cache = xrealloc(sha1_size_cache,
359                                            sha1_size_cache_alloc *
360                                            sizeof(*sha1_size_cache));
361         }
362         sha1_size_cache_nr++;
363         if (first < sha1_size_cache_nr)
364                 memmove(sha1_size_cache + first + 1, sha1_size_cache + first,
365                         (sha1_size_cache_nr - first - 1) *
366                         sizeof(*sha1_size_cache));
367         e = xmalloc(sizeof(struct sha1_size_cache));
368         sha1_size_cache[first] = e;
369         memcpy(e->sha1, sha1, 20);
370         e->size = size;
371         return e;
372 }
373
374 /*
375  * While doing rename detection and pickaxe operation, we may need to
376  * grab the data for the blob (or file) for our own in-core comparison.
377  * diff_filespec has data and size fields for this purpose.
378  */
379 int diff_populate_filespec(struct diff_filespec *s, int size_only)
380 {
381         int err = 0;
382         if (!DIFF_FILE_VALID(s))
383                 die("internal error: asking to populate invalid file.");
384         if (S_ISDIR(s->mode))
385                 return -1;
386
387         if (!use_size_cache)
388                 size_only = 0;
389
390         if (s->data)
391                 return err;
392         if (!s->sha1_valid ||
393             work_tree_matches(s->path, s->sha1)) {
394                 struct stat st;
395                 int fd;
396                 if (lstat(s->path, &st) < 0) {
397                         if (errno == ENOENT) {
398                         err_empty:
399                                 err = -1;
400                         empty:
401                                 s->data = "";
402                                 s->size = 0;
403                                 return err;
404                         }
405                 }
406                 s->size = st.st_size;
407                 if (!s->size)
408                         goto empty;
409                 if (size_only)
410                         return 0;
411                 if (S_ISLNK(st.st_mode)) {
412                         int ret;
413                         s->data = xmalloc(s->size);
414                         s->should_free = 1;
415                         ret = readlink(s->path, s->data, s->size);
416                         if (ret < 0) {
417                                 free(s->data);
418                                 goto err_empty;
419                         }
420                         return 0;
421                 }
422                 fd = open(s->path, O_RDONLY);
423                 if (fd < 0)
424                         goto err_empty;
425                 s->data = mmap(NULL, s->size, PROT_READ, MAP_PRIVATE, fd, 0);
426                 close(fd);
427                 if (s->data == MAP_FAILED)
428                         goto err_empty;
429                 s->should_munmap = 1;
430         }
431         else {
432                 char type[20];
433                 struct sha1_size_cache *e;
434
435                 if (size_only) {
436                         e = locate_size_cache(s->sha1, 1, 0);
437                         if (e) {
438                                 s->size = e->size;
439                                 return 0;
440                         }
441                         if (!sha1_object_info(s->sha1, type, &s->size))
442                                 locate_size_cache(s->sha1, 0, s->size);
443                 }
444                 else {
445                         s->data = read_sha1_file(s->sha1, type, &s->size);
446                         s->should_free = 1;
447                 }
448         }
449         return 0;
450 }
451
452 void diff_free_filespec_data(struct diff_filespec *s)
453 {
454         if (s->should_free)
455                 free(s->data);
456         else if (s->should_munmap)
457                 munmap(s->data, s->size);
458         s->should_free = s->should_munmap = 0;
459         s->data = NULL;
460 }
461
462 static void prep_temp_blob(struct diff_tempfile *temp,
463                            void *blob,
464                            unsigned long size,
465                            const unsigned char *sha1,
466                            int mode)
467 {
468         int fd;
469
470         fd = git_mkstemp(temp->tmp_path, TEMPFILE_PATH_LEN, ".diff_XXXXXX");
471         if (fd < 0)
472                 die("unable to create temp-file");
473         if (write(fd, blob, size) != size)
474                 die("unable to write temp-file");
475         close(fd);
476         temp->name = temp->tmp_path;
477         strcpy(temp->hex, sha1_to_hex(sha1));
478         temp->hex[40] = 0;
479         sprintf(temp->mode, "%06o", mode);
480 }
481
482 static void prepare_temp_file(const char *name,
483                               struct diff_tempfile *temp,
484                               struct diff_filespec *one)
485 {
486         if (!DIFF_FILE_VALID(one)) {
487         not_a_valid_file:
488                 /* A '-' entry produces this for file-2, and
489                  * a '+' entry produces this for file-1.
490                  */
491                 temp->name = "/dev/null";
492                 strcpy(temp->hex, ".");
493                 strcpy(temp->mode, ".");
494                 return;
495         }
496
497         if (!one->sha1_valid ||
498             work_tree_matches(name, one->sha1)) {
499                 struct stat st;
500                 if (lstat(name, &st) < 0) {
501                         if (errno == ENOENT)
502                                 goto not_a_valid_file;
503                         die("stat(%s): %s", name, strerror(errno));
504                 }
505                 if (S_ISLNK(st.st_mode)) {
506                         int ret;
507                         char buf[PATH_MAX + 1]; /* ought to be SYMLINK_MAX */
508                         if (sizeof(buf) <= st.st_size)
509                                 die("symlink too long: %s", name);
510                         ret = readlink(name, buf, st.st_size);
511                         if (ret < 0)
512                                 die("readlink(%s)", name);
513                         prep_temp_blob(temp, buf, st.st_size,
514                                        (one->sha1_valid ?
515                                         one->sha1 : null_sha1),
516                                        (one->sha1_valid ?
517                                         one->mode : S_IFLNK));
518                 }
519                 else {
520                         /* we can borrow from the file in the work tree */
521                         temp->name = name;
522                         if (!one->sha1_valid)
523                                 strcpy(temp->hex, sha1_to_hex(null_sha1));
524                         else
525                                 strcpy(temp->hex, sha1_to_hex(one->sha1));
526                         /* Even though we may sometimes borrow the
527                          * contents from the work tree, we always want
528                          * one->mode.  mode is trustworthy even when
529                          * !(one->sha1_valid), as long as
530                          * DIFF_FILE_VALID(one).
531                          */
532                         sprintf(temp->mode, "%06o", one->mode);
533                 }
534                 return;
535         }
536         else {
537                 if (diff_populate_filespec(one, 0))
538                         die("cannot read data blob for %s", one->path);
539                 prep_temp_blob(temp, one->data, one->size,
540                                one->sha1, one->mode);
541         }
542 }
543
544 static void remove_tempfile(void)
545 {
546         int i;
547
548         for (i = 0; i < 2; i++)
549                 if (diff_temp[i].name == diff_temp[i].tmp_path) {
550                         unlink(diff_temp[i].name);
551                         diff_temp[i].name = NULL;
552                 }
553 }
554
555 static void remove_tempfile_on_signal(int signo)
556 {
557         remove_tempfile();
558 }
559
560 /* An external diff command takes:
561  *
562  * diff-cmd name infile1 infile1-sha1 infile1-mode \
563  *               infile2 infile2-sha1 infile2-mode [ rename-to ]
564  *
565  */
566 static void run_external_diff(const char *pgm,
567                               const char *name,
568                               const char *other,
569                               struct diff_filespec *one,
570                               struct diff_filespec *two,
571                               const char *xfrm_msg,
572                               int complete_rewrite)
573 {
574         struct diff_tempfile *temp = diff_temp;
575         pid_t pid;
576         int status;
577         static int atexit_asked = 0;
578         const char *othername;
579
580         othername = (other? other : name);
581         if (one && two) {
582                 prepare_temp_file(name, &temp[0], one);
583                 prepare_temp_file(othername, &temp[1], two);
584                 if (! atexit_asked &&
585                     (temp[0].name == temp[0].tmp_path ||
586                      temp[1].name == temp[1].tmp_path)) {
587                         atexit_asked = 1;
588                         atexit(remove_tempfile);
589                 }
590                 signal(SIGINT, remove_tempfile_on_signal);
591         }
592
593         fflush(NULL);
594         pid = fork();
595         if (pid < 0)
596                 die("unable to fork");
597         if (!pid) {
598                 if (pgm) {
599                         if (one && two) {
600                                 const char *exec_arg[10];
601                                 const char **arg = &exec_arg[0];
602                                 *arg++ = pgm;
603                                 *arg++ = name;
604                                 *arg++ = temp[0].name;
605                                 *arg++ = temp[0].hex;
606                                 *arg++ = temp[0].mode;
607                                 *arg++ = temp[1].name;
608                                 *arg++ = temp[1].hex;
609                                 *arg++ = temp[1].mode;
610                                 if (other) {
611                                         *arg++ = other;
612                                         *arg++ = xfrm_msg;
613                                 }
614                                 *arg = NULL;
615                                 execvp(pgm, (char *const*) exec_arg);
616                         }
617                         else
618                                 execlp(pgm, pgm, name, NULL);
619                 }
620                 /*
621                  * otherwise we use the built-in one.
622                  */
623                 if (one && two)
624                         builtin_diff(name, othername, temp, xfrm_msg,
625                                      complete_rewrite);
626                 else
627                         printf("* Unmerged path %s\n", name);
628                 exit(0);
629         }
630         if (waitpid(pid, &status, 0) < 0 ||
631             !WIFEXITED(status) || WEXITSTATUS(status)) {
632                 /* Earlier we did not check the exit status because
633                  * diff exits non-zero if files are different, and
634                  * we are not interested in knowing that.  It was a
635                  * mistake which made it harder to quit a diff-*
636                  * session that uses the git-apply-patch-script as
637                  * the GIT_EXTERNAL_DIFF.  A custom GIT_EXTERNAL_DIFF
638                  * should also exit non-zero only when it wants to
639                  * abort the entire diff-* session.
640                  */
641                 remove_tempfile();
642                 fprintf(stderr, "external diff died, stopping at %s.\n", name);
643                 exit(1);
644         }
645         remove_tempfile();
646 }
647
648 static void diff_fill_sha1_info(struct diff_filespec *one)
649 {
650         if (DIFF_FILE_VALID(one)) {
651                 if (!one->sha1_valid) {
652                         struct stat st;
653                         if (lstat(one->path, &st) < 0)
654                                 die("stat %s", one->path);
655                         if (index_path(one->sha1, one->path, &st, 0))
656                                 die("cannot hash %s\n", one->path);
657                 }
658         }
659         else
660                 memset(one->sha1, 0, 20);
661 }
662
663 static void run_diff(struct diff_filepair *p, struct diff_options *o)
664 {
665         const char *pgm = external_diff();
666         char msg[PATH_MAX*2+300], *xfrm_msg;
667         struct diff_filespec *one;
668         struct diff_filespec *two;
669         const char *name;
670         const char *other;
671         char *name_munged, *other_munged;
672         int complete_rewrite = 0;
673         int len;
674
675         if (DIFF_PAIR_UNMERGED(p)) {
676                 /* unmerged */
677                 run_external_diff(pgm, p->one->path, NULL, NULL, NULL, NULL,
678                                   0);
679                 return;
680         }
681
682         name = p->one->path;
683         other = (strcmp(name, p->two->path) ? p->two->path : NULL);
684         name_munged = quote_one(name);
685         other_munged = quote_one(other);
686         one = p->one; two = p->two;
687
688         diff_fill_sha1_info(one);
689         diff_fill_sha1_info(two);
690
691         len = 0;
692         switch (p->status) {
693         case DIFF_STATUS_COPIED:
694                 len += snprintf(msg + len, sizeof(msg) - len,
695                                 "similarity index %d%%\n"
696                                 "copy from %s\n"
697                                 "copy to %s\n",
698                                 (int)(0.5 + p->score * 100.0/MAX_SCORE),
699                                 name_munged, other_munged);
700                 break;
701         case DIFF_STATUS_RENAMED:
702                 len += snprintf(msg + len, sizeof(msg) - len,
703                                 "similarity index %d%%\n"
704                                 "rename from %s\n"
705                                 "rename to %s\n",
706                                 (int)(0.5 + p->score * 100.0/MAX_SCORE),
707                                 name_munged, other_munged);
708                 break;
709         case DIFF_STATUS_MODIFIED:
710                 if (p->score) {
711                         len += snprintf(msg + len, sizeof(msg) - len,
712                                         "dissimilarity index %d%%\n",
713                                         (int)(0.5 + p->score *
714                                               100.0/MAX_SCORE));
715                         complete_rewrite = 1;
716                         break;
717                 }
718                 /* fallthru */
719         default:
720                 /* nothing */
721                 ;
722         }
723
724         if (memcmp(one->sha1, two->sha1, 20)) {
725                 char one_sha1[41];
726                 int abbrev = o->full_index ? 40 : DEFAULT_ABBREV;
727                 memcpy(one_sha1, sha1_to_hex(one->sha1), 41);
728
729                 len += snprintf(msg + len, sizeof(msg) - len,
730                                 "index %.*s..%.*s",
731                                 abbrev, one_sha1, abbrev,
732                                 sha1_to_hex(two->sha1));
733                 if (one->mode == two->mode)
734                         len += snprintf(msg + len, sizeof(msg) - len,
735                                         " %06o", one->mode);
736                 len += snprintf(msg + len, sizeof(msg) - len, "\n");
737         }
738
739         if (len)
740                 msg[--len] = 0;
741         xfrm_msg = len ? msg : NULL;
742
743         if (!pgm &&
744             DIFF_FILE_VALID(one) && DIFF_FILE_VALID(two) &&
745             (S_IFMT & one->mode) != (S_IFMT & two->mode)) {
746                 /* a filepair that changes between file and symlink
747                  * needs to be split into deletion and creation.
748                  */
749                 struct diff_filespec *null = alloc_filespec(two->path);
750                 run_external_diff(NULL, name, other, one, null, xfrm_msg, 0);
751                 free(null);
752                 null = alloc_filespec(one->path);
753                 run_external_diff(NULL, name, other, null, two, xfrm_msg, 0);
754                 free(null);
755         }
756         else
757                 run_external_diff(pgm, name, other, one, two, xfrm_msg,
758                                   complete_rewrite);
759
760         free(name_munged);
761         free(other_munged);
762 }
763
764 void diff_setup(struct diff_options *options)
765 {
766         memset(options, 0, sizeof(*options));
767         options->output_format = DIFF_FORMAT_RAW;
768         options->line_termination = '\n';
769         options->break_opt = -1;
770         options->rename_limit = -1;
771
772         options->change = diff_change;
773         options->add_remove = diff_addremove;
774 }
775
776 int diff_setup_done(struct diff_options *options)
777 {
778         if ((options->find_copies_harder &&
779              options->detect_rename != DIFF_DETECT_COPY) ||
780             (0 <= options->rename_limit && !options->detect_rename))
781                 return -1;
782         if (options->detect_rename && options->rename_limit < 0)
783                 options->rename_limit = diff_rename_limit_default;
784         if (options->setup & DIFF_SETUP_USE_CACHE) {
785                 if (!active_cache)
786                         /* read-cache does not die even when it fails
787                          * so it is safe for us to do this here.  Also
788                          * it does not smudge active_cache or active_nr
789                          * when it fails, so we do not have to worry about
790                          * cleaning it up ourselves either.
791                          */
792                         read_cache();
793         }
794         if (options->setup & DIFF_SETUP_USE_SIZE_CACHE)
795                 use_size_cache = 1;
796         if (options->abbrev <= 0 || 40 < options->abbrev)
797                 options->abbrev = 40; /* full */
798
799         return 0;
800 }
801
802 int diff_opt_parse(struct diff_options *options, const char **av, int ac)
803 {
804         const char *arg = av[0];
805         if (!strcmp(arg, "-p") || !strcmp(arg, "-u"))
806                 options->output_format = DIFF_FORMAT_PATCH;
807         else if (!strcmp(arg, "-z"))
808                 options->line_termination = 0;
809         else if (!strncmp(arg, "-l", 2))
810                 options->rename_limit = strtoul(arg+2, NULL, 10);
811         else if (!strcmp(arg, "--full-index"))
812                 options->full_index = 1;
813         else if (!strcmp(arg, "--name-only"))
814                 options->output_format = DIFF_FORMAT_NAME;
815         else if (!strcmp(arg, "--name-status"))
816                 options->output_format = DIFF_FORMAT_NAME_STATUS;
817         else if (!strcmp(arg, "-R"))
818                 options->reverse_diff = 1;
819         else if (!strncmp(arg, "-S", 2))
820                 options->pickaxe = arg + 2;
821         else if (!strcmp(arg, "-s"))
822                 options->output_format = DIFF_FORMAT_NO_OUTPUT;
823         else if (!strncmp(arg, "-O", 2))
824                 options->orderfile = arg + 2;
825         else if (!strncmp(arg, "--diff-filter=", 14))
826                 options->filter = arg + 14;
827         else if (!strcmp(arg, "--pickaxe-all"))
828                 options->pickaxe_opts = DIFF_PICKAXE_ALL;
829         else if (!strncmp(arg, "-B", 2)) {
830                 if ((options->break_opt =
831                      diff_scoreopt_parse(arg)) == -1)
832                         return -1;
833         }
834         else if (!strncmp(arg, "-M", 2)) {
835                 if ((options->rename_score =
836                      diff_scoreopt_parse(arg)) == -1)
837                         return -1;
838                 options->detect_rename = DIFF_DETECT_RENAME;
839         }
840         else if (!strncmp(arg, "-C", 2)) {
841                 if ((options->rename_score =
842                      diff_scoreopt_parse(arg)) == -1)
843                         return -1;
844                 options->detect_rename = DIFF_DETECT_COPY;
845         }
846         else if (!strcmp(arg, "--find-copies-harder"))
847                 options->find_copies_harder = 1;
848         else if (!strcmp(arg, "--abbrev"))
849                 options->abbrev = DEFAULT_ABBREV;
850         else if (!strncmp(arg, "--abbrev=", 9)) {
851                 options->abbrev = strtoul(arg + 9, NULL, 10);
852                 if (options->abbrev < MINIMUM_ABBREV)
853                         options->abbrev = MINIMUM_ABBREV;
854                 else if (40 < options->abbrev)
855                         options->abbrev = 40;
856         }
857         else
858                 return 0;
859         return 1;
860 }
861
862 static int parse_num(const char **cp_p)
863 {
864         unsigned long num, scale;
865         int ch, dot;
866         const char *cp = *cp_p;
867
868         num = 0;
869         scale = 1;
870         dot = 0;
871         for(;;) {
872                 ch = *cp;
873                 if ( !dot && ch == '.' ) {
874                         scale = 1;
875                         dot = 1;
876                 } else if ( ch == '%' ) {
877                         scale = dot ? scale*100 : 100;
878                         cp++;   /* % is always at the end */
879                         break;
880                 } else if ( ch >= '0' && ch <= '9' ) {
881                         if ( scale < 100000 ) {
882                                 scale *= 10;
883                                 num = (num*10) + (ch-'0');
884                         }
885                 } else {
886                         break;
887                 }
888                 cp++;
889         }
890         *cp_p = cp;
891
892         /* user says num divided by scale and we say internally that
893          * is MAX_SCORE * num / scale.
894          */
895         return (num >= scale) ? MAX_SCORE : (MAX_SCORE * num / scale);
896 }
897
898 int diff_scoreopt_parse(const char *opt)
899 {
900         int opt1, opt2, cmd;
901
902         if (*opt++ != '-')
903                 return -1;
904         cmd = *opt++;
905         if (cmd != 'M' && cmd != 'C' && cmd != 'B')
906                 return -1; /* that is not a -M, -C nor -B option */
907
908         opt1 = parse_num(&opt);
909         if (cmd != 'B')
910                 opt2 = 0;
911         else {
912                 if (*opt == 0)
913                         opt2 = 0;
914                 else if (*opt != '/')
915                         return -1; /* we expect -B80/99 or -B80 */
916                 else {
917                         opt++;
918                         opt2 = parse_num(&opt);
919                 }
920         }
921         if (*opt != 0)
922                 return -1;
923         return opt1 | (opt2 << 16);
924 }
925
926 struct diff_queue_struct diff_queued_diff;
927
928 void diff_q(struct diff_queue_struct *queue, struct diff_filepair *dp)
929 {
930         if (queue->alloc <= queue->nr) {
931                 queue->alloc = alloc_nr(queue->alloc);
932                 queue->queue = xrealloc(queue->queue,
933                                         sizeof(dp) * queue->alloc);
934         }
935         queue->queue[queue->nr++] = dp;
936 }
937
938 struct diff_filepair *diff_queue(struct diff_queue_struct *queue,
939                                  struct diff_filespec *one,
940                                  struct diff_filespec *two)
941 {
942         struct diff_filepair *dp = xmalloc(sizeof(*dp));
943         dp->one = one;
944         dp->two = two;
945         dp->score = 0;
946         dp->status = 0;
947         dp->source_stays = 0;
948         dp->broken_pair = 0;
949         if (queue)
950                 diff_q(queue, dp);
951         return dp;
952 }
953
954 void diff_free_filepair(struct diff_filepair *p)
955 {
956         diff_free_filespec_data(p->one);
957         diff_free_filespec_data(p->two);
958         free(p->one);
959         free(p->two);
960         free(p);
961 }
962
963 /* This is different from find_unique_abbrev() in that
964  * it needs to deal with 0{40} SHA1.
965  */
966 const char *diff_unique_abbrev(const unsigned char *sha1, int len)
967 {
968         int abblen;
969         const char *abbrev;
970         if (len == 40)
971                 return sha1_to_hex(sha1);
972
973         abbrev = find_unique_abbrev(sha1, len);
974         if (!abbrev) {
975                 if (!memcmp(sha1, null_sha1, 20)) {
976                         char *buf = sha1_to_hex(null_sha1);
977                         if (len < 37)
978                                 strcpy(buf + len, "...");
979                         return buf;
980                 }
981                 else 
982                         return sha1_to_hex(sha1);
983         }
984         abblen = strlen(abbrev);
985         if (abblen < 37) {
986                 static char hex[41];
987                 if (len < abblen && abblen <= len + 2)
988                         sprintf(hex, "%s%.*s", abbrev, len+3-abblen, "..");
989                 else
990                         sprintf(hex, "%s...", abbrev);
991                 return hex;
992         }
993         return sha1_to_hex(sha1);
994 }
995
996 static void diff_flush_raw(struct diff_filepair *p,
997                            int line_termination,
998                            int inter_name_termination,
999                            struct diff_options *options)
1000 {
1001         int two_paths;
1002         char status[10];
1003         int abbrev = options->abbrev;
1004         const char *path_one, *path_two;
1005         int output_format = options->output_format;
1006
1007         path_one = p->one->path;
1008         path_two = p->two->path;
1009         if (line_termination) {
1010                 path_one = quote_one(path_one);
1011                 path_two = quote_one(path_two);
1012         }
1013
1014         if (p->score)
1015                 sprintf(status, "%c%03d", p->status,
1016                         (int)(0.5 + p->score * 100.0/MAX_SCORE));
1017         else {
1018                 status[0] = p->status;
1019                 status[1] = 0;
1020         }
1021         switch (p->status) {
1022         case DIFF_STATUS_COPIED:
1023         case DIFF_STATUS_RENAMED:
1024                 two_paths = 1;
1025                 break;
1026         case DIFF_STATUS_ADDED:
1027         case DIFF_STATUS_DELETED:
1028                 two_paths = 0;
1029                 break;
1030         default:
1031                 two_paths = 0;
1032                 break;
1033         }
1034         if (output_format != DIFF_FORMAT_NAME_STATUS) {
1035                 printf(":%06o %06o %s ",
1036                        p->one->mode, p->two->mode,
1037                        diff_unique_abbrev(p->one->sha1, abbrev));
1038                 printf("%s ",
1039                        diff_unique_abbrev(p->two->sha1, abbrev));
1040         }
1041         printf("%s%c%s", status, inter_name_termination, path_one);
1042         if (two_paths)
1043                 printf("%c%s", inter_name_termination, path_two);
1044         putchar(line_termination);
1045         if (path_one != p->one->path)
1046                 free((void*)path_one);
1047         if (path_two != p->two->path)
1048                 free((void*)path_two);
1049 }
1050
1051 static void diff_flush_name(struct diff_filepair *p,
1052                             int inter_name_termination,
1053                             int line_termination)
1054 {
1055         char *path = p->two->path;
1056
1057         if (line_termination)
1058                 path = quote_one(p->two->path);
1059         else
1060                 path = p->two->path;
1061         printf("%s%c", path, line_termination);
1062         if (p->two->path != path)
1063                 free(path);
1064 }
1065
1066 int diff_unmodified_pair(struct diff_filepair *p)
1067 {
1068         /* This function is written stricter than necessary to support
1069          * the currently implemented transformers, but the idea is to
1070          * let transformers to produce diff_filepairs any way they want,
1071          * and filter and clean them up here before producing the output.
1072          */
1073         struct diff_filespec *one, *two;
1074
1075         if (DIFF_PAIR_UNMERGED(p))
1076                 return 0; /* unmerged is interesting */
1077
1078         one = p->one;
1079         two = p->two;
1080
1081         /* deletion, addition, mode or type change
1082          * and rename are all interesting.
1083          */
1084         if (DIFF_FILE_VALID(one) != DIFF_FILE_VALID(two) ||
1085             DIFF_PAIR_MODE_CHANGED(p) ||
1086             strcmp(one->path, two->path))
1087                 return 0;
1088
1089         /* both are valid and point at the same path.  that is, we are
1090          * dealing with a change.
1091          */
1092         if (one->sha1_valid && two->sha1_valid &&
1093             !memcmp(one->sha1, two->sha1, sizeof(one->sha1)))
1094                 return 1; /* no change */
1095         if (!one->sha1_valid && !two->sha1_valid)
1096                 return 1; /* both look at the same file on the filesystem. */
1097         return 0;
1098 }
1099
1100 static void diff_flush_patch(struct diff_filepair *p, struct diff_options *o)
1101 {
1102         if (diff_unmodified_pair(p))
1103                 return;
1104
1105         if ((DIFF_FILE_VALID(p->one) && S_ISDIR(p->one->mode)) ||
1106             (DIFF_FILE_VALID(p->two) && S_ISDIR(p->two->mode)))
1107                 return; /* no tree diffs in patch format */ 
1108
1109         run_diff(p, o);
1110 }
1111
1112 int diff_queue_is_empty(void)
1113 {
1114         struct diff_queue_struct *q = &diff_queued_diff;
1115         int i;
1116         for (i = 0; i < q->nr; i++)
1117                 if (!diff_unmodified_pair(q->queue[i]))
1118                         return 0;
1119         return 1;
1120 }
1121
1122 #if DIFF_DEBUG
1123 void diff_debug_filespec(struct diff_filespec *s, int x, const char *one)
1124 {
1125         fprintf(stderr, "queue[%d] %s (%s) %s %06o %s\n",
1126                 x, one ? one : "",
1127                 s->path,
1128                 DIFF_FILE_VALID(s) ? "valid" : "invalid",
1129                 s->mode,
1130                 s->sha1_valid ? sha1_to_hex(s->sha1) : "");
1131         fprintf(stderr, "queue[%d] %s size %lu flags %d\n",
1132                 x, one ? one : "",
1133                 s->size, s->xfrm_flags);
1134 }
1135
1136 void diff_debug_filepair(const struct diff_filepair *p, int i)
1137 {
1138         diff_debug_filespec(p->one, i, "one");
1139         diff_debug_filespec(p->two, i, "two");
1140         fprintf(stderr, "score %d, status %c stays %d broken %d\n",
1141                 p->score, p->status ? p->status : '?',
1142                 p->source_stays, p->broken_pair);
1143 }
1144
1145 void diff_debug_queue(const char *msg, struct diff_queue_struct *q)
1146 {
1147         int i;
1148         if (msg)
1149                 fprintf(stderr, "%s\n", msg);
1150         fprintf(stderr, "q->nr = %d\n", q->nr);
1151         for (i = 0; i < q->nr; i++) {
1152                 struct diff_filepair *p = q->queue[i];
1153                 diff_debug_filepair(p, i);
1154         }
1155 }
1156 #endif
1157
1158 static void diff_resolve_rename_copy(void)
1159 {
1160         int i, j;
1161         struct diff_filepair *p, *pp;
1162         struct diff_queue_struct *q = &diff_queued_diff;
1163
1164         diff_debug_queue("resolve-rename-copy", q);
1165
1166         for (i = 0; i < q->nr; i++) {
1167                 p = q->queue[i];
1168                 p->status = 0; /* undecided */
1169                 if (DIFF_PAIR_UNMERGED(p))
1170                         p->status = DIFF_STATUS_UNMERGED;
1171                 else if (!DIFF_FILE_VALID(p->one))
1172                         p->status = DIFF_STATUS_ADDED;
1173                 else if (!DIFF_FILE_VALID(p->two))
1174                         p->status = DIFF_STATUS_DELETED;
1175                 else if (DIFF_PAIR_TYPE_CHANGED(p))
1176                         p->status = DIFF_STATUS_TYPE_CHANGED;
1177
1178                 /* from this point on, we are dealing with a pair
1179                  * whose both sides are valid and of the same type, i.e.
1180                  * either in-place edit or rename/copy edit.
1181                  */
1182                 else if (DIFF_PAIR_RENAME(p)) {
1183                         if (p->source_stays) {
1184                                 p->status = DIFF_STATUS_COPIED;
1185                                 continue;
1186                         }
1187                         /* See if there is some other filepair that
1188                          * copies from the same source as us.  If so
1189                          * we are a copy.  Otherwise we are either a
1190                          * copy if the path stays, or a rename if it
1191                          * does not, but we already handled "stays" case.
1192                          */
1193                         for (j = i + 1; j < q->nr; j++) {
1194                                 pp = q->queue[j];
1195                                 if (strcmp(pp->one->path, p->one->path))
1196                                         continue; /* not us */
1197                                 if (!DIFF_PAIR_RENAME(pp))
1198                                         continue; /* not a rename/copy */
1199                                 /* pp is a rename/copy from the same source */
1200                                 p->status = DIFF_STATUS_COPIED;
1201                                 break;
1202                         }
1203                         if (!p->status)
1204                                 p->status = DIFF_STATUS_RENAMED;
1205                 }
1206                 else if (memcmp(p->one->sha1, p->two->sha1, 20) ||
1207                          p->one->mode != p->two->mode)
1208                         p->status = DIFF_STATUS_MODIFIED;
1209                 else {
1210                         /* This is a "no-change" entry and should not
1211                          * happen anymore, but prepare for broken callers.
1212                          */
1213                         error("feeding unmodified %s to diffcore",
1214                               p->one->path);
1215                         p->status = DIFF_STATUS_UNKNOWN;
1216                 }
1217         }
1218         diff_debug_queue("resolve-rename-copy done", q);
1219 }
1220
1221 void diff_flush(struct diff_options *options)
1222 {
1223         struct diff_queue_struct *q = &diff_queued_diff;
1224         int i;
1225         int inter_name_termination = '\t';
1226         int diff_output_format = options->output_format;
1227         int line_termination = options->line_termination;
1228
1229         if (!line_termination)
1230                 inter_name_termination = 0;
1231
1232         for (i = 0; i < q->nr; i++) {
1233                 struct diff_filepair *p = q->queue[i];
1234                 if ((diff_output_format == DIFF_FORMAT_NO_OUTPUT) ||
1235                     (p->status == DIFF_STATUS_UNKNOWN))
1236                         continue;
1237                 if (p->status == 0)
1238                         die("internal error in diff-resolve-rename-copy");
1239                 switch (diff_output_format) {
1240                 case DIFF_FORMAT_PATCH:
1241                         diff_flush_patch(p, options);
1242                         break;
1243                 case DIFF_FORMAT_RAW:
1244                 case DIFF_FORMAT_NAME_STATUS:
1245                         diff_flush_raw(p, line_termination,
1246                                        inter_name_termination,
1247                                        options);
1248                         break;
1249                 case DIFF_FORMAT_NAME:
1250                         diff_flush_name(p,
1251                                         inter_name_termination,
1252                                         line_termination);
1253                         break;
1254                 }
1255                 diff_free_filepair(q->queue[i]);
1256         }
1257         free(q->queue);
1258         q->queue = NULL;
1259         q->nr = q->alloc = 0;
1260 }
1261
1262 static void diffcore_apply_filter(const char *filter)
1263 {
1264         int i;
1265         struct diff_queue_struct *q = &diff_queued_diff;
1266         struct diff_queue_struct outq;
1267         outq.queue = NULL;
1268         outq.nr = outq.alloc = 0;
1269
1270         if (!filter)
1271                 return;
1272
1273         if (strchr(filter, DIFF_STATUS_FILTER_AON)) {
1274                 int found;
1275                 for (i = found = 0; !found && i < q->nr; i++) {
1276                         struct diff_filepair *p = q->queue[i];
1277                         if (((p->status == DIFF_STATUS_MODIFIED) &&
1278                              ((p->score &&
1279                                strchr(filter, DIFF_STATUS_FILTER_BROKEN)) ||
1280                               (!p->score &&
1281                                strchr(filter, DIFF_STATUS_MODIFIED)))) ||
1282                             ((p->status != DIFF_STATUS_MODIFIED) &&
1283                              strchr(filter, p->status)))
1284                                 found++;
1285                 }
1286                 if (found)
1287                         return;
1288
1289                 /* otherwise we will clear the whole queue
1290                  * by copying the empty outq at the end of this
1291                  * function, but first clear the current entries
1292                  * in the queue.
1293                  */
1294                 for (i = 0; i < q->nr; i++)
1295                         diff_free_filepair(q->queue[i]);
1296         }
1297         else {
1298                 /* Only the matching ones */
1299                 for (i = 0; i < q->nr; i++) {
1300                         struct diff_filepair *p = q->queue[i];
1301
1302                         if (((p->status == DIFF_STATUS_MODIFIED) &&
1303                              ((p->score &&
1304                                strchr(filter, DIFF_STATUS_FILTER_BROKEN)) ||
1305                               (!p->score &&
1306                                strchr(filter, DIFF_STATUS_MODIFIED)))) ||
1307                             ((p->status != DIFF_STATUS_MODIFIED) &&
1308                              strchr(filter, p->status)))
1309                                 diff_q(&outq, p);
1310                         else
1311                                 diff_free_filepair(p);
1312                 }
1313         }
1314         free(q->queue);
1315         *q = outq;
1316 }
1317
1318 void diffcore_std(struct diff_options *options)
1319 {
1320         if (options->paths && options->paths[0])
1321                 diffcore_pathspec(options->paths);
1322         if (options->break_opt != -1)
1323                 diffcore_break(options->break_opt);
1324         if (options->detect_rename)
1325                 diffcore_rename(options);
1326         if (options->break_opt != -1)
1327                 diffcore_merge_broken();
1328         if (options->pickaxe)
1329                 diffcore_pickaxe(options->pickaxe, options->pickaxe_opts);
1330         if (options->orderfile)
1331                 diffcore_order(options->orderfile);
1332         diff_resolve_rename_copy();
1333         diffcore_apply_filter(options->filter);
1334 }
1335
1336
1337 void diffcore_std_no_resolve(struct diff_options *options)
1338 {
1339         if (options->pickaxe)
1340                 diffcore_pickaxe(options->pickaxe, options->pickaxe_opts);
1341         if (options->orderfile)
1342                 diffcore_order(options->orderfile);
1343         diffcore_apply_filter(options->filter);
1344 }
1345
1346 void diff_addremove(struct diff_options *options,
1347                     int addremove, unsigned mode,
1348                     const unsigned char *sha1,
1349                     const char *base, const char *path)
1350 {
1351         char concatpath[PATH_MAX];
1352         struct diff_filespec *one, *two;
1353
1354         /* This may look odd, but it is a preparation for
1355          * feeding "there are unchanged files which should
1356          * not produce diffs, but when you are doing copy
1357          * detection you would need them, so here they are"
1358          * entries to the diff-core.  They will be prefixed
1359          * with something like '=' or '*' (I haven't decided
1360          * which but should not make any difference).
1361          * Feeding the same new and old to diff_change() 
1362          * also has the same effect.
1363          * Before the final output happens, they are pruned after
1364          * merged into rename/copy pairs as appropriate.
1365          */
1366         if (options->reverse_diff)
1367                 addremove = (addremove == '+' ? '-' :
1368                              addremove == '-' ? '+' : addremove);
1369
1370         if (!path) path = "";
1371         sprintf(concatpath, "%s%s", base, path);
1372         one = alloc_filespec(concatpath);
1373         two = alloc_filespec(concatpath);
1374
1375         if (addremove != '+')
1376                 fill_filespec(one, sha1, mode);
1377         if (addremove != '-')
1378                 fill_filespec(two, sha1, mode);
1379
1380         diff_queue(&diff_queued_diff, one, two);
1381 }
1382
1383 void diff_change(struct diff_options *options,
1384                  unsigned old_mode, unsigned new_mode,
1385                  const unsigned char *old_sha1,
1386                  const unsigned char *new_sha1,
1387                  const char *base, const char *path) 
1388 {
1389         char concatpath[PATH_MAX];
1390         struct diff_filespec *one, *two;
1391
1392         if (options->reverse_diff) {
1393                 unsigned tmp;
1394                 const unsigned char *tmp_c;
1395                 tmp = old_mode; old_mode = new_mode; new_mode = tmp;
1396                 tmp_c = old_sha1; old_sha1 = new_sha1; new_sha1 = tmp_c;
1397         }
1398         if (!path) path = "";
1399         sprintf(concatpath, "%s%s", base, path);
1400         one = alloc_filespec(concatpath);
1401         two = alloc_filespec(concatpath);
1402         fill_filespec(one, old_sha1, old_mode);
1403         fill_filespec(two, new_sha1, new_mode);
1404
1405         diff_queue(&diff_queued_diff, one, two);
1406 }
1407
1408 void diff_unmerge(struct diff_options *options,
1409                   const char *path)
1410 {
1411         struct diff_filespec *one, *two;
1412         one = alloc_filespec(path);
1413         two = alloc_filespec(path);
1414         diff_queue(&diff_queued_diff, one, two);
1415 }