1 /* GIO - GLib Input, Output and Streaming Library
3 * Copyright (C) 2006-2007 Red Hat, Inc.
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version.
10 * This library 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.
15 * You should have received a copy of the GNU Lesser General
16 * Public License along with this library; if not, write to the
17 * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
18 * Boston, MA 02111-1307, USA.
20 * Author: Alexander Larsson <alexl@redhat.com>
25 #include "gasynchelper.h"
30 * SECTION:gasynchelper
31 * @short_description: Asynchronous Helper Functions
33 * @see_also: #GAsyncReady
35 * Provides helper functions for asynchronous operations.
39 /*************************************************************************
41 ************************************************************************/
47 GCancellable *cancellable;
53 fd_source_prepare (GSource *source,
56 FDSource *fd_source = (FDSource *)source;
59 return g_cancellable_is_cancelled (fd_source->cancellable);
63 fd_source_check (GSource *source)
65 FDSource *fd_source = (FDSource *)source;
68 g_cancellable_is_cancelled (fd_source->cancellable) ||
69 fd_source->pollfd.revents != 0;
73 fd_source_dispatch (GSource *source,
78 GFDSourceFunc func = (GFDSourceFunc)callback;
79 GFDSourceObjectFunc func2 = (GFDSourceObjectFunc)callback;
80 FDSource *fd_source = (FDSource *)source;
82 g_warn_if_fail (func != NULL);
84 if (fd_source->object)
85 return (*func2) (fd_source->object, fd_source->pollfd.revents, user_data);
87 return (*func) (user_data, fd_source->pollfd.revents, fd_source->pollfd.fd);
91 fd_source_finalize (GSource *source)
93 FDSource *fd_source = (FDSource *)source;
95 if (fd_source->cancelled_tag)
96 g_cancellable_disconnect (fd_source->cancellable,
97 fd_source->cancelled_tag);
99 if (fd_source->cancellable)
100 g_object_unref (fd_source->cancellable);
102 if (fd_source->object)
103 g_object_unref (fd_source->object);
106 static GSourceFuncs fd_source_funcs = {
113 /* Might be called on another thread */
115 fd_source_cancelled_cb (GCancellable *cancellable,
118 /* Wake up the mainloop in case we're waiting on async calls with FDSource */
119 g_main_context_wakeup (NULL);
123 _g_fd_source_new_with_object (GObject *object,
126 GCancellable *cancellable)
131 source = g_source_new (&fd_source_funcs, sizeof (FDSource));
132 fd_source = (FDSource *)source;
135 fd_source->cancellable = g_object_ref (cancellable);
138 fd_source->object = g_object_ref (object);
140 fd_source->pollfd.fd = fd;
141 fd_source->pollfd.events = events;
142 g_source_add_poll (source, &fd_source->pollfd);
145 fd_source->cancelled_tag =
146 g_cancellable_connect (cancellable,
147 (GCallback)fd_source_cancelled_cb,
154 _g_fd_source_new (int fd,
156 GCancellable *cancellable)
158 return _g_fd_source_new_with_object (NULL, fd, events, cancellable);