1 /* ui-tree.c: functions for tree output
3 * Copyright (C) 2006 Lars Hjemli
5 * Licensed under GNU General Public License v2
6 * (see COPYING for full license text)
12 #include "ui-shared.h"
18 static void print_text_buffer(const char *name, char *buf, unsigned long size)
20 unsigned long lineno, idx;
21 const char *numberfmt =
22 "<a class='no' id='n%1$d' name='n%1$d' href='#n%1$d'>%1$d</a>\n";
24 html("<table summary='blob content' class='blob'>\n");
25 if (ctx.repo->source_filter) {
26 html("<tr><td class='lines'><pre><code>");
27 ctx.repo->source_filter->argv[1] = xstrdup(name);
28 cgit_open_filter(ctx.repo->source_filter);
29 write(STDOUT_FILENO, buf, size);
30 cgit_close_filter(ctx.repo->source_filter);
31 html("</code></pre></td></tr></table>\n");
35 html("<tr><td class='linenumbers'><pre>");
40 htmlf(numberfmt, ++lineno);
41 while(idx < size - 1) { // skip absolute last newline
43 htmlf(numberfmt, ++lineno);
47 html("</pre></td>\n");
48 html("<td class='lines'><pre><code>");
50 html("</code></pre></td></tr></table>\n");
55 static void print_binary_buffer(char *buf, unsigned long size)
57 unsigned long ofs, idx;
58 static char ascii[ROWLEN + 1];
60 html("<table summary='blob content' class='bin-blob'>\n");
61 html("<tr><th>ofs</th><th>hex dump</th><th>ascii</th></tr>");
62 for (ofs = 0; ofs < size; ofs += ROWLEN, buf += ROWLEN) {
63 htmlf("<tr><td class='right'>%04x</td><td class='hex'>", ofs);
64 for (idx = 0; idx < ROWLEN && ofs + idx < size; idx++)
66 idx == 16 ? 4 : 1, "",
68 html(" </td><td class='hex'>");
69 for (idx = 0; idx < ROWLEN && ofs + idx < size; idx++)
70 ascii[idx] = isgraph(buf[idx]) ? buf[idx] : '.';
78 static void print_object(const unsigned char *sha1, char *path, const char *basename)
80 enum object_type type;
84 type = sha1_object_info(sha1, &size);
85 if (type == OBJ_BAD) {
86 cgit_print_error(fmt("Bad object name: %s",
91 buf = read_sha1_file(sha1, &type, &size);
93 cgit_print_error(fmt("Error reading object %s",
99 cgit_plain_link("plain", NULL, NULL, ctx.qry.head,
101 htmlf(")<br/>blob: %s\n", sha1_to_hex(sha1));
103 if (buffer_is_binary(buf, size))
104 print_binary_buffer(buf, size);
106 print_text_buffer(basename, buf, size);
110 static int ls_item(const unsigned char *sha1, const char *base, int baselen,
111 const char *pathname, unsigned int mode, int stage,
117 enum object_type type;
118 unsigned long size = 0;
120 name = xstrdup(pathname);
121 fullpath = fmt("%s%s%s", ctx.qry.path ? ctx.qry.path : "",
122 ctx.qry.path ? "/" : "", name);
124 if (!S_ISGITLINK(mode)) {
125 type = sha1_object_info(sha1, &size);
126 if (type == OBJ_BAD) {
127 htmlf("<tr><td colspan='3'>Bad object: %s %s</td></tr>",
134 html("<tr><td class='ls-mode'>");
135 cgit_print_filemode(mode);
137 if (S_ISGITLINK(mode)) {
138 htmlf("<a class='ls-mod' href='");
139 html_attr(fmt(ctx.repo->module_link,
145 } else if (S_ISDIR(mode)) {
146 cgit_tree_link(name, NULL, "ls-dir", ctx.qry.head,
149 class = strrchr(name, '.');
151 class = fmt("ls-blob %s", class + 1);
154 cgit_tree_link(name, NULL, class, ctx.qry.head,
157 htmlf("</td><td class='ls-size'>%li</td>", size);
160 cgit_log_link("log", NULL, "button", ctx.qry.head, curr_rev,
161 fullpath, 0, NULL, NULL, ctx.qry.showmsg);
162 if (ctx.repo->max_stats)
163 cgit_stats_link("stats", NULL, "button", ctx.qry.head,
165 html("</td></tr>\n");
170 static void ls_head()
172 html("<table summary='tree listing' class='list'>\n");
173 html("<tr class='nohover'>");
174 html("<th class='left'>Mode</th>");
175 html("<th class='left'>Name</th>");
176 html("<th class='right'>Size</th>");
182 static void ls_tail()
190 static void ls_tree(const unsigned char *sha1, char *path)
194 tree = parse_tree_indirect(sha1);
196 cgit_print_error(fmt("Not a tree object: %s",
202 read_tree_recursive(tree, "", 0, 1, NULL, ls_item, NULL);
207 static int walk_tree(const unsigned char *sha1, const char *base, int baselen,
208 const char *pathname, unsigned mode, int stage,
212 static char buffer[PATH_MAX];
216 memcpy(buffer, base, baselen);
217 strcpy(buffer+baselen, pathname);
218 url = cgit_pageurl(ctx.qry.repo, "tree",
219 fmt("h=%s&path=%s", curr_rev, buffer));
221 cgit_tree_link(xstrdup(pathname), NULL, NULL, ctx.qry.head,
224 if (strcmp(match_path, buffer))
225 return READ_TREE_RECURSIVE;
230 return READ_TREE_RECURSIVE;
232 print_object(sha1, buffer, pathname);
236 ls_item(sha1, base, baselen, pathname, mode, stage, NULL);
242 * Show a tree or a blob
243 * rev: the commit pointing at the root tree object
244 * path: path to tree or blob
246 void cgit_print_tree(const char *rev, char *path)
248 unsigned char sha1[20];
249 struct commit *commit;
250 const char *paths[] = {path, NULL};
255 curr_rev = xstrdup(rev);
256 if (get_sha1(rev, sha1)) {
257 cgit_print_error(fmt("Invalid revision name: %s", rev));
260 commit = lookup_commit_reference(sha1);
261 if (!commit || parse_commit(commit)) {
262 cgit_print_error(fmt("Invalid commit reference: %s", rev));
266 html("path: <a href='");
267 html_attr(cgit_pageurl(ctx.qry.repo, "tree", fmt("h=%s", rev)));
271 ls_tree(commit->tree->object.sha1, NULL);
276 read_tree_recursive(commit->tree, NULL, 0, 0, paths, walk_tree, NULL);