2006-12-09 15:18:17 +01:00
|
|
|
#ifndef CGIT_H
|
|
|
|
#define CGIT_H
|
|
|
|
|
2007-05-08 22:40:59 +02:00
|
|
|
|
|
|
|
#include <git-compat-util.h>
|
|
|
|
#include <cache.h>
|
|
|
|
#include <grep.h>
|
|
|
|
#include <object.h>
|
|
|
|
#include <tree.h>
|
|
|
|
#include <commit.h>
|
|
|
|
#include <tag.h>
|
|
|
|
#include <diff.h>
|
|
|
|
#include <diffcore.h>
|
|
|
|
#include <refs.h>
|
|
|
|
#include <revision.h>
|
|
|
|
#include <log-tree.h>
|
|
|
|
#include <archive.h>
|
2009-02-13 20:43:30 +01:00
|
|
|
#include <string-list.h>
|
2009-01-31 10:40:40 +01:00
|
|
|
#include <xdiff-interface.h>
|
2007-05-08 22:40:59 +02:00
|
|
|
#include <xdiff/xdiff.h>
|
2007-11-05 22:27:43 +01:00
|
|
|
#include <utf8.h>
|
2007-05-08 22:40:59 +02:00
|
|
|
|
2006-12-10 22:31:36 +01:00
|
|
|
|
2007-05-22 23:08:46 +02:00
|
|
|
/*
|
|
|
|
* Dateformats used on misc. pages
|
|
|
|
*/
|
2008-08-01 14:54:38 +02:00
|
|
|
#define FMT_LONGDATE "%Y-%m-%d %H:%M:%S (%Z)"
|
2007-05-22 23:08:46 +02:00
|
|
|
#define FMT_SHORTDATE "%Y-%m-%d"
|
2008-05-21 08:17:54 +02:00
|
|
|
#define FMT_ATOMDATE "%Y-%m-%dT%H:%M:%SZ"
|
2007-05-22 23:08:46 +02:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Limits used for relative dates
|
|
|
|
*/
|
|
|
|
#define TM_MIN 60
|
|
|
|
#define TM_HOUR (TM_MIN * 60)
|
|
|
|
#define TM_DAY (TM_HOUR * 24)
|
|
|
|
#define TM_WEEK (TM_DAY * 7)
|
|
|
|
#define TM_YEAR (TM_DAY * 365)
|
|
|
|
#define TM_MONTH (TM_YEAR / 12.0)
|
|
|
|
|
|
|
|
|
2007-10-27 00:09:06 +02:00
|
|
|
/*
|
|
|
|
* Default encoding
|
|
|
|
*/
|
|
|
|
#define PAGE_ENCODING "UTF-8"
|
|
|
|
|
2006-12-10 22:31:36 +01:00
|
|
|
typedef void (*configfn)(const char *name, const char *value);
|
2007-05-13 11:24:23 +02:00
|
|
|
typedef void (*filepair_fn)(struct diff_filepair *pair);
|
2007-05-13 14:21:19 +02:00
|
|
|
typedef void (*linediff_fn)(char *line, int len);
|
2006-12-10 22:31:36 +01:00
|
|
|
|
2009-08-09 13:22:00 +02:00
|
|
|
struct cgit_filter {
|
|
|
|
char *cmd;
|
|
|
|
char **argv;
|
|
|
|
int old_stdout;
|
|
|
|
int pipe_fh[2];
|
|
|
|
int pid;
|
|
|
|
int exitstatus;
|
|
|
|
};
|
|
|
|
|
2008-02-16 13:56:09 +01:00
|
|
|
struct cgit_repo {
|
2007-02-03 15:02:55 +01:00
|
|
|
char *url;
|
|
|
|
char *name;
|
|
|
|
char *path;
|
|
|
|
char *desc;
|
|
|
|
char *owner;
|
2007-05-16 00:14:51 +02:00
|
|
|
char *defbranch;
|
2007-05-11 12:12:48 +02:00
|
|
|
char *module_link;
|
2007-05-23 22:46:54 +02:00
|
|
|
char *readme;
|
2009-08-23 22:58:39 +02:00
|
|
|
char *section;
|
2007-12-03 01:49:38 +01:00
|
|
|
char *clone_url;
|
2007-02-08 14:47:56 +01:00
|
|
|
int snapshots;
|
2007-05-18 13:55:52 +02:00
|
|
|
int enable_log_filecount;
|
|
|
|
int enable_log_linecount;
|
2009-11-07 19:10:58 +01:00
|
|
|
int enable_remote_branches;
|
2008-12-07 13:17:21 +01:00
|
|
|
int max_stats;
|
2008-11-29 16:46:37 +01:00
|
|
|
time_t mtime;
|
2009-08-09 13:27:21 +02:00
|
|
|
struct cgit_filter *about_filter;
|
2009-08-09 13:22:00 +02:00
|
|
|
struct cgit_filter *commit_filter;
|
|
|
|
struct cgit_filter *source_filter;
|
2007-02-03 15:02:55 +01:00
|
|
|
};
|
|
|
|
|
2009-08-24 00:04:58 +02:00
|
|
|
typedef void (*repo_config_fn)(struct cgit_repo *repo, const char *name,
|
|
|
|
const char *value);
|
|
|
|
|
2008-02-16 13:56:09 +01:00
|
|
|
struct cgit_repolist {
|
2007-02-03 15:02:55 +01:00
|
|
|
int length;
|
|
|
|
int count;
|
2008-02-16 13:56:09 +01:00
|
|
|
struct cgit_repo *repos;
|
2007-02-03 15:02:55 +01:00
|
|
|
};
|
|
|
|
|
2006-12-15 18:17:36 +01:00
|
|
|
struct commitinfo {
|
|
|
|
struct commit *commit;
|
|
|
|
char *author;
|
2006-12-16 14:25:41 +01:00
|
|
|
char *author_email;
|
|
|
|
unsigned long author_date;
|
2006-12-15 18:17:36 +01:00
|
|
|
char *committer;
|
2006-12-16 14:25:41 +01:00
|
|
|
char *committer_email;
|
|
|
|
unsigned long committer_date;
|
2006-12-15 18:17:36 +01:00
|
|
|
char *subject;
|
|
|
|
char *msg;
|
2007-10-27 00:09:06 +02:00
|
|
|
char *msg_encoding;
|
2006-12-15 18:17:36 +01:00
|
|
|
};
|
|
|
|
|
2007-01-17 01:09:51 +01:00
|
|
|
struct taginfo {
|
|
|
|
char *tagger;
|
|
|
|
char *tagger_email;
|
2008-09-14 09:45:37 +02:00
|
|
|
unsigned long tagger_date;
|
2007-01-17 01:09:51 +01:00
|
|
|
char *msg;
|
|
|
|
};
|
|
|
|
|
2007-10-25 09:30:06 +02:00
|
|
|
struct refinfo {
|
|
|
|
const char *refname;
|
|
|
|
struct object *object;
|
|
|
|
union {
|
|
|
|
struct taginfo *tag;
|
|
|
|
struct commitinfo *commit;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
struct reflist {
|
|
|
|
struct refinfo **refs;
|
|
|
|
int alloc;
|
|
|
|
int count;
|
|
|
|
};
|
|
|
|
|
2008-02-16 11:53:40 +01:00
|
|
|
struct cgit_query {
|
|
|
|
int has_symref;
|
|
|
|
int has_sha1;
|
|
|
|
char *raw;
|
|
|
|
char *repo;
|
|
|
|
char *page;
|
|
|
|
char *search;
|
|
|
|
char *grep;
|
|
|
|
char *head;
|
|
|
|
char *sha1;
|
|
|
|
char *sha2;
|
|
|
|
char *path;
|
|
|
|
char *name;
|
2008-06-24 23:42:32 +02:00
|
|
|
char *mimetype;
|
2008-08-09 21:11:41 +02:00
|
|
|
char *url;
|
2008-12-06 17:38:19 +01:00
|
|
|
char *period;
|
2008-02-16 11:53:40 +01:00
|
|
|
int ofs;
|
2008-10-11 19:05:50 +02:00
|
|
|
int nohead;
|
2008-11-25 15:25:35 +01:00
|
|
|
char *sort;
|
2008-11-29 18:39:41 +01:00
|
|
|
int showmsg;
|
2008-02-16 11:53:40 +01:00
|
|
|
};
|
|
|
|
|
2008-02-16 13:07:13 +01:00
|
|
|
struct cgit_config {
|
|
|
|
char *agefile;
|
|
|
|
char *cache_root;
|
|
|
|
char *clone_prefix;
|
|
|
|
char *css;
|
2008-07-19 20:40:30 +02:00
|
|
|
char *favicon;
|
2008-06-26 13:53:30 +02:00
|
|
|
char *footer;
|
2009-03-15 05:11:54 +01:00
|
|
|
char *head_include;
|
2009-01-29 21:27:39 +01:00
|
|
|
char *header;
|
2008-02-16 13:07:13 +01:00
|
|
|
char *index_header;
|
|
|
|
char *index_info;
|
|
|
|
char *logo;
|
|
|
|
char *logo_link;
|
|
|
|
char *module_link;
|
|
|
|
char *robots;
|
|
|
|
char *root_title;
|
2008-04-29 00:55:34 +02:00
|
|
|
char *root_desc;
|
2008-04-29 01:06:30 +02:00
|
|
|
char *root_readme;
|
2008-02-16 13:07:13 +01:00
|
|
|
char *script_name;
|
2009-08-23 22:58:39 +02:00
|
|
|
char *section;
|
2008-02-16 13:07:13 +01:00
|
|
|
char *virtual_root;
|
2008-04-28 11:32:42 +02:00
|
|
|
int cache_size;
|
2008-02-16 13:07:13 +01:00
|
|
|
int cache_dynamic_ttl;
|
|
|
|
int cache_max_create_time;
|
|
|
|
int cache_repo_ttl;
|
|
|
|
int cache_root_ttl;
|
2009-08-20 17:41:54 +02:00
|
|
|
int cache_scanrc_ttl;
|
2008-02-16 13:07:13 +01:00
|
|
|
int cache_static_ttl;
|
2009-07-25 12:25:06 +02:00
|
|
|
int embedded;
|
2009-08-24 08:53:21 +02:00
|
|
|
int enable_filter_overrides;
|
2008-02-16 13:07:13 +01:00
|
|
|
int enable_index_links;
|
|
|
|
int enable_log_filecount;
|
|
|
|
int enable_log_linecount;
|
2009-11-07 19:10:58 +01:00
|
|
|
int enable_remote_branches;
|
2009-08-21 14:26:52 +02:00
|
|
|
int enable_tree_linenumbers;
|
2008-08-01 14:54:38 +02:00
|
|
|
int local_time;
|
2008-05-03 10:54:39 +02:00
|
|
|
int max_repo_count;
|
2008-02-16 13:07:13 +01:00
|
|
|
int max_commit_count;
|
|
|
|
int max_lock_attempts;
|
|
|
|
int max_msg_len;
|
|
|
|
int max_repodesc_len;
|
2008-12-07 13:17:21 +01:00
|
|
|
int max_stats;
|
2008-02-16 13:07:13 +01:00
|
|
|
int nocache;
|
2009-08-07 14:05:17 +02:00
|
|
|
int noplainemail;
|
2009-07-25 12:25:06 +02:00
|
|
|
int noheader;
|
2008-02-16 13:07:13 +01:00
|
|
|
int renamelimit;
|
|
|
|
int snapshots;
|
|
|
|
int summary_branches;
|
|
|
|
int summary_log;
|
|
|
|
int summary_tags;
|
2009-02-13 20:43:30 +01:00
|
|
|
struct string_list mimetypes;
|
2009-08-09 13:27:21 +02:00
|
|
|
struct cgit_filter *about_filter;
|
2009-07-31 17:42:57 +02:00
|
|
|
struct cgit_filter *commit_filter;
|
2009-07-31 16:55:27 +02:00
|
|
|
struct cgit_filter *source_filter;
|
2008-02-16 13:07:13 +01:00
|
|
|
};
|
|
|
|
|
2008-03-24 00:51:19 +01:00
|
|
|
struct cgit_page {
|
|
|
|
time_t modified;
|
|
|
|
time_t expires;
|
2008-08-06 10:53:50 +02:00
|
|
|
size_t size;
|
2008-03-24 00:51:19 +01:00
|
|
|
char *mimetype;
|
|
|
|
char *charset;
|
|
|
|
char *filename;
|
2009-02-19 22:38:36 +01:00
|
|
|
char *etag;
|
2008-03-24 00:51:19 +01:00
|
|
|
char *title;
|
2009-06-07 20:43:08 +02:00
|
|
|
int status;
|
|
|
|
char *statusmsg;
|
2008-03-24 00:51:19 +01:00
|
|
|
};
|
|
|
|
|
2009-08-10 08:21:09 +02:00
|
|
|
struct cgit_environment {
|
|
|
|
char *cgit_config;
|
|
|
|
char *http_host;
|
|
|
|
char *https;
|
2009-08-10 09:20:17 +02:00
|
|
|
char *no_http;
|
2009-08-10 08:21:09 +02:00
|
|
|
char *path_info;
|
|
|
|
char *query_string;
|
|
|
|
char *request_method;
|
|
|
|
char *script_name;
|
|
|
|
char *server_name;
|
|
|
|
char *server_port;
|
|
|
|
};
|
|
|
|
|
2008-02-16 11:53:40 +01:00
|
|
|
struct cgit_context {
|
2009-08-10 08:21:09 +02:00
|
|
|
struct cgit_environment env;
|
2008-02-16 11:53:40 +01:00
|
|
|
struct cgit_query qry;
|
2008-02-16 13:07:13 +01:00
|
|
|
struct cgit_config cfg;
|
2008-02-16 13:56:09 +01:00
|
|
|
struct cgit_repo *repo;
|
2008-03-24 00:51:19 +01:00
|
|
|
struct cgit_page page;
|
2008-02-16 11:53:40 +01:00
|
|
|
};
|
|
|
|
|
2008-03-24 16:00:27 +01:00
|
|
|
struct cgit_snapshot_format {
|
|
|
|
const char *suffix;
|
|
|
|
const char *mimetype;
|
|
|
|
write_archive_fn_t write_func;
|
|
|
|
int bit;
|
|
|
|
};
|
|
|
|
|
2007-06-18 09:42:10 +02:00
|
|
|
extern const char *cgit_version;
|
2006-12-11 16:38:30 +01:00
|
|
|
|
2008-02-16 13:56:09 +01:00
|
|
|
extern struct cgit_repolist cgit_repolist;
|
2008-02-16 11:53:40 +01:00
|
|
|
extern struct cgit_context ctx;
|
2008-03-24 16:00:27 +01:00
|
|
|
extern const struct cgit_snapshot_format cgit_snapshot_formats[];
|
2007-02-03 15:02:55 +01:00
|
|
|
|
2008-03-24 17:26:08 +01:00
|
|
|
extern struct cgit_repo *cgit_add_repo(const char *url);
|
2008-02-16 13:56:09 +01:00
|
|
|
extern struct cgit_repo *cgit_get_repoinfo(const char *url);
|
2006-12-11 17:25:41 +01:00
|
|
|
extern void cgit_repo_config_cb(const char *name, const char *value);
|
|
|
|
|
2007-02-08 13:53:13 +01:00
|
|
|
extern int chk_zero(int result, char *msg);
|
|
|
|
extern int chk_positive(int result, char *msg);
|
2007-07-20 20:56:43 +02:00
|
|
|
extern int chk_non_negative(int result, char *msg);
|
2007-02-08 13:53:13 +01:00
|
|
|
|
2007-06-26 18:04:31 +02:00
|
|
|
extern char *trim_end(const char *str, char c);
|
2007-10-30 10:47:38 +01:00
|
|
|
extern char *strlpart(char *txt, int maxlen);
|
|
|
|
extern char *strrpart(char *txt, int maxlen);
|
2007-01-04 16:53:03 +01:00
|
|
|
|
2007-10-25 09:30:06 +02:00
|
|
|
extern void cgit_add_ref(struct reflist *list, struct refinfo *ref);
|
|
|
|
extern int cgit_refs_cb(const char *refname, const unsigned char *sha1,
|
|
|
|
int flags, void *cb_data);
|
|
|
|
|
2006-12-16 14:58:20 +01:00
|
|
|
extern void *cgit_free_commitinfo(struct commitinfo *info);
|
2007-05-13 14:21:19 +02:00
|
|
|
|
|
|
|
extern int cgit_diff_files(const unsigned char *old_sha1,
|
|
|
|
const unsigned char *new_sha1,
|
2009-01-31 10:40:40 +01:00
|
|
|
unsigned long *old_size, unsigned long *new_size,
|
|
|
|
int *binary, linediff_fn fn);
|
2007-05-13 14:21:19 +02:00
|
|
|
|
2007-05-13 11:24:23 +02:00
|
|
|
extern void cgit_diff_tree(const unsigned char *old_sha1,
|
|
|
|
const unsigned char *new_sha1,
|
2007-10-01 11:42:19 +02:00
|
|
|
filepair_fn fn, const char *prefix);
|
2007-05-13 14:21:19 +02:00
|
|
|
|
2007-05-13 11:24:23 +02:00
|
|
|
extern void cgit_diff_commit(struct commit *commit, filepair_fn fn);
|
2006-12-16 14:58:20 +01:00
|
|
|
|
2006-12-09 15:18:17 +01:00
|
|
|
extern char *fmt(const char *format,...);
|
|
|
|
|
2006-12-15 18:17:36 +01:00
|
|
|
extern struct commitinfo *cgit_parse_commit(struct commit *commit);
|
2007-01-17 01:09:51 +01:00
|
|
|
extern struct taginfo *cgit_parse_tag(struct tag *tag);
|
2007-05-18 03:00:54 +02:00
|
|
|
extern void cgit_parse_url(const char *url);
|
2006-12-09 15:18:17 +01:00
|
|
|
|
2007-07-21 15:24:07 +02:00
|
|
|
extern const char *cgit_repobasename(const char *reponame);
|
|
|
|
|
2007-07-21 18:00:53 +02:00
|
|
|
extern int cgit_parse_snapshots_mask(const char *str);
|
2006-12-11 16:48:03 +01:00
|
|
|
|
2009-07-31 17:38:38 +02:00
|
|
|
extern int cgit_open_filter(struct cgit_filter *filter);
|
|
|
|
extern int cgit_close_filter(struct cgit_filter *filter);
|
|
|
|
|
2009-08-18 17:17:41 +02:00
|
|
|
extern int readfile(const char *path, char **buf, size_t *size);
|
2008-04-13 12:42:27 +02:00
|
|
|
|
2006-12-09 15:18:17 +01:00
|
|
|
#endif /* CGIT_H */
|