1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
|
/*
* (c) 2004 by Kalle Wallin <kaw@linux.se>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*/
#include "options.h"
#include "config.h"
#include "defaults.h"
#include "charset.h"
#include "command.h"
#include "conf.h"
#include <stdlib.h>
#include <string.h>
#include <glib.h>
#define MAX_LONGOPT_LENGTH 32
#define ERROR_UNKNOWN_OPTION 0x01
#define ERROR_BAD_ARGUMENT 0x02
#define ERROR_GOT_ARGUMENT 0x03
#define ERROR_MISSING_ARGUMENT 0x04
typedef struct {
int shortopt;
const char *longopt;
const char *argument;
const char *descrition;
} arg_opt_t;
typedef void (*option_callback_fn_t)(int c, const char *arg);
options_t options = {
.port = DEFAULT_PORT,
.crossfade_time = DEFAULT_CROSSFADE_TIME,
.seek_time = 1,
#ifdef ENABLE_LYRICS_SCREEN
.lyrics_timeout = DEFAULT_LYRICS_TIMEOUT,
#endif
.find_wrap = true,
.wide_cursor = true,
.audible_bell = true,
#ifndef NCMPC_MINI
.scroll = DEFAULT_SCROLL,
.welcome_screen_list = true,
#endif
};
static const arg_opt_t option_table[] = {
{ '?', "help", NULL, "Show this help message" },
{ 'V', "version", NULL, "Display version information" },
{ 'c', "colors", NULL, "Enable colors" },
{ 'C', "no-colors", NULL, "Disable colors" },
#ifdef HAVE_GETMOUSE
{ 'm', "mouse", NULL, "Enable mouse" },
{ 'M', "no-mouse", NULL, "Disable mouse" },
#endif
{ 'e', "exit", NULL, "Exit on connection errors" },
{ 'p', "port", "PORT", "Connect to server on port [" DEFAULT_PORT_STR "]" },
{ 'h', "host", "HOST", "Connect to server on host [" DEFAULT_HOST "]" },
{ 'P', "password","PASSWORD", "Connect with password" },
{ 'f', "config", "FILE", "Read configuration from file" },
{ 'k', "key-file","FILE", "Read configuration from file" },
{ 'S', "no-splash", NULL, "Don't show the splash screen" },
#ifndef NDEBUG
{ 'K', "dump-keys", NULL, "Dump key bindings to stdout" },
#endif
};
static const unsigned option_table_size = sizeof(option_table) / sizeof(option_table[0]);
static const arg_opt_t *
lookup_option(int s, char *l)
{
unsigned i;
for (i = 0; i < option_table_size; ++i) {
if (l && strcmp(l, option_table[i].longopt) == 0)
return &option_table[i];;
if (s && s == option_table[i].shortopt)
return &option_table[i];;
}
return NULL;
}
static void
option_error(int error, const char *option, const char *arg)
{
switch (error) {
case ERROR_UNKNOWN_OPTION:
fprintf(stderr, PACKAGE ": invalid option %s\n", option);
break;
case ERROR_BAD_ARGUMENT:
fprintf(stderr, PACKAGE ": bad argument: %s\n", option);
break;
case ERROR_GOT_ARGUMENT:
fprintf(stderr, PACKAGE ": invalid option %s=%s\n", option, arg);
break;
case ERROR_MISSING_ARGUMENT:
fprintf(stderr, PACKAGE ": missing value for %s option\n", option);
break;
default:
fprintf(stderr, PACKAGE ": internal error %d\n", error);
break;
}
exit(EXIT_FAILURE);
}
static void
display_help(void)
{
unsigned i;
printf("Usage: %s [OPTION]...\n", PACKAGE);
for (i = 0; i < option_table_size; ++i) {
char tmp[MAX_LONGOPT_LENGTH];
if (option_table[i].argument)
g_snprintf(tmp, MAX_LONGOPT_LENGTH, "%s=%s",
option_table[i].longopt,
option_table[i].argument);
else
g_strlcpy(tmp, option_table[i].longopt, 64);
printf(" -%c, --%-20s %s\n",
option_table[i].shortopt,
tmp,
option_table[i].descrition);
i++;
}
}
static void
handle_option(int c, const char *arg)
{
switch (c) {
case '?': /* --help */
display_help();
exit(EXIT_SUCCESS);
case 'V': /* --version */
puts(PACKAGE " version: " VERSION "\n"
"build options:"
#ifndef NDEBUG
" debug"
#endif
#ifdef ENABLE_NLS
" nls"
#endif
#ifdef ENABLE_COLORS
" colors"
#else
" no-colors"
#endif
#ifdef HAVE_GETMOUSE
" getmouse"
#endif
#ifdef ENABLE_ARTIST_SCREEN
" artist-screen"
#endif
#ifdef ENABLE_SEARCH_SCREEN
" search-screen"
#endif
#ifdef ENABLE_KEYDEF_SCREEN
" key-screen"
#endif
#ifdef ENABLE_OUTPUTS_SCREEN
" outputs-screen"
#endif
"\n");
exit(EXIT_SUCCESS);
case 'c': /* --colors */
#ifdef ENABLE_COLORS
options.enable_colors = true;
#endif
break;
case 'C': /* --no-colors */
#ifdef ENABLE_COLORS
options.enable_colors = false;
#endif
break;
case 'm': /* --mouse */
#ifdef HAVE_GETMOUSE
options.enable_mouse = true;
#endif
break;
case 'M': /* --no-mouse */
#ifdef HAVE_GETMOUSE
options.enable_mouse = false;
#endif
break;
case 'e': /* --exit */
/* deprecated */
break;
case 'p': /* --port */
options.port = atoi(arg);
break;
case 'h': /* --host */
if( options.host )
g_free(options.host);
options.host = g_strdup(arg);
break;
case 'P': /* --password */
if( options.password )
g_free(options.password);
options.password = locale_to_utf8(arg);
break;
case 'f': /* --config */
if( options.config_file )
g_free(options.config_file);
options.config_file = g_strdup(arg);
break;
case 'k': /* --key-file */
if( options.key_file )
g_free(options.key_file);
options.key_file = g_strdup(arg);
break;
case 'S': /* --key-file */
/* the splash screen was removed */
break;
#ifndef NDEBUG
case 'K': /* --dump-keys */
read_configuration();
write_key_bindings(stdout, KEYDEF_WRITE_ALL | KEYDEF_COMMENT_ALL);
exit(EXIT_SUCCESS);
break;
#endif
default:
fprintf(stderr,"Unknown Option %c = %s\n", c, arg);
break;
}
}
void
options_parse(int argc, const char *argv[])
{
int i;
const arg_opt_t *opt = NULL;
option_callback_fn_t option_cb = handle_option;
i=1;
while (i < argc) {
const char *arg = argv[i];
size_t len = strlen(arg);
/* check for a long option */
if (g_str_has_prefix(arg, "--")) {
char *name, *value;
/* make shure we got an argument for the previous option */
if( opt && opt->argument )
option_error(ERROR_MISSING_ARGUMENT, opt->longopt, opt->argument);
/* retreive a option argument */
if ((value=g_strrstr(arg+2, "="))) {
*value = '\0';
name = g_strdup(arg);
*value = '=';
value++;
} else
name = g_strdup(arg);
/* check if the option exists */
if( (opt=lookup_option(0, name+2)) == NULL )
option_error(ERROR_UNKNOWN_OPTION, name, NULL);
g_free(name);
/* abort if we got an argument to the option and dont want one */
if( value && opt->argument==NULL )
option_error(ERROR_GOT_ARGUMENT, arg, value);
/* execute option callback */
if (value || opt->argument==NULL) {
option_cb (opt->shortopt, value);
opt = NULL;
}
}
/* check for short options */
else if (len>=2 && g_str_has_prefix(arg, "-")) {
size_t j;
for(j=1; j<len; j++) {
/* make shure we got an argument for the previous option */
if (opt && opt->argument)
option_error(ERROR_MISSING_ARGUMENT,
opt->longopt, opt->argument);
/* check if the option exists */
if ((opt=lookup_option(arg[j], NULL)) == NULL)
option_error(ERROR_UNKNOWN_OPTION, arg, NULL);
/* if no option argument is needed execute callback */
if (opt->argument == NULL) {
option_cb (opt->shortopt, NULL);
opt = NULL;
}
}
} else {
/* is this a option argument? */
if (opt && opt->argument) {
option_cb (opt->shortopt, arg);
opt = NULL;
} else
option_error(ERROR_BAD_ARGUMENT, arg, NULL);
}
i++;
}
if (opt && opt->argument == NULL)
option_cb (opt->shortopt, NULL);
else if (opt && opt->argument)
option_error(ERROR_MISSING_ARGUMENT, opt->longopt, opt->argument);
}
void
options_init(void)
{
const char *value;
char *tmp;
/* get initial values for host and password from MPD_HOST (enviroment) */
if ((value = g_getenv(MPD_HOST_ENV)))
options.host = g_strdup(value);
else
options.host = g_strdup(DEFAULT_HOST);
if ((tmp = g_strstr_len(options.host, strlen(options.host), "@"))) {
char *oldhost = options.host;
*tmp = '\0';
options.password = locale_to_utf8(oldhost);
options.host = g_strdup(tmp+1);
g_free(oldhost);
}
/* get initial values for port from MPD_PORT (enviroment) */
if ((value = g_getenv(MPD_PORT_ENV)))
options.port = atoi(value);
/* default option values */
options.list_format = g_strdup(DEFAULT_LIST_FORMAT);
options.status_format = g_strdup(DEFAULT_STATUS_FORMAT);
options.screen_list = g_strsplit_set(DEFAULT_SCREEN_LIST, " ", 0);
options.timedisplay_type = g_strdup(DEFAULT_TIMEDISPLAY_TYPE);
#ifndef NCMPC_MINI
options.scroll_sep = g_strdup(DEFAULT_SCROLL_SEP);
#endif
}
|