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)
11 #include "ui-shared.h"
17 static void print_object(const unsigned char *sha1, char *path)
19 enum object_type type;
21 unsigned long size, lineno, idx;
22 const char *numberfmt = "<a class='no' id='n%1$d' name='n%1$d' href='#n%1$d'>%1$d</a>\n";
24 type = sha1_object_info(sha1, &size);
25 if (type == OBJ_BAD) {
26 cgit_print_error(fmt("Bad object name: %s",
31 buf = read_sha1_file(sha1, &type, &size);
33 cgit_print_error(fmt("Error reading object %s",
39 cgit_plain_link("plain", NULL, NULL, ctx.qry.head,
41 htmlf(")<br/>blob: %s\n", sha1_to_hex(sha1));
43 html("<table summary='blob content' class='blob'>\n");
46 html("<td class='linenumbers'><pre>");
49 htmlf(numberfmt, ++lineno);
50 while(idx < size - 1) { // skip absolute last newline
51 if (buf[idx] == '\n') {
52 htmlf(numberfmt, ++lineno);
56 html("</pre></td>\n");
58 html("<td class='lines'><pre><code>");
60 html("</code></pre></td>\n");
67 static int ls_item(const unsigned char *sha1, const char *base, int baselen,
68 const char *pathname, unsigned int mode, int stage,
73 enum object_type type;
74 unsigned long size = 0;
76 name = xstrdup(pathname);
77 fullpath = fmt("%s%s%s", ctx.qry.path ? ctx.qry.path : "",
78 ctx.qry.path ? "/" : "", name);
80 if (!S_ISGITLINK(mode)) {
81 type = sha1_object_info(sha1, &size);
82 if (type == OBJ_BAD) {
83 htmlf("<tr><td colspan='3'>Bad object: %s %s</td></tr>",
90 html("<tr><td class='ls-mode'>");
91 cgit_print_filemode(mode);
93 if (S_ISGITLINK(mode)) {
94 htmlf("<a class='ls-mod' href='");
95 html_attr(fmt(ctx.repo->module_link,
101 } else if (S_ISDIR(mode)) {
102 cgit_tree_link(name, NULL, "ls-dir", ctx.qry.head,
105 cgit_tree_link(name, NULL, "ls-blob", ctx.qry.head,
108 htmlf("</td><td class='ls-size'>%li</td>", size);
111 cgit_log_link("log", NULL, "button", ctx.qry.head, curr_rev,
112 fullpath, 0, NULL, NULL, ctx.qry.showmsg);
113 html("</td></tr>\n");
118 static void ls_head()
120 html("<table summary='tree listing' class='list'>\n");
121 html("<tr class='nohover'>");
122 html("<th class='left'>Mode</th>");
123 html("<th class='left'>Name</th>");
124 html("<th class='right'>Size</th>");
130 static void ls_tail()
138 static void ls_tree(const unsigned char *sha1, char *path)
142 tree = parse_tree_indirect(sha1);
144 cgit_print_error(fmt("Not a tree object: %s",
150 read_tree_recursive(tree, "", 0, 1, NULL, ls_item, NULL);
155 static int walk_tree(const unsigned char *sha1, const char *base, int baselen,
156 const char *pathname, unsigned mode, int stage,
160 static char buffer[PATH_MAX];
164 memcpy(buffer, base, baselen);
165 strcpy(buffer+baselen, pathname);
166 url = cgit_pageurl(ctx.qry.repo, "tree",
167 fmt("h=%s&path=%s", curr_rev, buffer));
169 cgit_tree_link(xstrdup(pathname), NULL, NULL, ctx.qry.head,
172 if (strcmp(match_path, buffer))
173 return READ_TREE_RECURSIVE;
178 return READ_TREE_RECURSIVE;
180 print_object(sha1, buffer);
184 ls_item(sha1, base, baselen, pathname, mode, stage, NULL);
190 * Show a tree or a blob
191 * rev: the commit pointing at the root tree object
192 * path: path to tree or blob
194 void cgit_print_tree(const char *rev, char *path)
196 unsigned char sha1[20];
197 struct commit *commit;
198 const char *paths[] = {path, NULL};
203 curr_rev = xstrdup(rev);
204 if (get_sha1(rev, sha1)) {
205 cgit_print_error(fmt("Invalid revision name: %s", rev));
208 commit = lookup_commit_reference(sha1);
209 if (!commit || parse_commit(commit)) {
210 cgit_print_error(fmt("Invalid commit reference: %s", rev));
214 html("path: <a href='");
215 html_attr(cgit_pageurl(ctx.qry.repo, "tree", fmt("h=%s", rev)));
219 ls_tree(commit->tree->object.sha1, NULL);
224 read_tree_recursive(commit->tree, NULL, 0, 0, paths, walk_tree, NULL);