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