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
)) {
57 val_int
= strtoll(val_str
, &conv
, 0);
58 if (!conv
|| conv
== val_str
) {
59 g_critical("Protocol decoder '%s' option '%s' "
60 "requires a number.", dec
->name
, o
->id
);
64 gvar
= g_variant_new_int64(val_int
);
65 } else if (g_variant_is_of_type(o
->def
, G_VARIANT_TYPE_DOUBLE
)) {
67 val_dbl
= strtod(val_str
, &conv
);
68 if (!conv
|| conv
== val_str
|| *conv
) {
69 g_critical("Protocol decoder '%s' option '%s' requires a float number.",
74 gvar
= g_variant_new_double(val_dbl
);
76 g_critical("Unsupported type for option '%s' (%s)",
77 o
->id
, g_variant_get_type_string(o
->def
));
81 g_variant_ref_sink(gvar
);
82 g_hash_table_insert(*options
, g_strdup(o
->id
), gvar
);
83 g_hash_table_remove(hash
, o
->id
);
89 static int move_hash_element(GHashTable
*src
, GHashTable
*dest
, void *key
)
91 void *orig_key
, *value
;
93 if (!g_hash_table_lookup_extended(src
, key
, &orig_key
, &value
))
96 g_hash_table_steal(src
, orig_key
);
97 g_hash_table_insert(dest
, orig_key
, value
);
102 static GHashTable
*extract_channel_map(struct srd_decoder
*dec
, GHashTable
*hash
)
104 GHashTable
*channel_map
;
105 struct srd_channel
*pdch
;
108 channel_map
= g_hash_table_new_full(g_str_hash
, g_str_equal
,
111 for (l
= dec
->channels
; l
; l
= l
->next
) {
113 move_hash_element(hash
, channel_map
, pdch
->id
);
115 for (l
= dec
->opt_channels
; l
; l
= l
->next
) {
117 move_hash_element(hash
, channel_map
, pdch
->id
);
123 static int register_pd(char *opt_pds
, char *opt_pd_annotations
)
126 struct srd_decoder
*dec
;
127 struct srd_decoder_inst
*di
, *di_prior
;
128 char **pdtokens
, **pdtok
, *pd_name
;
129 GHashTable
*pd_opthash
, *options
, *channels
;
135 pd_opthash
= options
= channels
= NULL
;
137 pdtokens
= g_strsplit(opt_pds
, ",", 0);
138 for (pdtok
= pdtokens
; *pdtok
; pdtok
++) {
139 if (!(pd_opthash
= parse_generic_arg(*pdtok
, TRUE
))) {
140 g_critical("Invalid protocol decoder option '%s'.", *pdtok
);
144 pd_name
= g_strdup(g_hash_table_lookup(pd_opthash
, "sigrok_key"));
145 g_hash_table_remove(pd_opthash
, "sigrok_key");
146 if (srd_decoder_load(pd_name
) != SRD_OK
) {
147 g_critical("Failed to load protocol decoder %s.", pd_name
);
151 if (!(dec
= srd_decoder_get_by_id(pd_name
))) {
152 g_critical("Failed to get decoder %s by id.", pd_name
);
157 /* Convert decoder option and channel values to GVariant. */
158 if (!opts_to_gvar(dec
, pd_opthash
, &options
)) {
162 channels
= extract_channel_map(dec
, pd_opthash
);
164 if (g_hash_table_size(pd_opthash
) > 0) {
165 leftover
= g_hash_table_get_keys(pd_opthash
);
166 for (l
= leftover
; l
; l
= l
->next
)
167 g_critical("Unknown option or channel '%s'", (char *)l
->data
);
168 g_list_free(leftover
);
172 if (!(di
= srd_inst_new(srd_sess
, pd_name
, options
))) {
173 g_critical("Failed to instantiate protocol decoder %s.", pd_name
);
178 if (pdtok
== pdtokens
) {
180 * Save the channel setup for later, but only on the
181 * first decoder (stacked decoders don't get channels).
183 g_hash_table_insert(pd_channel_maps
, g_strdup(di
->inst_id
), channels
);
188 * If no annotation list was specified, add them all in now.
189 * This will be pared down later to leave only the last PD
192 if (!opt_pd_annotations
) {
193 g_hash_table_insert(pd_ann_visible
, g_strdup(di
->decoder
->id
),
194 g_slist_append(NULL
, GINT_TO_POINTER(-1)));
197 if (srd_inst_stack(srd_sess
, di_prior
, di
) != SRD_OK
) {
198 g_critical("Failed to stack %s -> %s.",
199 di_prior
->inst_id
, di
->inst_id
);
203 /* Remove annotations from prior levels. */
204 if (!opt_pd_annotations
)
205 g_hash_table_remove(pd_ann_visible
, di_prior
->inst_id
);
209 g_hash_table_destroy(pd_opthash
);
210 g_hash_table_destroy(options
);
211 pd_opthash
= options
= NULL
;
215 g_hash_table_destroy(pd_opthash
);
217 g_hash_table_destroy(options
);
219 g_hash_table_destroy(channels
);
221 g_strfreev(pdtokens
);
227 * Register all the PDs from all stacks.
229 * Each PD string is a single stack such as "uart:baudrate=19200,modbus".
231 int register_pds(gchar
**all_pds
, char *opt_pd_annotations
)
236 pd_ann_visible
= g_hash_table_new_full(g_str_hash
, g_str_equal
,
238 pd_channel_maps
= g_hash_table_new_full(g_str_hash
,
239 g_str_equal
, g_free
, (GDestroyNotify
)g_hash_table_destroy
);
241 for (int i
= 0; all_pds
[i
]; i
++)
242 ret
+= register_pd(all_pds
[i
], opt_pd_annotations
);
247 static void map_pd_inst_channels(void *key
, void *value
, void *user_data
)
249 GHashTable
*channel_map
;
250 GHashTable
*channel_indices
;
251 GSList
*channel_list
;
252 struct srd_decoder_inst
*di
;
255 void *channel_target
;
256 struct sr_channel
*ch
;
260 channel_list
= user_data
;
262 di
= srd_inst_find_by_id(srd_sess
, key
);
264 g_critical("Protocol decoder instance \"%s\" not found.",
268 channel_indices
= g_hash_table_new_full(g_str_hash
, g_str_equal
, g_free
,
269 (GDestroyNotify
)g_variant_unref
);
271 g_hash_table_iter_init(&iter
, channel_map
);
272 while (g_hash_table_iter_next(&iter
, &channel_id
, &channel_target
)) {
273 ch
= find_channel(channel_list
, channel_target
);
275 g_printerr("cli: No channel with name \"%s\" found.\n",
276 (char *)channel_target
);
280 g_printerr("cli: Target channel \"%s\" not enabled.\n",
281 (char *)channel_target
);
283 var
= g_variant_new_int32(ch
->index
);
284 g_variant_ref_sink(var
);
285 g_hash_table_insert(channel_indices
, g_strdup(channel_id
), var
);
288 srd_inst_channel_set_all(di
, channel_indices
);
289 g_hash_table_destroy(channel_indices
);
292 void map_pd_channels(struct sr_dev_inst
*sdi
)
296 channels
= sr_dev_inst_channels_get(sdi
);
298 if (pd_channel_maps
) {
299 g_hash_table_foreach(pd_channel_maps
, &map_pd_inst_channels
,
301 g_hash_table_destroy(pd_channel_maps
);
302 pd_channel_maps
= NULL
;
306 int setup_pd_annotations(char *opt_pd_annotations
)
309 struct srd_decoder
*dec
;
311 char **pds
, **pdtok
, **keyval
, **annlist
, **ann
, **ann_descr
;
313 /* Set up custom list of PDs and annotations to show. */
314 pds
= g_strsplit(opt_pd_annotations
, ",", 0);
315 for (pdtok
= pds
; *pdtok
&& **pdtok
; pdtok
++) {
316 keyval
= g_strsplit(*pdtok
, "=", 0);
317 if (!(dec
= srd_decoder_get_by_id(keyval
[0]))) {
318 g_critical("Protocol decoder '%s' not found.", keyval
[0]);
321 if (!dec
->annotations
) {
322 g_critical("Protocol decoder '%s' has no annotations.", keyval
[0]);
325 if (g_strv_length(keyval
) == 2 && keyval
[1][0] != '\0') {
326 annlist
= g_strsplit(keyval
[1], ":", 0);
327 for (ann
= annlist
; *ann
&& **ann
; ann
++) {
329 for (l
= dec
->annotations
; l
; l
= l
->next
, ann_class
++) {
331 if (!canon_cmp(ann_descr
[0], *ann
))
336 g_critical("Annotation '%s' not found "
337 "for protocol decoder '%s'.", *ann
, keyval
[0]);
340 l_ann
= g_hash_table_lookup(pd_ann_visible
, keyval
[0]);
341 l_ann
= g_slist_append(l_ann
, GINT_TO_POINTER(ann_class
));
342 g_hash_table_replace(pd_ann_visible
, g_strdup(keyval
[0]), l_ann
);
343 g_debug("cli: Showing protocol decoder %s annotation "
344 "class %d (%s).", keyval
[0], ann_class
, ann_descr
[0]);
347 /* No class specified: show all of them. */
348 g_hash_table_insert(pd_ann_visible
, g_strdup(keyval
[0]),
349 g_slist_append(NULL
, GINT_TO_POINTER(-1)));
350 g_debug("cli: Showing all annotation classes for protocol "
351 "decoder %s.", keyval
[0]);
360 int setup_pd_meta(char *opt_pd_meta
)
362 struct srd_decoder
*dec
;
365 pd_meta_visible
= g_hash_table_new_full(g_str_hash
, g_int_equal
,
367 pds
= g_strsplit(opt_pd_meta
, ",", 0);
368 for (pdtok
= pds
; *pdtok
&& **pdtok
; pdtok
++) {
369 if (!(dec
= srd_decoder_get_by_id(*pdtok
))) {
370 g_critical("Protocol decoder '%s' not found.", *pdtok
);
373 g_debug("cli: Showing protocol decoder meta output from '%s'.", *pdtok
);
374 g_hash_table_insert(pd_meta_visible
, g_strdup(*pdtok
), NULL
);
381 int setup_pd_binary(char *opt_pd_binary
)
384 struct srd_decoder
*dec
;
386 char **pds
, **pdtok
, **keyval
, **bin_name
;
388 pd_binary_visible
= g_hash_table_new_full(g_str_hash
, g_int_equal
,
390 pds
= g_strsplit(opt_pd_binary
, ",", 0);
391 for (pdtok
= pds
; *pdtok
&& **pdtok
; pdtok
++) {
392 keyval
= g_strsplit(*pdtok
, "=", 0);
393 if (!(dec
= srd_decoder_get_by_id(keyval
[0]))) {
394 g_critical("Protocol decoder '%s' not found.", keyval
[0]);
398 g_critical("Protocol decoder '%s' has no binary output.", keyval
[0]);
402 if (g_strv_length(keyval
) == 2) {
403 for (l
= dec
->binary
; l
; l
= l
->next
, bin_class
++) {
405 if (!strcmp(bin_name
[0], keyval
[1]))
410 g_critical("binary output '%s' not found "
411 "for protocol decoder '%s'.", keyval
[1], keyval
[0]);
414 g_debug("cli: Showing protocol decoder %s binary class "
415 "%d (%s).", keyval
[0], bin_class
, bin_name
[0]);
417 /* No class specified: output all of them. */
419 g_debug("cli: Showing all binary classes for protocol "
420 "decoder %s.", keyval
[0]);
422 g_hash_table_insert(pd_binary_visible
, g_strdup(keyval
[0]), GINT_TO_POINTER(bin_class
));
430 void show_pd_annotations(struct srd_proto_data
*pdata
, void *cb_data
)
432 struct srd_decoder
*dec
;
433 struct srd_proto_data_annotation
*pda
;
434 GSList
*ann_list
, *l
;
437 gboolean show_ann
, show_snum
, show_class
, show_quotes
, show_abbrev
;
445 if (!g_hash_table_lookup_extended(pd_ann_visible
, pdata
->pdo
->di
->decoder
->id
,
446 NULL
, (void **)&ann_list
)) {
447 /* Not in the list of PDs whose annotations we're showing. */
451 dec
= pdata
->pdo
->di
->decoder
;
454 for (l
= ann_list
; l
; l
= l
->next
) {
455 if (GPOINTER_TO_INT(l
->data
) == -1
456 || GPOINTER_TO_INT(l
->data
) == pda
->ann_class
) {
465 * Determine which fields of the annotation to display. Inspect
466 * user specified options as well as the verbosity of the log level:
467 * - Optionally show the sample numbers for the annotation's span.
468 * - Always show the protocol decoder ID.
469 * - Optionally show the annotation's class description.
470 * - Always show the longest annotation text.
471 * - Optionally show alternative annotation text (abbreviations
472 * for different zoom levels).
473 * - Optionally put quote marks around annotation text, when
474 * recipients might have to deal with a set of text variants.
476 show_snum
= show_class
= show_quotes
= show_abbrev
= FALSE
;
477 if (opt_pd_samplenum
|| opt_loglevel
> SR_LOG_WARN
) {
480 if (opt_loglevel
> SR_LOG_WARN
) {
483 if (opt_loglevel
> SR_LOG_INFO
) {
489 * Display the annotation's fields after the layout was
493 printf("%" PRIu64
"-%" PRIu64
" ",
494 pdata
->start_sample
, pdata
->end_sample
);
496 printf("%s: ", pdata
->pdo
->proto_id
);
498 ann_descr
= g_slist_nth_data(dec
->annotations
, pda
->ann_class
);
499 printf("%s: ", ann_descr
[0]);
501 quote
= show_quotes
? "\"" : "";
502 printf("%s%s%s", quote
, pda
->ann_text
[0], quote
);
504 for (i
= 1; pda
->ann_text
[i
]; i
++)
505 printf(" %s%s%s", quote
, pda
->ann_text
[i
], quote
);
511 void show_pd_meta(struct srd_proto_data
*pdata
, void *cb_data
)
515 if (!g_hash_table_lookup_extended(pd_meta_visible
,
516 pdata
->pdo
->di
->decoder
->id
, NULL
, NULL
))
517 /* Not in the list of PDs whose meta output we're showing. */
520 if (opt_pd_samplenum
|| opt_loglevel
> SR_LOG_WARN
)
521 printf("%"PRIu64
"-%"PRIu64
" ", pdata
->start_sample
, pdata
->end_sample
);
522 printf("%s: ", pdata
->pdo
->proto_id
);
523 printf("%s: %s", pdata
->pdo
->meta_name
, g_variant_print(pdata
->data
, FALSE
));
528 void show_pd_binary(struct srd_proto_data
*pdata
, void *cb_data
)
530 struct srd_proto_data_binary
*pdb
;
536 if (!g_hash_table_lookup_extended(pd_binary_visible
,
537 pdata
->pdo
->di
->decoder
->id
, NULL
, (void **)&classp
))
538 /* Not in the list of PDs whose meta output we're showing. */
541 classi
= GPOINTER_TO_INT(classp
);
543 if (classi
!= -1 && classi
!= pdb
->bin_class
)
544 /* Not showing this binary class. */
547 /* Just send the binary output to stdout, no embellishments. */
548 fwrite(pdb
->data
, pdb
->size
, 1, stdout
);