blob: 2f052c71e13077ca2caed29a419401b39062ed6b [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"
Lars Hjemlib1f9b9c2008-02-23 22:45:33 +010010#include "html.h"
Lars Hjemlia4d1ca12008-03-24 16:50:57 +010011#include "ui-shared.h"
Lars Hjemli06fe0c22006-12-13 00:13:27 +010012
Lars Hjemli9fb53af2007-05-14 11:10:59 +020013char *curr_rev;
Lars Hjemliffc69732007-06-16 20:20:42 +020014char *match_path;
15int header = 0;
Lars Hjemli06fe0c22006-12-13 00:13:27 +010016
Lars Hjemliffc69732007-06-16 20:20:42 +020017static void print_object(const unsigned char *sha1, char *path)
18{
19 enum object_type type;
Lars Hjemli0835ffe2007-09-20 00:21:47 +020020 char *buf;
Lars Hjemliffc69732007-06-16 20:20:42 +020021 unsigned long size, lineno, start, idx;
Lars Hjemli29154832007-11-11 13:04:28 +010022 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'>";
Lars Hjemliffc69732007-06-16 20:20:42 +020023
24 type = sha1_object_info(sha1, &size);
25 if (type == OBJ_BAD) {
26 cgit_print_error(fmt("Bad object name: %s",
27 sha1_to_hex(sha1)));
28 return;
29 }
30
31 buf = read_sha1_file(sha1, &type, &size);
32 if (!buf) {
33 cgit_print_error(fmt("Error reading object %s",
34 sha1_to_hex(sha1)));
35 return;
36 }
37
Michael Krelind6b01da2007-07-21 19:51:47 +020038 html(" blob: <a href='");
Lars Hjemlifa4dfee2008-03-25 02:43:51 +010039 html_attr(cgit_pageurl(ctx.qry.repo, "blob",
40 fmt("id=%s&path=%s", sha1_to_hex(sha1), path)));
Michael Krelind6b01da2007-07-21 19:51:47 +020041 htmlf("'>%s</a>",sha1_to_hex(sha1));
42
Lars Hjemli29154832007-11-11 13:04:28 +010043 html("<table summary='blob content' class='blob'>\n");
Lars Hjemliffc69732007-06-16 20:20:42 +020044 idx = 0;
45 start = 0;
46 lineno = 0;
47 while(idx < size) {
48 if (buf[idx] == '\n') {
49 buf[idx] = '\0';
Lars Hjemliff7a3942007-09-20 00:00:06 +020050 htmlf(linefmt, ++lineno);
Lars Hjemliffc69732007-06-16 20:20:42 +020051 html_txt(buf + start);
52 html("</td></tr>\n");
53 start = idx + 1;
54 }
55 idx++;
56 }
Lars Hjemliff7a3942007-09-20 00:00:06 +020057 htmlf(linefmt, ++lineno);
58 html_txt(buf + start);
59 html("</td></tr>\n");
Lars Hjemliffc69732007-06-16 20:20:42 +020060 html("</table>\n");
61}
62
63
64static int ls_item(const unsigned char *sha1, const char *base, int baselen,
65 const char *pathname, unsigned int mode, int stage)
Lars Hjemli06fe0c22006-12-13 00:13:27 +010066{
67 char *name;
Lars Hjemli44947bf2007-06-17 01:23:08 +020068 char *fullpath;
Lars Hjemli61c3ca92007-05-08 22:40:59 +020069 enum object_type type;
Lars Hjemlided93932007-05-11 12:12:48 +020070 unsigned long size = 0;
Lars Hjemli06fe0c22006-12-13 00:13:27 +010071
Lars Hjemli61c3ca92007-05-08 22:40:59 +020072 name = xstrdup(pathname);
Lars Hjemlid14d77f2008-02-16 11:53:40 +010073 fullpath = fmt("%s%s%s", ctx.qry.path ? ctx.qry.path : "",
74 ctx.qry.path ? "/" : "", name);
Lars Hjemli44947bf2007-06-17 01:23:08 +020075
Lars Hjemli61c3ca92007-05-08 22:40:59 +020076 type = sha1_object_info(sha1, &size);
Jeffrey C. Olliee651cb02007-06-04 12:28:56 -050077 if (type == OBJ_BAD && !S_ISGITLINK(mode)) {
Lars Hjemli61c3ca92007-05-08 22:40:59 +020078 htmlf("<tr><td colspan='3'>Bad object: %s %s</td></tr>",
79 name,
80 sha1_to_hex(sha1));
Lars Hjemli06fe0c22006-12-13 00:13:27 +010081 return 0;
82 }
Lars Hjemli44947bf2007-06-17 01:23:08 +020083
Lars Hjemli426032f2007-06-17 13:17:00 +020084 html("<tr><td class='ls-mode'>");
Lars Hjemlib1f9b9c2008-02-23 22:45:33 +010085 cgit_print_filemode(mode);
Lars Hjemli426032f2007-06-17 13:17:00 +020086 html("</td><td>");
Jeffrey C. Olliee651cb02007-06-04 12:28:56 -050087 if (S_ISGITLINK(mode)) {
Lars Hjemli426032f2007-06-17 13:17:00 +020088 htmlf("<a class='ls-mod' href='");
Lars Hjemlid1f3bbe2008-02-16 13:56:09 +010089 html_attr(fmt(ctx.repo->module_link,
Lars Hjemlided93932007-05-11 12:12:48 +020090 name,
91 sha1_to_hex(sha1)));
Lars Hjemli44947bf2007-06-17 01:23:08 +020092 html("'>");
93 html_txt(name);
94 html("</a>");
Lars Hjemli61c3ca92007-05-08 22:40:59 +020095 } else if (S_ISDIR(mode)) {
Lars Hjemlid14d77f2008-02-16 11:53:40 +010096 cgit_tree_link(name, NULL, "ls-dir", ctx.qry.head,
Lars Hjemli44947bf2007-06-17 01:23:08 +020097 curr_rev, fullpath);
Lars Hjemli06fe0c22006-12-13 00:13:27 +010098 } else {
Lars Hjemlid14d77f2008-02-16 11:53:40 +010099 cgit_tree_link(name, NULL, "ls-blob", ctx.qry.head,
Lars Hjemli44947bf2007-06-17 01:23:08 +0200100 curr_rev, fullpath);
Lars Hjemli06fe0c22006-12-13 00:13:27 +0100101 }
Lars Hjemli426032f2007-06-17 13:17:00 +0200102 htmlf("</td><td class='ls-size'>%li</td>", size);
Lars Hjemli9fb53af2007-05-14 11:10:59 +0200103
Lars Hjemli48c487d2007-06-17 13:57:51 +0200104 html("<td>");
Lars Hjemlid14d77f2008-02-16 11:53:40 +0100105 cgit_log_link("log", NULL, "button", ctx.qry.head, curr_rev,
Lars Hjemli51140312007-11-03 10:42:37 +0100106 fullpath, 0, NULL, NULL);
Lars Hjemli48c487d2007-06-17 13:57:51 +0200107 html("</td></tr>\n");
Lars Hjemli06fe0c22006-12-13 00:13:27 +0100108 free(name);
109 return 0;
110}
111
Lars Hjemliffc69732007-06-16 20:20:42 +0200112static void ls_head()
Lars Hjemli06fe0c22006-12-13 00:13:27 +0100113{
Lars Hjemli29154832007-11-11 13:04:28 +0100114 html("<table summary='tree listing' class='list'>\n");
Lars Hjemli777faf72007-01-28 00:39:26 +0100115 html("<tr class='nohover'>");
Lars Hjemlia5304282006-12-17 23:55:53 +0100116 html("<th class='left'>Mode</th>");
117 html("<th class='left'>Name</th>");
Lars Hjemli9a8f8862006-12-16 00:19:56 +0100118 html("<th class='right'>Size</th>");
Lars Hjemli9fb53af2007-05-14 11:10:59 +0200119 html("<th/>");
Lars Hjemlia5304282006-12-17 23:55:53 +0100120 html("</tr>\n");
Lars Hjemliffc69732007-06-16 20:20:42 +0200121 header = 1;
122}
123
124static void ls_tail()
125{
126 if (!header)
127 return;
Lars Hjemli06fe0c22006-12-13 00:13:27 +0100128 html("</table>\n");
Lars Hjemliffc69732007-06-16 20:20:42 +0200129 header = 0;
130}
131
132static void ls_tree(const unsigned char *sha1, char *path)
133{
134 struct tree *tree;
135
136 tree = parse_tree_indirect(sha1);
137 if (!tree) {
138 cgit_print_error(fmt("Not a tree object: %s",
139 sha1_to_hex(sha1)));
140 return;
141 }
142
143 ls_head();
144 read_tree_recursive(tree, "", 0, 1, NULL, ls_item);
145 ls_tail();
146}
147
148
149static int walk_tree(const unsigned char *sha1, const char *base, int baselen,
150 const char *pathname, unsigned mode, int stage)
151{
152 static int state;
153 static char buffer[PATH_MAX];
154 char *url;
155
156 if (state == 0) {
157 memcpy(buffer, base, baselen);
158 strcpy(buffer+baselen, pathname);
Lars Hjemlid14d77f2008-02-16 11:53:40 +0100159 url = cgit_pageurl(ctx.qry.repo, "tree",
Lars Hjemliffc69732007-06-16 20:20:42 +0200160 fmt("h=%s&amp;path=%s", curr_rev, buffer));
Lars Hjemli44947bf2007-06-17 01:23:08 +0200161 html("/");
Lars Hjemlid14d77f2008-02-16 11:53:40 +0100162 cgit_tree_link(xstrdup(pathname), NULL, NULL, ctx.qry.head,
Lars Hjemli44947bf2007-06-17 01:23:08 +0200163 curr_rev, buffer);
Lars Hjemliffc69732007-06-16 20:20:42 +0200164
165 if (strcmp(match_path, buffer))
166 return READ_TREE_RECURSIVE;
167
168 if (S_ISDIR(mode)) {
169 state = 1;
170 ls_head();
171 return READ_TREE_RECURSIVE;
172 } else {
173 print_object(sha1, buffer);
174 return 0;
175 }
176 }
177 ls_item(sha1, base, baselen, pathname, mode, stage);
178 return 0;
179}
180
181
182/*
183 * Show a tree or a blob
184 * rev: the commit pointing at the root tree object
185 * path: path to tree or blob
186 */
187void cgit_print_tree(const char *rev, char *path)
188{
189 unsigned char sha1[20];
190 struct commit *commit;
191 const char *paths[] = {path, NULL};
192
193 if (!rev)
Lars Hjemlid14d77f2008-02-16 11:53:40 +0100194 rev = ctx.qry.head;
Lars Hjemliffc69732007-06-16 20:20:42 +0200195
196 curr_rev = xstrdup(rev);
197 if (get_sha1(rev, sha1)) {
198 cgit_print_error(fmt("Invalid revision name: %s", rev));
199 return;
200 }
201 commit = lookup_commit_reference(sha1);
202 if (!commit || parse_commit(commit)) {
203 cgit_print_error(fmt("Invalid commit reference: %s", rev));
204 return;
205 }
206
207 html("path: <a href='");
Lars Hjemlid14d77f2008-02-16 11:53:40 +0100208 html_attr(cgit_pageurl(ctx.qry.repo, "tree", fmt("h=%s", rev)));
Lars Hjemliffc69732007-06-16 20:20:42 +0200209 html("'>root</a>");
210
211 if (path == NULL) {
212 ls_tree(commit->tree->object.sha1, NULL);
213 return;
214 }
215
216 match_path = path;
217 read_tree_recursive(commit->tree, NULL, 0, 0, paths, walk_tree);
218 ls_tail();
Lars Hjemli06fe0c22006-12-13 00:13:27 +0100219}