1 #define DISABLE_SIGN_COMPARE_WARNINGS
3 #include "git-compat-util.h"
5 #include "line-range.h"
12 #include "repository.h"
14 #include "xdiff-interface.h"
21 #include "tree-walk.h"
23 static void range_set_grow(struct range_set
*rs
, size_t extra
)
25 ALLOC_GROW(rs
->ranges
, rs
->nr
+ extra
, rs
->alloc
);
28 /* Either initialization would be fine */
29 #define RANGE_SET_INIT {0}
31 void range_set_init(struct range_set
*rs
, size_t prealloc
)
33 rs
->alloc
= rs
->nr
= 0;
36 range_set_grow(rs
, prealloc
);
39 void range_set_release(struct range_set
*rs
)
41 FREE_AND_NULL(rs
->ranges
);
42 rs
->alloc
= rs
->nr
= 0;
45 /* dst must be uninitialized! */
46 static void range_set_copy(struct range_set
*dst
, struct range_set
*src
)
48 range_set_init(dst
, src
->nr
);
49 COPY_ARRAY(dst
->ranges
, src
->ranges
, src
->nr
);
53 static void range_set_move(struct range_set
*dst
, struct range_set
*src
)
55 range_set_release(dst
);
56 dst
->ranges
= src
->ranges
;
58 dst
->alloc
= src
->alloc
;
60 src
->alloc
= src
->nr
= 0;
63 /* tack on a _new_ range _at the end_ */
64 void range_set_append_unsafe(struct range_set
*rs
, long a
, long b
)
67 range_set_grow(rs
, 1);
68 rs
->ranges
[rs
->nr
].start
= a
;
69 rs
->ranges
[rs
->nr
].end
= b
;
73 void range_set_append(struct range_set
*rs
, long a
, long b
)
75 assert(rs
->nr
== 0 || rs
->ranges
[rs
->nr
-1].end
<= a
);
76 range_set_append_unsafe(rs
, a
, b
);
79 static int range_cmp(const void *_r
, const void *_s
)
81 const struct range
*r
= _r
;
82 const struct range
*s
= _s
;
84 /* this could be simply 'return r.start-s.start', but for the types */
85 if (r
->start
== s
->start
)
87 if (r
->start
< s
->start
)
93 * Check that the ranges are non-empty, sorted and non-overlapping
95 static void range_set_check_invariants(struct range_set
*rs
)
103 assert(rs
->ranges
[0].start
< rs
->ranges
[0].end
);
105 for (i
= 1; i
< rs
->nr
; i
++) {
106 assert(rs
->ranges
[i
-1].end
< rs
->ranges
[i
].start
);
107 assert(rs
->ranges
[i
].start
< rs
->ranges
[i
].end
);
112 * In-place pass of sorting and merging the ranges in the range set,
113 * to establish the invariants when we get the ranges from the user
115 void sort_and_merge_range_set(struct range_set
*rs
)
118 unsigned int o
= 0; /* output cursor */
120 QSORT(rs
->ranges
, rs
->nr
, range_cmp
);
122 for (i
= 0; i
< rs
->nr
; i
++) {
123 if (rs
->ranges
[i
].start
== rs
->ranges
[i
].end
)
125 if (o
> 0 && rs
->ranges
[i
].start
<= rs
->ranges
[o
-1].end
) {
126 if (rs
->ranges
[o
-1].end
< rs
->ranges
[i
].end
)
127 rs
->ranges
[o
-1].end
= rs
->ranges
[i
].end
;
129 rs
->ranges
[o
].start
= rs
->ranges
[i
].start
;
130 rs
->ranges
[o
].end
= rs
->ranges
[i
].end
;
137 range_set_check_invariants(rs
);
141 * Union of range sets (i.e., sets of line numbers). Used to merge
142 * them when searches meet at a common ancestor.
144 * This is also where the ranges are consolidated into canonical form:
145 * overlapping and adjacent ranges are merged, and empty ranges are
148 static void range_set_union(struct range_set
*out
,
149 struct range_set
*a
, struct range_set
*b
)
151 unsigned int i
= 0, j
= 0;
152 struct range
*ra
= a
->ranges
;
153 struct range
*rb
= b
->ranges
;
154 /* cannot make an alias of out->ranges: it may change during grow */
156 assert(out
->nr
== 0);
157 while (i
< a
->nr
|| j
< b
->nr
) {
158 struct range
*new_range
;
159 if (i
< a
->nr
&& j
< b
->nr
) {
160 if (ra
[i
].start
< rb
[j
].start
)
161 new_range
= &ra
[i
++];
162 else if (ra
[i
].start
> rb
[j
].start
)
163 new_range
= &rb
[j
++];
164 else if (ra
[i
].end
< rb
[j
].end
)
165 new_range
= &ra
[i
++];
167 new_range
= &rb
[j
++];
168 } else if (i
< a
->nr
) /* b exhausted */
169 new_range
= &ra
[i
++];
170 else /* a exhausted */
171 new_range
= &rb
[j
++];
172 if (new_range
->start
== new_range
->end
)
174 else if (!out
->nr
|| out
->ranges
[out
->nr
-1].end
< new_range
->start
) {
175 range_set_grow(out
, 1);
176 out
->ranges
[out
->nr
].start
= new_range
->start
;
177 out
->ranges
[out
->nr
].end
= new_range
->end
;
179 } else if (out
->ranges
[out
->nr
-1].end
< new_range
->end
) {
180 out
->ranges
[out
->nr
-1].end
= new_range
->end
;
186 * Difference of range sets (out = a \ b). Pass the "interesting"
187 * ranges as 'a' and the target side of the diff as 'b': it removes
188 * the ranges for which the commit is responsible.
190 static void range_set_difference(struct range_set
*out
,
191 struct range_set
*a
, struct range_set
*b
)
193 unsigned int i
, j
= 0;
194 for (i
= 0; i
< a
->nr
; i
++) {
195 long start
= a
->ranges
[i
].start
;
196 long end
= a
->ranges
[i
].end
;
197 while (start
< end
) {
198 while (j
< b
->nr
&& start
>= b
->ranges
[j
].end
)
204 if (j
>= b
->nr
|| end
< b
->ranges
[j
].start
) {
210 range_set_append(out
, start
, end
);
213 if (start
>= b
->ranges
[j
].start
) {
218 start
= b
->ranges
[j
].end
;
219 } else if (end
> b
->ranges
[j
].start
) {
224 if (start
< b
->ranges
[j
].start
)
225 range_set_append(out
, start
, b
->ranges
[j
].start
);
226 start
= b
->ranges
[j
].end
;
232 static void diff_ranges_init(struct diff_ranges
*diff
)
234 range_set_init(&diff
->parent
, 0);
235 range_set_init(&diff
->target
, 0);
238 static void diff_ranges_release(struct diff_ranges
*diff
)
240 range_set_release(&diff
->parent
);
241 range_set_release(&diff
->target
);
244 static void line_log_data_init(struct line_log_data
*r
)
246 memset(r
, 0, sizeof(struct line_log_data
));
247 range_set_init(&r
->ranges
, 0);
250 static void line_log_data_clear(struct line_log_data
*r
)
252 range_set_release(&r
->ranges
);
255 diff_free_filepair(r
->pair
);
256 diff_ranges_release(&r
->diff
);
259 static void free_line_log_data(struct line_log_data
*r
)
262 struct line_log_data
*next
= r
->next
;
263 line_log_data_clear(r
);
269 static struct line_log_data
*
270 search_line_log_data(struct line_log_data
*list
, const char *path
,
271 struct line_log_data
**insertion_point
)
273 struct line_log_data
*p
= list
;
275 *insertion_point
= NULL
;
277 int cmp
= strcmp(p
->path
, path
);
280 if (insertion_point
&& cmp
< 0)
281 *insertion_point
= p
;
288 * Note: takes ownership of 'path', which happens to be what the only
291 static void line_log_data_insert(struct line_log_data
**list
,
293 long begin
, long end
)
295 struct line_log_data
*ip
;
296 struct line_log_data
*p
= search_line_log_data(*list
, path
, &ip
);
299 range_set_append_unsafe(&p
->ranges
, begin
, end
);
306 range_set_append(&p
->ranges
, begin
, end
);
316 struct collect_diff_cbdata
{
317 struct diff_ranges
*diff
;
320 static int collect_diff_cb(long start_a
, long count_a
,
321 long start_b
, long count_b
,
324 struct collect_diff_cbdata
*d
= data
;
327 range_set_append(&d
->diff
->parent
, start_a
, start_a
+ count_a
);
329 range_set_append(&d
->diff
->target
, start_b
, start_b
+ count_b
);
334 static int collect_diff(mmfile_t
*parent
, mmfile_t
*target
, struct diff_ranges
*out
)
336 struct collect_diff_cbdata cbdata
= {NULL
};
341 memset(&xpp
, 0, sizeof(xpp
));
342 memset(&xecfg
, 0, sizeof(xecfg
));
343 xecfg
.ctxlen
= xecfg
.interhunkctxlen
= 0;
346 xecfg
.hunk_func
= collect_diff_cb
;
347 memset(&ecb
, 0, sizeof(ecb
));
349 return xdi_diff(parent
, target
, &xpp
, &xecfg
, &ecb
);
353 * These are handy for debugging. Removing them with #if 0 silences
354 * the "unused function" warning.
357 static void dump_range_set(struct range_set
*rs
, const char *desc
)
360 printf("range set %s (%d items):\n", desc
, rs
->nr
);
361 for (i
= 0; i
< rs
->nr
; i
++)
362 printf("\t[%ld,%ld]\n", rs
->ranges
[i
].start
, rs
->ranges
[i
].end
);
365 static void dump_line_log_data(struct line_log_data
*r
)
369 snprintf(buf
, 4096, "file %s\n", r
->path
);
370 dump_range_set(&r
->ranges
, buf
);
375 static void dump_diff_ranges(struct diff_ranges
*diff
, const char *desc
)
378 assert(diff
->parent
.nr
== diff
->target
.nr
);
379 printf("diff ranges %s (%d items):\n", desc
, diff
->parent
.nr
);
380 printf("\tparent\ttarget\n");
381 for (i
= 0; i
< diff
->parent
.nr
; i
++) {
382 printf("\t[%ld,%ld]\t[%ld,%ld]\n",
383 diff
->parent
.ranges
[i
].start
,
384 diff
->parent
.ranges
[i
].end
,
385 diff
->target
.ranges
[i
].start
,
386 diff
->target
.ranges
[i
].end
);
392 static int ranges_overlap(struct range
*a
, struct range
*b
)
394 return !(a
->end
<= b
->start
|| b
->end
<= a
->start
);
398 * Given a diff and the set of interesting ranges, determine all hunks
399 * of the diff which touch (overlap) at least one of the interesting
400 * ranges in the target.
402 static void diff_ranges_filter_touched(struct diff_ranges
*out
,
403 struct diff_ranges
*diff
,
404 struct range_set
*rs
)
406 unsigned int i
, j
= 0;
408 assert(out
->target
.nr
== 0);
410 for (i
= 0; i
< diff
->target
.nr
; i
++) {
411 while (diff
->target
.ranges
[i
].start
> rs
->ranges
[j
].end
) {
416 if (ranges_overlap(&diff
->target
.ranges
[i
], &rs
->ranges
[j
])) {
417 range_set_append(&out
->parent
,
418 diff
->parent
.ranges
[i
].start
,
419 diff
->parent
.ranges
[i
].end
);
420 range_set_append(&out
->target
,
421 diff
->target
.ranges
[i
].start
,
422 diff
->target
.ranges
[i
].end
);
428 * Adjust the line counts in 'rs' to account for the lines
429 * added/removed in the diff.
431 static void range_set_shift_diff(struct range_set
*out
,
432 struct range_set
*rs
,
433 struct diff_ranges
*diff
)
435 unsigned int i
, j
= 0;
437 struct range
*src
= rs
->ranges
;
438 struct range
*target
= diff
->target
.ranges
;
439 struct range
*parent
= diff
->parent
.ranges
;
441 for (i
= 0; i
< rs
->nr
; i
++) {
442 while (j
< diff
->target
.nr
&& src
[i
].start
>= target
[j
].start
) {
443 offset
+= (parent
[j
].end
-parent
[j
].start
)
444 - (target
[j
].end
-target
[j
].start
);
447 range_set_append(out
, src
[i
].start
+offset
, src
[i
].end
+offset
);
452 * Given a diff and the set of interesting ranges, map the ranges
453 * across the diff. That is: observe that the target commit takes
454 * blame for all the + (target-side) ranges. So for every pair of
455 * ranges in the diff that was touched, we remove the latter and add
458 static void range_set_map_across_diff(struct range_set
*out
,
459 struct range_set
*rs
,
460 struct diff_ranges
*diff
,
461 struct diff_ranges
**touched_out
)
463 struct diff_ranges
*touched
= xmalloc(sizeof(*touched
));
464 struct range_set tmp1
= RANGE_SET_INIT
;
465 struct range_set tmp2
= RANGE_SET_INIT
;
467 diff_ranges_init(touched
);
468 diff_ranges_filter_touched(touched
, diff
, rs
);
469 range_set_difference(&tmp1
, rs
, &touched
->target
);
470 range_set_shift_diff(&tmp2
, &tmp1
, diff
);
471 range_set_union(out
, &tmp2
, &touched
->parent
);
472 range_set_release(&tmp1
);
473 range_set_release(&tmp2
);
475 *touched_out
= touched
;
478 static struct commit
*check_single_commit(struct rev_info
*revs
)
480 struct object
*commit
= NULL
;
484 for (i
= 0; i
< revs
->pending
.nr
; i
++) {
485 struct object
*obj
= revs
->pending
.objects
[i
].item
;
486 if (obj
->flags
& UNINTERESTING
)
488 obj
= deref_tag(revs
->repo
, obj
, NULL
, 0);
489 if (!obj
|| obj
->type
!= OBJ_COMMIT
)
490 die("Non commit %s?", revs
->pending
.objects
[i
].name
);
492 die("More than one commit to dig from: %s and %s?",
493 revs
->pending
.objects
[i
].name
,
494 revs
->pending
.objects
[found
].name
);
500 die("No commit specified?");
502 return (struct commit
*) commit
;
505 static void fill_blob_sha1(struct repository
*r
, struct commit
*commit
,
506 struct diff_filespec
*spec
)
509 struct object_id oid
;
511 if (get_tree_entry(r
, &commit
->object
.oid
, spec
->path
, &oid
, &mode
))
512 die("There is no path %s in the commit", spec
->path
);
513 fill_filespec(spec
, &oid
, 1, mode
);
518 static void fill_line_ends(struct repository
*r
,
519 struct diff_filespec
*spec
,
521 unsigned long **line_ends
)
523 int num
= 0, size
= 50;
525 unsigned long *ends
= NULL
;
528 if (diff_populate_filespec(r
, spec
, NULL
))
529 die("Cannot read blob %s", oid_to_hex(&spec
->oid
));
531 ALLOC_ARRAY(ends
, size
);
534 while (num
< spec
->size
) {
535 if (data
[num
] == '\n' || num
== spec
->size
- 1) {
536 ALLOC_GROW(ends
, (cur
+ 1), size
);
542 /* shrink the array to fit the elements */
543 REALLOC_ARRAY(ends
, cur
);
549 struct diff_filespec
*spec
;
551 unsigned long *line_ends
;
554 static const char *nth_line(void *data
, long line
)
556 struct nth_line_cb
*d
= data
;
557 assert(d
&& line
<= d
->lines
);
558 assert(d
->spec
&& d
->spec
->data
);
561 return (char *)d
->spec
->data
;
563 return (char *)d
->spec
->data
+ d
->line_ends
[line
] + 1;
566 static struct line_log_data
*
567 parse_lines(struct repository
*r
, struct commit
*commit
,
568 const char *prefix
, struct string_list
*args
)
571 unsigned long *ends
= NULL
;
572 struct nth_line_cb cb_data
;
573 struct string_list_item
*item
;
574 struct line_log_data
*ranges
= NULL
;
575 struct line_log_data
*p
;
577 for_each_string_list_item(item
, args
) {
578 const char *name_part
;
581 struct diff_filespec
*spec
;
582 long begin
= 0, end
= 0;
585 name_part
= skip_range_arg(item
->string
, r
->index
);
586 if (!name_part
|| *name_part
!= ':' || !name_part
[1])
587 die("-L argument not 'start,end:file' or ':funcname:file': %s",
589 range_part
= xstrndup(item
->string
, name_part
- item
->string
);
592 full_name
= prefix_path(prefix
, prefix
? strlen(prefix
) : 0,
595 spec
= alloc_filespec(full_name
);
596 fill_blob_sha1(r
, commit
, spec
);
597 fill_line_ends(r
, spec
, &lines
, &ends
);
599 cb_data
.lines
= lines
;
600 cb_data
.line_ends
= ends
;
602 p
= search_line_log_data(ranges
, full_name
, NULL
);
603 if (p
&& p
->ranges
.nr
)
604 anchor
= p
->ranges
.ranges
[p
->ranges
.nr
- 1].end
+ 1;
608 if (parse_range_arg(range_part
, nth_line
, &cb_data
,
609 lines
, anchor
, &begin
, &end
,
610 full_name
, r
->index
))
611 die("malformed -L argument '%s'", range_part
);
612 if ((!lines
&& (begin
|| end
)) || lines
< begin
)
613 die("file %s has only %lu lines", name_part
, lines
);
616 if (end
< 1 || lines
< end
)
619 line_log_data_insert(&ranges
, full_name
, begin
, end
);
626 for (p
= ranges
; p
; p
= p
->next
)
627 sort_and_merge_range_set(&p
->ranges
);
632 static struct line_log_data
*line_log_data_copy_one(struct line_log_data
*r
)
634 struct line_log_data
*ret
= xmalloc(sizeof(*ret
));
637 line_log_data_init(ret
);
638 range_set_copy(&ret
->ranges
, &r
->ranges
);
640 ret
->path
= xstrdup(r
->path
);
645 static struct line_log_data
*
646 line_log_data_copy(struct line_log_data
*r
)
648 struct line_log_data
*ret
= NULL
;
649 struct line_log_data
*tmp
= NULL
, *prev
= NULL
;
652 ret
= tmp
= prev
= line_log_data_copy_one(r
);
655 tmp
= line_log_data_copy_one(r
);
664 /* merge two range sets across files */
665 static struct line_log_data
*line_log_data_merge(struct line_log_data
*a
,
666 struct line_log_data
*b
)
668 struct line_log_data
*head
= NULL
, **pp
= &head
;
671 struct line_log_data
*src
;
672 struct line_log_data
*src2
= NULL
;
673 struct line_log_data
*d
;
680 cmp
= strcmp(a
->path
, b
->path
);
684 } else if (cmp
== 0) {
693 d
= xmalloc(sizeof(struct line_log_data
));
694 line_log_data_init(d
);
695 d
->path
= xstrdup(src
->path
);
699 range_set_union(&d
->ranges
, &src
->ranges
, &src2
->ranges
);
701 range_set_copy(&d
->ranges
, &src
->ranges
);
707 static void add_line_range(struct rev_info
*revs
, struct commit
*commit
,
708 struct line_log_data
*range
)
710 struct line_log_data
*old_line
= NULL
;
711 struct line_log_data
*new_line
= NULL
;
713 old_line
= lookup_decoration(&revs
->line_log_data
, &commit
->object
);
714 if (old_line
&& range
) {
715 new_line
= line_log_data_merge(old_line
, range
);
716 free_line_log_data(old_line
);
718 new_line
= line_log_data_copy(range
);
721 add_decoration(&revs
->line_log_data
, &commit
->object
, new_line
);
724 static void clear_commit_line_range(struct rev_info
*revs
, struct commit
*commit
)
726 struct line_log_data
*r
;
727 r
= lookup_decoration(&revs
->line_log_data
, &commit
->object
);
730 free_line_log_data(r
);
731 add_decoration(&revs
->line_log_data
, &commit
->object
, NULL
);
734 static struct line_log_data
*lookup_line_range(struct rev_info
*revs
,
735 struct commit
*commit
)
737 struct line_log_data
*ret
= NULL
;
738 struct line_log_data
*d
;
740 ret
= lookup_decoration(&revs
->line_log_data
, &commit
->object
);
742 for (d
= ret
; d
; d
= d
->next
)
743 range_set_check_invariants(&d
->ranges
);
748 static int same_paths_in_pathspec_and_range(struct pathspec
*pathspec
,
749 struct line_log_data
*range
)
752 struct line_log_data
*r
;
754 for (i
= 0, r
= range
; i
< pathspec
->nr
&& r
; i
++, r
= r
->next
)
755 if (strcmp(pathspec
->items
[i
].match
, r
->path
))
757 if (i
< pathspec
->nr
|| r
)
758 /* different number of pathspec items and ranges */
764 static void parse_pathspec_from_ranges(struct pathspec
*pathspec
,
765 struct line_log_data
*range
)
767 struct line_log_data
*r
;
768 struct strvec array
= STRVEC_INIT
;
770 for (r
= range
; r
; r
= r
->next
)
771 strvec_push(&array
, r
->path
);
773 parse_pathspec(pathspec
, 0, PATHSPEC_PREFER_FULL
, "", array
.v
);
775 strvec_clear(&array
);
778 void line_log_init(struct rev_info
*rev
, const char *prefix
, struct string_list
*args
)
780 struct commit
*commit
= NULL
;
781 struct line_log_data
*range
;
783 commit
= check_single_commit(rev
);
784 range
= parse_lines(rev
->diffopt
.repo
, commit
, prefix
, args
);
785 add_line_range(rev
, commit
, range
);
787 parse_pathspec_from_ranges(&rev
->diffopt
.pathspec
, range
);
789 free_line_log_data(range
);
792 static void move_diff_queue(struct diff_queue_struct
*dst
,
793 struct diff_queue_struct
*src
)
796 memcpy(dst
, src
, sizeof(*dst
));
797 diff_queue_init(src
);
800 static void filter_diffs_for_paths(struct line_log_data
*range
, int keep_deletions
)
803 struct diff_queue_struct outq
= DIFF_QUEUE_INIT
;
805 for (i
= 0; i
< diff_queued_diff
.nr
; i
++) {
806 struct diff_filepair
*p
= diff_queued_diff
.queue
[i
];
807 struct line_log_data
*rg
= NULL
;
809 if (!DIFF_FILE_VALID(p
->two
)) {
813 diff_free_filepair(p
);
816 for (rg
= range
; rg
; rg
= rg
->next
) {
817 if (!strcmp(rg
->path
, p
->two
->path
))
823 diff_free_filepair(p
);
825 free(diff_queued_diff
.queue
);
826 diff_queued_diff
= outq
;
829 static inline int diff_might_be_rename(void)
832 for (i
= 0; i
< diff_queued_diff
.nr
; i
++)
833 if (!DIFF_FILE_VALID(diff_queued_diff
.queue
[i
]->one
)) {
834 /* fprintf(stderr, "diff_might_be_rename found creation of: %s\n", */
835 /* diff_queued_diff.queue[i]->two->path); */
841 static void queue_diffs(struct line_log_data
*range
,
842 struct diff_options
*opt
,
843 struct diff_queue_struct
*queue
,
844 struct commit
*commit
, struct commit
*parent
)
846 struct object_id
*tree_oid
, *parent_tree_oid
;
850 tree_oid
= get_commit_tree_oid(commit
);
851 parent_tree_oid
= parent
? get_commit_tree_oid(parent
) : NULL
;
853 if (opt
->detect_rename
&&
854 !same_paths_in_pathspec_and_range(&opt
->pathspec
, range
)) {
855 clear_pathspec(&opt
->pathspec
);
856 parse_pathspec_from_ranges(&opt
->pathspec
, range
);
858 diff_queue_clear(&diff_queued_diff
);
859 diff_tree_oid(parent_tree_oid
, tree_oid
, "", opt
);
860 if (opt
->detect_rename
&& diff_might_be_rename()) {
861 /* must look at the full tree diff to detect renames */
862 clear_pathspec(&opt
->pathspec
);
863 diff_queue_clear(&diff_queued_diff
);
865 diff_tree_oid(parent_tree_oid
, tree_oid
, "", opt
);
867 filter_diffs_for_paths(range
, 1);
869 filter_diffs_for_paths(range
, 0);
871 move_diff_queue(queue
, &diff_queued_diff
);
874 static char *get_nth_line(long line
, unsigned long *ends
, void *data
)
879 return (char *)data
+ ends
[line
] + 1;
882 static void print_line(const char *prefix
, char first
,
883 long line
, unsigned long *ends
, void *data
,
884 const char *color
, const char *reset
, FILE *file
)
886 char *begin
= get_nth_line(line
, ends
, data
);
887 char *end
= get_nth_line(line
+1, ends
, data
);
890 if (end
> begin
&& end
[-1] == '\n') {
898 fwrite(begin
, 1, end
-begin
, file
);
902 fputs("\\ No newline at end of file\n", file
);
905 static void dump_diff_hacky_one(struct rev_info
*rev
, struct line_log_data
*range
)
907 unsigned int i
, j
= 0;
908 long p_lines
, t_lines
;
909 unsigned long *p_ends
= NULL
, *t_ends
= NULL
;
910 struct diff_filepair
*pair
= range
->pair
;
911 struct diff_ranges
*diff
= &range
->diff
;
913 struct diff_options
*opt
= &rev
->diffopt
;
914 const char *prefix
= diff_line_prefix(opt
);
915 const char *c_reset
= diff_get_color(opt
->use_color
, DIFF_RESET
);
916 const char *c_frag
= diff_get_color(opt
->use_color
, DIFF_FRAGINFO
);
917 const char *c_meta
= diff_get_color(opt
->use_color
, DIFF_METAINFO
);
918 const char *c_old
= diff_get_color(opt
->use_color
, DIFF_FILE_OLD
);
919 const char *c_new
= diff_get_color(opt
->use_color
, DIFF_FILE_NEW
);
920 const char *c_context
= diff_get_color(opt
->use_color
, DIFF_CONTEXT
);
925 if (pair
->one
->oid_valid
)
926 fill_line_ends(rev
->diffopt
.repo
, pair
->one
, &p_lines
, &p_ends
);
927 fill_line_ends(rev
->diffopt
.repo
, pair
->two
, &t_lines
, &t_ends
);
929 fprintf(opt
->file
, "%s%sdiff --git a/%s b/%s%s\n", prefix
, c_meta
, pair
->one
->path
, pair
->two
->path
, c_reset
);
930 fprintf(opt
->file
, "%s%s--- %s%s%s\n", prefix
, c_meta
,
931 pair
->one
->oid_valid
? "a/" : "",
932 pair
->one
->oid_valid
? pair
->one
->path
: "/dev/null",
934 fprintf(opt
->file
, "%s%s+++ b/%s%s\n", prefix
, c_meta
, pair
->two
->path
, c_reset
);
935 for (i
= 0; i
< range
->ranges
.nr
; i
++) {
937 long t_start
= range
->ranges
.ranges
[i
].start
;
938 long t_end
= range
->ranges
.ranges
[i
].end
;
939 long t_cur
= t_start
;
942 while (j
< diff
->target
.nr
&& diff
->target
.ranges
[j
].end
< t_start
)
944 if (j
== diff
->target
.nr
|| diff
->target
.ranges
[j
].start
> t_end
)
947 /* Scan ahead to determine the last diff that falls in this range */
949 while (j_last
< diff
->target
.nr
&& diff
->target
.ranges
[j_last
].start
< t_end
)
955 * Compute parent hunk headers: we know that the diff
956 * has the correct line numbers (but not all hunks).
957 * So it suffices to shift the start/end according to
958 * the line numbers of the first/last hunk(s) that
959 * fall in this range.
961 if (t_start
< diff
->target
.ranges
[j
].start
)
962 p_start
= diff
->parent
.ranges
[j
].start
- (diff
->target
.ranges
[j
].start
-t_start
);
964 p_start
= diff
->parent
.ranges
[j
].start
;
965 if (t_end
> diff
->target
.ranges
[j_last
].end
)
966 p_end
= diff
->parent
.ranges
[j_last
].end
+ (t_end
-diff
->target
.ranges
[j_last
].end
);
968 p_end
= diff
->parent
.ranges
[j_last
].end
;
970 if (!p_start
&& !p_end
) {
975 /* Now output a diff hunk for this range */
976 fprintf(opt
->file
, "%s%s@@ -%ld,%ld +%ld,%ld @@%s\n",
978 p_start
+1, p_end
-p_start
, t_start
+1, t_end
-t_start
,
980 while (j
< diff
->target
.nr
&& diff
->target
.ranges
[j
].start
< t_end
) {
982 for (; t_cur
< diff
->target
.ranges
[j
].start
; t_cur
++)
983 print_line(prefix
, ' ', t_cur
, t_ends
, pair
->two
->data
,
984 c_context
, c_reset
, opt
->file
);
985 for (k
= diff
->parent
.ranges
[j
].start
; k
< diff
->parent
.ranges
[j
].end
; k
++)
986 print_line(prefix
, '-', k
, p_ends
, pair
->one
->data
,
987 c_old
, c_reset
, opt
->file
);
988 for (; t_cur
< diff
->target
.ranges
[j
].end
&& t_cur
< t_end
; t_cur
++)
989 print_line(prefix
, '+', t_cur
, t_ends
, pair
->two
->data
,
990 c_new
, c_reset
, opt
->file
);
993 for (; t_cur
< t_end
; t_cur
++)
994 print_line(prefix
, ' ', t_cur
, t_ends
, pair
->two
->data
,
995 c_context
, c_reset
, opt
->file
);
1004 * NEEDSWORK: manually building a diff here is not the Right
1005 * Thing(tm). log -L should be built into the diff pipeline.
1007 static void dump_diff_hacky(struct rev_info
*rev
, struct line_log_data
*range
)
1009 const char *prefix
= diff_line_prefix(&rev
->diffopt
);
1011 fprintf(rev
->diffopt
.file
, "%s\n", prefix
);
1014 dump_diff_hacky_one(rev
, range
);
1015 range
= range
->next
;
1020 * Unlike most other functions, this destructively operates on
1023 static int process_diff_filepair(struct rev_info
*rev
,
1024 struct diff_filepair
*pair
,
1025 struct line_log_data
*range
,
1026 struct diff_ranges
**diff_out
)
1028 struct line_log_data
*rg
= range
;
1029 struct range_set tmp
;
1030 struct diff_ranges diff
;
1031 mmfile_t file_parent
, file_target
;
1032 char *parent_data_to_free
= NULL
;
1034 assert(pair
->two
->path
);
1037 if (!strcmp(rg
->path
, pair
->two
->path
))
1044 if (rg
->ranges
.nr
== 0)
1047 assert(pair
->two
->oid_valid
);
1048 diff_populate_filespec(rev
->diffopt
.repo
, pair
->two
, NULL
);
1049 file_target
.ptr
= pair
->two
->data
;
1050 file_target
.size
= pair
->two
->size
;
1052 if (pair
->one
->oid_valid
) {
1053 diff_populate_filespec(rev
->diffopt
.repo
, pair
->one
, NULL
);
1054 file_parent
.ptr
= pair
->one
->data
;
1055 file_parent
.size
= pair
->one
->size
;
1057 file_parent
.ptr
= parent_data_to_free
= xstrdup("");
1058 file_parent
.size
= 0;
1061 diff_ranges_init(&diff
);
1062 if (collect_diff(&file_parent
, &file_target
, &diff
))
1063 die("unable to generate diff for %s", pair
->one
->path
);
1065 /* NEEDSWORK should apply some heuristics to prevent mismatches */
1067 rg
->path
= xstrdup(pair
->one
->path
);
1069 range_set_init(&tmp
, 0);
1070 range_set_map_across_diff(&tmp
, &rg
->ranges
, &diff
, diff_out
);
1071 range_set_release(&rg
->ranges
);
1072 range_set_move(&rg
->ranges
, &tmp
);
1074 diff_ranges_release(&diff
);
1076 free(parent_data_to_free
);
1077 return ((*diff_out
)->parent
.nr
> 0);
1080 static struct diff_filepair
*diff_filepair_dup(struct diff_filepair
*pair
)
1082 struct diff_filepair
*new_filepair
= xmalloc(sizeof(struct diff_filepair
));
1083 new_filepair
->one
= pair
->one
;
1084 new_filepair
->two
= pair
->two
;
1085 new_filepair
->one
->count
++;
1086 new_filepair
->two
->count
++;
1087 return new_filepair
;
1090 static void free_diffqueues(int n
, struct diff_queue_struct
*dq
)
1092 for (int i
= 0; i
< n
; i
++)
1093 diff_queue_clear(&dq
[i
]);
1097 static int process_all_files(struct line_log_data
**range_out
,
1098 struct rev_info
*rev
,
1099 struct diff_queue_struct
*queue
,
1100 struct line_log_data
*range
)
1104 *range_out
= line_log_data_copy(range
);
1106 for (i
= 0; i
< queue
->nr
; i
++) {
1107 struct diff_ranges
*pairdiff
= NULL
;
1108 struct diff_filepair
*pair
= queue
->queue
[i
];
1109 if (process_diff_filepair(rev
, pair
, *range_out
, &pairdiff
)) {
1111 * Store away the diff for later output. We
1112 * tuck it in the ranges we got as _input_,
1113 * since that's the commit that caused the
1116 * NEEDSWORK not enough when we get around to
1117 * doing something interesting with merges;
1118 * currently each invocation on a merge parent
1119 * trashes the previous one's diff.
1121 * NEEDSWORK tramples over data structures not owned here
1123 struct line_log_data
*rg
= range
;
1125 while (rg
&& strcmp(rg
->path
, pair
->two
->path
))
1129 diff_free_filepair(rg
->pair
);
1130 rg
->pair
= diff_filepair_dup(queue
->queue
[i
]);
1131 diff_ranges_release(&rg
->diff
);
1132 memcpy(&rg
->diff
, pairdiff
, sizeof(struct diff_ranges
));
1133 FREE_AND_NULL(pairdiff
);
1137 diff_ranges_release(pairdiff
);
1145 int line_log_print(struct rev_info
*rev
, struct commit
*commit
)
1149 if (!(rev
->diffopt
.output_format
& DIFF_FORMAT_NO_OUTPUT
)) {
1150 struct line_log_data
*range
= lookup_line_range(rev
, commit
);
1151 dump_diff_hacky(rev
, range
);
1156 static int bloom_filter_check(struct rev_info
*rev
,
1157 struct commit
*commit
,
1158 struct line_log_data
*range
)
1160 struct bloom_filter
*filter
;
1161 struct bloom_key key
;
1164 if (!commit
->parents
)
1167 if (!rev
->bloom_filter_settings
||
1168 !(filter
= get_bloom_filter(rev
->repo
, commit
)))
1174 while (!result
&& range
) {
1175 fill_bloom_key(range
->path
, strlen(range
->path
), &key
, rev
->bloom_filter_settings
);
1177 if (bloom_filter_contains(filter
, &key
, rev
->bloom_filter_settings
))
1180 clear_bloom_key(&key
);
1181 range
= range
->next
;
1187 static int process_ranges_ordinary_commit(struct rev_info
*rev
, struct commit
*commit
,
1188 struct line_log_data
*range
)
1190 struct commit
*parent
= NULL
;
1191 struct diff_queue_struct queue
;
1192 struct line_log_data
*parent_range
;
1195 if (commit
->parents
)
1196 parent
= commit
->parents
->item
;
1198 queue_diffs(range
, &rev
->diffopt
, &queue
, commit
, parent
);
1199 changed
= process_all_files(&parent_range
, rev
, &queue
, range
);
1202 add_line_range(rev
, parent
, parent_range
);
1203 free_line_log_data(parent_range
);
1204 diff_queue_clear(&queue
);
1208 static int process_ranges_merge_commit(struct rev_info
*rev
, struct commit
*commit
,
1209 struct line_log_data
*range
)
1211 struct diff_queue_struct
*diffqueues
;
1212 struct line_log_data
**cand
;
1213 struct commit
**parents
;
1214 struct commit_list
*p
;
1216 int nparents
= commit_list_count(commit
->parents
);
1219 if (nparents
> 1 && rev
->first_parent_only
)
1222 ALLOC_ARRAY(diffqueues
, nparents
);
1223 CALLOC_ARRAY(cand
, nparents
);
1224 ALLOC_ARRAY(parents
, nparents
);
1226 p
= commit
->parents
;
1227 for (i
= 0; i
< nparents
; i
++) {
1228 parents
[i
] = p
->item
;
1230 queue_diffs(range
, &rev
->diffopt
, &diffqueues
[i
], commit
, parents
[i
]);
1233 for (i
= 0; i
< nparents
; i
++) {
1235 changed
= process_all_files(&cand
[i
], rev
, &diffqueues
[i
], range
);
1238 * This parent can take all the blame, so we
1239 * don't follow any other path in history
1241 add_line_range(rev
, parents
[i
], cand
[i
]);
1242 free_commit_list(commit
->parents
);
1243 commit_list_append(parents
[i
], &commit
->parents
);
1251 * No single parent took the blame. We add the candidates
1252 * from the above loop to the parents.
1254 for (i
= 0; i
< nparents
; i
++)
1255 add_line_range(rev
, parents
[i
], cand
[i
]);
1260 clear_commit_line_range(rev
, commit
);
1262 for (i
= 0; i
< nparents
; i
++) {
1265 line_log_data_clear(cand
[i
]);
1269 free_diffqueues(nparents
, diffqueues
);
1272 /* NEEDSWORK evil merge detection stuff */
1275 int line_log_process_ranges_arbitrary_commit(struct rev_info
*rev
, struct commit
*commit
)
1277 struct line_log_data
*range
= lookup_line_range(rev
, commit
);
1281 if (commit
->parents
&& !bloom_filter_check(rev
, commit
, range
)) {
1282 struct line_log_data
*prange
= line_log_data_copy(range
);
1283 add_line_range(rev
, commit
->parents
->item
, prange
);
1284 clear_commit_line_range(rev
, commit
);
1285 } else if (!commit
->parents
|| !commit
->parents
->next
)
1286 changed
= process_ranges_ordinary_commit(rev
, commit
, range
);
1288 changed
= process_ranges_merge_commit(rev
, commit
, range
);
1292 commit
->object
.flags
|= TREESAME
;
1297 static enum rewrite_result
line_log_rewrite_one(struct rev_info
*rev UNUSED
,
1301 struct commit
*p
= *pp
;
1302 if (p
->parents
&& p
->parents
->next
)
1303 return rewrite_one_ok
;
1304 if (p
->object
.flags
& UNINTERESTING
)
1305 return rewrite_one_ok
;
1306 if (!(p
->object
.flags
& TREESAME
))
1307 return rewrite_one_ok
;
1309 return rewrite_one_noparents
;
1310 *pp
= p
->parents
->item
;
1314 int line_log_filter(struct rev_info
*rev
)
1316 struct commit
*commit
;
1317 struct commit_list
*list
= rev
->commits
;
1318 struct commit_list
*out
= NULL
, **pp
= &out
;
1321 struct commit_list
*to_free
= NULL
;
1322 commit
= list
->item
;
1323 if (line_log_process_ranges_arbitrary_commit(rev
, commit
)) {
1333 for (list
= out
; list
; list
= list
->next
)
1334 rewrite_parents(rev
, list
->item
, line_log_rewrite_one
);
1341 static void free_void_line_log_data(void *data
)
1343 free_line_log_data(data
);
1346 void line_log_free(struct rev_info
*rev
)
1348 clear_decoration(&rev
->line_log_data
, free_void_line_log_data
);