X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=src%2Foptions.c;h=3f784d11cc9c00ab23b84a1be23af8f7690790ba;hb=3f0e5e147f89f77061739781889571d24da8b7d8;hp=7426a55caed471dcc240973488f07074992fb4ae;hpb=e7981e0e28541e5046c40879a4fdbcc308f143ec;p=ncmpc.git diff --git a/src/options.c b/src/options.c index 7426a55..3f784d1 100644 --- a/src/options.c +++ b/src/options.c @@ -1,32 +1,34 @@ -/* - * $Id$ - * - * (c) 2004 by Kalle Wallin - * +/* ncmpc (Ncurses MPD Client) + * (c) 2004-2009 The Music Player Daemon Project + * Project homepage: http://musicpd.org + * 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 - * - */ + + * 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., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. +*/ #include "options.h" #include "config.h" -#include "ncmpc.h" -#include "support.h" +#include "defaults.h" +#include "charset.h" #include "command.h" #include "conf.h" +#include "i18n.h" #include +#include #include +#include #define MAX_LONGOPT_LENGTH 32 @@ -46,194 +48,246 @@ typedef struct { typedef void (*option_callback_fn_t)(int c, const char *arg); -options_t options; +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, + .display_time = true, +#endif +}; -static 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" }, +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" }, + { '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" }, + { '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" }, - { 'D', "debug", NULL, "Enable debug output on stderr" }, + { 'K', "dump-keys", NULL, "Dump key bindings to stdout" }, #endif - { 0, NULL, NULL, NULL }, }; -static arg_opt_t * +static const unsigned option_table_size = sizeof(option_table) / sizeof(option_table[0]); + +static const arg_opt_t * lookup_option(int s, char *l) { - int i; - - i=0; - while( option_table[i].descrition ) - { - if( l && strcmp(l, option_table[i].longopt) == 0 ) - return &option_table[i];; - if( s && s==option_table[i].shortopt ) - return &option_table[i];; - i++; - } - return NULL; + 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); + 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 +static void display_help(void) { - int i = 0; - - printf("Usage: %s [OPTION]...\n", PACKAGE); - while( option_table[i].descrition ) - { - 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++; - } + 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 +static void handle_option(int c, const char *arg) { - D("option callback -%c %s\n", c, arg); - switch(c) - { - case '?': /* --help */ - display_help(); - exit(EXIT_SUCCESS); - case 'V': /* --version */ - printf("%s version: %s\n", PACKAGE, VERSION); - printf("build options:"); + switch (c) { + case '?': /* --help */ + display_help(); + exit(EXIT_SUCCESS); + case 'V': /* --version */ + puts(PACKAGE " version: " VERSION "\n" + "build options:" +#ifdef NCMPC_MINI + " mini" +#endif #ifndef NDEBUG - printf(" debug"); + " debug" +#endif +#ifdef ENABLE_MULTIBYTE + " multibyte" +#endif +#ifdef ENABLE_WIDE + " wide" +#endif +#ifdef ENABLE_LOCALE + " locale" #endif #ifdef ENABLE_NLS - printf(" nls"); + " nls" +#endif +#ifdef ENABLE_COLORS + " colors" +#else + " no-colors" +#endif +#ifdef ENABLE_LIRC + " lirc" #endif #ifdef HAVE_GETMOUSE - printf(" getmouse"); + " getmouse" #endif #ifdef ENABLE_ARTIST_SCREEN - printf(" artist-screen"); + " artist-screen" +#endif +#ifdef ENABLE_HELP_SCREEN + " help-screen" #endif #ifdef ENABLE_SEARCH_SCREEN - printf(" search-screen"); + " search-screen" +#endif +#ifdef ENABLE_SONG_SCREEN + " song-screen" #endif #ifdef ENABLE_KEYDEF_SCREEN - printf(" key-screen"); + " key-screen" +#endif +#ifdef ENABLE_LYRICS_SCREEN + " lyrics-screen" +#endif +#ifdef ENABLE_OUTPUTS_SCREEN + " outputs-screen" +#endif + + "\n"); +#ifndef NCMPC_MINI + if (strcmp("translator-credits", _("translator-credits")) != 0) + /* To translators: these credits are shown + when ncmpc is started with "--version" */ + printf("\n%s\n", _("translator-credits")); +#endif + exit(EXIT_SUCCESS); + case 'c': /* --colors */ +#ifdef ENABLE_COLORS + options.enable_colors = true; #endif -#ifdef ENABLE_CLOCK_SCREEN - printf(" clock-screen"); + break; + case 'C': /* --no-colors */ +#ifdef ENABLE_COLORS + options.enable_colors = false; #endif - printf("\n"); - exit(EXIT_SUCCESS); - case 'c': /* --colors */ - options.enable_colors = TRUE; - break; - case 'C': /* --no-colors */ - options.enable_colors = FALSE; - break; - case 'm': /* --mouse */ - options.enable_mouse = TRUE; - break; - case 'M': /* --no-mouse */ - options.enable_mouse = FALSE; - break; - case 'e': /* --exit */ - options.reconnect = FALSE; - 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; + 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(&options); - write_key_bindings(stdout, KEYDEF_WRITE_ALL | KEYDEF_COMMENT_ALL); - exit(EXIT_SUCCESS); - break; - case 'D': /* --debug */ - options.debug = TRUE; - break; + 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; - } + default: + fprintf(stderr,"Unknown Option %c = %s\n", c, arg); + break; + } } -options_t * +void options_parse(int argc, const char *argv[]) { int i; - arg_opt_t *opt = NULL; + const arg_opt_t *opt = NULL; option_callback_fn_t option_cb = handle_option; i=1; @@ -279,23 +333,23 @@ options_parse(int argc, const char *argv[]) for(j=1; jargument ) + 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 ) + 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 ) { + if (opt->argument == NULL) { option_cb (opt->shortopt, NULL); opt = NULL; } } } else { /* is this a option argument? */ - if( opt && opt->argument) { + if (opt && opt->argument) { option_cb (opt->shortopt, arg); opt = NULL; } else @@ -304,29 +358,25 @@ options_parse(int argc, const char *argv[]) i++; } - if( opt && opt->argument==NULL) + if (opt && opt->argument == NULL) option_cb (opt->shortopt, NULL); - else if( opt && opt->argument ) + else if (opt && opt->argument) option_error(ERROR_MISSING_ARGUMENT, opt->longopt, opt->argument); - - return &options; } -options_t * -options_init( void ) +void +options_init(void) { const char *value; char *tmp; - memset(&options, 0, sizeof(options_t)); - /* get initial values for host and password from MPD_HOST (enviroment) */ - if ((value=g_getenv(MPD_HOST_ENV))) + 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), "@"))) { + if ((tmp = g_strstr_len(options.host, strlen(options.host), "@"))) { char *oldhost = options.host; *tmp = '\0'; options.password = locale_to_utf8(oldhost); @@ -335,23 +385,15 @@ options_init( void ) } /* get initial values for port from MPD_PORT (enviroment) */ - if ((value=g_getenv(MPD_PORT_ENV))) + if ((value = g_getenv(MPD_PORT_ENV))) options.port = atoi(value); - else - options.port = DEFAULT_PORT; /* default option values */ - options.reconnect = TRUE; - options.find_wrap = TRUE; - options.wide_cursor = TRUE; - options.audible_bell = TRUE; - options.crossfade_time = DEFAULT_CROSSFADE_TIME; - options.seek_time = 1; + 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); - options.lyrics_timeout = DEFAULT_LYRICS_TIMEOUT; - options.scroll = DEFAULT_SCROLL; +#ifndef NCMPC_MINI options.scroll_sep = g_strdup(DEFAULT_SCROLL_SEP); - - return &options; +#endif }