pci core: function pci_host_bus_register() cleanup
[qemu/cris-port.git] / io / channel-watch.c
blob931fa4d49d7605ed294831c8b62c2c753680a236
1 /*
2 * QEMU I/O channels watch helper APIs
4 * Copyright (c) 2015 Red Hat, Inc.
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, see <http://www.gnu.org/licenses/>.
21 #include "qemu/osdep.h"
22 #include "io/channel-watch.h"
24 typedef struct QIOChannelFDSource QIOChannelFDSource;
25 struct QIOChannelFDSource {
26 GSource parent;
27 GPollFD fd;
28 QIOChannel *ioc;
29 GIOCondition condition;
33 typedef struct QIOChannelFDPairSource QIOChannelFDPairSource;
34 struct QIOChannelFDPairSource {
35 GSource parent;
36 GPollFD fdread;
37 GPollFD fdwrite;
38 QIOChannel *ioc;
39 GIOCondition condition;
43 static gboolean
44 qio_channel_fd_source_prepare(GSource *source G_GNUC_UNUSED,
45 gint *timeout)
47 *timeout = -1;
49 return FALSE;
53 static gboolean
54 qio_channel_fd_source_check(GSource *source)
56 QIOChannelFDSource *ssource = (QIOChannelFDSource *)source;
58 return ssource->fd.revents & ssource->condition;
62 static gboolean
63 qio_channel_fd_source_dispatch(GSource *source,
64 GSourceFunc callback,
65 gpointer user_data)
67 QIOChannelFunc func = (QIOChannelFunc)callback;
68 QIOChannelFDSource *ssource = (QIOChannelFDSource *)source;
70 return (*func)(ssource->ioc,
71 ssource->fd.revents & ssource->condition,
72 user_data);
76 static void
77 qio_channel_fd_source_finalize(GSource *source)
79 QIOChannelFDSource *ssource = (QIOChannelFDSource *)source;
81 object_unref(OBJECT(ssource->ioc));
85 static gboolean
86 qio_channel_fd_pair_source_prepare(GSource *source G_GNUC_UNUSED,
87 gint *timeout)
89 *timeout = -1;
91 return FALSE;
95 static gboolean
96 qio_channel_fd_pair_source_check(GSource *source)
98 QIOChannelFDPairSource *ssource = (QIOChannelFDPairSource *)source;
99 GIOCondition poll_condition = ssource->fdread.revents |
100 ssource->fdwrite.revents;
102 return poll_condition & ssource->condition;
106 static gboolean
107 qio_channel_fd_pair_source_dispatch(GSource *source,
108 GSourceFunc callback,
109 gpointer user_data)
111 QIOChannelFunc func = (QIOChannelFunc)callback;
112 QIOChannelFDPairSource *ssource = (QIOChannelFDPairSource *)source;
113 GIOCondition poll_condition = ssource->fdread.revents |
114 ssource->fdwrite.revents;
116 return (*func)(ssource->ioc,
117 poll_condition & ssource->condition,
118 user_data);
122 static void
123 qio_channel_fd_pair_source_finalize(GSource *source)
125 QIOChannelFDPairSource *ssource = (QIOChannelFDPairSource *)source;
127 object_unref(OBJECT(ssource->ioc));
131 GSourceFuncs qio_channel_fd_source_funcs = {
132 qio_channel_fd_source_prepare,
133 qio_channel_fd_source_check,
134 qio_channel_fd_source_dispatch,
135 qio_channel_fd_source_finalize
139 GSourceFuncs qio_channel_fd_pair_source_funcs = {
140 qio_channel_fd_pair_source_prepare,
141 qio_channel_fd_pair_source_check,
142 qio_channel_fd_pair_source_dispatch,
143 qio_channel_fd_pair_source_finalize
147 GSource *qio_channel_create_fd_watch(QIOChannel *ioc,
148 int fd,
149 GIOCondition condition)
151 GSource *source;
152 QIOChannelFDSource *ssource;
154 source = g_source_new(&qio_channel_fd_source_funcs,
155 sizeof(QIOChannelFDSource));
156 ssource = (QIOChannelFDSource *)source;
158 ssource->ioc = ioc;
159 object_ref(OBJECT(ioc));
161 ssource->condition = condition;
163 ssource->fd.fd = fd;
164 ssource->fd.events = condition;
166 g_source_add_poll(source, &ssource->fd);
168 return source;
172 GSource *qio_channel_create_fd_pair_watch(QIOChannel *ioc,
173 int fdread,
174 int fdwrite,
175 GIOCondition condition)
177 GSource *source;
178 QIOChannelFDPairSource *ssource;
180 source = g_source_new(&qio_channel_fd_pair_source_funcs,
181 sizeof(QIOChannelFDPairSource));
182 ssource = (QIOChannelFDPairSource *)source;
184 ssource->ioc = ioc;
185 object_ref(OBJECT(ioc));
187 ssource->condition = condition;
189 ssource->fdread.fd = fdread;
190 ssource->fdread.events = condition & G_IO_IN;
192 ssource->fdwrite.fd = fdwrite;
193 ssource->fdwrite.events = condition & G_IO_OUT;
195 g_source_add_poll(source, &ssource->fdread);
196 g_source_add_poll(source, &ssource->fdwrite);
198 return source;