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,
116 enum object_type type;
117 unsigned long size = 0;
119 name = xstrdup(pathname);
120 fullpath = fmt("%s%s%s", ctx.qry.path ? ctx.qry.path : "",
121 ctx.qry.path ? "/" : "", name);
123 if (!S_ISGITLINK(mode)) {
124 type = sha1_object_info(sha1, &size);
125 if (type == OBJ_BAD) {
126 htmlf("<tr><td colspan='3'>Bad object: %s %s</td></tr>",
133 html("<tr><td class='ls-mode'>");
134 cgit_print_filemode(mode);
136 if (S_ISGITLINK(mode)) {
137 htmlf("<a class='ls-mod' href='");
138 html_attr(fmt(ctx.repo->module_link,
144 } else if (S_ISDIR(mode)) {
145 cgit_tree_link(name, NULL, "ls-dir", ctx.qry.head,
148 cgit_tree_link(name, NULL, "ls-blob", ctx.qry.head,
151 htmlf("</td><td class='ls-size'>%li</td>", size);
154 cgit_log_link("log", NULL, "button", ctx.qry.head, curr_rev,
155 fullpath, 0, NULL, NULL, ctx.qry.showmsg);
156 if (ctx.repo->max_stats)
157 cgit_stats_link("stats", NULL, "button", ctx.qry.head,
159 html("</td></tr>\n");
164 static void ls_head()
166 html("<table summary='tree listing' class='list'>\n");
167 html("<tr class='nohover'>");
168 html("<th class='left'>Mode</th>");
169 html("<th class='left'>Name</th>");
170 html("<th class='right'>Size</th>");
176 static void ls_tail()
184 static void ls_tree(const unsigned char *sha1, char *path)
188 tree = parse_tree_indirect(sha1);
190 cgit_print_error(fmt("Not a tree object: %s",
196 read_tree_recursive(tree, "", 0, 1, NULL, ls_item, NULL);
201 static int walk_tree(const unsigned char *sha1, const char *base, int baselen,
202 const char *pathname, unsigned mode, int stage,
206 static char buffer[PATH_MAX];
210 memcpy(buffer, base, baselen);
211 strcpy(buffer+baselen, pathname);
212 url = cgit_pageurl(ctx.qry.repo, "tree",
213 fmt("h=%s&path=%s", curr_rev, buffer));
215 cgit_tree_link(xstrdup(pathname), NULL, NULL, ctx.qry.head,
218 if (strcmp(match_path, buffer))
219 return READ_TREE_RECURSIVE;
224 return READ_TREE_RECURSIVE;
226 print_object(sha1, buffer, pathname);
230 ls_item(sha1, base, baselen, pathname, mode, stage, NULL);
236 * Show a tree or a blob
237 * rev: the commit pointing at the root tree object
238 * path: path to tree or blob
240 void cgit_print_tree(const char *rev, char *path)
242 unsigned char sha1[20];
243 struct commit *commit;
244 const char *paths[] = {path, NULL};
249 curr_rev = xstrdup(rev);
250 if (get_sha1(rev, sha1)) {
251 cgit_print_error(fmt("Invalid revision name: %s", rev));
254 commit = lookup_commit_reference(sha1);
255 if (!commit || parse_commit(commit)) {
256 cgit_print_error(fmt("Invalid commit reference: %s", rev));
260 html("path: <a href='");
261 html_attr(cgit_pageurl(ctx.qry.repo, "tree", fmt("h=%s", rev)));
265 ls_tree(commit->tree->object.sha1, NULL);
270 read_tree_recursive(commit->tree, NULL, 0, 0, paths, walk_tree, NULL);