aboutsummaryrefslogtreecommitdiffstats
path: root/cgit.h
diff options
context:
space:
mode:
authorLars Hjemli <hjemli@gmail.com>2009-07-31 17:38:38 +0200
committerLars Hjemli <hjemli@gmail.com>2009-07-31 17:39:51 +0200
commitd6f6072560c963065b13c704fa1fa6f8950e4bac (patch)
tree096a542cd404d4a174f2f4a1da44ab0df99aa7c3 /cgit.h
parentMerge branch 'lh/embedded' (diff)
downloadcgit-d6f6072560c963065b13c704fa1fa6f8950e4bac.tar.xz
cgit-d6f6072560c963065b13c704fa1fa6f8950e4bac.zip
Add generic filter/plugin infrastructure
The functions cgit_open_filter() and cgit_close_filter() can be used to execute filters on the output stream from cgit. Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to 'cgit.h')
-rw-r--r--cgit.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/cgit.h b/cgit.h
index 8c64efe..d0fff1f 100644
--- a/cgit.h
+++ b/cgit.h
@@ -129,6 +129,15 @@ struct cgit_query {
int showmsg;
};
+struct cgit_filter {
+ char *cmd;
+ char **argv;
+ int old_stdout;
+ int pipe_fh[2];
+ int pid;
+ int exitstatus;
+};
+
struct cgit_config {
char *agefile;
char *cache_root;
@@ -248,5 +257,8 @@ extern const char *cgit_repobasename(const char *reponame);
extern int cgit_parse_snapshots_mask(const char *str);
+extern int cgit_open_filter(struct cgit_filter *filter);
+extern int cgit_close_filter(struct cgit_filter *filter);
+
#endif /* CGIT_H */