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/>.
23 #include "sigrok-cli.h"
25 static gint
sort_inputs(gconstpointer a
, gconstpointer b
)
27 return strcmp(sr_input_id_get((struct sr_input_module
*)a
),
28 sr_input_id_get((struct sr_input_module
*)b
));
31 static gint
sort_outputs(gconstpointer a
, gconstpointer b
)
33 return strcmp(sr_output_id_get((struct sr_output_module
*)a
),
34 sr_output_id_get((struct sr_output_module
*)b
));
37 static gint
sort_transforms(gconstpointer a
, gconstpointer b
)
39 return strcmp(sr_transform_id_get((struct sr_transform_module
*)a
),
40 sr_transform_id_get((struct sr_transform_module
*)b
));
43 static gint
sort_drivers(gconstpointer a
, gconstpointer b
)
45 const struct sr_dev_driver
*sdda
= a
, *sddb
= b
;
47 return strcmp(sdda
->name
, sddb
->name
);
51 static gint
sort_pds(gconstpointer a
, gconstpointer b
)
53 const struct srd_decoder
*sda
= a
, *sdb
= b
;
55 return strcmp(sda
->id
, sdb
->id
);
59 void show_version(void)
62 GSList
*l
, *l_orig
, *m
;
64 const char *lib
, *version
;
66 printf("sigrok-cli %s\n\n", SC_PACKAGE_VERSION_STRING
);
68 printf("Libraries and features:\n");
70 printf("- libsigrok %s/%s (rt: %s/%s).\n",
71 SR_PACKAGE_VERSION_STRING
, SR_LIB_VERSION_STRING
,
72 sr_package_version_string_get(), sr_lib_version_string_get());
74 s
= g_string_sized_new(200);
75 g_string_append(s
, " - Libs:\n");
76 l_orig
= sr_buildinfo_libs_get();
77 for (l
= l_orig
; l
; l
= l
->next
) {
80 version
= m
->next
->data
;
81 g_string_append_printf(s
, " - %s %s\n", lib
, version
);
82 g_slist_free_full(m
, g_free
);
85 s
->str
[s
->len
- 1] = '\0';
86 printf("%s\n", s
->str
);
87 g_string_free(s
, TRUE
);
89 str
= sr_buildinfo_host_get();
90 printf(" - Host: %s.\n", str
);
93 str
= sr_buildinfo_scpi_backends_get();
94 printf(" - SCPI backends: %s.\n", str
);
98 printf("- libsigrokdecode %s/%s (rt: %s/%s).\n",
99 SRD_PACKAGE_VERSION_STRING
, SRD_LIB_VERSION_STRING
,
100 srd_package_version_string_get(), srd_lib_version_string_get());
102 s
= g_string_sized_new(200);
103 g_string_append(s
, " - Libs:\n");
104 l_orig
= srd_buildinfo_libs_get();
105 for (l
= l_orig
; l
; l
= l
->next
) {
108 version
= m
->next
->data
;
109 g_string_append_printf(s
, " - %s %s\n", lib
, version
);
110 g_slist_free_full(m
, g_free
);
112 g_slist_free(l_orig
);
113 s
->str
[s
->len
- 1] = '\0';
114 printf("%s\n", s
->str
);
115 g_string_free(s
, TRUE
);
117 str
= srd_buildinfo_host_get();
118 printf(" - Host: %s.\n", str
);
123 void show_supported(void)
125 struct sr_dev_driver
**drivers
, *driver
;
126 const struct sr_input_module
**inputs
, *input
;
127 const struct sr_output_module
**outputs
, *output
;
128 const struct sr_transform_module
**transforms
, *transform
;
133 struct srd_decoder
*dec
;
136 printf("Supported hardware drivers:\n");
137 drivers
= sr_driver_list(sr_ctx
);
138 for (sl
= NULL
, i
= 0; drivers
[i
]; i
++)
139 sl
= g_slist_append(sl
, drivers
[i
]);
140 sl
= g_slist_sort(sl
, sort_drivers
);
141 for (l
= sl
; l
; l
= l
->next
) {
143 printf(" %-20s %s\n", driver
->name
, driver
->longname
);
148 printf("Supported input formats:\n");
149 inputs
= sr_input_list();
150 for (sl
= NULL
, i
= 0; inputs
[i
]; i
++)
151 sl
= g_slist_append(sl
, (gpointer
)inputs
[i
]);
152 sl
= g_slist_sort(sl
, sort_inputs
);
153 for (l
= sl
; l
; l
= l
->next
) {
155 printf(" %-20s %s\n", sr_input_id_get(input
),
156 sr_input_description_get(input
));
161 printf("Supported output formats:\n");
162 outputs
= sr_output_list();
163 for (sl
= NULL
, i
= 0; outputs
[i
]; i
++)
164 sl
= g_slist_append(sl
, (gpointer
)outputs
[i
]);
165 sl
= g_slist_sort(sl
, sort_outputs
);
166 for (l
= sl
; l
; l
= l
->next
) {
168 printf(" %-20s %s\n", sr_output_id_get(output
),
169 sr_output_description_get(output
));
174 printf("Supported transform modules:\n");
175 transforms
= sr_transform_list();
176 for (sl
= NULL
, i
= 0; transforms
[i
]; i
++)
177 sl
= g_slist_append(sl
, (gpointer
)transforms
[i
]);
178 sl
= g_slist_sort(sl
, sort_transforms
);
179 for (l
= sl
; l
; l
= l
->next
) {
181 printf(" %-20s %s\n", sr_transform_id_get(transform
),
182 sr_transform_description_get(transform
));
188 if (srd_init(NULL
) == SRD_OK
) {
189 printf("Supported protocol decoders:\n");
190 srd_decoder_load_all();
191 sl
= g_slist_copy((GSList
*)srd_decoder_list());
192 sl
= g_slist_sort(sl
, sort_pds
);
193 for (l
= sl
; l
; l
= l
->next
) {
195 printf(" %-20s %s\n", dec
->id
, dec
->longname
);
196 /* Print protocol description upon "-l 3" or higher. */
197 if (opt_loglevel
>= SR_LOG_INFO
)
198 printf(" %-20s %s\n", "", dec
->desc
);
207 static gint
sort_channels(gconstpointer a
, gconstpointer b
)
209 const struct sr_channel
*pa
= a
, *pb
= b
;
211 return pa
->index
- pb
->index
;
214 static void print_dev_line(const struct sr_dev_inst
*sdi
)
216 struct sr_channel
*ch
;
217 GSList
*sl
, *l
, *channels
;
220 struct sr_dev_driver
*driver
;
221 const char *vendor
, *model
, *version
;
223 driver
= sr_dev_inst_driver_get(sdi
);
224 vendor
= sr_dev_inst_vendor_get(sdi
);
225 model
= sr_dev_inst_model_get(sdi
);
226 version
= sr_dev_inst_version_get(sdi
);
227 channels
= sr_dev_inst_channels_get(sdi
);
229 s
= g_string_sized_new(128);
230 g_string_assign(s
, driver
->name
);
231 if (maybe_config_get(driver
, sdi
, NULL
, SR_CONF_CONN
, &gvar
) == SR_OK
) {
232 g_string_append(s
, ":conn=");
233 g_string_append(s
, g_variant_get_string(gvar
, NULL
));
234 g_variant_unref(gvar
);
236 g_string_append(s
, " - ");
237 if (vendor
&& vendor
[0])
238 g_string_append_printf(s
, "%s ", vendor
);
239 if (model
&& model
[0])
240 g_string_append_printf(s
, "%s ", model
);
241 if (version
&& version
[0])
242 g_string_append_printf(s
, "%s ", version
);
244 if (g_slist_length(channels
) == 1) {
246 g_string_append_printf(s
, "with 1 channel: %s", ch
->name
);
248 sl
= g_slist_sort(g_slist_copy(channels
), sort_channels
);
249 g_string_append_printf(s
, "with %d channels:", g_slist_length(sl
));
250 for (l
= sl
; l
; l
= l
->next
) {
252 g_string_append_printf(s
, " %s", ch
->name
);
257 g_string_append_printf(s
, "\n");
258 printf("%s", s
->str
);
259 g_string_free(s
, TRUE
);
263 void show_dev_list(void)
265 struct sr_dev_inst
*sdi
;
268 if (!(devices
= device_scan()))
271 printf("The following devices were found:\n");
272 for (l
= devices
; l
; l
= l
->next
) {
276 g_slist_free(devices
);
280 void show_drv_detail(struct sr_dev_driver
*driver
)
282 const struct sr_key_info
*srci
;
286 if ((opts
= sr_dev_options(driver
, NULL
, NULL
))) {
288 printf("Driver functions:\n");
289 for (i
= 0; i
< opts
->len
; i
++) {
290 if (!(srci
= sr_key_info_get(SR_KEY_CONFIG
,
291 g_array_index(opts
, uint32_t, i
))))
293 printf(" %s\n", srci
->name
);
296 g_array_free(opts
, TRUE
);
299 if ((opts
= sr_driver_scan_options_list(driver
))) {
301 printf("Scan options:\n");
302 for (i
= 0; i
< opts
->len
; i
++) {
303 if (!(srci
= sr_key_info_get(SR_KEY_CONFIG
,
304 g_array_index(opts
, uint32_t, i
))))
306 printf(" %s\n", srci
->id
);
309 g_array_free(opts
, TRUE
);
313 void show_dev_detail(void)
315 struct sr_dev_driver
*driver_from_opt
, *driver
;
316 struct sr_dev_inst
*sdi
;
317 const struct sr_key_info
*srci
, *srmqi
, *srmqfi
;
318 struct sr_channel
*ch
;
319 struct sr_channel_group
*channel_group
, *cg
;
320 GSList
*devices
, *cgl
, *chl
, *channel_groups
;
321 GVariant
*gvar_dict
, *gvar_list
, *gvar
;
323 double dlow
, dhigh
, dcur_low
, dcur_high
;
324 const uint64_t *uint64
, p
= 0, q
= 0, low
= 0, high
= 0;
325 uint64_t tmp_uint64
, mask
, cur_low
, cur_high
, cur_p
, cur_q
;
327 const int32_t *int32
;
328 uint32_t key
, o
, cur_mq
, mq
;
329 uint64_t cur_mqflags
, mqflags
;
330 unsigned int num_devices
, i
, j
;
331 char *tmp_str
, *s
, c
;
332 const char **stropts
;
334 if (parse_driver(opt_drv
, &driver_from_opt
, NULL
)) {
335 /* A driver was specified, report driver-wide options now. */
336 show_drv_detail(driver_from_opt
);
339 if (!(devices
= device_scan())) {
340 g_critical("No devices found.");
344 num_devices
= g_slist_length(devices
);
345 if (num_devices
> 1) {
346 g_critical("%d devices found. Use --scan to show them, "
347 "and select one to show.", num_devices
);
352 g_slist_free(devices
);
355 driver
= sr_dev_inst_driver_get(sdi
);
356 channel_groups
= sr_dev_inst_channel_groups_get(sdi
);
358 if (sr_dev_open(sdi
) != SR_OK
) {
359 g_critical("Failed to open device.");
364 * Selected channels and channel group may affect which options are
365 * returned, or which values for them.
367 select_channels(sdi
);
368 channel_group
= select_channel_group(sdi
);
370 if (!(opts
= sr_dev_options(driver
, sdi
, channel_group
)))
371 /* Driver supports no device instance options. */
374 if (channel_groups
) {
375 printf("Channel groups:\n");
376 for (cgl
= channel_groups
; cgl
; cgl
= cgl
->next
) {
378 printf(" %s: channel%s", cg
->name
,
379 g_slist_length(cg
->channels
) > 1 ? "s" : "");
380 for (chl
= cg
->channels
; chl
; chl
= chl
->next
) {
382 printf(" %s", ch
->name
);
388 printf("Supported configuration options");
389 if (channel_groups
) {
391 printf(" across all channel groups");
393 printf(" on channel group %s", channel_group
->name
);
396 for (o
= 0; o
< opts
->len
; o
++) {
397 key
= g_array_index(opts
, uint32_t, o
);
398 if (!(srci
= sr_key_info_get(SR_KEY_CONFIG
, key
)))
401 if (key
== SR_CONF_TRIGGER_MATCH
) {
402 if (maybe_config_list(driver
, sdi
, channel_group
, key
,
403 &gvar_list
) != SR_OK
) {
407 int32
= g_variant_get_fixed_array(gvar_list
,
408 &num_elements
, sizeof(int32_t));
409 printf(" Supported triggers: ");
410 for (i
= 0; i
< num_elements
; i
++) {
412 case SR_TRIGGER_ZERO
:
418 case SR_TRIGGER_RISING
:
421 case SR_TRIGGER_FALLING
:
424 case SR_TRIGGER_EDGE
:
427 case SR_TRIGGER_OVER
:
430 case SR_TRIGGER_UNDER
:
441 g_variant_unref(gvar_list
);
443 } else if (key
== SR_CONF_LIMIT_SAMPLES
444 && (sr_dev_config_capabilities_list(sdi
, NULL
, key
)
447 * If implemented in config_list(), this denotes the
448 * maximum number of samples a device can send. This
449 * really applies only to logic analyzers, and then
450 * only to those that don't support compression, or
451 * have it turned off by default. The values returned
452 * are the low/high limits.
454 if (sr_config_list(driver
, sdi
, channel_group
, key
,
456 g_variant_get(gvar
, "(tt)", &low
, &high
);
457 g_variant_unref(gvar
);
458 printf(" Maximum number of samples: %"PRIu64
"\n", high
);
461 } else if (key
== SR_CONF_SAMPLERATE
) {
462 /* Supported samplerates */
463 printf(" %s", srci
->id
);
464 if (maybe_config_list(driver
, sdi
, channel_group
, SR_CONF_SAMPLERATE
,
465 &gvar_dict
) != SR_OK
) {
469 if ((gvar_list
= g_variant_lookup_value(gvar_dict
,
470 "samplerates", G_VARIANT_TYPE("at")))) {
471 uint64
= g_variant_get_fixed_array(gvar_list
,
472 &num_elements
, sizeof(uint64_t));
473 printf(" - supported samplerates:\n");
474 for (i
= 0; i
< num_elements
; i
++) {
475 if (!(s
= sr_samplerate_string(uint64
[i
])))
480 g_variant_unref(gvar_list
);
481 } else if ((gvar_list
= g_variant_lookup_value(gvar_dict
,
482 "samplerate-steps", G_VARIANT_TYPE("at")))) {
483 uint64
= g_variant_get_fixed_array(gvar_list
,
484 &num_elements
, sizeof(uint64_t));
486 if (!(s
= sr_samplerate_string(uint64
[0])))
491 if (!(s
= sr_samplerate_string(uint64
[1])))
496 if (!(s
= sr_samplerate_string(uint64
[2])))
498 printf(" in steps of %s)\n", s
);
500 g_variant_unref(gvar_list
);
502 g_variant_unref(gvar_dict
);
504 } else if (srci
->datatype
== SR_T_UINT64
) {
505 printf(" %s: ", srci
->id
);
507 if (maybe_config_get(driver
, sdi
, channel_group
, key
,
509 tmp_uint64
= g_variant_get_uint64(gvar
);
510 g_variant_unref(gvar
);
513 if (maybe_config_list(driver
, sdi
, channel_group
,
514 key
, &gvar_list
) != SR_OK
) {
516 /* Can't list it, but we have a value to show. */
517 printf("%"PRIu64
" (current)", tmp_uint64
);
522 uint64
= g_variant_get_fixed_array(gvar_list
,
523 &num_elements
, sizeof(uint64_t));
524 printf(" - supported values:\n");
525 for (i
= 0; i
< num_elements
; i
++) {
526 printf(" %"PRIu64
, uint64
[i
]);
527 if (gvar
&& tmp_uint64
== uint64
[i
])
528 printf(" (current)");
531 g_variant_unref(gvar_list
);
533 } else if (srci
->datatype
== SR_T_STRING
) {
534 printf(" %s: ", srci
->id
);
535 if (maybe_config_get(driver
, sdi
, channel_group
, key
,
537 tmp_str
= g_strdup(g_variant_get_string(gvar
, NULL
));
538 g_variant_unref(gvar
);
542 if (maybe_config_list(driver
, sdi
, channel_group
, key
,
545 /* Can't list it, but we have a value to show. */
546 printf("%s (current)", tmp_str
);
553 stropts
= g_variant_get_strv(gvar
, &num_elements
);
554 for (i
= 0; i
< num_elements
; i
++) {
557 printf("%s", stropts
[i
]);
558 if (tmp_str
&& !strcmp(tmp_str
, stropts
[i
]))
559 printf(" (current)");
564 g_variant_unref(gvar
);
566 } else if (srci
->datatype
== SR_T_UINT64_RANGE
) {
567 printf(" %s: ", srci
->id
);
568 if (maybe_config_list(driver
, sdi
, channel_group
, key
,
569 &gvar_list
) != SR_OK
) {
574 if (maybe_config_get(driver
, sdi
, channel_group
, key
, &gvar
) == SR_OK
) {
575 g_variant_get(gvar
, "(tt)", &cur_low
, &cur_high
);
576 g_variant_unref(gvar
);
582 num_elements
= g_variant_n_children(gvar_list
);
583 for (i
= 0; i
< num_elements
; i
++) {
584 gvar
= g_variant_get_child_value(gvar_list
, i
);
585 g_variant_get(gvar
, "(tt)", &low
, &high
);
586 g_variant_unref(gvar
);
589 printf("%"PRIu64
"-%"PRIu64
, low
, high
);
590 if (low
== cur_low
&& high
== cur_high
)
591 printf(" (current)");
594 g_variant_unref(gvar_list
);
596 } else if (srci
->datatype
== SR_T_BOOL
) {
597 printf(" %s: ", srci
->id
);
598 if (maybe_config_get(driver
, sdi
, channel_group
, key
,
600 if (g_variant_get_boolean(gvar
))
601 printf("on (current), off\n");
603 printf("on, off (current)\n");
604 g_variant_unref(gvar
);
608 } else if (srci
->datatype
== SR_T_DOUBLE_RANGE
) {
609 printf(" %s: ", srci
->id
);
610 if (maybe_config_list(driver
, sdi
, channel_group
, key
,
611 &gvar_list
) != SR_OK
) {
616 if (maybe_config_get(driver
, sdi
, channel_group
, key
, &gvar
) == SR_OK
) {
617 g_variant_get(gvar
, "(dd)", &dcur_low
, &dcur_high
);
618 g_variant_unref(gvar
);
624 num_elements
= g_variant_n_children(gvar_list
);
625 for (i
= 0; i
< num_elements
; i
++) {
626 gvar
= g_variant_get_child_value(gvar_list
, i
);
627 g_variant_get(gvar
, "(dd)", &dlow
, &dhigh
);
628 g_variant_unref(gvar
);
631 printf("%.1f-%.1f", dlow
, dhigh
);
632 if (dlow
== dcur_low
&& dhigh
== dcur_high
)
633 printf(" (current)");
636 g_variant_unref(gvar_list
);
638 } else if (srci
->datatype
== SR_T_FLOAT
) {
639 printf(" %s: ", srci
->id
);
640 if (maybe_config_get(driver
, sdi
, channel_group
, key
,
642 printf("%f\n", g_variant_get_double(gvar
));
643 g_variant_unref(gvar
);
647 } else if (srci
->datatype
== SR_T_RATIONAL_PERIOD
648 || srci
->datatype
== SR_T_RATIONAL_VOLT
) {
649 printf(" %s", srci
->id
);
650 if (maybe_config_get(driver
, sdi
, channel_group
, key
,
652 g_variant_get(gvar
, "(tt)", &cur_p
, &cur_q
);
653 g_variant_unref(gvar
);
657 if (maybe_config_list(driver
, sdi
, channel_group
,
658 key
, &gvar_list
) != SR_OK
) {
662 printf(" - supported values:\n");
663 num_elements
= g_variant_n_children(gvar_list
);
664 for (i
= 0; i
< num_elements
; i
++) {
665 gvar
= g_variant_get_child_value(gvar_list
, i
);
666 g_variant_get(gvar
, "(tt)", &p
, &q
);
667 if (srci
->datatype
== SR_T_RATIONAL_PERIOD
)
668 s
= sr_period_string(p
, q
);
670 s
= sr_voltage_string(p
, q
);
673 if (p
== cur_p
&& q
== cur_q
)
674 printf(" (current)");
677 g_variant_unref(gvar_list
);
679 } else if (srci
->datatype
== SR_T_MQ
) {
680 printf(" %s: ", srci
->id
);
681 if (maybe_config_get(driver
, sdi
, channel_group
, key
,
683 && g_variant_is_of_type(gvar
, G_VARIANT_TYPE_TUPLE
)
684 && g_variant_n_children(gvar
) == 2) {
685 g_variant_get(gvar
, "(ut)", &cur_mq
, &cur_mqflags
);
686 g_variant_unref(gvar
);
688 cur_mq
= cur_mqflags
= 0;
690 if (maybe_config_list(driver
, sdi
, channel_group
,
691 key
, &gvar_list
) != SR_OK
) {
695 printf(" - supported measurements:\n");
696 num_elements
= g_variant_n_children(gvar_list
);
697 for (i
= 0; i
< num_elements
; i
++) {
699 gvar
= g_variant_get_child_value(gvar_list
, i
);
700 g_variant_get(gvar
, "(ut)", &mq
, &mqflags
);
701 if ((srmqi
= sr_key_info_get(SR_KEY_MQ
, mq
)))
702 printf("%s", srmqi
->id
);
705 for (j
= 0, mask
= 1; j
< 32; j
++, mask
<<= 1) {
706 if (!(mqflags
& mask
))
708 if ((srmqfi
= sr_key_info_get(SR_KEY_MQFLAGS
, mqflags
& mask
)))
709 printf("/%s", srmqfi
->id
);
711 printf("/%" PRIu64
, mqflags
& mask
);
713 if (mq
== cur_mq
&& mqflags
== cur_mqflags
)
714 printf(" (current)");
717 g_variant_unref(gvar_list
);
721 /* Everything else */
722 printf(" %s\n", srci
->id
);
725 g_array_free(opts
, TRUE
);
732 static void show_pd_detail_single(const char *pd
)
734 struct srd_decoder
*dec
;
735 struct srd_decoder_option
*o
;
736 struct srd_channel
*pdch
;
737 struct srd_decoder_annotation_row
*r
;
740 char **pdtokens
, **pdtok
, *optsep
, **ann
, **bin
, *val
, *doc
, *str
;
742 pdtokens
= g_strsplit(pd
, ",", -1);
743 for (pdtok
= pdtokens
; *pdtok
; pdtok
++) {
745 if ((optsep
= strchr(*pdtok
, ':')))
747 if (!(dec
= srd_decoder_get_by_id(*pdtok
))) {
748 g_critical("Protocol decoder %s not found.", *pdtok
);
751 printf("ID: %s\nName: %s\nLong name: %s\nDescription: %s\n",
752 dec
->id
, dec
->name
, dec
->longname
, dec
->desc
);
753 printf("License: %s\n", dec
->license
);
754 printf("Possible decoder input IDs:\n");
756 for (l
= dec
->inputs
; l
; l
= l
->next
) {
758 printf("- %s\n", str
);
763 printf("Possible decoder output IDs:\n");
765 for (l
= dec
->outputs
; l
; l
= l
->next
) {
767 printf("- %s\n", str
);
772 printf("Annotation classes:\n");
773 if (dec
->annotations
) {
774 for (l
= dec
->annotations
; l
; l
= l
->next
) {
776 printf("- %s: %s\n", ann
[0], ann
[1]);
781 printf("Annotation rows:\n");
782 if (dec
->annotation_rows
) {
783 for (l
= dec
->annotation_rows
; l
; l
= l
->next
) {
785 printf("- %s (%s): ", r
->id
, r
->desc
);
786 for (ll
= r
->ann_classes
; ll
; ll
= ll
->next
) {
787 idx
= GPOINTER_TO_INT(ll
->data
);
788 ann
= g_slist_nth_data(dec
->annotations
, idx
);
789 printf("%s", ann
[0]);
798 printf("Binary classes:\n");
800 for (l
= dec
->binary
; l
; l
= l
->next
) {
802 printf("- %s: %s\n", bin
[0], bin
[1]);
807 printf("Required channels:\n");
809 for (l
= dec
->channels
; l
; l
= l
->next
) {
811 printf("- %s (%s): %s\n",
812 pdch
->id
, pdch
->name
, pdch
->desc
);
817 printf("Optional channels:\n");
818 if (dec
->opt_channels
) {
819 for (l
= dec
->opt_channels
; l
; l
= l
->next
) {
821 printf("- %s (%s): %s\n",
822 pdch
->id
, pdch
->name
, pdch
->desc
);
827 printf("Options:\n");
829 for (l
= dec
->options
; l
; l
= l
->next
) {
831 printf("- %s: %s (", o
->id
, o
->desc
);
832 for (ol
= o
->values
; ol
; ol
= ol
->next
) {
833 val
= g_variant_print(ol
->data
, FALSE
);
837 val
= g_variant_print(o
->def
, FALSE
);
838 printf("default %s)\n", val
);
844 if ((doc
= srd_decoder_doc_get(dec
))) {
845 printf("Documentation:\n%s\n",
846 doc
[0] == '\n' ? doc
+ 1 : doc
);
851 g_strfreev(pdtokens
);
854 void show_pd_detail(void)
856 for (int i
= 0; opt_pds
[i
]; i
++)
857 show_pd_detail_single(opt_pds
[i
]);
861 void show_input(void)
863 const struct sr_input_module
*imod
;
864 const struct sr_option
**opts
;
869 tok
= g_strsplit(opt_input_format
, ":", 0);
870 if (!tok
[0] || !(imod
= sr_input_find(tok
[0])))
871 g_critical("Input module '%s' not found.", opt_input_format
);
873 printf("ID: %s\nName: %s\n", sr_input_id_get(imod
),
874 sr_input_name_get(imod
));
875 printf("Description: %s\n", sr_input_description_get(imod
));
876 if ((opts
= sr_input_options_get(imod
))) {
877 printf("Options:\n");
878 for (i
= 0; opts
[i
]; i
++) {
879 printf(" %s: %s", opts
[i
]->id
, opts
[i
]->desc
);
881 s
= g_variant_print(opts
[i
]->def
, FALSE
);
882 printf(" (default %s", s
);
884 if (opts
[i
]->values
) {
885 printf(", possible values ");
886 for (l
= opts
[i
]->values
; l
; l
= l
->next
) {
887 s
= g_variant_print((GVariant
*)l
->data
, FALSE
);
888 printf("%s%s", s
, l
->next
? ", " : "");
896 sr_input_options_free(opts
);
901 void show_output(void)
903 const struct sr_output_module
*omod
;
904 const struct sr_option
**opts
;
909 tok
= g_strsplit(opt_output_format
, ":", 0);
910 if (!tok
[0] || !(omod
= sr_output_find(tok
[0])))
911 g_critical("Output module '%s' not found.", opt_output_format
);
913 printf("ID: %s\nName: %s\n", sr_output_id_get(omod
),
914 sr_output_name_get(omod
));
915 printf("Description: %s\n", sr_output_description_get(omod
));
916 if ((opts
= sr_output_options_get(omod
))) {
917 printf("Options:\n");
918 for (i
= 0; opts
[i
]; i
++) {
919 printf(" %s: %s", opts
[i
]->id
, opts
[i
]->desc
);
921 s
= g_variant_print(opts
[i
]->def
, FALSE
);
922 printf(" (default %s", s
);
924 if (opts
[i
]->values
) {
925 printf(", possible values ");
926 for (l
= opts
[i
]->values
; l
; l
= l
->next
) {
927 s
= g_variant_print((GVariant
*)l
->data
, FALSE
);
928 printf("%s%s", s
, l
->next
? ", " : "");
936 sr_output_options_free(opts
);
941 void show_transform(void)
943 const struct sr_transform_module
*tmod
;
944 const struct sr_option
**opts
;
949 tok
= g_strsplit(opt_transform_module
, ":", 0);
950 if (!tok
[0] || !(tmod
= sr_transform_find(tok
[0])))
951 g_critical("Transform module '%s' not found.", opt_transform_module
);
953 printf("ID: %s\nName: %s\n", sr_transform_id_get(tmod
),
954 sr_transform_name_get(tmod
));
955 printf("Description: %s\n", sr_transform_description_get(tmod
));
956 if ((opts
= sr_transform_options_get(tmod
))) {
957 printf("Options:\n");
958 for (i
= 0; opts
[i
]; i
++) {
959 printf(" %s: %s", opts
[i
]->id
, opts
[i
]->desc
);
961 s
= g_variant_print(opts
[i
]->def
, FALSE
);
962 printf(" (default %s", s
);
964 if (opts
[i
]->values
) {
965 printf(", possible values ");
966 for (l
= opts
[i
]->values
; l
; l
= l
->next
) {
967 s
= g_variant_print((GVariant
*)l
->data
, FALSE
);
968 printf("%s%s", s
, l
->next
? ", " : "");
976 sr_transform_options_free(opts
);