gobject: Clean up logic in property checks
[glib.git] / glib / glib-unix.c
blobb26609aa729a38dde85613bab774bda2b42f2054
1 /* GLIB - Library of useful routines for C programming
2 * Copyright (C) 2011 Red Hat, Inc.
4 * glib-unix.c: UNIX specific API wrappers and convenience functions
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the
18 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 * Boston, MA 02111-1307, USA.
21 * Authors: Colin Walters <walters@verbum.org>
24 #include "config.h"
26 #include "glib-unix.h"
27 #include "gmain-internal.h"
29 #include <string.h>
31 /**
32 * SECTION:gunix
33 * @title: UNIX-specific utilities and integration
34 * @short_description: pipes, signal handling
35 * @include: glib-unix.h
37 * Most of GLib is intended to be portable; in contrast, this set of
38 * functions is designed for programs which explicitly target UNIX,
39 * or are using it to build higher level abstractions which would be
40 * conditionally compiled if the platform matches G_OS_UNIX.
42 * To use these functions, you must explicitly include the
43 * "glib-unix.h" header.
46 GQuark
47 g_unix_error_quark (void)
49 return g_quark_from_static_string ("g-unix-error-quark");
52 static gboolean
53 g_unix_set_error_from_errno (GError **error,
54 gint saved_errno)
56 g_set_error_literal (error,
57 G_UNIX_ERROR,
59 g_strerror (saved_errno));
60 errno = saved_errno;
61 return FALSE;
64 /**
65 * g_unix_open_pipe:
66 * @fds: Array of two integers
67 * @flags: Bitfield of file descriptor flags, see "man 2 fcntl"
68 * @error: a #GError
70 * Similar to the UNIX pipe() call, but on modern systems like Linux
71 * uses the pipe2() system call, which atomically creates a pipe with
72 * the configured flags. The only supported flag currently is
73 * <literal>FD_CLOEXEC</literal>. If for example you want to configure
74 * <literal>O_NONBLOCK</literal>, that must still be done separately with
75 * fcntl().
77 * <note>This function does *not* take <literal>O_CLOEXEC</literal>, it takes
78 * <literal>FD_CLOEXEC</literal> as if for fcntl(); these are
79 * different on Linux/glibc.</note>
81 * Returns: %TRUE on success, %FALSE if not (and errno will be set).
83 * Since: 2.30
85 gboolean
86 g_unix_open_pipe (int *fds,
87 int flags,
88 GError **error)
90 int ecode;
92 /* We only support FD_CLOEXEC */
93 g_return_val_if_fail ((flags & (FD_CLOEXEC)) == flags, FALSE);
95 #ifdef HAVE_PIPE2
97 int pipe2_flags = 0;
98 if (flags & FD_CLOEXEC)
99 pipe2_flags |= O_CLOEXEC;
100 /* Atomic */
101 ecode = pipe2 (fds, pipe2_flags);
102 if (ecode == -1 && errno != ENOSYS)
103 return g_unix_set_error_from_errno (error, errno);
104 else if (ecode == 0)
105 return TRUE;
106 /* Fall through on -ENOSYS, we must be running on an old kernel */
108 #endif
109 ecode = pipe (fds);
110 if (ecode == -1)
111 return g_unix_set_error_from_errno (error, errno);
112 ecode = fcntl (fds[0], flags);
113 if (ecode == -1)
115 int saved_errno = errno;
116 close (fds[0]);
117 close (fds[1]);
118 return g_unix_set_error_from_errno (error, saved_errno);
120 ecode = fcntl (fds[1], flags);
121 if (ecode == -1)
123 int saved_errno = errno;
124 close (fds[0]);
125 close (fds[1]);
126 return g_unix_set_error_from_errno (error, saved_errno);
128 return TRUE;
132 * g_unix_set_fd_nonblocking:
133 * @fd: A file descriptor
134 * @nonblock: If %TRUE, set the descriptor to be non-blocking
135 * @error: a #GError
137 * Control the non-blocking state of the given file descriptor,
138 * according to @nonblock. On most systems this uses <literal>O_NONBLOCK</literal>, but
139 * on some older ones may use <literal>O_NDELAY</literal>.
141 * Returns: %TRUE if successful
143 * Since: 2.30
145 gboolean
146 g_unix_set_fd_nonblocking (gint fd,
147 gboolean nonblock,
148 GError **error)
150 #ifdef F_GETFL
151 glong fcntl_flags;
152 fcntl_flags = fcntl (fd, F_GETFL);
154 if (fcntl_flags == -1)
155 return g_unix_set_error_from_errno (error, errno);
157 if (nonblock)
159 #ifdef O_NONBLOCK
160 fcntl_flags |= O_NONBLOCK;
161 #else
162 fcntl_flags |= O_NDELAY;
163 #endif
165 else
167 #ifdef O_NONBLOCK
168 fcntl_flags &= ~O_NONBLOCK;
169 #else
170 fcntl_flags &= ~O_NDELAY;
171 #endif
174 if (fcntl (fd, F_SETFL, fcntl_flags) == -1)
175 return g_unix_set_error_from_errno (error, errno);
176 return TRUE;
177 #else
178 return g_unix_set_error_from_errno (error, EINVAL);
179 #endif
184 * g_unix_signal_source_new:
185 * @signum: A signal number
187 * Create a #GSource that will be dispatched upon delivery of the UNIX
188 * signal @signum. Currently only <literal>SIGHUP</literal>,
189 * <literal>SIGINT</literal>, and <literal>SIGTERM</literal> can
190 * be monitored. Note that unlike the UNIX default, all sources which
191 * have created a watch will be dispatched, regardless of which
192 * underlying thread invoked g_unix_signal_source_new().
194 * For example, an effective use of this function is to handle <literal>SIGTERM</literal>
195 * cleanly; flushing any outstanding files, and then calling
196 * g_main_loop_quit (). It is not safe to do any of this a regular
197 * UNIX signal handler; your handler may be invoked while malloc() or
198 * another library function is running, causing reentrancy if you
199 * attempt to use it from the handler. None of the GLib/GObject API
200 * is safe against this kind of reentrancy.
202 * The interaction of this source when combined with native UNIX
203 * functions like sigprocmask() is not defined.
205 * The source will not initially be associated with any #GMainContext
206 * and must be added to one with g_source_attach() before it will be
207 * executed.
209 * Returns: A newly created #GSource
211 * Since: 2.30
213 GSource *
214 g_unix_signal_source_new (int signum)
216 g_return_val_if_fail (signum == SIGHUP || signum == SIGINT || signum == SIGTERM, NULL);
218 return _g_main_create_unix_signal_watch (signum);
222 * g_unix_signal_add_full:
223 * @priority: the priority of the signal source. Typically this will be in
224 * the range between #G_PRIORITY_DEFAULT and #G_PRIORITY_HIGH.
225 * @signum: Signal number
226 * @handler: Callback
227 * @user_data: Data for @handler
228 * @notify: #GDestroyNotify for @handler
230 * A convenience function for g_unix_signal_source_new(), which
231 * attaches to the default #GMainContext. You can remove the watch
232 * using g_source_remove().
234 * Returns: An ID (greater than 0) for the event source
236 * Since: 2.30
238 guint
239 g_unix_signal_add_full (int priority,
240 int signum,
241 GSourceFunc handler,
242 gpointer user_data,
243 GDestroyNotify notify)
245 guint id;
246 GSource *source;
248 source = g_unix_signal_source_new (signum);
250 if (priority != G_PRIORITY_DEFAULT)
251 g_source_set_priority (source, priority);
253 g_source_set_callback (source, handler, user_data, notify);
254 id = g_source_attach (source, NULL);
255 g_source_unref (source);
257 return id;
261 * g_unix_signal_add:
262 * @signum: Signal number
263 * @handler: Callback
264 * @user_data: Data for @handler
266 * A convenience function for g_unix_signal_source_new(), which
267 * attaches to the default #GMainContext. You can remove the watch
268 * using g_source_remove().
270 * Returns: An ID (greater than 0) for the event source
272 * Since: 2.30
274 guint
275 g_unix_signal_add (int signum,
276 GSourceFunc handler,
277 gpointer user_data)
279 return g_unix_signal_add_full (G_PRIORITY_DEFAULT, signum, handler, user_data, NULL);