/* * (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 #include #include #include #include #include #include #include #include #include #include #include "config.h" #include "options.h" #include "support.h" #include "command.h" #include "conf.h" #ifdef DEBUG #define D(x) x #else #define D(x) #endif #define RCFILE "." PACKAGE "rc" #define MAX_LINE_LENGTH 1024 #define COMMENT_TOKEN '#' /* configuration field names */ #define CONF_ENABLE_COLORS "enable_colors" #define CONF_AUTO_CENTER "auto_center" /* configuration field names - colors */ #define CONF_COLOR_BACKGROUND "background_color" #define CONF_COLOR_TITLE "title_color" #define CONF_COLOR_LINE "line_color" #define CONF_COLOR_LIST "list_color" #define CONF_COLOR_PROGRESS "progress_color" #define CONF_COLOR_STATUS "status_color" #define CONF_COLOR_ALERT "alert_color" #define CONF_WIDE_CURSOR "wide_cursor" #define CONF_KEY_DEFINITION "key" typedef enum { KEY_PARSER_UNKNOWN, KEY_PARSER_CHAR, KEY_PARSER_DEC, KEY_PARSER_HEX, KEY_PARSER_DONE } key_parser_state_t; static int str2bool(char *str) { if( !strcasecmp(str,"no") || !strcasecmp(str,"false") || !strcasecmp(str,"off") || !strcasecmp(str,"0") ) return 0; return 1; } static int str2color(char *str) { if( !strcasecmp(str,"black") ) return COLOR_BLACK; else if( !strcasecmp(str,"red") ) return COLOR_RED; else if( !strcasecmp(str,"green") ) return COLOR_GREEN; else if( !strcasecmp(str,"yellow") ) return COLOR_YELLOW; else if( !strcasecmp(str,"blue") ) return COLOR_BLUE; else if( !strcasecmp(str,"magenta") ) return COLOR_MAGENTA; else if( !strcasecmp(str,"cyan") ) return COLOR_CYAN; else if( !strcasecmp(str,"white") ) return COLOR_WHITE; fprintf(stderr,"Warning: unknown color %s\n", str); return -1; } static int parse_key_value(char *str, size_t len, char **end) { int i, value; key_parser_state_t state; i=0; value=0; state=KEY_PARSER_UNKNOWN; *end = str; while( i str+len ) *end = str+len; return value; } static int parse_key_definition(char *str) { char buf[MAX_LINE_LENGTH]; char *p, *end; size_t len = strlen(str); int i,j,key; int keys[MAX_COMMAND_KEYS]; command_t cmd; /* get the command name */ i=0; j=0; memset(buf, 0, MAX_LINE_LENGTH); while( i=0 ) { keys[i++] = key; while( p=0 && IS_WHITESPACE(line[i]) ) { line[i] = '\0'; i--; } len = i+1; if( len>0 ) { i = 0; /* skip whitespace */ while( ienable_colors = str2bool(value); } /* auto center */ else if( !strcasecmp(CONF_AUTO_CENTER, name) ) { options->auto_center = str2bool(value); } /* background color */ else if( !strcasecmp(CONF_COLOR_BACKGROUND, name) ) { if( (color=str2color(value)) >= 0 ) options->bg_color = color; } /* color - top (title) window */ else if( !strcasecmp(CONF_COLOR_TITLE, name) ) { if( (color=str2color(value)) >= 0 ) options->title_color = color; } /* color - line (title) window */ else if( !strcasecmp(CONF_COLOR_LINE, name) ) { if( (color=str2color(value)) >= 0 ) options->line_color = color; } /* color - list window */ else if( !strcasecmp(CONF_COLOR_LIST, name) ) { if( (color=str2color(value)) >= 0 ) options->list_color = color; } /* color - progress bar */ else if( !strcasecmp(CONF_COLOR_PROGRESS, name) ) { if( (color=str2color(value)) >= 0 ) options->progress_color = color; } /* color - status window */ else if( !strcasecmp(CONF_COLOR_STATUS, name) ) { if( (color=str2color(value)) >= 0 ) options->status_color = color; } /* color - alerts */ else if( !strcasecmp(CONF_COLOR_ALERT, name) ) { if( (color=str2color(value)) >= 0 ) options->alert_color = color; } else if( !strcasecmp(CONF_WIDE_CURSOR, name) ) { options->wide_cursor = str2bool(value); } else { match_found = 0; } if( !match_found ) fprintf(stderr, "Unknown configuration parameter: %s\n", name); #ifdef DEBUG printf( " %s = %s %s\n", name, value, match_found ? "" : "- UNKNOWN SETTING!" ); #endif } } } D(printf( "--\n\n" )); if( free_filename ) g_free(filename); return 0; } int check_user_conf_dir(void) { int retval; char *dirname = g_build_filename(g_get_home_dir(), "." PACKAGE, NULL); if( g_file_test(dirname, G_FILE_TEST_IS_DIR) ) { g_free(dirname); return 0; } retval = mkdir(dirname, 0755); g_free(dirname); return retval; } char * get_user_key_binding_filename(void) { return g_build_filename(g_get_home_dir(), "." PACKAGE, "keys", NULL); } int read_configuration(options_t *options) { char *filename = NULL; /* check for user configuration ~/.ncmpc/config */ filename = g_build_filename(g_get_home_dir(), "." PACKAGE, "config", NULL); if( !g_file_test(filename, G_FILE_TEST_IS_REGULAR) ) { g_free(filename); filename = NULL; } /* check for global configuration SYSCONFDIR/ncmpc/config */ if( filename == NULL ) { filename = g_build_filename(SYSCONFDIR, PACKAGE, "config", NULL); if( !g_file_test(filename, G_FILE_TEST_IS_REGULAR) ) { g_free(filename); filename = NULL; } } /* load configuration */ if( filename ) { read_rc_file(filename, options); g_free(filename); filename = NULL; } /* check for user key bindings ~/.ncmpc/keys */ filename = get_user_key_binding_filename(); if( !g_file_test(filename, G_FILE_TEST_IS_REGULAR) ) { g_free(filename); filename = NULL; } /* check for global key bindings SYSCONFDIR/ncmpc/keys */ if( filename == NULL ) { filename = g_build_filename(SYSCONFDIR, PACKAGE, "keys", NULL); if( !g_file_test(filename, G_FILE_TEST_IS_REGULAR) ) { g_free(filename); filename = NULL; } } /* load key bindings */ if( filename ) { read_rc_file(filename, options); g_free(filename); filename = NULL; } return 0; }