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