blob: e27e79680a58d8625308657de7a5e66280aaf4df [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
Lars Hjemli65b7b872008-08-06 11:07:13 +020038 html(" (");
39 cgit_plain_link("plain", NULL, NULL, ctx.qry.head,
40 curr_rev, path);
41 htmlf(")<br/>blob: %s", sha1_to_hex(sha1));
Michael Krelind6b01da2007-07-21 19:51:47 +020042
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,
Lars Hjemli566f92b2008-07-21 10:10:48 +020065 const char *pathname, unsigned int mode, int stage,
66 void *cbdata)
Lars Hjemli06fe0c22006-12-13 00:13:27 +010067{
68 char *name;
Lars Hjemli44947bf2007-06-17 01:23:08 +020069 char *fullpath;
Lars Hjemli61c3ca92007-05-08 22:40:59 +020070 enum object_type type;
Lars Hjemlided93932007-05-11 12:12:48 +020071 unsigned long size = 0;
Lars Hjemli06fe0c22006-12-13 00:13:27 +010072
Lars Hjemli61c3ca92007-05-08 22:40:59 +020073 name = xstrdup(pathname);
Lars Hjemlid14d77f2008-02-16 11:53:40 +010074 fullpath = fmt("%s%s%s", ctx.qry.path ? ctx.qry.path : "",
75 ctx.qry.path ? "/" : "", name);
Lars Hjemli44947bf2007-06-17 01:23:08 +020076
Lars Hjemli08a87572008-05-20 22:32:22 +020077 if (!S_ISGITLINK(mode)) {
78 type = sha1_object_info(sha1, &size);
79 if (type == OBJ_BAD) {
80 htmlf("<tr><td colspan='3'>Bad object: %s %s</td></tr>",
81 name,
82 sha1_to_hex(sha1));
83 return 0;
84 }
Lars Hjemli06fe0c22006-12-13 00:13:27 +010085 }
Lars Hjemli44947bf2007-06-17 01:23:08 +020086
Lars Hjemli426032f2007-06-17 13:17:00 +020087 html("<tr><td class='ls-mode'>");
Lars Hjemlib1f9b9c2008-02-23 22:45:33 +010088 cgit_print_filemode(mode);
Lars Hjemli426032f2007-06-17 13:17:00 +020089 html("</td><td>");
Jeffrey C. Olliee651cb02007-06-04 12:28:56 -050090 if (S_ISGITLINK(mode)) {
Lars Hjemli426032f2007-06-17 13:17:00 +020091 htmlf("<a class='ls-mod' href='");
Lars Hjemlid1f3bbe2008-02-16 13:56:09 +010092 html_attr(fmt(ctx.repo->module_link,
Lars Hjemlided93932007-05-11 12:12:48 +020093 name,
94 sha1_to_hex(sha1)));
Lars Hjemli44947bf2007-06-17 01:23:08 +020095 html("'>");
96 html_txt(name);
97 html("</a>");
Lars Hjemli61c3ca92007-05-08 22:40:59 +020098 } else if (S_ISDIR(mode)) {
Lars Hjemlid14d77f2008-02-16 11:53:40 +010099 cgit_tree_link(name, NULL, "ls-dir", ctx.qry.head,
Lars Hjemli44947bf2007-06-17 01:23:08 +0200100 curr_rev, fullpath);
Lars Hjemli06fe0c22006-12-13 00:13:27 +0100101 } else {
Lars Hjemlid14d77f2008-02-16 11:53:40 +0100102 cgit_tree_link(name, NULL, "ls-blob", ctx.qry.head,
Lars Hjemli44947bf2007-06-17 01:23:08 +0200103 curr_rev, fullpath);
Lars Hjemli06fe0c22006-12-13 00:13:27 +0100104 }
Lars Hjemli426032f2007-06-17 13:17:00 +0200105 htmlf("</td><td class='ls-size'>%li</td>", size);
Lars Hjemli9fb53af2007-05-14 11:10:59 +0200106
Lars Hjemli48c487d2007-06-17 13:57:51 +0200107 html("<td>");
Lars Hjemlid14d77f2008-02-16 11:53:40 +0100108 cgit_log_link("log", NULL, "button", ctx.qry.head, curr_rev,
Lars Hjemli51140312007-11-03 10:42:37 +0100109 fullpath, 0, NULL, NULL);
Lars Hjemli837d4642008-12-07 13:34:42 +0100110 if (ctx.repo->max_stats)
111 cgit_stats_link("stats", NULL, "button", ctx.qry.head,
112 fullpath);
Lars Hjemli48c487d2007-06-17 13:57:51 +0200113 html("</td></tr>\n");
Lars Hjemli06fe0c22006-12-13 00:13:27 +0100114 free(name);
115 return 0;
116}
117
Lars Hjemliffc69732007-06-16 20:20:42 +0200118static void ls_head()
Lars Hjemli06fe0c22006-12-13 00:13:27 +0100119{
Lars Hjemli29154832007-11-11 13:04:28 +0100120 html("<table summary='tree listing' class='list'>\n");
Lars Hjemli777faf72007-01-28 00:39:26 +0100121 html("<tr class='nohover'>");
Lars Hjemlia5304282006-12-17 23:55:53 +0100122 html("<th class='left'>Mode</th>");
123 html("<th class='left'>Name</th>");
Lars Hjemli9a8f8862006-12-16 00:19:56 +0100124 html("<th class='right'>Size</th>");
Lars Hjemli9fb53af2007-05-14 11:10:59 +0200125 html("<th/>");
Lars Hjemlia5304282006-12-17 23:55:53 +0100126 html("</tr>\n");
Lars Hjemliffc69732007-06-16 20:20:42 +0200127 header = 1;
128}
129
130static void ls_tail()
131{
132 if (!header)
133 return;
Lars Hjemli06fe0c22006-12-13 00:13:27 +0100134 html("</table>\n");
Lars Hjemliffc69732007-06-16 20:20:42 +0200135 header = 0;
136}
137
138static void ls_tree(const unsigned char *sha1, char *path)
139{
140 struct tree *tree;
141
142 tree = parse_tree_indirect(sha1);
143 if (!tree) {
144 cgit_print_error(fmt("Not a tree object: %s",
145 sha1_to_hex(sha1)));
146 return;
147 }
148
149 ls_head();
Lars Hjemli566f92b2008-07-21 10:10:48 +0200150 read_tree_recursive(tree, "", 0, 1, NULL, ls_item, NULL);
Lars Hjemliffc69732007-06-16 20:20:42 +0200151 ls_tail();
152}
153
154
155static int walk_tree(const unsigned char *sha1, const char *base, int baselen,
Lars Hjemli566f92b2008-07-21 10:10:48 +0200156 const char *pathname, unsigned mode, int stage,
157 void *cbdata)
Lars Hjemliffc69732007-06-16 20:20:42 +0200158{
159 static int state;
160 static char buffer[PATH_MAX];
161 char *url;
162
163 if (state == 0) {
164 memcpy(buffer, base, baselen);
165 strcpy(buffer+baselen, pathname);
Lars Hjemlid14d77f2008-02-16 11:53:40 +0100166 url = cgit_pageurl(ctx.qry.repo, "tree",
Lars Hjemliffc69732007-06-16 20:20:42 +0200167 fmt("h=%s&amp;path=%s", curr_rev, buffer));
Lars Hjemli44947bf2007-06-17 01:23:08 +0200168 html("/");
Lars Hjemlid14d77f2008-02-16 11:53:40 +0100169 cgit_tree_link(xstrdup(pathname), NULL, NULL, ctx.qry.head,
Lars Hjemli44947bf2007-06-17 01:23:08 +0200170 curr_rev, buffer);
Lars Hjemliffc69732007-06-16 20:20:42 +0200171
172 if (strcmp(match_path, buffer))
173 return READ_TREE_RECURSIVE;
174
175 if (S_ISDIR(mode)) {
176 state = 1;
177 ls_head();
178 return READ_TREE_RECURSIVE;
179 } else {
180 print_object(sha1, buffer);
181 return 0;
182 }
183 }
Lars Hjemli566f92b2008-07-21 10:10:48 +0200184 ls_item(sha1, base, baselen, pathname, mode, stage, NULL);
Lars Hjemliffc69732007-06-16 20:20:42 +0200185 return 0;
186}
187
188
189/*
190 * Show a tree or a blob
191 * rev: the commit pointing at the root tree object
192 * path: path to tree or blob
193 */
194void cgit_print_tree(const char *rev, char *path)
195{
196 unsigned char sha1[20];
197 struct commit *commit;
198 const char *paths[] = {path, NULL};
199
200 if (!rev)
Lars Hjemlid14d77f2008-02-16 11:53:40 +0100201 rev = ctx.qry.head;
Lars Hjemliffc69732007-06-16 20:20:42 +0200202
203 curr_rev = xstrdup(rev);
204 if (get_sha1(rev, sha1)) {
205 cgit_print_error(fmt("Invalid revision name: %s", rev));
206 return;
207 }
208 commit = lookup_commit_reference(sha1);
209 if (!commit || parse_commit(commit)) {
210 cgit_print_error(fmt("Invalid commit reference: %s", rev));
211 return;
212 }
213
214 html("path: <a href='");
Lars Hjemlid14d77f2008-02-16 11:53:40 +0100215 html_attr(cgit_pageurl(ctx.qry.repo, "tree", fmt("h=%s", rev)));
Lars Hjemliffc69732007-06-16 20:20:42 +0200216 html("'>root</a>");
217
218 if (path == NULL) {
219 ls_tree(commit->tree->object.sha1, NULL);
220 return;
221 }
222
223 match_path = path;
Lars Hjemli566f92b2008-07-21 10:10:48 +0200224 read_tree_recursive(commit->tree, NULL, 0, 0, paths, walk_tree, NULL);
Lars Hjemliffc69732007-06-16 20:20:42 +0200225 ls_tail();
Lars Hjemli06fe0c22006-12-13 00:13:27 +0100226}