Lars Hjemli | 06fe0c2 | 2006-12-13 00:13:27 +0100 | [diff] [blame] | 1 | /* 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 Hjemli | 9fb53af | 2007-05-14 11:10:59 +0200 | [diff] [blame] | 11 | char *curr_rev; |
Lars Hjemli | ffc6973 | 2007-06-16 20:20:42 +0200 | [diff] [blame] | 12 | char *match_path; |
| 13 | int header = 0; |
Lars Hjemli | 06fe0c2 | 2006-12-13 00:13:27 +0100 | [diff] [blame] | 14 | |
Lars Hjemli | ffc6973 | 2007-06-16 20:20:42 +0200 | [diff] [blame] | 15 | static 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 | |
| 35 | html("<table class='blob'>\n"); |
| 36 | idx = 0; |
| 37 | start = 0; |
| 38 | lineno = 0; |
| 39 | while(idx < size) { |
| 40 | if (buf[idx] == '\n') { |
| 41 | buf[idx] = '\0'; |
| 42 | htmlf("<tr><td class='no'>%d</td><td class='txt'>", |
| 43 | ++lineno); |
| 44 | html_txt(buf + start); |
| 45 | html("</td></tr>\n"); |
| 46 | start = idx + 1; |
| 47 | } |
| 48 | idx++; |
| 49 | } |
Lars Hjemli | ffc6973 | 2007-06-16 20:20:42 +0200 | [diff] [blame] | 50 | html("</table>\n"); |
| 51 | } |
| 52 | |
| 53 | |
| 54 | static int ls_item(const unsigned char *sha1, const char *base, int baselen, |
| 55 | const char *pathname, unsigned int mode, int stage) |
Lars Hjemli | 06fe0c2 | 2006-12-13 00:13:27 +0100 | [diff] [blame] | 56 | { |
| 57 | char *name; |
Lars Hjemli | 44947bf | 2007-06-17 01:23:08 +0200 | [diff] [blame] | 58 | char *fullpath; |
Lars Hjemli | 61c3ca9 | 2007-05-08 22:40:59 +0200 | [diff] [blame] | 59 | enum object_type type; |
Lars Hjemli | ded9393 | 2007-05-11 12:12:48 +0200 | [diff] [blame] | 60 | unsigned long size = 0; |
Lars Hjemli | 06fe0c2 | 2006-12-13 00:13:27 +0100 | [diff] [blame] | 61 | |
Lars Hjemli | 61c3ca9 | 2007-05-08 22:40:59 +0200 | [diff] [blame] | 62 | name = xstrdup(pathname); |
Lars Hjemli | 44947bf | 2007-06-17 01:23:08 +0200 | [diff] [blame] | 63 | fullpath = fmt("%s%s%s", cgit_query_path ? cgit_query_path : "", |
| 64 | cgit_query_path ? "/" : "", name); |
| 65 | |
Lars Hjemli | 61c3ca9 | 2007-05-08 22:40:59 +0200 | [diff] [blame] | 66 | type = sha1_object_info(sha1, &size); |
Lars Hjemli | ded9393 | 2007-05-11 12:12:48 +0200 | [diff] [blame] | 67 | if (type == OBJ_BAD && !S_ISDIRLNK(mode)) { |
Lars Hjemli | 61c3ca9 | 2007-05-08 22:40:59 +0200 | [diff] [blame] | 68 | htmlf("<tr><td colspan='3'>Bad object: %s %s</td></tr>", |
| 69 | name, |
| 70 | sha1_to_hex(sha1)); |
Lars Hjemli | 06fe0c2 | 2006-12-13 00:13:27 +0100 | [diff] [blame] | 71 | return 0; |
| 72 | } |
Lars Hjemli | 44947bf | 2007-06-17 01:23:08 +0200 | [diff] [blame] | 73 | |
Lars Hjemli | 426032f | 2007-06-17 13:17:00 +0200 | [diff] [blame] | 74 | html("<tr><td class='ls-mode'>"); |
Lars Hjemli | a530428 | 2006-12-17 23:55:53 +0100 | [diff] [blame] | 75 | html_filemode(mode); |
Lars Hjemli | 426032f | 2007-06-17 13:17:00 +0200 | [diff] [blame] | 76 | html("</td><td>"); |
Lars Hjemli | 61c3ca9 | 2007-05-08 22:40:59 +0200 | [diff] [blame] | 77 | if (S_ISDIRLNK(mode)) { |
Lars Hjemli | 426032f | 2007-06-17 13:17:00 +0200 | [diff] [blame] | 78 | htmlf("<a class='ls-mod' href='"); |
Lars Hjemli | ded9393 | 2007-05-11 12:12:48 +0200 | [diff] [blame] | 79 | html_attr(fmt(cgit_repo->module_link, |
| 80 | name, |
| 81 | sha1_to_hex(sha1))); |
Lars Hjemli | 44947bf | 2007-06-17 01:23:08 +0200 | [diff] [blame] | 82 | html("'>"); |
| 83 | html_txt(name); |
| 84 | html("</a>"); |
Lars Hjemli | 61c3ca9 | 2007-05-08 22:40:59 +0200 | [diff] [blame] | 85 | } else if (S_ISDIR(mode)) { |
Lars Hjemli | 426032f | 2007-06-17 13:17:00 +0200 | [diff] [blame] | 86 | cgit_tree_link(name, NULL, "ls-dir", cgit_query_head, |
Lars Hjemli | 44947bf | 2007-06-17 01:23:08 +0200 | [diff] [blame] | 87 | curr_rev, fullpath); |
Lars Hjemli | 06fe0c2 | 2006-12-13 00:13:27 +0100 | [diff] [blame] | 88 | } else { |
Lars Hjemli | 426032f | 2007-06-17 13:17:00 +0200 | [diff] [blame] | 89 | cgit_tree_link(name, NULL, "ls-blob", cgit_query_head, |
Lars Hjemli | 44947bf | 2007-06-17 01:23:08 +0200 | [diff] [blame] | 90 | curr_rev, fullpath); |
Lars Hjemli | 06fe0c2 | 2006-12-13 00:13:27 +0100 | [diff] [blame] | 91 | } |
Lars Hjemli | 426032f | 2007-06-17 13:17:00 +0200 | [diff] [blame] | 92 | htmlf("</td><td class='ls-size'>%li</td>", size); |
Lars Hjemli | 9fb53af | 2007-05-14 11:10:59 +0200 | [diff] [blame] | 93 | |
Lars Hjemli | 48c487d | 2007-06-17 13:57:51 +0200 | [diff] [blame] | 94 | html("<td>"); |
Lars Hjemli | a215bf4 | 2007-06-18 22:12:09 +0200 | [diff] [blame^] | 95 | cgit_log_link("log", NULL, "button", cgit_query_head, curr_rev, |
Lars Hjemli | 48c487d | 2007-06-17 13:57:51 +0200 | [diff] [blame] | 96 | fullpath); |
| 97 | html("</td></tr>\n"); |
Lars Hjemli | 06fe0c2 | 2006-12-13 00:13:27 +0100 | [diff] [blame] | 98 | free(name); |
| 99 | return 0; |
| 100 | } |
| 101 | |
Lars Hjemli | ffc6973 | 2007-06-16 20:20:42 +0200 | [diff] [blame] | 102 | static void ls_head() |
Lars Hjemli | 06fe0c2 | 2006-12-13 00:13:27 +0100 | [diff] [blame] | 103 | { |
Lars Hjemli | 06fe0c2 | 2006-12-13 00:13:27 +0100 | [diff] [blame] | 104 | html("<table class='list'>\n"); |
Lars Hjemli | 777faf7 | 2007-01-28 00:39:26 +0100 | [diff] [blame] | 105 | html("<tr class='nohover'>"); |
Lars Hjemli | a530428 | 2006-12-17 23:55:53 +0100 | [diff] [blame] | 106 | html("<th class='left'>Mode</th>"); |
| 107 | html("<th class='left'>Name</th>"); |
Lars Hjemli | 9a8f886 | 2006-12-16 00:19:56 +0100 | [diff] [blame] | 108 | html("<th class='right'>Size</th>"); |
Lars Hjemli | 9fb53af | 2007-05-14 11:10:59 +0200 | [diff] [blame] | 109 | html("<th/>"); |
Lars Hjemli | a530428 | 2006-12-17 23:55:53 +0100 | [diff] [blame] | 110 | html("</tr>\n"); |
Lars Hjemli | ffc6973 | 2007-06-16 20:20:42 +0200 | [diff] [blame] | 111 | header = 1; |
| 112 | } |
| 113 | |
| 114 | static void ls_tail() |
| 115 | { |
| 116 | if (!header) |
| 117 | return; |
Lars Hjemli | 06fe0c2 | 2006-12-13 00:13:27 +0100 | [diff] [blame] | 118 | html("</table>\n"); |
Lars Hjemli | ffc6973 | 2007-06-16 20:20:42 +0200 | [diff] [blame] | 119 | header = 0; |
| 120 | } |
| 121 | |
| 122 | static void ls_tree(const unsigned char *sha1, char *path) |
| 123 | { |
| 124 | struct tree *tree; |
| 125 | |
| 126 | tree = parse_tree_indirect(sha1); |
| 127 | if (!tree) { |
| 128 | cgit_print_error(fmt("Not a tree object: %s", |
| 129 | sha1_to_hex(sha1))); |
| 130 | return; |
| 131 | } |
| 132 | |
| 133 | ls_head(); |
| 134 | read_tree_recursive(tree, "", 0, 1, NULL, ls_item); |
| 135 | ls_tail(); |
| 136 | } |
| 137 | |
| 138 | |
| 139 | static int walk_tree(const unsigned char *sha1, const char *base, int baselen, |
| 140 | const char *pathname, unsigned mode, int stage) |
| 141 | { |
| 142 | static int state; |
| 143 | static char buffer[PATH_MAX]; |
| 144 | char *url; |
| 145 | |
| 146 | if (state == 0) { |
| 147 | memcpy(buffer, base, baselen); |
| 148 | strcpy(buffer+baselen, pathname); |
| 149 | url = cgit_pageurl(cgit_query_repo, "tree", |
| 150 | fmt("h=%s&path=%s", curr_rev, buffer)); |
Lars Hjemli | 44947bf | 2007-06-17 01:23:08 +0200 | [diff] [blame] | 151 | html("/"); |
| 152 | cgit_tree_link(xstrdup(pathname), NULL, NULL, cgit_query_head, |
| 153 | curr_rev, buffer); |
Lars Hjemli | ffc6973 | 2007-06-16 20:20:42 +0200 | [diff] [blame] | 154 | |
| 155 | if (strcmp(match_path, buffer)) |
| 156 | return READ_TREE_RECURSIVE; |
| 157 | |
| 158 | if (S_ISDIR(mode)) { |
| 159 | state = 1; |
| 160 | ls_head(); |
| 161 | return READ_TREE_RECURSIVE; |
| 162 | } else { |
| 163 | print_object(sha1, buffer); |
| 164 | return 0; |
| 165 | } |
| 166 | } |
| 167 | ls_item(sha1, base, baselen, pathname, mode, stage); |
| 168 | return 0; |
| 169 | } |
| 170 | |
| 171 | |
| 172 | /* |
| 173 | * Show a tree or a blob |
| 174 | * rev: the commit pointing at the root tree object |
| 175 | * path: path to tree or blob |
| 176 | */ |
| 177 | void cgit_print_tree(const char *rev, char *path) |
| 178 | { |
| 179 | unsigned char sha1[20]; |
| 180 | struct commit *commit; |
| 181 | const char *paths[] = {path, NULL}; |
| 182 | |
| 183 | if (!rev) |
| 184 | rev = cgit_query_head; |
| 185 | |
| 186 | curr_rev = xstrdup(rev); |
| 187 | if (get_sha1(rev, sha1)) { |
| 188 | cgit_print_error(fmt("Invalid revision name: %s", rev)); |
| 189 | return; |
| 190 | } |
| 191 | commit = lookup_commit_reference(sha1); |
| 192 | if (!commit || parse_commit(commit)) { |
| 193 | cgit_print_error(fmt("Invalid commit reference: %s", rev)); |
| 194 | return; |
| 195 | } |
| 196 | |
| 197 | html("path: <a href='"); |
| 198 | html_attr(cgit_pageurl(cgit_query_repo, "tree", fmt("h=%s", rev))); |
| 199 | html("'>root</a>"); |
| 200 | |
| 201 | if (path == NULL) { |
| 202 | ls_tree(commit->tree->object.sha1, NULL); |
| 203 | return; |
| 204 | } |
| 205 | |
| 206 | match_path = path; |
| 207 | read_tree_recursive(commit->tree, NULL, 0, 0, paths, walk_tree); |
| 208 | ls_tail(); |
Lars Hjemli | 06fe0c2 | 2006-12-13 00:13:27 +0100 | [diff] [blame] | 209 | } |