summaryrefslogtreecommitdiffabout
path: root/shared.c
authorLars Hjemli <hjemli@gmail.com>2008-02-16 10:53:40 (UTC)
committer Lars Hjemli <hjemli@gmail.com>2008-02-16 11:07:28 (UTC)
commitd14d77fe95c3b6224b40df9b101dded0deea913c (patch) (unidiff)
tree7e0d9c8f2c0f86b8946aea0bb823085c33b164b3 /shared.c
parente5ed227ef0da561e2bde8646ec816842392377ee (diff)
downloadcgit-d14d77fe95c3b6224b40df9b101dded0deea913c.zip
cgit-d14d77fe95c3b6224b40df9b101dded0deea913c.tar.gz
cgit-d14d77fe95c3b6224b40df9b101dded0deea913c.tar.bz2
Introduce struct cgit_context
This struct will hold all the cgit runtime information currently found in a multitude of global variables. The first cleanup removes all querystring-related variables. Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to 'shared.c') (more/less context) (ignore whitespace changes)
-rw-r--r--shared.c43
1 files changed, 14 insertions, 29 deletions
diff --git a/shared.c b/shared.c
index f063894..6c1a762 100644
--- a/shared.c
+++ b/shared.c
@@ -1,93 +1,78 @@
1/* shared.c: global vars + some callback functions 1/* shared.c: global vars + some callback functions
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
11struct repolist cgit_repolist; 11struct repolist cgit_repolist;
12struct repoinfo *cgit_repo; 12struct repoinfo *cgit_repo;
13struct cgit_context ctx;
13int cgit_cmd; 14int cgit_cmd;
14 15
15const char *cgit_version = CGIT_VERSION; 16const char *cgit_version = CGIT_VERSION;
16 17
17char *cgit_root_title = "Git repository browser"; 18char *cgit_root_title = "Git repository browser";
18char *cgit_css = "/cgit.css"; 19char *cgit_css = "/cgit.css";
19char *cgit_logo = "/git-logo.png"; 20char *cgit_logo = "/git-logo.png";
20char *cgit_index_header = NULL; 21char *cgit_index_header = NULL;
21char *cgit_index_info = NULL; 22char *cgit_index_info = NULL;
22char *cgit_logo_link = "http://www.kernel.org/pub/software/scm/git/docs/"; 23char *cgit_logo_link = "http://www.kernel.org/pub/software/scm/git/docs/";
23char *cgit_module_link = "./?repo=%s&page=commit&id=%s"; 24char *cgit_module_link = "./?repo=%s&page=commit&id=%s";
24char *cgit_agefile = "info/web/last-modified"; 25char *cgit_agefile = "info/web/last-modified";
25char *cgit_virtual_root = NULL; 26char *cgit_virtual_root = NULL;
26char *cgit_script_name = CGIT_SCRIPT_NAME; 27char *cgit_script_name = CGIT_SCRIPT_NAME;
27char *cgit_cache_root = CGIT_CACHE_ROOT; 28char *cgit_cache_root = CGIT_CACHE_ROOT;
28char *cgit_repo_group = NULL; 29char *cgit_repo_group = NULL;
29char *cgit_robots = "index, nofollow"; 30char *cgit_robots = "index, nofollow";
30char *cgit_clone_prefix = NULL; 31char *cgit_clone_prefix = NULL;
31 32
32int cgit_nocache = 0; 33int cgit_nocache = 0;
33int cgit_snapshots = 0; 34int cgit_snapshots = 0;
34int cgit_enable_index_links = 0; 35int cgit_enable_index_links = 0;
35int cgit_enable_log_filecount = 0; 36int cgit_enable_log_filecount = 0;
36int cgit_enable_log_linecount = 0; 37int cgit_enable_log_linecount = 0;
37int cgit_max_lock_attempts = 5; 38int cgit_max_lock_attempts = 5;
38int cgit_cache_root_ttl = 5; 39int cgit_cache_root_ttl = 5;
39int cgit_cache_repo_ttl = 5; 40int cgit_cache_repo_ttl = 5;
40int cgit_cache_dynamic_ttl = 5; 41int cgit_cache_dynamic_ttl = 5;
41int cgit_cache_static_ttl = -1; 42int cgit_cache_static_ttl = -1;
42int cgit_cache_max_create_time = 5; 43int cgit_cache_max_create_time = 5;
43int cgit_summary_log = 0; 44int cgit_summary_log = 0;
44int cgit_summary_tags = 0; 45int cgit_summary_tags = 0;
45int cgit_summary_branches = 0; 46int cgit_summary_branches = 0;
46int cgit_renamelimit = -1; 47int cgit_renamelimit = -1;
47 48
48int cgit_max_msg_len = 60; 49int cgit_max_msg_len = 60;
49int cgit_max_repodesc_len = 60; 50int cgit_max_repodesc_len = 60;
50int cgit_max_commit_count = 50; 51int cgit_max_commit_count = 50;
51 52
52int cgit_query_has_symref = 0;
53int cgit_query_has_sha1 = 0;
54
55char *cgit_querystring = NULL;
56char *cgit_query_repo = NULL;
57char *cgit_query_page = NULL;
58char *cgit_query_head = NULL;
59char *cgit_query_search = NULL;
60char *cgit_query_grep = NULL;
61char *cgit_query_sha1 = NULL;
62char *cgit_query_sha2 = NULL;
63char *cgit_query_path = NULL;
64char *cgit_query_name = NULL;
65int cgit_query_ofs = 0;
66
67int htmlfd = 0; 53int htmlfd = 0;
68 54
69
70int cgit_get_cmd_index(const char *cmd) 55int cgit_get_cmd_index(const char *cmd)
71{ 56{
72 static char *cmds[] = {"log", "commit", "diff", "tree", "blob", 57 static char *cmds[] = {"log", "commit", "diff", "tree", "blob",
73 "snapshot", "tag", "refs", "patch", NULL}; 58 "snapshot", "tag", "refs", "patch", NULL};
74 int i; 59 int i;
75 60
76 for(i = 0; cmds[i]; i++) 61 for(i = 0; cmds[i]; i++)
77 if (!strcmp(cmd, cmds[i])) 62 if (!strcmp(cmd, cmds[i]))
78 return i + 1; 63 return i + 1;
79 return 0; 64 return 0;
80} 65}
81 66
82int chk_zero(int result, char *msg) 67int chk_zero(int result, char *msg)
83{ 68{
84 if (result != 0) 69 if (result != 0)
85 die("%s: %s", msg, strerror(errno)); 70 die("%s: %s", msg, strerror(errno));
86 return result; 71 return result;
87} 72}
88 73
89int chk_positive(int result, char *msg) 74int chk_positive(int result, char *msg)
90{ 75{
91 if (result <= 0) 76 if (result <= 0)
92 die("%s: %s", msg, strerror(errno)); 77 die("%s: %s", msg, strerror(errno));
93 return result; 78 return result;
@@ -218,74 +203,74 @@ void cgit_global_config_cb(const char *name, const char *value)
218 else if (cgit_repo && !strcmp(name, "repo.owner")) 203 else if (cgit_repo && !strcmp(name, "repo.owner"))
219 cgit_repo->owner = xstrdup(value); 204 cgit_repo->owner = xstrdup(value);
220 else if (cgit_repo && !strcmp(name, "repo.defbranch")) 205 else if (cgit_repo && !strcmp(name, "repo.defbranch"))
221 cgit_repo->defbranch = xstrdup(value); 206 cgit_repo->defbranch = xstrdup(value);
222 else if (cgit_repo && !strcmp(name, "repo.snapshots")) 207 else if (cgit_repo && !strcmp(name, "repo.snapshots"))
223 cgit_repo->snapshots = cgit_snapshots & cgit_parse_snapshots_mask(value); /* XXX: &? */ 208 cgit_repo->snapshots = cgit_snapshots & cgit_parse_snapshots_mask(value); /* XXX: &? */
224 else if (cgit_repo && !strcmp(name, "repo.enable-log-filecount")) 209 else if (cgit_repo && !strcmp(name, "repo.enable-log-filecount"))
225 cgit_repo->enable_log_filecount = cgit_enable_log_filecount * atoi(value); 210 cgit_repo->enable_log_filecount = cgit_enable_log_filecount * atoi(value);
226 else if (cgit_repo && !strcmp(name, "repo.enable-log-linecount")) 211 else if (cgit_repo && !strcmp(name, "repo.enable-log-linecount"))
227 cgit_repo->enable_log_linecount = cgit_enable_log_linecount * atoi(value); 212 cgit_repo->enable_log_linecount = cgit_enable_log_linecount * atoi(value);
228 else if (cgit_repo && !strcmp(name, "repo.module-link")) 213 else if (cgit_repo && !strcmp(name, "repo.module-link"))
229 cgit_repo->module_link= xstrdup(value); 214 cgit_repo->module_link= xstrdup(value);
230 else if (cgit_repo && !strcmp(name, "repo.readme") && value != NULL) { 215 else if (cgit_repo && !strcmp(name, "repo.readme") && value != NULL) {
231 if (*value == '/') 216 if (*value == '/')
232 cgit_repo->readme = xstrdup(value); 217 cgit_repo->readme = xstrdup(value);
233 else 218 else
234 cgit_repo->readme = xstrdup(fmt("%s/%s", cgit_repo->path, value)); 219 cgit_repo->readme = xstrdup(fmt("%s/%s", cgit_repo->path, value));
235 } else if (!strcmp(name, "include")) 220 } else if (!strcmp(name, "include"))
236 cgit_read_config(value, cgit_global_config_cb); 221 cgit_read_config(value, cgit_global_config_cb);
237} 222}
238 223
239void cgit_querystring_cb(const char *name, const char *value) 224void cgit_querystring_cb(const char *name, const char *value)
240{ 225{
241 if (!strcmp(name,"r")) { 226 if (!strcmp(name,"r")) {
242 cgit_query_repo = xstrdup(value); 227 ctx.qry.repo = xstrdup(value);
243 cgit_repo = cgit_get_repoinfo(value); 228 cgit_repo = cgit_get_repoinfo(value);
244 } else if (!strcmp(name, "p")) { 229 } else if (!strcmp(name, "p")) {
245 cgit_query_page = xstrdup(value); 230 ctx.qry.page = xstrdup(value);
246 cgit_cmd = cgit_get_cmd_index(value); 231 cgit_cmd = cgit_get_cmd_index(value);
247 } else if (!strcmp(name, "url")) { 232 } else if (!strcmp(name, "url")) {
248 cgit_parse_url(value); 233 cgit_parse_url(value);
249 } else if (!strcmp(name, "qt")) { 234 } else if (!strcmp(name, "qt")) {
250 cgit_query_grep = xstrdup(value); 235 ctx.qry.grep = xstrdup(value);
251 } else if (!strcmp(name, "q")) { 236 } else if (!strcmp(name, "q")) {
252 cgit_query_search = xstrdup(value); 237 ctx.qry.search = xstrdup(value);
253 } else if (!strcmp(name, "h")) { 238 } else if (!strcmp(name, "h")) {
254 cgit_query_head = xstrdup(value); 239 ctx.qry.head = xstrdup(value);
255 cgit_query_has_symref = 1; 240 ctx.qry.has_symref = 1;
256 } else if (!strcmp(name, "id")) { 241 } else if (!strcmp(name, "id")) {
257 cgit_query_sha1 = xstrdup(value); 242 ctx.qry.sha1 = xstrdup(value);
258 cgit_query_has_sha1 = 1; 243 ctx.qry.has_sha1 = 1;
259 } else if (!strcmp(name, "id2")) { 244 } else if (!strcmp(name, "id2")) {
260 cgit_query_sha2 = xstrdup(value); 245 ctx.qry.sha2 = xstrdup(value);
261 cgit_query_has_sha1 = 1; 246 ctx.qry.has_sha1 = 1;
262 } else if (!strcmp(name, "ofs")) { 247 } else if (!strcmp(name, "ofs")) {
263 cgit_query_ofs = atoi(value); 248 ctx.qry.ofs = atoi(value);
264 } else if (!strcmp(name, "path")) { 249 } else if (!strcmp(name, "path")) {
265 cgit_query_path = trim_end(value, '/'); 250 ctx.qry.path = trim_end(value, '/');
266 } else if (!strcmp(name, "name")) { 251 } else if (!strcmp(name, "name")) {
267 cgit_query_name = xstrdup(value); 252 ctx.qry.name = xstrdup(value);
268 } 253 }
269} 254}
270 255
271void *cgit_free_commitinfo(struct commitinfo *info) 256void *cgit_free_commitinfo(struct commitinfo *info)
272{ 257{
273 free(info->author); 258 free(info->author);
274 free(info->author_email); 259 free(info->author_email);
275 free(info->committer); 260 free(info->committer);
276 free(info->committer_email); 261 free(info->committer_email);
277 free(info->subject); 262 free(info->subject);
278 free(info->msg); 263 free(info->msg);
279 free(info->msg_encoding); 264 free(info->msg_encoding);
280 free(info); 265 free(info);
281 return NULL; 266 return NULL;
282} 267}
283 268
284int hextoint(char c) 269int hextoint(char c)
285{ 270{
286 if (c >= 'a' && c <= 'f') 271 if (c >= 'a' && c <= 'f')
287 return 10 + c - 'a'; 272 return 10 + c - 'a';
288 else if (c >= 'A' && c <= 'F') 273 else if (c >= 'A' && c <= 'F')
289 return 10 + c - 'A'; 274 return 10 + c - 'A';
290 else if (c >= '0' && c <= '9') 275 else if (c >= '0' && c <= '9')
291 return c - '0'; 276 return c - '0';