summaryrefslogtreecommitdiffabout
path: root/ui-commit.c
authorLars Hjemli <hjemli@gmail.com>2008-04-24 21:32:02 (UTC)
committer Lars Hjemli <hjemli@gmail.com>2008-04-24 21:41:32 (UTC)
commitfe1230dece81450004d02fa8a470f8dab8f7fdd9 (patch) (unidiff)
treed9c26264b9339d05dbcaa84a59fcabb081e84e98 /ui-commit.c
parent9ec5cd7944a7099515b7d41107007d6332a2540e (diff)
downloadcgit-fe1230dece81450004d02fa8a470f8dab8f7fdd9.zip
cgit-fe1230dece81450004d02fa8a470f8dab8f7fdd9.tar.gz
cgit-fe1230dece81450004d02fa8a470f8dab8f7fdd9.tar.bz2
Integrate diffstat with diff
This creates a generic diffstat function in ui-diff, which then is invoked from cgit_print_diff with the result that both commit and diff- view gets a diffstat. Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to 'ui-commit.c') (more/less context) (ignore whitespace changes)
-rw-r--r--ui-commit.c146
1 files changed, 4 insertions, 142 deletions
diff --git a/ui-commit.c b/ui-commit.c
index 12a96fb..1aa5d34 100644
--- a/ui-commit.c
+++ b/ui-commit.c
@@ -11,131 +11,6 @@
11#include "ui-shared.h" 11#include "ui-shared.h"
12#include "ui-diff.h" 12#include "ui-diff.h"
13 13
14static int files, slots;
15static int total_adds, total_rems, max_changes;
16static int lines_added, lines_removed;
17static char *curr_rev;
18
19static struct fileinfo {
20 char status;
21 unsigned char old_sha1[20];
22 unsigned char new_sha1[20];
23 unsigned short old_mode;
24 unsigned short new_mode;
25 char *old_path;
26 char *new_path;
27 unsigned int added;
28 unsigned int removed;
29} *items;
30
31
32void print_fileinfo(struct fileinfo *info)
33{
34 char *class;
35
36 switch (info->status) {
37 case DIFF_STATUS_ADDED:
38 class = "add";
39 break;
40 case DIFF_STATUS_COPIED:
41 class = "cpy";
42 break;
43 case DIFF_STATUS_DELETED:
44 class = "del";
45 break;
46 case DIFF_STATUS_MODIFIED:
47 class = "upd";
48 break;
49 case DIFF_STATUS_RENAMED:
50 class = "mov";
51 break;
52 case DIFF_STATUS_TYPE_CHANGED:
53 class = "typ";
54 break;
55 case DIFF_STATUS_UNKNOWN:
56 class = "unk";
57 break;
58 case DIFF_STATUS_UNMERGED:
59 class = "stg";
60 break;
61 default:
62 die("bug: unhandled diff status %c", info->status);
63 }
64
65 html("<tr>");
66 htmlf("<td class='mode'>");
67 if (is_null_sha1(info->new_sha1)) {
68 cgit_print_filemode(info->old_mode);
69 } else {
70 cgit_print_filemode(info->new_mode);
71 }
72
73 if (info->old_mode != info->new_mode &&
74 !is_null_sha1(info->old_sha1) &&
75 !is_null_sha1(info->new_sha1)) {
76 html("<span class='modechange'>[");
77 cgit_print_filemode(info->old_mode);
78 html("]</span>");
79 }
80 htmlf("</td><td class='%s'>", class);
81 cgit_diff_link(info->new_path, NULL, NULL, ctx.qry.head, curr_rev,
82 NULL, info->new_path);
83 if (info->status == DIFF_STATUS_COPIED || info->status == DIFF_STATUS_RENAMED)
84 htmlf(" (%s from %s)",
85 info->status == DIFF_STATUS_COPIED ? "copied" : "renamed",
86 info->old_path);
87 html("</td><td class='right'>");
88 htmlf("%d", info->added + info->removed);
89 html("</td><td class='graph'>");
90 htmlf("<table summary='file diffstat' width='%d%%'><tr>", (max_changes > 100 ? 100 : max_changes));
91 htmlf("<td class='add' style='width: %.1f%%;'/>",
92 info->added * 100.0 / max_changes);
93 htmlf("<td class='rem' style='width: %.1f%%;'/>",
94 info->removed * 100.0 / max_changes);
95 htmlf("<td class='none' style='width: %.1f%%;'/>",
96 (max_changes - info->removed - info->added) * 100.0 / max_changes);
97 html("</tr></table></td></tr>\n");
98}
99
100void cgit_count_diff_lines(char *line, int len)
101{
102 if (line && (len > 0)) {
103 if (line[0] == '+')
104 lines_added++;
105 else if (line[0] == '-')
106 lines_removed++;
107 }
108}
109
110void inspect_filepair(struct diff_filepair *pair)
111{
112 files++;
113 lines_added = 0;
114 lines_removed = 0;
115 cgit_diff_files(pair->one->sha1, pair->two->sha1, cgit_count_diff_lines);
116 if (files >= slots) {
117 if (slots == 0)
118 slots = 4;
119 else
120 slots = slots * 2;
121 items = xrealloc(items, slots * sizeof(struct fileinfo));
122 }
123 items[files-1].status = pair->status;
124 hashcpy(items[files-1].old_sha1, pair->one->sha1);
125 hashcpy(items[files-1].new_sha1, pair->two->sha1);
126 items[files-1].old_mode = pair->one->mode;
127 items[files-1].new_mode = pair->two->mode;
128 items[files-1].old_path = xstrdup(pair->one->path);
129 items[files-1].new_path = xstrdup(pair->two->path);
130 items[files-1].added = lines_added;
131 items[files-1].removed = lines_removed;
132 if (lines_added + lines_removed > max_changes)
133 max_changes = lines_added + lines_removed;
134 total_adds += lines_added;
135 total_rems += lines_removed;
136}
137
138
139void cgit_print_commit(char *hex) 14void cgit_print_commit(char *hex)
140{ 15{
141 struct commit *commit, *parent; 16 struct commit *commit, *parent;
@@ -143,11 +18,9 @@ void cgit_print_commit(char *hex)
143 struct commit_list *p; 18 struct commit_list *p;
144 unsigned char sha1[20]; 19 unsigned char sha1[20];
145 char *tmp; 20 char *tmp;
146 int i;
147 21
148 if (!hex) 22 if (!hex)
149 hex = ctx.qry.head; 23 hex = ctx.qry.head;
150 curr_rev = hex;
151 24
152 if (get_sha1(hex, sha1)) { 25 if (get_sha1(hex, sha1)) {
153 cgit_print_error(fmt("Bad object id: %s", hex)); 26 cgit_print_error(fmt("Bad object id: %s", hex));
@@ -216,21 +89,10 @@ void cgit_print_commit(char *hex)
216 html("<div class='commit-msg'>"); 89 html("<div class='commit-msg'>");
217 html_txt(info->msg); 90 html_txt(info->msg);
218 html("</div>"); 91 html("</div>");
219 if (!(commit->parents && commit->parents->next && commit->parents->next->next)) { 92 if (!(commit->parents && commit->parents->next &&
220 html("<div class='diffstat-header'>Diffstat</div>"); 93 commit->parents->next->next)) {
221 html("<table summary='diffstat' class='diffstat'>"); 94 tmp = sha1_to_hex(commit->parents->item->object.sha1);
222 max_changes = 0; 95 cgit_print_diff(ctx.qry.sha1, tmp, NULL);
223 cgit_diff_commit(commit, inspect_filepair);
224 for(i = 0; i<files; i++)
225 print_fileinfo(&items[i]);
226 html("</table>");
227 html("<div class='diffstat-summary'>");
228 htmlf("%d files changed, %d insertions, %d deletions",
229 files, total_adds, total_rems);
230 html("</div>");
231 cgit_print_diff(ctx.qry.sha1,
232 sha1_to_hex(commit->parents->item->object.sha1),
233 NULL);
234 } 96 }
235 cgit_free_commitinfo(info); 97 cgit_free_commitinfo(info);
236} 98}