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 struct sr_context
*sr_ctx
= NULL
;
27 struct srd_session
*srd_sess
= NULL
;
30 static void logger(const gchar
*log_domain
, GLogLevelFlags log_level
,
31 const gchar
*message
, gpointer cb_data
)
37 * All messages, warnings, errors etc. go to stderr (not stdout) in
38 * order to not mess up the CLI tool data output, e.g. VCD output.
40 if (log_level
& (G_LOG_LEVEL_ERROR
| G_LOG_LEVEL_CRITICAL
| G_LOG_LEVEL_WARNING
)
41 || opt_loglevel
> SR_LOG_WARN
) {
42 fprintf(stderr
, "%s\n", message
);
46 if (log_level
& (G_LOG_LEVEL_ERROR
| G_LOG_LEVEL_CRITICAL
))
51 int select_channels(struct sr_dev_inst
*sdi
)
53 struct sr_channel
*ch
;
55 GSList
*selected_channels
, *l
, *channels
;
57 channels
= sr_dev_inst_channels_get(sdi
);
60 if (!(selected_channels
= parse_channelstring(sdi
, opt_channels
)))
63 for (l
= channels
; l
; l
= l
->next
) {
65 enabled
= (g_slist_find(selected_channels
, ch
) != NULL
);
66 if (sr_dev_channel_enable(ch
, enabled
) != SR_OK
)
69 g_slist_free(selected_channels
);
77 int maybe_config_get(struct sr_dev_driver
*driver
,
78 const struct sr_dev_inst
*sdi
, struct sr_channel_group
*cg
,
79 uint32_t key
, GVariant
**gvar
)
81 if (sr_dev_config_capabilities_list(sdi
, cg
, key
) & SR_CONF_GET
)
82 return sr_config_get(driver
, sdi
, cg
, key
, gvar
);
87 int maybe_config_set(struct sr_dev_driver
*driver
,
88 const struct sr_dev_inst
*sdi
, struct sr_channel_group
*cg
,
89 uint32_t key
, GVariant
*gvar
)
93 if (sr_dev_config_capabilities_list(sdi
, cg
, key
) & SR_CONF_SET
)
94 return sr_config_set(sdi
, cg
, key
, gvar
);
99 int maybe_config_list(struct sr_dev_driver
*driver
,
100 const struct sr_dev_inst
*sdi
, struct sr_channel_group
*cg
,
101 uint32_t key
, GVariant
**gvar
)
103 if (sr_dev_config_capabilities_list(sdi
, cg
, key
) & SR_CONF_LIST
)
104 return sr_config_list(driver
, sdi
, cg
, key
, gvar
);
109 static void get_option(void)
111 struct sr_dev_inst
*sdi
;
112 struct sr_channel_group
*cg
;
113 const struct sr_key_info
*ci
;
119 struct sr_dev_driver
*driver
;
120 const struct sr_key_info
*srci
, *srmqi
, *srmqfi
;
122 uint64_t mask
, mqflags
;
125 if (!(devices
= device_scan())) {
126 g_critical("No devices found.");
130 g_slist_free(devices
);
132 driver
= sr_dev_inst_driver_get(sdi
);
134 if (sr_dev_open(sdi
) != SR_OK
) {
135 g_critical("Failed to open device.");
139 cg
= select_channel_group(sdi
);
140 if (!(ci
= sr_key_info_name_get(SR_KEY_CONFIG
, opt_get
)))
141 g_critical("Unknown option '%s'", opt_get
);
143 if ((devargs
= parse_generic_arg(opt_config
, FALSE
)))
144 set_dev_options(sdi
, devargs
);
148 if ((ret
= maybe_config_get(driver
, sdi
, cg
, ci
->key
, &gvar
)) != SR_OK
)
149 g_critical("Failed to get '%s': %s", opt_get
, sr_strerror(ret
));
150 srci
= sr_key_info_get(SR_KEY_CONFIG
, ci
->key
);
151 if (srci
&& srci
->datatype
== SR_T_MQ
) {
152 g_variant_get(gvar
, "(ut)", &mq
, &mqflags
);
153 if ((srmqi
= sr_key_info_get(SR_KEY_MQ
, mq
)))
154 printf("%s", srmqi
->id
);
157 for (j
= 0, mask
= 1; j
< 32; j
++, mask
<<= 1) {
158 if (!(mqflags
& mask
))
160 if ((srmqfi
= sr_key_info_get(SR_KEY_MQFLAGS
, mqflags
& mask
)))
161 printf("/%s", srmqfi
->id
);
163 printf("/%" PRIu64
, mqflags
& mask
);
167 s
= g_variant_print(gvar
, FALSE
);
172 g_variant_unref(gvar
);
175 g_hash_table_destroy(devargs
);
178 static void set_options(void)
180 struct sr_dev_inst
*sdi
;
185 g_critical("No setting specified.");
189 if (!(devargs
= parse_generic_arg(opt_config
, FALSE
)))
192 if (!(devices
= device_scan())) {
193 g_critical("No devices found.");
197 g_slist_free(devices
);
199 if (sr_dev_open(sdi
) != SR_OK
) {
200 g_critical("Failed to open device.");
204 set_dev_options(sdi
, devargs
);
207 g_hash_table_destroy(devargs
);
211 int main(int argc
, char **argv
)
213 g_log_set_default_handler(logger
, NULL
);
215 if (parse_options(argc
, argv
)) {
219 /* Set the loglevel (amount of messages to output) for libsigrok. */
220 if (sr_log_loglevel_set(opt_loglevel
) != SR_OK
)
223 if (sr_init(&sr_ctx
) != SR_OK
)
227 /* Set the loglevel (amount of messages to output) for libsigrokdecode. */
228 if (srd_log_loglevel_set(opt_loglevel
) != SRD_OK
)
232 if (srd_init(NULL
) != SRD_OK
)
234 if (srd_session_new(&srd_sess
) != SRD_OK
) {
235 g_critical("Failed to create new decode session.");
238 if (register_pds(opt_pds
, opt_pd_annotations
) != 0)
241 /* Only one output type is ever shown. */
243 if (setup_pd_binary(opt_pd_binary
) != 0)
245 if (srd_pd_output_callback_add(srd_sess
, SRD_OUTPUT_BINARY
,
246 show_pd_binary
, NULL
) != SRD_OK
)
248 } else if (opt_pd_meta
) {
249 if (setup_pd_meta(opt_pd_meta
) != 0)
251 if (srd_pd_output_callback_add(srd_sess
, SRD_OUTPUT_META
,
252 show_pd_meta
, NULL
) != SRD_OK
)
255 if (opt_pd_annotations
)
256 if (setup_pd_annotations(opt_pd_annotations
) != 0)
258 if (srd_pd_output_callback_add(srd_sess
, SRD_OUTPUT_ANN
,
259 show_pd_annotations
, NULL
) != SRD_OK
)
267 else if (opt_list_supported
)
269 else if (opt_list_supported_wiki
)
270 show_supported_wiki();
271 else if (opt_input_file
&& opt_show
)
272 load_input_file(TRUE
);
273 else if (opt_input_format
&& opt_show
)
275 else if (opt_output_format
&& opt_show
)
277 else if (opt_transform_module
&& opt_show
)
279 else if (opt_scan_devs
)
282 else if (opt_pds
&& opt_show
)
287 else if (opt_input_file
)
288 load_input_file(FALSE
);
293 else if (opt_samples
|| opt_time
|| opt_frames
|| opt_continuous
)