blob: 2a8625c29e1bba45c0160b856fa4602f08cd3b93 [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;
Onne Gortera90e2aa2009-01-07 13:56:14 +010021 unsigned long size, lineno, idx;
22 const char *numberfmt = "<a class='no' id='n%1$d' name='n%1$d' href='#n%1$d'>%1$d</a>\n";
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);
Onne Gortera90e2aa2009-01-07 13:56:14 +010041 htmlf(")<br/>blob: %s\n", 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");
Onne Gortera90e2aa2009-01-07 13:56:14 +010044 html("<tr>\n");
45
46 html("<td class='linenumbers'><pre>");
Lars Hjemliffc69732007-06-16 20:20:42 +020047 idx = 0;
Lars Hjemliffc69732007-06-16 20:20:42 +020048 lineno = 0;
Onne Gortera90e2aa2009-01-07 13:56:14 +010049 htmlf(numberfmt, ++lineno);
50 while(idx < size - 1) { // skip absolute last newline
Lars Hjemliffc69732007-06-16 20:20:42 +020051 if (buf[idx] == '\n') {
Onne Gortera90e2aa2009-01-07 13:56:14 +010052 htmlf(numberfmt, ++lineno);
Lars Hjemliffc69732007-06-16 20:20:42 +020053 }
54 idx++;
55 }
Onne Gortera90e2aa2009-01-07 13:56:14 +010056 html("</pre></td>\n");
57
58 html("<td class='lines'><pre><code>");
59 html_txt(buf);
60 html("</code></pre></td>\n");
61
62 html("</tr>\n");
Lars Hjemliffc69732007-06-16 20:20:42 +020063 html("</table>\n");
64}
65
66
67static int ls_item(const unsigned char *sha1, const char *base, int baselen,
Lars Hjemli566f92b2008-07-21 10:10:48 +020068 const char *pathname, unsigned int mode, int stage,
69 void *cbdata)
Lars Hjemli06fe0c22006-12-13 00:13:27 +010070{
71 char *name;
Lars Hjemli44947bf2007-06-17 01:23:08 +020072 char *fullpath;
Lars Hjemli61c3ca92007-05-08 22:40:59 +020073 enum object_type type;
Lars Hjemlided93932007-05-11 12:12:48 +020074 unsigned long size = 0;
Lars Hjemli06fe0c22006-12-13 00:13:27 +010075
Lars Hjemli61c3ca92007-05-08 22:40:59 +020076 name = xstrdup(pathname);
Lars Hjemlid14d77f2008-02-16 11:53:40 +010077 fullpath = fmt("%s%s%s", ctx.qry.path ? ctx.qry.path : "",
78 ctx.qry.path ? "/" : "", name);
Lars Hjemli44947bf2007-06-17 01:23:08 +020079
Lars Hjemli08a87572008-05-20 22:32:22 +020080 if (!S_ISGITLINK(mode)) {
81 type = sha1_object_info(sha1, &size);
82 if (type == OBJ_BAD) {
83 htmlf("<tr><td colspan='3'>Bad object: %s %s</td></tr>",
84 name,
85 sha1_to_hex(sha1));
86 return 0;
87 }
Lars Hjemli06fe0c22006-12-13 00:13:27 +010088 }
Lars Hjemli44947bf2007-06-17 01:23:08 +020089
Lars Hjemli426032f2007-06-17 13:17:00 +020090 html("<tr><td class='ls-mode'>");
Lars Hjemlib1f9b9c2008-02-23 22:45:33 +010091 cgit_print_filemode(mode);
Lars Hjemli426032f2007-06-17 13:17:00 +020092 html("</td><td>");
Jeffrey C. Olliee651cb02007-06-04 12:28:56 -050093 if (S_ISGITLINK(mode)) {
Lars Hjemli426032f2007-06-17 13:17:00 +020094 htmlf("<a class='ls-mod' href='");
Lars Hjemlid1f3bbe2008-02-16 13:56:09 +010095 html_attr(fmt(ctx.repo->module_link,
Lars Hjemlided93932007-05-11 12:12:48 +020096 name,
97 sha1_to_hex(sha1)));
Lars Hjemli44947bf2007-06-17 01:23:08 +020098 html("'>");
99 html_txt(name);
100 html("</a>");
Lars Hjemli61c3ca92007-05-08 22:40:59 +0200101 } else if (S_ISDIR(mode)) {
Lars Hjemlid14d77f2008-02-16 11:53:40 +0100102 cgit_tree_link(name, NULL, "ls-dir", ctx.qry.head,
Lars Hjemli44947bf2007-06-17 01:23:08 +0200103 curr_rev, fullpath);
Lars Hjemli06fe0c22006-12-13 00:13:27 +0100104 } else {
Lars Hjemlid14d77f2008-02-16 11:53:40 +0100105 cgit_tree_link(name, NULL, "ls-blob", ctx.qry.head,
Lars Hjemli44947bf2007-06-17 01:23:08 +0200106 curr_rev, fullpath);
Lars Hjemli06fe0c22006-12-13 00:13:27 +0100107 }
Lars Hjemli426032f2007-06-17 13:17:00 +0200108 htmlf("</td><td class='ls-size'>%li</td>", size);
Lars Hjemli9fb53af2007-05-14 11:10:59 +0200109
Lars Hjemli48c487d2007-06-17 13:57:51 +0200110 html("<td>");
Lars Hjemlid14d77f2008-02-16 11:53:40 +0100111 cgit_log_link("log", NULL, "button", ctx.qry.head, curr_rev,
Lars Hjemli0274b572008-11-29 18:39:41 +0100112 fullpath, 0, NULL, NULL, ctx.qry.showmsg);
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}