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, start, idx;
22 const char *linefmt = "<tr><td class='no'><a id='n%1$d' name='n%1$d' href='#n%1$d'>%1$d</a></td><td class='txt'>";
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", sha1_to_hex(sha1));
43 html("<table summary='blob content' class='blob'>\n");
48 if (buf[idx] == '\n') {
50 htmlf(linefmt, ++lineno);
51 html_txt(buf + start);
58 htmlf(linefmt, ++lineno);
59 html_txt(buf + start);
66 static int ls_item(const unsigned char *sha1, const char *base, int baselen,
67 const char *pathname, unsigned int mode, int stage,
72 enum object_type type;
73 unsigned long size = 0;
75 name = xstrdup(pathname);
76 fullpath = fmt("%s%s%s", ctx.qry.path ? ctx.qry.path : "",
77 ctx.qry.path ? "/" : "", name);
79 if (!S_ISGITLINK(mode)) {
80 type = sha1_object_info(sha1, &size);
81 if (type == OBJ_BAD) {
82 htmlf("<tr><td colspan='3'>Bad object: %s %s</td></tr>",
89 html("<tr><td class='ls-mode'>");
90 cgit_print_filemode(mode);
92 if (S_ISGITLINK(mode)) {
93 htmlf("<a class='ls-mod' href='");
94 html_attr(fmt(ctx.repo->module_link,
100 } else if (S_ISDIR(mode)) {
101 cgit_tree_link(name, NULL, "ls-dir", ctx.qry.head,
104 cgit_tree_link(name, NULL, "ls-blob", ctx.qry.head,
107 htmlf("</td><td class='ls-size'>%li</td>", size);
110 cgit_log_link("log", NULL, "button", ctx.qry.head, curr_rev,
111 fullpath, 0, NULL, NULL);
112 html("</td></tr>\n");
117 static void ls_head()
119 html("<table summary='tree listing' class='list'>\n");
120 html("<tr class='nohover'>");
121 html("<th class='left'>Mode</th>");
122 html("<th class='left'>Name</th>");
123 html("<th class='right'>Size</th>");
129 static void ls_tail()
137 static void ls_tree(const unsigned char *sha1, char *path)
141 tree = parse_tree_indirect(sha1);
143 cgit_print_error(fmt("Not a tree object: %s",
149 read_tree_recursive(tree, "", 0, 1, NULL, ls_item, NULL);
154 static int walk_tree(const unsigned char *sha1, const char *base, int baselen,
155 const char *pathname, unsigned mode, int stage,
159 static char buffer[PATH_MAX];
163 memcpy(buffer, base, baselen);
164 strcpy(buffer+baselen, pathname);
165 url = cgit_pageurl(ctx.qry.repo, "tree",
166 fmt("h=%s&path=%s", curr_rev, buffer));
168 cgit_tree_link(xstrdup(pathname), NULL, NULL, ctx.qry.head,
171 if (strcmp(match_path, buffer))
172 return READ_TREE_RECURSIVE;
177 return READ_TREE_RECURSIVE;
179 print_object(sha1, buffer);
183 ls_item(sha1, base, baselen, pathname, mode, stage, NULL);
189 * Show a tree or a blob
190 * rev: the commit pointing at the root tree object
191 * path: path to tree or blob
193 void cgit_print_tree(const char *rev, char *path)
195 unsigned char sha1[20];
196 struct commit *commit;
197 const char *paths[] = {path, NULL};
202 curr_rev = xstrdup(rev);
203 if (get_sha1(rev, sha1)) {
204 cgit_print_error(fmt("Invalid revision name: %s", rev));
207 commit = lookup_commit_reference(sha1);
208 if (!commit || parse_commit(commit)) {
209 cgit_print_error(fmt("Invalid commit reference: %s", rev));
213 html("path: <a href='");
214 html_attr(cgit_pageurl(ctx.qry.repo, "tree", fmt("h=%s", rev)));
218 ls_tree(commit->tree->object.sha1, NULL);
223 read_tree_recursive(commit->tree, NULL, 0, 0, paths, walk_tree, NULL);