2 * Helper functions for tree diff generation
8 static char *malloc_base(const char *base
, int baselen
, const char *path
, int pathlen
)
10 char *newbase
= xmalloc(baselen
+ pathlen
+ 2);
11 memcpy(newbase
, base
, baselen
);
12 memcpy(newbase
+ baselen
, path
, pathlen
);
13 memcpy(newbase
+ baselen
+ pathlen
, "/", 2);
17 static void show_entry(struct diff_options
*opt
, const char *prefix
, struct tree_desc
*desc
,
18 const char *base
, int baselen
);
20 static int compare_tree_entry(struct tree_desc
*t1
, struct tree_desc
*t2
, const char *base
, int baselen
, 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
= tree_entry_len(path1
, sha1
);
31 pathlen2
= tree_entry_len(path2
, sha2
);
32 cmp
= base_name_compare(path1
, pathlen1
, mode1
, path2
, pathlen2
, mode2
);
34 show_entry(opt
, "-", t1
, base
, baselen
);
38 show_entry(opt
, "+", t2
, base
, baselen
);
41 if (!opt
->find_copies_harder
&& !hashcmp(sha1
, sha2
) && mode1
== mode2
)
45 * If the filemode has changed to/from a directory from/to a regular
46 * file, we need to consider it a remove and an add.
48 if (S_ISDIR(mode1
) != S_ISDIR(mode2
)) {
49 show_entry(opt
, "-", t1
, base
, baselen
);
50 show_entry(opt
, "+", t2
, base
, baselen
);
54 if (opt
->recursive
&& S_ISDIR(mode1
)) {
56 char *newbase
= malloc_base(base
, baselen
, path1
, pathlen1
);
57 if (opt
->tree_in_recursive
)
58 opt
->change(opt
, mode1
, mode2
,
59 sha1
, sha2
, base
, path1
);
60 retval
= diff_tree_sha1(sha1
, sha2
, newbase
, opt
);
65 opt
->change(opt
, mode1
, mode2
, sha1
, sha2
, base
, path1
);
69 static int interesting(struct tree_desc
*desc
, const char *base
, int baselen
, struct diff_options
*opt
)
72 const unsigned char *sha1
;
80 sha1
= tree_entry_extract(desc
, &path
, &mode
);
82 pathlen
= tree_entry_len(path
, sha1
);
84 for (i
=0; i
< opt
->nr_paths
; i
++) {
85 const char *match
= opt
->paths
[i
];
86 int matchlen
= opt
->pathlens
[i
];
88 if (baselen
>= matchlen
) {
89 /* If it doesn't match, move along... */
90 if (strncmp(base
, match
, matchlen
))
93 /* The base is a subdirectory of a path which was specified. */
97 /* Does the base match? */
98 if (strncmp(base
, match
, baselen
))
104 if (pathlen
> matchlen
)
107 if (matchlen
> pathlen
) {
108 if (match
[pathlen
] != '/')
114 if (strncmp(path
, match
, pathlen
))
119 return 0; /* No matches */
122 /* A whole sub-tree went away or appeared */
123 static void show_tree(struct diff_options
*opt
, const char *prefix
, struct tree_desc
*desc
, const char *base
, int baselen
)
126 if (interesting(desc
, base
, baselen
, opt
))
127 show_entry(opt
, prefix
, desc
, base
, baselen
);
128 update_tree_entry(desc
);
132 /* A file entry went away or appeared */
133 static void show_entry(struct diff_options
*opt
, const char *prefix
, struct tree_desc
*desc
,
134 const char *base
, int baselen
)
138 const unsigned char *sha1
= tree_entry_extract(desc
, &path
, &mode
);
140 if (opt
->recursive
&& S_ISDIR(mode
)) {
141 enum object_type type
;
142 int pathlen
= tree_entry_len(path
, sha1
);
143 char *newbase
= malloc_base(base
, baselen
, path
, pathlen
);
144 struct tree_desc inner
;
147 tree
= read_sha1_file(sha1
, &type
, &inner
.size
);
148 if (!tree
|| type
!= OBJ_TREE
)
149 die("corrupt tree sha %s", sha1_to_hex(sha1
));
152 show_tree(opt
, prefix
, &inner
, newbase
, baselen
+ 1 + pathlen
);
157 opt
->add_remove(opt
, prefix
[0], mode
, sha1
, base
, path
);
161 int diff_tree(struct tree_desc
*t1
, struct tree_desc
*t2
, const char *base
, struct diff_options
*opt
)
163 int baselen
= strlen(base
);
165 while (t1
->size
| t2
->size
) {
166 if (opt
->quiet
&& opt
->has_changes
)
168 if (opt
->nr_paths
&& t1
->size
&& !interesting(t1
, base
, baselen
, opt
)) {
169 update_tree_entry(t1
);
172 if (opt
->nr_paths
&& t2
->size
&& !interesting(t2
, base
, baselen
, opt
)) {
173 update_tree_entry(t2
);
177 show_entry(opt
, "+", t2
, base
, baselen
);
178 update_tree_entry(t2
);
182 show_entry(opt
, "-", t1
, base
, baselen
);
183 update_tree_entry(t1
);
186 switch (compare_tree_entry(t1
, t2
, base
, baselen
, opt
)) {
188 update_tree_entry(t1
);
191 update_tree_entry(t1
);
194 update_tree_entry(t2
);
197 die("git-diff-tree: internal error");
202 int diff_tree_sha1(const unsigned char *old
, const unsigned char *new, const char *base
, struct diff_options
*opt
)
205 struct tree_desc t1
, t2
;
208 tree1
= read_object_with_reference(old
, tree_type
, &t1
.size
, NULL
);
210 die("unable to read source tree (%s)", sha1_to_hex(old
));
211 tree2
= read_object_with_reference(new, tree_type
, &t2
.size
, NULL
);
213 die("unable to read destination tree (%s)", sha1_to_hex(new));
216 retval
= diff_tree(&t1
, &t2
, base
, opt
);
222 int diff_root_tree_sha1(const unsigned char *new, const char *base
, struct diff_options
*opt
)
226 struct tree_desc empty
, real
;
228 tree
= read_object_with_reference(new, tree_type
, &real
.size
, NULL
);
230 die("unable to read root tree (%s)", sha1_to_hex(new));
235 retval
= diff_tree(&empty
, &real
, base
, opt
);
240 static int count_paths(const char **paths
)
248 void diff_tree_release_paths(struct diff_options
*opt
)
253 void diff_tree_setup_paths(const char **p
, struct diff_options
*opt
)
256 opt
->pathlens
= NULL
;
263 opt
->nr_paths
= count_paths(p
);
264 if (opt
->nr_paths
== 0) {
265 opt
->pathlens
= NULL
;
268 opt
->pathlens
= xmalloc(opt
->nr_paths
* sizeof(int));
269 for (i
=0; i
< opt
->nr_paths
; i
++)
270 opt
->pathlens
[i
] = strlen(p
[i
]);