1 /* ui-diff.c: show diff between two blobs
3 * Copyright (C) 2006 Lars Hjemli
5 * Licensed under GNU General Public License v2
6 * (see COPYING for full license text)
11 #include "ui-shared.h"
12 #include "ui-ssdiff.h"
14 unsigned char old_rev_sha1[20];
15 unsigned char new_rev_sha1[20];
17 static int files, slots;
18 static int total_adds, total_rems, max_changes;
19 static int lines_added, lines_removed;
21 static struct fileinfo {
23 unsigned char old_sha1[20];
24 unsigned char new_sha1[20];
25 unsigned short old_mode;
26 unsigned short new_mode;
31 unsigned long old_size;
32 unsigned long new_size;
36 static int use_ssdiff = 0;
37 static struct diff_filepair *current_filepair;
39 struct diff_filespec *cgit_get_current_old_file(void)
41 return current_filepair->one;
44 struct diff_filespec *cgit_get_current_new_file(void)
46 return current_filepair->two;
49 static void print_fileinfo(struct fileinfo *info)
53 switch (info->status) {
54 case DIFF_STATUS_ADDED:
57 case DIFF_STATUS_COPIED:
60 case DIFF_STATUS_DELETED:
63 case DIFF_STATUS_MODIFIED:
66 case DIFF_STATUS_RENAMED:
69 case DIFF_STATUS_TYPE_CHANGED:
72 case DIFF_STATUS_UNKNOWN:
75 case DIFF_STATUS_UNMERGED:
79 die("bug: unhandled diff status %c", info->status);
83 htmlf("<td class='mode'>");
84 if (is_null_sha1(info->new_sha1)) {
85 cgit_print_filemode(info->old_mode);
87 cgit_print_filemode(info->new_mode);
90 if (info->old_mode != info->new_mode &&
91 !is_null_sha1(info->old_sha1) &&
92 !is_null_sha1(info->new_sha1)) {
93 html("<span class='modechange'>[");
94 cgit_print_filemode(info->old_mode);
97 htmlf("</td><td class='%s'>", class);
98 cgit_diff_link(info->new_path, NULL, NULL, ctx.qry.head, ctx.qry.sha1,
99 ctx.qry.sha2, info->new_path, 0);
100 if (info->status == DIFF_STATUS_COPIED || info->status == DIFF_STATUS_RENAMED) {
102 info->status == DIFF_STATUS_COPIED ? "copied" : "renamed");
103 html_txt(info->old_path);
106 html("</td><td class='right'>");
108 htmlf("bin</td><td class='graph'>%ld -> %ld bytes",
109 info->old_size, info->new_size);
112 htmlf("%d", info->added + info->removed);
113 html("</td><td class='graph'>");
114 htmlf("<table summary='file diffstat' width='%d%%'><tr>", (max_changes > 100 ? 100 : max_changes));
115 htmlf("<td class='add' style='width: %.1f%%;'/>",
116 info->added * 100.0 / max_changes);
117 htmlf("<td class='rem' style='width: %.1f%%;'/>",
118 info->removed * 100.0 / max_changes);
119 htmlf("<td class='none' style='width: %.1f%%;'/>",
120 (max_changes - info->removed - info->added) * 100.0 / max_changes);
121 html("</tr></table></td></tr>\n");
124 static void count_diff_lines(char *line, int len)
126 if (line && (len > 0)) {
129 else if (line[0] == '-')
134 static void inspect_filepair(struct diff_filepair *pair)
137 unsigned long old_size = 0;
138 unsigned long new_size = 0;
142 cgit_diff_files(pair->one->sha1, pair->two->sha1, &old_size, &new_size,
143 &binary, 0, ctx.qry.ignorews, count_diff_lines);
144 if (files >= slots) {
149 items = xrealloc(items, slots * sizeof(struct fileinfo));
151 items[files-1].status = pair->status;
152 hashcpy(items[files-1].old_sha1, pair->one->sha1);
153 hashcpy(items[files-1].new_sha1, pair->two->sha1);
154 items[files-1].old_mode = pair->one->mode;
155 items[files-1].new_mode = pair->two->mode;
156 items[files-1].old_path = xstrdup(pair->one->path);
157 items[files-1].new_path = xstrdup(pair->two->path);
158 items[files-1].added = lines_added;
159 items[files-1].removed = lines_removed;
160 items[files-1].old_size = old_size;
161 items[files-1].new_size = new_size;
162 items[files-1].binary = binary;
163 if (lines_added + lines_removed > max_changes)
164 max_changes = lines_added + lines_removed;
165 total_adds += lines_added;
166 total_rems += lines_removed;
169 void cgit_print_diffstat(const unsigned char *old_sha1,
170 const unsigned char *new_sha1, const char *prefix)
174 html("<div class='diffstat-header'>");
175 cgit_diff_link("Diffstat", NULL, NULL, ctx.qry.head, ctx.qry.sha1,
176 ctx.qry.sha2, NULL, 0);
178 html(" (limited to '");
183 html("<table summary='diffstat' class='diffstat'>");
185 cgit_diff_tree(old_sha1, new_sha1, inspect_filepair, prefix,
187 for(i = 0; i<files; i++)
188 print_fileinfo(&items[i]);
190 html("<div class='diffstat-summary'>");
191 htmlf("%d files changed, %d insertions, %d deletions",
192 files, total_adds, total_rems);
198 * print a single line returned from xdiff
200 static void print_line(char *line, int len)
203 char c = line[len-1];
207 else if (line[0] == '-')
209 else if (line[0] == '@')
212 htmlf("<div class='%s'>", class);
219 static void header(unsigned char *sha1, char *path1, int mode1,
220 unsigned char *sha2, char *path2, int mode2)
222 char *abbrev1, *abbrev2;
225 subproject = (S_ISGITLINK(mode1) || S_ISGITLINK(mode2));
226 html("<div class='head'>");
227 html("diff --git a/");
232 if (is_null_sha1(sha1))
234 if (is_null_sha1(sha2))
238 htmlf("<br/>new file mode %.6o", mode2);
241 htmlf("<br/>deleted file mode %.6o", mode1);
244 abbrev1 = xstrdup(find_unique_abbrev(sha1, DEFAULT_ABBREV));
245 abbrev2 = xstrdup(find_unique_abbrev(sha2, DEFAULT_ABBREV));
246 htmlf("<br/>index %s..%s", abbrev1, abbrev2);
249 if (mode1 != 0 && mode2 != 0) {
250 htmlf(" %.6o", mode1);
252 htmlf("..%.6o", mode2);
256 cgit_tree_link(path1, NULL, NULL, ctx.qry.head,
257 sha1_to_hex(old_rev_sha1), path1);
262 cgit_tree_link(path2, NULL, NULL, ctx.qry.head,
263 sha1_to_hex(new_rev_sha1), path2);
270 static void filepair_cb(struct diff_filepair *pair)
272 unsigned long old_size = 0;
273 unsigned long new_size = 0;
275 linediff_fn print_line_fn = print_line;
277 current_filepair = pair;
279 cgit_ssdiff_header_begin();
280 print_line_fn = cgit_ssdiff_line_cb;
282 header(pair->one->sha1, pair->one->path, pair->one->mode,
283 pair->two->sha1, pair->two->path, pair->two->mode);
285 cgit_ssdiff_header_end();
286 if (S_ISGITLINK(pair->one->mode) || S_ISGITLINK(pair->two->mode)) {
287 if (S_ISGITLINK(pair->one->mode))
288 print_line_fn(fmt("-Subproject %s", sha1_to_hex(pair->one->sha1)), 52);
289 if (S_ISGITLINK(pair->two->mode))
290 print_line_fn(fmt("+Subproject %s", sha1_to_hex(pair->two->sha1)), 52);
292 cgit_ssdiff_footer();
295 if (cgit_diff_files(pair->one->sha1, pair->two->sha1, &old_size,
296 &new_size, &binary, ctx.qry.context,
297 ctx.qry.ignorews, print_line_fn))
298 cgit_print_error("Error running diff");
301 html("<tr><td colspan='4'>Binary files differ</td></tr>");
303 html("Binary files differ");
306 cgit_ssdiff_footer();
309 void cgit_print_diff_ctrls()
313 html("<div class='cgit-panel'>");
314 html("<b>diff options</b>");
315 html("<form method='get' action='.'>");
316 cgit_add_hidden_formfields(1, 0, ctx.qry.page);
318 html("<tr><td colspan='2'/></tr>");
320 html("<td class='label'>context:</td>");
321 html("<td class='ctrl'>");
322 html("<select name='context' onchange='this.form.submit();'>");
323 curr = ctx.qry.context;
326 for (i = 1; i <= 10; i++)
327 html_intoption(i, fmt("%d", i), curr);
328 for (i = 15; i <= 40; i += 5)
329 html_intoption(i, fmt("%d", i), curr);
333 html("<td class='label'>space:</td>");
334 html("<td class='ctrl'>");
335 html("<select name='ignorews' onchange='this.form.submit();'>");
336 html_intoption(0, "include", ctx.qry.ignorews);
337 html_intoption(1, "ignore", ctx.qry.ignorews);
341 html("<td class='label'>mode:</td>");
342 html("<td class='ctrl'>");
343 html("<select name='ss' onchange='this.form.submit();'>");
344 curr = ctx.qry.has_ssdiff ? ctx.qry.ssdiff : ctx.cfg.ssdiff;
345 html_intoption(0, "unified", curr);
346 html_intoption(1, "ssdiff", curr);
347 html("</select></td></tr>");
348 html("<tr><td/><td class='ctrl'>");
349 html("<noscript><input type='submit' value='reload'/></noscript>");
350 html("</td></tr></table>");
355 void cgit_print_diff(const char *new_rev, const char *old_rev,
356 const char *prefix, int show_ctrls)
358 enum object_type type;
360 struct commit *commit, *commit2;
363 new_rev = ctx.qry.head;
364 get_sha1(new_rev, new_rev_sha1);
365 type = sha1_object_info(new_rev_sha1, &size);
366 if (type == OBJ_BAD) {
367 cgit_print_error(fmt("Bad object name: %s", new_rev));
370 commit = lookup_commit_reference(new_rev_sha1);
371 if (!commit || parse_commit(commit)) {
372 cgit_print_error(fmt("Bad commit: %s", sha1_to_hex(new_rev_sha1)));
377 get_sha1(old_rev, old_rev_sha1);
378 else if (commit->parents && commit->parents->item)
379 hashcpy(old_rev_sha1, commit->parents->item->object.sha1);
381 hashclr(old_rev_sha1);
383 if (!is_null_sha1(old_rev_sha1)) {
384 type = sha1_object_info(old_rev_sha1, &size);
385 if (type == OBJ_BAD) {
386 cgit_print_error(fmt("Bad object name: %s", sha1_to_hex(old_rev_sha1)));
389 commit2 = lookup_commit_reference(old_rev_sha1);
390 if (!commit2 || parse_commit(commit2)) {
391 cgit_print_error(fmt("Bad commit: %s", sha1_to_hex(old_rev_sha1)));
396 use_ssdiff = ctx.qry.has_ssdiff ? ctx.qry.ssdiff : ctx.cfg.ssdiff;
399 cgit_print_diff_ctrls();
401 cgit_print_diffstat(old_rev_sha1, new_rev_sha1, prefix);
404 html("<table summary='ssdiff' class='ssdiff'>");
406 html("<table summary='diff' class='diff'>");
409 cgit_diff_tree(old_rev_sha1, new_rev_sha1, filepair_cb, prefix,