blob: ef44d6145a82635ad8bc7112232d94014ca78c1a [file] [log] [blame]
Lars Hjemli06fe0c22006-12-13 00:13:27 +01001/* ui-tree.c: functions for tree output
2 *
3 * Copyright (C) 2006 Lars Hjemli
4 *
5 * Licensed under GNU General Public License v2
6 * (see COPYING for full license text)
7 */
8
9#include "cgit.h"
10
Lars Hjemli9fb53af2007-05-14 11:10:59 +020011char *curr_rev;
Lars Hjemliffc69732007-06-16 20:20:42 +020012char *match_path;
13int header = 0;
Lars Hjemli06fe0c22006-12-13 00:13:27 +010014
Lars Hjemliffc69732007-06-16 20:20:42 +020015static void print_object(const unsigned char *sha1, char *path)
16{
17 enum object_type type;
18 unsigned char *buf;
19 unsigned long size, lineno, start, idx;
20
21 type = sha1_object_info(sha1, &size);
22 if (type == OBJ_BAD) {
23 cgit_print_error(fmt("Bad object name: %s",
24 sha1_to_hex(sha1)));
25 return;
26 }
27
28 buf = read_sha1_file(sha1, &type, &size);
29 if (!buf) {
30 cgit_print_error(fmt("Error reading object %s",
31 sha1_to_hex(sha1)));
32 return;
33 }
34
Michael Krelind6b01da2007-07-21 19:51:47 +020035 html(" blob: <a href='");
36 html_attr(cgit_pageurl(cgit_query_repo, "blob", fmt("id=%s", sha1_to_hex(sha1))));
37 htmlf("'>%s</a>",sha1_to_hex(sha1));
38
Lars Hjemliffc69732007-06-16 20:20:42 +020039 html("<table class='blob'>\n");
40 idx = 0;
41 start = 0;
42 lineno = 0;
43 while(idx < size) {
44 if (buf[idx] == '\n') {
45 buf[idx] = '\0';
Lars Hjemli63d5f5e2007-09-19 23:46:59 +020046 htmlf("<tr><td class='no'><a name='%1$d'>%1$d</a></td><td class='txt'>",
Lars Hjemliffc69732007-06-16 20:20:42 +020047 ++lineno);
48 html_txt(buf + start);
49 html("</td></tr>\n");
50 start = idx + 1;
51 }
52 idx++;
53 }
Lars Hjemliffc69732007-06-16 20:20:42 +020054 html("</table>\n");
55}
56
57
58static int ls_item(const unsigned char *sha1, const char *base, int baselen,
59 const char *pathname, unsigned int mode, int stage)
Lars Hjemli06fe0c22006-12-13 00:13:27 +010060{
61 char *name;
Lars Hjemli44947bf2007-06-17 01:23:08 +020062 char *fullpath;
Lars Hjemli61c3ca92007-05-08 22:40:59 +020063 enum object_type type;
Lars Hjemlided93932007-05-11 12:12:48 +020064 unsigned long size = 0;
Lars Hjemli06fe0c22006-12-13 00:13:27 +010065
Lars Hjemli61c3ca92007-05-08 22:40:59 +020066 name = xstrdup(pathname);
Lars Hjemli44947bf2007-06-17 01:23:08 +020067 fullpath = fmt("%s%s%s", cgit_query_path ? cgit_query_path : "",
68 cgit_query_path ? "/" : "", name);
69
Lars Hjemli61c3ca92007-05-08 22:40:59 +020070 type = sha1_object_info(sha1, &size);
Jeffrey C. Olliee651cb02007-06-04 12:28:56 -050071 if (type == OBJ_BAD && !S_ISGITLINK(mode)) {
Lars Hjemli61c3ca92007-05-08 22:40:59 +020072 htmlf("<tr><td colspan='3'>Bad object: %s %s</td></tr>",
73 name,
74 sha1_to_hex(sha1));
Lars Hjemli06fe0c22006-12-13 00:13:27 +010075 return 0;
76 }
Lars Hjemli44947bf2007-06-17 01:23:08 +020077
Lars Hjemli426032f2007-06-17 13:17:00 +020078 html("<tr><td class='ls-mode'>");
Lars Hjemlia5304282006-12-17 23:55:53 +010079 html_filemode(mode);
Lars Hjemli426032f2007-06-17 13:17:00 +020080 html("</td><td>");
Jeffrey C. Olliee651cb02007-06-04 12:28:56 -050081 if (S_ISGITLINK(mode)) {
Lars Hjemli426032f2007-06-17 13:17:00 +020082 htmlf("<a class='ls-mod' href='");
Lars Hjemlided93932007-05-11 12:12:48 +020083 html_attr(fmt(cgit_repo->module_link,
84 name,
85 sha1_to_hex(sha1)));
Lars Hjemli44947bf2007-06-17 01:23:08 +020086 html("'>");
87 html_txt(name);
88 html("</a>");
Lars Hjemli61c3ca92007-05-08 22:40:59 +020089 } else if (S_ISDIR(mode)) {
Lars Hjemli426032f2007-06-17 13:17:00 +020090 cgit_tree_link(name, NULL, "ls-dir", cgit_query_head,
Lars Hjemli44947bf2007-06-17 01:23:08 +020091 curr_rev, fullpath);
Lars Hjemli06fe0c22006-12-13 00:13:27 +010092 } else {
Lars Hjemli426032f2007-06-17 13:17:00 +020093 cgit_tree_link(name, NULL, "ls-blob", cgit_query_head,
Lars Hjemli44947bf2007-06-17 01:23:08 +020094 curr_rev, fullpath);
Lars Hjemli06fe0c22006-12-13 00:13:27 +010095 }
Lars Hjemli426032f2007-06-17 13:17:00 +020096 htmlf("</td><td class='ls-size'>%li</td>", size);
Lars Hjemli9fb53af2007-05-14 11:10:59 +020097
Lars Hjemli48c487d2007-06-17 13:57:51 +020098 html("<td>");
Lars Hjemlia215bf42007-06-18 22:12:09 +020099 cgit_log_link("log", NULL, "button", cgit_query_head, curr_rev,
Lars Hjemli103940f2007-06-29 20:27:41 +0200100 fullpath, 0);
Lars Hjemli48c487d2007-06-17 13:57:51 +0200101 html("</td></tr>\n");
Lars Hjemli06fe0c22006-12-13 00:13:27 +0100102 free(name);
103 return 0;
104}
105
Lars Hjemliffc69732007-06-16 20:20:42 +0200106static void ls_head()
Lars Hjemli06fe0c22006-12-13 00:13:27 +0100107{
Lars Hjemli06fe0c22006-12-13 00:13:27 +0100108 html("<table class='list'>\n");
Lars Hjemli777faf72007-01-28 00:39:26 +0100109 html("<tr class='nohover'>");
Lars Hjemlia5304282006-12-17 23:55:53 +0100110 html("<th class='left'>Mode</th>");
111 html("<th class='left'>Name</th>");
Lars Hjemli9a8f8862006-12-16 00:19:56 +0100112 html("<th class='right'>Size</th>");
Lars Hjemli9fb53af2007-05-14 11:10:59 +0200113 html("<th/>");
Lars Hjemlia5304282006-12-17 23:55:53 +0100114 html("</tr>\n");
Lars Hjemliffc69732007-06-16 20:20:42 +0200115 header = 1;
116}
117
118static void ls_tail()
119{
120 if (!header)
121 return;
Lars Hjemli06fe0c22006-12-13 00:13:27 +0100122 html("</table>\n");
Lars Hjemliffc69732007-06-16 20:20:42 +0200123 header = 0;
124}
125
126static void ls_tree(const unsigned char *sha1, char *path)
127{
128 struct tree *tree;
129
130 tree = parse_tree_indirect(sha1);
131 if (!tree) {
132 cgit_print_error(fmt("Not a tree object: %s",
133 sha1_to_hex(sha1)));
134 return;
135 }
136
137 ls_head();
138 read_tree_recursive(tree, "", 0, 1, NULL, ls_item);
139 ls_tail();
140}
141
142
143static int walk_tree(const unsigned char *sha1, const char *base, int baselen,
144 const char *pathname, unsigned mode, int stage)
145{
146 static int state;
147 static char buffer[PATH_MAX];
148 char *url;
149
150 if (state == 0) {
151 memcpy(buffer, base, baselen);
152 strcpy(buffer+baselen, pathname);
153 url = cgit_pageurl(cgit_query_repo, "tree",
154 fmt("h=%s&amp;path=%s", curr_rev, buffer));
Lars Hjemli44947bf2007-06-17 01:23:08 +0200155 html("/");
156 cgit_tree_link(xstrdup(pathname), NULL, NULL, cgit_query_head,
157 curr_rev, buffer);
Lars Hjemliffc69732007-06-16 20:20:42 +0200158
159 if (strcmp(match_path, buffer))
160 return READ_TREE_RECURSIVE;
161
162 if (S_ISDIR(mode)) {
163 state = 1;
164 ls_head();
165 return READ_TREE_RECURSIVE;
166 } else {
167 print_object(sha1, buffer);
168 return 0;
169 }
170 }
171 ls_item(sha1, base, baselen, pathname, mode, stage);
172 return 0;
173}
174
175
176/*
177 * Show a tree or a blob
178 * rev: the commit pointing at the root tree object
179 * path: path to tree or blob
180 */
181void cgit_print_tree(const char *rev, char *path)
182{
183 unsigned char sha1[20];
184 struct commit *commit;
185 const char *paths[] = {path, NULL};
186
187 if (!rev)
188 rev = cgit_query_head;
189
190 curr_rev = xstrdup(rev);
191 if (get_sha1(rev, sha1)) {
192 cgit_print_error(fmt("Invalid revision name: %s", rev));
193 return;
194 }
195 commit = lookup_commit_reference(sha1);
196 if (!commit || parse_commit(commit)) {
197 cgit_print_error(fmt("Invalid commit reference: %s", rev));
198 return;
199 }
200
201 html("path: <a href='");
202 html_attr(cgit_pageurl(cgit_query_repo, "tree", fmt("h=%s", rev)));
203 html("'>root</a>");
204
205 if (path == NULL) {
206 ls_tree(commit->tree->object.sha1, NULL);
207 return;
208 }
209
210 match_path = path;
211 read_tree_recursive(commit->tree, NULL, 0, 0, paths, walk_tree);
212 ls_tail();
Lars Hjemli06fe0c22006-12-13 00:13:27 +0100213}