summaryrefslogtreecommitdiffabout
path: root/cgit.c
authorLars Hjemli <hjemli@gmail.com>2006-12-11 15:48:03 (UTC)
committer Lars Hjemli <hjemli@gmail.com>2006-12-11 15:49:18 (UTC)
commit74620f12e4f7e91cb0a0b4ca731e07272d1b65f6 (patch) (unidiff)
tree2e4db980535682c0a606d425b2937126d4b2c09b /cgit.c
parent5a106eb09b9b5e189b96cc736046a92b054f6c7f (diff)
downloadcgit-74620f12e4f7e91cb0a0b4ca731e07272d1b65f6.zip
cgit-74620f12e4f7e91cb0a0b4ca731e07272d1b65f6.tar.gz
cgit-74620f12e4f7e91cb0a0b4ca731e07272d1b65f6.tar.bz2
Move functions for repolist output into ui-repolist.c
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to 'cgit.c') (more/less context) (ignore whitespace changes)
-rw-r--r--cgit.c69
1 files changed, 0 insertions, 69 deletions
diff --git a/cgit.c b/cgit.c
index 5438fa1..b3ff512 100644
--- a/cgit.c
+++ b/cgit.c
@@ -1,423 +1,354 @@
1/* cgit.c: cgi for the git scm 1/* cgit.c: cgi for the git scm
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
11const char cgit_version[] = CGIT_VERSION; 11const char cgit_version[] = CGIT_VERSION;
12 12
13int htmlfd = 0; 13int htmlfd = 0;
14 14
15char *cgit_root = "/usr/src/git"; 15char *cgit_root = "/usr/src/git";
16char *cgit_root_title = "Git repository browser"; 16char *cgit_root_title = "Git repository browser";
17char *cgit_css = "/cgit.css"; 17char *cgit_css = "/cgit.css";
18char *cgit_logo = "/git-logo.png"; 18char *cgit_logo = "/git-logo.png";
19char *cgit_logo_link = "http://www.kernel.org/pub/software/scm/git/docs/"; 19char *cgit_logo_link = "http://www.kernel.org/pub/software/scm/git/docs/";
20char *cgit_virtual_root = NULL; 20char *cgit_virtual_root = NULL;
21 21
22char *cgit_cache_root = "/var/cache/cgit"; 22char *cgit_cache_root = "/var/cache/cgit";
23 23
24int cgit_max_lock_attempts = 5; 24int cgit_max_lock_attempts = 5;
25int cgit_cache_root_ttl = 5; 25int cgit_cache_root_ttl = 5;
26int cgit_cache_repo_ttl = 5; 26int cgit_cache_repo_ttl = 5;
27int cgit_cache_dynamic_ttl = 5; 27int cgit_cache_dynamic_ttl = 5;
28int cgit_cache_static_ttl = -1; 28int cgit_cache_static_ttl = -1;
29int cgit_cache_max_create_time = 5; 29int cgit_cache_max_create_time = 5;
30 30
31char *cgit_repo_name = NULL; 31char *cgit_repo_name = NULL;
32char *cgit_repo_desc = NULL; 32char *cgit_repo_desc = NULL;
33char *cgit_repo_owner = NULL; 33char *cgit_repo_owner = NULL;
34 34
35int cgit_query_has_symref = 0; 35int cgit_query_has_symref = 0;
36int cgit_query_has_sha1 = 0; 36int cgit_query_has_sha1 = 0;
37 37
38char *cgit_querystring = NULL; 38char *cgit_querystring = NULL;
39char *cgit_query_repo = NULL; 39char *cgit_query_repo = NULL;
40char *cgit_query_page = NULL; 40char *cgit_query_page = NULL;
41char *cgit_query_head = NULL; 41char *cgit_query_head = NULL;
42char *cgit_query_sha1 = NULL; 42char *cgit_query_sha1 = NULL;
43 43
44struct cacheitem cacheitem; 44struct cacheitem cacheitem;
45 45
46void cgit_global_config_cb(const char *name, const char *value) 46void cgit_global_config_cb(const char *name, const char *value)
47{ 47{
48 if (!strcmp(name, "root")) 48 if (!strcmp(name, "root"))
49 cgit_root = xstrdup(value); 49 cgit_root = xstrdup(value);
50 else if (!strcmp(name, "root-title")) 50 else if (!strcmp(name, "root-title"))
51 cgit_root_title = xstrdup(value); 51 cgit_root_title = xstrdup(value);
52 else if (!strcmp(name, "css")) 52 else if (!strcmp(name, "css"))
53 cgit_css = xstrdup(value); 53 cgit_css = xstrdup(value);
54 else if (!strcmp(name, "logo")) 54 else if (!strcmp(name, "logo"))
55 cgit_logo = xstrdup(value); 55 cgit_logo = xstrdup(value);
56 else if (!strcmp(name, "logo-link")) 56 else if (!strcmp(name, "logo-link"))
57 cgit_logo_link = xstrdup(value); 57 cgit_logo_link = xstrdup(value);
58 else if (!strcmp(name, "virtual-root")) 58 else if (!strcmp(name, "virtual-root"))
59 cgit_virtual_root = xstrdup(value); 59 cgit_virtual_root = xstrdup(value);
60} 60}
61 61
62void cgit_repo_config_cb(const char *name, const char *value) 62void cgit_repo_config_cb(const char *name, const char *value)
63{ 63{
64 if (!strcmp(name, "name")) 64 if (!strcmp(name, "name"))
65 cgit_repo_name = xstrdup(value); 65 cgit_repo_name = xstrdup(value);
66 else if (!strcmp(name, "desc")) 66 else if (!strcmp(name, "desc"))
67 cgit_repo_desc = xstrdup(value); 67 cgit_repo_desc = xstrdup(value);
68 else if (!strcmp(name, "owner")) 68 else if (!strcmp(name, "owner"))
69 cgit_repo_owner = xstrdup(value); 69 cgit_repo_owner = xstrdup(value);
70} 70}
71 71
72void cgit_querystring_cb(const char *name, const char *value) 72void cgit_querystring_cb(const char *name, const char *value)
73{ 73{
74 if (!strcmp(name,"r")) 74 if (!strcmp(name,"r"))
75 cgit_query_repo = xstrdup(value); 75 cgit_query_repo = xstrdup(value);
76 else if (!strcmp(name, "p")) 76 else if (!strcmp(name, "p"))
77 cgit_query_page = xstrdup(value); 77 cgit_query_page = xstrdup(value);
78 else if (!strcmp(name, "h")) { 78 else if (!strcmp(name, "h")) {
79 cgit_query_head = xstrdup(value); 79 cgit_query_head = xstrdup(value);
80 cgit_query_has_symref = 1; 80 cgit_query_has_symref = 1;
81 } else if (!strcmp(name, "id")) { 81 } else if (!strcmp(name, "id")) {
82 cgit_query_sha1 = xstrdup(value); 82 cgit_query_sha1 = xstrdup(value);
83 cgit_query_has_sha1 = 1; 83 cgit_query_has_sha1 = 1;
84 } 84 }
85} 85}
86 86
87char *cgit_repourl(const char *reponame)
88{
89 if (cgit_virtual_root) {
90 return fmt("%s/%s/", cgit_virtual_root, reponame);
91 } else {
92 return fmt("?r=%s", reponame);
93 }
94}
95
96char *cgit_pageurl(const char *reponame, const char *pagename,
97 const char *query)
98{
99 if (cgit_virtual_root) {
100 return fmt("%s/%s/%s/?%s", cgit_virtual_root, reponame,
101 pagename, query);
102 } else {
103 return fmt("?r=%s&p=%s&%s", reponame, pagename, query);
104 }
105}
106
107static int cgit_print_branch_cb(const char *refname, const unsigned char *sha1, 87static int cgit_print_branch_cb(const char *refname, const unsigned char *sha1,
108 int flags, void *cb_data) 88 int flags, void *cb_data)
109{ 89{
110 struct commit *commit; 90 struct commit *commit;
111 char buf[256], *url; 91 char buf[256], *url;
112 92
113 commit = lookup_commit(sha1); 93 commit = lookup_commit(sha1);
114 if (commit && !parse_commit(commit)){ 94 if (commit && !parse_commit(commit)){
115 html("<tr><td>"); 95 html("<tr><td>");
116 url = cgit_pageurl(cgit_query_repo, "log", 96 url = cgit_pageurl(cgit_query_repo, "log",
117 fmt("h=%s", refname)); 97 fmt("h=%s", refname));
118 html_link_open(url, NULL, NULL); 98 html_link_open(url, NULL, NULL);
119 strncpy(buf, refname, sizeof(buf)); 99 strncpy(buf, refname, sizeof(buf));
120 html_txt(buf); 100 html_txt(buf);
121 html_link_close(); 101 html_link_close();
122 html("</td><td>"); 102 html("</td><td>");
123 pretty_print_commit(CMIT_FMT_ONELINE, commit, ~0, buf, 103 pretty_print_commit(CMIT_FMT_ONELINE, commit, ~0, buf,
124 sizeof(buf), 0, NULL, NULL, 0); 104 sizeof(buf), 0, NULL, NULL, 0);
125 html_txt(buf); 105 html_txt(buf);
126 html("</td></tr>\n"); 106 html("</td></tr>\n");
127 } else { 107 } else {
128 html("<tr><td>"); 108 html("<tr><td>");
129 html_txt(buf); 109 html_txt(buf);
130 html("</td><td>"); 110 html("</td><td>");
131 htmlf("*** bad ref %s", sha1_to_hex(sha1)); 111 htmlf("*** bad ref %s", sha1_to_hex(sha1));
132 html("</td></tr>\n"); 112 html("</td></tr>\n");
133 } 113 }
134 return 0; 114 return 0;
135} 115}
136 116
137static void cgit_print_repolist(struct cacheitem *item)
138{
139 DIR *d;
140 struct dirent *de;
141 struct stat st;
142 char *name;
143
144 chdir(cgit_root);
145 cgit_print_docstart(cgit_root_title, item);
146 cgit_print_pageheader(cgit_root_title);
147
148 if (!(d = opendir("."))) {
149 cgit_print_error(fmt("Unable to scan repository directory: %s",
150 strerror(errno)));
151 cgit_print_docend();
152 return;
153 }
154
155 html("<h2>Repositories</h2>\n");
156 html("<table class='list'>");
157 html("<tr><th>Name</th><th>Description</th><th>Owner</th></tr>\n");
158 while ((de = readdir(d)) != NULL) {
159 if (de->d_name[0] == '.')
160 continue;
161 if (stat(de->d_name, &st) < 0)
162 continue;
163 if (!S_ISDIR(st.st_mode))
164 continue;
165
166 cgit_repo_name = cgit_repo_desc = cgit_repo_owner = NULL;
167 name = fmt("%s/info/cgit", de->d_name);
168 if (cgit_read_config(name, cgit_repo_config_cb))
169 continue;
170
171 html("<tr><td>");
172 html_link_open(cgit_repourl(de->d_name), NULL, NULL);
173 html_txt(cgit_repo_name);
174 html_link_close();
175 html("</td><td>");
176 html_txt(cgit_repo_desc);
177 html("</td><td>");
178 html_txt(cgit_repo_owner);
179 html("</td></tr>\n");
180 }
181 closedir(d);
182 html("</table>");
183 cgit_print_docend();
184}
185
186static void cgit_print_branches() 117static void cgit_print_branches()
187{ 118{
188 html("<table class='list'>"); 119 html("<table class='list'>");
189 html("<tr><th>Branch name</th><th>Head commit</th></tr>\n"); 120 html("<tr><th>Branch name</th><th>Head commit</th></tr>\n");
190 for_each_branch_ref(cgit_print_branch_cb, NULL); 121 for_each_branch_ref(cgit_print_branch_cb, NULL);
191 html("</table>"); 122 html("</table>");
192} 123}
193 124
194static int get_one_line(char *txt) 125static int get_one_line(char *txt)
195{ 126{
196 char *t; 127 char *t;
197 128
198 for(t=txt; *t != '\n' && t != '\0'; t++) 129 for(t=txt; *t != '\n' && t != '\0'; t++)
199 ; 130 ;
200 *t = '\0'; 131 *t = '\0';
201 return t-txt-1; 132 return t-txt-1;
202} 133}
203 134
204static void cgit_print_commit_shortlog(struct commit *commit) 135static void cgit_print_commit_shortlog(struct commit *commit)
205{ 136{
206 char *h, *t, *p; 137 char *h, *t, *p;
207 char *tree = NULL, *author = NULL, *subject = NULL; 138 char *tree = NULL, *author = NULL, *subject = NULL;
208 int len; 139 int len;
209 time_t sec; 140 time_t sec;
210 struct tm *time; 141 struct tm *time;
211 char buf[32]; 142 char buf[32];
212 143
213 h = t = commit->buffer; 144 h = t = commit->buffer;
214 145
215 if (strncmp(h, "tree ", 5)) 146 if (strncmp(h, "tree ", 5))
216 die("Bad commit format: %s", 147 die("Bad commit format: %s",
217 sha1_to_hex(commit->object.sha1)); 148 sha1_to_hex(commit->object.sha1));
218 149
219 len = get_one_line(h); 150 len = get_one_line(h);
220 tree = h+5; 151 tree = h+5;
221 h += len + 2; 152 h += len + 2;
222 153
223 while (!strncmp(h, "parent ", 7)) 154 while (!strncmp(h, "parent ", 7))
224 h += get_one_line(h) + 2; 155 h += get_one_line(h) + 2;
225 156
226 if (!strncmp(h, "author ", 7)) { 157 if (!strncmp(h, "author ", 7)) {
227 author = h+7; 158 author = h+7;
228 h += get_one_line(h) + 2; 159 h += get_one_line(h) + 2;
229 t = author; 160 t = author;
230 while(t!=h && *t!='<') 161 while(t!=h && *t!='<')
231 t++; 162 t++;
232 *t='\0'; 163 *t='\0';
233 p = t; 164 p = t;
234 while(--t!=author && *t==' ') 165 while(--t!=author && *t==' ')
235 *t='\0'; 166 *t='\0';
236 while(++p!=h && *p!='>') 167 while(++p!=h && *p!='>')
237 ; 168 ;
238 while(++p!=h && !isdigit(*p)) 169 while(++p!=h && !isdigit(*p))
239 ; 170 ;
240 171
241 t = p; 172 t = p;
242 while(++p && isdigit(*p)) 173 while(++p && isdigit(*p))
243 ; 174 ;
244 *p = '\0'; 175 *p = '\0';
245 sec = atoi(t); 176 sec = atoi(t);
246 time = gmtime(&sec); 177 time = gmtime(&sec);
247 } 178 }
248 179
249 while((len = get_one_line(h)) > 0) 180 while((len = get_one_line(h)) > 0)
250 h += len+2; 181 h += len+2;
251 182
252 h++; 183 h++;
253 len = get_one_line(h); 184 len = get_one_line(h);
254 185
255 subject = h; 186 subject = h;
256 187
257 html("<tr><td>"); 188 html("<tr><td>");
258 strftime(buf, sizeof(buf), "%Y-%m-%d %H:%M:%S", time); 189 strftime(buf, sizeof(buf), "%Y-%m-%d %H:%M:%S", time);
259 html_txt(buf); 190 html_txt(buf);
260 html("</td><td>"); 191 html("</td><td>");
261 char *qry = fmt("id=%s", sha1_to_hex(commit->object.sha1)); 192 char *qry = fmt("id=%s", sha1_to_hex(commit->object.sha1));
262 char *url = cgit_pageurl(cgit_query_repo, "view", qry); 193 char *url = cgit_pageurl(cgit_query_repo, "view", qry);
263 html_link_open(url, NULL, NULL); 194 html_link_open(url, NULL, NULL);
264 html_txt(subject); 195 html_txt(subject);
265 html_link_close(); 196 html_link_close();
266 html("</td><td>"); 197 html("</td><td>");
267 html_txt(author); 198 html_txt(author);
268 html("</td></tr>\n"); 199 html("</td></tr>\n");
269} 200}
270 201
271static void cgit_print_log(const char *tip, int ofs, int cnt) 202static void cgit_print_log(const char *tip, int ofs, int cnt)
272{ 203{
273 struct rev_info rev; 204 struct rev_info rev;
274 struct commit *commit; 205 struct commit *commit;
275 const char *argv[2] = {NULL, tip}; 206 const char *argv[2] = {NULL, tip};
276 int n = 0; 207 int n = 0;
277 208
278 init_revisions(&rev, NULL); 209 init_revisions(&rev, NULL);
279 rev.abbrev = DEFAULT_ABBREV; 210 rev.abbrev = DEFAULT_ABBREV;
280 rev.commit_format = CMIT_FMT_DEFAULT; 211 rev.commit_format = CMIT_FMT_DEFAULT;
281 rev.verbose_header = 1; 212 rev.verbose_header = 1;
282 rev.show_root_diff = 0; 213 rev.show_root_diff = 0;
283 setup_revisions(2, argv, &rev, NULL); 214 setup_revisions(2, argv, &rev, NULL);
284 prepare_revision_walk(&rev); 215 prepare_revision_walk(&rev);
285 216
286 html("<h2>Log</h2>"); 217 html("<h2>Log</h2>");
287 html("<table class='list'>"); 218 html("<table class='list'>");
288 html("<tr><th>Date</th><th>Message</th><th>Author</th></tr>\n"); 219 html("<tr><th>Date</th><th>Message</th><th>Author</th></tr>\n");
289 while ((commit = get_revision(&rev)) != NULL && n++ < 100) { 220 while ((commit = get_revision(&rev)) != NULL && n++ < 100) {
290 cgit_print_commit_shortlog(commit); 221 cgit_print_commit_shortlog(commit);
291 free(commit->buffer); 222 free(commit->buffer);
292 commit->buffer = NULL; 223 commit->buffer = NULL;
293 free_commit_list(commit->parents); 224 free_commit_list(commit->parents);
294 commit->parents = NULL; 225 commit->parents = NULL;
295 } 226 }
296 html("</table>\n"); 227 html("</table>\n");
297} 228}
298 229
299static void cgit_print_repo_summary() 230static void cgit_print_repo_summary()
300{ 231{
301 html("<h2>"); 232 html("<h2>");
302 html_txt("Repo summary page"); 233 html_txt("Repo summary page");
303 html("</h2>"); 234 html("</h2>");
304 cgit_print_branches(); 235 cgit_print_branches();
305} 236}
306 237
307static void cgit_print_object(char *hex) 238static void cgit_print_object(char *hex)
308{ 239{
309 unsigned char sha1[20]; 240 unsigned char sha1[20];
310 //struct object *object; 241 //struct object *object;
311 char type[20]; 242 char type[20];
312 unsigned char *buf; 243 unsigned char *buf;
313 unsigned long size; 244 unsigned long size;
314 245
315 if (get_sha1_hex(hex, sha1)){ 246 if (get_sha1_hex(hex, sha1)){
316 cgit_print_error(fmt("Bad hex value: %s", hex)); 247 cgit_print_error(fmt("Bad hex value: %s", hex));
317 return; 248 return;
318 } 249 }
319 250
320 if (sha1_object_info(sha1, type, NULL)){ 251 if (sha1_object_info(sha1, type, NULL)){
321 cgit_print_error("Bad object name"); 252 cgit_print_error("Bad object name");
322 return; 253 return;
323 } 254 }
324 255
325 buf = read_sha1_file(sha1, type, &size); 256 buf = read_sha1_file(sha1, type, &size);
326 if (!buf) { 257 if (!buf) {
327 cgit_print_error("Error reading object"); 258 cgit_print_error("Error reading object");
328 return; 259 return;
329 } 260 }
330 261
331 buf[size] = '\0'; 262 buf[size] = '\0';
332 html("<h2>Object view</h2>"); 263 html("<h2>Object view</h2>");
333 htmlf("sha1=%s<br/>type=%s<br/>size=%i<br/>", hex, type, size); 264 htmlf("sha1=%s<br/>type=%s<br/>size=%i<br/>", hex, type, size);
334 html("<pre>"); 265 html("<pre>");
335 html_txt(buf); 266 html_txt(buf);
336 html("</pre>"); 267 html("</pre>");
337} 268}
338 269
339static void cgit_print_repo_page(struct cacheitem *item) 270static void cgit_print_repo_page(struct cacheitem *item)
340{ 271{
341 if (chdir(fmt("%s/%s", cgit_root, cgit_query_repo)) || 272 if (chdir(fmt("%s/%s", cgit_root, cgit_query_repo)) ||
342 cgit_read_config("info/cgit", cgit_repo_config_cb)) { 273 cgit_read_config("info/cgit", cgit_repo_config_cb)) {
343 char *title = fmt("%s - %s", cgit_root_title, "Bad request"); 274 char *title = fmt("%s - %s", cgit_root_title, "Bad request");
344 cgit_print_docstart(title, item); 275 cgit_print_docstart(title, item);
345 cgit_print_pageheader(title); 276 cgit_print_pageheader(title);
346 cgit_print_error(fmt("Unable to scan repository: %s", 277 cgit_print_error(fmt("Unable to scan repository: %s",
347 strerror(errno))); 278 strerror(errno)));
348 cgit_print_docend(); 279 cgit_print_docend();
349 return; 280 return;
350 } 281 }
351 setenv("GIT_DIR", fmt("%s/%s", cgit_root, cgit_query_repo), 1); 282 setenv("GIT_DIR", fmt("%s/%s", cgit_root, cgit_query_repo), 1);
352 char *title = fmt("%s - %s", cgit_repo_name, cgit_repo_desc); 283 char *title = fmt("%s - %s", cgit_repo_name, cgit_repo_desc);
353 cgit_print_docstart(title, item); 284 cgit_print_docstart(title, item);
354 cgit_print_pageheader(title); 285 cgit_print_pageheader(title);
355 if (!cgit_query_page) 286 if (!cgit_query_page)
356 cgit_print_repo_summary(); 287 cgit_print_repo_summary();
357 else if (!strcmp(cgit_query_page, "log")) { 288 else if (!strcmp(cgit_query_page, "log")) {
358 cgit_print_log(cgit_query_head, 0, 100); 289 cgit_print_log(cgit_query_head, 0, 100);
359 } else if (!strcmp(cgit_query_page, "view")) { 290 } else if (!strcmp(cgit_query_page, "view")) {
360 cgit_print_object(cgit_query_sha1); 291 cgit_print_object(cgit_query_sha1);
361 } 292 }
362 cgit_print_docend(); 293 cgit_print_docend();
363} 294}
364 295
365static void cgit_fill_cache(struct cacheitem *item) 296static void cgit_fill_cache(struct cacheitem *item)
366{ 297{
367 htmlfd = item->fd; 298 htmlfd = item->fd;
368 item->st.st_mtime = time(NULL); 299 item->st.st_mtime = time(NULL);
369 if (cgit_query_repo) 300 if (cgit_query_repo)
370 cgit_print_repo_page(item); 301 cgit_print_repo_page(item);
371 else 302 else
372 cgit_print_repolist(item); 303 cgit_print_repolist(item);
373} 304}
374 305
375static void cgit_refresh_cache(struct cacheitem *item) 306static void cgit_refresh_cache(struct cacheitem *item)
376{ 307{
377 int i = 0; 308 int i = 0;
378 309
379 cache_prepare(item); 310 cache_prepare(item);
380 top: 311 top:
381 if (++i > cgit_max_lock_attempts) { 312 if (++i > cgit_max_lock_attempts) {
382 die("cgit_refresh_cache: unable to lock %s: %s", 313 die("cgit_refresh_cache: unable to lock %s: %s",
383 item->name, strerror(errno)); 314 item->name, strerror(errno));
384 } 315 }
385 if (!cache_exist(item)) { 316 if (!cache_exist(item)) {
386 if (!cache_lock(item)) { 317 if (!cache_lock(item)) {
387 sleep(1); 318 sleep(1);
388 goto top; 319 goto top;
389 } 320 }
390 if (!cache_exist(item)) 321 if (!cache_exist(item))
391 cgit_fill_cache(item); 322 cgit_fill_cache(item);
392 cache_unlock(item); 323 cache_unlock(item);
393 } else if (cache_expired(item) && cache_lock(item)) { 324 } else if (cache_expired(item) && cache_lock(item)) {
394 if (cache_expired(item)) 325 if (cache_expired(item))
395 cgit_fill_cache(item); 326 cgit_fill_cache(item);
396 cache_unlock(item); 327 cache_unlock(item);
397 } 328 }
398} 329}
399 330
400static void cgit_print_cache(struct cacheitem *item) 331static void cgit_print_cache(struct cacheitem *item)
401{ 332{
402 static char buf[4096]; 333 static char buf[4096];
403 ssize_t i; 334 ssize_t i;
404 335
405 int fd = open(item->name, O_RDONLY); 336 int fd = open(item->name, O_RDONLY);
406 if (fd<0) 337 if (fd<0)
407 die("Unable to open cached file %s", item->name); 338 die("Unable to open cached file %s", item->name);
408 339
409 while((i=read(fd, buf, sizeof(buf))) > 0) 340 while((i=read(fd, buf, sizeof(buf))) > 0)
410 write(STDOUT_FILENO, buf, i); 341 write(STDOUT_FILENO, buf, i);
411 342
412 close(fd); 343 close(fd);
413} 344}
414 345
415int main(int argc, const char **argv) 346int main(int argc, const char **argv)
416{ 347{
417 cgit_read_config("/etc/cgitrc", cgit_global_config_cb); 348 cgit_read_config("/etc/cgitrc", cgit_global_config_cb);
418 cgit_querystring = xstrdup(getenv("QUERY_STRING")); 349 cgit_querystring = xstrdup(getenv("QUERY_STRING"));
419 cgit_parse_query(cgit_querystring, cgit_querystring_cb); 350 cgit_parse_query(cgit_querystring, cgit_querystring_cb);
420 cgit_refresh_cache(&cacheitem); 351 cgit_refresh_cache(&cacheitem);
421 cgit_print_cache(&cacheitem); 352 cgit_print_cache(&cacheitem);
422 return 0; 353 return 0;
423} 354}