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