2 * Helper functions for tree diff generation
8 static char *malloc_base(const char *base
, const char *path
, int pathlen
)
10 int baselen
= strlen(base
);
11 char *newbase
= xmalloc(baselen
+ pathlen
+ 2);
12 memcpy(newbase
, base
, baselen
);
13 memcpy(newbase
+ baselen
, path
, pathlen
);
14 memcpy(newbase
+ baselen
+ pathlen
, "/", 2);
18 static int show_entry(struct diff_options
*opt
, const char *prefix
, struct tree_desc
*desc
, const char *base
);
20 static int compare_tree_entry(struct tree_desc
*t1
, struct tree_desc
*t2
, const char *base
, struct diff_options
*opt
)
22 unsigned mode1
, mode2
;
23 const char *path1
, *path2
;
24 const unsigned char *sha1
, *sha2
;
25 int cmp
, pathlen1
, pathlen2
;
27 sha1
= tree_entry_extract(t1
, &path1
, &mode1
);
28 sha2
= tree_entry_extract(t2
, &path2
, &mode2
);
30 pathlen1
= strlen(path1
);
31 pathlen2
= strlen(path2
);
32 cmp
= base_name_compare(path1
, pathlen1
, mode1
, path2
, pathlen2
, mode2
);
34 show_entry(opt
, "-", t1
, base
);
38 show_entry(opt
, "+", t2
, base
);
41 if (!opt
->find_copies_harder
&&
42 !memcmp(sha1
, sha2
, 20) && mode1
== mode2
)
46 * If the filemode has changed to/from a directory from/to a regular
47 * file, we need to consider it a remove and an add.
49 if (S_ISDIR(mode1
) != S_ISDIR(mode2
)) {
50 show_entry(opt
, "-", t1
, base
);
51 show_entry(opt
, "+", t2
, base
);
55 if (opt
->recursive
&& S_ISDIR(mode1
)) {
57 char *newbase
= malloc_base(base
, path1
, pathlen1
);
58 if (opt
->tree_in_recursive
)
59 opt
->change(opt
, mode1
, mode2
,
60 sha1
, sha2
, base
, path1
);
61 retval
= diff_tree_sha1(sha1
, sha2
, newbase
, opt
);
66 opt
->change(opt
, mode1
, mode2
, sha1
, sha2
, base
, path1
);
70 static int interesting(struct tree_desc
*desc
, const char *base
, struct diff_options
*opt
)
80 (void)tree_entry_extract(desc
, &path
, &mode
);
82 pathlen
= strlen(path
);
83 baselen
= strlen(base
);
85 for (i
=0; i
< opt
->nr_paths
; i
++) {
86 const char *match
= opt
->paths
[i
];
87 int matchlen
= opt
->pathlens
[i
];
89 if (baselen
>= matchlen
) {
90 /* If it doesn't match, move along... */
91 if (strncmp(base
, match
, matchlen
))
94 /* The base is a subdirectory of a path which was specified. */
98 /* Does the base match? */
99 if (strncmp(base
, match
, baselen
))
105 if (pathlen
> matchlen
)
108 if (matchlen
> pathlen
) {
109 if (match
[pathlen
] != '/')
115 if (strncmp(path
, match
, pathlen
))
120 return 0; /* No matches */
123 /* A whole sub-tree went away or appeared */
124 static void show_tree(struct diff_options
*opt
, const char *prefix
, struct tree_desc
*desc
, const char *base
)
127 if (interesting(desc
, base
, opt
))
128 show_entry(opt
, prefix
, desc
, base
);
129 update_tree_entry(desc
);
133 /* A file entry went away or appeared */
134 static int show_entry(struct diff_options
*opt
, const char *prefix
, struct tree_desc
*desc
, const char *base
)
138 const unsigned char *sha1
= tree_entry_extract(desc
, &path
, &mode
);
140 if (opt
->recursive
&& S_ISDIR(mode
)) {
142 char *newbase
= malloc_base(base
, path
, strlen(path
));
143 struct tree_desc inner
;
146 tree
= read_sha1_file(sha1
, type
, &inner
.size
);
147 if (!tree
|| strcmp(type
, tree_type
))
148 die("corrupt tree sha %s", sha1_to_hex(sha1
));
151 show_tree(opt
, prefix
, &inner
, newbase
);
158 opt
->add_remove(opt
, prefix
[0], mode
, sha1
, base
, path
);
162 int diff_tree(struct tree_desc
*t1
, struct tree_desc
*t2
, const char *base
, struct diff_options
*opt
)
164 while (t1
->size
| t2
->size
) {
165 if (opt
->nr_paths
&& t1
->size
&& !interesting(t1
, base
, opt
)) {
166 update_tree_entry(t1
);
169 if (opt
->nr_paths
&& t2
->size
&& !interesting(t2
, base
, opt
)) {
170 update_tree_entry(t2
);
174 show_entry(opt
, "+", t2
, base
);
175 update_tree_entry(t2
);
179 show_entry(opt
, "-", t1
, base
);
180 update_tree_entry(t1
);
183 switch (compare_tree_entry(t1
, t2
, base
, opt
)) {
185 update_tree_entry(t1
);
188 update_tree_entry(t1
);
191 update_tree_entry(t2
);
194 die("git-diff-tree: internal error");
199 int diff_tree_sha1(const unsigned char *old
, const unsigned char *new, const char *base
, struct diff_options
*opt
)
202 struct tree_desc t1
, t2
;
205 tree1
= read_object_with_reference(old
, tree_type
, &t1
.size
, NULL
);
207 die("unable to read source tree (%s)", sha1_to_hex(old
));
208 tree2
= read_object_with_reference(new, tree_type
, &t2
.size
, NULL
);
210 die("unable to read destination tree (%s)", sha1_to_hex(new));
213 retval
= diff_tree(&t1
, &t2
, base
, opt
);
219 static int count_paths(const char **paths
)
227 void diff_tree_release_paths(struct diff_options
*opt
)
232 void diff_tree_setup_paths(const char **p
, struct diff_options
*opt
)
235 opt
->pathlens
= NULL
;
242 opt
->nr_paths
= count_paths(p
);
243 if (opt
->nr_paths
== 0) {
244 opt
->pathlens
= NULL
;
247 opt
->pathlens
= xmalloc(opt
->nr_paths
* sizeof(int));
248 for (i
=0; i
< opt
->nr_paths
; i
++)
249 opt
->pathlens
[i
] = strlen(p
[i
]);