Github User Fetcher 1.0.0
C Application with Server and GUI
Loading...
Searching...
No Matches
gsubprocess.h
Go to the documentation of this file.
1/* GIO - GLib Input, Output and Streaming Library
2 *
3 * Copyright (C) 2012 Colin Walters <walters@verbum.org>
4 *
5 * SPDX-License-Identifier: LGPL-2.1-or-later
6 *
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.
11 *
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.
16 *
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/>.
19 *
20 * Author: Colin Walters <walters@verbum.org>
21 */
22
23#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION)
24#error "Only <gio/gio.h> can be included directly."
25#endif
26
27#ifndef __G_SUBPROCESS_H__
28#define __G_SUBPROCESS_H__
29
30#include <gio/giotypes.h>
31
33
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))
37
40
41/**** Core API ****/
42
45 GError **error,
46 const gchar *argv0,
49GSubprocess * g_subprocess_newv (const gchar * const *argv,
50 GSubprocessFlags flags,
51 GError **error);
52
55
58
61
64
65#ifdef G_OS_UNIX
68 gint signal_num);
69#endif
70
73
76 GCancellable *cancellable,
77 GError **error);
78
81 GCancellable *cancellable,
82 GAsyncReadyCallback callback,
83 gpointer user_data);
84
87 GAsyncResult *result,
88 GError **error);
89
92 GCancellable *cancellable,
93 GError **error);
94
97 GCancellable *cancellable,
98 GAsyncReadyCallback callback,
99 gpointer user_data);
100
103 GAsyncResult *result,
104 GError **error);
105
106
109
112
115
118
121
124
127 GBytes *stdin_buf,
128 GCancellable *cancellable,
129 GBytes **stdout_buf,
130 GBytes **stderr_buf,
131 GError **error);
134 GBytes *stdin_buf,
135 GCancellable *cancellable,
136 GAsyncReadyCallback callback,
137 gpointer user_data);
138
141 GAsyncResult *result,
142 GBytes **stdout_buf,
143 GBytes **stderr_buf,
144 GError **error);
145
148 const char *stdin_buf,
149 GCancellable *cancellable,
150 char **stdout_buf,
151 char **stderr_buf,
152 GError **error);
155 const char *stdin_buf,
156 GCancellable *cancellable,
157 GAsyncReadyCallback callback,
158 gpointer user_data);
159
162 GAsyncResult *result,
163 char **stdout_buf,
164 char **stderr_buf,
165 GError **error);
166
168
169#endif /* __G_SUBPROCESS_H__ */
typedefG_BEGIN_DECLS struct _GBytes GBytes
Definition garray.h:38
#define GIO_AVAILABLE_IN_2_40
GSubprocessFlags
Definition gioenums.h:2036
struct _GSubprocess GSubprocess
Definition giotypes.h:552
struct _GAsyncResult GAsyncResult
Definition giotypes.h:36
void(* GAsyncReadyCallback)(GObject *source_object, GAsyncResult *res, gpointer data)
Definition giotypes.h:190
#define G_END_DECLS
Definition gmacros.h:910
#define G_GNUC_NULL_TERMINATED
Definition gmacros.h:326
#define G_BEGIN_DECLS
Definition gmacros.h:909
#define G_GNUC_CONST
Definition gmacros.h:637
GIO_AVAILABLE_IN_2_40 gboolean g_subprocess_communicate_utf8_finish(GSubprocess *subprocess, GAsyncResult *result, char **stdout_buf, char **stderr_buf, GError **error)
GIO_AVAILABLE_IN_2_40 GSubprocess * g_subprocess_newv(const gchar *const *argv, GSubprocessFlags flags, GError **error)
GIO_AVAILABLE_IN_2_40 gboolean g_subprocess_get_if_exited(GSubprocess *subprocess)
GIO_AVAILABLE_IN_2_40 void g_subprocess_wait_check_async(GSubprocess *subprocess, GCancellable *cancellable, GAsyncReadyCallback callback, gpointer user_data)
GIO_AVAILABLE_IN_2_40 gint g_subprocess_get_term_sig(GSubprocess *subprocess)
GIO_AVAILABLE_IN_2_40 void g_subprocess_wait_async(GSubprocess *subprocess, GCancellable *cancellable, GAsyncReadyCallback callback, gpointer user_data)
GIO_AVAILABLE_IN_2_40 const gchar * g_subprocess_get_identifier(GSubprocess *subprocess)
GIO_AVAILABLE_IN_2_40 gboolean g_subprocess_wait_check(GSubprocess *subprocess, GCancellable *cancellable, GError **error)
GIO_AVAILABLE_IN_2_40 void g_subprocess_communicate_async(GSubprocess *subprocess, GBytes *stdin_buf, GCancellable *cancellable, GAsyncReadyCallback callback, gpointer user_data)
GIO_AVAILABLE_IN_2_40 void g_subprocess_send_signal(GSubprocess *subprocess, gint signal_num)
GIO_AVAILABLE_IN_2_40 GInputStream * g_subprocess_get_stdout_pipe(GSubprocess *subprocess)
GIO_AVAILABLE_IN_2_40 gint g_subprocess_get_status(GSubprocess *subprocess)
GIO_AVAILABLE_IN_2_40 GSubprocess * g_subprocess_new(GSubprocessFlags flags, GError **error, const gchar *argv0,...) G_GNUC_NULL_TERMINATED
GIO_AVAILABLE_IN_2_40 gboolean g_subprocess_wait(GSubprocess *subprocess, GCancellable *cancellable, GError **error)
GIO_AVAILABLE_IN_2_40 void g_subprocess_communicate_utf8_async(GSubprocess *subprocess, const char *stdin_buf, GCancellable *cancellable, GAsyncReadyCallback callback, gpointer user_data)
GIO_AVAILABLE_IN_2_40 GInputStream * g_subprocess_get_stderr_pipe(GSubprocess *subprocess)
GIO_AVAILABLE_IN_2_40 GType g_subprocess_get_type(void) G_GNUC_CONST
GIO_AVAILABLE_IN_2_40 void g_subprocess_force_exit(GSubprocess *subprocess)
GIO_AVAILABLE_IN_2_40 gboolean g_subprocess_communicate_utf8(GSubprocess *subprocess, const char *stdin_buf, GCancellable *cancellable, char **stdout_buf, char **stderr_buf, GError **error)
GIO_AVAILABLE_IN_2_40 GOutputStream * g_subprocess_get_stdin_pipe(GSubprocess *subprocess)
GIO_AVAILABLE_IN_2_40 gboolean g_subprocess_get_if_signaled(GSubprocess *subprocess)
GIO_AVAILABLE_IN_2_40 gboolean g_subprocess_get_successful(GSubprocess *subprocess)
GIO_AVAILABLE_IN_2_40 gboolean g_subprocess_communicate(GSubprocess *subprocess, GBytes *stdin_buf, GCancellable *cancellable, GBytes **stdout_buf, GBytes **stderr_buf, GError **error)
GIO_AVAILABLE_IN_2_40 gint g_subprocess_get_exit_status(GSubprocess *subprocess)
GIO_AVAILABLE_IN_2_40 gboolean g_subprocess_communicate_finish(GSubprocess *subprocess, GAsyncResult *result, GBytes **stdout_buf, GBytes **stderr_buf, GError **error)
GIO_AVAILABLE_IN_2_40 gboolean g_subprocess_wait_check_finish(GSubprocess *subprocess, GAsyncResult *result, GError **error)
GIO_AVAILABLE_IN_2_40 gboolean g_subprocess_wait_finish(GSubprocess *subprocess, GAsyncResult *result, GError **error)
gsize GType
Definition gtype.h:427
gint gboolean
Definition gtypes.h:56
G_BEGIN_DECLS typedef char gchar
Definition gtypes.h:52
void * gpointer
Definition gtypes.h:109
int gint
Definition gtypes.h:55
static void error(LoadState *S, const char *why)