]> sigrok.org Git - libsigrok.git/blame - src/input/input.c
input: Fix up API documentation.
[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
BV
68static const struct sr_input_module *input_module_list[] = {
69// &input_vcd,
70// &input_chronovu_la8,
1d36b4d2 71 &input_wav,
17bfaca6 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 */
160SR_API const struct sr_option *sr_input_options_get(const struct sr_input_module *o)
161{
162
163 if (!o || !o->options)
164 return NULL;
165
166 return o->options();
167}
168
169/**
170 * After a call to sr_input_options_get(), this function cleans up all
0f3dbc95 171 * resources allocated by that call.
17bfaca6
BV
172 *
173 * @since 0.4.0
174 */
175SR_API void sr_input_options_free(const struct sr_input_module *o)
176{
177 struct sr_option *opt;
178
179 if (!o || !o->options)
180 return;
181
182 for (opt = o->options(); opt->id; opt++) {
183 if (opt->def) {
184 g_variant_unref(opt->def);
185 opt->def = NULL;
186 }
187
188 if (opt->values) {
189 g_slist_free_full(opt->values, (GDestroyNotify)g_variant_unref);
190 opt->values = NULL;
191 }
192 }
193}
194
195/**
196 * Create a new input instance using the specified input module.
197 *
198 * This function is used when a client wants to use a specific input
199 * module to parse a stream. No effort is made to identify the format.
200 *
0f3dbc95
BV
201 * @param options GHashTable consisting of keys corresponding with
202 * the module options \c id field. The values should be GVariant
203 * pointers with sunk references, of the same GVariantType as the option's
17bfaca6
BV
204 * default value.
205 *
206 * @since 0.4.0
207 */
208SR_API struct sr_input *sr_input_new(const struct sr_input_module *imod,
209 GHashTable *options)
210{
211 struct sr_input *in;
212 struct sr_option *mod_opts;
213 const GVariantType *gvt;
214 GHashTable *new_opts;
215 GHashTableIter iter;
216 gpointer key, value;
217 int i;
218
219 in = g_malloc0(sizeof(struct sr_input));
220 in->module = imod;
221
222 if (options) {
223 new_opts = g_hash_table_new_full(g_str_hash, g_str_equal, g_free,
224 (GDestroyNotify)g_variant_unref);
225 mod_opts = imod->options();
226 for (i = 0; mod_opts[i].id; i++) {
227 if (g_hash_table_lookup_extended(options, mod_opts[i].id,
228 &key, &value)) {
229 /* Option not given: insert the default value. */
230 gvt = g_variant_get_type(mod_opts[i].def);
231 if (!g_variant_is_of_type(value, gvt)) {
232 sr_err("Invalid type for '%s' option.", key);
233 g_free(in);
234 return NULL;
235 }
236 g_hash_table_insert(new_opts, g_strdup(mod_opts[i].id),
237 g_variant_ref(value));
238 } else {
239 /* Pass option along. */
240 g_hash_table_insert(new_opts, g_strdup(mod_opts[i].id),
241 g_variant_ref(mod_opts[i].def));
242 }
243 }
244
245 /* Make sure no invalid options were given. */
246 g_hash_table_iter_init(&iter, options);
247 while (g_hash_table_iter_next(&iter, &key, &value)) {
248 if (!g_hash_table_lookup(new_opts, key)) {
249 sr_err("Input module '%s' has no option '%s'", imod->id, key);
250 g_hash_table_destroy(new_opts);
251 g_free(in);
252 return NULL;
253 }
254 }
255 } else
256 new_opts = NULL;
257
258 if (in->module->init && in->module->init(in, new_opts) != SR_OK) {
259 g_hash_table_destroy(new_opts);
260 g_free(in);
261 in = NULL;
262 }
263 if (new_opts)
264 g_hash_table_destroy(new_opts);
265
266 return in;
267}
268
269/* Returns TRUE is all required meta items are available. */
270static gboolean check_required_metadata(const uint8_t *metadata, uint8_t *avail)
271{
272 int m, a;
273 uint8_t reqd;
274
275 for (m = 0; metadata[m]; m++) {
276 if (!metadata[m] & SR_INPUT_META_REQUIRED)
277 continue;
278 reqd = metadata[m] & ~SR_INPUT_META_REQUIRED;
279 for (a = 0; avail[a]; a++) {
280 if (avail[a] == reqd)
281 break;
282 }
283 if (!avail[a])
284 /* Found a required meta item that isn't available. */
285 return FALSE;
286 }
287
288 return TRUE;
289}
290
291/**
292 * Try to find an input module that can parse the given buffer.
293 *
294 * The buffer must contain enough of the beginning of the file for
295 * the input modules to find a match. This is format-dependent, but
296 * 128 bytes is normally enough.
297 *
298 * If an input module is found, an instance is created and returned.
299 * Otherwise, NULL is returned.
300 *
301 */
302SR_API const struct sr_input *sr_input_scan_buffer(GString *buf)
303{
304 struct sr_input *in;
305 const struct sr_input_module *imod;
306 GHashTable *meta;
307 unsigned int m, i;
308 uint8_t mitem, avail_metadata[8];
309
310 /* No more metadata to be had from a buffer. */
311 avail_metadata[0] = SR_INPUT_META_HEADER;
312 avail_metadata[1] = 0;
313
314 in = NULL;
315 for (i = 0; input_module_list[i]; i++) {
316 imod = input_module_list[i];
317 if (!imod->metadata[0]) {
318 /* Module has no metadata for matching so will take
319 * any input. No point in letting it try to match. */
320 continue;
321 }
322 if (!check_required_metadata(imod->metadata, avail_metadata))
323 /* Cannot satisfy this module's requirements. */
324 continue;
325
326 meta = g_hash_table_new(NULL, NULL);
327 for (m = 0; m < sizeof(imod->metadata); m++) {
328 mitem = imod->metadata[m] & ~SR_INPUT_META_REQUIRED;
329 if (mitem == SR_INPUT_META_HEADER)
330 g_hash_table_insert(meta, GINT_TO_POINTER(mitem), buf);
331 }
332 if (g_hash_table_size(meta) == 0) {
333 /* No metadata for this module, so nothing to match. */
334 g_hash_table_destroy(meta);
335 continue;
336 }
337 if (!imod->format_match(meta)) {
338 /* Module didn't recognize this buffer. */
339 g_hash_table_destroy(meta);
340 continue;
341 }
342 g_hash_table_destroy(meta);
343
344 /* Found a matching module. */
345 in = sr_input_new(imod, NULL);
346 in->buf = g_string_new_len(buf->str, buf->len);
347 break;
348 }
349
350 return in;
351}
352
353/**
354 * Try to find an input module that can parse the given file.
355 *
356 * If an input module is found, an instance is created and returned.
357 * Otherwise, NULL is returned.
358 *
359 */
360SR_API const struct sr_input *sr_input_scan_file(const char *filename)
361{
362 struct sr_input *in;
363 const struct sr_input_module *imod;
364 GHashTable *meta;
365 GString *buf;
366 struct stat st;
367 unsigned int midx, m, i;
368 int fd;
369 ssize_t size;
370 uint8_t mitem, avail_metadata[8];
371
372 if (!filename || !filename[0]) {
373 sr_err("Invalid filename.");
374 return NULL;
375 }
376
377 if (!g_file_test(filename, G_FILE_TEST_EXISTS)) {
378 sr_err("No such file.");
379 return NULL;
380 }
381
382 if (stat(filename, &st) < 0) {
383 sr_err("%s", strerror(errno));
384 return NULL;
385 }
386
387 midx = 0;
388 avail_metadata[midx++] = SR_INPUT_META_FILENAME;
389 avail_metadata[midx++] = SR_INPUT_META_FILESIZE;
390 avail_metadata[midx++] = SR_INPUT_META_HEADER;
391 /* TODO: MIME type */
392
393 in = NULL;
394 buf = NULL;
395 for (i = 0; input_module_list[i]; i++) {
396 imod = input_module_list[i];
397 if (!imod->metadata[0]) {
398 /* Module has no metadata for matching so will take
399 * any input. No point in letting it try to match. */
400 continue;
401 }
402 if (!check_required_metadata(imod->metadata, avail_metadata))
403 /* Cannot satisfy this module's requirements. */
404 continue;
405
406 meta = g_hash_table_new(NULL, NULL);
407 for (m = 0; m < sizeof(imod->metadata); m++) {
408 mitem = imod->metadata[m] & ~SR_INPUT_META_REQUIRED;
409 if (mitem == SR_INPUT_META_FILENAME)
410 g_hash_table_insert(meta, GINT_TO_POINTER(mitem),
411 (gpointer)filename);
412 else if (mitem == SR_INPUT_META_FILESIZE)
413 g_hash_table_insert(meta, GINT_TO_POINTER(mitem),
414 GINT_TO_POINTER(st.st_size));
415 else if (mitem == SR_INPUT_META_HEADER) {
416 buf = g_string_sized_new(128);
417 if ((fd = open(filename, O_RDONLY)) < 0) {
418 sr_err("%s", strerror(errno));
419 return NULL;
420 }
421 size = read(fd, buf->str, 128);
422 buf->len = size;
423 close(fd);
424 if (size <= 0) {
425 g_string_free(buf, TRUE);
426 sr_err("%s", strerror(errno));
427 return NULL;
428 }
429 g_hash_table_insert(meta, GINT_TO_POINTER(mitem), buf);
430 g_string_free(buf, TRUE);
431 }
432 }
433 if (g_hash_table_size(meta) == 0) {
434 /* No metadata for this module, so there's no way it
435 * can match. */
436 g_hash_table_destroy(meta);
437 continue;
438 }
439 if (!imod->format_match(meta))
440 /* Module didn't recognize this buffer. */
441 continue;
442
443 /* Found a matching module. */
444 in = sr_input_new(imod, NULL);
445 in->buf = g_string_new_len(buf->str, buf->len);
446 break;
447 }
448 if (!in && buf)
449 g_string_free(buf, TRUE);
450
451 return in;
452}
453
0f3dbc95
BV
454/**
455 * Return the input instance's (virtual) device instance. This can be
456 * used to find out the number of channels and other information.
457 *
458 * @since 0.4.0
459 */
17bfaca6
BV
460SR_API struct sr_dev_inst *sr_input_dev_inst_get(const struct sr_input *in)
461{
462 return in->sdi;
463}
464
465/**
466 * Send data to the specified input instance.
467 *
468 * When an input module instance is created with sr_input_new(), this
469 * function is used to feed data to the instance.
470 *
471 * @since 0.4.0
472 */
473SR_API int sr_input_send(const struct sr_input *in, GString *buf)
474{
475 return in->module->receive(in, buf);
476}
477
478/**
479 * Free the specified input instance and all associated resources.
480 *
481 * @since 0.4.0
482 */
483SR_API int sr_input_free(const struct sr_input *in)
484{
485 int ret;
486
487 if (!in)
488 return SR_ERR_ARG;
489
490 ret = SR_OK;
491 if (in->module->cleanup)
492 ret = in->module->cleanup((struct sr_input *)in);
493 if (in->buf)
494 g_string_free(in->buf, TRUE);
495 g_free((gpointer)in);
496
497 return ret;
498}
499
500
7b870c38 501/** @} */