2 * This file is part of the sigrok-cli project.
4 * Copyright (C) 2013 Bert Vermeulen <bert@biot.com>
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.
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.
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/>.
24 #include "sigrok-cli.h"
27 static GHashTable
*pd_ann_visible
= NULL
;
28 static GHashTable
*pd_meta_visible
= NULL
;
29 static GHashTable
*pd_binary_visible
= NULL
;
30 static GHashTable
*pd_channel_maps
= NULL
;
32 extern struct srd_session
*srd_sess
;
34 static int opts_to_gvar(struct srd_decoder
*dec
, GHashTable
*hash
,
37 struct srd_decoder_option
*o
;
46 *options
= g_hash_table_new_full(g_str_hash
, g_str_equal
, g_free
,
47 (GDestroyNotify
)g_variant_unref
);
49 for (optl
= dec
->options
; optl
; optl
= optl
->next
) {
51 if (!(val_str
= g_hash_table_lookup(hash
, o
->id
)))
54 if (g_variant_is_of_type(o
->def
, G_VARIANT_TYPE_STRING
)) {
55 gvar
= g_variant_new_string(val_str
);
56 } 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
|| *conv
) {
60 g_critical("Protocol decoder '%s' option '%s' "
61 "requires a number.", dec
->name
, o
->id
);
65 gvar
= g_variant_new_int64(val_int
);
66 } else if (g_variant_is_of_type(o
->def
, G_VARIANT_TYPE_DOUBLE
)) {
68 val_dbl
= strtod(val_str
, &conv
);
69 if (!conv
|| conv
== val_str
|| *conv
) {
70 g_critical("Protocol decoder '%s' option '%s' requires a float number.",
75 gvar
= g_variant_new_double(val_dbl
);
77 g_critical("Unsupported type for option '%s' (%s)",
78 o
->id
, g_variant_get_type_string(o
->def
));
82 g_variant_ref_sink(gvar
);
83 g_hash_table_insert(*options
, g_strdup(o
->id
), gvar
);
84 g_hash_table_remove(hash
, o
->id
);
90 static int move_hash_element(GHashTable
*src
, GHashTable
*dest
, void *key
)
92 void *orig_key
, *value
;
94 if (!g_hash_table_lookup_extended(src
, key
, &orig_key
, &value
))
97 g_hash_table_steal(src
, orig_key
);
98 g_hash_table_insert(dest
, orig_key
, value
);
103 static GHashTable
*extract_channel_map(struct srd_decoder
*dec
, GHashTable
*hash
)
105 GHashTable
*channel_map
;
106 struct srd_channel
*pdch
;
109 channel_map
= g_hash_table_new_full(g_str_hash
, g_str_equal
,
112 for (l
= dec
->channels
; l
; l
= l
->next
) {
114 move_hash_element(hash
, channel_map
, pdch
->id
);
116 for (l
= dec
->opt_channels
; l
; l
= l
->next
) {
118 move_hash_element(hash
, channel_map
, pdch
->id
);
124 static int register_pd(char *opt_pds
, char *opt_pd_annotations
)
127 struct srd_decoder
*dec
;
128 struct srd_decoder_inst
*di
, *di_prior
;
129 char **pdtokens
, **pdtok
, *pd_name
;
130 GHashTable
*pd_opthash
, *options
, *channels
;
136 pd_opthash
= options
= channels
= NULL
;
138 pdtokens
= g_strsplit(opt_pds
, ",", 0);
139 for (pdtok
= pdtokens
; *pdtok
; pdtok
++) {
140 if (!(pd_opthash
= parse_generic_arg(*pdtok
, TRUE
))) {
141 g_critical("Invalid protocol decoder option '%s'.", *pdtok
);
145 pd_name
= g_strdup(g_hash_table_lookup(pd_opthash
, "sigrok_key"));
146 g_hash_table_remove(pd_opthash
, "sigrok_key");
147 if (srd_decoder_load(pd_name
) != SRD_OK
) {
148 g_critical("Failed to load protocol decoder %s.", pd_name
);
152 if (!(dec
= srd_decoder_get_by_id(pd_name
))) {
153 g_critical("Failed to get decoder %s by id.", pd_name
);
158 /* Convert decoder option and channel values to GVariant. */
159 if (!opts_to_gvar(dec
, pd_opthash
, &options
)) {
163 channels
= extract_channel_map(dec
, pd_opthash
);
165 if (g_hash_table_size(pd_opthash
) > 0) {
166 leftover
= g_hash_table_get_keys(pd_opthash
);
167 for (l
= leftover
; l
; l
= l
->next
)
168 g_critical("Unknown option or channel '%s'", (char *)l
->data
);
169 g_list_free(leftover
);
173 if (!(di
= srd_inst_new(srd_sess
, pd_name
, options
))) {
174 g_critical("Failed to instantiate protocol decoder %s.", pd_name
);
179 if (pdtok
== pdtokens
) {
181 * Save the channel setup for later, but only on the
182 * first decoder (stacked decoders don't get channels).
184 g_hash_table_insert(pd_channel_maps
, g_strdup(di
->inst_id
), channels
);
189 * If no annotation list was specified, add them all in now.
190 * This will be pared down later to leave only the last PD
193 if (!opt_pd_annotations
) {
194 g_hash_table_insert(pd_ann_visible
, g_strdup(di
->decoder
->id
),
195 g_slist_append(NULL
, GINT_TO_POINTER(-1)));
198 if (srd_inst_stack(srd_sess
, di_prior
, di
) != SRD_OK
) {
199 g_critical("Failed to stack %s -> %s.",
200 di_prior
->inst_id
, di
->inst_id
);
204 /* Remove annotations from prior levels. */
205 if (!opt_pd_annotations
)
206 g_hash_table_remove(pd_ann_visible
, di_prior
->inst_id
);
210 g_hash_table_destroy(pd_opthash
);
211 g_hash_table_destroy(options
);
212 pd_opthash
= options
= NULL
;
216 g_hash_table_destroy(pd_opthash
);
218 g_hash_table_destroy(options
);
220 g_hash_table_destroy(channels
);
222 g_strfreev(pdtokens
);
228 * Register all the PDs from all stacks.
230 * Each PD string is a single stack such as "uart:baudrate=19200,modbus".
232 int register_pds(gchar
**all_pds
, char *opt_pd_annotations
)
237 pd_ann_visible
= g_hash_table_new_full(g_str_hash
, g_str_equal
,
239 pd_channel_maps
= g_hash_table_new_full(g_str_hash
,
240 g_str_equal
, g_free
, (GDestroyNotify
)g_hash_table_destroy
);
242 for (int i
= 0; all_pds
[i
]; i
++)
243 ret
+= register_pd(all_pds
[i
], opt_pd_annotations
);
248 static void map_pd_inst_channels(void *key
, void *value
, void *user_data
)
250 GHashTable
*channel_map
;
251 GHashTable
*channel_indices
;
252 GSList
*channel_list
;
253 struct srd_decoder_inst
*di
;
256 void *channel_target
;
257 struct sr_channel
*ch
;
261 channel_list
= user_data
;
263 di
= srd_inst_find_by_id(srd_sess
, key
);
265 g_critical("Protocol decoder instance \"%s\" not found.",
269 channel_indices
= g_hash_table_new_full(g_str_hash
, g_str_equal
, g_free
,
270 (GDestroyNotify
)g_variant_unref
);
272 g_hash_table_iter_init(&iter
, channel_map
);
273 while (g_hash_table_iter_next(&iter
, &channel_id
, &channel_target
)) {
274 ch
= find_channel(channel_list
, channel_target
);
276 g_printerr("cli: No channel with name \"%s\" found.\n",
277 (char *)channel_target
);
281 g_printerr("cli: Target channel \"%s\" not enabled.\n",
282 (char *)channel_target
);
284 var
= g_variant_new_int32(ch
->index
);
285 g_variant_ref_sink(var
);
286 g_hash_table_insert(channel_indices
, g_strdup(channel_id
), var
);
289 srd_inst_channel_set_all(di
, channel_indices
);
290 g_hash_table_destroy(channel_indices
);
293 void map_pd_channels(struct sr_dev_inst
*sdi
)
297 channels
= sr_dev_inst_channels_get(sdi
);
299 if (pd_channel_maps
) {
300 g_hash_table_foreach(pd_channel_maps
, &map_pd_inst_channels
,
302 g_hash_table_destroy(pd_channel_maps
);
303 pd_channel_maps
= NULL
;
307 int setup_pd_annotations(char *opt_pd_annotations
)
310 struct srd_decoder
*dec
;
312 char **pds
, **pdtok
, **keyval
, **annlist
, **ann
, **ann_descr
;
316 const struct srd_decoder_annotation_row
*row_desc
;
319 /* Set up custom list of PDs and annotations to show. */
320 pds
= g_strsplit(opt_pd_annotations
, ",", 0);
321 for (pdtok
= pds
; *pdtok
&& **pdtok
; pdtok
++) {
322 keyval
= g_strsplit(*pdtok
, "=", 0);
324 if (!(dec
= srd_decoder_get_by_id(dec_id
))) {
325 g_critical("Protocol decoder '%s' not found.", dec_id
);
330 if (!dec
->annotations
) {
331 g_critical("Protocol decoder '%s' has no annotations.", dec_id
);
336 ann_txt
= (g_strv_length(keyval
) == 2) ? keyval
[1] : NULL
;
337 if (ann_txt
&& *ann_txt
) {
338 annlist
= g_strsplit(ann_txt
, ":", 0);
339 for (ann
= annlist
; *ann
&& **ann
; ann
++) {
341 g_debug("cli: Lookup decoder %s annotation %s.", dec_id
, ann_id
);
342 /* Lookup annotation class. */
344 for (l
= dec
->annotations
; l
; l
= l
->next
, ann_class
++) {
346 if (!canon_cmp(ann_descr
[0], ann_id
))
351 l_ann
= g_hash_table_lookup(pd_ann_visible
, dec_id
);
352 l_ann
= g_slist_append(l_ann
, GINT_TO_POINTER(ann_class
));
353 g_hash_table_replace(pd_ann_visible
, g_strdup(dec_id
), l_ann
);
354 g_debug("cli: Showing protocol decoder %s annotation "
355 "class %d (%s).", dec_id
, ann_class
, ann_descr
[0]);
358 /* Lookup annotation row. */
359 for (l
= dec
->annotation_rows
; l
; l
= l
->next
) {
361 if (!canon_cmp(row_desc
->id
, ann_id
))
365 g_debug("cli: Showing decoder %s annotation row %s (%s).",
366 dec_id
, row_desc
->id
, row_desc
->desc
);
367 l_ann
= g_hash_table_lookup(pd_ann_visible
, dec_id
);
368 for (l
= row_desc
->ann_classes
; l
; l
= l
->next
) {
370 * This could just be:
371 * l_ann = g_slist_append(l_ann, l->data);
372 * But we are explicit for readability
373 * and to access details for diagnostics.
375 ann_class
= GPOINTER_TO_INT(l
->data
);
376 l_ann
= g_slist_append(l_ann
, GINT_TO_POINTER(ann_class
));
377 ann_diag
= g_slist_nth_data(dec
->annotations
, ann_class
);
378 g_debug("cli: Adding class %d/%s from row %s.",
379 ann_class
, ann_diag
[0], row_desc
->id
);
381 g_hash_table_replace(pd_ann_visible
, g_strdup(dec_id
), l_ann
);
384 /* No match found. */
385 g_critical("Annotation '%s' not found "
386 "for protocol decoder '%s'.", ann_id
, dec_id
);
392 /* No class specified: show all of them. */
394 l_ann
= g_slist_append(NULL
, GINT_TO_POINTER(ann_class
));
395 g_hash_table_insert(pd_ann_visible
, g_strdup(dec_id
), l_ann
);
396 g_debug("cli: Showing all annotation classes for protocol "
397 "decoder %s.", dec_id
);
406 int setup_pd_meta(char *opt_pd_meta
)
408 struct srd_decoder
*dec
;
411 pd_meta_visible
= g_hash_table_new_full(g_str_hash
, g_int_equal
,
413 pds
= g_strsplit(opt_pd_meta
, ",", 0);
414 for (pdtok
= pds
; *pdtok
&& **pdtok
; pdtok
++) {
415 if (!(dec
= srd_decoder_get_by_id(*pdtok
))) {
416 g_critical("Protocol decoder '%s' not found.", *pdtok
);
419 g_debug("cli: Showing protocol decoder meta output from '%s'.", *pdtok
);
420 g_hash_table_insert(pd_meta_visible
, g_strdup(*pdtok
), NULL
);
427 int setup_pd_binary(char *opt_pd_binary
)
430 struct srd_decoder
*dec
;
432 char **pds
, **pdtok
, **keyval
, **bin_name
;
434 pd_binary_visible
= g_hash_table_new_full(g_str_hash
, g_int_equal
,
436 pds
= g_strsplit(opt_pd_binary
, ",", 0);
437 for (pdtok
= pds
; *pdtok
&& **pdtok
; pdtok
++) {
438 keyval
= g_strsplit(*pdtok
, "=", 0);
439 if (!(dec
= srd_decoder_get_by_id(keyval
[0]))) {
440 g_critical("Protocol decoder '%s' not found.", keyval
[0]);
444 g_critical("Protocol decoder '%s' has no binary output.", keyval
[0]);
448 if (g_strv_length(keyval
) == 2) {
449 for (l
= dec
->binary
; l
; l
= l
->next
, bin_class
++) {
451 if (!strcmp(bin_name
[0], keyval
[1]))
456 g_critical("binary output '%s' not found "
457 "for protocol decoder '%s'.", keyval
[1], keyval
[0]);
460 g_debug("cli: Showing protocol decoder %s binary class "
461 "%d (%s).", keyval
[0], bin_class
, bin_name
[0]);
463 /* No class specified: output all of them. */
465 g_debug("cli: Showing all binary classes for protocol "
466 "decoder %s.", keyval
[0]);
468 g_hash_table_insert(pd_binary_visible
, g_strdup(keyval
[0]), GINT_TO_POINTER(bin_class
));
476 void show_pd_annotations(struct srd_proto_data
*pdata
, void *cb_data
)
478 struct srd_decoder
*dec
;
479 struct srd_proto_data_annotation
*pda
;
480 GSList
*ann_list
, *l
;
483 gboolean show_ann
, show_snum
, show_class
, show_quotes
, show_abbrev
;
491 if (!g_hash_table_lookup_extended(pd_ann_visible
, pdata
->pdo
->di
->decoder
->id
,
492 NULL
, (void **)&ann_list
)) {
493 /* Not in the list of PDs whose annotations we're showing. */
497 dec
= pdata
->pdo
->di
->decoder
;
500 for (l
= ann_list
; l
; l
= l
->next
) {
501 if (GPOINTER_TO_INT(l
->data
) == -1
502 || GPOINTER_TO_INT(l
->data
) == pda
->ann_class
) {
511 * Determine which fields of the annotation to display. Inspect
512 * user specified options as well as the verbosity of the log level:
513 * - Optionally show the sample numbers for the annotation's span.
514 * - Always show the protocol decoder ID.
515 * - Optionally show the annotation's class description.
516 * - Always show the longest annotation text.
517 * - Optionally show alternative annotation text (abbreviations
518 * for different zoom levels).
519 * - Optionally put quote marks around annotation text, when
520 * recipients might have to deal with a set of text variants.
522 show_snum
= show_class
= show_quotes
= show_abbrev
= FALSE
;
523 if (opt_pd_samplenum
|| opt_loglevel
> SR_LOG_WARN
) {
526 if (opt_loglevel
> SR_LOG_WARN
) {
529 if (opt_loglevel
> SR_LOG_INFO
) {
535 * Display the annotation's fields after the layout was
539 printf("%" PRIu64
"-%" PRIu64
" ",
540 pdata
->start_sample
, pdata
->end_sample
);
542 printf("%s: ", pdata
->pdo
->proto_id
);
544 ann_descr
= g_slist_nth_data(dec
->annotations
, pda
->ann_class
);
545 printf("%s: ", ann_descr
[0]);
547 quote
= show_quotes
? "\"" : "";
548 printf("%s%s%s", quote
, pda
->ann_text
[0], quote
);
550 for (i
= 1; pda
->ann_text
[i
]; i
++)
551 printf(" %s%s%s", quote
, pda
->ann_text
[i
], quote
);
557 void show_pd_meta(struct srd_proto_data
*pdata
, void *cb_data
)
561 if (!g_hash_table_lookup_extended(pd_meta_visible
,
562 pdata
->pdo
->di
->decoder
->id
, NULL
, NULL
))
563 /* Not in the list of PDs whose meta output we're showing. */
566 if (opt_pd_samplenum
|| opt_loglevel
> SR_LOG_WARN
)
567 printf("%"PRIu64
"-%"PRIu64
" ", pdata
->start_sample
, pdata
->end_sample
);
568 printf("%s: ", pdata
->pdo
->proto_id
);
569 printf("%s: %s", pdata
->pdo
->meta_name
, g_variant_print(pdata
->data
, FALSE
));
574 void show_pd_binary(struct srd_proto_data
*pdata
, void *cb_data
)
576 struct srd_proto_data_binary
*pdb
;
582 if (!g_hash_table_lookup_extended(pd_binary_visible
,
583 pdata
->pdo
->di
->decoder
->id
, NULL
, (void **)&classp
))
584 /* Not in the list of PDs whose meta output we're showing. */
587 classi
= GPOINTER_TO_INT(classp
);
589 if (classi
!= -1 && classi
!= pdb
->bin_class
)
590 /* Not showing this binary class. */
593 /* Just send the binary output to stdout, no embellishments. */
594 fwrite(pdb
->data
, pdb
->size
, 1, stdout
);