author | Lars Hjemli <hjemli@gmail.com> | 2009-02-01 18:29:47 (UTC) |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2009-02-01 18:29:47 (UTC) |
commit | 5e447b1ed1aa751e8ec93dccf4df6fa4a7ffddb6 (patch) (unidiff) | |
tree | 823678b1c4a907cf0df50067c27fb5b752114df5 /cgit.h | |
parent | 0b3c746ba80738dbe0885a21406409390936537c (diff) | |
parent | 481ce5e298e2dcd7edc1d4a30e523dda2ce58b01 (diff) | |
download | cgit-5e447b1ed1aa751e8ec93dccf4df6fa4a7ffddb6.zip cgit-5e447b1ed1aa751e8ec93dccf4df6fa4a7ffddb6.tar.gz cgit-5e447b1ed1aa751e8ec93dccf4df6fa4a7ffddb6.tar.bz2 |
Merge branch 'lh/binary'
-rw-r--r-- | cgit.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1,244 +1,246 @@ | |||
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-interface.h> | ||
18 | #include <xdiff/xdiff.h> | 19 | #include <xdiff/xdiff.h> |
19 | #include <utf8.h> | 20 | #include <utf8.h> |
20 | 21 | ||
21 | 22 | ||
22 | /* | 23 | /* |
23 | * Dateformats used on misc. pages | 24 | * Dateformats used on misc. pages |
24 | */ | 25 | */ |
25 | #define FMT_LONGDATE "%Y-%m-%d %H:%M:%S (%Z)" | 26 | #define FMT_LONGDATE "%Y-%m-%d %H:%M:%S (%Z)" |
26 | #define FMT_SHORTDATE "%Y-%m-%d" | 27 | #define FMT_SHORTDATE "%Y-%m-%d" |
27 | #define FMT_ATOMDATE "%Y-%m-%dT%H:%M:%SZ" | 28 | #define FMT_ATOMDATE "%Y-%m-%dT%H:%M:%SZ" |
28 | 29 | ||
29 | 30 | ||
30 | /* | 31 | /* |
31 | * Limits used for relative dates | 32 | * Limits used for relative dates |
32 | */ | 33 | */ |
33 | #define TM_MIN 60 | 34 | #define TM_MIN 60 |
34 | #define TM_HOUR (TM_MIN * 60) | 35 | #define TM_HOUR (TM_MIN * 60) |
35 | #define TM_DAY (TM_HOUR * 24) | 36 | #define TM_DAY (TM_HOUR * 24) |
36 | #define TM_WEEK (TM_DAY * 7) | 37 | #define TM_WEEK (TM_DAY * 7) |
37 | #define TM_YEAR (TM_DAY * 365) | 38 | #define TM_YEAR (TM_DAY * 365) |
38 | #define TM_MONTH (TM_YEAR / 12.0) | 39 | #define TM_MONTH (TM_YEAR / 12.0) |
39 | 40 | ||
40 | 41 | ||
41 | /* | 42 | /* |
42 | * Default encoding | 43 | * Default encoding |
43 | */ | 44 | */ |
44 | #define PAGE_ENCODING "UTF-8" | 45 | #define PAGE_ENCODING "UTF-8" |
45 | 46 | ||
46 | typedef void (*configfn)(const char *name, const char *value); | 47 | typedef void (*configfn)(const char *name, const char *value); |
47 | typedef void (*filepair_fn)(struct diff_filepair *pair); | 48 | typedef void (*filepair_fn)(struct diff_filepair *pair); |
48 | typedef void (*linediff_fn)(char *line, int len); | 49 | typedef void (*linediff_fn)(char *line, int len); |
49 | 50 | ||
50 | struct cgit_repo { | 51 | struct cgit_repo { |
51 | char *url; | 52 | char *url; |
52 | char *name; | 53 | char *name; |
53 | char *path; | 54 | char *path; |
54 | char *desc; | 55 | char *desc; |
55 | char *owner; | 56 | char *owner; |
56 | char *defbranch; | 57 | char *defbranch; |
57 | char *group; | 58 | char *group; |
58 | char *module_link; | 59 | char *module_link; |
59 | char *readme; | 60 | char *readme; |
60 | char *clone_url; | 61 | char *clone_url; |
61 | int snapshots; | 62 | int snapshots; |
62 | int enable_log_filecount; | 63 | int enable_log_filecount; |
63 | int enable_log_linecount; | 64 | int enable_log_linecount; |
64 | int max_stats; | 65 | int max_stats; |
65 | time_t mtime; | 66 | time_t mtime; |
66 | }; | 67 | }; |
67 | 68 | ||
68 | struct cgit_repolist { | 69 | struct cgit_repolist { |
69 | int length; | 70 | int length; |
70 | int count; | 71 | int count; |
71 | struct cgit_repo *repos; | 72 | struct cgit_repo *repos; |
72 | }; | 73 | }; |
73 | 74 | ||
74 | struct commitinfo { | 75 | struct commitinfo { |
75 | struct commit *commit; | 76 | struct commit *commit; |
76 | char *author; | 77 | char *author; |
77 | char *author_email; | 78 | char *author_email; |
78 | unsigned long author_date; | 79 | unsigned long author_date; |
79 | char *committer; | 80 | char *committer; |
80 | char *committer_email; | 81 | char *committer_email; |
81 | unsigned long committer_date; | 82 | unsigned long committer_date; |
82 | char *subject; | 83 | char *subject; |
83 | char *msg; | 84 | char *msg; |
84 | char *msg_encoding; | 85 | char *msg_encoding; |
85 | }; | 86 | }; |
86 | 87 | ||
87 | struct taginfo { | 88 | struct taginfo { |
88 | char *tagger; | 89 | char *tagger; |
89 | char *tagger_email; | 90 | char *tagger_email; |
90 | unsigned long tagger_date; | 91 | unsigned long tagger_date; |
91 | char *msg; | 92 | char *msg; |
92 | }; | 93 | }; |
93 | 94 | ||
94 | struct refinfo { | 95 | struct refinfo { |
95 | const char *refname; | 96 | const char *refname; |
96 | struct object *object; | 97 | struct object *object; |
97 | union { | 98 | union { |
98 | struct taginfo *tag; | 99 | struct taginfo *tag; |
99 | struct commitinfo *commit; | 100 | struct commitinfo *commit; |
100 | }; | 101 | }; |
101 | }; | 102 | }; |
102 | 103 | ||
103 | struct reflist { | 104 | struct reflist { |
104 | struct refinfo **refs; | 105 | struct refinfo **refs; |
105 | int alloc; | 106 | int alloc; |
106 | int count; | 107 | int count; |
107 | }; | 108 | }; |
108 | 109 | ||
109 | struct cgit_query { | 110 | struct cgit_query { |
110 | int has_symref; | 111 | int has_symref; |
111 | int has_sha1; | 112 | int has_sha1; |
112 | char *raw; | 113 | char *raw; |
113 | char *repo; | 114 | char *repo; |
114 | char *page; | 115 | char *page; |
115 | char *search; | 116 | char *search; |
116 | char *grep; | 117 | char *grep; |
117 | char *head; | 118 | char *head; |
118 | char *sha1; | 119 | char *sha1; |
119 | char *sha2; | 120 | char *sha2; |
120 | char *path; | 121 | char *path; |
121 | char *name; | 122 | char *name; |
122 | char *mimetype; | 123 | char *mimetype; |
123 | char *url; | 124 | char *url; |
124 | char *period; | 125 | char *period; |
125 | int ofs; | 126 | int ofs; |
126 | int nohead; | 127 | int nohead; |
127 | char *sort; | 128 | char *sort; |
128 | int showmsg; | 129 | int showmsg; |
129 | }; | 130 | }; |
130 | 131 | ||
131 | struct cgit_config { | 132 | struct cgit_config { |
132 | char *agefile; | 133 | char *agefile; |
133 | char *cache_root; | 134 | char *cache_root; |
134 | char *clone_prefix; | 135 | char *clone_prefix; |
135 | char *css; | 136 | char *css; |
136 | char *favicon; | 137 | char *favicon; |
137 | char *footer; | 138 | char *footer; |
138 | char *header; | 139 | char *header; |
139 | char *index_header; | 140 | char *index_header; |
140 | char *index_info; | 141 | char *index_info; |
141 | char *logo; | 142 | char *logo; |
142 | char *logo_link; | 143 | char *logo_link; |
143 | char *module_link; | 144 | char *module_link; |
144 | char *repo_group; | 145 | char *repo_group; |
145 | char *robots; | 146 | char *robots; |
146 | char *root_title; | 147 | char *root_title; |
147 | char *root_desc; | 148 | char *root_desc; |
148 | char *root_readme; | 149 | char *root_readme; |
149 | char *script_name; | 150 | char *script_name; |
150 | char *virtual_root; | 151 | char *virtual_root; |
151 | int cache_size; | 152 | int cache_size; |
152 | int cache_dynamic_ttl; | 153 | int cache_dynamic_ttl; |
153 | int cache_max_create_time; | 154 | int cache_max_create_time; |
154 | int cache_repo_ttl; | 155 | int cache_repo_ttl; |
155 | int cache_root_ttl; | 156 | int cache_root_ttl; |
156 | int cache_static_ttl; | 157 | int cache_static_ttl; |
157 | int enable_index_links; | 158 | int enable_index_links; |
158 | int enable_log_filecount; | 159 | int enable_log_filecount; |
159 | int enable_log_linecount; | 160 | int enable_log_linecount; |
160 | int local_time; | 161 | int local_time; |
161 | int max_repo_count; | 162 | int max_repo_count; |
162 | int max_commit_count; | 163 | int max_commit_count; |
163 | int max_lock_attempts; | 164 | int max_lock_attempts; |
164 | int max_msg_len; | 165 | int max_msg_len; |
165 | int max_repodesc_len; | 166 | int max_repodesc_len; |
166 | int max_stats; | 167 | int max_stats; |
167 | int nocache; | 168 | int nocache; |
168 | int renamelimit; | 169 | int renamelimit; |
169 | int snapshots; | 170 | int snapshots; |
170 | int summary_branches; | 171 | int summary_branches; |
171 | int summary_log; | 172 | int summary_log; |
172 | int summary_tags; | 173 | int summary_tags; |
173 | }; | 174 | }; |
174 | 175 | ||
175 | struct cgit_page { | 176 | struct cgit_page { |
176 | time_t modified; | 177 | time_t modified; |
177 | time_t expires; | 178 | time_t expires; |
178 | size_t size; | 179 | size_t size; |
179 | char *mimetype; | 180 | char *mimetype; |
180 | char *charset; | 181 | char *charset; |
181 | char *filename; | 182 | char *filename; |
182 | char *title; | 183 | char *title; |
183 | }; | 184 | }; |
184 | 185 | ||
185 | struct cgit_context { | 186 | struct cgit_context { |
186 | struct cgit_query qry; | 187 | struct cgit_query qry; |
187 | struct cgit_config cfg; | 188 | struct cgit_config cfg; |
188 | struct cgit_repo *repo; | 189 | struct cgit_repo *repo; |
189 | struct cgit_page page; | 190 | struct cgit_page page; |
190 | }; | 191 | }; |
191 | 192 | ||
192 | struct cgit_snapshot_format { | 193 | struct cgit_snapshot_format { |
193 | const char *suffix; | 194 | const char *suffix; |
194 | const char *mimetype; | 195 | const char *mimetype; |
195 | write_archive_fn_t write_func; | 196 | write_archive_fn_t write_func; |
196 | int bit; | 197 | int bit; |
197 | }; | 198 | }; |
198 | 199 | ||
199 | extern const char *cgit_version; | 200 | extern const char *cgit_version; |
200 | 201 | ||
201 | extern struct cgit_repolist cgit_repolist; | 202 | extern struct cgit_repolist cgit_repolist; |
202 | extern struct cgit_context ctx; | 203 | extern struct cgit_context ctx; |
203 | extern const struct cgit_snapshot_format cgit_snapshot_formats[]; | 204 | extern const struct cgit_snapshot_format cgit_snapshot_formats[]; |
204 | 205 | ||
205 | extern struct cgit_repo *cgit_add_repo(const char *url); | 206 | extern struct cgit_repo *cgit_add_repo(const char *url); |
206 | extern struct cgit_repo *cgit_get_repoinfo(const char *url); | 207 | extern struct cgit_repo *cgit_get_repoinfo(const char *url); |
207 | extern void cgit_repo_config_cb(const char *name, const char *value); | 208 | extern void cgit_repo_config_cb(const char *name, const char *value); |
208 | 209 | ||
209 | extern int chk_zero(int result, char *msg); | 210 | extern int chk_zero(int result, char *msg); |
210 | extern int chk_positive(int result, char *msg); | 211 | extern int chk_positive(int result, char *msg); |
211 | extern int chk_non_negative(int result, char *msg); | 212 | extern int chk_non_negative(int result, char *msg); |
212 | 213 | ||
213 | extern char *trim_end(const char *str, char c); | 214 | extern char *trim_end(const char *str, char c); |
214 | extern char *strlpart(char *txt, int maxlen); | 215 | extern char *strlpart(char *txt, int maxlen); |
215 | extern char *strrpart(char *txt, int maxlen); | 216 | extern char *strrpart(char *txt, int maxlen); |
216 | 217 | ||
217 | extern void cgit_add_ref(struct reflist *list, struct refinfo *ref); | 218 | extern void cgit_add_ref(struct reflist *list, struct refinfo *ref); |
218 | extern int cgit_refs_cb(const char *refname, const unsigned char *sha1, | 219 | extern int cgit_refs_cb(const char *refname, const unsigned char *sha1, |
219 | int flags, void *cb_data); | 220 | int flags, void *cb_data); |
220 | 221 | ||
221 | extern void *cgit_free_commitinfo(struct commitinfo *info); | 222 | extern void *cgit_free_commitinfo(struct commitinfo *info); |
222 | 223 | ||
223 | extern int cgit_diff_files(const unsigned char *old_sha1, | 224 | extern int cgit_diff_files(const unsigned char *old_sha1, |
224 | const unsigned char *new_sha1, | 225 | const unsigned char *new_sha1, |
225 | linediff_fn fn); | 226 | unsigned long *old_size, unsigned long *new_size, |
227 | int *binary, linediff_fn fn); | ||
226 | 228 | ||
227 | extern void cgit_diff_tree(const unsigned char *old_sha1, | 229 | extern void cgit_diff_tree(const unsigned char *old_sha1, |
228 | const unsigned char *new_sha1, | 230 | const unsigned char *new_sha1, |
229 | filepair_fn fn, const char *prefix); | 231 | filepair_fn fn, const char *prefix); |
230 | 232 | ||
231 | extern void cgit_diff_commit(struct commit *commit, filepair_fn fn); | 233 | extern void cgit_diff_commit(struct commit *commit, filepair_fn fn); |
232 | 234 | ||
233 | extern char *fmt(const char *format,...); | 235 | extern char *fmt(const char *format,...); |
234 | 236 | ||
235 | extern struct commitinfo *cgit_parse_commit(struct commit *commit); | 237 | extern struct commitinfo *cgit_parse_commit(struct commit *commit); |
236 | extern struct taginfo *cgit_parse_tag(struct tag *tag); | 238 | extern struct taginfo *cgit_parse_tag(struct tag *tag); |
237 | extern void cgit_parse_url(const char *url); | 239 | extern void cgit_parse_url(const char *url); |
238 | 240 | ||
239 | extern const char *cgit_repobasename(const char *reponame); | 241 | extern const char *cgit_repobasename(const char *reponame); |
240 | 242 | ||
241 | extern int cgit_parse_snapshots_mask(const char *str); | 243 | extern int cgit_parse_snapshots_mask(const char *str); |
242 | 244 | ||
243 | 245 | ||
244 | #endif /* CGIT_H */ | 246 | #endif /* CGIT_H */ |