summaryrefslogtreecommitdiffabout
path: root/cache.c
authorLars Hjemli <hjemli@gmail.com>2007-01-11 23:00:15 (UTC)
committer Lars Hjemli <hjemli@gmail.com>2007-01-11 23:00:15 (UTC)
commit83a5f35a2724ee60bfd8c5679b98da7008272254 (patch) (unidiff)
treeb530ed30437c963e4e73db433d8a4e9dd9f7e7d6 /cache.c
parentf98e72684bddb5f746f1d4edf663c70076105c9d (diff)
downloadcgit-83a5f35a2724ee60bfd8c5679b98da7008272254.zip
cgit-83a5f35a2724ee60bfd8c5679b98da7008272254.tar.gz
cgit-83a5f35a2724ee60bfd8c5679b98da7008272254.tar.bz2
Move cache_prepare() to cgit
This moves some cgit-specific stuff away from cache.c Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to 'cache.c') (more/less context) (ignore whitespace changes)
-rw-r--r--cache.c22
1 files changed, 0 insertions, 22 deletions
diff --git a/cache.c b/cache.c
index 91b89a6..1ff1251 100644
--- a/cache.c
+++ b/cache.c
@@ -1,117 +1,95 @@
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 10
11const int NOLOCK = -1; 11const int NOLOCK = -1;
12 12
13void cache_prepare(struct cacheitem *item)
14{
15 if (!cgit_query_repo) {
16 item->name = xstrdup(fmt("%s/index.html", cgit_cache_root));
17 item->ttl = cgit_cache_root_ttl;
18 } else if (!cgit_query_page) {
19 item->name = xstrdup(fmt("%s/%s/index.html", cgit_cache_root,
20 cgit_query_repo));
21 item->ttl = cgit_cache_repo_ttl;
22 } else {
23 item->name = xstrdup(fmt("%s/%s/%s/%s.html", cgit_cache_root,
24 cgit_query_repo, cgit_query_page,
25 cgit_querystring));
26 if (cgit_query_has_symref)
27 item->ttl = cgit_cache_dynamic_ttl;
28 else if (cgit_query_has_sha1)
29 item->ttl = cgit_cache_static_ttl;
30 else
31 item->ttl = cgit_cache_repo_ttl;
32 }
33}
34
35int cache_exist(struct cacheitem *item) 13int cache_exist(struct cacheitem *item)
36{ 14{
37 if (stat(item->name, &item->st)) { 15 if (stat(item->name, &item->st)) {
38 item->st.st_mtime = 0; 16 item->st.st_mtime = 0;
39 return 0; 17 return 0;
40 } 18 }
41 return 1; 19 return 1;
42} 20}
43 21
44int cache_create_dirs() 22int cache_create_dirs()
45{ 23{
46 char *path; 24 char *path;
47 25
48 path = fmt("%s", cgit_cache_root); 26 path = fmt("%s", cgit_cache_root);
49 if (mkdir(path, S_IRWXU) && errno!=EEXIST) 27 if (mkdir(path, S_IRWXU) && errno!=EEXIST)
50 return 0; 28 return 0;
51 29
52 if (!cgit_query_repo) 30 if (!cgit_query_repo)
53 return 0; 31 return 0;
54 32
55 path = fmt("%s/%s", cgit_cache_root, cgit_query_repo); 33 path = fmt("%s/%s", cgit_cache_root, cgit_query_repo);
56 if (mkdir(path, S_IRWXU) && errno!=EEXIST) 34 if (mkdir(path, S_IRWXU) && errno!=EEXIST)
57 return 0; 35 return 0;
58 36
59 if (cgit_query_page) { 37 if (cgit_query_page) {
60 path = fmt("%s/%s/%s", cgit_cache_root, cgit_query_repo, 38 path = fmt("%s/%s/%s", cgit_cache_root, cgit_query_repo,
61 cgit_query_page); 39 cgit_query_page);
62 if (mkdir(path, S_IRWXU) && errno!=EEXIST) 40 if (mkdir(path, S_IRWXU) && errno!=EEXIST)
63 return 0; 41 return 0;
64 } 42 }
65 return 1; 43 return 1;
66} 44}
67 45
68int cache_refill_overdue(const char *lockfile) 46int cache_refill_overdue(const char *lockfile)
69{ 47{
70 struct stat st; 48 struct stat st;
71 49
72 if (stat(lockfile, &st)) 50 if (stat(lockfile, &st))
73 return 0; 51 return 0;
74 else 52 else
75 return (time(NULL) - st.st_mtime > cgit_cache_max_create_time); 53 return (time(NULL) - st.st_mtime > cgit_cache_max_create_time);
76} 54}
77 55
78int cache_lock(struct cacheitem *item) 56int cache_lock(struct cacheitem *item)
79{ 57{
80 int i = 0; 58 int i = 0;
81 char *lockfile = xstrdup(fmt("%s.lock", item->name)); 59 char *lockfile = xstrdup(fmt("%s.lock", item->name));
82 60
83 top: 61 top:
84 if (++i > cgit_max_lock_attempts) 62 if (++i > cgit_max_lock_attempts)
85 die("cache_lock: unable to lock %s: %s", 63 die("cache_lock: unable to lock %s: %s",
86 item->name, strerror(errno)); 64 item->name, strerror(errno));
87 65
88 item->fd = open(lockfile, O_WRONLY|O_CREAT|O_EXCL, S_IRUSR|S_IWUSR); 66 item->fd = open(lockfile, O_WRONLY|O_CREAT|O_EXCL, S_IRUSR|S_IWUSR);
89 67
90 if (item->fd == NOLOCK && errno == ENOENT && cache_create_dirs()) 68 if (item->fd == NOLOCK && errno == ENOENT && cache_create_dirs())
91 goto top; 69 goto top;
92 70
93 if (item->fd == NOLOCK && errno == EEXIST && 71 if (item->fd == NOLOCK && errno == EEXIST &&
94 cache_refill_overdue(lockfile) && !unlink(lockfile)) 72 cache_refill_overdue(lockfile) && !unlink(lockfile))
95 goto top; 73 goto top;
96 74
97 free(lockfile); 75 free(lockfile);
98 return (item->fd > 0); 76 return (item->fd > 0);
99} 77}
100 78
101int cache_unlock(struct cacheitem *item) 79int cache_unlock(struct cacheitem *item)
102{ 80{
103 close(item->fd); 81 close(item->fd);
104 return (rename(fmt("%s.lock", item->name), item->name) == 0); 82 return (rename(fmt("%s.lock", item->name), item->name) == 0);
105} 83}
106 84
107int cache_cancel_lock(struct cacheitem *item) 85int cache_cancel_lock(struct cacheitem *item)
108{ 86{
109 return (unlink(fmt("%s.lock", item->name)) == 0); 87 return (unlink(fmt("%s.lock", item->name)) == 0);
110} 88}
111 89
112int cache_expired(struct cacheitem *item) 90int cache_expired(struct cacheitem *item)
113{ 91{
114 if (item->ttl < 0) 92 if (item->ttl < 0)
115 return 0; 93 return 0;
116 return item->st.st_mtime + item->ttl * 60 < time(NULL); 94 return item->st.st_mtime + item->ttl * 60 < time(NULL);
117} 95}