blob: f18b4f4817448530a5adbe2c8835bb7791add42a [file] [log] [blame]
Junio C Hamano3dac5042007-12-15 08:40:541run-command API
2===============
3
Junio C Hamano6d559fc2008-02-20 10:44:264The run-command API offers a versatile tool to run sub-processes with
5redirected input and output as well as with a modified environment
6and an alternate current directory.
Junio C Hamano3dac5042007-12-15 08:40:547
Junio C Hamano6d559fc2008-02-20 10:44:268A similar API offers the capability to run a function asynchronously,
9which is primarily used to capture the output that the function
10produces in the caller in order to process it.
Junio C Hamano3dac5042007-12-15 08:40:5411
Junio C Hamano6d559fc2008-02-20 10:44:2612
13Functions
14---------
15
16`start_command`::
17
18Start a sub-process. Takes a pointer to a `struct child_process`
19that specifies the details and returns pipe FDs (if requested).
20See below for details.
21
22`finish_command`::
23
24Wait for the completion of a sub-process that was started with
25start_command().
26
27`run_command`::
28
29A convenience function that encapsulates a sequence of
30start_command() followed by finish_command(). Takes a pointer
31to a `struct child_process` that specifies the details.
32
Junio C Hamanoa476efa2008-10-10 15:31:4233`run_command_v_opt`, `run_command_v_opt_cd_env`::
Junio C Hamano6d559fc2008-02-20 10:44:2634
35Convenience functions that encapsulate a sequence of
36start_command() followed by finish_command(). The argument argv
37specifies the program and its arguments. The argument opt is zero
Junio C Hamano9f883862009-08-11 06:23:5238or more of the flags `RUN_COMMAND_NO_STDIN`, `RUN_GIT_CMD`,
39`RUN_COMMAND_STDOUT_TO_STDERR`, or `RUN_SILENT_EXEC_FAILURE`
40that correspond to the members .no_stdin, .git_cmd,
41.stdout_to_stderr, .silent_exec_failure of `struct child_process`.
Junio C Hamano6d559fc2008-02-20 10:44:2642The argument dir corresponds the member .dir. The argument env
43corresponds to the member .env.
44
Junio C Hamano9f883862009-08-11 06:23:5245The functions above do the following:
46
47. If a system call failed, errno is set and -1 is returned. A diagnostic
48 is printed.
49
50. If the program was not found, then -1 is returned and errno is set to
51 ENOENT; a diagnostic is printed only if .silent_exec_failure is 0.
52
53. Otherwise, the program is run. If it terminates regularly, its exit
Junio C Hamano167b1382010-01-31 23:04:3154 code is returned. No diagnostic is printed, even if the exit code is
Junio C Hamano9f883862009-08-11 06:23:5255 non-zero.
56
57. If the program terminated due to a signal, then the return value is the
58 signal number - 128, ie. it is negative and so indicates an unusual
59 condition; a diagnostic is printed. This return value can be passed to
60 exit(2), which will report the same code to the parent process that a
61 POSIX shell's $? would report for a program that died from the signal.
62
63
Junio C Hamano6d559fc2008-02-20 10:44:2664`start_async`::
65
66Run a function asynchronously. Takes a pointer to a `struct
Junio C Hamano74a198f2010-02-22 00:13:3167async` that specifies the details and returns a set of pipe FDs
68for communication with the function. See below for details.
Junio C Hamano6d559fc2008-02-20 10:44:2669
70`finish_async`::
71
Junio C Hamano4f1d8c42008-03-03 02:01:1672Wait for the completion of an asynchronous function that was
Junio C Hamano6d559fc2008-02-20 10:44:2673started with start_async().
74
Junio C Hamanocc0cb312009-01-22 03:38:5075`run_hook`::
76
77Run a hook.
78The first argument is a pathname to an index file, or NULL
79if the hook uses the default index file or no index is needed.
80The second argument is the name of the hook.
81The further arguments correspond to the hook arguments.
82The last argument has to be NULL to terminate the arguments list.
83If the hook does not exist or is not executable, the return
84value will be zero.
85If it is executable, the hook will be executed and the exit
86status of the hook is returned.
87On execution, .stdout_to_stderr and .no_stdin will be set.
88(See below.)
89
Junio C Hamano6d559fc2008-02-20 10:44:2690
91Data structures
92---------------
93
94* `struct child_process`
95
96This describes the arguments, redirections, and environment of a
97command to run in a sub-process.
98
99The caller:
100
Junio C Hamano7562b872008-06-18 03:17:261011. allocates and clears (memset(&chld, 0, sizeof(chld));) a
Junio C Hamano6d559fc2008-02-20 10:44:26102 struct child_process variable;
1032. initializes the members;
1043. calls start_command();
1054. processes the data;
1065. closes file descriptors (if necessary; see below);
1076. calls finish_command().
108
109The .argv member is set up as an array of string pointers (NULL
110terminated), of which .argv[0] is the program name to run (usually
111without a path). If the command to run is a git command, set argv[0] to
112the command name without the 'git-' prefix and set .git_cmd = 1.
113
114The members .in, .out, .err are used to redirect stdin, stdout,
115stderr as follows:
116
117. Specify 0 to request no special redirection. No new file descriptor
118 is allocated. The child process simply inherits the channel from the
119 parent.
120
121. Specify -1 to have a pipe allocated; start_command() replaces -1
122 by the pipe FD in the following way:
123
124.in: Returns the writable pipe end into which the caller writes;
125the readable end of the pipe becomes the child's stdin.
126
127.out, .err: Returns the readable pipe end from which the caller
128reads; the writable end of the pipe end becomes child's
129stdout/stderr.
130
131 The caller of start_command() must close the so returned FDs
132 after it has completed reading from/writing to it!
133
134. Specify a file descriptor > 0 to be used by the child:
135
136.in: The FD must be readable; it becomes child's stdin.
137.out: The FD must be writable; it becomes child's stdout.
Junio C Hamano74a198f2010-02-22 00:13:31138.err: The FD must be writable; it becomes child's stderr.
Junio C Hamano6d559fc2008-02-20 10:44:26139
140 The specified FD is closed by start_command(), even if it fails to
141 run the sub-process!
142
143. Special forms of redirection are available by setting these members
144 to 1:
145
146.no_stdin, .no_stdout, .no_stderr: The respective channel is
147redirected to /dev/null.
148
Junio C Hamano86bcccc2008-03-08 09:33:55149.stdout_to_stderr: stdout of the child is redirected to its
150stderr. This happens after stderr is itself redirected.
151So stdout will follow stderr to wherever it is
152redirected.
Junio C Hamano6d559fc2008-02-20 10:44:26153
154To modify the environment of the sub-process, specify an array of
155string pointers (NULL terminated) in .env:
156
157. If the string is of the form "VAR=value", i.e. it contains '='
158 the variable is added to the child process's environment.
159
Junio C Hamano4f1d8c42008-03-03 02:01:16160. If the string does not contain '=', it names an environment
161 variable that will be removed from the child process's environment.
Junio C Hamano6d559fc2008-02-20 10:44:26162
163To specify a new initial working directory for the sub-process,
164specify it in the .dir member.
165
Junio C Hamano9f883862009-08-11 06:23:52166If the program cannot be found, the functions return -1 and set
167errno to ENOENT. Normally, an error message is printed, but if
168.silent_exec_failure is set to 1, no message is printed for this
169special error condition.
170
Junio C Hamano6d559fc2008-02-20 10:44:26171
172* `struct async`
173
174This describes a function to run asynchronously, whose purpose is
175to produce output that the caller reads.
176
177The caller:
178
Junio C Hamano7562b872008-06-18 03:17:261791. allocates and clears (memset(&asy, 0, sizeof(asy));) a
Junio C Hamano6d559fc2008-02-20 10:44:26180 struct async variable;
1812. initializes .proc and .data;
1823. calls start_async();
Junio C Hamano74a198f2010-02-22 00:13:311834. processes communicates with proc through .in and .out;
1845. closes .in and .out;
Junio C Hamano6d559fc2008-02-20 10:44:261856. calls finish_async().
186
Junio C Hamano74a198f2010-02-22 00:13:31187The members .in, .out are used to provide a set of fd's for
188communication between the caller and the callee as follows:
189
190. Specify 0 to have no file descriptor passed. The callee will
191 receive -1 in the corresponding argument.
192
193. Specify < 0 to have a pipe allocated; start_async() replaces
194 with the pipe FD in the following way:
195
196.in: Returns the writable pipe end into which the caller
197writes; the readable end of the pipe becomes the function's
198in argument.
199
200.out: Returns the readable pipe end from which the caller
201reads; the writable end of the pipe becomes the function's
202out argument.
203
204 The caller of start_async() must close the returned FDs after it
205 has completed reading from/writing from them.
206
207. Specify a file descriptor > 0 to be used by the function:
208
209.in: The FD must be readable; it becomes the function's in.
210.out: The FD must be writable; it becomes the function's out.
211
212 The specified FD is closed by start_async(), even if it fails to
213 run the function.
214
Junio C Hamano6d559fc2008-02-20 10:44:26215The function pointer in .proc has the following signature:
216
Junio C Hamano74a198f2010-02-22 00:13:31217int proc(int in, int out, void *data);
Junio C Hamano6d559fc2008-02-20 10:44:26218
Junio C Hamano74a198f2010-02-22 00:13:31219. in, out specifies a set of file descriptors to which the function
220 must read/write the data that it needs/produces. The function
221 *must* close these descriptors before it returns. A descriptor
222 may be -1 if the caller did not configure a descriptor for that
223 direction.
Junio C Hamano6d559fc2008-02-20 10:44:26224
225. data is the value that the caller has specified in the .data member
226 of struct async.
227
228. The return value of the function is 0 on success and non-zero
229 on failure. If the function indicates failure, finish_async() will
230 report failure as well.
231
232
233There are serious restrictions on what the asynchronous function can do
Junio C Hamanobb88cf42010-06-21 15:23:55234because this facility is implemented by a thread in the same address
235space on most platforms (when pthreads is available), but by a pipe to
236a forked process otherwise:
Junio C Hamano6d559fc2008-02-20 10:44:26237
238. It cannot change the program's state (global variables, environment,
Junio C Hamano74a198f2010-02-22 00:13:31239 etc.) in a way that the caller notices; in other words, .in and .out
240 are the only communication channels to the caller.
Junio C Hamano6d559fc2008-02-20 10:44:26241
242. It must not change the program's state that the caller of the
243 facility also uses.