5 static int show_root_diff
= 0;
6 static int verbose_header
= 0;
7 static int ignore_merges
= 1;
8 static int recursive
= 0;
9 static int show_tree_entry_in_recursive
= 0;
10 static int read_stdin
= 0;
11 static int diff_output_format
= DIFF_FORMAT_HUMAN
;
12 static int detect_rename
= 0;
13 static int reverse_diff
= 0;
14 static int diff_score_opt
= 0;
15 static const char *pickaxe
= NULL
;
16 static const char *header
= NULL
;
17 static const char *header_prefix
= "";
19 // What paths are we interested in?
20 static int nr_paths
= 0;
21 static const char **paths
= NULL
;
22 static int *pathlens
= NULL
;
24 static int diff_tree_sha1(const unsigned char *old
, const unsigned char *new, const char *base
);
26 static void update_tree_entry(void **bufp
, unsigned long *sizep
)
29 unsigned long size
= *sizep
;
30 int len
= strlen(buf
) + 1 + 20;
33 die("corrupt tree file");
38 static const unsigned char *extract(void *tree
, unsigned long size
, const char **pathp
, unsigned int *modep
)
40 int len
= strlen(tree
)+1;
41 const unsigned char *sha1
= tree
+ len
;
42 const char *path
= strchr(tree
, ' ');
44 if (!path
|| size
< len
+ 20 || sscanf(tree
, "%o", modep
) != 1)
45 die("corrupt tree file");
50 static char *malloc_base(const char *base
, const char *path
, int pathlen
)
52 int baselen
= strlen(base
);
53 char *newbase
= xmalloc(baselen
+ pathlen
+ 2);
54 memcpy(newbase
, base
, baselen
);
55 memcpy(newbase
+ baselen
, path
, pathlen
);
56 memcpy(newbase
+ baselen
+ pathlen
, "/", 2);
60 static void show_file(const char *prefix
, void *tree
, unsigned long size
, const char *base
);
61 static void show_tree(const char *prefix
, void *tree
, unsigned long size
, const char *base
);
63 /* A file entry went away or appeared */
64 static void show_file(const char *prefix
, void *tree
, unsigned long size
, const char *base
)
68 const unsigned char *sha1
= extract(tree
, size
, &path
, &mode
);
70 if (recursive
&& S_ISDIR(mode
)) {
73 char *newbase
= malloc_base(base
, path
, strlen(path
));
76 tree
= read_sha1_file(sha1
, type
, &size
);
77 if (!tree
|| strcmp(type
, "tree"))
78 die("corrupt tree sha %s", sha1_to_hex(sha1
));
80 show_tree(prefix
, tree
, size
, newbase
);
87 diff_addremove(prefix
[0], mode
, sha1
, base
, path
);
90 static int compare_tree_entry(void *tree1
, unsigned long size1
, void *tree2
, unsigned long size2
, const char *base
)
92 unsigned mode1
, mode2
;
93 const char *path1
, *path2
;
94 const unsigned char *sha1
, *sha2
;
95 int cmp
, pathlen1
, pathlen2
;
97 sha1
= extract(tree1
, size1
, &path1
, &mode1
);
98 sha2
= extract(tree2
, size2
, &path2
, &mode2
);
100 pathlen1
= strlen(path1
);
101 pathlen2
= strlen(path2
);
102 cmp
= base_name_compare(path1
, pathlen1
, mode1
, path2
, pathlen2
, mode2
);
104 show_file("-", tree1
, size1
, base
);
108 show_file("+", tree2
, size2
, base
);
111 if (!memcmp(sha1
, sha2
, 20) && mode1
== mode2
)
115 * If the filemode has changed to/from a directory from/to a regular
116 * file, we need to consider it a remove and an add.
118 if (S_ISDIR(mode1
) != S_ISDIR(mode2
)) {
119 show_file("-", tree1
, size1
, base
);
120 show_file("+", tree2
, size2
, base
);
124 if (recursive
&& S_ISDIR(mode1
)) {
126 char *newbase
= malloc_base(base
, path1
, pathlen1
);
127 if (show_tree_entry_in_recursive
)
128 diff_change(mode1
, mode2
, sha1
, sha2
, base
, path1
);
129 retval
= diff_tree_sha1(sha1
, sha2
, newbase
);
134 diff_change(mode1
, mode2
, sha1
, sha2
, base
, path1
);
138 static int interesting(void *tree
, unsigned long size
, const char *base
)
143 int baselen
, pathlen
;
148 (void)extract(tree
, size
, &path
, &mode
);
150 pathlen
= strlen(path
);
151 baselen
= strlen(base
);
153 for (i
=0; i
< nr_paths
; i
++) {
154 const char *match
= paths
[i
];
155 int matchlen
= pathlens
[i
];
157 if (baselen
>= matchlen
) {
158 /* If it doesn't match, move along... */
159 if (strncmp(base
, match
, matchlen
))
162 /* The base is a subdirectory of a path which was specified. */
166 /* Does the base match? */
167 if (strncmp(base
, match
, baselen
))
173 if (pathlen
> matchlen
)
176 if (matchlen
> pathlen
) {
177 if (match
[pathlen
] != '/')
183 if (strncmp(path
, match
, pathlen
))
188 return 0; /* No matches */
191 /* A whole sub-tree went away or appeared */
192 static void show_tree(const char *prefix
, void *tree
, unsigned long size
, const char *base
)
195 if (interesting(tree
, size
, base
))
196 show_file(prefix
, tree
, size
, base
);
197 update_tree_entry(&tree
, &size
);
201 static int diff_tree(void *tree1
, unsigned long size1
, void *tree2
, unsigned long size2
, const char *base
)
203 while (size1
| size2
) {
204 if (nr_paths
&& size1
&& !interesting(tree1
, size1
, base
)) {
205 update_tree_entry(&tree1
, &size1
);
208 if (nr_paths
&& size2
&& !interesting(tree2
, size2
, base
)) {
209 update_tree_entry(&tree2
, &size2
);
213 show_file("+", tree2
, size2
, base
);
214 update_tree_entry(&tree2
, &size2
);
218 show_file("-", tree1
, size1
, base
);
219 update_tree_entry(&tree1
, &size1
);
222 switch (compare_tree_entry(tree1
, size1
, tree2
, size2
, base
)) {
224 update_tree_entry(&tree1
, &size1
);
227 update_tree_entry(&tree1
, &size1
);
230 update_tree_entry(&tree2
, &size2
);
233 die("git-diff-tree: internal error");
238 static int diff_tree_sha1(const unsigned char *old
, const unsigned char *new, const char *base
)
241 unsigned long size1
, size2
;
244 tree1
= read_object_with_reference(old
, "tree", &size1
, NULL
);
246 die("unable to read source tree (%s)", sha1_to_hex(old
));
247 tree2
= read_object_with_reference(new, "tree", &size2
, NULL
);
249 die("unable to read destination tree (%s)", sha1_to_hex(new));
250 retval
= diff_tree(tree1
, size1
, tree2
, size2
, base
);
256 static void call_diff_setup(void)
258 diff_setup(reverse_diff
);
261 static int call_diff_flush(void)
264 diffcore_rename(detect_rename
, diff_score_opt
);
266 diffcore_pickaxe(pickaxe
);
267 if (diff_queue_is_empty()) {
268 diff_flush(DIFF_FORMAT_NO_OUTPUT
, 0);
272 diffcore_pathspec(paths
);
274 if (diff_output_format
== DIFF_FORMAT_MACHINE
) {
276 for (cp
= header
; *cp
; cp
= ep
) {
277 ep
= strchr(cp
, '\n');
278 if (ep
== 0) ep
= cp
+ strlen(cp
);
279 printf("%.*s%c", ep
-cp
, cp
, 0);
284 printf("%s", header
);
288 diff_flush(diff_output_format
, 1);
292 static int diff_tree_sha1_top(const unsigned char *old
,
293 const unsigned char *new, const char *base
)
298 ret
= diff_tree_sha1(old
, new, base
);
303 static int diff_root_tree(const unsigned char *new, const char *base
)
310 tree
= read_object_with_reference(new, "tree", &size
, NULL
);
312 die("unable to read root tree (%s)", sha1_to_hex(new));
313 retval
= diff_tree("", 0, tree
, size
, base
);
319 static int get_one_line(const char *msg
, unsigned long len
)
331 static int add_author_info(char *buf
, const char *line
, int len
)
334 unsigned int namelen
;
338 line
+= strlen("author ");
339 date
= strchr(line
, '>');
342 namelen
= ++date
- line
;
343 time
= strtoul(date
, &date
, 10);
344 tz
= strtol(date
, NULL
, 10);
346 return sprintf(buf
, "Author: %.*s\nDate: %s\n",
348 show_date(time
, tz
));
351 static char *generate_header(const char *commit
, const char *parent
, const char *msg
, unsigned long len
)
353 static char this_header
[16384];
356 offset
= sprintf(this_header
, "%s%s (from %s)\n", header_prefix
, commit
, parent
);
357 if (verbose_header
) {
361 const char *line
= msg
;
362 int linelen
= get_one_line(msg
, len
);
368 * We want some slop for indentation and a possible
369 * final "...". Thus the "+ 20".
371 if (offset
+ linelen
+ 20 > sizeof(this_header
)) {
372 memcpy(this_header
+ offset
, " ...\n", 8);
382 if (!memcmp(line
, "author ", 7))
383 offset
+= add_author_info(this_header
+ offset
, line
, linelen
);
386 memset(this_header
+ offset
, ' ', 4);
387 memcpy(this_header
+ offset
+ 4, line
, linelen
);
388 offset
+= linelen
+ 4;
390 /* Make sure there is an EOLN */
391 if (this_header
[offset
-1] != '\n')
392 this_header
[offset
++] = '\n';
393 /* Add _another_ EOLN if we are doing diff output */
394 this_header
[offset
++] = '\n';
395 this_header
[offset
] = 0;
401 static int diff_tree_commit(const unsigned char *commit
, const char *name
)
403 unsigned long size
, offset
;
404 char *buf
= read_object_with_reference(commit
, "commit", &size
, NULL
);
410 static char commit_name
[60];
411 strcpy(commit_name
, sha1_to_hex(commit
));
416 if (show_root_diff
&& memcmp(buf
+ 46, "parent ", 7)) {
417 header
= generate_header(name
, "root", buf
, size
);
418 diff_root_tree(commit
, "");
421 /* More than one parent? */
423 if (!memcmp(buf
+ 46 + 48, "parent ", 7))
428 while (offset
+ 48 < size
&& !memcmp(buf
+ offset
, "parent ", 7)) {
429 unsigned char parent
[20];
430 if (get_sha1_hex(buf
+ offset
+ 7, parent
))
432 header
= generate_header(name
, sha1_to_hex(parent
), buf
, size
);
433 diff_tree_sha1_top(parent
, commit
, "");
434 if (!header
&& verbose_header
) {
435 header_prefix
= "\ndiff-tree ";
437 * Don't print multiple merge entries if we
438 * don't print the diffs.
446 static int diff_tree_stdin(char *line
)
448 int len
= strlen(line
);
449 unsigned char commit
[20], parent
[20];
450 static char this_header
[1000];
452 if (!len
|| line
[len
-1] != '\n')
455 if (get_sha1_hex(line
, commit
))
457 if (isspace(line
[40]) && !get_sha1_hex(line
+41, parent
)) {
460 sprintf(this_header
, "%s (from %s)\n", line
, line
+41);
461 header
= this_header
;
462 return diff_tree_sha1_top(parent
, commit
, "");
465 return diff_tree_commit(commit
, line
);
468 static char *diff_tree_usage
=
469 "git-diff-tree [-p] [-r] [-z] [--stdin] [-M] [-C] [-R] [-S<string>] [-m] [-s] [-v] [-t] <tree-ish> <tree-ish>";
471 int main(int argc
, const char **argv
)
475 unsigned char sha1
[2][20];
488 if (nr_sha1
< 2 && !get_sha1(arg
, sha1
[nr_sha1
])) {
495 if (!strcmp(arg
, "--")) {
500 if (!strcmp(arg
, "-r")) {
504 if (!strcmp(arg
, "-t")) {
505 recursive
= show_tree_entry_in_recursive
= 1;
508 if (!strcmp(arg
, "-R")) {
512 if (!strcmp(arg
, "-p")) {
513 diff_output_format
= DIFF_FORMAT_PATCH
;
517 if (!strncmp(arg
, "-S", 2)) {
521 if (!strncmp(arg
, "-M", 2)) {
522 detect_rename
= DIFF_DETECT_RENAME
;
523 diff_score_opt
= diff_scoreopt_parse(arg
);
526 if (!strncmp(arg
, "-C", 2)) {
527 detect_rename
= DIFF_DETECT_COPY
;
528 diff_score_opt
= diff_scoreopt_parse(arg
);
531 if (!strcmp(arg
, "-z")) {
532 diff_output_format
= DIFF_FORMAT_MACHINE
;
535 if (!strcmp(arg
, "-m")) {
539 if (!strcmp(arg
, "-s")) {
540 diff_output_format
= DIFF_FORMAT_NO_OUTPUT
;
543 if (!strcmp(arg
, "-v")) {
545 header_prefix
= "diff-tree ";
548 if (!strcmp(arg
, "--stdin")) {
552 if (!strcmp(arg
, "--root")) {
556 usage(diff_tree_usage
);
564 pathlens
= xmalloc(nr_paths
* sizeof(int));
565 for (i
=0; i
<nr_paths
; i
++)
566 pathlens
[i
] = strlen(paths
[i
]);
572 usage(diff_tree_usage
);
575 diff_tree_commit(sha1
[0], NULL
);
578 diff_tree_sha1_top(sha1
[0], sha1
[1], "");
585 while (fgets(line
, sizeof(line
), stdin
))
586 diff_tree_stdin(line
);