]> sigrok.org Git - sigrok-cli.git/blame - options.c
Add -T|--transform-module and show transform modules in -V output.
[sigrok-cli.git] / options.c
CommitLineData
cd62e027
JS
1/*
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
20#include "sigrok-cli.h"
21#include <glib.h>
22
23gboolean opt_version = FALSE;
24gint opt_loglevel = SR_LOG_WARN; /* Show errors+warnings by default. */
25gboolean opt_scan_devs = FALSE;
26gboolean opt_wait_trigger = FALSE;
27gchar *opt_input_file = NULL;
28gchar *opt_output_file = NULL;
29gchar *opt_drv = NULL;
30gchar *opt_config = NULL;
31gchar *opt_channels = NULL;
32gchar *opt_channel_group = NULL;
33gchar *opt_triggers = NULL;
34gchar *opt_pds = NULL;
35#ifdef HAVE_SRD
36gchar *opt_pd_stack = NULL;
37gchar *opt_pd_annotations = NULL;
38gchar *opt_pd_meta = NULL;
39gchar *opt_pd_binary = NULL;
40#endif
41gchar *opt_input_format = NULL;
42gchar *opt_output_format = NULL;
6f7b4c5d 43gchar *opt_transform_module = NULL;
cd62e027
JS
44gchar *opt_show = NULL;
45gchar *opt_time = NULL;
46gchar *opt_samples = NULL;
47gchar *opt_frames = NULL;
48gchar *opt_continuous = NULL;
62a64762 49gchar *opt_get = NULL;
cd62e027
JS
50gchar *opt_set = NULL;
51
0894b972
JS
52/* defines a callback function that generates
53 an error if an option occurs twice */
54#define CHECK_ONCE(option) \
55static gboolean check_ ## option \
56 (const gchar *option_name, const gchar *value, \
57 gpointer data, GError **error) \
58{ \
59 (void)data; \
60 \
61 static gboolean seen = FALSE; \
62 if (seen) { \
63 g_set_error(error, G_OPTION_ERROR, G_OPTION_ERROR_FAILED, \
64 "superfluous option \"%s\"", option_name); \
65 return FALSE; \
66 } \
67 \
68 option = g_strdup(value); \
69 seen = TRUE; \
70 return TRUE; \
71}
72
73CHECK_ONCE(opt_drv)
74CHECK_ONCE(opt_config)
75CHECK_ONCE(opt_input_format)
76CHECK_ONCE(opt_output_format)
6f7b4c5d 77CHECK_ONCE(opt_transform_module)
0894b972
JS
78CHECK_ONCE(opt_channels)
79CHECK_ONCE(opt_channel_group)
80CHECK_ONCE(opt_triggers)
81#ifdef HAVE_SRD
82CHECK_ONCE(opt_pds)
83CHECK_ONCE(opt_pd_stack)
84CHECK_ONCE(opt_pd_annotations)
85CHECK_ONCE(opt_pd_meta)
86CHECK_ONCE(opt_pd_binary)
87#endif
88CHECK_ONCE(opt_time)
89CHECK_ONCE(opt_samples)
90CHECK_ONCE(opt_frames)
62a64762 91CHECK_ONCE(opt_get)
0894b972
JS
92
93#undef CHECK_STR_ONCE
94
44ac7614
JS
95static gchar **input_file_array = NULL;
96static gchar **output_file_array = NULL;
97
cd62e027
JS
98static const GOptionEntry optargs[] = {
99 {"version", 'V', 0, G_OPTION_ARG_NONE, &opt_version,
100 "Show version and support list", NULL},
101 {"loglevel", 'l', 0, G_OPTION_ARG_INT, &opt_loglevel,
102 "Set loglevel (5 is most verbose)", NULL},
0894b972 103 {"driver", 'd', 0, G_OPTION_ARG_CALLBACK, &check_opt_drv,
cd62e027 104 "The driver to use", NULL},
0894b972 105 {"config", 'c', 0, G_OPTION_ARG_CALLBACK, &check_opt_config,
cd62e027 106 "Specify device configuration options", NULL},
44ac7614 107 {"input-file", 'i', 0, G_OPTION_ARG_FILENAME_ARRAY, &input_file_array,
cd62e027 108 "Load input from file", NULL},
0894b972 109 {"input-format", 'I', 0, G_OPTION_ARG_CALLBACK, &check_opt_input_format,
cd62e027 110 "Input format", NULL},
44ac7614 111 {"output-file", 'o', 0, G_OPTION_ARG_FILENAME_ARRAY, &output_file_array,
cd62e027 112 "Save output to file", NULL},
0894b972 113 {"output-format", 'O', 0, G_OPTION_ARG_CALLBACK, &check_opt_output_format,
cd62e027 114 "Output format", NULL},
6f7b4c5d
UH
115 {"transform-module", 'T', 0, G_OPTION_ARG_CALLBACK, &check_opt_transform_module,
116 "Transform module", NULL},
0894b972 117 {"channels", 'C', 0, G_OPTION_ARG_CALLBACK, &check_opt_channels,
cd62e027 118 "Channels to use", NULL},
0894b972 119 {"channel-group", 'g', 0, G_OPTION_ARG_CALLBACK, &check_opt_channel_group,
cd62e027 120 "Channel groups", NULL},
0894b972 121 {"triggers", 't', 0, G_OPTION_ARG_CALLBACK, &check_opt_triggers,
cd62e027
JS
122 "Trigger configuration", NULL},
123 {"wait-trigger", 'w', 0, G_OPTION_ARG_NONE, &opt_wait_trigger,
124 "Wait for trigger", NULL},
125#ifdef HAVE_SRD
0894b972 126 {"protocol-decoders", 'P', 0, G_OPTION_ARG_CALLBACK, &check_opt_pds,
cd62e027 127 "Protocol decoders to run", NULL},
0894b972 128 {"protocol-decoder-stack", 'S', 0, G_OPTION_ARG_CALLBACK, &check_opt_pd_stack,
cd62e027 129 "Protocol decoder stack", NULL},
0894b972 130 {"protocol-decoder-annotations", 'A', 0, G_OPTION_ARG_CALLBACK, &check_opt_pd_annotations,
cd62e027 131 "Protocol decoder annotation(s) to show", NULL},
0894b972 132 {"protocol-decoder-meta", 'M', 0, G_OPTION_ARG_CALLBACK, &check_opt_pd_meta,
cd62e027 133 "Protocol decoder meta output to show", NULL},
0894b972 134 {"protocol-decoder-binary", 'B', 0, G_OPTION_ARG_CALLBACK, &check_opt_pd_binary,
cd62e027
JS
135 "Protocol decoder binary output to show", NULL},
136#endif
137 {"scan", 0, 0, G_OPTION_ARG_NONE, &opt_scan_devs,
138 "Scan for devices", NULL},
139 {"show", 0, 0, G_OPTION_ARG_NONE, &opt_show,
140 "Show device detail", NULL},
0894b972 141 {"time", 0, 0, G_OPTION_ARG_CALLBACK, &check_opt_time,
cd62e027 142 "How long to sample (ms)", NULL},
0894b972 143 {"samples", 0, 0, G_OPTION_ARG_CALLBACK, &check_opt_samples,
cd62e027 144 "Number of samples to acquire", NULL},
0894b972 145 {"frames", 0, 0, G_OPTION_ARG_CALLBACK, &check_opt_frames,
cd62e027
JS
146 "Number of frames to acquire", NULL},
147 {"continuous", 0, 0, G_OPTION_ARG_NONE, &opt_continuous,
148 "Sample continuously", NULL},
62a64762 149 {"get", 0, 0, G_OPTION_ARG_CALLBACK, &check_opt_get, "Get device option only", NULL},
cd62e027
JS
150 {"set", 0, 0, G_OPTION_ARG_NONE, &opt_set, "Set device options only", NULL},
151 {NULL, 0, 0, 0, NULL, NULL, NULL}
152};
153
154/* Parses the command line and sets all the 'opt_...' variables.
155 Returns zero on success, non-zero otherwise. */
156int parse_options(int argc, char **argv)
157{
158 GError *error = NULL;
159 GOptionContext *context = g_option_context_new(NULL);
160 int ret = 1;
161
162 g_option_context_add_main_entries(context, optargs, NULL);
163
164 if (!g_option_context_parse(context, &argc, &argv, &error)) {
165 g_critical("%s", error->message);
166 goto done;
167 }
168
44ac7614
JS
169 /*
170 * Because of encoding issues with filenames (mentioned in the glib
171 * documentation), we don't check them with a callback function, but
172 * collect them into arrays and then check if the arrays contain at
173 * most one element.
174 */
175 if (NULL != input_file_array) {
176 if (NULL != input_file_array[0] && NULL != input_file_array[1]) {
177 g_critical("option \"--input-file/-i\" only allowed once");
178 goto done;
179 }
180 opt_input_file = g_strdup(input_file_array[0]);
181 }
182
183 if (NULL != output_file_array) {
184 if (NULL != output_file_array[0] && NULL != output_file_array[1]) {
185 g_critical("option \"--output-file/-o\" only allowed once");
186 goto done;
187 }
188 opt_output_file = g_strdup(output_file_array[0]);
189 }
190
41ce2cbb
JS
191 if (1 != argc) {
192 g_critical("superfluous command line argument \"%s\"", argv[1]);
193 goto done;
194 }
195
cd62e027
JS
196 ret = 0;
197
198done:
199 g_option_context_free(context);
44ac7614
JS
200 g_strfreev(input_file_array);
201 g_strfreev(output_file_array);
202 input_file_array = NULL;
203 output_file_array = NULL;
cd62e027
JS
204
205 return ret;
206}
207
208void show_help(void)
209{
210 GOptionContext *context = g_option_context_new(NULL);
211 g_option_context_add_main_entries(context, optargs, NULL);
212
213 char *help = g_option_context_get_help(context, TRUE, NULL);
214 printf("%s", help);
215 g_free(help);
216
217 g_option_context_free(context);
218}