]> sigrok.org Git - libsigrok.git/blame - src/input/input.c
input: provide accessor routine for (struct sr_input *)->module
[libsigrok.git] / src / input / input.c
CommitLineData
34e4813f 1/*
50985c20 2 * This file is part of the libsigrok project.
34e4813f 3 *
17bfaca6 4 * Copyright (C) 2014 Bert Vermeulen <bert@biot.com>
34e4813f
BV
5 *
6 * This program is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * This program 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
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 */
19
6ec6c43b 20#include <config.h>
17bfaca6 21#include <string.h>
17bfaca6 22#include <errno.h>
5e364d4f
DE
23#include <glib.h>
24#include <glib/gstdio.h>
c1aae900 25#include <libsigrok/libsigrok.h>
45c59c8b 26#include "libsigrok-internal.h"
34e4813f 27
e00b3f58 28/** @cond PRIVATE */
17bfaca6 29#define LOG_PREFIX "input"
e00b3f58 30/** @endcond */
17bfaca6 31
0dabb880
GS
32#define CHUNK_SIZE (4 * 1024 * 1024)
33
393fb9cb
UH
34/**
35 * @file
36 *
0f3dbc95 37 * Input module handling.
393fb9cb
UH
38 */
39
7b870c38 40/**
d4c93774 41 * @defgroup grp_input Input modules
7b870c38 42 *
d4c93774 43 * Input file/data module handling.
7b870c38 44 *
83687343 45 * libsigrok can process acquisition data in several different ways.
0f3dbc95
BV
46 * Aside from acquiring data from a hardware device, it can also take it
47 * from a file in various formats (binary, CSV, VCD, and so on).
83687343 48 *
0f3dbc95
BV
49 * Like all libsigrok data handling, processing is done in a streaming
50 * manner: input should be supplied a chunk at a time. This way anything
51 * that processes data can do so in real time, without the user having
52 * to wait for the whole thing to be finished.
83687343
UH
53 *
54 * Every input module is "pluggable", meaning it's handled as being separate
55 * from the main libsigrok, but linked in to it statically. To keep things
56 * modular and separate like this, functions within an input module should be
d4c93774 57 * declared static, with only the respective 'struct sr_input_module' being
83687343
UH
58 * exported for use into the wider libsigrok namespace.
59 *
7b870c38
UH
60 * @{
61 */
62
b4bd7088 63/** @cond PRIVATE */
d4c93774
BV
64extern SR_PRIV struct sr_input_module input_chronovu_la8;
65extern SR_PRIV struct sr_input_module input_csv;
66extern SR_PRIV struct sr_input_module input_binary;
6d2897e3 67extern SR_PRIV struct sr_input_module input_trace32_ad;
d4c93774
BV
68extern SR_PRIV struct sr_input_module input_vcd;
69extern SR_PRIV struct sr_input_module input_wav;
e6b15cb5 70extern SR_PRIV struct sr_input_module input_raw_analog;
e1b115bd 71extern SR_PRIV struct sr_input_module input_logicport;
2003be8c 72extern SR_PRIV struct sr_input_module input_null;
b4bd7088 73/* @endcond */
34e4813f 74
17bfaca6 75static const struct sr_input_module *input_module_list[] = {
b84cba4d 76 &input_binary,
02e24c0c 77 &input_chronovu_la8,
41d214f6 78 &input_csv,
6d2897e3 79 &input_trace32_ad,
b84cba4d
BV
80 &input_vcd,
81 &input_wav,
e6b15cb5 82 &input_raw_analog,
e1b115bd 83 &input_logicport,
2003be8c 84 &input_null,
34e4813f
BV
85 NULL,
86};
87
0f3dbc95
BV
88/**
89 * Returns a NULL-terminated list of all available input modules.
90 *
91 * @since 0.4.0
92 */
17bfaca6 93SR_API const struct sr_input_module **sr_input_list(void)
34e4813f 94{
34e4813f
BV
95 return input_module_list;
96}
7b870c38 97
17bfaca6
BV
98/**
99 * Returns the specified input module's ID.
100 *
101 * @since 0.4.0
102 */
4fb0a5f8 103SR_API const char *sr_input_id_get(const struct sr_input_module *imod)
17bfaca6 104{
4fb0a5f8 105 if (!imod) {
17bfaca6
BV
106 sr_err("Invalid input module NULL!");
107 return NULL;
108 }
109
4fb0a5f8 110 return imod->id;
17bfaca6
BV
111}
112
113/**
114 * Returns the specified input module's name.
115 *
116 * @since 0.4.0
117 */
4fb0a5f8 118SR_API const char *sr_input_name_get(const struct sr_input_module *imod)
17bfaca6 119{
4fb0a5f8 120 if (!imod) {
17bfaca6
BV
121 sr_err("Invalid input module NULL!");
122 return NULL;
123 }
124
4fb0a5f8 125 return imod->name;
17bfaca6
BV
126}
127
128/**
129 * Returns the specified input module's description.
130 *
131 * @since 0.4.0
132 */
4fb0a5f8 133SR_API const char *sr_input_description_get(const struct sr_input_module *imod)
17bfaca6 134{
4fb0a5f8 135 if (!imod) {
17bfaca6
BV
136 sr_err("Invalid input module NULL!");
137 return NULL;
138 }
139
4fb0a5f8 140 return imod->desc;
17bfaca6
BV
141}
142
c7bc82ff
JH
143/**
144 * Returns the specified input module's file extensions typical for the file
145 * format, as a NULL terminated array, or returns a NULL pointer if there is
146 * no preferred extension.
147 * @note these are a suggestions only.
148 *
149 * @since 0.4.0
150 */
151SR_API const char *const *sr_input_extensions_get(
4fb0a5f8 152 const struct sr_input_module *imod)
c7bc82ff 153{
4fb0a5f8 154 if (!imod) {
c7bc82ff
JH
155 sr_err("Invalid input module NULL!");
156 return NULL;
157 }
158
4fb0a5f8 159 return imod->exts;
c7bc82ff
JH
160}
161
17bfaca6
BV
162/**
163 * Return the input module with the specified ID, or NULL if no module
164 * with that id is found.
165 *
166 * @since 0.4.0
167 */
168SR_API const struct sr_input_module *sr_input_find(char *id)
169{
170 int i;
171
172 for (i = 0; input_module_list[i]; i++) {
173 if (!strcmp(input_module_list[i]->id, id))
174 return input_module_list[i];
175 }
176
177 return NULL;
178}
179
180/**
181 * Returns a NULL-terminated array of struct sr_option, or NULL if the
182 * module takes no options.
183 *
184 * Each call to this function must be followed by a call to
185 * sr_input_options_free().
186 *
187 * @since 0.4.0
188 */
bd0bfaaf 189SR_API const struct sr_option **sr_input_options_get(const struct sr_input_module *imod)
17bfaca6 190{
bd0bfaaf
BV
191 const struct sr_option *mod_opts, **opts;
192 int size, i;
17bfaca6 193
bd0bfaaf 194 if (!imod || !imod->options)
17bfaca6
BV
195 return NULL;
196
bd0bfaaf
BV
197 mod_opts = imod->options();
198
fe4fe25b 199 for (size = 0; mod_opts[size].id; size++)
bd0bfaaf 200 ;
fe4fe25b 201 opts = g_malloc((size + 1) * sizeof(struct sr_option *));
bd0bfaaf
BV
202
203 for (i = 0; i < size; i++)
204 opts[i] = &mod_opts[i];
205 opts[i] = NULL;
206
207 return opts;
17bfaca6
BV
208}
209
210/**
211 * After a call to sr_input_options_get(), this function cleans up all
bd0bfaaf 212 * resources returned by that call.
17bfaca6
BV
213 *
214 * @since 0.4.0
215 */
bd0bfaaf 216SR_API void sr_input_options_free(const struct sr_option **options)
17bfaca6 217{
fe4fe25b 218 int i;
17bfaca6 219
bd0bfaaf 220 if (!options)
17bfaca6
BV
221 return;
222
fe4fe25b
BV
223 for (i = 0; options[i]; i++) {
224 if (options[i]->def) {
225 g_variant_unref(options[i]->def);
226 ((struct sr_option *)options[i])->def = NULL;
17bfaca6
BV
227 }
228
fe4fe25b
BV
229 if (options[i]->values) {
230 g_slist_free_full(options[i]->values, (GDestroyNotify)g_variant_unref);
231 ((struct sr_option *)options[i])->values = NULL;
17bfaca6
BV
232 }
233 }
bd0bfaaf 234 g_free(options);
17bfaca6
BV
235}
236
237/**
238 * Create a new input instance using the specified input module.
239 *
240 * This function is used when a client wants to use a specific input
241 * module to parse a stream. No effort is made to identify the format.
242 *
7a54232b 243 * @param imod The input module to use. Must not be NULL.
0f3dbc95 244 * @param options GHashTable consisting of keys corresponding with
dff0a894 245 * the module options @c id field. The values should be GVariant
0f3dbc95 246 * pointers with sunk references, of the same GVariantType as the option's
17bfaca6
BV
247 * default value.
248 *
249 * @since 0.4.0
250 */
251SR_API struct sr_input *sr_input_new(const struct sr_input_module *imod,
252 GHashTable *options)
253{
254 struct sr_input *in;
2c240774 255 const struct sr_option *mod_opts;
17bfaca6
BV
256 const GVariantType *gvt;
257 GHashTable *new_opts;
258 GHashTableIter iter;
259 gpointer key, value;
260 int i;
261
262 in = g_malloc0(sizeof(struct sr_input));
263 in->module = imod;
264
7db06394
BV
265 new_opts = g_hash_table_new_full(g_str_hash, g_str_equal, g_free,
266 (GDestroyNotify)g_variant_unref);
267 if (imod->options) {
17bfaca6
BV
268 mod_opts = imod->options();
269 for (i = 0; mod_opts[i].id; i++) {
7db06394
BV
270 if (options && g_hash_table_lookup_extended(options,
271 mod_opts[i].id, &key, &value)) {
17bfaca6
BV
272 /* Option not given: insert the default value. */
273 gvt = g_variant_get_type(mod_opts[i].def);
274 if (!g_variant_is_of_type(value, gvt)) {
6433156c
DE
275 sr_err("Invalid type for '%s' option.",
276 (char *)key);
17bfaca6
BV
277 g_free(in);
278 return NULL;
279 }
280 g_hash_table_insert(new_opts, g_strdup(mod_opts[i].id),
281 g_variant_ref(value));
282 } else {
283 /* Pass option along. */
284 g_hash_table_insert(new_opts, g_strdup(mod_opts[i].id),
285 g_variant_ref(mod_opts[i].def));
286 }
287 }
288
289 /* Make sure no invalid options were given. */
7db06394
BV
290 if (options) {
291 g_hash_table_iter_init(&iter, options);
292 while (g_hash_table_iter_next(&iter, &key, &value)) {
293 if (!g_hash_table_lookup(new_opts, key)) {
6433156c
DE
294 sr_err("Input module '%s' has no option '%s'",
295 imod->id, (char *)key);
7db06394
BV
296 g_hash_table_destroy(new_opts);
297 g_free(in);
298 return NULL;
299 }
17bfaca6
BV
300 }
301 }
7db06394 302 }
17bfaca6
BV
303
304 if (in->module->init && in->module->init(in, new_opts) != SR_OK) {
17bfaca6
BV
305 g_free(in);
306 in = NULL;
64098211
BV
307 } else {
308 in->buf = g_string_sized_new(128);
17bfaca6 309 }
64098211 310
17bfaca6
BV
311 if (new_opts)
312 g_hash_table_destroy(new_opts);
313
314 return in;
315}
316
64098211 317/* Returns TRUE if all required meta items are available. */
17bfaca6
BV
318static gboolean check_required_metadata(const uint8_t *metadata, uint8_t *avail)
319{
320 int m, a;
321 uint8_t reqd;
322
323 for (m = 0; metadata[m]; m++) {
7db06394 324 if (!(metadata[m] & SR_INPUT_META_REQUIRED))
17bfaca6
BV
325 continue;
326 reqd = metadata[m] & ~SR_INPUT_META_REQUIRED;
327 for (a = 0; avail[a]; a++) {
328 if (avail[a] == reqd)
329 break;
330 }
331 if (!avail[a])
332 /* Found a required meta item that isn't available. */
333 return FALSE;
334 }
335
336 return TRUE;
337}
338
339/**
340 * Try to find an input module that can parse the given buffer.
341 *
342 * The buffer must contain enough of the beginning of the file for
0dabb880
GS
343 * the input modules to find a match. This is format-dependent. When
344 * magic strings get checked, 128 bytes normally could be enough. Note
345 * that some formats try to parse larger header sections, and benefit
346 * from seeing a larger scope.
17bfaca6 347 *
4f979115 348 * If an input module is found, an instance is created into *in.
54ee427d
GS
349 * Otherwise, *in contains NULL. When multiple input moduless claim
350 * support for the format, the one with highest confidence takes
351 * precedence. Applications will see at most one input module spec.
17bfaca6 352 *
33e4303b
BV
353 * If an instance is created, it has the given buffer used for scanning
354 * already submitted to it, to be processed before more data is sent.
355 * This allows a frontend to submit an initial chunk of a non-seekable
356 * stream, such as stdin, without having to keep it around and submit
357 * it again later.
358 *
17bfaca6 359 */
4f979115 360SR_API int sr_input_scan_buffer(GString *buf, const struct sr_input **in)
17bfaca6 361{
54ee427d 362 const struct sr_input_module *imod, *best_imod;
17bfaca6
BV
363 GHashTable *meta;
364 unsigned int m, i;
54ee427d 365 unsigned int conf, best_conf;
4f979115 366 int ret;
17bfaca6
BV
367 uint8_t mitem, avail_metadata[8];
368
369 /* No more metadata to be had from a buffer. */
370 avail_metadata[0] = SR_INPUT_META_HEADER;
371 avail_metadata[1] = 0;
372
4f979115 373 *in = NULL;
54ee427d
GS
374 best_imod = NULL;
375 best_conf = ~0;
17bfaca6
BV
376 for (i = 0; input_module_list[i]; i++) {
377 imod = input_module_list[i];
378 if (!imod->metadata[0]) {
379 /* Module has no metadata for matching so will take
380 * any input. No point in letting it try to match. */
381 continue;
382 }
383 if (!check_required_metadata(imod->metadata, avail_metadata))
384 /* Cannot satisfy this module's requirements. */
385 continue;
386
387 meta = g_hash_table_new(NULL, NULL);
388 for (m = 0; m < sizeof(imod->metadata); m++) {
389 mitem = imod->metadata[m] & ~SR_INPUT_META_REQUIRED;
390 if (mitem == SR_INPUT_META_HEADER)
391 g_hash_table_insert(meta, GINT_TO_POINTER(mitem), buf);
392 }
393 if (g_hash_table_size(meta) == 0) {
394 /* No metadata for this module, so nothing to match. */
395 g_hash_table_destroy(meta);
396 continue;
397 }
4f979115 398 sr_spew("Trying module %s.", imod->id);
54ee427d 399 ret = imod->format_match(meta, &conf);
4f979115
BV
400 g_hash_table_destroy(meta);
401 if (ret == SR_ERR_DATA) {
402 /* Module recognized this buffer, but cannot handle it. */
54ee427d 403 continue;
4f979115 404 } else if (ret == SR_ERR) {
17bfaca6 405 /* Module didn't recognize this buffer. */
17bfaca6 406 continue;
4f979115 407 } else if (ret != SR_OK) {
60107497 408 /* Can be SR_ERR_NA. */
54ee427d 409 continue;
17bfaca6 410 }
17bfaca6
BV
411
412 /* Found a matching module. */
54ee427d
GS
413 sr_spew("Module %s matched, confidence %u.", imod->id, conf);
414 if (conf >= best_conf)
415 continue;
416 best_imod = imod;
417 best_conf = conf;
418 }
419
420 if (best_imod) {
421 *in = sr_input_new(best_imod, NULL);
4f979115 422 g_string_insert_len((*in)->buf, 0, buf->str, buf->len);
54ee427d 423 return SR_OK;
17bfaca6
BV
424 }
425
54ee427d 426 return SR_ERR;
17bfaca6
BV
427}
428
429/**
430 * Try to find an input module that can parse the given file.
431 *
4f979115 432 * If an input module is found, an instance is created into *in.
54ee427d
GS
433 * Otherwise, *in contains NULL. When multiple input moduless claim
434 * support for the format, the one with highest confidence takes
435 * precedence. Applications will see at most one input module spec.
17bfaca6
BV
436 *
437 */
4f979115 438SR_API int sr_input_scan_file(const char *filename, const struct sr_input **in)
17bfaca6 439{
4619fab4 440 int64_t filesize;
5e364d4f 441 FILE *stream;
54ee427d 442 const struct sr_input_module *imod, *best_imod;
17bfaca6 443 GHashTable *meta;
5e364d4f 444 GString *header;
5e364d4f
DE
445 size_t count;
446 unsigned int midx, i;
54ee427d 447 unsigned int conf, best_conf;
5e364d4f
DE
448 int ret;
449 uint8_t avail_metadata[8];
450
451 *in = NULL;
17bfaca6
BV
452
453 if (!filename || !filename[0]) {
454 sr_err("Invalid filename.");
4f979115 455 return SR_ERR_ARG;
17bfaca6 456 }
5e364d4f
DE
457 stream = g_fopen(filename, "rb");
458 if (!stream) {
459 sr_err("Failed to open %s: %s", filename, g_strerror(errno));
460 return SR_ERR;
461 }
4619fab4
DE
462 filesize = sr_file_get_size(stream);
463 if (filesize < 0) {
464 sr_err("Failed to get size of %s: %s",
465 filename, g_strerror(errno));
466 fclose(stream);
467 return SR_ERR;
468 }
0dabb880 469 header = g_string_sized_new(CHUNK_SIZE);
5e364d4f 470 count = fread(header->str, 1, header->allocated_len - 1, stream);
0dabb880 471 if (count < 1 || ferror(stream)) {
5e364d4f
DE
472 sr_err("Failed to read %s: %s", filename, g_strerror(errno));
473 fclose(stream);
474 g_string_free(header, TRUE);
475 return SR_ERR;
476 }
477 fclose(stream);
478 g_string_set_size(header, count);
479
480 meta = g_hash_table_new(NULL, NULL);
481 g_hash_table_insert(meta, GINT_TO_POINTER(SR_INPUT_META_FILENAME),
482 (char *)filename);
483 g_hash_table_insert(meta, GINT_TO_POINTER(SR_INPUT_META_FILESIZE),
4619fab4 484 GSIZE_TO_POINTER(MIN(filesize, G_MAXSSIZE)));
5e364d4f
DE
485 g_hash_table_insert(meta, GINT_TO_POINTER(SR_INPUT_META_HEADER),
486 header);
17bfaca6
BV
487 midx = 0;
488 avail_metadata[midx++] = SR_INPUT_META_FILENAME;
489 avail_metadata[midx++] = SR_INPUT_META_FILESIZE;
490 avail_metadata[midx++] = SR_INPUT_META_HEADER;
5e364d4f 491 avail_metadata[midx] = 0;
17bfaca6
BV
492 /* TODO: MIME type */
493
54ee427d
GS
494 best_imod = NULL;
495 best_conf = ~0;
5e364d4f 496 for (i = 0; input_module_list[i]; i++) {
17bfaca6
BV
497 imod = input_module_list[i];
498 if (!imod->metadata[0]) {
499 /* Module has no metadata for matching so will take
500 * any input. No point in letting it try to match. */
501 continue;
502 }
503 if (!check_required_metadata(imod->metadata, avail_metadata))
504 /* Cannot satisfy this module's requirements. */
505 continue;
506
5e364d4f
DE
507 sr_dbg("Trying module %s.", imod->id);
508
54ee427d 509 ret = imod->format_match(meta, &conf);
5e364d4f 510 if (ret == SR_ERR) {
17bfaca6
BV
511 /* Module didn't recognize this buffer. */
512 continue;
4f979115 513 } else if (ret != SR_OK) {
5e364d4f 514 /* Module recognized this buffer, but cannot handle it. */
54ee427d 515 continue;
4f979115 516 }
17bfaca6 517 /* Found a matching module. */
54ee427d
GS
518 sr_dbg("Module %s matched, confidence %u.", imod->id, conf);
519 if (conf >= best_conf)
520 continue;
521 best_imod = imod;
522 best_conf = conf;
17bfaca6 523 }
5e364d4f
DE
524 g_hash_table_destroy(meta);
525 g_string_free(header, TRUE);
17bfaca6 526
54ee427d
GS
527 if (best_imod) {
528 *in = sr_input_new(best_imod, NULL);
529 return SR_OK;
530 }
531
532 return SR_ERR;
17bfaca6
BV
533}
534
c83bdde9
GS
535/**
536 * Return the input instance's module "class". This can be used to find out
537 * which input module handles a specific input file. This is especially
538 * useful when an application did not create the input stream by specifying
539 * an input module, but instead some shortcut or convenience wrapper did.
540 *
541 * @since 0.6.0
542 */
543SR_API const struct sr_input_module *sr_input_module_get(const struct sr_input *in)
544{
545 if (!in)
546 return NULL;
547
548 return in->module;
549}
550
0f3dbc95
BV
551/**
552 * Return the input instance's (virtual) device instance. This can be
553 * used to find out the number of channels and other information.
554 *
d0181813
BV
555 * If the device instance has not yet been fully populated by the input
556 * module, NULL is returned. This indicates the module needs more data
557 * to identify the number of channels and so on.
558 *
0f3dbc95
BV
559 * @since 0.4.0
560 */
17bfaca6
BV
561SR_API struct sr_dev_inst *sr_input_dev_inst_get(const struct sr_input *in)
562{
d0181813
BV
563 if (in->sdi_ready)
564 return in->sdi;
565 else
566 return NULL;
17bfaca6
BV
567}
568
569/**
570 * Send data to the specified input instance.
571 *
572 * When an input module instance is created with sr_input_new(), this
573 * function is used to feed data to the instance.
574 *
d0181813
BV
575 * As enough data gets fed into this function to completely populate
576 * the device instance associated with this input instance, this is
577 * guaranteed to return the moment it's ready. This gives the caller
578 * the chance to examine the device instance, attach session callbacks
60107497 579 * and so on.
d0181813 580 *
17bfaca6
BV
581 * @since 0.4.0
582 */
583SR_API int sr_input_send(const struct sr_input *in, GString *buf)
584{
6433156c
DE
585 sr_spew("Sending %" G_GSIZE_FORMAT " bytes to %s module.",
586 buf->len, in->module->id);
d0181813 587 return in->module->receive((struct sr_input *)in, buf);
17bfaca6
BV
588}
589
7066fd46
BV
590/**
591 * Signal the input module no more data will come.
592 *
593 * This will cause the module to process any data it may have buffered.
594 * The SR_DF_END packet will also typically be sent at this time.
595 *
596 * @since 0.4.0
597 */
598SR_API int sr_input_end(const struct sr_input *in)
599{
600 sr_spew("Calling end() on %s module.", in->module->id);
601 return in->module->end((struct sr_input *)in);
602}
603
b6b4f03e
SA
604/**
605 * Reset the input module's input handling structures.
606 *
607 * Causes the input module to reset its internal state so that we can re-send
608 * the input data from the beginning without having to re-create the entire
609 * input module.
610 *
611 * @since 0.5.0
612 */
613SR_API int sr_input_reset(const struct sr_input *in)
614{
615 if (!in->module->reset) {
616 sr_spew("Tried to reset %s module but no reset handler found.",
617 in->module->id);
618 return SR_OK;
619 }
620
621 sr_spew("Resetting %s module.", in->module->id);
622 return in->module->reset((struct sr_input *)in);
623}
624
17bfaca6
BV
625/**
626 * Free the specified input instance and all associated resources.
627 *
628 * @since 0.4.0
629 */
d5cc282f 630SR_API void sr_input_free(const struct sr_input *in)
17bfaca6 631{
17bfaca6 632 if (!in)
d5cc282f 633 return;
17bfaca6 634
17bfaca6 635 if (in->module->cleanup)
d5cc282f 636 in->module->cleanup((struct sr_input *)in);
4bf93988 637 sr_dev_inst_free(in->sdi);
d0181813
BV
638 if (in->buf->len > 64) {
639 /* That seems more than just some sub-unitsize leftover... */
6433156c
DE
640 sr_warn("Found %" G_GSIZE_FORMAT
641 " unprocessed bytes at free time.", in->buf->len);
d0181813 642 }
d5cc282f 643 g_string_free(in->buf, TRUE);
89da5b3b 644 g_free(in->priv);
17bfaca6 645 g_free((gpointer)in);
17bfaca6
BV
646}
647
7b870c38 648/** @} */