blob: 9a837e2a058c28f8b371a73d04e725ec9dab8951 [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,
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 Hjemli48c487d2007-06-17 13:57:51 +0200110 html("</td></tr>\n");
Lars Hjemli06fe0c22006-12-13 00:13:27 +0100111 free(name);
112 return 0;
113}
114
Lars Hjemliffc69732007-06-16 20:20:42 +0200115static void ls_head()
Lars Hjemli06fe0c22006-12-13 00:13:27 +0100116{
Lars Hjemli29154832007-11-11 13:04:28 +0100117 html("<table summary='tree listing' class='list'>\n");
Lars Hjemli777faf72007-01-28 00:39:26 +0100118 html("<tr class='nohover'>");
Lars Hjemlia5304282006-12-17 23:55:53 +0100119 html("<th class='left'>Mode</th>");
120 html("<th class='left'>Name</th>");
Lars Hjemli9a8f8862006-12-16 00:19:56 +0100121 html("<th class='right'>Size</th>");
Lars Hjemli9fb53af2007-05-14 11:10:59 +0200122 html("<th/>");
Lars Hjemlia5304282006-12-17 23:55:53 +0100123 html("</tr>\n");
Lars Hjemliffc69732007-06-16 20:20:42 +0200124 header = 1;
125}
126
127static void ls_tail()
128{
129 if (!header)
130 return;
Lars Hjemli06fe0c22006-12-13 00:13:27 +0100131 html("</table>\n");
Lars Hjemliffc69732007-06-16 20:20:42 +0200132 header = 0;
133}
134
135static void ls_tree(const unsigned char *sha1, char *path)
136{
137 struct tree *tree;
138
139 tree = parse_tree_indirect(sha1);
140 if (!tree) {
141 cgit_print_error(fmt("Not a tree object: %s",
142 sha1_to_hex(sha1)));
143 return;
144 }
145
146 ls_head();
Lars Hjemli566f92b2008-07-21 10:10:48 +0200147 read_tree_recursive(tree, "", 0, 1, NULL, ls_item, NULL);
Lars Hjemliffc69732007-06-16 20:20:42 +0200148 ls_tail();
149}
150
151
152static int walk_tree(const unsigned char *sha1, const char *base, int baselen,
Lars Hjemli566f92b2008-07-21 10:10:48 +0200153 const char *pathname, unsigned mode, int stage,
154 void *cbdata)
Lars Hjemliffc69732007-06-16 20:20:42 +0200155{
156 static int state;
157 static char buffer[PATH_MAX];
158 char *url;
159
160 if (state == 0) {
161 memcpy(buffer, base, baselen);
162 strcpy(buffer+baselen, pathname);
Lars Hjemlid14d77f2008-02-16 11:53:40 +0100163 url = cgit_pageurl(ctx.qry.repo, "tree",
Lars Hjemliffc69732007-06-16 20:20:42 +0200164 fmt("h=%s&amp;path=%s", curr_rev, buffer));
Lars Hjemli44947bf2007-06-17 01:23:08 +0200165 html("/");
Lars Hjemlid14d77f2008-02-16 11:53:40 +0100166 cgit_tree_link(xstrdup(pathname), NULL, NULL, ctx.qry.head,
Lars Hjemli44947bf2007-06-17 01:23:08 +0200167 curr_rev, buffer);
Lars Hjemliffc69732007-06-16 20:20:42 +0200168
169 if (strcmp(match_path, buffer))
170 return READ_TREE_RECURSIVE;
171
172 if (S_ISDIR(mode)) {
173 state = 1;
174 ls_head();
175 return READ_TREE_RECURSIVE;
176 } else {
177 print_object(sha1, buffer);
178 return 0;
179 }
180 }
Lars Hjemli566f92b2008-07-21 10:10:48 +0200181 ls_item(sha1, base, baselen, pathname, mode, stage, NULL);
Lars Hjemliffc69732007-06-16 20:20:42 +0200182 return 0;
183}
184
185
186/*
187 * Show a tree or a blob
188 * rev: the commit pointing at the root tree object
189 * path: path to tree or blob
190 */
191void cgit_print_tree(const char *rev, char *path)
192{
193 unsigned char sha1[20];
194 struct commit *commit;
195 const char *paths[] = {path, NULL};
196
197 if (!rev)
Lars Hjemlid14d77f2008-02-16 11:53:40 +0100198 rev = ctx.qry.head;
Lars Hjemliffc69732007-06-16 20:20:42 +0200199
200 curr_rev = xstrdup(rev);
201 if (get_sha1(rev, sha1)) {
202 cgit_print_error(fmt("Invalid revision name: %s", rev));
203 return;
204 }
205 commit = lookup_commit_reference(sha1);
206 if (!commit || parse_commit(commit)) {
207 cgit_print_error(fmt("Invalid commit reference: %s", rev));
208 return;
209 }
210
211 html("path: <a href='");
Lars Hjemlid14d77f2008-02-16 11:53:40 +0100212 html_attr(cgit_pageurl(ctx.qry.repo, "tree", fmt("h=%s", rev)));
Lars Hjemliffc69732007-06-16 20:20:42 +0200213 html("'>root</a>");
214
215 if (path == NULL) {
216 ls_tree(commit->tree->object.sha1, NULL);
217 return;
218 }
219
220 match_path = path;
Lars Hjemli566f92b2008-07-21 10:10:48 +0200221 read_tree_recursive(commit->tree, NULL, 0, 0, paths, walk_tree, NULL);
Lars Hjemliffc69732007-06-16 20:20:42 +0200222 ls_tail();
Lars Hjemli06fe0c22006-12-13 00:13:27 +0100223}