[PATCH] diff-raw format update take #2.
[gitweb.git] / diff.c
diff --git a/diff.c b/diff.c
index 4757547ea00f57a6523f0300be24b1c8bcde316e..5a2aee7acc0b54e6be8d6a884895098e0a739127 100644 (file)
--- a/diff.c
+++ b/diff.c
@@ -165,7 +165,7 @@ struct diff_filespec *alloc_filespec(const char *path)
        spec->should_free = spec->should_munmap = 0;
        spec->xfrm_flags = 0;
        spec->size = 0;
-       spec->data = 0;
+       spec->data = NULL;
        spec->mode = 0;
        memset(spec->sha1, 0, 20);
        return spec;
@@ -283,12 +283,6 @@ int diff_populate_filespec(struct diff_filespec *s)
        return 0;
 }
 
-void diff_free_filepair(struct diff_filepair *p)
-{
-       free(p->xfrm_msg);
-       free(p);
-}
-
 void diff_free_filespec_data(struct diff_filespec *s)
 {
        if (s->should_free)
@@ -296,7 +290,7 @@ void diff_free_filespec_data(struct diff_filespec *s)
        else if (s->should_munmap)
                munmap(s->data, s->size);
        s->should_free = s->should_munmap = 0;
-       s->data = 0;
+       s->data = NULL;
 }
 
 static void prep_temp_blob(struct diff_tempfile *temp,
@@ -444,7 +438,7 @@ static void run_external_diff(const char *name,
                                        *arg++ = other;
                                        *arg++ = xfrm_msg;
                                }
-                               *arg = 0;
+                               *arg = NULL;
                                execvp(pgm, (char *const*) exec_arg);
                        }
                        else
