]> git.ipfire.org Git - thirdparty/git.git/blame - builtin/diff-tree.c
Merge branch 'jk/bundle-progress'
[thirdparty/git.git] / builtin / diff-tree.c
CommitLineData
07047d68 1#define USE_THE_INDEX_VARIABLE
9174026c 2#include "cache.h"
b2141fc1 3#include "config.h"
3ebfd4aa 4#include "diff.h"
e3bc7a3b 5#include "commit.h"
41771fa4 6#include "hex.h"
5f1c3f07 7#include "log-tree.h"
e8cc9cd9 8#include "builtin.h"
302ad7a9 9#include "submodule.h"
109cd76d 10#include "repository.h"
9174026c 11
cd2bdc53 12static struct rev_info log_tree_opt;
b11645be 13
315f49f2 14static int diff_tree_commit_oid(const struct object_id *oid)
45392a64 15{
2122f675 16 struct commit *commit = lookup_commit_reference(the_repository, oid);
45392a64
JH
17 if (!commit)
18 return -1;
5f1c3f07 19 return log_tree_commit(&log_tree_opt, commit);
45392a64
JH
20}
21
a57114c8 22/* Diff one or more commits. */
5f5e936d 23static int stdin_diff_commit(struct commit *commit, const char *p)
b11645be 24{
5f5e936d 25 struct object_id oid;
26 struct commit_list **pptr = NULL;
27
28 /* Graft the fake parents locally to the commit */
29 while (isspace(*p++) && !parse_oid_hex(p, &oid, &p)) {
c1f5eb49 30 struct commit *parent = lookup_commit(the_repository, &oid);
5f5e936d 31 if (!pptr) {
32 /* Free the real parent list */
33 free_commit_list(commit->parents);
34 commit->parents = NULL;
35 pptr = &(commit->parents);
36 }
37 if (parent) {
38 pptr = &commit_list_insert(parent, pptr)->next;
45392a64 39 }
b11645be 40 }
5f1c3f07 41 return log_tree_commit(&log_tree_opt, commit);
e0965d83
LT
42}
43
140b378d 44/* Diff two trees. */
5f5e936d 45static int stdin_diff_trees(struct tree *tree1, const char *p)
140b378d 46{
5f5e936d 47 struct object_id oid;
140b378d 48 struct tree *tree2;
5f5e936d 49 if (!isspace(*p++) || parse_oid_hex(p, &oid, &p) || *p)
140b378d 50 return error("Need exactly two trees, separated by a space");
f86bcc7b 51 tree2 = lookup_tree(the_repository, &oid);
140b378d
KW
52 if (!tree2 || parse_tree(tree2))
53 return -1;
f2fd0760 54 printf("%s %s\n", oid_to_hex(&tree1->object.oid),
55 oid_to_hex(&tree2->object.oid));
66f414f8
BW
56 diff_tree_oid(&tree1->object.oid, &tree2->object.oid,
57 "", &log_tree_opt.diffopt);
140b378d
KW
58 log_tree_diff_flush(&log_tree_opt);
59 return 0;
60}
61
a57114c8
KW
62static int diff_tree_stdin(char *line)
63{
64 int len = strlen(line);
5f5e936d 65 struct object_id oid;
140b378d 66 struct object *obj;
5f5e936d 67 const char *p;
a57114c8
KW
68
69 if (!len || line[len-1] != '\n')
70 return -1;
71 line[len-1] = 0;
5f5e936d 72 if (parse_oid_hex(line, &oid, &p))
a57114c8 73 return -1;
109cd76d 74 obj = parse_object(the_repository, &oid);
140b378d 75 if (!obj)
a57114c8 76 return -1;
140b378d 77 if (obj->type == OBJ_COMMIT)
5f5e936d 78 return stdin_diff_commit((struct commit *)obj, p);
140b378d 79 if (obj->type == OBJ_TREE)
5f5e936d 80 return stdin_diff_trees((struct tree *)obj, p);
140b378d 81 error("Object %s is a %s, not a commit or tree",
debca9d2 82 oid_to_hex(&oid), type_name(obj->type));
140b378d 83 return -1;
a57114c8
KW
84}
85
4d1f1190 86static const char diff_tree_usage[] =
320ee66d
ÆAB
87"git diff-tree [--stdin] [-m] [-s] [-v] [--no-commit-id] [--pretty]\n"
88" [-t] [-r] [-c | --cc] [--combined-all-paths] [--root] [--merge-base]\n"
89" [<common-diff-options>] <tree-ish> [<tree-ish>] [<path>...]\n"
acf7828e 90"\n"
50b8e355 91" -r diff recursively\n"
d76ce4f7
EN
92" -c show combined diff for merge commits\n"
93" --cc show combined diff for merge commits removing uninteresting hunks\n"
94" --combined-all-paths\n"
95" show name of file in all parents for combined diffs\n"
50b8e355 96" --root include the initial commit as diff against /dev/null\n"
dda2d79a 97COMMON_DIFF_OPTIONS_HELP;
a8db165e 98
b4490059
JH
99static void diff_tree_tweak_rev(struct rev_info *rev, struct setup_revision_opt *opt)
100{
101 if (!rev->diffopt.output_format) {
102 if (rev->dense_combined_merges)
103 rev->diffopt.output_format = DIFF_FORMAT_PATCH;
104 else
105 rev->diffopt.output_format = DIFF_FORMAT_RAW;
106 }
107}
108
a633fca0 109int cmd_diff_tree(int argc, const char **argv, const char *prefix)
73134b6d 110{
e0965d83 111 char line[1000];
cd2bdc53
LT
112 struct object *tree1, *tree2;
113 static struct rev_info *opt = &log_tree_opt;
b4490059 114 struct setup_revision_opt s_r_opt;
5778b22b 115 struct userformat_want w;
5f1c3f07 116 int read_stdin = 0;
3d09c228 117 int merge_base = 0;
73134b6d 118
5a88f97c
JH
119 if (argc == 2 && !strcmp(argv[1], "-h"))
120 usage(diff_tree_usage);
121
37590ce3 122 git_config(git_diff_basic_config, NULL); /* no "diff" UI options */
2abf3503 123 repo_init_revisions(the_repository, opt, prefix);
07047d68 124 if (repo_read_index(the_repository) < 0)
fd66bcc3 125 die(_("index file corrupt"));
8e8f9987 126 opt->abbrev = 0;
91539833 127 opt->diff = 1;
8b3dce56 128 opt->disable_stdin = 1;
b4490059
JH
129 memset(&s_r_opt, 0, sizeof(s_r_opt));
130 s_r_opt.tweak = diff_tree_tweak_rev;
90a78b83 131
5c327502 132 prefix = precompose_argv_prefix(argc, argv, prefix);
b4490059 133 argc = setup_revisions(argc, argv, opt, &s_r_opt);
6b5ee137 134
5778b22b
TB
135 memset(&w, 0, sizeof(w));
136 userformat_find_requirements(NULL, &w);
137
138 if (!opt->show_notes_given && w.notes)
139 opt->show_notes = 1;
140 if (opt->show_notes)
141 load_display_notes(&opt->notes_opt);
142
cd2bdc53
LT
143 while (--argc > 0) {
144 const char *arg = *++argv;
c5b42386 145
e0965d83
LT
146 if (!strcmp(arg, "--stdin")) {
147 read_stdin = 1;
148 continue;
149 }
3d09c228
DL
150 if (!strcmp(arg, "--merge-base")) {
151 merge_base = 1;
152 continue;
153 }
c5bac17a 154 usage(diff_tree_usage);
73134b6d
LT
155 }
156
3d09c228 157 if (read_stdin && merge_base)
43ea635c 158 die(_("options '%s' and '%s' cannot be used together"), "--stdin", "--merge-base");
3d09c228
DL
159 if (merge_base && opt->pending.nr != 2)
160 die(_("--merge-base only works with two commits"));
161
1eb4136a
JH
162 opt->diffopt.rotate_to_strict = 1;
163
cd2bdc53 164 /*
8ba74bfd
JH
165 * NOTE! We expect "a..b" to expand to "^a b" but it is
166 * perfectly valid for revision range parser to yield "b ^a",
167 * which means the same thing. If we get the latter, i.e. the
168 * second one is marked UNINTERESTING, we recover the original
169 * order the user gave, i.e. "a..b", by swapping the trees.
cd2bdc53 170 */
315f49f2 171 switch (opt->pending.nr) {
0a8365a1
LT
172 case 0:
173 if (!read_stdin)
174 usage(diff_tree_usage);
175 break;
176 case 1:
1f1e895f 177 tree1 = opt->pending.objects[0].item;
315f49f2 178 diff_tree_commit_oid(&tree1->oid);
0a8365a1
LT
179 break;
180 case 2:
1f1e895f
LT
181 tree1 = opt->pending.objects[0].item;
182 tree2 = opt->pending.objects[1].item;
3d09c228
DL
183 if (merge_base) {
184 struct object_id oid;
185
186 diff_get_merge_base(opt, &oid);
187 tree1 = lookup_object(the_repository, &oid);
188 } else if (tree2->flags & UNINTERESTING) {
35d803bc 189 SWAP(tree2, tree1);
1f1e895f 190 }
66f414f8 191 diff_tree_oid(&tree1->oid, &tree2->oid, "", &opt->diffopt);
5f1c3f07 192 log_tree_diff_flush(opt);
0a8365a1
LT
193 break;
194 }
195
62c64895 196 if (read_stdin) {
f31027c9
JH
197 int saved_nrl = 0;
198 int saved_dcctc = 0;
199
1eb4136a 200 opt->diffopt.rotate_to_strict = 0;
f8781bfd 201 opt->diffopt.no_free = 1;
ff7fe37b
NTND
202 if (opt->diffopt.detect_rename) {
203 if (!the_index.cache)
e1ff0a32 204 repo_read_index(the_repository);
ff7fe37b
NTND
205 opt->diffopt.setup |= DIFF_SETUP_USE_SIZE_CACHE;
206 }
62c64895 207 while (fgets(line, sizeof(line), stdin)) {
5f5e936d 208 struct object_id oid;
e0965d83 209
5f5e936d 210 if (get_oid_hex(line, &oid)) {
62c64895
WC
211 fputs(line, stdout);
212 fflush(stdout);
213 }
f31027c9 214 else {
62c64895 215 diff_tree_stdin(line);
f31027c9
JH
216 if (saved_nrl < opt->diffopt.needed_rename_limit)
217 saved_nrl = opt->diffopt.needed_rename_limit;
218 if (opt->diffopt.degraded_cc_to_c)
219 saved_dcctc = 1;
220 }
e0c97ca6 221 }
f31027c9
JH
222 opt->diffopt.degraded_cc_to_c = saved_dcctc;
223 opt->diffopt.needed_rename_limit = saved_nrl;
f8781bfd
JH
224 opt->diffopt.no_free = 0;
225 diff_free(&opt->diffopt);
e0c97ca6 226 }
da31b358
JH
227
228 return diff_result_code(&opt->diffopt, 0);
9174026c 229}