]> sigrok.org Git - sigrok-cli.git/blame - decode.c
Add some missing headers.
[sigrok-cli.git] / decode.c
CommitLineData
2be182e6
BV
1/*
2 * This file is part of the sigrok-cli project.
3 *
4 * Copyright (C) 2013 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
142b5458
BV
20#include <stdlib.h>
21#include <string.h>
20fb52e0 22#include "sigrok-cli.h"
2be182e6
BV
23#include "config.h"
24#include <glib.h>
2be182e6
BV
25
26#ifdef HAVE_SRD
27static GHashTable *pd_ann_visible = NULL;
28static GHashTable *pd_meta_visible = NULL;
29static GHashTable *pd_binary_visible = NULL;
3dfbfbc8 30static GHashTable *pd_channel_maps = NULL;
2be182e6
BV
31
32extern struct srd_session *srd_sess;
33extern gint opt_loglevel;
2be182e6
BV
34
35
36static int opts_to_gvar(struct srd_decoder *dec, GHashTable *hash,
37 GHashTable **options)
38{
39 struct srd_decoder_option *o;
40 GSList *optl;
41 GVariant *gvar;
42 gint64 val_int;
43 int ret;
44 char *val_str, *conv;
45
46 ret = TRUE;
47 *options = g_hash_table_new_full(g_str_hash, g_str_equal, g_free,
48 (GDestroyNotify)g_variant_unref);
49
50 for (optl = dec->options; optl; optl = optl->next) {
51 o = optl->data;
52 if (!(val_str = g_hash_table_lookup(hash, o->id)))
53 /* Not specified. */
54 continue;
55 if (g_variant_is_of_type(o->def, G_VARIANT_TYPE_STRING)) {
56 gvar = g_variant_new_string(val_str);
57 } else if (g_variant_is_of_type(o->def, G_VARIANT_TYPE_INT64)) {
58 val_int = strtoll(val_str, &conv, 0);
59 if (!conv || conv == val_str) {
60 g_critical("Protocol decoder '%s' option '%s' "
61 "requires a number.", dec->name, o->id);
62 ret = FALSE;
63 break;
64 }
65 gvar = g_variant_new_int64(val_int);
66 } else {
67 g_critical("Unsupported type for option '%s' (%s)",
68 o->id, g_variant_get_type_string(o->def));
69 ret = FALSE;
70 break;
71 }
72 g_variant_ref_sink(gvar);
73 g_hash_table_insert(*options, g_strdup(o->id), gvar);
74 g_hash_table_remove(hash, o->id);
75 }
76
77 return ret;
78}
79
39aedc34 80static int move_hash_element(GHashTable *src, GHashTable *dest, void *key)
2be182e6 81{
39aedc34
DE
82 void *orig_key, *value;
83
84 if (!g_hash_table_lookup_extended(src, key, &orig_key, &value))
85 /* Not specified. */
86 return FALSE;
87 g_hash_table_steal(src, orig_key);
88 g_hash_table_insert(dest, orig_key, value);
89
90 return TRUE;
91}
92
3dfbfbc8 93static GHashTable *extract_channel_map(struct srd_decoder *dec, GHashTable *hash)
39aedc34 94{
3dfbfbc8
UH
95 GHashTable *channel_map;
96 struct srd_channel *pdch;
39aedc34 97 GSList *l;
2be182e6 98
3dfbfbc8 99 channel_map = g_hash_table_new_full(g_str_hash, g_str_equal,
39aedc34 100 g_free, g_free);
2be182e6 101
3dfbfbc8
UH
102 for (l = dec->channels; l; l = l->next) {
103 pdch = l->data;
104 move_hash_element(hash, channel_map, pdch->id);
39aedc34 105 }
3dfbfbc8
UH
106 for (l = dec->opt_channels; l; l = l->next) {
107 pdch = l->data;
108 move_hash_element(hash, channel_map, pdch->id);
2be182e6 109 }
2be182e6 110
3dfbfbc8 111 return channel_map;
2be182e6
BV
112}
113
114/* Register the given PDs for this session.
115 * Accepts a string of the form: "spi:sck=3:sdata=4,spi:sck=3:sdata=5"
116 * That will instantiate two SPI decoders on the clock but different data
117 * lines.
118 */
26c63758 119int register_pds(const char *opt_pds, char *opt_pd_annotations)
2be182e6
BV
120{
121 struct srd_decoder *dec;
3dfbfbc8 122 GHashTable *pd_opthash, *options, *channels;
2be182e6
BV
123 GList *leftover, *l;
124 struct srd_decoder_inst *di;
125 int ret;
126 char **pdtokens, **pdtok, *pd_name;
127
39aedc34
DE
128 pd_ann_visible = g_hash_table_new_full(g_str_hash, g_str_equal,
129 g_free, NULL);
2be182e6
BV
130 ret = 0;
131 pd_name = NULL;
3dfbfbc8 132 pd_opthash = options = channels = pd_channel_maps = NULL;
26c63758 133 pdtokens = g_strsplit(opt_pds, ",", 0);
2be182e6
BV
134 for (pdtok = pdtokens; *pdtok; pdtok++) {
135 if (!(pd_opthash = parse_generic_arg(*pdtok, TRUE))) {
136 g_critical("Invalid protocol decoder option '%s'.", *pdtok);
137 break;
138 }
139
140 pd_name = g_strdup(g_hash_table_lookup(pd_opthash, "sigrok_key"));
141 g_hash_table_remove(pd_opthash, "sigrok_key");
142 if (srd_decoder_load(pd_name) != SRD_OK) {
143 g_critical("Failed to load protocol decoder %s.", pd_name);
144 ret = 1;
145 break;
146 }
3a8ceb6a
BV
147 if (!(dec = srd_decoder_get_by_id(pd_name))) {
148 g_critical("Failed to get decoder %s by id.", pd_name);
149 ret = 1;
150 break;
151 }
2be182e6 152
3dfbfbc8 153 /* Convert decoder option and channel values to GVariant. */
2be182e6
BV
154 if (!opts_to_gvar(dec, pd_opthash, &options)) {
155 ret = 1;
156 break;
157 }
3dfbfbc8 158 channels = extract_channel_map(dec, pd_opthash);
39aedc34 159
2be182e6
BV
160 if (g_hash_table_size(pd_opthash) > 0) {
161 leftover = g_hash_table_get_keys(pd_opthash);
162 for (l = leftover; l; l = l->next)
3dfbfbc8 163 g_critical("Unknown option or channel '%s'", (char *)l->data);
2be182e6
BV
164 g_list_free(leftover);
165 break;
166 }
167
168 if (!(di = srd_inst_new(srd_sess, pd_name, options))) {
169 g_critical("Failed to instantiate protocol decoder %s.", pd_name);
170 ret = 1;
171 break;
172 }
173
09fea207 174 if (pdtok == pdtokens) {
3dfbfbc8
UH
175 /*
176 * Save the channel setup for later, but only on the
177 * first decoder (stacked decoders don't get channels).
178 */
179 pd_channel_maps = g_hash_table_new_full(g_str_hash,
09fea207 180 g_str_equal, g_free, (GDestroyNotify)g_hash_table_destroy);
3dfbfbc8
UH
181 g_hash_table_insert(pd_channel_maps, g_strdup(di->inst_id), channels);
182 channels = NULL;
09fea207 183 }
39aedc34 184
2be182e6
BV
185 /* If no annotation list was specified, add them all in now.
186 * This will be pared down later to leave only the last PD
187 * in the stack.
188 */
189 if (!opt_pd_annotations)
790b0261
BV
190 g_hash_table_insert(pd_ann_visible, g_strdup(di->inst_id),
191 g_slist_append(NULL, GINT_TO_POINTER(-1)));
2be182e6
BV
192 }
193
194 g_strfreev(pdtokens);
195 if (pd_opthash)
196 g_hash_table_destroy(pd_opthash);
197 if (options)
198 g_hash_table_destroy(options);
3dfbfbc8
UH
199 if (channels)
200 g_hash_table_destroy(channels);
2be182e6
BV
201 if (pd_name)
202 g_free(pd_name);
203
204 return ret;
205}
206
3dfbfbc8 207static void map_pd_inst_channels(void *key, void *value, void *user_data)
39aedc34 208{
3dfbfbc8
UH
209 GHashTable *channel_map;
210 GHashTable *channel_indices;
211 GSList *channel_list;
39aedc34
DE
212 struct srd_decoder_inst *di;
213 GVariant *var;
3dfbfbc8 214 void *channel_id;
029d73fe
UH
215 void *channel_target;
216 struct sr_channel *ch;
39aedc34 217 GHashTableIter iter;
029d73fe 218 int num_channels;
39aedc34 219
3dfbfbc8
UH
220 channel_map = value;
221 channel_list = user_data;
39aedc34
DE
222
223 di = srd_inst_find_by_id(srd_sess, key);
224 if (!di) {
225 g_critical("Protocol decoder instance \"%s\" not found.",
226 (char *)key);
227 return;
228 }
3dfbfbc8 229 channel_indices = g_hash_table_new_full(g_str_hash, g_str_equal, g_free,
39aedc34
DE
230 (GDestroyNotify)g_variant_unref);
231
3dfbfbc8
UH
232 g_hash_table_iter_init(&iter, channel_map);
233 while (g_hash_table_iter_next(&iter, &channel_id, &channel_target)) {
234 ch = find_channel(channel_list, channel_target);
029d73fe
UH
235 if (!ch) {
236 g_printerr("cli: No channel with name \"%s\" found.\n",
237 (char *)channel_target);
39aedc34
DE
238 continue;
239 }
029d73fe
UH
240 if (!ch->enabled)
241 g_printerr("cli: Target channel \"%s\" not enabled.\n",
242 (char *)channel_target);
39aedc34 243
029d73fe 244 var = g_variant_new_int32(ch->index);
39aedc34 245 g_variant_ref_sink(var);
3dfbfbc8 246 g_hash_table_insert(channel_indices, g_strdup(channel_id), var);
39aedc34
DE
247 }
248
3dfbfbc8
UH
249 num_channels = g_slist_length(channel_list);
250 srd_inst_channel_set_all(di, channel_indices, (num_channels + 7) / 8);
39aedc34
DE
251}
252
3dfbfbc8 253void map_pd_channels(struct sr_dev_inst *sdi)
39aedc34 254{
3dfbfbc8
UH
255 if (pd_channel_maps) {
256 g_hash_table_foreach(pd_channel_maps, &map_pd_inst_channels,
029d73fe 257 sdi->channels);
3dfbfbc8
UH
258 g_hash_table_destroy(pd_channel_maps);
259 pd_channel_maps = NULL;
39aedc34
DE
260 }
261}
262
26c63758 263int setup_pd_stack(char *opt_pds, char *opt_pd_stack, char *opt_pd_annotations)
2be182e6
BV
264{
265 struct srd_decoder_inst *di_from, *di_to;
266 int ret, i;
267 char **pds, **ids;
268
269 /* Set up the protocol decoder stack. */
270 pds = g_strsplit(opt_pds, ",", 0);
271 if (g_strv_length(pds) > 1) {
272 if (opt_pd_stack) {
273 /* A stack setup was specified, use that. */
274 g_strfreev(pds);
275 pds = g_strsplit(opt_pd_stack, ",", 0);
276 if (g_strv_length(pds) < 2) {
277 g_strfreev(pds);
278 g_critical("Specify at least two protocol decoders to stack.");
279 return 1;
280 }
281 }
282
283 /* First PD goes at the bottom of the stack. */
284 ids = g_strsplit(pds[0], ":", 0);
285 if (!(di_from = srd_inst_find_by_id(srd_sess, ids[0]))) {
286 g_strfreev(ids);
287 g_critical("Cannot stack protocol decoder '%s': "
288 "instance not found.", pds[0]);
289 return 1;
290 }
291 g_strfreev(ids);
292
293 /* Every subsequent PD goes on top. */
294 for (i = 1; pds[i]; i++) {
295 ids = g_strsplit(pds[i], ":", 0);
296 if (!(di_to = srd_inst_find_by_id(srd_sess, ids[0]))) {
297 g_strfreev(ids);
298 g_critical("Cannot stack protocol decoder '%s': "
299 "instance not found.", pds[i]);
300 return 1;
301 }
302 g_strfreev(ids);
303 if ((ret = srd_inst_stack(srd_sess, di_from, di_to)) != SRD_OK)
304 return 1;
305
306 /* Don't show annotation from this PD. Only the last PD in
307 * the stack will be left on the annotation list (unless
308 * the annotation list was specifically provided).
309 */
310 if (!opt_pd_annotations)
790b0261 311 g_hash_table_remove(pd_ann_visible, di_from->inst_id);
2be182e6
BV
312
313 di_from = di_to;
314 }
315 }
316 g_strfreev(pds);
317
318 return 0;
319}
320
26c63758 321int setup_pd_annotations(char *opt_pd_annotations)
2be182e6 322{
790b0261 323 GSList *l, *l_ann;
2be182e6
BV
324 struct srd_decoder *dec;
325 int ann_class;
790b0261 326 char **pds, **pdtok, **keyval, **annlist, **ann, **ann_descr;
2be182e6
BV
327
328 /* Set up custom list of PDs and annotations to show. */
329 pds = g_strsplit(opt_pd_annotations, ",", 0);
330 for (pdtok = pds; *pdtok && **pdtok; pdtok++) {
331 keyval = g_strsplit(*pdtok, "=", 0);
332 if (!(dec = srd_decoder_get_by_id(keyval[0]))) {
333 g_critical("Protocol decoder '%s' not found.", keyval[0]);
334 return 1;
335 }
336 if (!dec->annotations) {
337 g_critical("Protocol decoder '%s' has no annotations.", keyval[0]);
338 return 1;
339 }
790b0261
BV
340 if (g_strv_length(keyval) == 2 && keyval[1][0] != '\0') {
341 annlist = g_strsplit(keyval[1], ":", 0);
342 for (ann = annlist; *ann && **ann; ann++) {
343 ann_class = 0;
344 for (l = dec->annotations; l; l = l->next, ann_class++) {
345 ann_descr = l->data;
346 if (!canon_cmp(ann_descr[0], *ann))
347 /* Found it. */
348 break;
349 }
350 if (!l) {
351 g_critical("Annotation '%s' not found "
352 "for protocol decoder '%s'.", *ann, keyval[0]);
353 return 1;
354 }
355 l_ann = g_hash_table_lookup(pd_ann_visible, keyval[0]);
356 l_ann = g_slist_append(l_ann, GINT_TO_POINTER(ann_class));
357 g_hash_table_replace(pd_ann_visible, g_strdup(keyval[0]), l_ann);
358 g_debug("cli: Showing protocol decoder %s annotation "
359 "class %d (%s).", keyval[0], ann_class, ann_descr[0]);
2be182e6 360 }
2be182e6
BV
361 } else {
362 /* No class specified: show all of them. */
790b0261
BV
363 g_hash_table_insert(pd_ann_visible, g_strdup(keyval[0]),
364 g_slist_append(NULL, GINT_TO_POINTER(-1)));
2be182e6
BV
365 g_debug("cli: Showing all annotation classes for protocol "
366 "decoder %s.", keyval[0]);
367 }
2be182e6
BV
368 g_strfreev(keyval);
369 }
370 g_strfreev(pds);
371
372 return 0;
373}
374
26c63758 375int setup_pd_meta(char *opt_pd_meta)
2be182e6
BV
376{
377 struct srd_decoder *dec;
378 char **pds, **pdtok;
379
380 pd_meta_visible = g_hash_table_new_full(g_str_hash, g_int_equal,
381 g_free, NULL);
382 pds = g_strsplit(opt_pd_meta, ",", 0);
383 for (pdtok = pds; *pdtok && **pdtok; pdtok++) {
384 if (!(dec = srd_decoder_get_by_id(*pdtok))) {
385 g_critical("Protocol decoder '%s' not found.", *pdtok);
386 return 1;
387 }
388 g_debug("cli: Showing protocol decoder meta output from '%s'.", *pdtok);
389 g_hash_table_insert(pd_meta_visible, g_strdup(*pdtok), NULL);
390 }
391 g_strfreev(pds);
392
393 return 0;
394}
395
26c63758 396int setup_pd_binary(char *opt_pd_binary)
2be182e6
BV
397{
398 GSList *l;
399 struct srd_decoder *dec;
400 int bin_class;
5ff52594 401 char **pds, **pdtok, **keyval, **bin_name;
2be182e6
BV
402
403 pd_binary_visible = g_hash_table_new_full(g_str_hash, g_int_equal,
404 g_free, NULL);
405 pds = g_strsplit(opt_pd_binary, ",", 0);
406 for (pdtok = pds; *pdtok && **pdtok; pdtok++) {
407 keyval = g_strsplit(*pdtok, "=", 0);
408 if (!(dec = srd_decoder_get_by_id(keyval[0]))) {
409 g_critical("Protocol decoder '%s' not found.", keyval[0]);
410 return 1;
411 }
412 if (!dec->binary) {
413 g_critical("Protocol decoder '%s' has no binary output.", keyval[0]);
414 return 1;
415 }
416 bin_class = 0;
417 if (g_strv_length(keyval) == 2) {
418 for (l = dec->binary; l; l = l->next, bin_class++) {
419 bin_name = l->data;
5ff52594 420 if (!strcmp(bin_name[0], keyval[1]))
2be182e6
BV
421 /* Found it. */
422 break;
423 }
424 if (!l) {
425 g_critical("binary output '%s' not found "
426 "for protocol decoder '%s'.", keyval[1], keyval[0]);
427 return 1;
428 }
429 g_debug("cli: Showing protocol decoder %s binary class "
5ff52594 430 "%d (%s).", keyval[0], bin_class, bin_name[0]);
2be182e6
BV
431 } else {
432 /* No class specified: output all of them. */
433 bin_class = -1;
434 g_debug("cli: Showing all binary classes for protocol "
435 "decoder %s.", keyval[0]);
436 }
437 g_hash_table_insert(pd_binary_visible, g_strdup(keyval[0]), GINT_TO_POINTER(bin_class));
438 g_strfreev(keyval);
439 }
440 g_strfreev(pds);
441
442 return 0;
443}
444
445void show_pd_annotations(struct srd_proto_data *pdata, void *cb_data)
446{
6fdcc67d 447 struct srd_decoder *dec;
2be182e6 448 struct srd_proto_data_annotation *pda;
790b0261
BV
449 GSList *ann_list, *l;
450 int i;
6fdcc67d 451 char **ann_descr;
790b0261 452 gboolean show;
2be182e6
BV
453
454 /* 'cb_data' is not used in this specific callback. */
455 (void)cb_data;
456
457 if (!pd_ann_visible)
458 return;
459
460 if (!g_hash_table_lookup_extended(pd_ann_visible, pdata->pdo->di->inst_id,
790b0261 461 NULL, (void **)&ann_list))
2be182e6
BV
462 /* Not in the list of PDs whose annotations we're showing. */
463 return;
464
6fdcc67d 465 dec = pdata->pdo->di->decoder;
2be182e6 466 pda = pdata->data;
790b0261
BV
467 show = FALSE;
468 for (l = ann_list; l; l = l->next) {
469 if (GPOINTER_TO_INT(l->data) == -1
470 || GPOINTER_TO_INT(l->data) == pda->ann_format) {
471 show = TRUE;
472 break;
473 }
474 }
475 if (!show)
2be182e6
BV
476 return;
477
6fdcc67d
BV
478 if (opt_loglevel <= SR_LOG_WARN) {
479 /* Show only the longest annotation. */
6d1dbe35 480 printf("%s", pda->ann_text[0]);
6fdcc67d
BV
481 } else if (opt_loglevel >= SR_LOG_INFO) {
482 /* Sample numbers and quotes around the longest annotation. */
6d1dbe35 483 printf("%"PRIu64"-%"PRIu64"", pdata->start_sample, pdata->end_sample);
6fdcc67d 484 if (opt_loglevel == SR_LOG_INFO) {
6d1dbe35 485 printf(" \"%s\"", pda->ann_text[0]);
6fdcc67d
BV
486 } else {
487 /* Protocol decoder id, annotation class,
488 * all annotation strings. */
489 ann_descr = g_slist_nth_data(dec->annotations, pda->ann_format);
6d1dbe35 490 printf(" %s: %s:", pdata->pdo->proto_id, ann_descr[0]);
6fdcc67d 491 for (i = 0; pda->ann_text[i]; i++)
6d1dbe35 492 printf(" \"%s\"", pda->ann_text[i]);
6fdcc67d
BV
493 }
494 }
2be182e6
BV
495 printf("\n");
496 fflush(stdout);
497}
498
499void show_pd_meta(struct srd_proto_data *pdata, void *cb_data)
500{
501
502 /* 'cb_data' is not used in this specific callback. */
503 (void)cb_data;
504
505 if (!g_hash_table_lookup_extended(pd_meta_visible,
506 pdata->pdo->di->decoder->id, NULL, NULL))
507 /* Not in the list of PDs whose meta output we're showing. */
508 return;
509
510 if (opt_loglevel > SR_LOG_WARN)
511 printf("%"PRIu64"-%"PRIu64" ", pdata->start_sample, pdata->end_sample);
512 printf("%s: ", pdata->pdo->proto_id);
513 printf("%s: %s", pdata->pdo->meta_name, g_variant_print(pdata->data, FALSE));
514 printf("\n");
515 fflush(stdout);
516}
517
518void show_pd_binary(struct srd_proto_data *pdata, void *cb_data)
519{
520 struct srd_proto_data_binary *pdb;
521 gpointer classp;
522 int class;
523
524 /* 'cb_data' is not used in this specific callback. */
525 (void)cb_data;
526
527 if (!g_hash_table_lookup_extended(pd_binary_visible,
528 pdata->pdo->di->decoder->id, NULL, (void **)&classp))
529 /* Not in the list of PDs whose meta output we're showing. */
530 return;
531
532 class = GPOINTER_TO_INT(classp);
533 pdb = pdata->data;
534 if (class != -1 && class != pdb->bin_class)
535 /* Not showing this binary class. */
536 return;
537
538 /* Just send the binary output to stdout, no embellishments. */
539 fwrite(pdb->data, pdb->size, 1, stdout);
540 fflush(stdout);
541}
542#endif
543