@@ -501,44 +495,41 @@ struct diff_filepair *diff_queue(struct diff_queue_struct *queue,
        struct diff_filepair *dp = xmalloc(sizeof(*dp));
        dp->one = one;
        dp->two = two;
-       dp->xfrm_msg = 0;
+       dp->score = 0;
        dp->orig_order = queue->nr;
-       dp->xfrm_work = 0;
+       dp->rename_rank = 0;
        diff_q(queue, dp);
        return dp;
 }
 
 static void diff_flush_raw(struct diff_filepair *p)
 {
-       if (DIFF_PAIR_UNMERGED(p)) {
-               printf("U %s%c", p->one->path, line_termination);
-               return;
+       int two_paths;
+       char status[10];
+       switch (p->status) {
+       case 'C': case 'R':
+               two_paths = 1;
+               sprintf(status, "%c%1d", p->status, p->score);
+               break;
+       default:
+               two_paths = 0;
+               status[0] = p->status;
+               status[1] = 0;
+               break;
        }
        printf(":%06o %06o %s ",
               p->one->mode, p->two->mode, sha1_to_hex(p->one->sha1));
-       printf("%s%c%s%c%s%c",
-              sha1_to_hex(p->two->sha1), inter_name_termination,
-              p->one->path, inter_name_termination,
-              p->two->path, line_termination);
-}
-
-static void diff_flush_patch(struct diff_filepair *p)
-{
-       const char *name, *other;
-
-       name = p->one->path;
-       other = (strcmp(name, p->two->path) ? p->two->path : NULL);
-       if ((DIFF_FILE_VALID(p->one) && S_ISDIR(p->one->mode)) ||
-           (DIFF_FILE_VALID(p->two) && S_ISDIR(p->two->mode)))
-               return; /* no tree diffs in patch format */ 
-
-       if (DIFF_PAIR_UNMERGED(p))
-               run_external_diff(name, NULL, NULL, NULL, NULL);
-       else
-               run_external_diff(name, other, p->one, p->two, p->xfrm_msg);
+       printf("%s %s%c%s",
+              sha1_to_hex(p->two->sha1),
+              status,
+              inter_name_termination,
+              p->one->path);
+       if (two_paths)
+               printf("%c%s", inter_name_termination, p->two->path);
+       putchar(line_termination);
 }
 
-static int uninteresting(struct diff_filepair *p)
+int diff_unmodified_pair(struct diff_filepair *p)
 {
        /* This function is written stricter than necessary to support
         * the currently implemented transformers, but the idea is to
@@ -570,12 +561,94 @@ static int uninteresting(struct diff_filepair *p)
        return 0;
 }
 
+static void diff_flush_patch(struct diff_filepair *p)
+{
+       const char *name, *other;
+       char msg_[PATH_MAX*2+200], *msg;
+
+       /* diffcore_prune() keeps "stay" entries for diff-raw
+        * copy/rename detection, but when we are generating
+        * patches we do not need them.
+        */
+       if (diff_unmodified_pair(p))
+               return;
+
+       name = p->one->path;
+       other = (strcmp(name, p->two->path) ? p->two->path : NULL);
+       if ((DIFF_FILE_VALID(p->one) && S_ISDIR(p->one->mode)) ||
+           (DIFF_FILE_VALID(p->two) && S_ISDIR(p->two->mode)))
+               return; /* no tree diffs in patch format */ 
+
+       switch (p->status) {
+       case 'C':
+               sprintf(msg_,
+                       "similarity index %d%%\n"
+                       "copy from %s\n"
+                       "copy to %s\n",
+                       (int)(0.5 + p->score * 100/MAX_SCORE),
+                       p->one->path, p->two->path);
+               msg = msg_;
+               break;
+       case 'R':
+               sprintf(msg_,
+                       "similarity index %d%%\n"
+                       "rename old %s\n"
+                       "rename new %s\n",
+                       (int)(0.5 + p->score * 100/MAX_SCORE),
+                       p->one->path, p->two->path);
+               msg = msg_;
+               break;
+       default:
+               msg = NULL;
+       }
+
+       if (DIFF_PAIR_UNMERGED(p))
+               run_external_diff(name, NULL, NULL, NULL, NULL);
+       else
+               run_external_diff(name, other, p->one, p->two, msg);
+}
+
+int diff_needs_to_stay(struct diff_queue_struct *q, int i,
+                      struct diff_filespec *it)
+{
+       /* If it will be used in later entry (either stay or used
+        * as the source of rename/copy), we need to copy, not rename.
+        */
+       while (i < q->nr) {
+               struct diff_filepair *p = q->queue[i++];
+               if (!DIFF_FILE_VALID(p->two))
+                       continue; /* removed is fine */
+               if (strcmp(p->one->path, it->path))
+                       continue; /* not relevant */
+
+               /* p has its src set to *it and it is not a delete;
+                * it will be used for in-place change, rename/copy,
+                * or just stays there.  We cannot rename it out.
+                */
+               return 1;
+       }
+       return 0;
+}
+
+static int diff_used_as_source(struct diff_queue_struct *q, int lim,
+                              struct diff_filespec *it)
+{
+       int i;
+       for (i = 0; i < lim; i++) {
+               struct diff_filepair *p = q->queue[i++];
+               if (!strcmp(p->one->path, it->path))
+                       return 1;
+       }
+       return 0;
+}
+
 void diffcore_prune(void)
 {
        /*
         * Although rename/copy detection wants to have "no-change"
         * entries fed into them, the downstream do not need to see
-        * them.  This function removes such entries.
+        * them, unless we had rename/copy for the same path earlier.
+        * This function removes such entries.
         *
         * The applications that use rename/copy should:
         *
@@ -585,6 +658,7 @@ void diffcore_prune(void)
         * (3) call diffcore_prune
         * (4) call other diffcore_xxx that do not need to see
         *     "no-change" entries.
+        * (5) call diff_flush().
         */
        struct diff_queue_struct *q = &diff_queued_diff;
        struct diff_queue_struct outq;
@@ -595,40 +669,24 @@ void diffcore_prune(void)
 
        for (i = 0; i < q->nr; i++) {
                struct diff_filepair *p = q->queue[i];
-               if (!uninteresting(p))
+               if (!diff_unmodified_pair(p) ||
+                   diff_used_as_source(q, i, p->one))
                        diff_q(&outq, p);
                else
-                       diff_free_filepair(p);
+                       free(p);
        }
        free(q->queue);
        *q = outq;
        return;
 }
 
-static void diff_flush_one(struct diff_filepair *p)
-{
-       if (uninteresting(p))
-               return;
-       if (generate_patch)
-               diff_flush_patch(p);
-       else
-               diff_flush_raw(p);
-}
-
 int diff_queue_is_empty(void)
 {
        struct diff_queue_struct *q = &diff_queued_diff;
-       int i;
-
-       for (i = 0; i < q->nr; i++) {
-               struct diff_filepair *p = q->queue[i];
-               if (!uninteresting(p))
-                       return 0;
-       }
-       return 1;
+       return q->nr == 0;
 }
 
-void diff_flush(int diff_output_style)
+void diff_flush(int diff_output_style, int resolve_rename_copy)
 {
        struct diff_queue_struct *q = &diff_queued_diff;
        int i;
@@ -646,13 +704,35 @@ void diff_flush(int diff_output_style)
                generate_patch = 1;
                break;
        }
-       for (i = 0; i < q->nr; i++)
-               diff_flush_one(q->queue[i]);
+       for (i = 0; i < q->nr; i++) {
+               struct diff_filepair *p = q->queue[i];
+               if (resolve_rename_copy) {
+                       if (DIFF_PAIR_UNMERGED(p))
+                               p->status = 'U';
+                       else if (!DIFF_FILE_VALID((p)->one))
+                               p->status = 'N';
+                       else if (!DIFF_FILE_VALID((p)->two))
+                               p->status = 'D';
+                       else if (strcmp(p->one->path, p->two->path)) {
+                               /* This is rename or copy.  Which one is it? */
+                               if (diff_needs_to_stay(q, i+1, p->one))
+                                       p->status = 'C';
+                               else
+                                       p->status = 'R';
+                       }
+                       else
+                               p->status = 'M';
+               }
+               if (generate_patch)
+                       diff_flush_patch(p);
+               else
+                       diff_flush_raw(p);
+       }
+
        for (i = 0; i < q->nr; i++) {
                struct diff_filepair *p = q->queue[i];
                diff_free_filespec_data(p->one);
                diff_free_filespec_data(p->two);
-               free(p->xfrm_msg);
                free(p);
        }
        free(q->queue);
@@ -674,10 +754,10 @@ void diff_addremove(int addremove, unsigned mode,
         * entries to the diff-core.  They will be prefixed
         * with something like '=' or '*' (I haven't decided
         * which but should not make any difference).
-        * Feeding the same new and old to diff_change() should
-        * also have the same effect.  diff_flush() should
-        * filter uninteresting ones out at the final output
-        * stage.
+        * Feeding the same new and old to diff_change() 
+        * also has the same effect.  diffcore_prune() should
+        * be used to filter uninteresting ones out before the
+        * final output happens.
         */
        if (reverse_diff)
                addremove = (addremove == '+' ? '-' :
@@ -696,28 +776,27 @@ void diff_addremove(int addremove, unsigned mode,
        diff_queue(&diff_queued_diff, one, two);
 }
 
-void diff_guif(unsigned old_mode,
-              unsigned new_mode,
-              const unsigned char *old_sha1,
-              const unsigned char *new_sha1,
-              const char *old_path,
-              const char *new_path)
+void diff_helper_input(unsigned old_mode,
+                      unsigned new_mode,
+                      const unsigned char *old_sha1,
+                      const unsigned char *new_sha1,
+                      const char *old_path,
+                      int status,
+                      int score,
+                      const char *new_path)
 {
        struct diff_filespec *one, *two;
+       struct diff_filepair *dp;
 
-       if (reverse_diff) {
-               unsigned tmp;
-               const unsigned char *tmp_c;
-               tmp = old_mode; old_mode = new_mode; new_mode = tmp;
-               tmp_c = old_sha1; old_sha1 = new_sha1; new_sha1 = tmp_c;
-       }
        one = alloc_filespec(old_path);
        two = alloc_filespec(new_path);
        if (old_mode)
                fill_filespec(one, old_sha1, old_mode);
        if (new_mode)
                fill_filespec(two, new_sha1, new_mode);
-       diff_queue(&diff_queued_diff, one, two);
+       dp = diff_queue(&diff_queued_diff, one, two);
+       dp->score = score;
+       dp->status = status;
 }
 
 void diff_change(unsigned old_mode, unsigned new_mode,