nbd: Split nbd.c
[qemu/ar7.git] / io / channel-buffer.c
blobdaebc92bd8a17355828766cf5df8c2c89d6981f3
1 /*
2 * QEMU I/O channels memory buffer driver
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 "io/channel-buffer.h"
22 #include "io/channel-watch.h"
23 #include "qemu/sockets.h"
24 #include "trace.h"
26 QIOChannelBuffer *
27 qio_channel_buffer_new(size_t capacity)
29 QIOChannelBuffer *ioc;
31 ioc = QIO_CHANNEL_BUFFER(object_new(TYPE_QIO_CHANNEL_BUFFER));
33 if (capacity) {
34 ioc->data = g_new0(char, capacity);
35 ioc->capacity = capacity;
38 return ioc;
42 static void qio_channel_buffer_finalize(Object *obj)
44 QIOChannelBuffer *ioc = QIO_CHANNEL_BUFFER(obj);
45 g_free(ioc->data);
46 ioc->capacity = ioc->usage = ioc->offset = 0;
50 static ssize_t qio_channel_buffer_readv(QIOChannel *ioc,
51 const struct iovec *iov,
52 size_t niov,
53 int **fds,
54 size_t *nfds,
55 Error **errp)
57 QIOChannelBuffer *bioc = QIO_CHANNEL_BUFFER(ioc);
58 ssize_t ret = 0;
59 size_t i;
61 for (i = 0; i < niov; i++) {
62 size_t want = iov[i].iov_len;
63 if (bioc->offset >= bioc->usage) {
64 break;
66 if ((bioc->offset + want) > bioc->usage) {
67 want = bioc->usage - bioc->offset;
69 memcpy(iov[i].iov_base, bioc->data + bioc->offset, want);
70 ret += want;
71 bioc->offset += want;
74 return ret;
77 static ssize_t qio_channel_buffer_writev(QIOChannel *ioc,
78 const struct iovec *iov,
79 size_t niov,
80 int *fds,
81 size_t nfds,
82 Error **errp)
84 QIOChannelBuffer *bioc = QIO_CHANNEL_BUFFER(ioc);
85 ssize_t ret = 0;
86 size_t i;
87 size_t towrite = 0;
89 for (i = 0; i < niov; i++) {
90 towrite += iov[i].iov_len;
93 if ((bioc->offset + towrite) > bioc->capacity) {
94 bioc->capacity = bioc->offset + towrite;
95 bioc->data = g_realloc(bioc->data, bioc->capacity);
98 if (bioc->offset > bioc->usage) {
99 memset(bioc->data, 0, bioc->offset - bioc->usage);
100 bioc->usage = bioc->offset;
103 for (i = 0; i < niov; i++) {
104 memcpy(bioc->data + bioc->usage,
105 iov[i].iov_base,
106 iov[i].iov_len);
107 bioc->usage += iov[i].iov_len;
108 bioc->offset += iov[i].iov_len;
109 ret += iov[i].iov_len;
112 return ret;
115 static int qio_channel_buffer_set_blocking(QIOChannel *ioc G_GNUC_UNUSED,
116 bool enabled G_GNUC_UNUSED,
117 Error **errp G_GNUC_UNUSED)
119 return 0;
123 static off_t qio_channel_buffer_seek(QIOChannel *ioc,
124 off_t offset,
125 int whence,
126 Error **errp)
128 QIOChannelBuffer *bioc = QIO_CHANNEL_BUFFER(ioc);
130 bioc->offset = offset;
132 return offset;
136 static int qio_channel_buffer_close(QIOChannel *ioc,
137 Error **errp)
139 QIOChannelBuffer *bioc = QIO_CHANNEL_BUFFER(ioc);
141 g_free(bioc->data);
142 bioc->capacity = bioc->usage = bioc->offset = 0;
144 return 0;
148 typedef struct QIOChannelBufferSource QIOChannelBufferSource;
149 struct QIOChannelBufferSource {
150 GSource parent;
151 QIOChannelBuffer *bioc;
152 GIOCondition condition;
155 static gboolean
156 qio_channel_buffer_source_prepare(GSource *source,
157 gint *timeout)
159 QIOChannelBufferSource *bsource = (QIOChannelBufferSource *)source;
161 *timeout = -1;
163 return (G_IO_IN | G_IO_OUT) & bsource->condition;
166 static gboolean
167 qio_channel_buffer_source_check(GSource *source)
169 QIOChannelBufferSource *bsource = (QIOChannelBufferSource *)source;
171 return (G_IO_IN | G_IO_OUT) & bsource->condition;
174 static gboolean
175 qio_channel_buffer_source_dispatch(GSource *source,
176 GSourceFunc callback,
177 gpointer user_data)
179 QIOChannelFunc func = (QIOChannelFunc)callback;
180 QIOChannelBufferSource *bsource = (QIOChannelBufferSource *)source;
182 return (*func)(QIO_CHANNEL(bsource->bioc),
183 ((G_IO_IN | G_IO_OUT) & bsource->condition),
184 user_data);
187 static void
188 qio_channel_buffer_source_finalize(GSource *source)
190 QIOChannelBufferSource *ssource = (QIOChannelBufferSource *)source;
192 object_unref(OBJECT(ssource->bioc));
195 GSourceFuncs qio_channel_buffer_source_funcs = {
196 qio_channel_buffer_source_prepare,
197 qio_channel_buffer_source_check,
198 qio_channel_buffer_source_dispatch,
199 qio_channel_buffer_source_finalize
202 static GSource *qio_channel_buffer_create_watch(QIOChannel *ioc,
203 GIOCondition condition)
205 QIOChannelBuffer *bioc = QIO_CHANNEL_BUFFER(ioc);
206 QIOChannelBufferSource *ssource;
207 GSource *source;
209 source = g_source_new(&qio_channel_buffer_source_funcs,
210 sizeof(QIOChannelBufferSource));
211 ssource = (QIOChannelBufferSource *)source;
213 ssource->bioc = bioc;
214 object_ref(OBJECT(bioc));
216 ssource->condition = condition;
218 return source;
222 static void qio_channel_buffer_class_init(ObjectClass *klass,
223 void *class_data G_GNUC_UNUSED)
225 QIOChannelClass *ioc_klass = QIO_CHANNEL_CLASS(klass);
227 ioc_klass->io_writev = qio_channel_buffer_writev;
228 ioc_klass->io_readv = qio_channel_buffer_readv;
229 ioc_klass->io_set_blocking = qio_channel_buffer_set_blocking;
230 ioc_klass->io_seek = qio_channel_buffer_seek;
231 ioc_klass->io_close = qio_channel_buffer_close;
232 ioc_klass->io_create_watch = qio_channel_buffer_create_watch;
235 static const TypeInfo qio_channel_buffer_info = {
236 .parent = TYPE_QIO_CHANNEL,
237 .name = TYPE_QIO_CHANNEL_BUFFER,
238 .instance_size = sizeof(QIOChannelBuffer),
239 .instance_finalize = qio_channel_buffer_finalize,
240 .class_init = qio_channel_buffer_class_init,
243 static void qio_channel_buffer_register_types(void)
245 type_register_static(&qio_channel_buffer_info);
248 type_init(qio_channel_buffer_register_types);