author | Michael Krelin <hacker@klever.net> | 2007-07-21 17:51:47 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2007-07-21 17:51:47 (UTC) |
commit | d6b01dac856efda565d4085e77826fd9ac83348a (patch) (unidiff) | |
tree | a197bfddc04f9d0b214e71db66447a7efdf54cf5 | |
parent | bbd4a14456789a2114d8bb0f7ba245af3605bb49 (diff) | |
download | cgit-d6b01dac856efda565d4085e77826fd9ac83348a.zip cgit-d6b01dac856efda565d4085e77826fd9ac83348a.tar.gz cgit-d6b01dac856efda565d4085e77826fd9ac83348a.tar.bz2 |
link raw blob from tree file view
Signed-off-by: Michael Krelin <hacker@klever.net>
-rw-r--r-- | ui-tree.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -1,209 +1,213 @@ | |||
1 | /* ui-tree.c: functions for tree output | 1 | /* ui-tree.c: functions for tree output |
2 | * | 2 | * |
3 | * Copyright (C) 2006 Lars Hjemli | 3 | * Copyright (C) 2006 Lars Hjemli |
4 | * | 4 | * |
5 | * Licensed under GNU General Public License v2 | 5 | * Licensed under GNU General Public License v2 |
6 | * (see COPYING for full license text) | 6 | * (see COPYING for full license text) |
7 | */ | 7 | */ |
8 | 8 | ||
9 | #include "cgit.h" | 9 | #include "cgit.h" |
10 | 10 | ||
11 | char *curr_rev; | 11 | char *curr_rev; |
12 | char *match_path; | 12 | char *match_path; |
13 | int header = 0; | 13 | int header = 0; |
14 | 14 | ||
15 | static void print_object(const unsigned char *sha1, char *path) | 15 | static void print_object(const unsigned char *sha1, char *path) |
16 | { | 16 | { |
17 | enum object_type type; | 17 | enum object_type type; |
18 | unsigned char *buf; | 18 | unsigned char *buf; |
19 | unsigned long size, lineno, start, idx; | 19 | unsigned long size, lineno, start, idx; |
20 | 20 | ||
21 | type = sha1_object_info(sha1, &size); | 21 | type = sha1_object_info(sha1, &size); |
22 | if (type == OBJ_BAD) { | 22 | if (type == OBJ_BAD) { |
23 | cgit_print_error(fmt("Bad object name: %s", | 23 | cgit_print_error(fmt("Bad object name: %s", |
24 | sha1_to_hex(sha1))); | 24 | sha1_to_hex(sha1))); |
25 | return; | 25 | return; |
26 | } | 26 | } |
27 | 27 | ||
28 | buf = read_sha1_file(sha1, &type, &size); | 28 | buf = read_sha1_file(sha1, &type, &size); |
29 | if (!buf) { | 29 | if (!buf) { |
30 | cgit_print_error(fmt("Error reading object %s", | 30 | cgit_print_error(fmt("Error reading object %s", |
31 | sha1_to_hex(sha1))); | 31 | sha1_to_hex(sha1))); |
32 | return; | 32 | return; |
33 | } | 33 | } |
34 | 34 | ||
35 | html(" blob: <a href='"); | ||
36 | html_attr(cgit_pageurl(cgit_query_repo, "blob", fmt("id=%s", sha1_to_hex(sha1)))); | ||
37 | htmlf("'>%s</a>",sha1_to_hex(sha1)); | ||
38 | |||
35 | html("<table class='blob'>\n"); | 39 | html("<table class='blob'>\n"); |
36 | idx = 0; | 40 | idx = 0; |
37 | start = 0; | 41 | start = 0; |
38 | lineno = 0; | 42 | lineno = 0; |
39 | while(idx < size) { | 43 | while(idx < size) { |
40 | if (buf[idx] == '\n') { | 44 | if (buf[idx] == '\n') { |
41 | buf[idx] = '\0'; | 45 | buf[idx] = '\0'; |
42 | htmlf("<tr><td class='no'>%d</td><td class='txt'>", | 46 | htmlf("<tr><td class='no'>%d</td><td class='txt'>", |
43 | ++lineno); | 47 | ++lineno); |
44 | html_txt(buf + start); | 48 | html_txt(buf + start); |
45 | html("</td></tr>\n"); | 49 | html("</td></tr>\n"); |
46 | start = idx + 1; | 50 | start = idx + 1; |
47 | } | 51 | } |
48 | idx++; | 52 | idx++; |
49 | } | 53 | } |
50 | html("</table>\n"); | 54 | html("</table>\n"); |
51 | } | 55 | } |
52 | 56 | ||
53 | 57 | ||
54 | static int ls_item(const unsigned char *sha1, const char *base, int baselen, | 58 | static int ls_item(const unsigned char *sha1, const char *base, int baselen, |
55 | const char *pathname, unsigned int mode, int stage) | 59 | const char *pathname, unsigned int mode, int stage) |
56 | { | 60 | { |
57 | char *name; | 61 | char *name; |
58 | char *fullpath; | 62 | char *fullpath; |
59 | enum object_type type; | 63 | enum object_type type; |
60 | unsigned long size = 0; | 64 | unsigned long size = 0; |
61 | 65 | ||
62 | name = xstrdup(pathname); | 66 | name = xstrdup(pathname); |
63 | fullpath = fmt("%s%s%s", cgit_query_path ? cgit_query_path : "", | 67 | fullpath = fmt("%s%s%s", cgit_query_path ? cgit_query_path : "", |
64 | cgit_query_path ? "/" : "", name); | 68 | cgit_query_path ? "/" : "", name); |
65 | 69 | ||
66 | type = sha1_object_info(sha1, &size); | 70 | type = sha1_object_info(sha1, &size); |
67 | if (type == OBJ_BAD && !S_ISDIRLNK(mode)) { | 71 | if (type == OBJ_BAD && !S_ISDIRLNK(mode)) { |
68 | htmlf("<tr><td colspan='3'>Bad object: %s %s</td></tr>", | 72 | htmlf("<tr><td colspan='3'>Bad object: %s %s</td></tr>", |
69 | name, | 73 | name, |
70 | sha1_to_hex(sha1)); | 74 | sha1_to_hex(sha1)); |
71 | return 0; | 75 | return 0; |
72 | } | 76 | } |
73 | 77 | ||
74 | html("<tr><td class='ls-mode'>"); | 78 | html("<tr><td class='ls-mode'>"); |
75 | html_filemode(mode); | 79 | html_filemode(mode); |
76 | html("</td><td>"); | 80 | html("</td><td>"); |
77 | if (S_ISDIRLNK(mode)) { | 81 | if (S_ISDIRLNK(mode)) { |
78 | htmlf("<a class='ls-mod' href='"); | 82 | htmlf("<a class='ls-mod' href='"); |
79 | html_attr(fmt(cgit_repo->module_link, | 83 | html_attr(fmt(cgit_repo->module_link, |
80 | name, | 84 | name, |
81 | sha1_to_hex(sha1))); | 85 | sha1_to_hex(sha1))); |
82 | html("'>"); | 86 | html("'>"); |
83 | html_txt(name); | 87 | html_txt(name); |
84 | html("</a>"); | 88 | html("</a>"); |
85 | } else if (S_ISDIR(mode)) { | 89 | } else if (S_ISDIR(mode)) { |
86 | cgit_tree_link(name, NULL, "ls-dir", cgit_query_head, | 90 | cgit_tree_link(name, NULL, "ls-dir", cgit_query_head, |
87 | curr_rev, fullpath); | 91 | curr_rev, fullpath); |
88 | } else { | 92 | } else { |
89 | cgit_tree_link(name, NULL, "ls-blob", cgit_query_head, | 93 | cgit_tree_link(name, NULL, "ls-blob", cgit_query_head, |
90 | curr_rev, fullpath); | 94 | curr_rev, fullpath); |
91 | } | 95 | } |
92 | htmlf("</td><td class='ls-size'>%li</td>", size); | 96 | htmlf("</td><td class='ls-size'>%li</td>", size); |
93 | 97 | ||
94 | html("<td>"); | 98 | html("<td>"); |
95 | cgit_log_link("log", NULL, "button", cgit_query_head, curr_rev, | 99 | cgit_log_link("log", NULL, "button", cgit_query_head, curr_rev, |
96 | fullpath, 0); | 100 | fullpath, 0); |
97 | html("</td></tr>\n"); | 101 | html("</td></tr>\n"); |
98 | free(name); | 102 | free(name); |
99 | return 0; | 103 | return 0; |
100 | } | 104 | } |
101 | 105 | ||
102 | static void ls_head() | 106 | static void ls_head() |
103 | { | 107 | { |
104 | html("<table class='list'>\n"); | 108 | html("<table class='list'>\n"); |
105 | html("<tr class='nohover'>"); | 109 | html("<tr class='nohover'>"); |
106 | html("<th class='left'>Mode</th>"); | 110 | html("<th class='left'>Mode</th>"); |
107 | html("<th class='left'>Name</th>"); | 111 | html("<th class='left'>Name</th>"); |
108 | html("<th class='right'>Size</th>"); | 112 | html("<th class='right'>Size</th>"); |
109 | html("<th/>"); | 113 | html("<th/>"); |
110 | html("</tr>\n"); | 114 | html("</tr>\n"); |
111 | header = 1; | 115 | header = 1; |
112 | } | 116 | } |
113 | 117 | ||
114 | static void ls_tail() | 118 | static void ls_tail() |
115 | { | 119 | { |
116 | if (!header) | 120 | if (!header) |
117 | return; | 121 | return; |
118 | html("</table>\n"); | 122 | html("</table>\n"); |
119 | header = 0; | 123 | header = 0; |
120 | } | 124 | } |
121 | 125 | ||
122 | static void ls_tree(const unsigned char *sha1, char *path) | 126 | static void ls_tree(const unsigned char *sha1, char *path) |
123 | { | 127 | { |
124 | struct tree *tree; | 128 | struct tree *tree; |
125 | 129 | ||
126 | tree = parse_tree_indirect(sha1); | 130 | tree = parse_tree_indirect(sha1); |
127 | if (!tree) { | 131 | if (!tree) { |
128 | cgit_print_error(fmt("Not a tree object: %s", | 132 | cgit_print_error(fmt("Not a tree object: %s", |
129 | sha1_to_hex(sha1))); | 133 | sha1_to_hex(sha1))); |
130 | return; | 134 | return; |
131 | } | 135 | } |
132 | 136 | ||
133 | ls_head(); | 137 | ls_head(); |
134 | read_tree_recursive(tree, "", 0, 1, NULL, ls_item); | 138 | read_tree_recursive(tree, "", 0, 1, NULL, ls_item); |
135 | ls_tail(); | 139 | ls_tail(); |
136 | } | 140 | } |
137 | 141 | ||
138 | 142 | ||
139 | static int walk_tree(const unsigned char *sha1, const char *base, int baselen, | 143 | static int walk_tree(const unsigned char *sha1, const char *base, int baselen, |
140 | const char *pathname, unsigned mode, int stage) | 144 | const char *pathname, unsigned mode, int stage) |
141 | { | 145 | { |
142 | static int state; | 146 | static int state; |
143 | static char buffer[PATH_MAX]; | 147 | static char buffer[PATH_MAX]; |
144 | char *url; | 148 | char *url; |
145 | 149 | ||
146 | if (state == 0) { | 150 | if (state == 0) { |
147 | memcpy(buffer, base, baselen); | 151 | memcpy(buffer, base, baselen); |
148 | strcpy(buffer+baselen, pathname); | 152 | strcpy(buffer+baselen, pathname); |
149 | url = cgit_pageurl(cgit_query_repo, "tree", | 153 | url = cgit_pageurl(cgit_query_repo, "tree", |
150 | fmt("h=%s&path=%s", curr_rev, buffer)); | 154 | fmt("h=%s&path=%s", curr_rev, buffer)); |
151 | html("/"); | 155 | html("/"); |
152 | cgit_tree_link(xstrdup(pathname), NULL, NULL, cgit_query_head, | 156 | cgit_tree_link(xstrdup(pathname), NULL, NULL, cgit_query_head, |
153 | curr_rev, buffer); | 157 | curr_rev, buffer); |
154 | 158 | ||
155 | if (strcmp(match_path, buffer)) | 159 | if (strcmp(match_path, buffer)) |
156 | return READ_TREE_RECURSIVE; | 160 | return READ_TREE_RECURSIVE; |
157 | 161 | ||
158 | if (S_ISDIR(mode)) { | 162 | if (S_ISDIR(mode)) { |
159 | state = 1; | 163 | state = 1; |
160 | ls_head(); | 164 | ls_head(); |
161 | return READ_TREE_RECURSIVE; | 165 | return READ_TREE_RECURSIVE; |
162 | } else { | 166 | } else { |
163 | print_object(sha1, buffer); | 167 | print_object(sha1, buffer); |
164 | return 0; | 168 | return 0; |
165 | } | 169 | } |
166 | } | 170 | } |
167 | ls_item(sha1, base, baselen, pathname, mode, stage); | 171 | ls_item(sha1, base, baselen, pathname, mode, stage); |
168 | return 0; | 172 | return 0; |
169 | } | 173 | } |
170 | 174 | ||
171 | 175 | ||
172 | /* | 176 | /* |
173 | * Show a tree or a blob | 177 | * Show a tree or a blob |
174 | * rev: the commit pointing at the root tree object | 178 | * rev: the commit pointing at the root tree object |
175 | * path: path to tree or blob | 179 | * path: path to tree or blob |
176 | */ | 180 | */ |
177 | void cgit_print_tree(const char *rev, char *path) | 181 | void cgit_print_tree(const char *rev, char *path) |
178 | { | 182 | { |
179 | unsigned char sha1[20]; | 183 | unsigned char sha1[20]; |
180 | struct commit *commit; | 184 | struct commit *commit; |
181 | const char *paths[] = {path, NULL}; | 185 | const char *paths[] = {path, NULL}; |
182 | 186 | ||
183 | if (!rev) | 187 | if (!rev) |
184 | rev = cgit_query_head; | 188 | rev = cgit_query_head; |
185 | 189 | ||
186 | curr_rev = xstrdup(rev); | 190 | curr_rev = xstrdup(rev); |
187 | if (get_sha1(rev, sha1)) { | 191 | if (get_sha1(rev, sha1)) { |
188 | cgit_print_error(fmt("Invalid revision name: %s", rev)); | 192 | cgit_print_error(fmt("Invalid revision name: %s", rev)); |
189 | return; | 193 | return; |
190 | } | 194 | } |
191 | commit = lookup_commit_reference(sha1); | 195 | commit = lookup_commit_reference(sha1); |
192 | if (!commit || parse_commit(commit)) { | 196 | if (!commit || parse_commit(commit)) { |
193 | cgit_print_error(fmt("Invalid commit reference: %s", rev)); | 197 | cgit_print_error(fmt("Invalid commit reference: %s", rev)); |
194 | return; | 198 | return; |
195 | } | 199 | } |
196 | 200 | ||
197 | html("path: <a href='"); | 201 | html("path: <a href='"); |
198 | html_attr(cgit_pageurl(cgit_query_repo, "tree", fmt("h=%s", rev))); | 202 | html_attr(cgit_pageurl(cgit_query_repo, "tree", fmt("h=%s", rev))); |
199 | html("'>root</a>"); | 203 | html("'>root</a>"); |
200 | 204 | ||
201 | if (path == NULL) { | 205 | if (path == NULL) { |
202 | ls_tree(commit->tree->object.sha1, NULL); | 206 | ls_tree(commit->tree->object.sha1, NULL); |
203 | return; | 207 | return; |
204 | } | 208 | } |
205 | 209 | ||
206 | match_path = path; | 210 | match_path = path; |
207 | read_tree_recursive(commit->tree, NULL, 0, 0, paths, walk_tree); | 211 | read_tree_recursive(commit->tree, NULL, 0, 0, paths, walk_tree); |
208 | ls_tail(); | 212 | ls_tail(); |
209 | } | 213 | } |