1 /* GIO - GLib Input, Output and Streaming Library
3 * Copyright (C) 2012 Colin Walters <walters@verbum.org>
5 * SPDX-License-Identifier: LGPL-2.1-or-later
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General
18 * Public License along with this library; if not, see <http://www.gnu.org/licenses/>.
20 * Author: Colin Walters <walters@verbum.org>
23 #if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION)
24 #error "Only <gio/gio.h> can be included directly."
27 #ifndef __G_SUBPROCESS_H__
28 #define __G_SUBPROCESS_H__
30 #include <gio/giotypes.h>
34 #define G_TYPE_SUBPROCESS (g_subprocess_get_type ())
35 #define G_SUBPROCESS(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_SUBPROCESS, GSubprocess))
36 #define G_IS_SUBPROCESS(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_SUBPROCESS))
39 GType g_subprocess_get_type (void) G_GNUC_CONST;
44 GSubprocess * g_subprocess_new (GSubprocessFlags flags,
47 ...) G_GNUC_NULL_TERMINATED;
49 GSubprocess * g_subprocess_newv (const gchar * const *argv,
50 GSubprocessFlags flags,
54 GOutputStream * g_subprocess_get_stdin_pipe (GSubprocess *subprocess);
57 GInputStream * g_subprocess_get_stdout_pipe (GSubprocess *subprocess);
60 GInputStream * g_subprocess_get_stderr_pipe (GSubprocess *subprocess);
63 const gchar * g_subprocess_get_identifier (GSubprocess *subprocess);
67 void g_subprocess_send_signal (GSubprocess *subprocess,
72 void g_subprocess_force_exit (GSubprocess *subprocess);
75 gboolean g_subprocess_wait (GSubprocess *subprocess,
76 GCancellable *cancellable,
80 void g_subprocess_wait_async (GSubprocess *subprocess,
81 GCancellable *cancellable,
82 GAsyncReadyCallback callback,
86 gboolean g_subprocess_wait_finish (GSubprocess *subprocess,
91 gboolean g_subprocess_wait_check (GSubprocess *subprocess,
92 GCancellable *cancellable,
96 void g_subprocess_wait_check_async (GSubprocess *subprocess,
97 GCancellable *cancellable,
98 GAsyncReadyCallback callback,
101 GIO_AVAILABLE_IN_2_40
102 gboolean g_subprocess_wait_check_finish (GSubprocess *subprocess,
103 GAsyncResult *result,
107 GIO_AVAILABLE_IN_2_40
108 gint g_subprocess_get_status (GSubprocess *subprocess);
110 GIO_AVAILABLE_IN_2_40
111 gboolean g_subprocess_get_successful (GSubprocess *subprocess);
113 GIO_AVAILABLE_IN_2_40
114 gboolean g_subprocess_get_if_exited (GSubprocess *subprocess);
116 GIO_AVAILABLE_IN_2_40
117 gint g_subprocess_get_exit_status (GSubprocess *subprocess);
119 GIO_AVAILABLE_IN_2_40
120 gboolean g_subprocess_get_if_signaled (GSubprocess *subprocess);
122 GIO_AVAILABLE_IN_2_40
123 gint g_subprocess_get_term_sig (GSubprocess *subprocess);
125 GIO_AVAILABLE_IN_2_40
126 gboolean g_subprocess_communicate (GSubprocess *subprocess,
128 GCancellable *cancellable,
132 GIO_AVAILABLE_IN_2_40
133 void g_subprocess_communicate_async (GSubprocess *subprocess,
135 GCancellable *cancellable,
136 GAsyncReadyCallback callback,
139 GIO_AVAILABLE_IN_2_40
140 gboolean g_subprocess_communicate_finish (GSubprocess *subprocess,
141 GAsyncResult *result,
146 GIO_AVAILABLE_IN_2_40
147 gboolean g_subprocess_communicate_utf8 (GSubprocess *subprocess,
148 const char *stdin_buf,
149 GCancellable *cancellable,
153 GIO_AVAILABLE_IN_2_40
154 void g_subprocess_communicate_utf8_async (GSubprocess *subprocess,
155 const char *stdin_buf,
156 GCancellable *cancellable,
157 GAsyncReadyCallback callback,
160 GIO_AVAILABLE_IN_2_40
161 gboolean g_subprocess_communicate_utf8_finish (GSubprocess *subprocess,
162 GAsyncResult *result,
169 #endif /* __G_SUBPROCESS_H__ */