1 /* ui-commit.c: generate commit view
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"
14 static int files, slots;
15 static int total_adds, total_rems, max_changes;
16 static int lines_added, lines_removed;
17 static char *curr_rev;
19 static struct fileinfo {
21 unsigned char old_sha1[20];
22 unsigned char new_sha1[20];
23 unsigned short old_mode;
24 unsigned short new_mode;
32 void print_fileinfo(struct fileinfo *info)
36 switch (info->status) {
37 case DIFF_STATUS_ADDED:
40 case DIFF_STATUS_COPIED:
43 case DIFF_STATUS_DELETED:
46 case DIFF_STATUS_MODIFIED:
49 case DIFF_STATUS_RENAMED:
52 case DIFF_STATUS_TYPE_CHANGED:
55 case DIFF_STATUS_UNKNOWN:
58 case DIFF_STATUS_UNMERGED:
62 die("bug: unhandled diff status %c", info->status);
66 htmlf("<td class='mode'>");
67 if (is_null_sha1(info->new_sha1)) {
68 cgit_print_filemode(info->old_mode);
70 cgit_print_filemode(info->new_mode);
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);
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",
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");
100 void cgit_count_diff_lines(char *line, int len)
102 if (line && (len > 0)) {
105 else if (line[0] == '-')
110 void inspect_filepair(struct diff_filepair *pair)
115 cgit_diff_files(pair->one->sha1, pair->two->sha1, cgit_count_diff_lines);
116 if (files >= slots) {
121 items = xrealloc(items, slots * sizeof(struct fileinfo));
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;
139 void cgit_print_commit(char *hex)
141 struct commit *commit, *parent;
142 struct commitinfo *info;
143 struct commit_list *p;
144 unsigned char sha1[20];
152 if (get_sha1(hex, sha1)) {
153 cgit_print_error(fmt("Bad object id: %s", hex));
156 commit = lookup_commit_reference(sha1);
158 cgit_print_error(fmt("Bad commit reference: %s", hex));
161 info = cgit_parse_commit(commit);
163 html("<table summary='commit info' class='commit-info'>\n");
164 html("<tr><th>author</th><td>");
165 html_txt(info->author);
167 html_txt(info->author_email);
168 html("</td><td class='right'>");
169 cgit_print_date(info->author_date, FMT_LONGDATE);
170 html("</td></tr>\n");
171 html("<tr><th>committer</th><td>");
172 html_txt(info->committer);
174 html_txt(info->committer_email);
175 html("</td><td class='right'>");
176 cgit_print_date(info->committer_date, FMT_LONGDATE);
177 html("</td></tr>\n");
178 html("<tr><th>commit</th><td colspan='2' class='sha1'>");
179 tmp = sha1_to_hex(commit->object.sha1);
180 cgit_commit_link(tmp, NULL, NULL, ctx.qry.head, tmp);
182 cgit_patch_link("patch", NULL, NULL, NULL, tmp);
183 html(")</td></tr>\n");
184 html("<tr><th>tree</th><td colspan='2' class='sha1'>");
186 cgit_tree_link(sha1_to_hex(commit->tree->object.sha1), NULL, NULL,
187 ctx.qry.head, tmp, NULL);
188 html("</td></tr>\n");
189 for (p = commit->parents; p ; p = p->next) {
190 parent = lookup_commit_reference(p->item->object.sha1);
192 html("<tr><td colspan='3'>");
193 cgit_print_error("Error reading parent commit");
197 html("<tr><th>parent</th>"
198 "<td colspan='2' class='sha1'>");
199 cgit_commit_link(sha1_to_hex(p->item->object.sha1), NULL, NULL,
200 ctx.qry.head, sha1_to_hex(p->item->object.sha1));
202 cgit_diff_link("diff", NULL, NULL, ctx.qry.head, hex,
203 sha1_to_hex(p->item->object.sha1), NULL);
206 if (ctx.repo->snapshots) {
207 html("<tr><th>download</th><td colspan='2' class='sha1'>");
208 cgit_print_snapshot_links(ctx.qry.repo, ctx.qry.head,
209 hex, ctx.repo->snapshots);
213 html("<div class='commit-subject'>");
214 html_txt(info->subject);
216 html("<div class='commit-msg'>");
219 if (!(commit->parents && commit->parents->next && commit->parents->next->next)) {
220 html("<div class='diffstat-header'>Diffstat</div>");
221 html("<table summary='diffstat' class='diffstat'>");
223 cgit_diff_commit(commit, inspect_filepair);
224 for(i = 0; i<files; i++)
225 print_fileinfo(&items[i]);
227 html("<div class='diffstat-summary'>");
228 htmlf("%d files changed, %d insertions, %d deletions",
229 files, total_adds, total_rems);
230 cgit_print_diff(ctx.qry.sha1,
231 sha1_to_hex(commit->parents->item->object.sha1),
235 cgit_free_commitinfo(info);