]> git.sesse.net Git - vlc/blob - src/config/cmdline.c
73e51af30d0ef4e9476309309129f56a71a9b0ab
[vlc] / src / config / cmdline.c
1 /*****************************************************************************
2  * cmdline.c: command line parsing
3  *****************************************************************************
4  * Copyright (C) 2001-2007 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Gildas Bazin <gbazin@videolan.org>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 #ifdef HAVE_CONFIG_H
25 # include "config.h"
26 #endif
27
28 #include <vlc_common.h>
29 #include "../libvlc.h"
30 #include <vlc_keys.h>
31 #include <vlc_charset.h>
32
33 #include "vlc_getopt.h"
34
35 #include "configuration.h"
36 #include "modules/modules.h"
37
38 #include <assert.h>
39
40 #undef config_LoadCmdLine
41 /**
42  * Parse command line for configuration options.
43  *
44  * Now that the module_bank has been initialized, we can dynamically
45  * generate the longopts structure used by getops. We have to do it this way
46  * because we don't know (and don't want to know) in advance the configuration
47  * options used (ie. exported) by each module.
48  *
49  * @param p_this object to write command line options as variables to
50  * @param pi_argc number of command line arguments [IN/OUT]
51  * @param ppsz_args commandl ine arguments [IN/OUT]
52  * @param b_ignore_errors whether to ignore parsing errors
53  * @return 0 on success, -1 on error.
54  *
55  * @warning This function is not re-entrant (because of getopt_long()).
56  * It must be called with the module bank initialization global lock held.
57  * FIXME: this still breaks if getopt() is used outside of LibVLC.
58  */
59 int config_LoadCmdLine( vlc_object_t *p_this, int *pi_argc,
60                         const char *ppsz_argv[], bool b_ignore_errors )
61 {
62     int i_cmd, i_index, i_opts, i_shortopts, flag, i_verbose = 0;
63     module_t *p_parser;
64     struct option *p_longopts;
65     const char **argv_copy = NULL;
66
67     /* Short options */
68     module_config_t *pp_shortopts[256];
69     char *psz_shortopts;
70
71     /* List all modules */
72     module_t **list = module_list_get (NULL);
73
74     /*
75      * Generate the longopts and shortopts structures used by getopt_long
76      */
77
78     i_opts = 0;
79     for (size_t i = 0; (p_parser = list[i]) != NULL; i++)
80         /* count the number of exported configuration options (to allocate
81          * longopts). We also need to allocate space for two options when
82          * dealing with boolean to allow for --foo and --no-foo */
83         i_opts += p_parser->i_config_items + 2 * p_parser->i_bool_items;
84
85     p_longopts = malloc( sizeof(struct option) * (i_opts + 1) );
86     if( p_longopts == NULL )
87     {
88         module_list_free (list);
89         return -1;
90     }
91
92     psz_shortopts = malloc( sizeof( char ) * (2 * i_opts + 1) );
93     if( psz_shortopts == NULL )
94     {
95         free( p_longopts );
96         module_list_free (list);
97         return -1;
98     }
99
100     /* If we are requested to ignore errors, then we must work on a copy
101      * of the ppsz_argv array, otherwise getopt_long will reorder it for
102      * us, ignoring the arity of the options */
103     if( b_ignore_errors )
104     {
105         argv_copy = (const char**)malloc( *pi_argc * sizeof(char *) );
106         if( argv_copy == NULL )
107         {
108             free( psz_shortopts );
109             free( p_longopts );
110             module_list_free (list);
111             return -1;
112         }
113         memcpy( argv_copy, ppsz_argv, *pi_argc * sizeof(char *) );
114         ppsz_argv = argv_copy;
115     }
116
117     i_shortopts = 0;
118     for( i_index = 0; i_index < 256; i_index++ )
119     {
120         pp_shortopts[i_index] = NULL;
121     }
122
123     /* Fill the p_longopts and psz_shortopts structures */
124     i_index = 0;
125     for (size_t i = 0; (p_parser = list[i]) != NULL; i++)
126     {
127         module_config_t *p_item, *p_end;
128
129         if( !p_parser->i_config_items )
130             continue;
131
132         for( p_item = p_parser->p_config, p_end = p_item + p_parser->confsize;
133              p_item < p_end;
134              p_item++ )
135         {
136             /* Ignore hints */
137             if( p_item->i_type & CONFIG_HINT )
138                 continue;
139
140             /* Add item to long options */
141             p_longopts[i_index].name = strdup( p_item->psz_name );
142             if( p_longopts[i_index].name == NULL ) continue;
143             p_longopts[i_index].has_arg =
144                 (p_item->i_type != CONFIG_ITEM_BOOL);
145             p_longopts[i_index].flag = &flag;
146             p_longopts[i_index].val = 0;
147             i_index++;
148
149             /* When dealing with bools we also need to add the --no-foo
150              * option */
151             if( p_item->i_type == CONFIG_ITEM_BOOL )
152             {
153                 char *psz_name = malloc( strlen(p_item->psz_name) + 3 );
154                 if( psz_name == NULL ) continue;
155                 strcpy( psz_name, "no" );
156                 strcat( psz_name, p_item->psz_name );
157
158                 p_longopts[i_index].name = psz_name;
159                 p_longopts[i_index].has_arg = false;
160                 p_longopts[i_index].flag = &flag;
161                 p_longopts[i_index].val = 1;
162                 i_index++;
163
164                 psz_name = malloc( strlen(p_item->psz_name) + 4 );
165                 if( psz_name == NULL ) continue;
166                 strcpy( psz_name, "no-" );
167                 strcat( psz_name, p_item->psz_name );
168
169                 p_longopts[i_index].name = psz_name;
170                 p_longopts[i_index].has_arg = false;
171                 p_longopts[i_index].flag = &flag;
172                 p_longopts[i_index].val = 1;
173                 i_index++;
174             }
175
176             /* If item also has a short option, add it */
177             if( p_item->i_short )
178             {
179                 pp_shortopts[(int)p_item->i_short] = p_item;
180                 psz_shortopts[i_shortopts] = p_item->i_short;
181                 i_shortopts++;
182                 if( p_item->i_type != CONFIG_ITEM_BOOL )
183                 {
184                     psz_shortopts[i_shortopts] = ':';
185                     i_shortopts++;
186
187                     if( p_item->i_short == 'v' )
188                     {
189                         psz_shortopts[i_shortopts] = ':';
190                         i_shortopts++;
191                     }
192                 }
193             }
194         }
195     }
196
197     /* We don't need the module list anymore */
198     module_list_free( list );
199
200     /* Close the longopts and shortopts structures */
201     memset( &p_longopts[i_index], 0, sizeof(struct option) );
202     psz_shortopts[i_shortopts] = '\0';
203
204     /*
205      * Parse the command line options
206      */
207     optind = 0; /* set to 0 to tell GNU getopt to reinitialize */
208     while( ( i_cmd = vlc_getopt_long( *pi_argc, (char **)ppsz_argv, psz_shortopts,
209                                   p_longopts, &i_index ) ) != -1 )
210     {
211         /* A long option has been recognized */
212         if( i_cmd == 0 )
213         {
214             module_config_t *p_conf;
215             const char *psz_name = p_longopts[i_index].name;
216
217             /* Check if we deal with a --nofoo or --no-foo long option */
218             if( flag ) psz_name += psz_name[2] == '-' ? 3 : 2;
219
220             /* Store the configuration option */
221             p_conf = config_FindConfig( p_this, psz_name );
222             if( p_conf )
223             {
224                 /* Check if the option is deprecated */
225                 if( p_conf->b_removed )
226                 {
227                     fprintf(stderr,
228                             "Warning: option --%s no longer exists.\n",
229                             psz_name);
230                     continue;
231                 }
232
233                 if( p_conf->psz_oldname
234                  && !strcmp( p_conf->psz_oldname, psz_name) )
235                 {
236                     fprintf( stderr,
237                              "%s: option --%s is deprecated. Use --%s instead.\n",
238                              b_ignore_errors ? "Warning" : "Error",
239                              psz_name, p_conf->psz_name );
240                     if( !b_ignore_errors )
241                     {
242                         /*free */
243                         for( i_index = 0; p_longopts[i_index].name; i_index++ )
244                              free( (char *)p_longopts[i_index].name );
245
246                         free( p_longopts );
247                         free( psz_shortopts );
248                         return -1;
249                     }
250
251                     psz_name = p_conf->psz_name;
252                 }
253
254                 switch( p_conf->i_type )
255                 {
256                     case CONFIG_ITEM_STRING:
257                     case CONFIG_ITEM_PASSWORD:
258                     case CONFIG_ITEM_FILE:
259                     case CONFIG_ITEM_DIRECTORY:
260                     case CONFIG_ITEM_MODULE:
261                     case CONFIG_ITEM_MODULE_LIST:
262                     case CONFIG_ITEM_MODULE_LIST_CAT:
263                     case CONFIG_ITEM_MODULE_CAT:
264                         var_Create( p_this, psz_name, VLC_VAR_STRING );
265                         var_SetString( p_this, psz_name, optarg );
266                         break;
267                     case CONFIG_ITEM_INTEGER:
268                         var_Create( p_this, psz_name, VLC_VAR_INTEGER );
269                         var_SetInteger( p_this, psz_name,
270                                         strtol(optarg, NULL, 0));
271                         break;
272                     case CONFIG_ITEM_FLOAT:
273                         var_Create( p_this, psz_name, VLC_VAR_FLOAT );
274                         var_SetFloat( p_this, psz_name, us_atof(optarg) );
275                         break;
276                     case CONFIG_ITEM_KEY:
277                         var_Create( p_this, psz_name, VLC_VAR_INTEGER );
278                         var_SetInteger( p_this, psz_name,
279                                         ConfigStringToKey( optarg ) );
280                         break;
281                     case CONFIG_ITEM_BOOL:
282                         var_Create( p_this, psz_name, VLC_VAR_BOOL );
283                         var_SetBool( p_this, psz_name, !flag );
284                         break;
285                 }
286                 continue;
287             }
288         }
289
290         /* A short option has been recognized */
291         if( pp_shortopts[i_cmd] != NULL )
292         {
293             const char *name = pp_shortopts[i_cmd]->psz_name;
294             switch( pp_shortopts[i_cmd]->i_type )
295             {
296                 case CONFIG_ITEM_STRING:
297                 case CONFIG_ITEM_PASSWORD:
298                 case CONFIG_ITEM_FILE:
299                 case CONFIG_ITEM_DIRECTORY:
300                 case CONFIG_ITEM_MODULE:
301                 case CONFIG_ITEM_MODULE_CAT:
302                 case CONFIG_ITEM_MODULE_LIST:
303                 case CONFIG_ITEM_MODULE_LIST_CAT:
304                     var_Create( p_this, name, VLC_VAR_STRING );
305                     var_SetString( p_this, name, optarg );
306                     break;
307                 case CONFIG_ITEM_INTEGER:
308                     var_Create( p_this, name, VLC_VAR_INTEGER );
309                     if( i_cmd == 'v' )
310                     {
311                         if( optarg )
312                         {
313                             if( *optarg == 'v' ) /* eg. -vvv */
314                             {
315                                 i_verbose++;
316                                 while( *optarg == 'v' )
317                                 {
318                                     i_verbose++;
319                                     optarg++;
320                                 }
321                             }
322                             else
323                             {
324                                 i_verbose += atoi( optarg ); /* eg. -v2 */
325                             }
326                         }
327                         else
328                         {
329                             i_verbose++; /* -v */
330                         }
331                         var_SetInteger( p_this, name, i_verbose );
332                     }
333                     else
334                     {
335                         var_SetInteger( p_this, name,
336                                         strtol(optarg, NULL, 0) );
337                     }
338                     break;
339                 case CONFIG_ITEM_BOOL:
340                     var_Create( p_this, name, VLC_VAR_BOOL );
341                     var_SetBool( p_this, name, true );
342                     break;
343             }
344
345             continue;
346         }
347
348         /* Internal error: unknown option */
349         if( !b_ignore_errors )
350         {
351             fputs( "vlc: unknown option"
352                      " or missing mandatory argument ", stderr );
353             if( optopt )
354             {
355                 fprintf( stderr, "`-%c'\n", optopt );
356             }
357             else
358             {
359                 fprintf( stderr, "`%s'\n", ppsz_argv[optind-1] );
360             }
361             fputs( "Try `vlc --help' for more information.\n", stderr );
362
363             for( i_index = 0; p_longopts[i_index].name; i_index++ )
364                 free( (char *)p_longopts[i_index].name );
365             free( p_longopts );
366             free( psz_shortopts );
367             return -1;
368         }
369     }
370
371     /* Free allocated resources */
372     for( i_index = 0; p_longopts[i_index].name; i_index++ )
373         free( (char *)p_longopts[i_index].name );
374     free( p_longopts );
375     free( psz_shortopts );
376     free( argv_copy );
377
378     return 0;
379 }
380