1 /* ui-tree.c: functions for tree output
3 * Copyright (C) 2006-2014 cgit Development Team <cgit@lists.zx2c4.com>
5 * Licensed under GNU General Public License v2
6 * (see COPYING for full license text)
13 #include "ui-shared.h"
15 struct walk_tree_context {
21 static void print_text_buffer(const char *name, char *buf, unsigned long size)
23 unsigned long lineno, idx;
24 const char *numberfmt = "<a id='n%1$d' href='#n%1$d'>%1$d</a>\n";
26 html("<table summary='blob content' class='blob'>\n");
28 if (ctx.cfg.enable_tree_linenumbers) {
29 html("<tr><td class='linenumbers'><pre>");
34 htmlf(numberfmt, ++lineno);
35 while (idx < size - 1) { // skip absolute last newline
37 htmlf(numberfmt, ++lineno);
41 html("</pre></td>\n");
47 if (ctx.repo->source_filter) {
48 char *filter_arg = xstrdup(name);
49 html("<td class='lines'><pre><code>");
50 cgit_open_filter(ctx.repo->source_filter, filter_arg);
52 cgit_close_filter(ctx.repo->source_filter);
54 html("</code></pre></td></tr></table>\n");
58 html("<td class='lines'><pre><code>");
60 html("</code></pre></td></tr></table>\n");
65 static void print_binary_buffer(char *buf, unsigned long size)
67 unsigned long ofs, idx;
68 static char ascii[ROWLEN + 1];
70 html("<table summary='blob content' class='bin-blob'>\n");
71 html("<tr><th>ofs</th><th>hex dump</th><th>ascii</th></tr>");
72 for (ofs = 0; ofs < size; ofs += ROWLEN, buf += ROWLEN) {
73 htmlf("<tr><td class='right'>%04lx</td><td class='hex'>", ofs);
74 for (idx = 0; idx < ROWLEN && ofs + idx < size; idx++)
76 idx == 16 ? 4 : 1, "",
78 html(" </td><td class='hex'>");
79 for (idx = 0; idx < ROWLEN && ofs + idx < size; idx++)
80 ascii[idx] = isgraph(buf[idx]) ? buf[idx] : '.';
88 static void print_object(const unsigned char *sha1, char *path, const char *basename, const char *rev)
90 enum object_type type;
94 type = sha1_object_info(sha1, &size);
95 if (type == OBJ_BAD) {
96 cgit_print_error("Bad object name: %s", sha1_to_hex(sha1));
100 buf = read_sha1_file(sha1, &type, &size);
102 cgit_print_error("Error reading object %s", sha1_to_hex(sha1));
106 htmlf("blob: %s (", sha1_to_hex(sha1));
107 cgit_plain_link("plain", NULL, NULL, ctx.qry.head,
111 if (ctx.cfg.max_blob_size && size / 1024 > ctx.cfg.max_blob_size) {
112 htmlf("<div class='error'>blob size (%ldKB) exceeds display size limit (%dKB).</div>",
113 size / 1024, ctx.cfg.max_blob_size);
117 if (buffer_is_binary(buf, size))
118 print_binary_buffer(buf, size);
120 print_text_buffer(basename, buf, size);
124 static int ls_item(const unsigned char *sha1, struct strbuf *base,
125 const char *pathname, unsigned mode, int stage, void *cbdata)
127 struct walk_tree_context *walk_tree_ctx = cbdata;
129 struct strbuf fullpath = STRBUF_INIT;
130 struct strbuf class = STRBUF_INIT;
131 enum object_type type;
132 unsigned long size = 0;
134 name = xstrdup(pathname);
135 strbuf_addf(&fullpath, "%s%s%s", ctx.qry.path ? ctx.qry.path : "",
136 ctx.qry.path ? "/" : "", name);
138 if (!S_ISGITLINK(mode)) {
139 type = sha1_object_info(sha1, &size);
140 if (type == OBJ_BAD) {
141 htmlf("<tr><td colspan='3'>Bad object: %s %s</td></tr>",
148 html("<tr><td class='ls-mode'>");
149 cgit_print_filemode(mode);
151 if (S_ISGITLINK(mode)) {
152 cgit_submodule_link("ls-mod", fullpath.buf, sha1_to_hex(sha1));
153 } else if (S_ISDIR(mode)) {
154 cgit_tree_link(name, NULL, "ls-dir", ctx.qry.head,
155 walk_tree_ctx->curr_rev, fullpath.buf);
157 char *ext = strrchr(name, '.');
158 strbuf_addstr(&class, "ls-blob");
160 strbuf_addf(&class, " %s", ext + 1);
161 cgit_tree_link(name, NULL, class.buf, ctx.qry.head,
162 walk_tree_ctx->curr_rev, fullpath.buf);
164 htmlf("</td><td class='ls-size'>%li</td>", size);
167 cgit_log_link("log", NULL, "button", ctx.qry.head,
168 walk_tree_ctx->curr_rev, fullpath.buf, 0, NULL, NULL,
170 if (ctx.repo->max_stats)
171 cgit_stats_link("stats", NULL, "button", ctx.qry.head,
173 if (!S_ISGITLINK(mode))
174 cgit_plain_link("plain", NULL, "button", ctx.qry.head,
175 walk_tree_ctx->curr_rev, fullpath.buf);
176 html("</td></tr>\n");
178 strbuf_release(&fullpath);
179 strbuf_release(&class);
183 static void ls_head()
185 html("<table summary='tree listing' class='list'>\n");
186 html("<tr class='nohover'>");
187 html("<th class='left'>Mode</th>");
188 html("<th class='left'>Name</th>");
189 html("<th class='right'>Size</th>");
194 static void ls_tail()
199 static void ls_tree(const unsigned char *sha1, char *path, struct walk_tree_context *walk_tree_ctx)
202 struct pathspec paths = {
206 tree = parse_tree_indirect(sha1);
208 cgit_print_error("Not a tree object: %s", sha1_to_hex(sha1));
213 read_tree_recursive(tree, "", 0, 1, &paths, ls_item, walk_tree_ctx);
218 static int walk_tree(const unsigned char *sha1, struct strbuf *base,
219 const char *pathname, unsigned mode, int stage, void *cbdata)
221 struct walk_tree_context *walk_tree_ctx = cbdata;
222 static char buffer[PATH_MAX];
224 if (walk_tree_ctx->state == 0) {
225 memcpy(buffer, base->buf, base->len);
226 strcpy(buffer + base->len, pathname);
227 if (strcmp(walk_tree_ctx->match_path, buffer))
228 return READ_TREE_RECURSIVE;
231 walk_tree_ctx->state = 1;
233 return READ_TREE_RECURSIVE;
235 print_object(sha1, buffer, pathname, walk_tree_ctx->curr_rev);
239 ls_item(sha1, base, pathname, mode, stage, walk_tree_ctx);
244 * Show a tree or a blob
245 * rev: the commit pointing at the root tree object
246 * path: path to tree or blob
248 void cgit_print_tree(const char *rev, char *path)
250 unsigned char sha1[20];
251 struct commit *commit;
252 struct pathspec_item path_items = {
254 .len = path ? strlen(path) : 0
256 struct pathspec paths = {
260 struct walk_tree_context walk_tree_ctx = {
268 if (get_sha1(rev, sha1)) {
269 cgit_print_error("Invalid revision name: %s", rev);
272 commit = lookup_commit_reference(sha1);
273 if (!commit || parse_commit(commit)) {
274 cgit_print_error("Invalid commit reference: %s", rev);
278 walk_tree_ctx.curr_rev = xstrdup(rev);
281 ls_tree(commit->tree->object.sha1, NULL, &walk_tree_ctx);
285 read_tree_recursive(commit->tree, "", 0, 0, &paths, walk_tree, &walk_tree_ctx);
286 if (walk_tree_ctx.state == 1)
290 free(walk_tree_ctx.curr_rev);