X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fconfig%2Fcmdline.c;h=3e3537d8fcf51c64d0884bc1c2223e86367be66c;hb=efa68b295fd8faec9c79d2503a7c66ba74a3c36c;hp=a16c3225fc6181d6e2ef07292189986c0688731e;hpb=2d9c9ee62b6f63155566a25c4e65b0d0dd14cf6d;p=vlc diff --git a/src/config/cmdline.c b/src/config/cmdline.c index a16c3225fc..3e3537d8fc 100644 --- a/src/config/cmdline.c +++ b/src/config/cmdline.c @@ -21,130 +21,78 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. *****************************************************************************/ -#include -#include "../libvlc.h" -#include "vlc_keys.h" -#include "vlc_charset.h" - -#include /* errno */ - -#ifdef HAVE_LIMITS_H -# include -#endif - -#ifdef HAVE_UNISTD_H -# include /* getuid() */ -#endif - -#ifdef HAVE_GETOPT_LONG -# ifdef HAVE_GETOPT_H -# include /* getopt() */ -# endif -#else -# include "../extras/getopt.h" +#ifdef HAVE_CONFIG_H +# include "config.h" #endif -#if defined(HAVE_GETPWUID) -# include /* getpwuid() */ -#endif +#include +#include "../libvlc.h" +#include +#include +#include -#if defined( HAVE_SYS_STAT_H ) -# include -#endif -#if defined( HAVE_SYS_TYPES_H ) -# include -#endif -#if defined( WIN32 ) -# if !defined( UNDER_CE ) -# include -# endif -#include -#endif +#include "vlc_getopt.h" -#include "config.h" +#include "configuration.h" #include "modules/modules.h" -/***************************************************************************** - * config_LoadCmdLine: parse command line - ***************************************************************************** +#include + +#undef config_LoadCmdLine +/** * Parse command line for configuration options. + * * Now that the module_bank has been initialized, we can dynamically * generate the longopts structure used by getops. We have to do it this way * because we don't know (and don't want to know) in advance the configuration * options used (ie. exported) by each module. - *****************************************************************************/ -int __config_LoadCmdLine( vlc_object_t *p_this, int *pi_argc, - const char *ppsz_argv[], - vlc_bool_t b_ignore_errors ) + * + * @param p_this object to write command line options as variables to + * @param i_argc number of command line arguments + * @param ppsz_args commandl ine arguments [IN/OUT] + * @param pindex NULL to ignore unknown options, + * otherwise index of the first non-option argument [OUT] + * @return 0 on success, -1 on error. + */ +int config_LoadCmdLine( vlc_object_t *p_this, int i_argc, + const char *ppsz_argv[], int *pindex ) { int i_cmd, i_index, i_opts, i_shortopts, flag, i_verbose = 0; module_t *p_parser; - vlc_list_t *p_list; - struct option *p_longopts; - int i_modules_index; + struct vlc_option *p_longopts; + const char **argv_copy = NULL; +#define b_ignore_errors (pindex == NULL) /* Short options */ module_config_t *pp_shortopts[256]; char *psz_shortopts; - /* Set default configuration and copy arguments */ - p_this->p_libvlc->i_argc = *pi_argc; - p_this->p_libvlc->ppsz_argv = ppsz_argv; - -#ifdef __APPLE__ - /* When VLC.app is run by double clicking in Mac OS X, the 2nd arg - * is the PSN - process serial number (a unique PID-ish thingie) - * still ok for real Darwin & when run from command line */ - if ( (*pi_argc > 1) && (strncmp( ppsz_argv[ 1 ] , "-psn" , 4 ) == 0) ) - /* for example -psn_0_9306113 */ - { - /* GDMF!... I can't do this or else the MacOSX window server will - * not pick up the PSN and not register the app and we crash... - * hence the following kludge otherwise we'll get confused w/ argv[1] - * being an input file name */ -#if 0 - ppsz_argv[ 1 ] = NULL; -#endif - *pi_argc = *pi_argc - 1; - pi_argc--; - return 0; - } -#endif - /* List all modules */ - p_list = vlc_list_find( p_this, VLC_OBJECT_MODULE, FIND_ANYWHERE ); + module_t **list = module_list_get (NULL); /* * Generate the longopts and shortopts structures used by getopt_long */ i_opts = 0; - for( i_modules_index = 0; i_modules_index < p_list->i_count; - i_modules_index++ ) - { - p_parser = (module_t *)p_list->p_values[i_modules_index].p_object ; - + for (size_t i = 0; (p_parser = list[i]) != NULL; i++) /* count the number of exported configuration options (to allocate * longopts). We also need to allocate space for two options when * dealing with boolean to allow for --foo and --no-foo */ - i_opts += p_parser->i_config_items - + 2 * p_parser->i_bool_items; - } + i_opts += p_parser->i_config_items + 2 * p_parser->i_bool_items; - p_longopts = malloc( sizeof(struct option) * (i_opts + 1) ); + p_longopts = malloc( sizeof(*p_longopts) * (i_opts + 1) ); if( p_longopts == NULL ) { - msg_Err( p_this, "out of memory" ); - vlc_list_release( p_list ); + module_list_free (list); return -1; } - psz_shortopts = malloc( sizeof( char ) * (2 * i_opts + 1) ); + psz_shortopts = malloc( 2 * i_opts + 1 ); if( psz_shortopts == NULL ) { - msg_Err( p_this, "out of memory" ); free( p_longopts ); - vlc_list_release( p_list ); + module_list_free (list); return -1; } @@ -153,17 +101,16 @@ int __config_LoadCmdLine( vlc_object_t *p_this, int *pi_argc, * us, ignoring the arity of the options */ if( b_ignore_errors ) { - ppsz_argv = (const char**)malloc( *pi_argc * sizeof(char *) ); - if( ppsz_argv == NULL ) + argv_copy = (const char**)malloc( i_argc * sizeof(char *) ); + if( argv_copy == NULL ) { - msg_Err( p_this, "out of memory" ); free( psz_shortopts ); free( p_longopts ); - vlc_list_release( p_list ); + module_list_free (list); return -1; } - memcpy( ppsz_argv, p_this->p_libvlc->ppsz_argv, - *pi_argc * sizeof(char *) ); + memcpy( argv_copy, ppsz_argv, i_argc * sizeof(char *) ); + ppsz_argv = argv_copy; } i_shortopts = 0; @@ -174,11 +121,9 @@ int __config_LoadCmdLine( vlc_object_t *p_this, int *pi_argc, /* Fill the p_longopts and psz_shortopts structures */ i_index = 0; - for( i_modules_index = 0; i_modules_index < p_list->i_count; - i_modules_index++ ) + for (size_t i = 0; (p_parser = list[i]) != NULL; i++) { module_config_t *p_item, *p_end; - p_parser = (module_t *)p_list->p_values[i_modules_index].p_object ; if( !p_parser->i_config_items ) continue; @@ -188,45 +133,41 @@ int __config_LoadCmdLine( vlc_object_t *p_this, int *pi_argc, p_item++ ) { /* Ignore hints */ - if( p_item->i_type & CONFIG_HINT ) + if( !CONFIG_ITEM(p_item->i_type) ) continue; /* Add item to long options */ p_longopts[i_index].name = strdup( p_item->psz_name ); if( p_longopts[i_index].name == NULL ) continue; - p_longopts[i_index].has_arg = - (p_item->i_type == CONFIG_ITEM_BOOL)? - no_argument : required_argument; p_longopts[i_index].flag = &flag; p_longopts[i_index].val = 0; - i_index++; - /* When dealing with bools we also need to add the --no-foo - * option */ - if( p_item->i_type == CONFIG_ITEM_BOOL ) + if( CONFIG_CLASS(p_item->i_type) != CONFIG_ITEM_BOOL ) + p_longopts[i_index].has_arg = true; + else + /* Booleans also need --no-foo and --nofoo options */ { - char *psz_name = malloc( strlen(p_item->psz_name) + 3 ); - if( psz_name == NULL ) continue; - strcpy( psz_name, "no" ); - strcat( psz_name, p_item->psz_name ); + char *psz_name; + + p_longopts[i_index].has_arg = false; + i_index++; + if( asprintf( &psz_name, "no%s", p_item->psz_name ) == -1 ) + continue; p_longopts[i_index].name = psz_name; - p_longopts[i_index].has_arg = no_argument; + p_longopts[i_index].has_arg = false; p_longopts[i_index].flag = &flag; p_longopts[i_index].val = 1; i_index++; - psz_name = malloc( strlen(p_item->psz_name) + 4 ); - if( psz_name == NULL ) continue; - strcpy( psz_name, "no-" ); - strcat( psz_name, p_item->psz_name ); - + if( asprintf( &psz_name, "no-%s", p_item->psz_name ) == -1 ) + continue; p_longopts[i_index].name = psz_name; - p_longopts[i_index].has_arg = no_argument; + p_longopts[i_index].has_arg = false; p_longopts[i_index].flag = &flag; p_longopts[i_index].val = 1; - i_index++; } + i_index++; /* If item also has a short option, add it */ if( p_item->i_short ) @@ -234,41 +175,39 @@ int __config_LoadCmdLine( vlc_object_t *p_this, int *pi_argc, pp_shortopts[(int)p_item->i_short] = p_item; psz_shortopts[i_shortopts] = p_item->i_short; i_shortopts++; - if( p_item->i_type != CONFIG_ITEM_BOOL ) + if( p_item->i_type != CONFIG_ITEM_BOOL + && p_item->i_short != 'v' ) { psz_shortopts[i_shortopts] = ':'; i_shortopts++; - - if( p_item->i_short == 'v' ) - { - psz_shortopts[i_shortopts] = ':'; - i_shortopts++; - } } } } } /* We don't need the module list anymore */ - vlc_list_release( p_list ); + module_list_free( list ); /* Close the longopts and shortopts structures */ - memset( &p_longopts[i_index], 0, sizeof(struct option) ); + memset( &p_longopts[i_index], 0, sizeof(*p_longopts) ); psz_shortopts[i_shortopts] = '\0'; + int ret = -1; + /* * Parse the command line options */ - opterr = 0; - optind = 0; /* set to 0 to tell GNU getopt to reinitialize */ - while( ( i_cmd = getopt_long( *pi_argc, (char **)ppsz_argv, psz_shortopts, - p_longopts, &i_index ) ) != -1 ) + vlc_getopt_t state; + state.ind = 0 ; /* set to 0 to tell GNU getopt to reinitialize */ + while( ( i_cmd = vlc_getopt_long( i_argc, (char **)ppsz_argv, + psz_shortopts, + p_longopts, &i_index, &state ) ) != -1 ) { /* A long option has been recognized */ if( i_cmd == 0 ) { module_config_t *p_conf; - char *psz_name = (char *)p_longopts[i_index].name; + const char *psz_name = p_longopts[i_index].name; /* Check if we deal with a --nofoo or --no-foo long option */ if( flag ) psz_name += psz_name[2] == '-' ? 3 : 2; @@ -278,58 +217,46 @@ int __config_LoadCmdLine( vlc_object_t *p_this, int *pi_argc, if( p_conf ) { /* Check if the option is deprecated */ - if( p_conf->psz_current ) + if( p_conf->b_removed ) { - if( p_conf->b_strict ) - { - fprintf(stderr, - "Warning: option --%s no longer exists.\n", - p_conf->psz_name); - continue; - } + fprintf(stderr, + "Warning: option --%s no longer exists.\n", + psz_name); + continue; + } - fprintf( stderr, - "%s: option --%s is deprecated. Use --%s instead.\n", - b_ignore_errors ? "Warning" : "Error", - p_conf->psz_name, p_conf->psz_current); + if( p_conf->psz_oldname + && !strcmp( p_conf->psz_oldname, psz_name) ) + { if( !b_ignore_errors ) { - /*free */ - for( i_index = 0; p_longopts[i_index].name; i_index++ ) - free( (char *)p_longopts[i_index].name ); - - free( p_longopts ); - free( psz_shortopts ); - return -1; + fprintf( stderr, "Error: option --%s is deprecated. " + "Use --%s instead.\n", + psz_name, p_conf->psz_name ); + goto out; } - psz_name = (char *)p_conf->psz_current; - p_conf = config_FindConfig( p_this, psz_name ); + psz_name = p_conf->psz_name; } - switch( p_conf->i_type ) + switch( CONFIG_CLASS(p_conf->i_type) ) { case CONFIG_ITEM_STRING: - case CONFIG_ITEM_PASSWORD: - case CONFIG_ITEM_FILE: - case CONFIG_ITEM_DIRECTORY: - case CONFIG_ITEM_MODULE: - case CONFIG_ITEM_MODULE_LIST: - case CONFIG_ITEM_MODULE_LIST_CAT: - case CONFIG_ITEM_MODULE_CAT: - config_PutPsz( p_this, psz_name, optarg ); + var_Create( p_this, psz_name, VLC_VAR_STRING ); + var_SetString( p_this, psz_name, state.arg ); break; case CONFIG_ITEM_INTEGER: - config_PutInt( p_this, psz_name, strtol(optarg, 0, 0)); + var_Create( p_this, psz_name, VLC_VAR_INTEGER ); + var_SetInteger( p_this, psz_name, + strtoll(state.arg, NULL, 0)); break; case CONFIG_ITEM_FLOAT: - config_PutFloat( p_this, psz_name, (float)atof(optarg) ); - break; - case CONFIG_ITEM_KEY: - config_PutInt( p_this, psz_name, ConfigStringToKey( optarg ) ); + var_Create( p_this, psz_name, VLC_VAR_FLOAT ); + var_SetFloat( p_this, psz_name, us_atof(state.arg) ); break; case CONFIG_ITEM_BOOL: - config_PutInt( p_this, psz_name, !flag ); + var_Create( p_this, psz_name, VLC_VAR_BOOL ); + var_SetBool( p_this, psz_name, !flag ); break; } continue; @@ -339,52 +266,29 @@ int __config_LoadCmdLine( vlc_object_t *p_this, int *pi_argc, /* A short option has been recognized */ if( pp_shortopts[i_cmd] != NULL ) { - switch( pp_shortopts[i_cmd]->i_type ) + const char *name = pp_shortopts[i_cmd]->psz_name; + switch( CONFIG_CLASS(pp_shortopts[i_cmd]->i_type) ) { case CONFIG_ITEM_STRING: - case CONFIG_ITEM_PASSWORD: - case CONFIG_ITEM_FILE: - case CONFIG_ITEM_DIRECTORY: - case CONFIG_ITEM_MODULE: - case CONFIG_ITEM_MODULE_CAT: - case CONFIG_ITEM_MODULE_LIST: - case CONFIG_ITEM_MODULE_LIST_CAT: - config_PutPsz( p_this, pp_shortopts[i_cmd]->psz_name, optarg ); + var_Create( p_this, name, VLC_VAR_STRING ); + var_SetString( p_this, name, state.arg ); break; case CONFIG_ITEM_INTEGER: + var_Create( p_this, name, VLC_VAR_INTEGER ); if( i_cmd == 'v' ) { - if( optarg ) - { - if( *optarg == 'v' ) /* eg. -vvv */ - { - i_verbose++; - while( *optarg == 'v' ) - { - i_verbose++; - optarg++; - } - } - else - { - i_verbose += atoi( optarg ); /* eg. -v2 */ - } - } - else - { - i_verbose++; /* -v */ - } - config_PutInt( p_this, pp_shortopts[i_cmd]->psz_name, - i_verbose ); + i_verbose++; /* -v */ + var_SetInteger( p_this, name, i_verbose ); } else { - config_PutInt( p_this, pp_shortopts[i_cmd]->psz_name, - strtol(optarg, 0, 0) ); + var_SetInteger( p_this, name, + strtoll(state.arg, NULL, 0) ); } break; case CONFIG_ITEM_BOOL: - config_PutInt( p_this, pp_shortopts[i_cmd]->psz_name, 1 ); + var_Create( p_this, name, VLC_VAR_BOOL ); + var_SetBool( p_this, name, true ); break; } @@ -394,35 +298,31 @@ int __config_LoadCmdLine( vlc_object_t *p_this, int *pi_argc, /* Internal error: unknown option */ if( !b_ignore_errors ) { - fprintf( stderr, "%s: unknown option" - " or missing mandatory argument ", - p_this->p_libvlc->psz_object_name ); - if( optopt ) + fputs( "vlc: unknown option" + " or missing mandatory argument ", stderr ); + if( state.opt ) { - fprintf( stderr, "`-%c'\n", optopt ); + fprintf( stderr, "`-%c'\n", state.opt ); } else { - fprintf( stderr, "`%s'\n", ppsz_argv[optind-1] ); + fprintf( stderr, "`%s'\n", ppsz_argv[state.ind-1] ); } - fprintf( stderr, "Try `%s --help' for more information.\n", - p_this->p_libvlc->psz_object_name ); - - for( i_index = 0; p_longopts[i_index].name; i_index++ ) - free( (char *)p_longopts[i_index].name ); - free( p_longopts ); - free( psz_shortopts ); - return -1; + fputs( "Try `vlc --help' for more information.\n", stderr ); + goto out; } } + ret = 0; + if( pindex != NULL ) + *pindex = state.ind; +out: /* Free allocated resources */ for( i_index = 0; p_longopts[i_index].name; i_index++ ) free( (char *)p_longopts[i_index].name ); free( p_longopts ); free( psz_shortopts ); - if( b_ignore_errors ) free( ppsz_argv ); - - return 0; + free( argv_copy ); + return ret; }