]> sigrok.org Git - libsigrok.git/blame - src/input/input.c
input: Only use header buffer for modules that need it.
[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
17bfaca6
BV
20#include <string.h>
21#include <sys/types.h>
22#include <sys/stat.h>
23#include <unistd.h>
24#include <fcntl.h>
25#include <errno.h>
45c59c8b
BV
26#include "libsigrok.h"
27#include "libsigrok-internal.h"
34e4813f 28
17bfaca6
BV
29#define LOG_PREFIX "input"
30
393fb9cb
UH
31/**
32 * @file
33 *
0f3dbc95 34 * Input module handling.
393fb9cb
UH
35 */
36
7b870c38 37/**
d4c93774 38 * @defgroup grp_input Input modules
7b870c38 39 *
d4c93774 40 * Input file/data module handling.
7b870c38 41 *
83687343 42 * libsigrok can process acquisition data in several different ways.
0f3dbc95
BV
43 * Aside from acquiring data from a hardware device, it can also take it
44 * from a file in various formats (binary, CSV, VCD, and so on).
83687343 45 *
0f3dbc95
BV
46 * Like all libsigrok data handling, processing is done in a streaming
47 * manner: input should be supplied a chunk at a time. This way anything
48 * that processes data can do so in real time, without the user having
49 * to wait for the whole thing to be finished.
83687343
UH
50 *
51 * Every input module is "pluggable", meaning it's handled as being separate
52 * from the main libsigrok, but linked in to it statically. To keep things
53 * modular and separate like this, functions within an input module should be
d4c93774 54 * declared static, with only the respective 'struct sr_input_module' being
83687343
UH
55 * exported for use into the wider libsigrok namespace.
56 *
7b870c38
UH
57 * @{
58 */
59
b4bd7088 60/** @cond PRIVATE */
d4c93774
BV
61extern SR_PRIV struct sr_input_module input_chronovu_la8;
62extern SR_PRIV struct sr_input_module input_csv;
63extern SR_PRIV struct sr_input_module input_binary;
64extern SR_PRIV struct sr_input_module input_vcd;
65extern SR_PRIV struct sr_input_module input_wav;
b4bd7088 66/* @endcond */
34e4813f 67
17bfaca6 68static const struct sr_input_module *input_module_list[] = {
7db06394 69 &input_vcd,
17bfaca6 70// &input_chronovu_la8,
1d36b4d2 71 &input_wav,
41d214f6 72 &input_csv,
757b8c62 73 /* This one has to be last, because it will take any input. */
17bfaca6 74// &input_binary,
34e4813f
BV
75 NULL,
76};
77
0f3dbc95
BV
78/**
79 * Returns a NULL-terminated list of all available input modules.
80 *
81 * @since 0.4.0
82 */
17bfaca6 83SR_API const struct sr_input_module **sr_input_list(void)
34e4813f 84{
34e4813f
BV
85 return input_module_list;
86}
7b870c38 87
17bfaca6
BV
88/**
89 * Returns the specified input module's ID.
90 *
91 * @since 0.4.0
92 */
93SR_API const char *sr_input_id_get(const struct sr_input_module *o)
94{
95 if (!o) {
96 sr_err("Invalid input module NULL!");
97 return NULL;
98 }
99
100 return o->id;
101}
102
103/**
104 * Returns the specified input module's name.
105 *
106 * @since 0.4.0
107 */
108SR_API const char *sr_input_name_get(const struct sr_input_module *o)
109{
110 if (!o) {
111 sr_err("Invalid input module NULL!");
112 return NULL;
113 }
114
115 return o->name;
116}
117
118/**
119 * Returns the specified input module's description.
120 *
121 * @since 0.4.0
122 */
123SR_API const char *sr_input_description_get(const struct sr_input_module *o)
124{
125 if (!o) {
126 sr_err("Invalid input module NULL!");
127 return NULL;
128 }
129
130 return o->desc;
131}
132
133/**
134 * Return the input module with the specified ID, or NULL if no module
135 * with that id is found.
136 *
137 * @since 0.4.0
138 */
139SR_API const struct sr_input_module *sr_input_find(char *id)
140{
141 int i;
142
143 for (i = 0; input_module_list[i]; i++) {
144 if (!strcmp(input_module_list[i]->id, id))
145 return input_module_list[i];
146 }
147
148 return NULL;
149}
150
151/**
152 * Returns a NULL-terminated array of struct sr_option, or NULL if the
153 * module takes no options.
154 *
155 * Each call to this function must be followed by a call to
156 * sr_input_options_free().
157 *
158 * @since 0.4.0
159 */
bd0bfaaf 160SR_API const struct sr_option **sr_input_options_get(const struct sr_input_module *imod)
17bfaca6 161{
bd0bfaaf
BV
162 const struct sr_option *mod_opts, **opts;
163 int size, i;
17bfaca6 164
bd0bfaaf 165 if (!imod || !imod->options)
17bfaca6
BV
166 return NULL;
167
bd0bfaaf
BV
168 mod_opts = imod->options();
169
fe4fe25b 170 for (size = 0; mod_opts[size].id; size++)
bd0bfaaf 171 ;
fe4fe25b 172 opts = g_malloc((size + 1) * sizeof(struct sr_option *));
bd0bfaaf
BV
173
174 for (i = 0; i < size; i++)
175 opts[i] = &mod_opts[i];
176 opts[i] = NULL;
177
178 return opts;
17bfaca6
BV
179}
180
181/**
182 * After a call to sr_input_options_get(), this function cleans up all
bd0bfaaf 183 * resources returned by that call.
17bfaca6
BV
184 *
185 * @since 0.4.0
186 */
bd0bfaaf 187SR_API void sr_input_options_free(const struct sr_option **options)
17bfaca6 188{
fe4fe25b 189 int i;
17bfaca6 190
bd0bfaaf 191 if (!options)
17bfaca6
BV
192 return;
193
fe4fe25b
BV
194 for (i = 0; options[i]; i++) {
195 if (options[i]->def) {
196 g_variant_unref(options[i]->def);
197 ((struct sr_option *)options[i])->def = NULL;
17bfaca6
BV
198 }
199
fe4fe25b
BV
200 if (options[i]->values) {
201 g_slist_free_full(options[i]->values, (GDestroyNotify)g_variant_unref);
202 ((struct sr_option *)options[i])->values = NULL;
17bfaca6
BV
203 }
204 }
bd0bfaaf 205 g_free(options);
17bfaca6
BV
206}
207
208/**
209 * Create a new input instance using the specified input module.
210 *
211 * This function is used when a client wants to use a specific input
212 * module to parse a stream. No effort is made to identify the format.
213 *
0f3dbc95
BV
214 * @param options GHashTable consisting of keys corresponding with
215 * the module options \c id field. The values should be GVariant
216 * pointers with sunk references, of the same GVariantType as the option's
17bfaca6
BV
217 * default value.
218 *
219 * @since 0.4.0
220 */
221SR_API struct sr_input *sr_input_new(const struct sr_input_module *imod,
222 GHashTable *options)
223{
224 struct sr_input *in;
225 struct sr_option *mod_opts;
226 const GVariantType *gvt;
227 GHashTable *new_opts;
228 GHashTableIter iter;
229 gpointer key, value;
230 int i;
231
232 in = g_malloc0(sizeof(struct sr_input));
233 in->module = imod;
234
7db06394
BV
235 new_opts = g_hash_table_new_full(g_str_hash, g_str_equal, g_free,
236 (GDestroyNotify)g_variant_unref);
237 if (imod->options) {
17bfaca6
BV
238 mod_opts = imod->options();
239 for (i = 0; mod_opts[i].id; i++) {
7db06394
BV
240 if (options && g_hash_table_lookup_extended(options,
241 mod_opts[i].id, &key, &value)) {
17bfaca6
BV
242 /* Option not given: insert the default value. */
243 gvt = g_variant_get_type(mod_opts[i].def);
244 if (!g_variant_is_of_type(value, gvt)) {
245 sr_err("Invalid type for '%s' option.", key);
246 g_free(in);
247 return NULL;
248 }
249 g_hash_table_insert(new_opts, g_strdup(mod_opts[i].id),
250 g_variant_ref(value));
251 } else {
252 /* Pass option along. */
253 g_hash_table_insert(new_opts, g_strdup(mod_opts[i].id),
254 g_variant_ref(mod_opts[i].def));
255 }
256 }
257
258 /* Make sure no invalid options were given. */
7db06394
BV
259 if (options) {
260 g_hash_table_iter_init(&iter, options);
261 while (g_hash_table_iter_next(&iter, &key, &value)) {
262 if (!g_hash_table_lookup(new_opts, key)) {
263 sr_err("Input module '%s' has no option '%s'", imod->id, key);
264 g_hash_table_destroy(new_opts);
265 g_free(in);
266 return NULL;
267 }
17bfaca6
BV
268 }
269 }
7db06394 270 }
17bfaca6
BV
271
272 if (in->module->init && in->module->init(in, new_opts) != SR_OK) {
17bfaca6
BV
273 g_free(in);
274 in = NULL;
275 }
276 if (new_opts)
277 g_hash_table_destroy(new_opts);
57486a75 278 in->buf = g_string_sized_new(128);
17bfaca6
BV
279
280 return in;
281}
282
283/* Returns TRUE is all required meta items are available. */
284static gboolean check_required_metadata(const uint8_t *metadata, uint8_t *avail)
285{
286 int m, a;
287 uint8_t reqd;
288
289 for (m = 0; metadata[m]; m++) {
7db06394 290 if (!(metadata[m] & SR_INPUT_META_REQUIRED))
17bfaca6
BV
291 continue;
292 reqd = metadata[m] & ~SR_INPUT_META_REQUIRED;
293 for (a = 0; avail[a]; a++) {
294 if (avail[a] == reqd)
295 break;
296 }
297 if (!avail[a])
298 /* Found a required meta item that isn't available. */
299 return FALSE;
300 }
301
302 return TRUE;
303}
304
305/**
306 * Try to find an input module that can parse the given buffer.
307 *
308 * The buffer must contain enough of the beginning of the file for
309 * the input modules to find a match. This is format-dependent, but
310 * 128 bytes is normally enough.
311 *
312 * If an input module is found, an instance is created and returned.
313 * Otherwise, NULL is returned.
314 *
315 */
316SR_API const struct sr_input *sr_input_scan_buffer(GString *buf)
317{
318 struct sr_input *in;
319 const struct sr_input_module *imod;
320 GHashTable *meta;
321 unsigned int m, i;
322 uint8_t mitem, avail_metadata[8];
323
324 /* No more metadata to be had from a buffer. */
325 avail_metadata[0] = SR_INPUT_META_HEADER;
326 avail_metadata[1] = 0;
327
328 in = NULL;
329 for (i = 0; input_module_list[i]; i++) {
330 imod = input_module_list[i];
331 if (!imod->metadata[0]) {
332 /* Module has no metadata for matching so will take
333 * any input. No point in letting it try to match. */
334 continue;
335 }
336 if (!check_required_metadata(imod->metadata, avail_metadata))
337 /* Cannot satisfy this module's requirements. */
338 continue;
339
340 meta = g_hash_table_new(NULL, NULL);
341 for (m = 0; m < sizeof(imod->metadata); m++) {
342 mitem = imod->metadata[m] & ~SR_INPUT_META_REQUIRED;
343 if (mitem == SR_INPUT_META_HEADER)
344 g_hash_table_insert(meta, GINT_TO_POINTER(mitem), buf);
345 }
346 if (g_hash_table_size(meta) == 0) {
347 /* No metadata for this module, so nothing to match. */
348 g_hash_table_destroy(meta);
349 continue;
350 }
351 if (!imod->format_match(meta)) {
352 /* Module didn't recognize this buffer. */
353 g_hash_table_destroy(meta);
354 continue;
355 }
356 g_hash_table_destroy(meta);
357
358 /* Found a matching module. */
359 in = sr_input_new(imod, NULL);
57486a75 360 g_string_insert_len(in->buf, 0, buf->str, buf->len);
17bfaca6
BV
361 break;
362 }
363
364 return in;
365}
366
367/**
368 * Try to find an input module that can parse the given file.
369 *
370 * If an input module is found, an instance is created and returned.
371 * Otherwise, NULL is returned.
372 *
373 */
374SR_API const struct sr_input *sr_input_scan_file(const char *filename)
375{
376 struct sr_input *in;
377 const struct sr_input_module *imod;
378 GHashTable *meta;
115fbe94 379 GString *header_buf;
17bfaca6
BV
380 struct stat st;
381 unsigned int midx, m, i;
382 int fd;
383 ssize_t size;
384 uint8_t mitem, avail_metadata[8];
385
386 if (!filename || !filename[0]) {
387 sr_err("Invalid filename.");
388 return NULL;
389 }
390
391 if (!g_file_test(filename, G_FILE_TEST_EXISTS)) {
392 sr_err("No such file.");
393 return NULL;
394 }
395
396 if (stat(filename, &st) < 0) {
397 sr_err("%s", strerror(errno));
398 return NULL;
399 }
400
401 midx = 0;
402 avail_metadata[midx++] = SR_INPUT_META_FILENAME;
403 avail_metadata[midx++] = SR_INPUT_META_FILESIZE;
404 avail_metadata[midx++] = SR_INPUT_META_HEADER;
405 /* TODO: MIME type */
406
407 in = NULL;
115fbe94 408 header_buf = g_string_sized_new(128);
17bfaca6 409 for (i = 0; input_module_list[i]; i++) {
115fbe94
BV
410 g_string_truncate(header_buf, 0);
411
17bfaca6
BV
412 imod = input_module_list[i];
413 if (!imod->metadata[0]) {
414 /* Module has no metadata for matching so will take
415 * any input. No point in letting it try to match. */
416 continue;
417 }
418 if (!check_required_metadata(imod->metadata, avail_metadata))
419 /* Cannot satisfy this module's requirements. */
420 continue;
421
422 meta = g_hash_table_new(NULL, NULL);
423 for (m = 0; m < sizeof(imod->metadata); m++) {
424 mitem = imod->metadata[m] & ~SR_INPUT_META_REQUIRED;
115fbe94
BV
425 if (!mitem)
426 /* Metadata list is 0-terminated. */
427 break;
17bfaca6
BV
428 if (mitem == SR_INPUT_META_FILENAME)
429 g_hash_table_insert(meta, GINT_TO_POINTER(mitem),
430 (gpointer)filename);
115fbe94
BV
431 else if (mitem == SR_INPUT_META_FILESIZE) {
432 sr_dbg("inserting fs %d", st.st_size);
17bfaca6
BV
433 g_hash_table_insert(meta, GINT_TO_POINTER(mitem),
434 GINT_TO_POINTER(st.st_size));
115fbe94 435 } else if (mitem == SR_INPUT_META_HEADER) {
17bfaca6
BV
436 if ((fd = open(filename, O_RDONLY)) < 0) {
437 sr_err("%s", strerror(errno));
438 return NULL;
439 }
115fbe94
BV
440 size = read(fd, header_buf->str, 128);
441 header_buf->len = size;
17bfaca6
BV
442 close(fd);
443 if (size <= 0) {
115fbe94 444 g_string_free(header_buf, TRUE);
17bfaca6
BV
445 sr_err("%s", strerror(errno));
446 return NULL;
447 }
115fbe94 448 g_hash_table_insert(meta, GINT_TO_POINTER(mitem), header_buf);
17bfaca6
BV
449 }
450 }
451 if (g_hash_table_size(meta) == 0) {
452 /* No metadata for this module, so there's no way it
453 * can match. */
454 g_hash_table_destroy(meta);
455 continue;
456 }
457 if (!imod->format_match(meta))
458 /* Module didn't recognize this buffer. */
459 continue;
460
461 /* Found a matching module. */
462 in = sr_input_new(imod, NULL);
57486a75 463 g_string_insert_len(in->buf, 0, buf->str, buf->len);
17bfaca6
BV
464 break;
465 }
115fbe94 466 g_string_free(header_buf, TRUE);
17bfaca6
BV
467
468 return in;
469}
470
0f3dbc95
BV
471/**
472 * Return the input instance's (virtual) device instance. This can be
473 * used to find out the number of channels and other information.
474 *
475 * @since 0.4.0
476 */
17bfaca6
BV
477SR_API struct sr_dev_inst *sr_input_dev_inst_get(const struct sr_input *in)
478{
479 return in->sdi;
480}
481
482/**
483 * Send data to the specified input instance.
484 *
485 * When an input module instance is created with sr_input_new(), this
486 * function is used to feed data to the instance.
487 *
488 * @since 0.4.0
489 */
490SR_API int sr_input_send(const struct sr_input *in, GString *buf)
491{
492 return in->module->receive(in, buf);
493}
494
495/**
496 * Free the specified input instance and all associated resources.
497 *
498 * @since 0.4.0
499 */
500SR_API int sr_input_free(const struct sr_input *in)
501{
502 int ret;
503
504 if (!in)
505 return SR_ERR_ARG;
506
507 ret = SR_OK;
508 if (in->module->cleanup)
509 ret = in->module->cleanup((struct sr_input *)in);
7db06394
BV
510 if (in->sdi)
511 sr_dev_inst_free(in->sdi);
17bfaca6
BV
512 if (in->buf)
513 g_string_free(in->buf, TRUE);
514 g_free((gpointer)in);
515
516 return ret;
517}
518
519
7b870c38 520/** @} */