blob: 19d146df7fe9560fcdcd396419694ee31ce8d1f2 [file] [log] [blame]
Bert Vermeulen2be182e2013-11-17 13:15:38 +01001/*
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
Uwe Hermann20fb52e2013-11-19 11:48:06 +010020#include "sigrok-cli.h"
Dan HorĂ¡k8d52f782014-01-25 14:15:24 +010021#include <stdlib.h>
Bert Vermeulen2be182e2013-11-17 13:15:38 +010022#include <glib.h>
Bert Vermeulen2be182e2013-11-17 13:15:38 +010023
24struct sr_context *sr_ctx = NULL;
25#ifdef HAVE_SRD
26struct srd_session *srd_sess = NULL;
27#endif
28
Bert Vermeulen2be182e2013-11-17 13:15:38 +010029static void logger(const gchar *log_domain, GLogLevelFlags log_level,
30 const gchar *message, gpointer cb_data)
31{
32 (void)log_domain;
33 (void)cb_data;
34
35 /*
36 * All messages, warnings, errors etc. go to stderr (not stdout) in
37 * order to not mess up the CLI tool data output, e.g. VCD output.
38 */
39 if (log_level & (G_LOG_LEVEL_ERROR | G_LOG_LEVEL_CRITICAL | G_LOG_LEVEL_WARNING)
40 || opt_loglevel > SR_LOG_WARN) {
41 fprintf(stderr, "%s\n", message);
42 fflush(stderr);
43 }
44
45 if (log_level & (G_LOG_LEVEL_ERROR | G_LOG_LEVEL_CRITICAL))
46 exit(1);
47
48}
49
Uwe Hermann029d73f2014-03-24 22:32:47 +010050int select_channels(struct sr_dev_inst *sdi)
Bert Vermeulen2be182e2013-11-17 13:15:38 +010051{
Uwe Hermann029d73f2014-03-24 22:32:47 +010052 struct sr_channel *ch;
53 GSList *selected_channels, *l;
Bert Vermeulen2be182e2013-11-17 13:15:38 +010054
Uwe Hermann3dfbfbc2014-04-12 13:42:30 +020055 if (opt_channels) {
56 if (!(selected_channels = parse_channelstring(sdi, opt_channels)))
Daniel Elstner39aedc32014-02-21 20:10:09 +010057 return SR_ERR;
Bert Vermeulen2be182e2013-11-17 13:15:38 +010058
Uwe Hermann029d73f2014-03-24 22:32:47 +010059 for (l = sdi->channels; l; l = l->next) {
60 ch = l->data;
61 if (g_slist_find(selected_channels, ch))
62 ch->enabled = TRUE;
Daniel Elstner39aedc32014-02-21 20:10:09 +010063 else
Uwe Hermann029d73f2014-03-24 22:32:47 +010064 ch->enabled = FALSE;
Daniel Elstner39aedc32014-02-21 20:10:09 +010065 }
Uwe Hermann029d73f2014-03-24 22:32:47 +010066 g_slist_free(selected_channels);
Bert Vermeulen2be182e2013-11-17 13:15:38 +010067 }
Daniel Elstner39aedc32014-02-21 20:10:09 +010068#ifdef HAVE_SRD
Uwe Hermann3dfbfbc2014-04-12 13:42:30 +020069 map_pd_channels(sdi);
Daniel Elstner39aedc32014-02-21 20:10:09 +010070#endif
Bert Vermeulen2be182e2013-11-17 13:15:38 +010071 return SR_OK;
72}
73
74static void set_options(void)
75{
76 struct sr_dev_inst *sdi;
77 GSList *devices;
78 GHashTable *devargs;
79
80 if (!opt_config) {
81 g_critical("No setting specified.");
82 return;
83 }
84
85 if (!(devargs = parse_generic_arg(opt_config, FALSE)))
86 return;
87
88 if (!(devices = device_scan())) {
89 g_critical("No devices found.");
90 return;
91 }
92 sdi = devices->data;
Bert Vermeulenb4eece72014-07-24 20:31:55 +020093 g_slist_free(devices);
Bert Vermeulen2be182e2013-11-17 13:15:38 +010094
95 if (sr_dev_open(sdi) != SR_OK) {
96 g_critical("Failed to open device.");
97 return;
98 }
99
100 set_dev_options(sdi, devargs);
101
102 sr_dev_close(sdi);
Bert Vermeulen2be182e2013-11-17 13:15:38 +0100103 g_hash_table_destroy(devargs);
104
105}
106
107int main(int argc, char **argv)
108{
Bert Vermeulen2be182e2013-11-17 13:15:38 +0100109 g_log_set_default_handler(logger, NULL);
110
Jens Steinhausercd62e022014-07-15 17:14:03 +0200111 if (parse_options(argc, argv)) {
112 return 1;
Bert Vermeulen2be182e2013-11-17 13:15:38 +0100113 }
114
115 /* Set the loglevel (amount of messages to output) for libsigrok. */
116 if (sr_log_loglevel_set(opt_loglevel) != SR_OK)
117 goto done;
118
119 if (sr_init(&sr_ctx) != SR_OK)
120 goto done;
121
122#ifdef HAVE_SRD
123 /* Set the loglevel (amount of messages to output) for libsigrokdecode. */
124 if (srd_log_loglevel_set(opt_loglevel) != SRD_OK)
125 goto done;
126
127 if (opt_pds) {
128 if (srd_init(NULL) != SRD_OK)
129 goto done;
130 if (srd_session_new(&srd_sess) != SRD_OK) {
131 g_critical("Failed to create new decode session.");
132 goto done;
133 }
Bert Vermeulen26c63752013-11-17 18:51:15 +0100134 if (register_pds(opt_pds, opt_pd_annotations) != 0)
Bert Vermeulen2be182e2013-11-17 13:15:38 +0100135 goto done;
Bert Vermeulen26c63752013-11-17 18:51:15 +0100136 if (setup_pd_stack(opt_pds, opt_pd_stack, opt_pd_annotations) != 0)
Bert Vermeulen2be182e2013-11-17 13:15:38 +0100137 goto done;
138
139 /* Only one output type is ever shown. */
140 if (opt_pd_binary) {
Bert Vermeulen26c63752013-11-17 18:51:15 +0100141 if (setup_pd_binary(opt_pd_binary) != 0)
Bert Vermeulen2be182e2013-11-17 13:15:38 +0100142 goto done;
143 if (srd_pd_output_callback_add(srd_sess, SRD_OUTPUT_BINARY,
144 show_pd_binary, NULL) != SRD_OK)
145 goto done;
146 } else if (opt_pd_meta) {
Bert Vermeulen26c63752013-11-17 18:51:15 +0100147 if (setup_pd_meta(opt_pd_meta) != 0)
Bert Vermeulen2be182e2013-11-17 13:15:38 +0100148 goto done;
149 if (srd_pd_output_callback_add(srd_sess, SRD_OUTPUT_META,
150 show_pd_meta, NULL) != SRD_OK)
151 goto done;
152 } else {
153 if (opt_pd_annotations)
Bert Vermeulen26c63752013-11-17 18:51:15 +0100154 if (setup_pd_annotations(opt_pd_annotations) != 0)
Bert Vermeulen2be182e2013-11-17 13:15:38 +0100155 goto done;
156 if (srd_pd_output_callback_add(srd_sess, SRD_OUTPUT_ANN,
157 show_pd_annotations, NULL) != SRD_OK)
158 goto done;
159 }
160 }
161#endif
162
Bert Vermeulen2be182e2013-11-17 13:15:38 +0100163 if (opt_version)
164 show_version();
Bert Vermeulena8b40412014-08-10 16:58:36 +0200165 else if (opt_input_format && opt_show)
166 show_input();
Bert Vermeulenad6520c2014-07-25 22:39:48 +0200167 else if (opt_output_format && opt_show)
168 show_output();
Bert Vermeulen2be182e2013-11-17 13:15:38 +0100169 else if (opt_scan_devs)
170 show_dev_list();
171#ifdef HAVE_SRD
172 else if (opt_pds && opt_show)
173 show_pd_detail();
174#endif
175 else if (opt_show)
176 show_dev_detail();
177 else if (opt_input_file)
178 load_input_file();
179 else if (opt_set)
180 set_options();
181 else if (opt_samples || opt_time || opt_frames || opt_continuous)
182 run_session();
Jens Steinhausercd62e022014-07-15 17:14:03 +0200183 else
184 show_help();
Bert Vermeulen2be182e2013-11-17 13:15:38 +0100185
186#ifdef HAVE_SRD
187 if (opt_pds)
188 srd_exit();
189#endif
190
Bert Vermeulen2be182e2013-11-17 13:15:38 +0100191done:
192 if (sr_ctx)
193 sr_exit(sr_ctx);
194
Jens Steinhausercd62e022014-07-15 17:14:03 +0200195 return 0;
Bert Vermeulen2be182e2013-11-17 13:15:38 +0100196}