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