2 #include "range-diff.h"
3 #include "string-list.h"
4 #include "run-command.h"
7 #include "xdiff-interface.h"
8 #include "linear-assignment.h"
17 /* For the search for an exact match */
18 struct hashmap_entry e
;
19 const char *diff
, *patch
;
24 /* the index of the matching item in the other branch, or -1 */
30 * Reads the patches into a string list, with the `util` field being populated
31 * as struct object_id (will need to be free()d).
33 static int read_patches(const char *range
, struct string_list
*list
,
34 const struct strvec
*other_arg
)
36 struct child_process cp
= CHILD_PROCESS_INIT
;
37 struct strbuf buf
= STRBUF_INIT
, contents
= STRBUF_INIT
;
38 struct patch_util
*util
= NULL
;
40 char *line
, *current_filename
= NULL
;
45 strvec_pushl(&cp
.args
, "log", "--no-color", "-p", "--no-merges",
46 "--reverse", "--date-order", "--decorate=no",
47 "--no-prefix", "--submodule=short",
49 * Choose indicators that are not used anywhere
50 * else in diffs, but still look reasonable
51 * (e.g. will not be confusing when debugging)
53 "--output-indicator-new=>",
54 "--output-indicator-old=<",
55 "--output-indicator-context=#",
60 strvec_push(&cp
.args
, range
);
62 strvec_pushv(&cp
.args
, other_arg
->v
);
67 if (start_command(&cp
))
68 return error_errno(_("could not start `log`"));
69 if (strbuf_read(&contents
, cp
.out
, 0) < 0) {
70 error_errno(_("could not read `log` output"));
74 if (finish_command(&cp
))
79 for (; size
> 0; size
-= len
, line
+= len
) {
83 eol
= memchr(line
, '\n', size
);
91 if (skip_prefix(line
, "commit ", &p
)) {
93 string_list_append(list
, buf
.buf
)->util
= util
;
96 CALLOC_ARRAY(util
, 1);
97 if (get_oid(p
, &util
->oid
)) {
98 error(_("could not parse commit '%s'"), p
);
100 string_list_clear(list
, 1);
109 error(_("could not parse first line of `log` output: "
110 "did not start with 'commit ': '%s'"),
112 string_list_clear(list
, 1);
116 if (starts_with(line
, "diff --git")) {
117 struct patch patch
= { 0 };
118 struct strbuf root
= STRBUF_INIT
;
123 strbuf_addch(&buf
, '\n');
124 if (!util
->diff_offset
)
125 util
->diff_offset
= buf
.len
;
129 len
= parse_git_diff_header(&root
, &linenr
, 0, line
,
132 error(_("could not parse git header '%.*s'"),
135 string_list_clear(list
, 1);
138 strbuf_addstr(&buf
, " ## ");
139 if (patch
.is_new
> 0)
140 strbuf_addf(&buf
, "%s (new)", patch
.new_name
);
141 else if (patch
.is_delete
> 0)
142 strbuf_addf(&buf
, "%s (deleted)", patch
.old_name
);
143 else if (patch
.is_rename
)
144 strbuf_addf(&buf
, "%s => %s", patch
.old_name
, patch
.new_name
);
146 strbuf_addstr(&buf
, patch
.new_name
);
148 free(current_filename
);
149 if (patch
.is_delete
> 0)
150 current_filename
= xstrdup(patch
.old_name
);
152 current_filename
= xstrdup(patch
.new_name
);
154 if (patch
.new_mode
&& patch
.old_mode
&&
155 patch
.old_mode
!= patch
.new_mode
)
156 strbuf_addf(&buf
, " (mode change %06o => %06o)",
157 patch
.old_mode
, patch
.new_mode
);
159 strbuf_addstr(&buf
, " ##");
160 release_patch(&patch
);
161 } else if (in_header
) {
162 if (starts_with(line
, "Author: ")) {
163 strbuf_addstr(&buf
, " ## Metadata ##\n");
164 strbuf_addstr(&buf
, line
);
165 strbuf_addstr(&buf
, "\n\n");
166 strbuf_addstr(&buf
, " ## Commit message ##\n");
167 } else if (starts_with(line
, "Notes") &&
168 line
[strlen(line
) - 1] == ':') {
169 strbuf_addstr(&buf
, "\n\n");
170 /* strip the trailing colon */
171 strbuf_addf(&buf
, " ## %.*s ##\n",
172 (int)(strlen(line
) - 1), line
);
173 } else if (starts_with(line
, " ")) {
175 while (isspace(*p
) && p
>= line
)
177 strbuf_add(&buf
, line
, p
- line
+ 1);
178 strbuf_addch(&buf
, '\n');
181 } else if (skip_prefix(line
, "@@ ", &p
)) {
183 strbuf_addstr(&buf
, "@@");
184 if (current_filename
&& p
[2])
185 strbuf_addf(&buf
, " %s:", current_filename
);
187 strbuf_addstr(&buf
, p
+ 2);
190 * A completely blank (not ' \n', which is context)
191 * line is not valid in a diff. We skip it
192 * silently, because this neatly handles the blank
193 * separator line between commits in git-log
197 else if (line
[0] == '>') {
198 strbuf_addch(&buf
, '+');
199 strbuf_addstr(&buf
, line
+ 1);
200 } else if (line
[0] == '<') {
201 strbuf_addch(&buf
, '-');
202 strbuf_addstr(&buf
, line
+ 1);
203 } else if (line
[0] == '#') {
204 strbuf_addch(&buf
, ' ');
205 strbuf_addstr(&buf
, line
+ 1);
207 strbuf_addch(&buf
, ' ');
208 strbuf_addstr(&buf
, line
);
211 strbuf_addch(&buf
, '\n');
217 strbuf_release(&contents
);
220 string_list_append(list
, buf
.buf
)->util
= util
;
221 strbuf_release(&buf
);
222 free(current_filename
);
227 static int patch_util_cmp(const void *cmp_data UNUSED
,
228 const struct patch_util
*a
,
229 const struct patch_util
*b
,
232 return strcmp(a
->diff
, keydata
? keydata
: b
->diff
);
235 static void find_exact_matches(struct string_list
*a
, struct string_list
*b
)
237 struct hashmap map
= HASHMAP_INIT((hashmap_cmp_fn
)patch_util_cmp
, NULL
);
240 /* First, add the patches of a to a hash map */
241 for (i
= 0; i
< a
->nr
; i
++) {
242 struct patch_util
*util
= a
->items
[i
].util
;
245 util
->patch
= a
->items
[i
].string
;
246 util
->diff
= util
->patch
+ util
->diff_offset
;
247 hashmap_entry_init(&util
->e
, strhash(util
->diff
));
248 hashmap_add(&map
, &util
->e
);
251 /* Now try to find exact matches in b */
252 for (i
= 0; i
< b
->nr
; i
++) {
253 struct patch_util
*util
= b
->items
[i
].util
, *other
;
256 util
->patch
= b
->items
[i
].string
;
257 util
->diff
= util
->patch
+ util
->diff_offset
;
258 hashmap_entry_init(&util
->e
, strhash(util
->diff
));
259 other
= hashmap_remove_entry(&map
, util
, e
, NULL
);
261 if (other
->matching
>= 0)
262 BUG("already assigned!");
265 util
->matching
= other
->i
;
272 static int diffsize_consume(void *data
,
274 unsigned long len UNUSED
)
280 static void diffsize_hunk(void *data
,
281 long ob UNUSED
, long on UNUSED
,
282 long nb UNUSED
, long nn UNUSED
,
283 const char *func UNUSED
, long funclen UNUSED
)
285 diffsize_consume(data
, NULL
, 0);
288 static int diffsize(const char *a
, const char *b
)
290 xpparam_t pp
= { 0 };
291 xdemitconf_t cfg
= { 0 };
296 mf1
.size
= strlen(a
);
298 mf2
.size
= strlen(b
);
301 if (!xdi_diff_outf(&mf1
, &mf2
,
302 diffsize_hunk
, diffsize_consume
, &count
,
306 error(_("failed to generate diff"));
310 static void get_correspondences(struct string_list
*a
, struct string_list
*b
,
313 int n
= a
->nr
+ b
->nr
;
314 int *cost
, c
, *a2b
, *b2a
;
317 ALLOC_ARRAY(cost
, st_mult(n
, n
));
321 for (i
= 0; i
< a
->nr
; i
++) {
322 struct patch_util
*a_util
= a
->items
[i
].util
;
324 for (j
= 0; j
< b
->nr
; j
++) {
325 struct patch_util
*b_util
= b
->items
[j
].util
;
327 if (a_util
->matching
== j
)
329 else if (a_util
->matching
< 0 && b_util
->matching
< 0)
330 c
= diffsize(a_util
->diff
, b_util
->diff
);
336 c
= a_util
->matching
< 0 ?
337 a_util
->diffsize
* creation_factor
/ 100 : COST_MAX
;
338 for (j
= b
->nr
; j
< n
; j
++)
342 for (j
= 0; j
< b
->nr
; j
++) {
343 struct patch_util
*util
= b
->items
[j
].util
;
345 c
= util
->matching
< 0 ?
346 util
->diffsize
* creation_factor
/ 100 : COST_MAX
;
347 for (i
= a
->nr
; i
< n
; i
++)
351 for (i
= a
->nr
; i
< n
; i
++)
352 for (j
= b
->nr
; j
< n
; j
++)
355 compute_assignment(n
, n
, cost
, a2b
, b2a
);
357 for (i
= 0; i
< a
->nr
; i
++)
358 if (a2b
[i
] >= 0 && a2b
[i
] < b
->nr
) {
359 struct patch_util
*a_util
= a
->items
[i
].util
;
360 struct patch_util
*b_util
= b
->items
[a2b
[i
]].util
;
362 a_util
->matching
= a2b
[i
];
363 b_util
->matching
= i
;
371 static void output_pair_header(struct diff_options
*diffopt
,
374 struct strbuf
*dashes
,
375 struct patch_util
*a_util
,
376 struct patch_util
*b_util
)
378 struct object_id
*oid
= a_util
? &a_util
->oid
: &b_util
->oid
;
379 struct commit
*commit
;
381 const char *color_reset
= diff_get_color_opt(diffopt
, DIFF_RESET
);
382 const char *color_old
= diff_get_color_opt(diffopt
, DIFF_FILE_OLD
);
383 const char *color_new
= diff_get_color_opt(diffopt
, DIFF_FILE_NEW
);
384 const char *color_commit
= diff_get_color_opt(diffopt
, DIFF_COMMIT
);
386 int abbrev
= diffopt
->abbrev
;
389 abbrev
= DEFAULT_ABBREV
;
392 strbuf_addchars(dashes
, '-',
393 strlen(find_unique_abbrev(oid
, abbrev
)));
398 } else if (!a_util
) {
401 } else if (strcmp(a_util
->patch
, b_util
->patch
)) {
402 color
= color_commit
;
405 color
= color_commit
;
410 strbuf_addstr(buf
, status
== '!' ? color_old
: color
);
412 strbuf_addf(buf
, "%*s: %s ", patch_no_width
, "-", dashes
->buf
);
414 strbuf_addf(buf
, "%*d: %s ", patch_no_width
, a_util
->i
+ 1,
415 find_unique_abbrev(&a_util
->oid
, abbrev
));
418 strbuf_addf(buf
, "%s%s", color_reset
, color
);
419 strbuf_addch(buf
, status
);
421 strbuf_addf(buf
, "%s%s", color_reset
, color_new
);
424 strbuf_addf(buf
, " %*s: %s", patch_no_width
, "-", dashes
->buf
);
426 strbuf_addf(buf
, " %*d: %s", patch_no_width
, b_util
->i
+ 1,
427 find_unique_abbrev(&b_util
->oid
, abbrev
));
429 commit
= lookup_commit_reference(the_repository
, oid
);
432 strbuf_addf(buf
, "%s%s", color_reset
, color
);
434 strbuf_addch(buf
, ' ');
435 pp_commit_easy(CMIT_FMT_ONELINE
, commit
, buf
);
437 strbuf_addf(buf
, "%s\n", color_reset
);
439 fwrite(buf
->buf
, buf
->len
, 1, diffopt
->file
);
442 static struct userdiff_driver section_headers
= {
443 .funcname
= { "^ ## (.*) ##$\n"
444 "^.?@@ (.*)$", REG_EXTENDED
}
447 static struct diff_filespec
*get_filespec(const char *name
, const char *p
)
449 struct diff_filespec
*spec
= alloc_filespec(name
);
451 fill_filespec(spec
, null_oid(), 0, 0100644);
452 spec
->data
= (char *)p
;
453 spec
->size
= strlen(p
);
454 spec
->should_munmap
= 0;
456 spec
->driver
= §ion_headers
;
461 static void patch_diff(const char *a
, const char *b
,
462 struct diff_options
*diffopt
)
464 diff_queue(&diff_queued_diff
,
465 get_filespec("a", a
), get_filespec("b", b
));
467 diffcore_std(diffopt
);
471 static struct strbuf
*output_prefix_cb(struct diff_options
*opt UNUSED
, void *data
)
476 static void output(struct string_list
*a
, struct string_list
*b
,
477 struct range_diff_options
*range_diff_opts
)
479 struct strbuf buf
= STRBUF_INIT
, dashes
= STRBUF_INIT
;
480 int patch_no_width
= decimal_width(1 + (a
->nr
> b
->nr
? a
->nr
: b
->nr
));
482 struct diff_options opts
;
483 struct strbuf indent
= STRBUF_INIT
;
485 if (range_diff_opts
->diffopt
)
486 memcpy(&opts
, range_diff_opts
->diffopt
, sizeof(opts
));
491 if (!opts
.output_format
)
492 opts
.output_format
= DIFF_FORMAT_PATCH
;
493 opts
.flags
.suppress_diff_headers
= 1;
494 opts
.flags
.dual_color_diffed_diffs
=
495 range_diff_opts
->dual_color
;
496 opts
.flags
.suppress_hunk_header_line_count
= 1;
497 opts
.output_prefix
= output_prefix_cb
;
498 strbuf_addstr(&indent
, " ");
499 opts
.output_prefix_data
= &indent
;
500 diff_setup_done(&opts
);
503 * We assume the user is really more interested in the second argument
504 * ("newer" version). To that end, we print the output in the order of
505 * the RHS (the `b` parameter). To put the LHS (the `a` parameter)
506 * commits that are no longer in the RHS into a good place, we place
507 * them once we have shown all of their predecessors in the LHS.
510 while (i
< a
->nr
|| j
< b
->nr
) {
511 struct patch_util
*a_util
, *b_util
;
512 a_util
= i
< a
->nr
? a
->items
[i
].util
: NULL
;
513 b_util
= j
< b
->nr
? b
->items
[j
].util
: NULL
;
515 /* Skip all the already-shown commits from the LHS. */
516 while (i
< a
->nr
&& a_util
->shown
)
517 a_util
= ++i
< a
->nr
? a
->items
[i
].util
: NULL
;
519 /* Show unmatched LHS commit whose predecessors were shown. */
520 if (i
< a
->nr
&& a_util
->matching
< 0) {
521 if (!range_diff_opts
->right_only
)
522 output_pair_header(&opts
, patch_no_width
,
523 &buf
, &dashes
, a_util
, NULL
);
528 /* Show unmatched RHS commits. */
529 while (j
< b
->nr
&& b_util
->matching
< 0) {
530 if (!range_diff_opts
->left_only
)
531 output_pair_header(&opts
, patch_no_width
,
532 &buf
, &dashes
, NULL
, b_util
);
533 b_util
= ++j
< b
->nr
? b
->items
[j
].util
: NULL
;
536 /* Show matching LHS/RHS pair. */
538 a_util
= a
->items
[b_util
->matching
].util
;
539 output_pair_header(&opts
, patch_no_width
,
540 &buf
, &dashes
, a_util
, b_util
);
541 if (!(opts
.output_format
& DIFF_FORMAT_NO_OUTPUT
))
542 patch_diff(a
->items
[b_util
->matching
].string
,
543 b
->items
[j
].string
, &opts
);
548 strbuf_release(&buf
);
549 strbuf_release(&dashes
);
550 strbuf_release(&indent
);
555 int show_range_diff(const char *range1
, const char *range2
,
556 struct range_diff_options
*range_diff_opts
)
560 struct string_list branch1
= STRING_LIST_INIT_DUP
;
561 struct string_list branch2
= STRING_LIST_INIT_DUP
;
563 if (range_diff_opts
->left_only
&& range_diff_opts
->right_only
)
564 res
= error(_("options '%s' and '%s' cannot be used together"), "--left-only", "--right-only");
566 if (!res
&& read_patches(range1
, &branch1
, range_diff_opts
->other_arg
))
567 res
= error(_("could not parse log for '%s'"), range1
);
568 if (!res
&& read_patches(range2
, &branch2
, range_diff_opts
->other_arg
))
569 res
= error(_("could not parse log for '%s'"), range2
);
572 find_exact_matches(&branch1
, &branch2
);
573 get_correspondences(&branch1
, &branch2
,
574 range_diff_opts
->creation_factor
);
575 output(&branch1
, &branch2
, range_diff_opts
);
578 string_list_clear(&branch1
, 1);
579 string_list_clear(&branch2
, 1);
584 int is_range_diff_range(const char *arg
)
586 char *copy
= xstrdup(arg
); /* setup_revisions() modifies it */
587 const char *argv
[] = { "", copy
, "--", NULL
};
588 int i
, positive
= 0, negative
= 0;
589 struct rev_info revs
;
591 init_revisions(&revs
, NULL
);
592 if (setup_revisions(3, argv
, &revs
, NULL
) == 1) {
593 for (i
= 0; i
< revs
.pending
.nr
; i
++)
594 if (revs
.pending
.objects
[i
].item
->flags
& UNINTERESTING
)
598 for (i
= 0; i
< revs
.pending
.nr
; i
++) {
599 struct object
*obj
= revs
.pending
.objects
[i
].item
;
601 if (obj
->type
== OBJ_COMMIT
)
602 clear_commit_marks((struct commit
*)obj
,
608 release_revisions(&revs
);
609 return negative
> 0 && positive
> 0;