Fix the GObject Visual Studio Projects
[platform/upstream/glib.git] / glib / gspawn.h
1 /* gspawn.h - Process launching
2  *
3  *  Copyright 2000 Red Hat, Inc.
4  *
5  * GLib is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public License as
7  * published by the Free Software Foundation; either version 2 of the
8  * License, or (at your option) any later version.
9  *
10  * GLib is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with GLib; see the file COPYING.LIB.  If not, write
17  * to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18  * Boston, MA 02111-1307, USA.
19  */
20
21 #ifndef __G_SPAWN_H__
22 #define __G_SPAWN_H__
23
24 #if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION)
25 #error "Only <glib.h> can be included directly."
26 #endif
27
28 #include <glib/gerror.h>
29
30 G_BEGIN_DECLS
31
32
33 /* I'm not sure I remember our proposed naming convention here. */
34 /**
35  * G_SPAWN_ERROR:
36  *
37  * Error domain for spawning processes. Errors in this domain will
38  * be from the #GSpawnError enumeration. See #GError for information on
39  * error domains.
40  */
41 #define G_SPAWN_ERROR g_spawn_error_quark ()
42
43 /**
44  * GSpawnError:
45  * @G_SPAWN_ERROR_FORK: Fork failed due to lack of memory.
46  * @G_SPAWN_ERROR_READ: Read or select on pipes failed.
47  * @G_SPAWN_ERROR_CHDIR: Changing to working directory failed.
48  * @G_SPAWN_ERROR_ACCES: execv() returned <literal>EACCES</literal>
49  * @G_SPAWN_ERROR_PERM: execv() returned <literal>EPERM</literal>
50  * @G_SPAWN_ERROR_TOO_BIG: execv() returned <literal>E2BIG</literal>
51  * @G_SPAWN_ERROR_2BIG: deprecated alias for %G_SPAWN_ERROR_TOO_BIG
52  * @G_SPAWN_ERROR_NOEXEC: execv() returned <literal>ENOEXEC</literal>
53  * @G_SPAWN_ERROR_NAMETOOLONG: execv() returned <literal>ENAMETOOLONG</literal>
54  * @G_SPAWN_ERROR_NOENT: execv() returned <literal>ENOENT</literal>
55  * @G_SPAWN_ERROR_NOMEM: execv() returned <literal>ENOMEM</literal>
56  * @G_SPAWN_ERROR_NOTDIR: execv() returned <literal>ENOTDIR</literal>
57  * @G_SPAWN_ERROR_LOOP: execv() returned <literal>ELOOP</literal>
58  * @G_SPAWN_ERROR_TXTBUSY: execv() returned <literal>ETXTBUSY</literal>
59  * @G_SPAWN_ERROR_IO: execv() returned <literal>EIO</literal>
60  * @G_SPAWN_ERROR_NFILE: execv() returned <literal>ENFILE</literal>
61  * @G_SPAWN_ERROR_MFILE: execv() returned <literal>EMFILE</literal>
62  * @G_SPAWN_ERROR_INVAL: execv() returned <literal>EINVAL</literal>
63  * @G_SPAWN_ERROR_ISDIR: execv() returned <literal>EISDIR</literal>
64  * @G_SPAWN_ERROR_LIBBAD: execv() returned <literal>ELIBBAD</literal>
65  * @G_SPAWN_ERROR_FAILED: Some other fatal failure,
66  *   <literal>error-&gt;message</literal> should explain.
67  *
68  * Error codes returned by spawning processes.
69  */
70 typedef enum
71 {
72   G_SPAWN_ERROR_FORK,   /* fork failed due to lack of memory */
73   G_SPAWN_ERROR_READ,   /* read or select on pipes failed */
74   G_SPAWN_ERROR_CHDIR,  /* changing to working dir failed */
75   G_SPAWN_ERROR_ACCES,  /* execv() returned EACCES */
76   G_SPAWN_ERROR_PERM,   /* execv() returned EPERM */
77   G_SPAWN_ERROR_TOO_BIG,/* execv() returned E2BIG */
78 #ifndef G_DISABLE_DEPRECATED
79   G_SPAWN_ERROR_2BIG = G_SPAWN_ERROR_TOO_BIG,
80 #endif
81   G_SPAWN_ERROR_NOEXEC, /* execv() returned ENOEXEC */
82   G_SPAWN_ERROR_NAMETOOLONG, /* ""  "" ENAMETOOLONG */
83   G_SPAWN_ERROR_NOENT,       /* ""  "" ENOENT */
84   G_SPAWN_ERROR_NOMEM,       /* ""  "" ENOMEM */
85   G_SPAWN_ERROR_NOTDIR,      /* ""  "" ENOTDIR */
86   G_SPAWN_ERROR_LOOP,        /* ""  "" ELOOP   */
87   G_SPAWN_ERROR_TXTBUSY,     /* ""  "" ETXTBUSY */
88   G_SPAWN_ERROR_IO,          /* ""  "" EIO */
89   G_SPAWN_ERROR_NFILE,       /* ""  "" ENFILE */
90   G_SPAWN_ERROR_MFILE,       /* ""  "" EMFLE */
91   G_SPAWN_ERROR_INVAL,       /* ""  "" EINVAL */
92   G_SPAWN_ERROR_ISDIR,       /* ""  "" EISDIR */
93   G_SPAWN_ERROR_LIBBAD,      /* ""  "" ELIBBAD */
94   G_SPAWN_ERROR_FAILED       /* other fatal failure, error->message
95                               * should explain
96                               */
97 } GSpawnError;
98
99 /**
100  * G_SPAWN_EXIT_ERROR:
101  *
102  * Error domain used by g_spawn_check_exit_status().  The code
103  * will be the program exit code.
104  */
105 #define G_SPAWN_EXIT_ERROR g_spawn_exit_error_quark ()
106
107 /**
108  * GSpawnChildSetupFunc:
109  * @user_data: user data to pass to the function.
110  *
111  * Specifies the type of the setup function passed to g_spawn_async(),
112  * g_spawn_sync() and g_spawn_async_with_pipes(), which can, in very
113  * limited ways, be used to affect the child's execution.
114  *
115  * On POSIX platforms, the function is called in the child after GLib
116  * has performed all the setup it plans to perform, but before calling
117  * exec(). Actions taken in this function will only affect the child,
118  * not the parent.
119  *
120  * On Windows, the function is called in the parent. Its usefulness on
121  * Windows is thus questionable. In many cases executing the child setup
122  * function in the parent can have ill effects, and you should be very
123  * careful when porting software to Windows that uses child setup
124  * functions.
125  *
126  * However, even on POSIX, you are extremely limited in what you can
127  * safely do from a #GSpawnChildSetupFunc, because any mutexes that
128  * were held by other threads in the parent process at the time of the
129  * fork() will still be locked in the child process, and they will
130  * never be unlocked (since the threads that held them don't exist in
131  * the child). POSIX allows only async-signal-safe functions (see
132  * <citerefentry><refentrytitle>signal</refentrytitle><manvolnum>7</manvolnum></citerefentry>)
133  * to be called in the child between fork() and exec(), which
134  * drastically limits the usefulness of child setup functions.
135  *
136  * In particular, it is not safe to call any function which may
137  * call malloc(), which includes POSIX functions such as setenv().
138  * If you need to set up the child environment differently from
139  * the parent, you should use g_get_environ(), g_environ_setenv(),
140  * and g_environ_unsetenv(), and then pass the complete environment
141  * list to the <literal>g_spawn...</literal> function.
142  */
143 typedef void (* GSpawnChildSetupFunc) (gpointer user_data);
144
145 /**
146  * GSpawnFlags:
147  * @G_SPAWN_LEAVE_DESCRIPTORS_OPEN: the parent's open file descriptors will be
148  *   inherited by the child; otherwise all descriptors except stdin/stdout/stderr
149  *   will be closed before calling exec() in the child.
150  * @G_SPAWN_DO_NOT_REAP_CHILD: the child will not be automatically reaped; you
151  *   must use g_child_watch_add() yourself (or call waitpid()
152  *   or handle <literal>SIGCHLD</literal> yourself), or the child will become a zombie.
153  * @G_SPAWN_SEARCH_PATH: <literal>argv[0]</literal> need not be an absolute path,
154  *   it will be looked for in the user's <envar>PATH</envar>.
155  * @G_SPAWN_STDOUT_TO_DEV_NULL: the child's standard output will be discarded,
156  *   instead of going to the same location as the parent's standard output.
157  * @G_SPAWN_STDERR_TO_DEV_NULL: the child's standard error will be discarded.
158  * @G_SPAWN_CHILD_INHERITS_STDIN: the child will inherit the parent's standard
159  *   input (by default, the child's standard input is attached to
160  *   <filename>/dev/null</filename>).
161  * @G_SPAWN_FILE_AND_ARGV_ZERO: the first element of <literal>argv</literal> is
162  *   the file to execute, while the remaining elements are the actual argument
163  *   vector to pass to the file. Normally g_spawn_async_with_pipes() uses
164  *   <literal>argv[0]</literal> as the file to execute, and passes all of
165  *   <literal>argv</literal> to the child.
166  * @G_SPAWN_SEARCH_PATH_FROM_ENVP: if <literal>argv[0]</literal> is not an abolute path,
167  *   it will be looked for in the <envar>PATH</envar> from the passed child 
168  *   environment. Since: 2.34
169  *
170  * Flags passed to g_spawn_sync(), g_spawn_async() and g_spawn_async_with_pipes().
171  */
172 typedef enum
173 {
174   G_SPAWN_LEAVE_DESCRIPTORS_OPEN = 1 << 0,
175   G_SPAWN_DO_NOT_REAP_CHILD      = 1 << 1,
176   /* look for argv[0] in the path i.e. use execvp() */
177   G_SPAWN_SEARCH_PATH            = 1 << 2,
178   /* Dump output to /dev/null */
179   G_SPAWN_STDOUT_TO_DEV_NULL     = 1 << 3,
180   G_SPAWN_STDERR_TO_DEV_NULL     = 1 << 4,
181   G_SPAWN_CHILD_INHERITS_STDIN   = 1 << 5,
182   G_SPAWN_FILE_AND_ARGV_ZERO     = 1 << 6,
183   G_SPAWN_SEARCH_PATH_FROM_ENVP  = 1 << 7
184 } GSpawnFlags;
185
186 GLIB_AVAILABLE_IN_ALL
187 GQuark g_spawn_error_quark (void);
188 GLIB_AVAILABLE_IN_ALL
189 GQuark g_spawn_exit_error_quark (void);
190
191 GLIB_AVAILABLE_IN_ALL
192 gboolean g_spawn_async (const gchar           *working_directory,
193                         gchar                **argv,
194                         gchar                **envp,
195                         GSpawnFlags            flags,
196                         GSpawnChildSetupFunc   child_setup,
197                         gpointer               user_data,
198                         GPid                  *child_pid,
199                         GError               **error);
200
201
202 /* Opens pipes for non-NULL standard_output, standard_input, standard_error,
203  * and returns the parent's end of the pipes.
204  */
205 GLIB_AVAILABLE_IN_ALL
206 gboolean g_spawn_async_with_pipes (const gchar          *working_directory,
207                                    gchar               **argv,
208                                    gchar               **envp,
209                                    GSpawnFlags           flags,
210                                    GSpawnChildSetupFunc  child_setup,
211                                    gpointer              user_data,
212                                    GPid                 *child_pid,
213                                    gint                 *standard_input,
214                                    gint                 *standard_output,
215                                    gint                 *standard_error,
216                                    GError              **error);
217
218
219 /* If standard_output or standard_error are non-NULL, the full
220  * standard output or error of the command will be placed there.
221  */
222
223 GLIB_AVAILABLE_IN_ALL
224 gboolean g_spawn_sync         (const gchar          *working_directory,
225                                gchar               **argv,
226                                gchar               **envp,
227                                GSpawnFlags           flags,
228                                GSpawnChildSetupFunc  child_setup,
229                                gpointer              user_data,
230                                gchar               **standard_output,
231                                gchar               **standard_error,
232                                gint                 *exit_status,
233                                GError              **error);
234
235 GLIB_AVAILABLE_IN_ALL
236 gboolean g_spawn_command_line_sync  (const gchar          *command_line,
237                                      gchar               **standard_output,
238                                      gchar               **standard_error,
239                                      gint                 *exit_status,
240                                      GError              **error);
241 GLIB_AVAILABLE_IN_ALL
242 gboolean g_spawn_command_line_async (const gchar          *command_line,
243                                      GError              **error);
244
245 GLIB_AVAILABLE_IN_2_34
246 gboolean g_spawn_check_exit_status (gint      exit_status,
247                                     GError  **error);
248
249 GLIB_AVAILABLE_IN_ALL
250 void g_spawn_close_pid (GPid pid);
251
252 #ifdef G_OS_WIN32
253 #define g_spawn_async              g_spawn_async_utf8
254 #define g_spawn_async_with_pipes   g_spawn_async_with_pipes_utf8
255 #define g_spawn_sync               g_spawn_sync_utf8
256 #define g_spawn_command_line_sync  g_spawn_command_line_sync_utf8
257 #define g_spawn_command_line_async g_spawn_command_line_async_utf8
258
259 GLIB_AVAILABLE_IN_ALL
260 gboolean g_spawn_async_utf8              (const gchar           *working_directory,
261                                           gchar                **argv,
262                                           gchar                **envp,
263                                           GSpawnFlags            flags,
264                                           GSpawnChildSetupFunc   child_setup,
265                                           gpointer               user_data,
266                                           GPid                  *child_pid,
267                                           GError               **error);
268 GLIB_AVAILABLE_IN_ALL
269 gboolean g_spawn_async_with_pipes_utf8   (const gchar           *working_directory,
270                                           gchar                **argv,
271                                           gchar                **envp,
272                                           GSpawnFlags            flags,
273                                           GSpawnChildSetupFunc   child_setup,
274                                           gpointer               user_data,
275                                           GPid                  *child_pid,
276                                           gint                  *standard_input,
277                                           gint                  *standard_output,
278                                           gint                  *standard_error,
279                                           GError               **error);
280 GLIB_AVAILABLE_IN_ALL
281 gboolean g_spawn_sync_utf8               (const gchar           *working_directory,
282                                           gchar                **argv,
283                                           gchar                **envp,
284                                           GSpawnFlags            flags,
285                                           GSpawnChildSetupFunc   child_setup,
286                                           gpointer               user_data,
287                                           gchar                **standard_output,
288                                           gchar                **standard_error,
289                                           gint                  *exit_status,
290                                           GError               **error);
291
292 GLIB_AVAILABLE_IN_ALL
293 gboolean g_spawn_command_line_sync_utf8  (const gchar           *command_line,
294                                           gchar                **standard_output,
295                                           gchar                **standard_error,
296                                           gint                  *exit_status,
297                                           GError               **error);
298 GLIB_AVAILABLE_IN_ALL
299 gboolean g_spawn_command_line_async_utf8 (const gchar           *command_line,
300                                           GError               **error);
301 #endif
302
303 G_END_DECLS
304
305 #endif /* __G_SPAWN_H__ */