2005-07-31 23:17:43 +04:00
|
|
|
#ifndef RUN_COMMAND_H
|
|
|
|
#define RUN_COMMAND_H
|
|
|
|
|
2007-03-10 11:28:00 +03:00
|
|
|
struct child_process {
|
|
|
|
const char **argv;
|
2007-03-10 11:28:05 +03:00
|
|
|
pid_t pid;
|
2008-02-22 01:42:56 +03: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 23:57:37 +03:00
|
|
|
* .err: a writable FD, becomes child's stderr
|
2008-02-22 01:42:56 +03:00
|
|
|
* The specified FD is closed by start_command(), even in case
|
|
|
|
* of errors!
|
|
|
|
*/
|
2007-03-10 11:28:08 +03:00
|
|
|
int in;
|
2007-03-12 21:37:45 +03:00
|
|
|
int out;
|
2007-10-19 23:47:58 +04:00
|
|
|
int err;
|
2007-05-23 01:48:23 +04:00
|
|
|
const char *dir;
|
2007-05-23 01:48:47 +04:00
|
|
|
const char *const *env;
|
2007-03-10 11:28:00 +03:00
|
|
|
unsigned no_stdin:1;
|
2007-03-12 21:37:55 +03:00
|
|
|
unsigned no_stdout:1;
|
2007-11-11 10:29:37 +03:00
|
|
|
unsigned no_stderr:1;
|
2007-03-10 11:28:00 +03:00
|
|
|
unsigned git_cmd:1; /* if this is to be git sub-command */
|
2009-07-04 23:26:42 +04:00
|
|
|
unsigned silent_exec_failure:1;
|
2007-03-10 11:28:00 +03:00
|
|
|
unsigned stdout_to_stderr:1;
|
2008-07-22 11:12:46 +04:00
|
|
|
void (*preexec_cb)(void);
|
2007-03-10 11:28:00 +03:00
|
|
|
};
|
|
|
|
|
2007-03-10 11:28:05 +03:00
|
|
|
int start_command(struct child_process *);
|
|
|
|
int finish_command(struct child_process *);
|
2007-03-10 11:28:00 +03:00
|
|
|
int run_command(struct child_process *);
|
|
|
|
|
2009-01-16 22:09:59 +03:00
|
|
|
extern int run_hook(const char *index_file, const char *name, ...);
|
|
|
|
|
2006-12-31 05:55:22 +03:00
|
|
|
#define RUN_COMMAND_NO_STDIN 1
|
2006-01-11 05:12:17 +03:00
|
|
|
#define RUN_GIT_CMD 2 /*If this is to be git sub-command */
|
2006-12-31 05:55:19 +03:00
|
|
|
#define RUN_COMMAND_STDOUT_TO_STDERR 4
|
2009-07-04 23:26:42 +04:00
|
|
|
#define RUN_SILENT_EXEC_FAILURE 8
|
2006-12-31 05:55:15 +03:00
|
|
|
int run_command_v_opt(const char **argv, int opt);
|
2007-05-24 00:21:39 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* env (the environment) is to be formatted like environ: "VAR=VALUE".
|
|
|
|
* To unset an environment variable use just "VAR".
|
|
|
|
*/
|
2007-05-23 01:48:47 +04:00
|
|
|
int run_command_v_opt_cd_env(const char **argv, int opt, const char *dir, const char *const *env);
|
2005-07-31 23:17:43 +04:00
|
|
|
|
2007-10-19 23:48:00 +04: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 {
|
|
|
|
/*
|
|
|
|
* proc writes to fd and closes it;
|
|
|
|
* returns 0 on success, non-zero on failure
|
|
|
|
*/
|
|
|
|
int (*proc)(int fd, void *data);
|
|
|
|
void *data;
|
|
|
|
int out; /* caller reads from here and closes it */
|
2009-09-16 12:20:22 +04:00
|
|
|
#ifndef WIN32
|
2007-10-19 23:48:00 +04:00
|
|
|
pid_t pid;
|
2007-12-09 00:19:14 +03:00
|
|
|
#else
|
|
|
|
HANDLE tid;
|
|
|
|
int fd_for_proc;
|
|
|
|
#endif
|
2007-10-19 23:48:00 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
int start_async(struct async *async);
|
|
|
|
int finish_async(struct async *async);
|
|
|
|
|
2005-07-31 23:17:43 +04:00
|
|
|
#endif
|