Junio C Hamano | 530e741 | 2007-11-24 23:48:04 -0800 | [diff] [blame] | 1 | run-command API |
| 2 | =============== |
| 3 | |
Johannes Sixt | b9dfe51 | 2008-02-18 20:23:03 +0100 | [diff] [blame] | 4 | The run-command API offers a versatile tool to run sub-processes with |
| 5 | redirected input and output as well as with a modified environment |
| 6 | and an alternate current directory. |
Junio C Hamano | 530e741 | 2007-11-24 23:48:04 -0800 | [diff] [blame] | 7 | |
Johannes Sixt | b9dfe51 | 2008-02-18 20:23:03 +0100 | [diff] [blame] | 8 | A similar API offers the capability to run a function asynchronously, |
| 9 | which is primarily used to capture the output that the function |
| 10 | produces in the caller in order to process it. |
Junio C Hamano | 530e741 | 2007-11-24 23:48:04 -0800 | [diff] [blame] | 11 | |
Johannes Sixt | b9dfe51 | 2008-02-18 20:23:03 +0100 | [diff] [blame] | 12 | |
| 13 | Functions |
| 14 | --------- |
| 15 | |
René Scharfe | 96ef1bd | 2014-10-28 23:09:53 +0100 | [diff] [blame] | 16 | `child_process_init`:: |
René Scharfe | 483bbd4 | 2014-08-19 21:10:48 +0200 | [diff] [blame] | 17 | |
| 18 | Initialize a struct child_process variable. |
| 19 | |
Johannes Sixt | b9dfe51 | 2008-02-18 20:23:03 +0100 | [diff] [blame] | 20 | `start_command`:: |
| 21 | |
| 22 | Start a sub-process. Takes a pointer to a `struct child_process` |
| 23 | that specifies the details and returns pipe FDs (if requested). |
| 24 | See below for details. |
| 25 | |
| 26 | `finish_command`:: |
| 27 | |
| 28 | Wait for the completion of a sub-process that was started with |
| 29 | start_command(). |
| 30 | |
| 31 | `run_command`:: |
| 32 | |
| 33 | A convenience function that encapsulates a sequence of |
| 34 | start_command() followed by finish_command(). Takes a pointer |
| 35 | to a `struct child_process` that specifies the details. |
| 36 | |
Nanako Shiraishi | 7996ff3 | 2008-10-02 19:14:25 +0900 | [diff] [blame] | 37 | `run_command_v_opt`, `run_command_v_opt_cd_env`:: |
Johannes Sixt | b9dfe51 | 2008-02-18 20:23:03 +0100 | [diff] [blame] | 38 | |
| 39 | Convenience functions that encapsulate a sequence of |
| 40 | start_command() followed by finish_command(). The argument argv |
| 41 | specifies the program and its arguments. The argument opt is zero |
Johannes Sixt | 0b91322 | 2009-08-08 22:44:20 +0200 | [diff] [blame] | 42 | or more of the flags `RUN_COMMAND_NO_STDIN`, `RUN_GIT_CMD`, |
| 43 | `RUN_COMMAND_STDOUT_TO_STDERR`, or `RUN_SILENT_EXEC_FAILURE` |
| 44 | that correspond to the members .no_stdin, .git_cmd, |
| 45 | .stdout_to_stderr, .silent_exec_failure of `struct child_process`. |
Johannes Sixt | b9dfe51 | 2008-02-18 20:23:03 +0100 | [diff] [blame] | 46 | The argument dir corresponds the member .dir. The argument env |
| 47 | corresponds to the member .env. |
| 48 | |
René Scharfe | 2d71608 | 2015-10-24 14:11:27 +0200 | [diff] [blame] | 49 | `child_process_clear`:: |
| 50 | |
| 51 | Release the memory associated with the struct child_process. |
| 52 | Most users of the run-command API don't need to call this |
| 53 | function explicitly because `start_command` invokes it on |
| 54 | failure and `finish_command` calls it automatically already. |
| 55 | |
Johannes Sixt | 0b91322 | 2009-08-08 22:44:20 +0200 | [diff] [blame] | 56 | The functions above do the following: |
| 57 | |
| 58 | . If a system call failed, errno is set and -1 is returned. A diagnostic |
| 59 | is printed. |
| 60 | |
| 61 | . If the program was not found, then -1 is returned and errno is set to |
| 62 | ENOENT; a diagnostic is printed only if .silent_exec_failure is 0. |
| 63 | |
| 64 | . Otherwise, the program is run. If it terminates regularly, its exit |
Ralf Wildenhues | 6a5d0b0 | 2010-01-31 14:24:39 +0100 | [diff] [blame] | 65 | code is returned. No diagnostic is printed, even if the exit code is |
Johannes Sixt | 0b91322 | 2009-08-08 22:44:20 +0200 | [diff] [blame] | 66 | non-zero. |
| 67 | |
| 68 | . If the program terminated due to a signal, then the return value is the |
Jeff King | 709ca73 | 2013-01-05 09:49:49 -0500 | [diff] [blame] | 69 | signal number + 128, ie. the same value that a POSIX shell's $? would |
| 70 | report. A diagnostic is printed. |
Johannes Sixt | 0b91322 | 2009-08-08 22:44:20 +0200 | [diff] [blame] | 71 | |
| 72 | |
Johannes Sixt | b9dfe51 | 2008-02-18 20:23:03 +0100 | [diff] [blame] | 73 | `start_async`:: |
| 74 | |
| 75 | Run a function asynchronously. Takes a pointer to a `struct |
Erik Faye-Lund | ae6a560 | 2010-02-05 12:57:38 -0800 | [diff] [blame] | 76 | async` that specifies the details and returns a set of pipe FDs |
| 77 | for communication with the function. See below for details. |
Johannes Sixt | b9dfe51 | 2008-02-18 20:23:03 +0100 | [diff] [blame] | 78 | |
| 79 | `finish_async`:: |
| 80 | |
Ralf Wildenhues | 34cd62e | 2008-03-03 00:07:47 +0100 | [diff] [blame] | 81 | Wait for the completion of an asynchronous function that was |
Johannes Sixt | b9dfe51 | 2008-02-18 20:23:03 +0100 | [diff] [blame] | 82 | started with start_async(). |
| 83 | |
Stephan Beyer | 35d5ae6 | 2009-01-16 20:10:00 +0100 | [diff] [blame] | 84 | `run_hook`:: |
| 85 | |
| 86 | Run a hook. |
| 87 | The first argument is a pathname to an index file, or NULL |
| 88 | if the hook uses the default index file or no index is needed. |
| 89 | The second argument is the name of the hook. |
Stephan Beyer | 14e6298 | 2009-01-17 04:02:55 +0100 | [diff] [blame] | 90 | The further arguments correspond to the hook arguments. |
Stephan Beyer | 35d5ae6 | 2009-01-16 20:10:00 +0100 | [diff] [blame] | 91 | The last argument has to be NULL to terminate the arguments list. |
| 92 | If the hook does not exist or is not executable, the return |
| 93 | value will be zero. |
| 94 | If it is executable, the hook will be executed and the exit |
| 95 | status of the hook is returned. |
| 96 | On execution, .stdout_to_stderr and .no_stdin will be set. |
| 97 | (See below.) |
| 98 | |
Johannes Sixt | b9dfe51 | 2008-02-18 20:23:03 +0100 | [diff] [blame] | 99 | |
| 100 | Data structures |
| 101 | --------------- |
| 102 | |
| 103 | * `struct child_process` |
| 104 | |
| 105 | This describes the arguments, redirections, and environment of a |
| 106 | command to run in a sub-process. |
| 107 | |
| 108 | The caller: |
| 109 | |
René Scharfe | 483bbd4 | 2014-08-19 21:10:48 +0200 | [diff] [blame] | 110 | 1. allocates and clears (using child_process_init() or |
| 111 | CHILD_PROCESS_INIT) a struct child_process variable; |
Johannes Sixt | b9dfe51 | 2008-02-18 20:23:03 +0100 | [diff] [blame] | 112 | 2. initializes the members; |
| 113 | 3. calls start_command(); |
| 114 | 4. processes the data; |
| 115 | 5. closes file descriptors (if necessary; see below); |
| 116 | 6. calls finish_command(). |
| 117 | |
| 118 | The .argv member is set up as an array of string pointers (NULL |
| 119 | terminated), of which .argv[0] is the program name to run (usually |
| 120 | without a path). If the command to run is a git command, set argv[0] to |
| 121 | the command name without the 'git-' prefix and set .git_cmd = 1. |
| 122 | |
Jeff King | c460c0e | 2014-05-15 04:33:26 -0400 | [diff] [blame] | 123 | Note that the ownership of the memory pointed to by .argv stays with the |
| 124 | caller, but it should survive until `finish_command` completes. If the |
| 125 | .argv member is NULL, `start_command` will point it at the .args |
| 126 | `argv_array` (so you may use one or the other, but you must use exactly |
| 127 | one). The memory in .args will be cleaned up automatically during |
| 128 | `finish_command` (or during `start_command` when it is unsuccessful). |
| 129 | |
Johannes Sixt | b9dfe51 | 2008-02-18 20:23:03 +0100 | [diff] [blame] | 130 | The members .in, .out, .err are used to redirect stdin, stdout, |
| 131 | stderr as follows: |
| 132 | |
| 133 | . Specify 0 to request no special redirection. No new file descriptor |
| 134 | is allocated. The child process simply inherits the channel from the |
| 135 | parent. |
| 136 | |
| 137 | . Specify -1 to have a pipe allocated; start_command() replaces -1 |
| 138 | by the pipe FD in the following way: |
| 139 | |
| 140 | .in: Returns the writable pipe end into which the caller writes; |
| 141 | the readable end of the pipe becomes the child's stdin. |
| 142 | |
| 143 | .out, .err: Returns the readable pipe end from which the caller |
| 144 | reads; the writable end of the pipe end becomes child's |
| 145 | stdout/stderr. |
| 146 | |
| 147 | The caller of start_command() must close the so returned FDs |
| 148 | after it has completed reading from/writing to it! |
| 149 | |
| 150 | . Specify a file descriptor > 0 to be used by the child: |
| 151 | |
| 152 | .in: The FD must be readable; it becomes child's stdin. |
| 153 | .out: The FD must be writable; it becomes child's stdout. |
Shawn O. Pearce | 4f41b61 | 2010-02-05 12:57:37 -0800 | [diff] [blame] | 154 | .err: The FD must be writable; it becomes child's stderr. |
Johannes Sixt | b9dfe51 | 2008-02-18 20:23:03 +0100 | [diff] [blame] | 155 | |
| 156 | The specified FD is closed by start_command(), even if it fails to |
| 157 | run the sub-process! |
| 158 | |
| 159 | . Special forms of redirection are available by setting these members |
| 160 | to 1: |
| 161 | |
| 162 | .no_stdin, .no_stdout, .no_stderr: The respective channel is |
| 163 | redirected to /dev/null. |
| 164 | |
Christian Couder | ce2cf27 | 2008-03-05 08:35:16 +0100 | [diff] [blame] | 165 | .stdout_to_stderr: stdout of the child is redirected to its |
| 166 | stderr. This happens after stderr is itself redirected. |
| 167 | So stdout will follow stderr to wherever it is |
| 168 | redirected. |
Johannes Sixt | b9dfe51 | 2008-02-18 20:23:03 +0100 | [diff] [blame] | 169 | |
| 170 | To modify the environment of the sub-process, specify an array of |
| 171 | string pointers (NULL terminated) in .env: |
| 172 | |
| 173 | . If the string is of the form "VAR=value", i.e. it contains '=' |
| 174 | the variable is added to the child process's environment. |
| 175 | |
Ralf Wildenhues | 34cd62e | 2008-03-03 00:07:47 +0100 | [diff] [blame] | 176 | . If the string does not contain '=', it names an environment |
| 177 | variable that will be removed from the child process's environment. |
Johannes Sixt | b9dfe51 | 2008-02-18 20:23:03 +0100 | [diff] [blame] | 178 | |
René Scharfe | 19a583d | 2014-10-19 13:13:55 +0200 | [diff] [blame] | 179 | If the .env member is NULL, `start_command` will point it at the |
| 180 | .env_array `argv_array` (so you may use one or the other, but not both). |
| 181 | The memory in .env_array will be cleaned up automatically during |
| 182 | `finish_command` (or during `start_command` when it is unsuccessful). |
| 183 | |
Johannes Sixt | b9dfe51 | 2008-02-18 20:23:03 +0100 | [diff] [blame] | 184 | To specify a new initial working directory for the sub-process, |
| 185 | specify it in the .dir member. |
| 186 | |
Johannes Sixt | 0b91322 | 2009-08-08 22:44:20 +0200 | [diff] [blame] | 187 | If the program cannot be found, the functions return -1 and set |
| 188 | errno to ENOENT. Normally, an error message is printed, but if |
| 189 | .silent_exec_failure is set to 1, no message is printed for this |
| 190 | special error condition. |
| 191 | |
Johannes Sixt | b9dfe51 | 2008-02-18 20:23:03 +0100 | [diff] [blame] | 192 | |
| 193 | * `struct async` |
| 194 | |
| 195 | This describes a function to run asynchronously, whose purpose is |
| 196 | to produce output that the caller reads. |
| 197 | |
| 198 | The caller: |
| 199 | |
Miklos Vajna | 9e18522 | 2008-06-14 03:01:59 +0200 | [diff] [blame] | 200 | 1. allocates and clears (memset(&asy, 0, sizeof(asy));) a |
Johannes Sixt | b9dfe51 | 2008-02-18 20:23:03 +0100 | [diff] [blame] | 201 | struct async variable; |
| 202 | 2. initializes .proc and .data; |
| 203 | 3. calls start_async(); |
Erik Faye-Lund | ae6a560 | 2010-02-05 12:57:38 -0800 | [diff] [blame] | 204 | 4. processes communicates with proc through .in and .out; |
| 205 | 5. closes .in and .out; |
Johannes Sixt | b9dfe51 | 2008-02-18 20:23:03 +0100 | [diff] [blame] | 206 | 6. calls finish_async(). |
| 207 | |
Erik Faye-Lund | ae6a560 | 2010-02-05 12:57:38 -0800 | [diff] [blame] | 208 | The members .in, .out are used to provide a set of fd's for |
| 209 | communication between the caller and the callee as follows: |
| 210 | |
| 211 | . Specify 0 to have no file descriptor passed. The callee will |
| 212 | receive -1 in the corresponding argument. |
| 213 | |
| 214 | . Specify < 0 to have a pipe allocated; start_async() replaces |
| 215 | with the pipe FD in the following way: |
| 216 | |
| 217 | .in: Returns the writable pipe end into which the caller |
| 218 | writes; the readable end of the pipe becomes the function's |
| 219 | in argument. |
| 220 | |
| 221 | .out: Returns the readable pipe end from which the caller |
| 222 | reads; the writable end of the pipe becomes the function's |
| 223 | out argument. |
| 224 | |
| 225 | The caller of start_async() must close the returned FDs after it |
| 226 | has completed reading from/writing from them. |
| 227 | |
| 228 | . Specify a file descriptor > 0 to be used by the function: |
| 229 | |
| 230 | .in: The FD must be readable; it becomes the function's in. |
| 231 | .out: The FD must be writable; it becomes the function's out. |
| 232 | |
| 233 | The specified FD is closed by start_async(), even if it fails to |
| 234 | run the function. |
| 235 | |
Johannes Sixt | b9dfe51 | 2008-02-18 20:23:03 +0100 | [diff] [blame] | 236 | The function pointer in .proc has the following signature: |
| 237 | |
Erik Faye-Lund | ae6a560 | 2010-02-05 12:57:38 -0800 | [diff] [blame] | 238 | int proc(int in, int out, void *data); |
Johannes Sixt | b9dfe51 | 2008-02-18 20:23:03 +0100 | [diff] [blame] | 239 | |
Erik Faye-Lund | ae6a560 | 2010-02-05 12:57:38 -0800 | [diff] [blame] | 240 | . in, out specifies a set of file descriptors to which the function |
| 241 | must read/write the data that it needs/produces. The function |
| 242 | *must* close these descriptors before it returns. A descriptor |
| 243 | may be -1 if the caller did not configure a descriptor for that |
| 244 | direction. |
Johannes Sixt | b9dfe51 | 2008-02-18 20:23:03 +0100 | [diff] [blame] | 245 | |
| 246 | . data is the value that the caller has specified in the .data member |
| 247 | of struct async. |
| 248 | |
| 249 | . The return value of the function is 0 on success and non-zero |
| 250 | on failure. If the function indicates failure, finish_async() will |
| 251 | report failure as well. |
| 252 | |
| 253 | |
| 254 | There are serious restrictions on what the asynchronous function can do |
Johannes Sixt | f6b6098 | 2010-03-09 21:00:36 +0100 | [diff] [blame] | 255 | because this facility is implemented by a thread in the same address |
| 256 | space on most platforms (when pthreads is available), but by a pipe to |
| 257 | a forked process otherwise: |
Johannes Sixt | b9dfe51 | 2008-02-18 20:23:03 +0100 | [diff] [blame] | 258 | |
| 259 | . It cannot change the program's state (global variables, environment, |
Erik Faye-Lund | ae6a560 | 2010-02-05 12:57:38 -0800 | [diff] [blame] | 260 | etc.) in a way that the caller notices; in other words, .in and .out |
| 261 | are the only communication channels to the caller. |
Johannes Sixt | b9dfe51 | 2008-02-18 20:23:03 +0100 | [diff] [blame] | 262 | |
| 263 | . It must not change the program's state that the caller of the |
| 264 | facility also uses. |