author | Lars Hjemli <hjemli@gmail.com> | 2007-01-11 23:00:15 (UTC) |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2007-01-11 23:00:15 (UTC) |
commit | 83a5f35a2724ee60bfd8c5679b98da7008272254 (patch) (unidiff) | |
tree | b530ed30437c963e4e73db433d8a4e9dd9f7e7d6 /cache.c | |
parent | f98e72684bddb5f746f1d4edf663c70076105c9d (diff) | |
download | cgit-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>
-rw-r--r-- | cache.c | 22 |
1 files changed, 0 insertions, 22 deletions
@@ -1,66 +1,44 @@ | |||
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 | ||
11 | const int NOLOCK = -1; | 11 | const int NOLOCK = -1; |
12 | 12 | ||
13 | void 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 | |||
35 | int cache_exist(struct cacheitem *item) | 13 | int 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 | ||
44 | int cache_create_dirs() | 22 | int 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 | } |