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