2005-07-31 19:17:43 +00:00
|
|
|
#ifndef RUN_COMMAND_H
|
|
|
|
#define RUN_COMMAND_H
|
|
|
|
|
2010-03-09 20:00:36 +00:00
|
|
|
#ifndef NO_PTHREADS
|
2010-03-06 15:40:42 +00:00
|
|
|
#include <pthread.h>
|
|
|
|
#endif
|
|
|
|
|
2007-03-10 08:28:00 +00:00
|
|
|
struct child_process {
|
|
|
|
const char **argv;
|
2007-03-10 08:28:05 +00:00
|
|
|
pid_t pid;
|
2008-02-21 22:42:56 +00:00
|
|
|
/*
|
|
|
|
* Using .in, .out, .err:
|
|
|
|
* - Specify 0 for no redirections (child inherits stdin, stdout,
|
|
|
|
* stderr from parent).
|
|
|
|
* - Specify -1 to have a pipe allocated as follows:
|
|
|
|
* .in: returns the writable pipe end; parent writes to it,
|
|
|
|
* the readable pipe end becomes child's stdin
|
|
|
|
* .out, .err: returns the readable pipe end; parent reads from
|
|
|
|
* it, the writable pipe end becomes child's stdout/stderr
|
|
|
|
* The caller of start_command() must close the returned FDs
|
|
|
|
* after it has completed reading from/writing to it!
|
|
|
|
* - Specify > 0 to set a channel to a particular FD as follows:
|
|
|
|
* .in: a readable FD, becomes child's stdin
|
|
|
|
* .out: a writable FD, becomes child's stdout/stderr
|
2010-02-05 20:57:37 +00:00
|
|
|
* .err: a writable FD, becomes child's stderr
|
2008-02-21 22:42:56 +00:00
|
|
|
* The specified FD is closed by start_command(), even in case
|
|
|
|
* of errors!
|
|
|
|
*/
|
2007-03-10 08:28:08 +00:00
|
|
|
int in;
|
2007-03-12 18:37:45 +00:00
|
|
|
int out;
|
2007-10-19 19:47:58 +00:00
|
|
|
int err;
|
2007-05-22 21:48:23 +00:00
|
|
|
const char *dir;
|
2007-05-22 21:48:47 +00:00
|
|
|
const char *const *env;
|
2007-03-10 08:28:00 +00:00
|
|
|
unsigned no_stdin:1;
|
2007-03-12 18:37:55 +00:00
|
|
|
unsigned no_stdout:1;
|
2007-11-11 07:29:37 +00:00
|
|
|
unsigned no_stderr:1;
|
2007-03-10 08:28:00 +00:00
|
|
|
unsigned git_cmd:1; /* if this is to be git sub-command */
|
2009-07-04 19:26:42 +00:00
|
|
|
unsigned silent_exec_failure:1;
|
2007-03-10 08:28:00 +00:00
|
|
|
unsigned stdout_to_stderr:1;
|
2009-12-30 10:53:16 +00:00
|
|
|
unsigned use_shell:1;
|
2008-07-22 07:12:46 +00:00
|
|
|
void (*preexec_cb)(void);
|
2007-03-10 08:28:00 +00:00
|
|
|
};
|
|
|
|
|
2007-03-10 08:28:05 +00:00
|
|
|
int start_command(struct child_process *);
|
|
|
|
int finish_command(struct child_process *);
|
2007-03-10 08:28:00 +00:00
|
|
|
int run_command(struct child_process *);
|
|
|
|
|
2009-01-16 19:09:59 +00:00
|
|
|
extern int run_hook(const char *index_file, const char *name, ...);
|
|
|
|
|
2006-12-31 02:55:22 +00:00
|
|
|
#define RUN_COMMAND_NO_STDIN 1
|
2006-01-11 02:12:17 +00:00
|
|
|
#define RUN_GIT_CMD 2 /*If this is to be git sub-command */
|
2006-12-31 02:55:19 +00:00
|
|
|
#define RUN_COMMAND_STDOUT_TO_STDERR 4
|
2009-07-04 19:26:42 +00:00
|
|
|
#define RUN_SILENT_EXEC_FAILURE 8
|
2009-12-30 10:53:16 +00:00
|
|
|
#define RUN_USING_SHELL 16
|
2006-12-31 02:55:15 +00:00
|
|
|
int run_command_v_opt(const char **argv, int opt);
|
2007-05-23 20:21:39 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* env (the environment) is to be formatted like environ: "VAR=VALUE".
|
|
|
|
* To unset an environment variable use just "VAR".
|
|
|
|
*/
|
2007-05-22 21:48:47 +00:00
|
|
|
int run_command_v_opt_cd_env(const char **argv, int opt, const char *dir, const char *const *env);
|
2005-07-31 19:17:43 +00:00
|
|
|
|
2007-10-19 19:48:00 +00:00
|
|
|
/*
|
|
|
|
* The purpose of the following functions is to feed a pipe by running
|
|
|
|
* a function asynchronously and providing output that the caller reads.
|
|
|
|
*
|
|
|
|
* It is expected that no synchronization and mutual exclusion between
|
|
|
|
* the caller and the feed function is necessary so that the function
|
|
|
|
* can run in a thread without interfering with the caller.
|
|
|
|
*/
|
|
|
|
struct async {
|
|
|
|
/*
|
2010-02-05 20:57:38 +00:00
|
|
|
* proc reads from in; closes it before return
|
|
|
|
* proc writes to out; closes it before return
|
2007-10-19 19:48:00 +00:00
|
|
|
* returns 0 on success, non-zero on failure
|
|
|
|
*/
|
2010-02-05 20:57:38 +00:00
|
|
|
int (*proc)(int in, int out, void *data);
|
2007-10-19 19:48:00 +00:00
|
|
|
void *data;
|
2010-02-05 20:57:38 +00:00
|
|
|
int in; /* caller writes here and closes it */
|
2007-10-19 19:48:00 +00:00
|
|
|
int out; /* caller reads from here and closes it */
|
2010-03-09 20:00:36 +00:00
|
|
|
#ifdef NO_PTHREADS
|
2007-10-19 19:48:00 +00:00
|
|
|
pid_t pid;
|
2007-12-08 21:19:14 +00:00
|
|
|
#else
|
2010-03-06 15:40:42 +00:00
|
|
|
pthread_t tid;
|
2010-02-05 20:57:38 +00:00
|
|
|
int proc_in;
|
|
|
|
int proc_out;
|
2007-12-08 21:19:14 +00:00
|
|
|
#endif
|
2007-10-19 19:48:00 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
int start_async(struct async *async);
|
|
|
|
int finish_async(struct async *async);
|
|
|
|
|
2005-07-31 19:17:43 +00:00
|
|
|
#endif
|