xref: /qemu/include/io/channel.h (revision 20f4aa265ec8442be66f00ee3986a92018b44b7b)
1666a3af9SDaniel P. Berrange /*
2666a3af9SDaniel P. Berrange  * QEMU I/O channels
3666a3af9SDaniel P. Berrange  *
4666a3af9SDaniel P. Berrange  * Copyright (c) 2015 Red Hat, Inc.
5666a3af9SDaniel P. Berrange  *
6666a3af9SDaniel P. Berrange  * This library is free software; you can redistribute it and/or
7666a3af9SDaniel P. Berrange  * modify it under the terms of the GNU Lesser General Public
8666a3af9SDaniel P. Berrange  * License as published by the Free Software Foundation; either
9666a3af9SDaniel P. Berrange  * version 2 of the License, or (at your option) any later version.
10666a3af9SDaniel P. Berrange  *
11666a3af9SDaniel P. Berrange  * This library is distributed in the hope that it will be useful,
12666a3af9SDaniel P. Berrange  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13666a3af9SDaniel P. Berrange  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14666a3af9SDaniel P. Berrange  * Lesser General Public License for more details.
15666a3af9SDaniel P. Berrange  *
16666a3af9SDaniel P. Berrange  * You should have received a copy of the GNU Lesser General Public
17666a3af9SDaniel P. Berrange  * License along with this library; if not, see <http://www.gnu.org/licenses/>.
18666a3af9SDaniel P. Berrange  *
19666a3af9SDaniel P. Berrange  */
20666a3af9SDaniel P. Berrange 
212a6a4076SMarkus Armbruster #ifndef QIO_CHANNEL_H
222a6a4076SMarkus Armbruster #define QIO_CHANNEL_H
23666a3af9SDaniel P. Berrange 
24666a3af9SDaniel P. Berrange #include "qemu-common.h"
25666a3af9SDaniel P. Berrange #include "qom/object.h"
26666a3af9SDaniel P. Berrange 
27666a3af9SDaniel P. Berrange #define TYPE_QIO_CHANNEL "qio-channel"
28666a3af9SDaniel P. Berrange #define QIO_CHANNEL(obj)                                    \
29666a3af9SDaniel P. Berrange     OBJECT_CHECK(QIOChannel, (obj), TYPE_QIO_CHANNEL)
30666a3af9SDaniel P. Berrange #define QIO_CHANNEL_CLASS(klass)                                    \
31666a3af9SDaniel P. Berrange     OBJECT_CLASS_CHECK(QIOChannelClass, klass, TYPE_QIO_CHANNEL)
32666a3af9SDaniel P. Berrange #define QIO_CHANNEL_GET_CLASS(obj)                                  \
33666a3af9SDaniel P. Berrange     OBJECT_GET_CLASS(QIOChannelClass, obj, TYPE_QIO_CHANNEL)
34666a3af9SDaniel P. Berrange 
35666a3af9SDaniel P. Berrange typedef struct QIOChannel QIOChannel;
36666a3af9SDaniel P. Berrange typedef struct QIOChannelClass QIOChannelClass;
37666a3af9SDaniel P. Berrange 
38666a3af9SDaniel P. Berrange #define QIO_CHANNEL_ERR_BLOCK -2
39666a3af9SDaniel P. Berrange 
40666a3af9SDaniel P. Berrange typedef enum QIOChannelFeature QIOChannelFeature;
41666a3af9SDaniel P. Berrange 
42666a3af9SDaniel P. Berrange enum QIOChannelFeature {
438fbf6612SFelipe Franciosi     QIO_CHANNEL_FEATURE_FD_PASS,
448fbf6612SFelipe Franciosi     QIO_CHANNEL_FEATURE_SHUTDOWN,
458fbf6612SFelipe Franciosi     QIO_CHANNEL_FEATURE_LISTEN,
46666a3af9SDaniel P. Berrange };
47666a3af9SDaniel P. Berrange 
48666a3af9SDaniel P. Berrange 
49666a3af9SDaniel P. Berrange typedef enum QIOChannelShutdown QIOChannelShutdown;
50666a3af9SDaniel P. Berrange 
51666a3af9SDaniel P. Berrange enum QIOChannelShutdown {
52666a3af9SDaniel P. Berrange     QIO_CHANNEL_SHUTDOWN_BOTH,
53666a3af9SDaniel P. Berrange     QIO_CHANNEL_SHUTDOWN_READ,
54666a3af9SDaniel P. Berrange     QIO_CHANNEL_SHUTDOWN_WRITE,
55666a3af9SDaniel P. Berrange };
56666a3af9SDaniel P. Berrange 
57666a3af9SDaniel P. Berrange typedef gboolean (*QIOChannelFunc)(QIOChannel *ioc,
58666a3af9SDaniel P. Berrange                                    GIOCondition condition,
59666a3af9SDaniel P. Berrange                                    gpointer data);
60666a3af9SDaniel P. Berrange 
61666a3af9SDaniel P. Berrange /**
62666a3af9SDaniel P. Berrange  * QIOChannel:
63666a3af9SDaniel P. Berrange  *
64666a3af9SDaniel P. Berrange  * The QIOChannel defines the core API for a generic I/O channel
65666a3af9SDaniel P. Berrange  * class hierarchy. It is inspired by GIOChannel, but has the
66666a3af9SDaniel P. Berrange  * following differences
67666a3af9SDaniel P. Berrange  *
68666a3af9SDaniel P. Berrange  *  - Use QOM to properly support arbitrary subclassing
69666a3af9SDaniel P. Berrange  *  - Support use of iovecs for efficient I/O with multiple blocks
70666a3af9SDaniel P. Berrange  *  - None of the character set translation, binary data exclusively
71666a3af9SDaniel P. Berrange  *  - Direct support for QEMU Error object reporting
72666a3af9SDaniel P. Berrange  *  - File descriptor passing
73666a3af9SDaniel P. Berrange  *
74666a3af9SDaniel P. Berrange  * This base class is abstract so cannot be instantiated. There
75666a3af9SDaniel P. Berrange  * will be subclasses for dealing with sockets, files, and higher
76666a3af9SDaniel P. Berrange  * level protocols such as TLS, WebSocket, etc.
77666a3af9SDaniel P. Berrange  */
78666a3af9SDaniel P. Berrange 
79666a3af9SDaniel P. Berrange struct QIOChannel {
80666a3af9SDaniel P. Berrange     Object parent;
81666a3af9SDaniel P. Berrange     unsigned int features; /* bitmask of QIOChannelFeatures */
82*20f4aa26SDaniel P. Berrange     char *name;
83a5897205SPaolo Bonzini #ifdef _WIN32
84a5897205SPaolo Bonzini     HANDLE event; /* For use with GSource on Win32 */
85a5897205SPaolo Bonzini #endif
86666a3af9SDaniel P. Berrange };
87666a3af9SDaniel P. Berrange 
88666a3af9SDaniel P. Berrange /**
89666a3af9SDaniel P. Berrange  * QIOChannelClass:
90666a3af9SDaniel P. Berrange  *
91666a3af9SDaniel P. Berrange  * This class defines the contract that all subclasses
92666a3af9SDaniel P. Berrange  * must follow to provide specific channel implementations.
93666a3af9SDaniel P. Berrange  * The first five callbacks are mandatory to support, others
94666a3af9SDaniel P. Berrange  * provide additional optional features.
95666a3af9SDaniel P. Berrange  *
96666a3af9SDaniel P. Berrange  * Consult the corresponding public API docs for a description
97666a3af9SDaniel P. Berrange  * of the semantics of each callback
98666a3af9SDaniel P. Berrange  */
99666a3af9SDaniel P. Berrange struct QIOChannelClass {
100666a3af9SDaniel P. Berrange     ObjectClass parent;
101666a3af9SDaniel P. Berrange 
102666a3af9SDaniel P. Berrange     /* Mandatory callbacks */
103666a3af9SDaniel P. Berrange     ssize_t (*io_writev)(QIOChannel *ioc,
104666a3af9SDaniel P. Berrange                          const struct iovec *iov,
105666a3af9SDaniel P. Berrange                          size_t niov,
106666a3af9SDaniel P. Berrange                          int *fds,
107666a3af9SDaniel P. Berrange                          size_t nfds,
108666a3af9SDaniel P. Berrange                          Error **errp);
109666a3af9SDaniel P. Berrange     ssize_t (*io_readv)(QIOChannel *ioc,
110666a3af9SDaniel P. Berrange                         const struct iovec *iov,
111666a3af9SDaniel P. Berrange                         size_t niov,
112666a3af9SDaniel P. Berrange                         int **fds,
113666a3af9SDaniel P. Berrange                         size_t *nfds,
114666a3af9SDaniel P. Berrange                         Error **errp);
115666a3af9SDaniel P. Berrange     int (*io_close)(QIOChannel *ioc,
116666a3af9SDaniel P. Berrange                     Error **errp);
117666a3af9SDaniel P. Berrange     GSource * (*io_create_watch)(QIOChannel *ioc,
118666a3af9SDaniel P. Berrange                                  GIOCondition condition);
119666a3af9SDaniel P. Berrange     int (*io_set_blocking)(QIOChannel *ioc,
120666a3af9SDaniel P. Berrange                            bool enabled,
121666a3af9SDaniel P. Berrange                            Error **errp);
122666a3af9SDaniel P. Berrange 
123666a3af9SDaniel P. Berrange     /* Optional callbacks */
124666a3af9SDaniel P. Berrange     int (*io_shutdown)(QIOChannel *ioc,
125666a3af9SDaniel P. Berrange                        QIOChannelShutdown how,
126666a3af9SDaniel P. Berrange                        Error **errp);
127666a3af9SDaniel P. Berrange     void (*io_set_cork)(QIOChannel *ioc,
128666a3af9SDaniel P. Berrange                         bool enabled);
129666a3af9SDaniel P. Berrange     void (*io_set_delay)(QIOChannel *ioc,
130666a3af9SDaniel P. Berrange                          bool enabled);
131666a3af9SDaniel P. Berrange     off_t (*io_seek)(QIOChannel *ioc,
132666a3af9SDaniel P. Berrange                      off_t offset,
133666a3af9SDaniel P. Berrange                      int whence,
134666a3af9SDaniel P. Berrange                      Error **errp);
135666a3af9SDaniel P. Berrange };
136666a3af9SDaniel P. Berrange 
137666a3af9SDaniel P. Berrange /* General I/O handling functions */
138666a3af9SDaniel P. Berrange 
139666a3af9SDaniel P. Berrange /**
140666a3af9SDaniel P. Berrange  * qio_channel_has_feature:
141666a3af9SDaniel P. Berrange  * @ioc: the channel object
142666a3af9SDaniel P. Berrange  * @feature: the feature to check support of
143666a3af9SDaniel P. Berrange  *
144666a3af9SDaniel P. Berrange  * Determine whether the channel implementation supports
145666a3af9SDaniel P. Berrange  * the optional feature named in @feature.
146666a3af9SDaniel P. Berrange  *
147666a3af9SDaniel P. Berrange  * Returns: true if supported, false otherwise.
148666a3af9SDaniel P. Berrange  */
149666a3af9SDaniel P. Berrange bool qio_channel_has_feature(QIOChannel *ioc,
150666a3af9SDaniel P. Berrange                              QIOChannelFeature feature);
151666a3af9SDaniel P. Berrange 
152666a3af9SDaniel P. Berrange /**
153d8d3c7ccSFelipe Franciosi  * qio_channel_set_feature:
154d8d3c7ccSFelipe Franciosi  * @ioc: the channel object
155d8d3c7ccSFelipe Franciosi  * @feature: the feature to set support for
156d8d3c7ccSFelipe Franciosi  *
157d8d3c7ccSFelipe Franciosi  * Add channel support for the feature named in @feature.
158d8d3c7ccSFelipe Franciosi  */
159d8d3c7ccSFelipe Franciosi void qio_channel_set_feature(QIOChannel *ioc,
160d8d3c7ccSFelipe Franciosi                              QIOChannelFeature feature);
161d8d3c7ccSFelipe Franciosi 
162d8d3c7ccSFelipe Franciosi /**
163*20f4aa26SDaniel P. Berrange  * qio_channel_set_name:
164*20f4aa26SDaniel P. Berrange  * @ioc: the channel object
165*20f4aa26SDaniel P. Berrange  * @name: the name of the channel
166*20f4aa26SDaniel P. Berrange  *
167*20f4aa26SDaniel P. Berrange  * Sets the name of the channel, which serves as an aid
168*20f4aa26SDaniel P. Berrange  * to debugging. The name is used when creating GSource
169*20f4aa26SDaniel P. Berrange  * watches for this channel.
170*20f4aa26SDaniel P. Berrange  */
171*20f4aa26SDaniel P. Berrange void qio_channel_set_name(QIOChannel *ioc,
172*20f4aa26SDaniel P. Berrange                           const char *name);
173*20f4aa26SDaniel P. Berrange 
174*20f4aa26SDaniel P. Berrange /**
175666a3af9SDaniel P. Berrange  * qio_channel_readv_full:
176666a3af9SDaniel P. Berrange  * @ioc: the channel object
177666a3af9SDaniel P. Berrange  * @iov: the array of memory regions to read data into
178666a3af9SDaniel P. Berrange  * @niov: the length of the @iov array
179666a3af9SDaniel P. Berrange  * @fds: pointer to an array that will received file handles
180666a3af9SDaniel P. Berrange  * @nfds: pointer filled with number of elements in @fds on return
181821791b5SDaniel P. Berrange  * @errp: pointer to a NULL-initialized error object
182666a3af9SDaniel P. Berrange  *
183666a3af9SDaniel P. Berrange  * Read data from the IO channel, storing it in the
184666a3af9SDaniel P. Berrange  * memory regions referenced by @iov. Each element
185666a3af9SDaniel P. Berrange  * in the @iov will be fully populated with data
186666a3af9SDaniel P. Berrange  * before the next one is used. The @niov parameter
187666a3af9SDaniel P. Berrange  * specifies the total number of elements in @iov.
188666a3af9SDaniel P. Berrange  *
189666a3af9SDaniel P. Berrange  * It is not required for all @iov to be filled with
190666a3af9SDaniel P. Berrange  * data. If the channel is in blocking mode, at least
191666a3af9SDaniel P. Berrange  * one byte of data will be read, but no more is
192666a3af9SDaniel P. Berrange  * guaranteed. If the channel is non-blocking and no
193666a3af9SDaniel P. Berrange  * data is available, it will return QIO_CHANNEL_ERR_BLOCK
194666a3af9SDaniel P. Berrange  *
195666a3af9SDaniel P. Berrange  * If the channel has passed any file descriptors,
196666a3af9SDaniel P. Berrange  * the @fds array pointer will be allocated and
197666a3af9SDaniel P. Berrange  * the elements filled with the received file
198666a3af9SDaniel P. Berrange  * descriptors. The @nfds pointer will be updated
199666a3af9SDaniel P. Berrange  * to indicate the size of the @fds array that
200666a3af9SDaniel P. Berrange  * was allocated. It is the callers responsibility
201666a3af9SDaniel P. Berrange  * to call close() on each file descriptor and to
202666a3af9SDaniel P. Berrange  * call g_free() on the array pointer in @fds.
203666a3af9SDaniel P. Berrange  *
204666a3af9SDaniel P. Berrange  * It is an error to pass a non-NULL @fds parameter
205666a3af9SDaniel P. Berrange  * unless qio_channel_has_feature() returns a true
206666a3af9SDaniel P. Berrange  * value for the QIO_CHANNEL_FEATURE_FD_PASS constant.
207666a3af9SDaniel P. Berrange  *
208666a3af9SDaniel P. Berrange  * Returns: the number of bytes read, or -1 on error,
209666a3af9SDaniel P. Berrange  * or QIO_CHANNEL_ERR_BLOCK if no data is available
210666a3af9SDaniel P. Berrange  * and the channel is non-blocking
211666a3af9SDaniel P. Berrange  */
212666a3af9SDaniel P. Berrange ssize_t qio_channel_readv_full(QIOChannel *ioc,
213666a3af9SDaniel P. Berrange                                const struct iovec *iov,
214666a3af9SDaniel P. Berrange                                size_t niov,
215666a3af9SDaniel P. Berrange                                int **fds,
216666a3af9SDaniel P. Berrange                                size_t *nfds,
217666a3af9SDaniel P. Berrange                                Error **errp);
218666a3af9SDaniel P. Berrange 
219666a3af9SDaniel P. Berrange 
220666a3af9SDaniel P. Berrange /**
221666a3af9SDaniel P. Berrange  * qio_channel_writev_full:
222666a3af9SDaniel P. Berrange  * @ioc: the channel object
223666a3af9SDaniel P. Berrange  * @iov: the array of memory regions to write data from
224666a3af9SDaniel P. Berrange  * @niov: the length of the @iov array
225666a3af9SDaniel P. Berrange  * @fds: an array of file handles to send
226666a3af9SDaniel P. Berrange  * @nfds: number of file handles in @fds
227821791b5SDaniel P. Berrange  * @errp: pointer to a NULL-initialized error object
228666a3af9SDaniel P. Berrange  *
229666a3af9SDaniel P. Berrange  * Write data to the IO channel, reading it from the
230666a3af9SDaniel P. Berrange  * memory regions referenced by @iov. Each element
231666a3af9SDaniel P. Berrange  * in the @iov will be fully sent, before the next
232666a3af9SDaniel P. Berrange  * one is used. The @niov parameter specifies the
233666a3af9SDaniel P. Berrange  * total number of elements in @iov.
234666a3af9SDaniel P. Berrange  *
235666a3af9SDaniel P. Berrange  * It is not required for all @iov data to be fully
236666a3af9SDaniel P. Berrange  * sent. If the channel is in blocking mode, at least
237666a3af9SDaniel P. Berrange  * one byte of data will be sent, but no more is
238666a3af9SDaniel P. Berrange  * guaranteed. If the channel is non-blocking and no
239666a3af9SDaniel P. Berrange  * data can be sent, it will return QIO_CHANNEL_ERR_BLOCK
240666a3af9SDaniel P. Berrange  *
241666a3af9SDaniel P. Berrange  * If there are file descriptors to send, the @fds
242666a3af9SDaniel P. Berrange  * array should be non-NULL and provide the handles.
243666a3af9SDaniel P. Berrange  * All file descriptors will be sent if at least one
244666a3af9SDaniel P. Berrange  * byte of data was sent.
245666a3af9SDaniel P. Berrange  *
246666a3af9SDaniel P. Berrange  * It is an error to pass a non-NULL @fds parameter
247666a3af9SDaniel P. Berrange  * unless qio_channel_has_feature() returns a true
248666a3af9SDaniel P. Berrange  * value for the QIO_CHANNEL_FEATURE_FD_PASS constant.
249666a3af9SDaniel P. Berrange  *
250666a3af9SDaniel P. Berrange  * Returns: the number of bytes sent, or -1 on error,
251666a3af9SDaniel P. Berrange  * or QIO_CHANNEL_ERR_BLOCK if no data is can be sent
252666a3af9SDaniel P. Berrange  * and the channel is non-blocking
253666a3af9SDaniel P. Berrange  */
254666a3af9SDaniel P. Berrange ssize_t qio_channel_writev_full(QIOChannel *ioc,
255666a3af9SDaniel P. Berrange                                 const struct iovec *iov,
256666a3af9SDaniel P. Berrange                                 size_t niov,
257666a3af9SDaniel P. Berrange                                 int *fds,
258666a3af9SDaniel P. Berrange                                 size_t nfds,
259666a3af9SDaniel P. Berrange                                 Error **errp);
260666a3af9SDaniel P. Berrange 
261666a3af9SDaniel P. Berrange /**
262666a3af9SDaniel P. Berrange  * qio_channel_readv:
263666a3af9SDaniel P. Berrange  * @ioc: the channel object
264666a3af9SDaniel P. Berrange  * @iov: the array of memory regions to read data into
265666a3af9SDaniel P. Berrange  * @niov: the length of the @iov array
266821791b5SDaniel P. Berrange  * @errp: pointer to a NULL-initialized error object
267666a3af9SDaniel P. Berrange  *
268666a3af9SDaniel P. Berrange  * Behaves as qio_channel_readv_full() but does not support
269666a3af9SDaniel P. Berrange  * receiving of file handles.
270666a3af9SDaniel P. Berrange  */
271666a3af9SDaniel P. Berrange ssize_t qio_channel_readv(QIOChannel *ioc,
272666a3af9SDaniel P. Berrange                           const struct iovec *iov,
273666a3af9SDaniel P. Berrange                           size_t niov,
274666a3af9SDaniel P. Berrange                           Error **errp);
275666a3af9SDaniel P. Berrange 
276666a3af9SDaniel P. Berrange /**
277666a3af9SDaniel P. Berrange  * qio_channel_writev:
278666a3af9SDaniel P. Berrange  * @ioc: the channel object
279666a3af9SDaniel P. Berrange  * @iov: the array of memory regions to write data from
280666a3af9SDaniel P. Berrange  * @niov: the length of the @iov array
281821791b5SDaniel P. Berrange  * @errp: pointer to a NULL-initialized error object
282666a3af9SDaniel P. Berrange  *
283666a3af9SDaniel P. Berrange  * Behaves as qio_channel_writev_full() but does not support
284666a3af9SDaniel P. Berrange  * sending of file handles.
285666a3af9SDaniel P. Berrange  */
286666a3af9SDaniel P. Berrange ssize_t qio_channel_writev(QIOChannel *ioc,
287666a3af9SDaniel P. Berrange                            const struct iovec *iov,
288666a3af9SDaniel P. Berrange                            size_t niov,
289666a3af9SDaniel P. Berrange                            Error **errp);
290666a3af9SDaniel P. Berrange 
291666a3af9SDaniel P. Berrange /**
292666a3af9SDaniel P. Berrange  * qio_channel_readv:
293666a3af9SDaniel P. Berrange  * @ioc: the channel object
294666a3af9SDaniel P. Berrange  * @buf: the memory region to read data into
295666a3af9SDaniel P. Berrange  * @buflen: the length of @buf
296821791b5SDaniel P. Berrange  * @errp: pointer to a NULL-initialized error object
297666a3af9SDaniel P. Berrange  *
298666a3af9SDaniel P. Berrange  * Behaves as qio_channel_readv_full() but does not support
299666a3af9SDaniel P. Berrange  * receiving of file handles, and only supports reading into
300666a3af9SDaniel P. Berrange  * a single memory region.
301666a3af9SDaniel P. Berrange  */
302666a3af9SDaniel P. Berrange ssize_t qio_channel_read(QIOChannel *ioc,
303666a3af9SDaniel P. Berrange                          char *buf,
304666a3af9SDaniel P. Berrange                          size_t buflen,
305666a3af9SDaniel P. Berrange                          Error **errp);
306666a3af9SDaniel P. Berrange 
307666a3af9SDaniel P. Berrange /**
308666a3af9SDaniel P. Berrange  * qio_channel_writev:
309666a3af9SDaniel P. Berrange  * @ioc: the channel object
310666a3af9SDaniel P. Berrange  * @buf: the memory regions to send data from
311666a3af9SDaniel P. Berrange  * @buflen: the length of @buf
312821791b5SDaniel P. Berrange  * @errp: pointer to a NULL-initialized error object
313666a3af9SDaniel P. Berrange  *
314666a3af9SDaniel P. Berrange  * Behaves as qio_channel_writev_full() but does not support
315666a3af9SDaniel P. Berrange  * sending of file handles, and only supports writing from a
316666a3af9SDaniel P. Berrange  * single memory region.
317666a3af9SDaniel P. Berrange  */
318666a3af9SDaniel P. Berrange ssize_t qio_channel_write(QIOChannel *ioc,
319666a3af9SDaniel P. Berrange                           const char *buf,
320666a3af9SDaniel P. Berrange                           size_t buflen,
321666a3af9SDaniel P. Berrange                           Error **errp);
322666a3af9SDaniel P. Berrange 
323666a3af9SDaniel P. Berrange /**
324666a3af9SDaniel P. Berrange  * qio_channel_set_blocking:
325666a3af9SDaniel P. Berrange  * @ioc: the channel object
326666a3af9SDaniel P. Berrange  * @enabled: the blocking flag state
327821791b5SDaniel P. Berrange  * @errp: pointer to a NULL-initialized error object
328666a3af9SDaniel P. Berrange  *
329666a3af9SDaniel P. Berrange  * If @enabled is true, then the channel is put into
330666a3af9SDaniel P. Berrange  * blocking mode, otherwise it will be non-blocking.
331666a3af9SDaniel P. Berrange  *
332666a3af9SDaniel P. Berrange  * In non-blocking mode, read/write operations may
333666a3af9SDaniel P. Berrange  * return QIO_CHANNEL_ERR_BLOCK if they would otherwise
334666a3af9SDaniel P. Berrange  * block on I/O
335666a3af9SDaniel P. Berrange  */
336666a3af9SDaniel P. Berrange int qio_channel_set_blocking(QIOChannel *ioc,
337666a3af9SDaniel P. Berrange                              bool enabled,
338666a3af9SDaniel P. Berrange                              Error **errp);
339666a3af9SDaniel P. Berrange 
340666a3af9SDaniel P. Berrange /**
341666a3af9SDaniel P. Berrange  * qio_channel_close:
342666a3af9SDaniel P. Berrange  * @ioc: the channel object
343821791b5SDaniel P. Berrange  * @errp: pointer to a NULL-initialized error object
344666a3af9SDaniel P. Berrange  *
345666a3af9SDaniel P. Berrange  * Close the channel, flushing any pending I/O
346666a3af9SDaniel P. Berrange  *
347666a3af9SDaniel P. Berrange  * Returns: 0 on success, -1 on error
348666a3af9SDaniel P. Berrange  */
349666a3af9SDaniel P. Berrange int qio_channel_close(QIOChannel *ioc,
350666a3af9SDaniel P. Berrange                       Error **errp);
351666a3af9SDaniel P. Berrange 
352666a3af9SDaniel P. Berrange /**
353666a3af9SDaniel P. Berrange  * qio_channel_shutdown:
354666a3af9SDaniel P. Berrange  * @ioc: the channel object
355666a3af9SDaniel P. Berrange  * @how: the direction to shutdown
356821791b5SDaniel P. Berrange  * @errp: pointer to a NULL-initialized error object
357666a3af9SDaniel P. Berrange  *
358666a3af9SDaniel P. Berrange  * Shutdowns transmission and/or receiving of data
359666a3af9SDaniel P. Berrange  * without closing the underlying transport.
360666a3af9SDaniel P. Berrange  *
361666a3af9SDaniel P. Berrange  * Not all implementations will support this facility,
362666a3af9SDaniel P. Berrange  * so may report an error. To avoid errors, the
363666a3af9SDaniel P. Berrange  * caller may check for the feature flag
364666a3af9SDaniel P. Berrange  * QIO_CHANNEL_FEATURE_SHUTDOWN prior to calling
365666a3af9SDaniel P. Berrange  * this method.
366666a3af9SDaniel P. Berrange  *
367666a3af9SDaniel P. Berrange  * Returns: 0 on success, -1 on error
368666a3af9SDaniel P. Berrange  */
369666a3af9SDaniel P. Berrange int qio_channel_shutdown(QIOChannel *ioc,
370666a3af9SDaniel P. Berrange                          QIOChannelShutdown how,
371666a3af9SDaniel P. Berrange                          Error **errp);
372666a3af9SDaniel P. Berrange 
373666a3af9SDaniel P. Berrange /**
374666a3af9SDaniel P. Berrange  * qio_channel_set_delay:
375666a3af9SDaniel P. Berrange  * @ioc: the channel object
376666a3af9SDaniel P. Berrange  * @enabled: the new flag state
377666a3af9SDaniel P. Berrange  *
378666a3af9SDaniel P. Berrange  * Controls whether the underlying transport is
379666a3af9SDaniel P. Berrange  * permitted to delay writes in order to merge
380666a3af9SDaniel P. Berrange  * small packets. If @enabled is true, then the
381666a3af9SDaniel P. Berrange  * writes may be delayed in order to opportunistically
382666a3af9SDaniel P. Berrange  * merge small packets into larger ones. If @enabled
383666a3af9SDaniel P. Berrange  * is false, writes are dispatched immediately with
384666a3af9SDaniel P. Berrange  * no delay.
385666a3af9SDaniel P. Berrange  *
386666a3af9SDaniel P. Berrange  * When @enabled is false, applications may wish to
387666a3af9SDaniel P. Berrange  * use the qio_channel_set_cork() method to explicitly
388666a3af9SDaniel P. Berrange  * control write merging.
389666a3af9SDaniel P. Berrange  *
390666a3af9SDaniel P. Berrange  * On channels which are backed by a socket, this
391666a3af9SDaniel P. Berrange  * API corresponds to the inverse of TCP_NODELAY flag,
392666a3af9SDaniel P. Berrange  * controlling whether the Nagle algorithm is active.
393666a3af9SDaniel P. Berrange  *
394666a3af9SDaniel P. Berrange  * This setting is merely a hint, so implementations are
395666a3af9SDaniel P. Berrange  * free to ignore this without it being considered an
396666a3af9SDaniel P. Berrange  * error.
397666a3af9SDaniel P. Berrange  */
398666a3af9SDaniel P. Berrange void qio_channel_set_delay(QIOChannel *ioc,
399666a3af9SDaniel P. Berrange                            bool enabled);
400666a3af9SDaniel P. Berrange 
401666a3af9SDaniel P. Berrange /**
402666a3af9SDaniel P. Berrange  * qio_channel_set_cork:
403666a3af9SDaniel P. Berrange  * @ioc: the channel object
404666a3af9SDaniel P. Berrange  * @enabled: the new flag state
405666a3af9SDaniel P. Berrange  *
406666a3af9SDaniel P. Berrange  * Controls whether the underlying transport is
407666a3af9SDaniel P. Berrange  * permitted to dispatch data that is written.
408666a3af9SDaniel P. Berrange  * If @enabled is true, then any data written will
409666a3af9SDaniel P. Berrange  * be queued in local buffers until @enabled is
410666a3af9SDaniel P. Berrange  * set to false once again.
411666a3af9SDaniel P. Berrange  *
412666a3af9SDaniel P. Berrange  * This feature is typically used when the automatic
413666a3af9SDaniel P. Berrange  * write coalescing facility is disabled via the
414666a3af9SDaniel P. Berrange  * qio_channel_set_delay() method.
415666a3af9SDaniel P. Berrange  *
416666a3af9SDaniel P. Berrange  * On channels which are backed by a socket, this
417666a3af9SDaniel P. Berrange  * API corresponds to the TCP_CORK flag.
418666a3af9SDaniel P. Berrange  *
419666a3af9SDaniel P. Berrange  * This setting is merely a hint, so implementations are
420666a3af9SDaniel P. Berrange  * free to ignore this without it being considered an
421666a3af9SDaniel P. Berrange  * error.
422666a3af9SDaniel P. Berrange  */
423666a3af9SDaniel P. Berrange void qio_channel_set_cork(QIOChannel *ioc,
424666a3af9SDaniel P. Berrange                           bool enabled);
425666a3af9SDaniel P. Berrange 
426666a3af9SDaniel P. Berrange 
427666a3af9SDaniel P. Berrange /**
428666a3af9SDaniel P. Berrange  * qio_channel_seek:
429666a3af9SDaniel P. Berrange  * @ioc: the channel object
430666a3af9SDaniel P. Berrange  * @offset: the position to seek to, relative to @whence
431666a3af9SDaniel P. Berrange  * @whence: one of the (POSIX) SEEK_* constants listed below
432821791b5SDaniel P. Berrange  * @errp: pointer to a NULL-initialized error object
433666a3af9SDaniel P. Berrange  *
434666a3af9SDaniel P. Berrange  * Moves the current I/O position within the channel
435666a3af9SDaniel P. Berrange  * @ioc, to be @offset. The value of @offset is
436666a3af9SDaniel P. Berrange  * interpreted relative to @whence:
437666a3af9SDaniel P. Berrange  *
438666a3af9SDaniel P. Berrange  * SEEK_SET - the position is set to @offset bytes
439666a3af9SDaniel P. Berrange  * SEEK_CUR - the position is moved by @offset bytes
440666a3af9SDaniel P. Berrange  * SEEK_END - the position is set to end of the file plus @offset bytes
441666a3af9SDaniel P. Berrange  *
442666a3af9SDaniel P. Berrange  * Not all implementations will support this facility,
443666a3af9SDaniel P. Berrange  * so may report an error.
444666a3af9SDaniel P. Berrange  *
445666a3af9SDaniel P. Berrange  * Returns: the new position on success, (off_t)-1 on failure
446666a3af9SDaniel P. Berrange  */
447666a3af9SDaniel P. Berrange off_t qio_channel_io_seek(QIOChannel *ioc,
448666a3af9SDaniel P. Berrange                           off_t offset,
449666a3af9SDaniel P. Berrange                           int whence,
450666a3af9SDaniel P. Berrange                           Error **errp);
451666a3af9SDaniel P. Berrange 
452666a3af9SDaniel P. Berrange 
453666a3af9SDaniel P. Berrange /**
454666a3af9SDaniel P. Berrange  * qio_channel_create_watch:
455666a3af9SDaniel P. Berrange  * @ioc: the channel object
456666a3af9SDaniel P. Berrange  * @condition: the I/O condition to monitor
457666a3af9SDaniel P. Berrange  *
458666a3af9SDaniel P. Berrange  * Create a new main loop source that is used to watch
459666a3af9SDaniel P. Berrange  * for the I/O condition @condition. Typically the
460666a3af9SDaniel P. Berrange  * qio_channel_add_watch() method would be used instead
461666a3af9SDaniel P. Berrange  * of this, since it directly attaches a callback to
462666a3af9SDaniel P. Berrange  * the source
463666a3af9SDaniel P. Berrange  *
464666a3af9SDaniel P. Berrange  * Returns: the new main loop source.
465666a3af9SDaniel P. Berrange  */
466666a3af9SDaniel P. Berrange GSource *qio_channel_create_watch(QIOChannel *ioc,
467666a3af9SDaniel P. Berrange                                   GIOCondition condition);
468666a3af9SDaniel P. Berrange 
469666a3af9SDaniel P. Berrange /**
470666a3af9SDaniel P. Berrange  * qio_channel_add_watch:
471666a3af9SDaniel P. Berrange  * @ioc: the channel object
472666a3af9SDaniel P. Berrange  * @condition: the I/O condition to monitor
473666a3af9SDaniel P. Berrange  * @func: callback to invoke when the source becomes ready
474666a3af9SDaniel P. Berrange  * @user_data: opaque data to pass to @func
475666a3af9SDaniel P. Berrange  * @notify: callback to free @user_data
476666a3af9SDaniel P. Berrange  *
477666a3af9SDaniel P. Berrange  * Create a new main loop source that is used to watch
478666a3af9SDaniel P. Berrange  * for the I/O condition @condition. The callback @func
479666a3af9SDaniel P. Berrange  * will be registered against the source, to be invoked
480666a3af9SDaniel P. Berrange  * when the source becomes ready. The optional @user_data
481666a3af9SDaniel P. Berrange  * will be passed to @func when it is invoked. The @notify
482666a3af9SDaniel P. Berrange  * callback will be used to free @user_data when the
483666a3af9SDaniel P. Berrange  * watch is deleted
484666a3af9SDaniel P. Berrange  *
485666a3af9SDaniel P. Berrange  * The returned source ID can be used with g_source_remove()
486666a3af9SDaniel P. Berrange  * to remove and free the source when no longer required.
487666a3af9SDaniel P. Berrange  * Alternatively the @func callback can return a FALSE
488666a3af9SDaniel P. Berrange  * value.
489666a3af9SDaniel P. Berrange  *
490666a3af9SDaniel P. Berrange  * Returns: the source ID
491666a3af9SDaniel P. Berrange  */
492666a3af9SDaniel P. Berrange guint qio_channel_add_watch(QIOChannel *ioc,
493666a3af9SDaniel P. Berrange                             GIOCondition condition,
494666a3af9SDaniel P. Berrange                             QIOChannelFunc func,
495666a3af9SDaniel P. Berrange                             gpointer user_data,
496666a3af9SDaniel P. Berrange                             GDestroyNotify notify);
497666a3af9SDaniel P. Berrange 
498666a3af9SDaniel P. Berrange 
499666a3af9SDaniel P. Berrange /**
500666a3af9SDaniel P. Berrange  * qio_channel_yield:
501666a3af9SDaniel P. Berrange  * @ioc: the channel object
502666a3af9SDaniel P. Berrange  * @condition: the I/O condition to wait for
503666a3af9SDaniel P. Berrange  *
504666a3af9SDaniel P. Berrange  * Yields execution from the current coroutine until
505666a3af9SDaniel P. Berrange  * the condition indicated by @condition becomes
506666a3af9SDaniel P. Berrange  * available.
507666a3af9SDaniel P. Berrange  *
508666a3af9SDaniel P. Berrange  * This must only be called from coroutine context
509666a3af9SDaniel P. Berrange  */
510666a3af9SDaniel P. Berrange void qio_channel_yield(QIOChannel *ioc,
511666a3af9SDaniel P. Berrange                        GIOCondition condition);
512666a3af9SDaniel P. Berrange 
513666a3af9SDaniel P. Berrange /**
514666a3af9SDaniel P. Berrange  * qio_channel_wait:
515666a3af9SDaniel P. Berrange  * @ioc: the channel object
516666a3af9SDaniel P. Berrange  * @condition: the I/O condition to wait for
517666a3af9SDaniel P. Berrange  *
518666a3af9SDaniel P. Berrange  * Block execution from the current thread until
519666a3af9SDaniel P. Berrange  * the condition indicated by @condition becomes
520666a3af9SDaniel P. Berrange  * available.
521666a3af9SDaniel P. Berrange  *
522666a3af9SDaniel P. Berrange  * This will enter a nested event loop to perform
523666a3af9SDaniel P. Berrange  * the wait.
524666a3af9SDaniel P. Berrange  */
525666a3af9SDaniel P. Berrange void qio_channel_wait(QIOChannel *ioc,
526666a3af9SDaniel P. Berrange                       GIOCondition condition);
527666a3af9SDaniel P. Berrange 
5282a6a4076SMarkus Armbruster #endif /* QIO_CHANNEL_H */
529