summaryrefslogtreecommitdiffabout
authorLars Hjemli <hjemli@gmail.com>2008-03-27 08:22:13 (UTC)
committer Lars Hjemli <hjemli@gmail.com>2008-03-27 08:22:13 (UTC)
commitee4056bd2c902a12dea67874368863fe60ea5a5f (patch) (unidiff)
treed54da54ace7b8999cf8785d877a0a9cad5262a0c
parentdc3282f0baa14949439593729a45fbe143e3622c (diff)
downloadcgit-ee4056bd2c902a12dea67874368863fe60ea5a5f.zip
cgit-ee4056bd2c902a12dea67874368863fe60ea5a5f.tar.gz
cgit-ee4056bd2c902a12dea67874368863fe60ea5a5f.tar.bz2
Add cache.h
The functions found in cache.c are only used by cgit.c, so there's no point in rebuilding all object files when the cache interface is changed. Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--cache.c1
-rw-r--r--cache.h23
-rw-r--r--cgit.c1
-rw-r--r--cgit.h14
4 files changed, 25 insertions, 14 deletions
diff --git a/cache.c b/cache.c
index 7860fc7..89f7ecd 100644
--- a/cache.c
+++ b/cache.c
@@ -1,57 +1,58 @@
1/* cache.c: cache management 1/* cache.c: cache management
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#include "cache.h"
10 11
11const int NOLOCK = -1; 12const int NOLOCK = -1;
12 13
13char *cache_safe_filename(const char *unsafe) 14char *cache_safe_filename(const char *unsafe)
14{ 15{
15 static char buf[4][PATH_MAX]; 16 static char buf[4][PATH_MAX];
16 static int bufidx; 17 static int bufidx;
17 char *s; 18 char *s;
18 char c; 19 char c;
19 20
20 bufidx++; 21 bufidx++;
21 bufidx &= 3; 22 bufidx &= 3;
22 s = buf[bufidx]; 23 s = buf[bufidx];
23 24
24 while(unsafe && (c = *unsafe++) != 0) { 25 while(unsafe && (c = *unsafe++) != 0) {
25 if (c == '/' || c == ' ' || c == '&' || c == '|' || 26 if (c == '/' || c == ' ' || c == '&' || c == '|' ||
26 c == '>' || c == '<' || c == '.') 27 c == '>' || c == '<' || c == '.')
27 c = '_'; 28 c = '_';
28 *s++ = c; 29 *s++ = c;
29 } 30 }
30 *s = '\0'; 31 *s = '\0';
31 return buf[bufidx]; 32 return buf[bufidx];
32} 33}
33 34
34int cache_exist(struct cacheitem *item) 35int cache_exist(struct cacheitem *item)
35{ 36{
36 if (stat(item->name, &item->st)) { 37 if (stat(item->name, &item->st)) {
37 item->st.st_mtime = 0; 38 item->st.st_mtime = 0;
38 return 0; 39 return 0;
39 } 40 }
40 return 1; 41 return 1;
41} 42}
42 43
43int cache_create_dirs() 44int cache_create_dirs()
44{ 45{
45 char *path; 46 char *path;
46 47
47 path = fmt("%s", ctx.cfg.cache_root); 48 path = fmt("%s", ctx.cfg.cache_root);
48 if (mkdir(path, S_IRWXU) && errno!=EEXIST) 49 if (mkdir(path, S_IRWXU) && errno!=EEXIST)
49 return 0; 50 return 0;
50 51
51 if (!ctx.repo) 52 if (!ctx.repo)
52 return 0; 53 return 0;
53 54
54 path = fmt("%s/%s", ctx.cfg.cache_root, 55 path = fmt("%s/%s", ctx.cfg.cache_root,
55 cache_safe_filename(ctx.repo->url)); 56 cache_safe_filename(ctx.repo->url));
56 57
57 if (mkdir(path, S_IRWXU) && errno!=EEXIST) 58 if (mkdir(path, S_IRWXU) && errno!=EEXIST)
diff --git a/cache.h b/cache.h
new file mode 100644
index 0000000..4dcbea3
--- a/dev/null
+++ b/cache.h
@@ -0,0 +1,23 @@
1/*
2 * Since git has it's own cache.h which we include,
3 * lets test on CGIT_CACHE_H to avoid confusion
4 */
5
6#ifndef CGIT_CACHE_H
7#define CGIT_CACHE_H
8
9struct cacheitem {
10 char *name;
11 struct stat st;
12 int ttl;
13 int fd;
14};
15
16extern char *cache_safe_filename(const char *unsafe);
17extern int cache_lock(struct cacheitem *item);
18extern int cache_unlock(struct cacheitem *item);
19extern int cache_cancel_lock(struct cacheitem *item);
20extern int cache_exist(struct cacheitem *item);
21extern int cache_expired(struct cacheitem *item);
22
23#endif /* CGIT_CACHE_H */
diff --git a/cgit.c b/cgit.c
index f749b6b..73b1f02 100644
--- a/cgit.c
+++ b/cgit.c
@@ -1,57 +1,58 @@
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#include "cache.h"
10#include "cmd.h" 11#include "cmd.h"
11#include "ui-shared.h" 12#include "ui-shared.h"
12 13
13const char *cgit_version = CGIT_VERSION; 14const char *cgit_version = CGIT_VERSION;
14 15
15void config_cb(const char *name, const char *value) 16void config_cb(const char *name, const char *value)
16{ 17{
17 if (!strcmp(name, "root-title")) 18 if (!strcmp(name, "root-title"))
18 ctx.cfg.root_title = xstrdup(value); 19 ctx.cfg.root_title = xstrdup(value);
19 else if (!strcmp(name, "css")) 20 else if (!strcmp(name, "css"))
20 ctx.cfg.css = xstrdup(value); 21 ctx.cfg.css = xstrdup(value);
21 else if (!strcmp(name, "logo")) 22 else if (!strcmp(name, "logo"))
22 ctx.cfg.logo = xstrdup(value); 23 ctx.cfg.logo = xstrdup(value);
23 else if (!strcmp(name, "index-header")) 24 else if (!strcmp(name, "index-header"))
24 ctx.cfg.index_header = xstrdup(value); 25 ctx.cfg.index_header = xstrdup(value);
25 else if (!strcmp(name, "index-info")) 26 else if (!strcmp(name, "index-info"))
26 ctx.cfg.index_info = xstrdup(value); 27 ctx.cfg.index_info = xstrdup(value);
27 else if (!strcmp(name, "logo-link")) 28 else if (!strcmp(name, "logo-link"))
28 ctx.cfg.logo_link = xstrdup(value); 29 ctx.cfg.logo_link = xstrdup(value);
29 else if (!strcmp(name, "module-link")) 30 else if (!strcmp(name, "module-link"))
30 ctx.cfg.module_link = xstrdup(value); 31 ctx.cfg.module_link = xstrdup(value);
31 else if (!strcmp(name, "virtual-root")) { 32 else if (!strcmp(name, "virtual-root")) {
32 ctx.cfg.virtual_root = trim_end(value, '/'); 33 ctx.cfg.virtual_root = trim_end(value, '/');
33 if (!ctx.cfg.virtual_root && (!strcmp(value, "/"))) 34 if (!ctx.cfg.virtual_root && (!strcmp(value, "/")))
34 ctx.cfg.virtual_root = ""; 35 ctx.cfg.virtual_root = "";
35 } else if (!strcmp(name, "nocache")) 36 } else if (!strcmp(name, "nocache"))
36 ctx.cfg.nocache = atoi(value); 37 ctx.cfg.nocache = atoi(value);
37 else if (!strcmp(name, "snapshots")) 38 else if (!strcmp(name, "snapshots"))
38 ctx.cfg.snapshots = cgit_parse_snapshots_mask(value); 39 ctx.cfg.snapshots = cgit_parse_snapshots_mask(value);
39 else if (!strcmp(name, "enable-index-links")) 40 else if (!strcmp(name, "enable-index-links"))
40 ctx.cfg.enable_index_links = atoi(value); 41 ctx.cfg.enable_index_links = atoi(value);
41 else if (!strcmp(name, "enable-log-filecount")) 42 else if (!strcmp(name, "enable-log-filecount"))
42 ctx.cfg.enable_log_filecount = atoi(value); 43 ctx.cfg.enable_log_filecount = atoi(value);
43 else if (!strcmp(name, "enable-log-linecount")) 44 else if (!strcmp(name, "enable-log-linecount"))
44 ctx.cfg.enable_log_linecount = atoi(value); 45 ctx.cfg.enable_log_linecount = atoi(value);
45 else if (!strcmp(name, "cache-root")) 46 else if (!strcmp(name, "cache-root"))
46 ctx.cfg.cache_root = xstrdup(value); 47 ctx.cfg.cache_root = xstrdup(value);
47 else if (!strcmp(name, "cache-root-ttl")) 48 else if (!strcmp(name, "cache-root-ttl"))
48 ctx.cfg.cache_root_ttl = atoi(value); 49 ctx.cfg.cache_root_ttl = atoi(value);
49 else if (!strcmp(name, "cache-repo-ttl")) 50 else if (!strcmp(name, "cache-repo-ttl"))
50 ctx.cfg.cache_repo_ttl = atoi(value); 51 ctx.cfg.cache_repo_ttl = atoi(value);
51 else if (!strcmp(name, "cache-static-ttl")) 52 else if (!strcmp(name, "cache-static-ttl"))
52 ctx.cfg.cache_static_ttl = atoi(value); 53 ctx.cfg.cache_static_ttl = atoi(value);
53 else if (!strcmp(name, "cache-dynamic-ttl")) 54 else if (!strcmp(name, "cache-dynamic-ttl"))
54 ctx.cfg.cache_dynamic_ttl = atoi(value); 55 ctx.cfg.cache_dynamic_ttl = atoi(value);
55 else if (!strcmp(name, "max-message-length")) 56 else if (!strcmp(name, "max-message-length"))
56 ctx.cfg.max_msg_len = atoi(value); 57 ctx.cfg.max_msg_len = atoi(value);
57 else if (!strcmp(name, "max-repodesc-length")) 58 else if (!strcmp(name, "max-repodesc-length"))
diff --git a/cgit.h b/cgit.h
index e82e9aa..f600912 100644
--- a/cgit.h
+++ b/cgit.h
@@ -1,103 +1,96 @@
1#ifndef CGIT_H 1#ifndef CGIT_H
2#define CGIT_H 2#define CGIT_H
3 3
4 4
5#include <git-compat-util.h> 5#include <git-compat-util.h>
6#include <cache.h> 6#include <cache.h>
7#include <grep.h> 7#include <grep.h>
8#include <object.h> 8#include <object.h>
9#include <tree.h> 9#include <tree.h>
10#include <commit.h> 10#include <commit.h>
11#include <tag.h> 11#include <tag.h>
12#include <diff.h> 12#include <diff.h>
13#include <diffcore.h> 13#include <diffcore.h>
14#include <refs.h> 14#include <refs.h>
15#include <revision.h> 15#include <revision.h>
16#include <log-tree.h> 16#include <log-tree.h>
17#include <archive.h> 17#include <archive.h>
18#include <xdiff/xdiff.h> 18#include <xdiff/xdiff.h>
19#include <utf8.h> 19#include <utf8.h>
20 20
21 21
22/* 22/*
23 * Dateformats used on misc. pages 23 * Dateformats used on misc. pages
24 */ 24 */
25#define FMT_LONGDATE "%Y-%m-%d %H:%M:%S" 25#define FMT_LONGDATE "%Y-%m-%d %H:%M:%S"
26#define FMT_SHORTDATE "%Y-%m-%d" 26#define FMT_SHORTDATE "%Y-%m-%d"
27 27
28 28
29/* 29/*
30 * Limits used for relative dates 30 * Limits used for relative dates
31 */ 31 */
32#define TM_MIN 60 32#define TM_MIN 60
33#define TM_HOUR (TM_MIN * 60) 33#define TM_HOUR (TM_MIN * 60)
34#define TM_DAY (TM_HOUR * 24) 34#define TM_DAY (TM_HOUR * 24)
35#define TM_WEEK (TM_DAY * 7) 35#define TM_WEEK (TM_DAY * 7)
36#define TM_YEAR (TM_DAY * 365) 36#define TM_YEAR (TM_DAY * 365)
37#define TM_MONTH (TM_YEAR / 12.0) 37#define TM_MONTH (TM_YEAR / 12.0)
38 38
39 39
40/* 40/*
41 * Default encoding 41 * Default encoding
42 */ 42 */
43#define PAGE_ENCODING "UTF-8" 43#define PAGE_ENCODING "UTF-8"
44 44
45typedef void (*configfn)(const char *name, const char *value); 45typedef void (*configfn)(const char *name, const char *value);
46typedef void (*filepair_fn)(struct diff_filepair *pair); 46typedef void (*filepair_fn)(struct diff_filepair *pair);
47typedef void (*linediff_fn)(char *line, int len); 47typedef void (*linediff_fn)(char *line, int len);
48 48
49struct cacheitem {
50 char *name;
51 struct stat st;
52 int ttl;
53 int fd;
54};
55
56struct cgit_repo { 49struct cgit_repo {
57 char *url; 50 char *url;
58 char *name; 51 char *name;
59 char *path; 52 char *path;
60 char *desc; 53 char *desc;
61 char *owner; 54 char *owner;
62 char *defbranch; 55 char *defbranch;
63 char *group; 56 char *group;
64 char *module_link; 57 char *module_link;
65 char *readme; 58 char *readme;
66 char *clone_url; 59 char *clone_url;
67 int snapshots; 60 int snapshots;
68 int enable_log_filecount; 61 int enable_log_filecount;
69 int enable_log_linecount; 62 int enable_log_linecount;
70}; 63};
71 64
72struct cgit_repolist { 65struct cgit_repolist {
73 int length; 66 int length;
74 int count; 67 int count;
75 struct cgit_repo *repos; 68 struct cgit_repo *repos;
76}; 69};
77 70
78struct commitinfo { 71struct commitinfo {
79 struct commit *commit; 72 struct commit *commit;
80 char *author; 73 char *author;
81 char *author_email; 74 char *author_email;
82 unsigned long author_date; 75 unsigned long author_date;
83 char *committer; 76 char *committer;
84 char *committer_email; 77 char *committer_email;
85 unsigned long committer_date; 78 unsigned long committer_date;
86 char *subject; 79 char *subject;
87 char *msg; 80 char *msg;
88 char *msg_encoding; 81 char *msg_encoding;
89}; 82};
90 83
91struct taginfo { 84struct taginfo {
92 char *tagger; 85 char *tagger;
93 char *tagger_email; 86 char *tagger_email;
94 int tagger_date; 87 int tagger_date;
95 char *msg; 88 char *msg;
96}; 89};
97 90
98struct refinfo { 91struct refinfo {
99 const char *refname; 92 const char *refname;
100 struct object *object; 93 struct object *object;
101 union { 94 union {
102 struct taginfo *tag; 95 struct taginfo *tag;
103 struct commitinfo *commit; 96 struct commitinfo *commit;
@@ -182,60 +175,53 @@ struct cgit_snapshot_format {
182 const char *mimetype; 175 const char *mimetype;
183 write_archive_fn_t write_func; 176 write_archive_fn_t write_func;
184 int bit; 177 int bit;
185}; 178};
186 179
187extern const char *cgit_version; 180extern const char *cgit_version;
188 181
189extern struct cgit_repolist cgit_repolist; 182extern struct cgit_repolist cgit_repolist;
190extern struct cgit_context ctx; 183extern struct cgit_context ctx;
191extern const struct cgit_snapshot_format cgit_snapshot_formats[]; 184extern const struct cgit_snapshot_format cgit_snapshot_formats[];
192 185
193extern struct cgit_repo *cgit_add_repo(const char *url); 186extern struct cgit_repo *cgit_add_repo(const char *url);
194extern struct cgit_repo *cgit_get_repoinfo(const char *url); 187extern struct cgit_repo *cgit_get_repoinfo(const char *url);
195extern void cgit_repo_config_cb(const char *name, const char *value); 188extern void cgit_repo_config_cb(const char *name, const char *value);
196 189
197extern int chk_zero(int result, char *msg); 190extern int chk_zero(int result, char *msg);
198extern int chk_positive(int result, char *msg); 191extern int chk_positive(int result, char *msg);
199extern int chk_non_negative(int result, char *msg); 192extern int chk_non_negative(int result, char *msg);
200 193
201extern int hextoint(char c); 194extern int hextoint(char c);
202extern char *trim_end(const char *str, char c); 195extern char *trim_end(const char *str, char c);
203extern char *strlpart(char *txt, int maxlen); 196extern char *strlpart(char *txt, int maxlen);
204extern char *strrpart(char *txt, int maxlen); 197extern char *strrpart(char *txt, int maxlen);
205 198
206extern void cgit_add_ref(struct reflist *list, struct refinfo *ref); 199extern void cgit_add_ref(struct reflist *list, struct refinfo *ref);
207extern int cgit_refs_cb(const char *refname, const unsigned char *sha1, 200extern int cgit_refs_cb(const char *refname, const unsigned char *sha1,
208 int flags, void *cb_data); 201 int flags, void *cb_data);
209 202
210extern void *cgit_free_commitinfo(struct commitinfo *info); 203extern void *cgit_free_commitinfo(struct commitinfo *info);
211 204
212extern int cgit_diff_files(const unsigned char *old_sha1, 205extern int cgit_diff_files(const unsigned char *old_sha1,
213 const unsigned char *new_sha1, 206 const unsigned char *new_sha1,
214 linediff_fn fn); 207 linediff_fn fn);
215 208
216extern void cgit_diff_tree(const unsigned char *old_sha1, 209extern void cgit_diff_tree(const unsigned char *old_sha1,
217 const unsigned char *new_sha1, 210 const unsigned char *new_sha1,
218 filepair_fn fn, const char *prefix); 211 filepair_fn fn, const char *prefix);
219 212
220extern void cgit_diff_commit(struct commit *commit, filepair_fn fn); 213extern void cgit_diff_commit(struct commit *commit, filepair_fn fn);
221 214
222extern char *fmt(const char *format,...); 215extern char *fmt(const char *format,...);
223 216
224extern int cgit_read_config(const char *filename, configfn fn); 217extern int cgit_read_config(const char *filename, configfn fn);
225extern int cgit_parse_query(char *txt, configfn fn); 218extern int cgit_parse_query(char *txt, configfn fn);
226extern struct commitinfo *cgit_parse_commit(struct commit *commit); 219extern struct commitinfo *cgit_parse_commit(struct commit *commit);
227extern struct taginfo *cgit_parse_tag(struct tag *tag); 220extern struct taginfo *cgit_parse_tag(struct tag *tag);
228extern void cgit_parse_url(const char *url); 221extern void cgit_parse_url(const char *url);
229 222
230extern char *cache_safe_filename(const char *unsafe);
231extern int cache_lock(struct cacheitem *item);
232extern int cache_unlock(struct cacheitem *item);
233extern int cache_cancel_lock(struct cacheitem *item);
234extern int cache_exist(struct cacheitem *item);
235extern int cache_expired(struct cacheitem *item);
236
237extern const char *cgit_repobasename(const char *reponame); 223extern const char *cgit_repobasename(const char *reponame);
238 224
239extern int cgit_parse_snapshots_mask(const char *str); 225extern int cgit_parse_snapshots_mask(const char *str);
240 226
241#endif /* CGIT_H */ 227#endif /* CGIT_H */