2005-07-31 21:17:43 +02:00
|
|
|
#ifndef RUN_COMMAND_H
|
|
|
|
#define RUN_COMMAND_H
|
|
|
|
|
|
|
|
enum {
|
|
|
|
ERR_RUN_COMMAND_FORK = 10000,
|
|
|
|
ERR_RUN_COMMAND_EXEC,
|
2007-03-10 09:28:08 +01:00
|
|
|
ERR_RUN_COMMAND_PIPE,
|
2005-07-31 21:17:43 +02:00
|
|
|
ERR_RUN_COMMAND_WAITPID,
|
|
|
|
ERR_RUN_COMMAND_WAITPID_WRONG_PID,
|
|
|
|
ERR_RUN_COMMAND_WAITPID_SIGNAL,
|
|
|
|
ERR_RUN_COMMAND_WAITPID_NOEXIT,
|
|
|
|
};
|
|
|
|
|
2007-03-10 09:28:00 +01:00
|
|
|
struct child_process {
|
|
|
|
const char **argv;
|
2007-03-10 09:28:05 +01:00
|
|
|
pid_t pid;
|
2007-03-10 09:28:08 +01:00
|
|
|
int in;
|
2007-03-12 19:37:45 +01:00
|
|
|
int out;
|
2007-05-22 23:48:23 +02:00
|
|
|
const char *dir;
|
2007-05-22 23:48:47 +02:00
|
|
|
const char *const *env;
|
2007-03-10 09:28:08 +01:00
|
|
|
unsigned close_in:1;
|
2007-03-12 19:37:45 +01:00
|
|
|
unsigned close_out:1;
|
2007-03-10 09:28:00 +01:00
|
|
|
unsigned no_stdin:1;
|
2007-03-12 19:37:55 +01:00
|
|
|
unsigned no_stdout:1;
|
2007-03-10 09:28:00 +01:00
|
|
|
unsigned git_cmd:1; /* if this is to be git sub-command */
|
|
|
|
unsigned stdout_to_stderr:1;
|
|
|
|
};
|
|
|
|
|
2007-03-10 09:28:05 +01:00
|
|
|
int start_command(struct child_process *);
|
|
|
|
int finish_command(struct child_process *);
|
2007-03-10 09:28:00 +01:00
|
|
|
int run_command(struct child_process *);
|
|
|
|
|
2006-12-31 03:55:22 +01:00
|
|
|
#define RUN_COMMAND_NO_STDIN 1
|
2006-01-11 03:12:17 +01:00
|
|
|
#define RUN_GIT_CMD 2 /*If this is to be git sub-command */
|
2006-12-31 03:55:19 +01:00
|
|
|
#define RUN_COMMAND_STDOUT_TO_STDERR 4
|
2006-12-31 03:55:15 +01:00
|
|
|
int run_command_v_opt(const char **argv, int opt);
|
2007-05-22 23:48:23 +02:00
|
|
|
int run_command_v_opt_cd(const char **argv, int opt, const char *dir);
|
2007-05-23 22:21:39 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* env (the environment) is to be formatted like environ: "VAR=VALUE".
|
|
|
|
* To unset an environment variable use just "VAR".
|
|
|
|
*/
|
2007-05-22 23:48:47 +02:00
|
|
|
int run_command_v_opt_cd_env(const char **argv, int opt, const char *dir, const char *const *env);
|
2005-07-31 21:17:43 +02:00
|
|
|
|
|
|
|
#endif
|