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 html("<td class='lines'><pre><code>");
49 ctx
.repo
->source_filter
->argv
[1] = xstrdup(name
);
50 cgit_open_filter(ctx
.repo
->source_filter
);
52 cgit_close_filter(ctx
.repo
->source_filter
);
53 free(ctx
.repo
->source_filter
->argv
[1]);
54 ctx
.repo
->source_filter
->argv
[1] = NULL
;
55 html("</code></pre></td></tr></table>\n");
59 html("<td class='lines'><pre><code>");
61 html("</code></pre></td></tr></table>\n");
66 static void print_binary_buffer(char *buf
, unsigned long size
)
68 unsigned long ofs
, idx
;
69 static char ascii
[ROWLEN
+ 1];
71 html("<table summary='blob content' class='bin-blob'>\n");
72 html("<tr><th>ofs</th><th>hex dump</th><th>ascii</th></tr>");
73 for (ofs
= 0; ofs
< size
; ofs
+= ROWLEN
, buf
+= ROWLEN
) {
74 htmlf("<tr><td class='right'>%04lx</td><td class='hex'>", ofs
);
75 for (idx
= 0; idx
< ROWLEN
&& ofs
+ idx
< size
; idx
++)
77 idx
== 16 ? 4 : 1, "",
79 html(" </td><td class='hex'>");
80 for (idx
= 0; idx
< ROWLEN
&& ofs
+ idx
< size
; idx
++)
81 ascii
[idx
] = isgraph(buf
[idx
]) ? buf
[idx
] : '.';
89 static void print_object(const unsigned char *sha1
, char *path
, const char *basename
, const char *rev
)
91 enum object_type type
;
95 type
= sha1_object_info(sha1
, &size
);
96 if (type
== OBJ_BAD
) {
97 cgit_print_error("Bad object name: %s", sha1_to_hex(sha1
));
101 buf
= read_sha1_file(sha1
, &type
, &size
);
103 cgit_print_error("Error reading object %s", sha1_to_hex(sha1
));
107 htmlf("blob: %s (", sha1_to_hex(sha1
));
108 cgit_plain_link("plain", NULL
, NULL
, ctx
.qry
.head
,
112 if (ctx
.cfg
.max_blob_size
&& size
/ 1024 > ctx
.cfg
.max_blob_size
) {
113 htmlf("<div class='error'>blob size (%ldKB) exceeds display size limit (%dKB).</div>",
114 size
/ 1024, ctx
.cfg
.max_blob_size
);
118 if (buffer_is_binary(buf
, size
))
119 print_binary_buffer(buf
, size
);
121 print_text_buffer(basename
, buf
, size
);
125 static int ls_item(const unsigned char *sha1
, const char *base
, int baselen
,
126 const char *pathname
, unsigned int mode
, int stage
,
129 struct walk_tree_context
*walk_tree_ctx
= cbdata
;
131 struct strbuf fullpath
= STRBUF_INIT
;
132 struct strbuf
class = STRBUF_INIT
;
133 enum object_type type
;
134 unsigned long size
= 0;
136 name
= xstrdup(pathname
);
137 strbuf_addf(&fullpath
, "%s%s%s", ctx
.qry
.path
? ctx
.qry
.path
: "",
138 ctx
.qry
.path
? "/" : "", name
);
140 if (!S_ISGITLINK(mode
)) {
141 type
= sha1_object_info(sha1
, &size
);
142 if (type
== OBJ_BAD
) {
143 htmlf("<tr><td colspan='3'>Bad object: %s %s</td></tr>",
150 html("<tr><td class='ls-mode'>");
151 cgit_print_filemode(mode
);
153 if (S_ISGITLINK(mode
)) {
154 cgit_submodule_link("ls-mod", fullpath
.buf
, sha1_to_hex(sha1
));
155 } else if (S_ISDIR(mode
)) {
156 cgit_tree_link(name
, NULL
, "ls-dir", ctx
.qry
.head
,
157 walk_tree_ctx
->curr_rev
, fullpath
.buf
);
159 char *ext
= strrchr(name
, '.');
160 strbuf_addstr(&class, "ls-blob");
162 strbuf_addf(&class, " %s", ext
+ 1);
163 cgit_tree_link(name
, NULL
, class.buf
, ctx
.qry
.head
,
164 walk_tree_ctx
->curr_rev
, fullpath
.buf
);
166 htmlf("</td><td class='ls-size'>%li</td>", size
);
169 cgit_log_link("log", NULL
, "button", ctx
.qry
.head
,
170 walk_tree_ctx
->curr_rev
, fullpath
.buf
, 0, NULL
, NULL
,
172 if (ctx
.repo
->max_stats
)
173 cgit_stats_link("stats", NULL
, "button", ctx
.qry
.head
,
175 if (!S_ISGITLINK(mode
))
176 cgit_plain_link("plain", NULL
, "button", ctx
.qry
.head
,
177 walk_tree_ctx
->curr_rev
, fullpath
.buf
);
178 html("</td></tr>\n");
180 strbuf_release(&fullpath
);
181 strbuf_release(&class);
185 static void ls_head()
187 html("<table summary='tree listing' class='list'>\n");
188 html("<tr class='nohover'>");
189 html("<th class='left'>Mode</th>");
190 html("<th class='left'>Name</th>");
191 html("<th class='right'>Size</th>");
196 static void ls_tail()
201 static void ls_tree(const unsigned char *sha1
, char *path
, struct walk_tree_context
*walk_tree_ctx
)
204 struct pathspec paths
= {
208 tree
= parse_tree_indirect(sha1
);
210 cgit_print_error("Not a tree object: %s", sha1_to_hex(sha1
));
215 read_tree_recursive(tree
, "", 0, 1, &paths
, ls_item
, walk_tree_ctx
);
220 static int walk_tree(const unsigned char *sha1
, const char *base
, int baselen
,
221 const char *pathname
, unsigned mode
, int stage
,
224 struct walk_tree_context
*walk_tree_ctx
= cbdata
;
225 static char buffer
[PATH_MAX
];
227 if (walk_tree_ctx
->state
== 0) {
228 memcpy(buffer
, base
, baselen
);
229 strcpy(buffer
+ baselen
, pathname
);
230 if (strcmp(walk_tree_ctx
->match_path
, buffer
))
231 return READ_TREE_RECURSIVE
;
234 walk_tree_ctx
->state
= 1;
236 return READ_TREE_RECURSIVE
;
238 print_object(sha1
, buffer
, pathname
, walk_tree_ctx
->curr_rev
);
242 ls_item(sha1
, base
, baselen
, pathname
, mode
, stage
, walk_tree_ctx
);
248 * Show a tree or a blob
249 * rev: the commit pointing at the root tree object
250 * path: path to tree or blob
252 void cgit_print_tree(const char *rev
, char *path
)
254 unsigned char sha1
[20];
255 struct commit
*commit
;
256 struct pathspec_item path_items
= {
258 .len
= path
? strlen(path
) : 0
260 struct pathspec paths
= {
264 struct walk_tree_context walk_tree_ctx
= {
272 if (get_sha1(rev
, sha1
)) {
273 cgit_print_error("Invalid revision name: %s", rev
);
276 commit
= lookup_commit_reference(sha1
);
277 if (!commit
|| parse_commit(commit
)) {
278 cgit_print_error("Invalid commit reference: %s", rev
);
282 walk_tree_ctx
.curr_rev
= xstrdup(rev
);
285 ls_tree(commit
->tree
->object
.sha1
, NULL
, &walk_tree_ctx
);
289 read_tree_recursive(commit
->tree
, "", 0, 0, &paths
, walk_tree
, &walk_tree_ctx
);
290 if (walk_tree_ctx
.state
== 1)
294 free(walk_tree_ctx
.curr_rev
);