author | Lars Hjemli <hjemli@gmail.com> | 2009-01-27 19:16:37 (UTC) |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2009-01-27 19:16:37 (UTC) |
commit | 7710178e45dee61e85ea77c4221309ce8c086f95 (patch) (unidiff) | |
tree | 281c5251777308f18c05d323183b28470445f4bc /ui-tree.c | |
parent | e78186dcb63ec67a38dddfcd8f91d2108583320b (diff) | |
parent | b54ef9749c083afd86573112fad3b3ed8ee2d0e4 (diff) | |
download | cgit-7710178e45dee61e85ea77c4221309ce8c086f95.zip cgit-7710178e45dee61e85ea77c4221309ce8c086f95.tar.gz cgit-7710178e45dee61e85ea77c4221309ce8c086f95.tar.bz2 |
Merge branch 'lh/stats'
Conflicts:
cgit.c
cgit.css
cgit.h
ui-tree.c
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
-rw-r--r-- | ui-tree.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -1,225 +1,228 @@ | |||
1 | /* ui-tree.c: functions for tree output | 1 | /* ui-tree.c: functions for tree output |
2 | * | 2 | * |
3 | * Copyright (C) 2006 Lars Hjemli | 3 | * Copyright (C) 2006 Lars Hjemli |
4 | * | 4 | * |
5 | * Licensed under GNU General Public License v2 | 5 | * Licensed under GNU General Public License v2 |
6 | * (see COPYING for full license text) | 6 | * (see COPYING for full license text) |
7 | */ | 7 | */ |
8 | 8 | ||
9 | #include "cgit.h" | 9 | #include "cgit.h" |
10 | #include "html.h" | 10 | #include "html.h" |
11 | #include "ui-shared.h" | 11 | #include "ui-shared.h" |
12 | 12 | ||
13 | char *curr_rev; | 13 | char *curr_rev; |
14 | char *match_path; | 14 | char *match_path; |
15 | int header = 0; | 15 | int header = 0; |
16 | 16 | ||
17 | static void print_object(const unsigned char *sha1, char *path) | 17 | static void print_object(const unsigned char *sha1, char *path) |
18 | { | 18 | { |
19 | enum object_type type; | 19 | enum object_type type; |
20 | char *buf; | 20 | char *buf; |
21 | unsigned long size, lineno, start, idx; | 21 | unsigned long size, lineno, start, idx; |
22 | const char *linefmt = "<tr><td class='no'><a id='n%1$d' name='n%1$d' href='#n%1$d'>%1$d</a></td><td class='txt'>"; | 22 | const char *linefmt = "<tr><td class='no'><a id='n%1$d' name='n%1$d' href='#n%1$d'>%1$d</a></td><td class='txt'>"; |
23 | 23 | ||
24 | type = sha1_object_info(sha1, &size); | 24 | type = sha1_object_info(sha1, &size); |
25 | if (type == OBJ_BAD) { | 25 | if (type == OBJ_BAD) { |
26 | cgit_print_error(fmt("Bad object name: %s", | 26 | cgit_print_error(fmt("Bad object name: %s", |
27 | sha1_to_hex(sha1))); | 27 | sha1_to_hex(sha1))); |
28 | return; | 28 | return; |
29 | } | 29 | } |
30 | 30 | ||
31 | buf = read_sha1_file(sha1, &type, &size); | 31 | buf = read_sha1_file(sha1, &type, &size); |
32 | if (!buf) { | 32 | if (!buf) { |
33 | cgit_print_error(fmt("Error reading object %s", | 33 | cgit_print_error(fmt("Error reading object %s", |
34 | sha1_to_hex(sha1))); | 34 | sha1_to_hex(sha1))); |
35 | return; | 35 | return; |
36 | } | 36 | } |
37 | 37 | ||
38 | html(" ("); | 38 | html(" ("); |
39 | cgit_plain_link("plain", NULL, NULL, ctx.qry.head, | 39 | cgit_plain_link("plain", NULL, NULL, ctx.qry.head, |
40 | curr_rev, path); | 40 | curr_rev, path); |
41 | htmlf(")<br/>blob: %s", sha1_to_hex(sha1)); | 41 | htmlf(")<br/>blob: %s", sha1_to_hex(sha1)); |
42 | 42 | ||
43 | html("<table summary='blob content' class='blob'>\n"); | 43 | html("<table summary='blob content' class='blob'>\n"); |
44 | idx = 0; | 44 | idx = 0; |
45 | start = 0; | 45 | start = 0; |
46 | lineno = 0; | 46 | lineno = 0; |
47 | while(idx < size) { | 47 | while(idx < size) { |
48 | if (buf[idx] == '\n') { | 48 | if (buf[idx] == '\n') { |
49 | buf[idx] = '\0'; | 49 | buf[idx] = '\0'; |
50 | htmlf(linefmt, ++lineno); | 50 | htmlf(linefmt, ++lineno); |
51 | html_txt(buf + start); | 51 | html_txt(buf + start); |
52 | html("</td></tr>\n"); | 52 | html("</td></tr>\n"); |
53 | start = idx + 1; | 53 | start = idx + 1; |
54 | } | 54 | } |
55 | idx++; | 55 | idx++; |
56 | } | 56 | } |
57 | if (start < idx) { | 57 | if (start < idx) { |
58 | htmlf(linefmt, ++lineno); | 58 | htmlf(linefmt, ++lineno); |
59 | html_txt(buf + start); | 59 | html_txt(buf + start); |
60 | } | 60 | } |
61 | html("</td></tr>\n"); | 61 | html("</td></tr>\n"); |
62 | html("</table>\n"); | 62 | html("</table>\n"); |
63 | } | 63 | } |
64 | 64 | ||
65 | 65 | ||
66 | static int ls_item(const unsigned char *sha1, const char *base, int baselen, | 66 | static int ls_item(const unsigned char *sha1, const char *base, int baselen, |
67 | const char *pathname, unsigned int mode, int stage, | 67 | const char *pathname, unsigned int mode, int stage, |
68 | void *cbdata) | 68 | void *cbdata) |
69 | { | 69 | { |
70 | char *name; | 70 | char *name; |
71 | char *fullpath; | 71 | char *fullpath; |
72 | enum object_type type; | 72 | enum object_type type; |
73 | unsigned long size = 0; | 73 | unsigned long size = 0; |
74 | 74 | ||
75 | name = xstrdup(pathname); | 75 | name = xstrdup(pathname); |
76 | fullpath = fmt("%s%s%s", ctx.qry.path ? ctx.qry.path : "", | 76 | fullpath = fmt("%s%s%s", ctx.qry.path ? ctx.qry.path : "", |
77 | ctx.qry.path ? "/" : "", name); | 77 | ctx.qry.path ? "/" : "", name); |
78 | 78 | ||
79 | if (!S_ISGITLINK(mode)) { | 79 | if (!S_ISGITLINK(mode)) { |
80 | type = sha1_object_info(sha1, &size); | 80 | type = sha1_object_info(sha1, &size); |
81 | if (type == OBJ_BAD) { | 81 | if (type == OBJ_BAD) { |
82 | htmlf("<tr><td colspan='3'>Bad object: %s %s</td></tr>", | 82 | htmlf("<tr><td colspan='3'>Bad object: %s %s</td></tr>", |
83 | name, | 83 | name, |
84 | sha1_to_hex(sha1)); | 84 | sha1_to_hex(sha1)); |
85 | return 0; | 85 | return 0; |
86 | } | 86 | } |
87 | } | 87 | } |
88 | 88 | ||
89 | html("<tr><td class='ls-mode'>"); | 89 | html("<tr><td class='ls-mode'>"); |
90 | cgit_print_filemode(mode); | 90 | cgit_print_filemode(mode); |
91 | html("</td><td>"); | 91 | html("</td><td>"); |
92 | if (S_ISGITLINK(mode)) { | 92 | if (S_ISGITLINK(mode)) { |
93 | htmlf("<a class='ls-mod' href='"); | 93 | htmlf("<a class='ls-mod' href='"); |
94 | html_attr(fmt(ctx.repo->module_link, | 94 | html_attr(fmt(ctx.repo->module_link, |
95 | name, | 95 | name, |
96 | sha1_to_hex(sha1))); | 96 | sha1_to_hex(sha1))); |
97 | html("'>"); | 97 | html("'>"); |
98 | html_txt(name); | 98 | html_txt(name); |
99 | html("</a>"); | 99 | html("</a>"); |
100 | } else if (S_ISDIR(mode)) { | 100 | } else if (S_ISDIR(mode)) { |
101 | cgit_tree_link(name, NULL, "ls-dir", ctx.qry.head, | 101 | cgit_tree_link(name, NULL, "ls-dir", ctx.qry.head, |
102 | curr_rev, fullpath); | 102 | curr_rev, fullpath); |
103 | } else { | 103 | } else { |
104 | cgit_tree_link(name, NULL, "ls-blob", ctx.qry.head, | 104 | cgit_tree_link(name, NULL, "ls-blob", ctx.qry.head, |
105 | curr_rev, fullpath); | 105 | curr_rev, fullpath); |
106 | } | 106 | } |
107 | htmlf("</td><td class='ls-size'>%li</td>", size); | 107 | htmlf("</td><td class='ls-size'>%li</td>", size); |
108 | 108 | ||
109 | html("<td>"); | 109 | html("<td>"); |
110 | cgit_log_link("log", NULL, "button", ctx.qry.head, curr_rev, | 110 | cgit_log_link("log", NULL, "button", ctx.qry.head, curr_rev, |
111 | fullpath, 0, NULL, NULL, ctx.qry.showmsg); | 111 | fullpath, 0, NULL, NULL, ctx.qry.showmsg); |
112 | if (ctx.repo->max_stats) | ||
113 | cgit_stats_link("stats", NULL, "button", ctx.qry.head, | ||
114 | fullpath); | ||
112 | html("</td></tr>\n"); | 115 | html("</td></tr>\n"); |
113 | free(name); | 116 | free(name); |
114 | return 0; | 117 | return 0; |
115 | } | 118 | } |
116 | 119 | ||
117 | static void ls_head() | 120 | static void ls_head() |
118 | { | 121 | { |
119 | html("<table summary='tree listing' class='list'>\n"); | 122 | html("<table summary='tree listing' class='list'>\n"); |
120 | html("<tr class='nohover'>"); | 123 | html("<tr class='nohover'>"); |
121 | html("<th class='left'>Mode</th>"); | 124 | html("<th class='left'>Mode</th>"); |
122 | html("<th class='left'>Name</th>"); | 125 | html("<th class='left'>Name</th>"); |
123 | html("<th class='right'>Size</th>"); | 126 | html("<th class='right'>Size</th>"); |
124 | html("<th/>"); | 127 | html("<th/>"); |
125 | html("</tr>\n"); | 128 | html("</tr>\n"); |
126 | header = 1; | 129 | header = 1; |
127 | } | 130 | } |
128 | 131 | ||
129 | static void ls_tail() | 132 | static void ls_tail() |
130 | { | 133 | { |
131 | if (!header) | 134 | if (!header) |
132 | return; | 135 | return; |
133 | html("</table>\n"); | 136 | html("</table>\n"); |
134 | header = 0; | 137 | header = 0; |
135 | } | 138 | } |
136 | 139 | ||
137 | static void ls_tree(const unsigned char *sha1, char *path) | 140 | static void ls_tree(const unsigned char *sha1, char *path) |
138 | { | 141 | { |
139 | struct tree *tree; | 142 | struct tree *tree; |
140 | 143 | ||
141 | tree = parse_tree_indirect(sha1); | 144 | tree = parse_tree_indirect(sha1); |
142 | if (!tree) { | 145 | if (!tree) { |
143 | cgit_print_error(fmt("Not a tree object: %s", | 146 | cgit_print_error(fmt("Not a tree object: %s", |
144 | sha1_to_hex(sha1))); | 147 | sha1_to_hex(sha1))); |
145 | return; | 148 | return; |
146 | } | 149 | } |
147 | 150 | ||
148 | ls_head(); | 151 | ls_head(); |
149 | read_tree_recursive(tree, "", 0, 1, NULL, ls_item, NULL); | 152 | read_tree_recursive(tree, "", 0, 1, NULL, ls_item, NULL); |
150 | ls_tail(); | 153 | ls_tail(); |
151 | } | 154 | } |
152 | 155 | ||
153 | 156 | ||
154 | static int walk_tree(const unsigned char *sha1, const char *base, int baselen, | 157 | static int walk_tree(const unsigned char *sha1, const char *base, int baselen, |
155 | const char *pathname, unsigned mode, int stage, | 158 | const char *pathname, unsigned mode, int stage, |
156 | void *cbdata) | 159 | void *cbdata) |
157 | { | 160 | { |
158 | static int state; | 161 | static int state; |
159 | static char buffer[PATH_MAX]; | 162 | static char buffer[PATH_MAX]; |
160 | char *url; | 163 | char *url; |
161 | 164 | ||
162 | if (state == 0) { | 165 | if (state == 0) { |
163 | memcpy(buffer, base, baselen); | 166 | memcpy(buffer, base, baselen); |
164 | strcpy(buffer+baselen, pathname); | 167 | strcpy(buffer+baselen, pathname); |
165 | url = cgit_pageurl(ctx.qry.repo, "tree", | 168 | url = cgit_pageurl(ctx.qry.repo, "tree", |
166 | fmt("h=%s&path=%s", curr_rev, buffer)); | 169 | fmt("h=%s&path=%s", curr_rev, buffer)); |
167 | html("/"); | 170 | html("/"); |
168 | cgit_tree_link(xstrdup(pathname), NULL, NULL, ctx.qry.head, | 171 | cgit_tree_link(xstrdup(pathname), NULL, NULL, ctx.qry.head, |
169 | curr_rev, buffer); | 172 | curr_rev, buffer); |
170 | 173 | ||
171 | if (strcmp(match_path, buffer)) | 174 | if (strcmp(match_path, buffer)) |
172 | return READ_TREE_RECURSIVE; | 175 | return READ_TREE_RECURSIVE; |
173 | 176 | ||
174 | if (S_ISDIR(mode)) { | 177 | if (S_ISDIR(mode)) { |
175 | state = 1; | 178 | state = 1; |
176 | ls_head(); | 179 | ls_head(); |
177 | return READ_TREE_RECURSIVE; | 180 | return READ_TREE_RECURSIVE; |
178 | } else { | 181 | } else { |
179 | print_object(sha1, buffer); | 182 | print_object(sha1, buffer); |
180 | return 0; | 183 | return 0; |
181 | } | 184 | } |
182 | } | 185 | } |
183 | ls_item(sha1, base, baselen, pathname, mode, stage, NULL); | 186 | ls_item(sha1, base, baselen, pathname, mode, stage, NULL); |
184 | return 0; | 187 | return 0; |
185 | } | 188 | } |
186 | 189 | ||
187 | 190 | ||
188 | /* | 191 | /* |
189 | * Show a tree or a blob | 192 | * Show a tree or a blob |
190 | * rev: the commit pointing at the root tree object | 193 | * rev: the commit pointing at the root tree object |
191 | * path: path to tree or blob | 194 | * path: path to tree or blob |
192 | */ | 195 | */ |
193 | void cgit_print_tree(const char *rev, char *path) | 196 | void cgit_print_tree(const char *rev, char *path) |
194 | { | 197 | { |
195 | unsigned char sha1[20]; | 198 | unsigned char sha1[20]; |
196 | struct commit *commit; | 199 | struct commit *commit; |
197 | const char *paths[] = {path, NULL}; | 200 | const char *paths[] = {path, NULL}; |
198 | 201 | ||
199 | if (!rev) | 202 | if (!rev) |
200 | rev = ctx.qry.head; | 203 | rev = ctx.qry.head; |
201 | 204 | ||
202 | curr_rev = xstrdup(rev); | 205 | curr_rev = xstrdup(rev); |
203 | if (get_sha1(rev, sha1)) { | 206 | if (get_sha1(rev, sha1)) { |
204 | cgit_print_error(fmt("Invalid revision name: %s", rev)); | 207 | cgit_print_error(fmt("Invalid revision name: %s", rev)); |
205 | return; | 208 | return; |
206 | } | 209 | } |
207 | commit = lookup_commit_reference(sha1); | 210 | commit = lookup_commit_reference(sha1); |
208 | if (!commit || parse_commit(commit)) { | 211 | if (!commit || parse_commit(commit)) { |
209 | cgit_print_error(fmt("Invalid commit reference: %s", rev)); | 212 | cgit_print_error(fmt("Invalid commit reference: %s", rev)); |
210 | return; | 213 | return; |
211 | } | 214 | } |
212 | 215 | ||
213 | html("path: <a href='"); | 216 | html("path: <a href='"); |
214 | html_attr(cgit_pageurl(ctx.qry.repo, "tree", fmt("h=%s", rev))); | 217 | html_attr(cgit_pageurl(ctx.qry.repo, "tree", fmt("h=%s", rev))); |
215 | html("'>root</a>"); | 218 | html("'>root</a>"); |
216 | 219 | ||
217 | if (path == NULL) { | 220 | if (path == NULL) { |
218 | ls_tree(commit->tree->object.sha1, NULL); | 221 | ls_tree(commit->tree->object.sha1, NULL); |
219 | return; | 222 | return; |
220 | } | 223 | } |
221 | 224 | ||
222 | match_path = path; | 225 | match_path = path; |
223 | read_tree_recursive(commit->tree, NULL, 0, 0, paths, walk_tree, NULL); | 226 | read_tree_recursive(commit->tree, NULL, 0, 0, paths, walk_tree, NULL); |
224 | ls_tail(); | 227 | ls_tail(); |
225 | } | 228 | } |