]> git.sesse.net Git - vlc/blob - src/config/cmdline.c
Use var_Inherit* instead of var_CreateGet*.
[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 #include <vlc_modules.h>
33
34 #include "vlc_getopt.h"
35
36 #include "configuration.h"
37 #include "modules/modules.h"
38
39 #include <assert.h>
40
41 #undef config_LoadCmdLine
42 /**
43  * Parse command line for configuration options.
44  *
45  * Now that the module_bank has been initialized, we can dynamically
46  * generate the longopts structure used by getops. We have to do it this way
47  * because we don't know (and don't want to know) in advance the configuration
48  * options used (ie. exported) by each module.
49  *
50  * @param p_this object to write command line options as variables to
51  * @param i_argc number of command line arguments
52  * @param ppsz_args commandl ine arguments [IN/OUT]
53  * @param pindex NULL to ignore unknown options,
54  *               otherwise index of the first non-option argument [OUT]
55  * @return 0 on success, -1 on error.
56  */
57 int config_LoadCmdLine( vlc_object_t *p_this, int i_argc,
58                         const char *ppsz_argv[], int *pindex )
59 {
60     int i_cmd, i_index, i_opts, i_shortopts, flag, i_verbose = 0;
61     module_t *p_parser;
62     struct vlc_option *p_longopts;
63     const char **argv_copy = NULL;
64 #define b_ignore_errors (pindex == NULL)
65
66     /* Short options */
67     module_config_t *pp_shortopts[256];
68     char *psz_shortopts;
69
70     /* List all modules */
71     module_t **list = module_list_get (NULL);
72
73     /*
74      * Generate the longopts and shortopts structures used by getopt_long
75      */
76
77     i_opts = 0;
78     for (size_t i = 0; (p_parser = list[i]) != NULL; i++)
79         /* count the number of exported configuration options (to allocate
80          * longopts). We also need to allocate space for two options when
81          * dealing with boolean to allow for --foo and --no-foo */
82         i_opts += p_parser->i_config_items + 2 * p_parser->i_bool_items;
83
84     p_longopts = malloc( sizeof(*p_longopts) * (i_opts + 1) );
85     if( p_longopts == NULL )
86     {
87         module_list_free (list);
88         return -1;
89     }
90
91     psz_shortopts = malloc( 2 * i_opts + 1 );
92     if( psz_shortopts == NULL )
93     {
94         free( p_longopts );
95         module_list_free (list);
96         return -1;
97     }
98
99     /* If we are requested to ignore errors, then we must work on a copy
100      * of the ppsz_argv array, otherwise getopt_long will reorder it for
101      * us, ignoring the arity of the options */
102     if( b_ignore_errors )
103     {
104         argv_copy = (const char**)malloc( i_argc * sizeof(char *) );
105         if( argv_copy == NULL )
106         {
107             free( psz_shortopts );
108             free( p_longopts );
109             module_list_free (list);
110             return -1;
111         }
112         memcpy( argv_copy, ppsz_argv, i_argc * sizeof(char *) );
113         ppsz_argv = argv_copy;
114     }
115
116     i_shortopts = 0;
117     for( i_index = 0; i_index < 256; i_index++ )
118     {
119         pp_shortopts[i_index] = NULL;
120     }
121
122     /* Fill the p_longopts and psz_shortopts structures */
123     i_index = 0;
124     for (size_t i = 0; (p_parser = list[i]) != NULL; i++)
125     {
126         module_config_t *p_item, *p_end;
127
128         if( !p_parser->i_config_items )
129             continue;
130
131         for( p_item = p_parser->p_config, p_end = p_item + p_parser->confsize;
132              p_item < p_end;
133              p_item++ )
134         {
135             /* Ignore hints */
136             if( p_item->i_type & CONFIG_HINT )
137                 continue;
138
139             /* Add item to long options */
140             p_longopts[i_index].name = strdup( p_item->psz_name );
141             if( p_longopts[i_index].name == NULL ) continue;
142             p_longopts[i_index].has_arg =
143                 (p_item->i_type != CONFIG_ITEM_BOOL);
144             p_longopts[i_index].flag = &flag;
145             p_longopts[i_index].val = 0;
146             i_index++;
147
148             /* When dealing with bools we also need to add the --no-foo
149              * option */
150             if( p_item->i_type == CONFIG_ITEM_BOOL )
151             {
152                 char *psz_name = malloc( strlen(p_item->psz_name) + 3 );
153                 if( psz_name == NULL ) continue;
154                 strcpy( psz_name, "no" );
155                 strcat( psz_name, p_item->psz_name );
156
157                 p_longopts[i_index].name = psz_name;
158                 p_longopts[i_index].has_arg = false;
159                 p_longopts[i_index].flag = &flag;
160                 p_longopts[i_index].val = 1;
161                 i_index++;
162
163                 psz_name = malloc( strlen(p_item->psz_name) + 4 );
164                 if( psz_name == NULL ) continue;
165                 strcpy( psz_name, "no-" );
166                 strcat( psz_name, p_item->psz_name );
167
168                 p_longopts[i_index].name = psz_name;
169                 p_longopts[i_index].has_arg = false;
170                 p_longopts[i_index].flag = &flag;
171                 p_longopts[i_index].val = 1;
172                 i_index++;
173             }
174
175             /* If item also has a short option, add it */
176             if( p_item->i_short )
177             {
178                 pp_shortopts[(int)p_item->i_short] = p_item;
179                 psz_shortopts[i_shortopts] = p_item->i_short;
180                 i_shortopts++;
181                 if( p_item->i_type != CONFIG_ITEM_BOOL
182                  && p_item->i_short != 'v' )
183                 {
184                     psz_shortopts[i_shortopts] = ':';
185                     i_shortopts++;
186                 }
187             }
188         }
189     }
190
191     /* We don't need the module list anymore */
192     module_list_free( list );
193
194     /* Close the longopts and shortopts structures */
195     memset( &p_longopts[i_index], 0, sizeof(*p_longopts) );
196     psz_shortopts[i_shortopts] = '\0';
197
198     int ret = -1;
199
200     /*
201      * Parse the command line options
202      */
203     vlc_getopt_t state;
204     state.ind = 0 ; /* set to 0 to tell GNU getopt to reinitialize */
205     while( ( i_cmd = vlc_getopt_long( i_argc, (char **)ppsz_argv,
206                                       psz_shortopts,
207                                       p_longopts, &i_index, &state ) ) != -1 )
208     {
209         /* A long option has been recognized */
210         if( i_cmd == 0 )
211         {
212             module_config_t *p_conf;
213             const char *psz_name = p_longopts[i_index].name;
214
215             /* Check if we deal with a --nofoo or --no-foo long option */
216             if( flag ) psz_name += psz_name[2] == '-' ? 3 : 2;
217
218             /* Store the configuration option */
219             p_conf = config_FindConfig( p_this, psz_name );
220             if( p_conf )
221             {
222                 /* Check if the option is deprecated */
223                 if( p_conf->b_removed )
224                 {
225                     fprintf(stderr,
226                             "Warning: option --%s no longer exists.\n",
227                             psz_name);
228                     continue;
229                 }
230
231                 if( p_conf->psz_oldname
232                  && !strcmp( p_conf->psz_oldname, psz_name) )
233                 {
234                     if( !b_ignore_errors )
235                     {
236                         fprintf( stderr, "Error: option --%s is deprecated. "
237                                  "Use --%s instead.\n",
238                                  psz_name, p_conf->psz_name );
239                         goto out;
240                     }
241
242                     psz_name = p_conf->psz_name;
243                 }
244
245                 switch( p_conf->i_type )
246                 {
247                     case CONFIG_ITEM_STRING:
248                     case CONFIG_ITEM_PASSWORD:
249                     case CONFIG_ITEM_FILE:
250                     case CONFIG_ITEM_DIRECTORY:
251                     case CONFIG_ITEM_MODULE:
252                     case CONFIG_ITEM_MODULE_LIST:
253                     case CONFIG_ITEM_MODULE_LIST_CAT:
254                     case CONFIG_ITEM_MODULE_CAT:
255                         var_Create( p_this, psz_name, VLC_VAR_STRING );
256                         var_SetString( p_this, psz_name, state.arg );
257                         break;
258                     case CONFIG_ITEM_INTEGER:
259                         var_Create( p_this, psz_name, VLC_VAR_INTEGER );
260                         var_SetInteger( p_this, psz_name,
261                                         strtoll(state.arg, NULL, 0));
262                         break;
263                     case CONFIG_ITEM_FLOAT:
264                         var_Create( p_this, psz_name, VLC_VAR_FLOAT );
265                         var_SetFloat( p_this, psz_name, us_atof(state.arg) );
266                         break;
267                     case CONFIG_ITEM_KEY:
268                         var_Create( p_this, psz_name, VLC_VAR_INTEGER );
269                         var_SetInteger( p_this, psz_name,
270                                         ConfigStringToKey( state.arg ) );
271                         break;
272                     case CONFIG_ITEM_BOOL:
273                         var_Create( p_this, psz_name, VLC_VAR_BOOL );
274                         var_SetBool( p_this, psz_name, !flag );
275                         break;
276                 }
277                 continue;
278             }
279         }
280
281         /* A short option has been recognized */
282         if( pp_shortopts[i_cmd] != NULL )
283         {
284             const char *name = pp_shortopts[i_cmd]->psz_name;
285             switch( pp_shortopts[i_cmd]->i_type )
286             {
287                 case CONFIG_ITEM_STRING:
288                 case CONFIG_ITEM_PASSWORD:
289                 case CONFIG_ITEM_FILE:
290                 case CONFIG_ITEM_DIRECTORY:
291                 case CONFIG_ITEM_MODULE:
292                 case CONFIG_ITEM_MODULE_CAT:
293                 case CONFIG_ITEM_MODULE_LIST:
294                 case CONFIG_ITEM_MODULE_LIST_CAT:
295                     var_Create( p_this, name, VLC_VAR_STRING );
296                     var_SetString( p_this, name, state.arg );
297                     break;
298                 case CONFIG_ITEM_INTEGER:
299                     var_Create( p_this, name, VLC_VAR_INTEGER );
300                     if( i_cmd == 'v' )
301                     {
302                         i_verbose++; /* -v */
303                         var_SetInteger( p_this, name, i_verbose );
304                     }
305                     else
306                     {
307                         var_SetInteger( p_this, name,
308                                         strtoll(state.arg, NULL, 0) );
309                     }
310                     break;
311                 case CONFIG_ITEM_BOOL:
312                     var_Create( p_this, name, VLC_VAR_BOOL );
313                     var_SetBool( p_this, name, true );
314                     break;
315             }
316
317             continue;
318         }
319
320         /* Internal error: unknown option */
321         if( !b_ignore_errors )
322         {
323             fputs( "vlc: unknown option"
324                      " or missing mandatory argument ", stderr );
325             if( state.opt )
326             {
327                 fprintf( stderr, "`-%c'\n", state.opt );
328             }
329             else
330             {
331                 fprintf( stderr, "`%s'\n", ppsz_argv[state.ind-1] );
332             }
333             fputs( "Try `vlc --help' for more information.\n", stderr );
334             goto out;
335         }
336     }
337
338     ret = 0;
339     if( pindex != NULL )
340         *pindex = state.ind;
341 out:
342     /* Free allocated resources */
343     for( i_index = 0; p_longopts[i_index].name; i_index++ )
344         free( (char *)p_longopts[i_index].name );
345     free( p_longopts );
346     free( psz_shortopts );
347     free( argv_copy );
348     return ret;
349 }
350