]> git.sesse.net Git - vlc/blob - src/misc/configuration.c
5a855279e643b8114d1dbb11dada4b4b621e4a0a
[vlc] / src / misc / configuration.c
1 /*****************************************************************************
2  * configuration.c management of the modules configuration
3  *****************************************************************************
4  * Copyright (C) 2001-2004 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 #include <vlc/vlc.h>
25 #include "vlc_keys.h"
26 #include "charset.h"
27
28 #include <stdio.h>                                              /* sprintf() */
29 #include <stdlib.h>                                      /* free(), strtol() */
30 #include <string.h>                                              /* strdup() */
31 #include <errno.h>                                                  /* errno */
32
33 #ifdef HAVE_LIMITS_H
34 #   include <limits.h>
35 #endif
36
37 #ifdef HAVE_UNISTD_H
38 #    include <unistd.h>                                          /* getuid() */
39 #endif
40
41 #ifdef HAVE_GETOPT_LONG
42 #   ifdef HAVE_GETOPT_H
43 #       include <getopt.h>                                       /* getopt() */
44 #   endif
45 #else
46 #   include "../extras/getopt.h"
47 #endif
48
49 #if defined(HAVE_GETPWUID)
50 #   include <pwd.h>                                            /* getpwuid() */
51 #endif
52
53 #if defined( HAVE_SYS_STAT_H )
54 #   include <sys/stat.h>
55 #endif
56 #if defined( HAVE_SYS_TYPES_H )
57 #   include <sys/types.h>
58 #endif
59 #if defined( WIN32 )
60 #   if !defined( UNDER_CE )
61 #       include <direct.h>
62 #   endif
63 #include <tchar.h>
64 #endif
65
66 static int ConfigStringToKey( char * );
67 static char *ConfigKeyToString( int );
68
69 /*****************************************************************************
70  * config_GetType: get the type of a variable (bool, int, float, string)
71  *****************************************************************************
72  * This function is used to get the type of a variable from its name.
73  * Beware, this is quite slow.
74  *****************************************************************************/
75 int __config_GetType( vlc_object_t *p_this, const char *psz_name )
76 {
77     module_config_t *p_config;
78     int i_type;
79
80     p_config = config_FindConfig( p_this, psz_name );
81
82     /* sanity checks */
83     if( !p_config )
84     {
85         return 0;
86     }
87
88     switch( p_config->i_type )
89     {
90     case CONFIG_ITEM_BOOL:
91         i_type = VLC_VAR_BOOL;
92         break;
93
94     case CONFIG_ITEM_INTEGER:
95         i_type = VLC_VAR_INTEGER;
96         break;
97
98     case CONFIG_ITEM_FLOAT:
99         i_type = VLC_VAR_FLOAT;
100         break;
101
102     case CONFIG_ITEM_MODULE:
103     case CONFIG_ITEM_MODULE_CAT:
104     case CONFIG_ITEM_MODULE_LIST:
105     case CONFIG_ITEM_MODULE_LIST_CAT:
106         i_type = VLC_VAR_MODULE;
107         break;
108
109     case CONFIG_ITEM_STRING:
110         i_type = VLC_VAR_STRING;
111         break;
112
113     case CONFIG_ITEM_FILE:
114         i_type = VLC_VAR_FILE;
115         break;
116
117     case CONFIG_ITEM_DIRECTORY:
118         i_type = VLC_VAR_DIRECTORY;
119         break;
120
121     default:
122         i_type = 0;
123         break;
124     }
125
126     return i_type;
127 }
128
129 /*****************************************************************************
130  * config_GetInt: get the value of an int variable
131  *****************************************************************************
132  * This function is used to get the value of variables which are internally
133  * represented by an integer (CONFIG_ITEM_INTEGER and
134  * CONFIG_ITEM_BOOL).
135  *****************************************************************************/
136 int __config_GetInt( vlc_object_t *p_this, const char *psz_name )
137 {
138     module_config_t *p_config;
139
140     p_config = config_FindConfig( p_this, psz_name );
141
142     /* sanity checks */
143     if( !p_config )
144     {
145         msg_Err( p_this, "option %s does not exist", psz_name );
146         return -1;
147     }
148     if( (p_config->i_type!=CONFIG_ITEM_INTEGER) &&
149         (p_config->i_type!=CONFIG_ITEM_KEY) &&
150         (p_config->i_type!=CONFIG_ITEM_BOOL) )
151     {
152         msg_Err( p_this, "option %s does not refer to an int", psz_name );
153         return -1;
154     }
155
156     return p_config->i_value;
157 }
158
159 /*****************************************************************************
160  * config_GetFloat: get the value of a float variable
161  *****************************************************************************
162  * This function is used to get the value of variables which are internally
163  * represented by a float (CONFIG_ITEM_FLOAT).
164  *****************************************************************************/
165 float __config_GetFloat( vlc_object_t *p_this, const char *psz_name )
166 {
167     module_config_t *p_config;
168
169     p_config = config_FindConfig( p_this, psz_name );
170
171     /* sanity checks */
172     if( !p_config )
173     {
174         msg_Err( p_this, "option %s does not exist", psz_name );
175         return -1;
176     }
177     if( p_config->i_type != CONFIG_ITEM_FLOAT )
178     {
179         msg_Err( p_this, "option %s does not refer to a float", psz_name );
180         return -1;
181     }
182
183     return p_config->f_value;
184 }
185
186 /*****************************************************************************
187  * config_GetPsz: get the string value of a string variable
188  *****************************************************************************
189  * This function is used to get the value of variables which are internally
190  * represented by a string (CONFIG_ITEM_STRING, CONFIG_ITEM_FILE,
191  * CONFIG_ITEM_DIRECTORY, and CONFIG_ITEM_MODULE).
192  *
193  * Important note: remember to free() the returned char* because it's a
194  *   duplicate of the actual value. It isn't safe to return a pointer to the
195  *   actual value as it can be modified at any time.
196  *****************************************************************************/
197 char * __config_GetPsz( vlc_object_t *p_this, const char *psz_name )
198 {
199     module_config_t *p_config;
200     char *psz_value = NULL;
201
202     p_config = config_FindConfig( p_this, psz_name );
203
204     /* sanity checks */
205     if( !p_config )
206     {
207         msg_Err( p_this, "option %s does not exist", psz_name );
208         return NULL;
209     }
210     if( (p_config->i_type!=CONFIG_ITEM_STRING) &&
211         (p_config->i_type!=CONFIG_ITEM_FILE) &&
212         (p_config->i_type!=CONFIG_ITEM_DIRECTORY) &&
213         (p_config->i_type!=CONFIG_ITEM_MODULE_LIST) &&
214         (p_config->i_type!=CONFIG_ITEM_MODULE_LIST_CAT) &&
215         (p_config->i_type!=CONFIG_ITEM_MODULE_CAT) &&
216         (p_config->i_type!=CONFIG_ITEM_MODULE) )
217     {
218         msg_Err( p_this, "option %s does not refer to a string", psz_name );
219         return NULL;
220     }
221
222
223     /* return a copy of the string */
224     vlc_mutex_lock( p_config->p_lock );
225     if( p_config->psz_value ) psz_value = strdup( p_config->psz_value );
226     vlc_mutex_unlock( p_config->p_lock );
227
228     return psz_value;
229 }
230
231 /*****************************************************************************
232  * config_PutPsz: set the string value of a string variable
233  *****************************************************************************
234  * This function is used to set the value of variables which are internally
235  * represented by a string (CONFIG_ITEM_STRING, CONFIG_ITEM_FILE,
236  * CONFIG_ITEM_DIRECTORY, and CONFIG_ITEM_MODULE).
237  *****************************************************************************/
238 void __config_PutPsz( vlc_object_t *p_this,
239                       const char *psz_name, const char *psz_value )
240 {
241     module_config_t *p_config;
242     vlc_value_t oldval, val;
243
244     p_config = config_FindConfig( p_this, psz_name );
245
246
247     /* sanity checks */
248     if( !p_config )
249     {
250         msg_Warn( p_this, "option %s does not exist", psz_name );
251         return;
252     }
253     if( (p_config->i_type!=CONFIG_ITEM_STRING) &&
254         (p_config->i_type!=CONFIG_ITEM_FILE) &&
255         (p_config->i_type!=CONFIG_ITEM_DIRECTORY) &&
256         (p_config->i_type!=CONFIG_ITEM_MODULE_LIST) &&
257         (p_config->i_type!=CONFIG_ITEM_MODULE_CAT) &&
258         (p_config->i_type!=CONFIG_ITEM_MODULE_LIST_CAT) &&
259         (p_config->i_type!=CONFIG_ITEM_MODULE) )
260     {
261         msg_Err( p_this, "option %s does not refer to a string", psz_name );
262         return;
263     }
264
265     vlc_mutex_lock( p_config->p_lock );
266
267     /* backup old value */
268     oldval.psz_string = p_config->psz_value;
269
270     if( psz_value && *psz_value ) p_config->psz_value = strdup( psz_value );
271     else p_config->psz_value = NULL;
272
273     p_config->b_dirty = VLC_TRUE;
274
275     val.psz_string = p_config->psz_value;
276
277     vlc_mutex_unlock( p_config->p_lock );
278
279     if( p_config->pf_callback )
280     {
281         p_config->pf_callback( p_this, psz_name, oldval, val,
282                                p_config->p_callback_data );
283     }
284
285     /* free old string */
286     if( oldval.psz_string ) free( oldval.psz_string );
287 }
288
289 /*****************************************************************************
290  * config_PutInt: set the integer value of an int variable
291  *****************************************************************************
292  * This function is used to set the value of variables which are internally
293  * represented by an integer (CONFIG_ITEM_INTEGER and
294  * CONFIG_ITEM_BOOL).
295  *****************************************************************************/
296 void __config_PutInt( vlc_object_t *p_this, const char *psz_name, int i_value )
297 {
298     module_config_t *p_config;
299     vlc_value_t oldval, val;
300
301     p_config = config_FindConfig( p_this, psz_name );
302
303     /* sanity checks */
304     if( !p_config )
305     {
306         msg_Warn( p_this, "option %s does not exist", psz_name );
307         return;
308     }
309     if( (p_config->i_type!=CONFIG_ITEM_INTEGER) &&
310         (p_config->i_type!=CONFIG_ITEM_KEY) &&
311         (p_config->i_type!=CONFIG_ITEM_BOOL) )
312     {
313         msg_Err( p_this, "option %s does not refer to an int", psz_name );
314         return;
315     }
316
317     /* backup old value */
318     oldval.i_int = p_config->i_value;
319
320     /* if i_min == i_max == 0, then do not use them */
321     if ((p_config->i_min == 0) && (p_config->i_max == 0))
322     {
323         p_config->i_value = i_value;
324     }
325     else if (i_value < p_config->i_min)
326     {
327         p_config->i_value = p_config->i_min;
328     }
329     else if (i_value > p_config->i_max)
330     {
331         p_config->i_value = p_config->i_max;
332     }
333     else
334     {
335         p_config->i_value = i_value;
336     }
337
338     p_config->b_dirty = VLC_TRUE;
339
340     val.i_int = p_config->i_value;
341
342     if( p_config->pf_callback )
343     {
344         p_config->pf_callback( p_this, psz_name, oldval, val,
345                                p_config->p_callback_data );
346     }
347 }
348
349 /*****************************************************************************
350  * config_PutFloat: set the value of a float variable
351  *****************************************************************************
352  * This function is used to set the value of variables which are internally
353  * represented by a float (CONFIG_ITEM_FLOAT).
354  *****************************************************************************/
355 void __config_PutFloat( vlc_object_t *p_this,
356                         const char *psz_name, float f_value )
357 {
358     module_config_t *p_config;
359     vlc_value_t oldval, val;
360
361     p_config = config_FindConfig( p_this, psz_name );
362
363     /* sanity checks */
364     if( !p_config )
365     {
366         msg_Warn( p_this, "option %s does not exist", psz_name );
367         return;
368     }
369     if( p_config->i_type != CONFIG_ITEM_FLOAT )
370     {
371         msg_Err( p_this, "option %s does not refer to a float", psz_name );
372         return;
373     }
374
375     /* backup old value */
376     oldval.f_float = p_config->f_value;
377
378     /* if f_min == f_max == 0, then do not use them */
379     if ((p_config->f_min == 0) && (p_config->f_max == 0))
380     {
381         p_config->f_value = f_value;
382     }
383     else if (f_value < p_config->f_min)
384     {
385         p_config->f_value = p_config->f_min;
386     }
387     else if (f_value > p_config->f_max)
388     {
389         p_config->f_value = p_config->f_max;
390     }
391     else
392     {
393         p_config->f_value = f_value;
394     }
395
396     p_config->b_dirty = VLC_TRUE;
397
398     val.f_float = p_config->f_value;
399
400     if( p_config->pf_callback )
401     {
402         p_config->pf_callback( p_this, psz_name, oldval, val,
403                                p_config->p_callback_data );
404     }
405 }
406
407 /*****************************************************************************
408  * config_FindConfig: find the config structure associated with an option.
409  *****************************************************************************
410  * FIXME: This function really needs to be optimized.
411  * FIXME: And now even more.
412  *****************************************************************************/
413 module_config_t *config_FindConfig( vlc_object_t *p_this, const char *psz_name )
414 {
415     vlc_list_t *p_list;
416     module_t *p_parser;
417     module_config_t *p_item;
418     int i_index;
419
420     if( !psz_name ) return NULL;
421
422     p_list = vlc_list_find( p_this, VLC_OBJECT_MODULE, FIND_ANYWHERE );
423
424     for( i_index = 0; i_index < p_list->i_count; i_index++ )
425     {
426         p_parser = (module_t *)p_list->p_values[i_index].p_object ;
427
428         if( !p_parser->i_config_items )
429             continue;
430
431         for( p_item = p_parser->p_config;
432              p_item->i_type != CONFIG_HINT_END;
433              p_item++ )
434         {
435             if( p_item->i_type & CONFIG_HINT )
436                 /* ignore hints */
437                 continue;
438             if( !strcmp( psz_name, p_item->psz_name ) )
439             {
440                 vlc_list_release( p_list );
441                 return p_item;
442             }
443         }
444     }
445
446     vlc_list_release( p_list );
447
448     return NULL;
449 }
450
451 /*****************************************************************************
452  * config_FindModule: find a specific module structure.
453  *****************************************************************************/
454 module_t *config_FindModule( vlc_object_t *p_this, const char *psz_name )
455 {
456     vlc_list_t *p_list;
457     module_t *p_module, *p_result = NULL;
458     int i_index;
459
460     if( !psz_name ) return NULL;
461
462     p_list = vlc_list_find( p_this, VLC_OBJECT_MODULE, FIND_ANYWHERE );
463
464     for( i_index = 0; i_index < p_list->i_count; i_index++ )
465     {
466         p_module = (module_t *)p_list->p_values[i_index].p_object;
467         if( !strcmp( p_module->psz_object_name, psz_name ) )
468         {
469              p_result = p_module;
470              break;
471         }
472     }
473
474     vlc_list_release( p_list );
475
476     return p_result;
477 }
478
479 /*****************************************************************************
480  * config_Duplicate: creates a duplicate of a module's configuration data.
481  *****************************************************************************
482  * Unfortunatly we cannot work directly with the module's config data as
483  * this module might be unloaded from memory at any time (remember HideModule).
484  * This is why we need to create an exact copy of the config data.
485  *****************************************************************************/
486 void config_Duplicate( module_t *p_module, const module_config_t *p_orig )
487 {
488     int i, j, i_lines = 1;
489     module_config_t *p_item;
490
491     /* Calculate the structure length */
492     p_module->i_config_items = 0;
493     p_module->i_bool_items = 0;
494
495     for( p_item = p_orig; p_item->i_type != CONFIG_HINT_END; p_item++ )
496     {
497         i_lines++;
498
499         if( p_item->i_type & CONFIG_ITEM )
500         {
501             p_module->i_config_items++;
502         }
503
504         if( p_item->i_type == CONFIG_ITEM_BOOL )
505         {
506             p_module->i_bool_items++;
507         }
508     }
509
510     /* Allocate memory */
511     p_module->p_config = (module_config_t *)malloc( sizeof(module_config_t)
512                                                      * i_lines );
513     if( p_module->p_config == NULL )
514     {
515         msg_Err( p_module, "config error: can't duplicate p_config" );
516         return;
517     }
518
519     /* Do the duplication job */
520     for( i = 0; i < i_lines ; i++ )
521     {
522         p_module->p_config[i] = p_orig[i];
523
524         p_module->p_config[i].i_value_orig = p_orig[i].i_value;
525         p_module->p_config[i].f_value_orig = p_orig[i].f_value;
526         p_module->p_config[i].i_value_saved = p_orig[i].i_value;
527         p_module->p_config[i].f_value_saved = p_orig[i].f_value;
528         p_module->p_config[i].psz_value_saved = 0;
529
530         p_module->p_config[i].psz_type = p_orig[i].psz_type ?
531                                    strdup( p_orig[i].psz_type ) : NULL;
532         p_module->p_config[i].psz_name = p_orig[i].psz_name ?
533                                    strdup( p_orig[i].psz_name ) : NULL;
534         p_module->p_config[i].psz_current = p_orig[i].psz_current?
535                                    strdup( p_orig[i].psz_current ) : NULL;
536         p_module->p_config[i].psz_text = p_orig[i].psz_text ?
537                                    strdup( _(p_orig[i].psz_text) ) : NULL;
538         p_module->p_config[i].psz_longtext = p_orig[i].psz_longtext ?
539                                    strdup( _(p_orig[i].psz_longtext) ) : NULL;
540         p_module->p_config[i].psz_value = p_orig[i].psz_value ?
541                                    strdup( p_orig[i].psz_value ) : NULL;
542         p_module->p_config[i].psz_value_orig = p_orig[i].psz_value ?
543                                    strdup( p_orig[i].psz_value ) : NULL;
544
545         p_module->p_config[i].p_lock = &p_module->object_lock;
546
547         /* duplicate the string list */
548         if( p_orig[i].i_list )
549         {
550             if( p_orig[i].ppsz_list )
551             {
552                 p_module->p_config[i].ppsz_list =
553                     malloc( (p_orig[i].i_list + 1) * sizeof(char *) );
554                 if( p_module->p_config[i].ppsz_list )
555                 {
556                     for( j = 0; j < p_orig[i].i_list; j++ )
557                         p_module->p_config[i].ppsz_list[j] = p_orig[i].ppsz_list[j] ?
558                             strdup( p_orig[i].ppsz_list[j] ) : NULL ;
559                     p_module->p_config[i].ppsz_list[j] = NULL;
560                 }
561             }
562             if( p_orig[i].ppsz_list_text )
563             {
564                 p_module->p_config[i].ppsz_list_text =
565                     malloc( (p_orig[i].i_list + 1) * sizeof(char *) );
566                 if( p_module->p_config[i].ppsz_list_text )
567                 {
568                     for( j = 0; j < p_orig[i].i_list; j++ )
569                         p_module->p_config[i].ppsz_list_text[j] = _(p_orig[i].ppsz_list_text[j]) ?
570                             strdup( _(p_orig[i].ppsz_list_text[j] ) ) : NULL ;
571                     p_module->p_config[i].ppsz_list_text[j] = NULL;
572                 }
573             }
574             if( p_orig[i].pi_list )
575             {
576                 p_module->p_config[i].pi_list =
577                     malloc( (p_orig[i].i_list + 1) * sizeof(int) );
578                 if( p_module->p_config[i].pi_list )
579                 {
580                     for( j = 0; j < p_orig[i].i_list; j++ )
581                         p_module->p_config[i].pi_list[j] =
582                             p_orig[i].pi_list[j];
583                 }
584             }
585         }
586
587         /* duplicate the actions list */
588         if( p_orig[i].i_action )
589         {
590             int j;
591
592             p_module->p_config[i].ppf_action =
593                 malloc( p_orig[i].i_action * sizeof(void *) );
594             p_module->p_config[i].ppsz_action_text =
595                 malloc( p_orig[i].i_action * sizeof(char *) );
596
597             for( j = 0; j < p_orig[i].i_action; j++ )
598             {
599                 p_module->p_config[i].ppf_action[j] =
600                     p_orig[i].ppf_action[j];
601                 p_module->p_config[i].ppsz_action_text[j] =
602                     p_orig[i].ppsz_action_text[j] ?
603                     strdup( p_orig[i].ppsz_action_text[j] ) : NULL;
604             }
605         }
606
607         p_module->p_config[i].pf_callback = p_orig[i].pf_callback;
608     }
609 }
610
611 /*****************************************************************************
612  * config_Free: frees a duplicated module's configuration data.
613  *****************************************************************************
614  * This function frees all the data duplicated by config_Duplicate.
615  *****************************************************************************/
616 void config_Free( module_t *p_module )
617 {
618     module_config_t *p_item = p_module->p_config;
619     int i;
620
621     if( p_item == NULL )
622     {
623         return;
624     }
625
626     for( ; p_item->i_type != CONFIG_HINT_END ; p_item++ )
627     {
628         if( p_item->psz_type )
629             free( p_item->psz_type );
630
631         if( p_item->psz_name )
632             free( p_item->psz_name );
633
634         if( p_item->psz_current )
635             free( p_item->psz_current );
636
637         if( p_item->psz_text )
638             free( p_item->psz_text );
639
640         if( p_item->psz_longtext )
641             free( p_item->psz_longtext );
642
643         if( p_item->psz_value )
644             free( p_item->psz_value );
645
646         if( p_item->psz_value_orig )
647             free( p_item->psz_value_orig );
648
649         if( p_item->psz_value_saved )
650             free( p_item->psz_value_saved );
651
652         if( p_item->i_list )
653         {
654             for( i = 0; i < p_item->i_list; i++ )
655             {
656                 if( p_item->ppsz_list && p_item->ppsz_list[i] )
657                     free( p_item->ppsz_list[i] );
658                 if( p_item->ppsz_list_text && p_item->ppsz_list_text[i] )
659                     free( p_item->ppsz_list_text[i] );
660             }
661             if( p_item->ppsz_list ) free( p_item->ppsz_list );
662             if( p_item->ppsz_list_text ) free( p_item->ppsz_list_text );
663             if( p_item->pi_list ) free( p_item->pi_list );
664         }
665
666         if( p_item->i_action )
667         {
668             for( i = 0; i < p_item->i_action; i++ )
669             {
670                 if( p_item->ppsz_action_text[i] )
671                     free( p_item->ppsz_action_text[i] );
672             }
673             if( p_item->ppf_action ) free( p_item->ppf_action );
674             if( p_item->ppsz_action_text ) free( p_item->ppsz_action_text );
675         }
676     }
677
678     free( p_module->p_config );
679     p_module->p_config = NULL;
680 }
681
682 /*****************************************************************************
683  * config_SetCallbacks: sets callback functions in the duplicate p_config.
684  *****************************************************************************
685  * Unfortunatly we cannot work directly with the module's config data as
686  * this module might be unloaded from memory at any time (remember HideModule).
687  * This is why we need to duplicate callbacks each time we reload the module.
688  *****************************************************************************/
689 void config_SetCallbacks( module_config_t *p_new, module_config_t *p_orig )
690 {
691     while( p_new->i_type != CONFIG_HINT_END )
692     {
693         p_new->pf_callback = p_orig->pf_callback;
694         p_new++;
695         p_orig++;
696     }
697 }
698
699 /*****************************************************************************
700  * config_UnsetCallbacks: unsets callback functions in the duplicate p_config.
701  *****************************************************************************
702  * We simply undo what we did in config_SetCallbacks.
703  *****************************************************************************/
704 void config_UnsetCallbacks( module_config_t *p_new )
705 {
706     while( p_new->i_type != CONFIG_HINT_END )
707     {
708         p_new->pf_callback = NULL;
709         p_new++;
710     }
711 }
712
713 /*****************************************************************************
714  * config_ResetAll: reset the configuration data for all the modules.
715  *****************************************************************************/
716 void __config_ResetAll( vlc_object_t *p_this )
717 {
718     int i_index, i;
719     vlc_list_t *p_list;
720     module_t *p_module;
721
722     /* Acquire config file lock */
723     vlc_mutex_lock( &p_this->p_libvlc->config_lock );
724
725     p_list = vlc_list_find( p_this, VLC_OBJECT_MODULE, FIND_ANYWHERE );
726
727     for( i_index = 0; i_index < p_list->i_count; i_index++ )
728     {
729         p_module = (module_t *)p_list->p_values[i_index].p_object ;
730         if( p_module->b_submodule ) continue;
731
732         for( i = 0; p_module->p_config[i].i_type != CONFIG_HINT_END; i++ )
733         {
734             p_module->p_config[i].i_value = p_module->p_config[i].i_value_orig;
735             p_module->p_config[i].f_value = p_module->p_config[i].f_value_orig;
736             if( p_module->p_config[i].psz_value )
737                 free( p_module->p_config[i].psz_value );
738             p_module->p_config[i].psz_value =
739                 p_module->p_config[i].psz_value_orig ?
740                 strdup( p_module->p_config[i].psz_value_orig ) : NULL;
741         }
742     }
743
744     vlc_list_release( p_list );
745     vlc_mutex_unlock( &p_this->p_libvlc->config_lock );
746 }
747
748 /*****************************************************************************
749  * config_LoadConfigFile: loads the configuration file.
750  *****************************************************************************
751  * This function is called to load the config options stored in the config
752  * file.
753  *****************************************************************************/
754 int __config_LoadConfigFile( vlc_object_t *p_this, const char *psz_module_name )
755 {
756     vlc_list_t *p_list;
757     module_t *p_parser;
758     module_config_t *p_item;
759     FILE *file;
760     char line[1024];
761     char *p_index, *psz_option_name, *psz_option_value;
762     char *psz_filename, *psz_homedir, *psz_configfile;
763     int i_index;
764
765     psz_configfile = p_this->p_libvlc->psz_configfile;
766     if( !psz_configfile || !psz_configfile )
767     {
768         psz_homedir = p_this->p_libvlc->psz_homedir;
769         if( !psz_homedir )
770         {
771             msg_Err( p_this, "psz_homedir is null" );
772             return -1;
773         }
774         psz_filename = (char *)malloc( sizeof("/" CONFIG_DIR "/" CONFIG_FILE) +
775                                        strlen(psz_homedir) );
776         if( psz_filename )
777             sprintf( psz_filename,
778                      "%s" DIR_SEP CONFIG_DIR DIR_SEP CONFIG_FILE,
779                      psz_homedir );
780     }
781     else
782     {
783         psz_filename = strdup( psz_configfile );
784     }
785
786     if( !psz_filename )
787     {
788         msg_Err( p_this, "out of memory" );
789         return -1;
790     }
791
792     msg_Dbg( p_this, "opening config file %s", psz_filename );
793
794     /* Acquire config file lock */
795     vlc_mutex_lock( &p_this->p_libvlc->config_lock );
796
797     file = utf8_fopen( psz_filename, "rt" );
798     if( !file )
799     {
800         msg_Warn( p_this, "config file %s does not exist yet", psz_filename );
801         free( psz_filename );
802         vlc_mutex_unlock( &p_this->p_libvlc->config_lock );
803         return -1;
804     }
805
806     /* Look for the selected module, if NULL then save everything */
807     p_list = vlc_list_find( p_this, VLC_OBJECT_MODULE, FIND_ANYWHERE );
808
809     for( i_index = 0; i_index < p_list->i_count; i_index++ )
810     {
811         p_parser = (module_t *)p_list->p_values[i_index].p_object ;
812
813         if( psz_module_name
814              && strcmp( psz_module_name, p_parser->psz_object_name ) )
815         {
816             continue;
817         }
818
819         /* The config file is organized in sections, one per module. Look for
820          * the interesting section ( a section is of the form [foo] ) */
821         fseek( file, 0L, SEEK_SET );
822         while( fgets( line, 1024, file ) )
823         {
824             if( (line[0] == '[')
825                && (p_index = strchr(line,']'))
826                && (p_index - &line[1]
827                     == (int)strlen(p_parser->psz_object_name))
828                && !memcmp( &line[1], p_parser->psz_object_name,
829                            strlen(p_parser->psz_object_name) ) )
830             {
831 #if 0
832                 msg_Dbg( p_this, "loading config for module \"%s\"",
833                                  p_parser->psz_object_name );
834 #endif
835
836                 break;
837             }
838         }
839         /* either we found the section or we're at the EOF */
840
841         /* Now try to load the options in this section */
842         while( fgets( line, 1024, file ) )
843         {
844             if( line[0] == '[' ) break; /* end of section */
845
846             /* ignore comments or empty lines */
847             if( (line[0] == '#') || (line[0] == '\n') || (line[0] == (char)0) )
848                 continue;
849
850             /* get rid of line feed */
851             if( line[strlen(line)-1] == '\n' )
852                 line[strlen(line)-1] = (char)0;
853
854             /* look for option name */
855             psz_option_name = line;
856             psz_option_value = NULL;
857             p_index = strchr( line, '=' );
858             if( !p_index ) break; /* this ain't an option!!! */
859
860             *p_index = (char)0;
861             psz_option_value = p_index + 1;
862
863             if( !p_parser->i_config_items )
864             {
865                 continue;
866             }
867
868             /* try to match this option with one of the module's options */
869             for( p_item = p_parser->p_config;
870                  p_item->i_type != CONFIG_HINT_END;
871                  p_item++ )
872             {
873                 if( p_item->i_type & CONFIG_HINT )
874                     /* ignore hints */
875                     continue;
876
877                 if( !strcmp( p_item->psz_name, psz_option_name ) )
878                 {
879                     /* We found it */
880                     switch( p_item->i_type )
881                     {
882                     case CONFIG_ITEM_BOOL:
883                     case CONFIG_ITEM_INTEGER:
884                         if( !*psz_option_value )
885                             break;                    /* ignore empty option */
886                         p_item->i_value = strtol( psz_option_value, 0, 0 );
887                         p_item->i_value_saved = p_item->i_value;
888 #if 0
889                         msg_Dbg( p_this, "option \"%s\", value %i",
890                                  p_item->psz_name, p_item->i_value );
891 #endif
892                         break;
893
894                     case CONFIG_ITEM_FLOAT:
895                         if( !*psz_option_value )
896                             break;                    /* ignore empty option */
897                         p_item->f_value = (float)i18n_atof( psz_option_value);
898                         p_item->f_value_saved = p_item->f_value;
899 #if 0
900                         msg_Dbg( p_this, "option \"%s\", value %f",
901                                  p_item->psz_name, (double)p_item->f_value );
902 #endif
903                         break;
904                     case CONFIG_ITEM_KEY:
905                         if( !*psz_option_value )
906                             break;                    /* ignore empty option */
907                         p_item->i_value = ConfigStringToKey(psz_option_value);
908                         p_item->i_value_saved = p_item->i_value;
909                         break;
910
911                     default:
912                         vlc_mutex_lock( p_item->p_lock );
913
914                         /* free old string */
915                         if( p_item->psz_value )
916                             free( p_item->psz_value );
917
918                         p_item->psz_value = *psz_option_value ?
919                             strdup( psz_option_value ) : NULL;
920
921                         if( p_item->psz_value_saved )
922                             free( p_item->psz_value_saved );
923                         p_item->psz_value_saved = NULL;
924                         if( !p_item->psz_value || !p_item->psz_value_orig ||
925                             (p_item->psz_value && p_item->psz_value_orig &&
926                              strcmp(p_item->psz_value,p_item->psz_value_orig)))
927                             p_item->psz_value_saved = p_item->psz_value ?
928                                 strdup( p_item->psz_value ) : NULL;
929
930                         vlc_mutex_unlock( p_item->p_lock );
931
932 #if 0
933                         msg_Dbg( p_this, "option \"%s\", value \"%s\"",
934                                  p_item->psz_name,
935                                  p_item->psz_value ? p_item->psz_value : "" );
936 #endif
937                         break;
938                     }
939                 }
940             }
941         }
942
943     }
944
945     vlc_list_release( p_list );
946
947     fclose( file );
948     free( psz_filename );
949
950     vlc_mutex_unlock( &p_this->p_libvlc->config_lock );
951
952     return 0;
953 }
954
955 /*****************************************************************************
956  * config_CreateDir: Create configuration directory if it doesn't exist.
957  *****************************************************************************/
958 int config_CreateDir( vlc_object_t *p_this, const char *psz_dirname )
959 {
960     if( !psz_dirname && !*psz_dirname ) return -1;
961
962     if( utf8_mkdir( psz_dirname ) && ( errno != EEXIST ) )
963     {
964         msg_Err( p_this, "could not create %s (%s)",
965                  psz_dirname, strerror(errno) );
966         return -1;
967     }
968
969     return 0;
970 }
971
972 /*****************************************************************************
973  * config_SaveConfigFile: Save a module's config options.
974  *****************************************************************************
975  * This will save the specified module's config options to the config file.
976  * If psz_module_name is NULL then we save all the modules config options.
977  * It's no use to save the config options that kept their default values, so
978  * we'll try to be a bit clever here.
979  *
980  * When we save we mustn't delete the config options of the modules that
981  * haven't been loaded. So we cannot just create a new config file with the
982  * config structures we've got in memory.
983  * I don't really know how to deal with this nicely, so I will use a completly
984  * dumb method ;-)
985  * I will load the config file in memory, but skipping all the sections of the
986  * modules we want to save. Then I will create a brand new file, dump the file
987  * loaded in memory and then append the sections of the modules we want to
988  * save.
989  * Really stupid no ?
990  *****************************************************************************/
991 static int SaveConfigFile( vlc_object_t *p_this, const char *psz_module_name,
992                            vlc_bool_t b_autosave )
993 {
994     module_t *p_parser;
995     vlc_list_t *p_list;
996     module_config_t *p_item;
997     FILE *file;
998     char p_line[1024], *p_index2;
999     int i_sizebuf = 0;
1000     char *p_bigbuffer, *p_index;
1001     vlc_bool_t b_backup;
1002     char *psz_filename, *psz_homedir, *psz_configfile;
1003     int i_index;
1004
1005     /* Acquire config file lock */
1006     vlc_mutex_lock( &p_this->p_libvlc->config_lock );
1007
1008     psz_configfile = p_this->p_libvlc->psz_configfile;
1009     if( !psz_configfile || !psz_configfile )
1010     {
1011         psz_homedir = p_this->p_libvlc->psz_homedir;
1012         if( !psz_homedir )
1013         {
1014             msg_Err( p_this, "psz_homedir is null" );
1015             vlc_mutex_unlock( &p_this->p_libvlc->config_lock );
1016             return -1;
1017         }
1018         psz_filename = (char *)malloc( sizeof("/" CONFIG_DIR "/" CONFIG_FILE) +
1019                                        strlen(psz_homedir) );
1020
1021         if( psz_filename )
1022             sprintf( psz_filename, "%s" DIR_SEP CONFIG_DIR, psz_homedir );
1023
1024         if( !psz_filename )
1025         {
1026             msg_Err( p_this, "out of memory" );
1027             vlc_mutex_unlock( &p_this->p_libvlc->config_lock );
1028             return -1;
1029         }
1030
1031         config_CreateDir( p_this, psz_filename );
1032
1033         strcat( psz_filename, DIR_SEP CONFIG_FILE );
1034     }
1035     else
1036     {
1037         psz_filename = strdup( psz_configfile );
1038         if( !psz_filename )
1039         {
1040             msg_Err( p_this, "out of memory" );
1041             vlc_mutex_unlock( &p_this->p_libvlc->config_lock );
1042             return -1;
1043         }
1044     }
1045
1046     msg_Dbg( p_this, "opening config file %s", psz_filename );
1047
1048     file = utf8_fopen( psz_filename, "rt" );
1049     if( !file )
1050     {
1051         msg_Warn( p_this, "config file %s does not exist yet", psz_filename );
1052     }
1053     else
1054     {
1055         /* look for file size */
1056         fseek( file, 0L, SEEK_END );
1057         i_sizebuf = ftell( file );
1058         fseek( file, 0L, SEEK_SET );
1059     }
1060
1061     p_bigbuffer = p_index = malloc( i_sizebuf+1 );
1062     if( !p_bigbuffer )
1063     {
1064         msg_Err( p_this, "out of memory" );
1065         if( file ) fclose( file );
1066         free( psz_filename );
1067         vlc_mutex_unlock( &p_this->p_libvlc->config_lock );
1068         return -1;
1069     }
1070     p_bigbuffer[0] = 0;
1071
1072     /* List all available modules */
1073     p_list = vlc_list_find( p_this, VLC_OBJECT_MODULE, FIND_ANYWHERE );
1074
1075     /* backup file into memory, we only need to backup the sections we won't
1076      * save later on */
1077     b_backup = 0;
1078     while( file && fgets( p_line, 1024, file ) )
1079     {
1080         if( (p_line[0] == '[') && (p_index2 = strchr(p_line,']')))
1081         {
1082
1083             /* we found a section, check if we need to do a backup */
1084             for( i_index = 0; i_index < p_list->i_count; i_index++ )
1085             {
1086                 p_parser = (module_t *)p_list->p_values[i_index].p_object ;
1087
1088                 if( ((p_index2 - &p_line[1])
1089                        == (int)strlen(p_parser->psz_object_name) )
1090                     && !memcmp( &p_line[1], p_parser->psz_object_name,
1091                                 strlen(p_parser->psz_object_name) ) )
1092                 {
1093                     if( !psz_module_name )
1094                         break;
1095                     else if( !strcmp( psz_module_name,
1096                                       p_parser->psz_object_name ) )
1097                         break;
1098                 }
1099             }
1100
1101             if( i_index == p_list->i_count )
1102             {
1103                 /* we don't have this section in our list so we need to back
1104                  * it up */
1105                 *p_index2 = 0;
1106 #if 0
1107                 msg_Dbg( p_this, "backing up config for unknown module \"%s\"",
1108                                  &p_line[1] );
1109 #endif
1110                 *p_index2 = ']';
1111
1112                 b_backup = 1;
1113             }
1114             else
1115             {
1116                 b_backup = 0;
1117             }
1118         }
1119
1120         /* save line if requested and line is valid (doesn't begin with a
1121          * space, tab, or eol) */
1122         if( b_backup && (p_line[0] != '\n') && (p_line[0] != ' ')
1123             && (p_line[0] != '\t') )
1124         {
1125             strcpy( p_index, p_line );
1126             p_index += strlen( p_line );
1127         }
1128     }
1129     if( file ) fclose( file );
1130
1131
1132     /*
1133      * Save module config in file
1134      */
1135
1136     file = utf8_fopen( psz_filename, "wt" );
1137     if( !file )
1138     {
1139         msg_Warn( p_this, "could not open config file %s for writing",
1140                           psz_filename );
1141         free( psz_filename );
1142         vlc_list_release( p_list );
1143         vlc_mutex_unlock( &p_this->p_libvlc->config_lock );
1144         return -1;
1145     }
1146
1147     fprintf( file, "###\n###  " COPYRIGHT_MESSAGE "\n###\n\n"
1148        "###\n### lines begining with a '#' character are comments\n###\n\n" );
1149
1150     /* Look for the selected module, if NULL then save everything */
1151     for( i_index = 0; i_index < p_list->i_count; i_index++ )
1152     {
1153         p_parser = (module_t *)p_list->p_values[i_index].p_object ;
1154
1155         if( psz_module_name && strcmp( psz_module_name,
1156                                        p_parser->psz_object_name ) )
1157             continue;
1158
1159         if( !p_parser->i_config_items )
1160             continue;
1161
1162         if( psz_module_name )
1163             msg_Dbg( p_this, "saving config for module \"%s\"",
1164                      p_parser->psz_object_name );
1165
1166         fprintf( file, "[%s]", p_parser->psz_object_name );
1167         if( p_parser->psz_longname )
1168             utf8_fprintf( file, " # %s\n\n", p_parser->psz_longname );
1169         else
1170             fprintf( file, "\n\n" );
1171
1172         for( p_item = p_parser->p_config;
1173              p_item->i_type != CONFIG_HINT_END;
1174              p_item++ )
1175         {
1176             char  *psz_key;
1177             int   i_value = p_item->i_value;
1178             float f_value = p_item->f_value;
1179             char  *psz_value = p_item->psz_value;
1180
1181             if( p_item->i_type & CONFIG_HINT )
1182                 /* ignore hints */
1183                 continue;
1184             /* Ignore deprecated options */
1185             if( p_item->psz_current )
1186                 continue;
1187             if( p_item->b_unsaveable )
1188                 /*obvious*/
1189                 continue;
1190
1191             if( b_autosave && !p_item->b_autosave )
1192             {
1193                 i_value = p_item->i_value_saved;
1194                 f_value = p_item->f_value_saved;
1195                 psz_value = p_item->psz_value_saved;
1196                 if( !psz_value ) psz_value = p_item->psz_value_orig;
1197             }
1198             else
1199             {
1200                 p_item->b_dirty = VLC_FALSE;
1201             }
1202
1203             switch( p_item->i_type )
1204             {
1205             case CONFIG_ITEM_BOOL:
1206             case CONFIG_ITEM_INTEGER:
1207                 if( p_item->psz_text )
1208                     utf8_fprintf( file, "# %s (%s)\n", p_item->psz_text,
1209                              (p_item->i_type == CONFIG_ITEM_BOOL) ?
1210                              _("boolean") : _("integer") );
1211                 if( i_value == p_item->i_value_orig )
1212                     fprintf( file, "#" );
1213                 fprintf( file, "%s=%i\n", p_item->psz_name, i_value );
1214
1215                 p_item->i_value_saved = i_value;
1216                 break;
1217
1218             case CONFIG_ITEM_KEY:
1219                 if( p_item->psz_text )
1220                     utf8_fprintf( file, "# %s (%s)\n", p_item->psz_text,
1221                              _("key") );
1222                 if( i_value == p_item->i_value_orig )
1223                     fprintf( file, "#" );
1224                 psz_key = ConfigKeyToString( i_value );
1225                 fprintf( file, "%s=%s\n", p_item->psz_name,
1226                          psz_key ? psz_key : "" );
1227                 if ( psz_key ) free( psz_key );
1228
1229                 p_item->i_value_saved = i_value;
1230                 break;
1231
1232             case CONFIG_ITEM_FLOAT:
1233                 if( p_item->psz_text )
1234                     utf8_fprintf( file, "# %s (%s)\n", p_item->psz_text,
1235                              _("float") );
1236                 if( f_value == p_item->f_value_orig )
1237                     fprintf( file, "#" );
1238                 fprintf( file, "%s=%f\n", p_item->psz_name, (double)f_value );
1239
1240                 p_item->f_value_saved = f_value;
1241                 break;
1242
1243             default:
1244                 if( p_item->psz_text )
1245                     utf8_fprintf( file, "# %s (%s)\n", p_item->psz_text,
1246                              _("string") );
1247                 if( (!psz_value && !p_item->psz_value_orig) ||
1248                     (psz_value && p_item->psz_value_orig &&
1249                      !strcmp( psz_value, p_item->psz_value_orig )) )
1250                     fprintf( file, "#" );
1251                 fprintf( file, "%s=%s\n", p_item->psz_name,
1252                          psz_value ? psz_value : "" );
1253
1254                 if( b_autosave && !p_item->b_autosave ) break;
1255
1256                 if( p_item->psz_value_saved ) free( p_item->psz_value_saved );
1257                 p_item->psz_value_saved = 0;
1258                 if( (psz_value && p_item->psz_value_orig &&
1259                      strcmp( psz_value, p_item->psz_value_orig )) ||
1260                     !psz_value || !p_item->psz_value_orig)
1261                     p_item->psz_value_saved = psz_value ? strdup(psz_value):0;
1262             }
1263         }
1264
1265         fprintf( file, "\n" );
1266     }
1267
1268     vlc_list_release( p_list );
1269
1270     /*
1271      * Restore old settings from the config in file
1272      */
1273     fputs( p_bigbuffer, file );
1274     free( p_bigbuffer );
1275
1276     fclose( file );
1277     free( psz_filename );
1278     vlc_mutex_unlock( &p_this->p_libvlc->config_lock );
1279
1280     return 0;
1281 }
1282
1283 int config_AutoSaveConfigFile( vlc_object_t *p_this )
1284 {
1285     vlc_list_t *p_list;
1286     module_t *p_parser;
1287     module_config_t *p_item;
1288     int i_index, i_count;
1289
1290     /* Check if there's anything to save */
1291     vlc_mutex_lock( &p_this->p_libvlc->config_lock );
1292     p_list = vlc_list_find( p_this, VLC_OBJECT_MODULE, FIND_ANYWHERE );
1293     i_count = p_list->i_count;
1294     for( i_index = 0; i_index < i_count; i_index++ )
1295     {
1296         p_parser = (module_t *)p_list->p_values[i_index].p_object ;
1297
1298         if( !p_parser->i_config_items ) continue;
1299
1300         for( p_item = p_parser->p_config;
1301              p_item->i_type != CONFIG_HINT_END;
1302              p_item++ )
1303         {
1304             if( p_item->b_autosave && p_item->b_dirty ) break;
1305         }
1306         if( p_item->i_type != CONFIG_HINT_END ) break;
1307     }
1308     vlc_list_release( p_list );
1309     vlc_mutex_unlock( &p_this->p_libvlc->config_lock );
1310
1311     if( i_index == i_count ) return VLC_SUCCESS;
1312     return SaveConfigFile( p_this, 0, VLC_TRUE );
1313 }
1314
1315 int __config_SaveConfigFile( vlc_object_t *p_this, const char *psz_module_name )
1316 {
1317     return SaveConfigFile( p_this, psz_module_name, VLC_FALSE );
1318 }
1319
1320 /*****************************************************************************
1321  * config_LoadCmdLine: parse command line
1322  *****************************************************************************
1323  * Parse command line for configuration options.
1324  * Now that the module_bank has been initialized, we can dynamically
1325  * generate the longopts structure used by getops. We have to do it this way
1326  * because we don't know (and don't want to know) in advance the configuration
1327  * options used (ie. exported) by each module.
1328  *****************************************************************************/
1329 int __config_LoadCmdLine( vlc_object_t *p_this, int *pi_argc, char *ppsz_argv[],
1330                           vlc_bool_t b_ignore_errors )
1331 {
1332     int i_cmd, i_index, i_opts, i_shortopts, flag, i_verbose = 0;
1333     module_t *p_parser;
1334     vlc_list_t *p_list;
1335     module_config_t *p_item;
1336     struct option *p_longopts;
1337     int i_modules_index;
1338
1339     /* Short options */
1340     module_config_t *pp_shortopts[256];
1341     char *psz_shortopts;
1342
1343     /* Set default configuration and copy arguments */
1344     p_this->p_libvlc->i_argc    = *pi_argc;
1345     p_this->p_libvlc->ppsz_argv = ppsz_argv;
1346
1347 #ifdef __APPLE__
1348     /* When VLC.app is run by double clicking in Mac OS X, the 2nd arg
1349      * is the PSN - process serial number (a unique PID-ish thingie)
1350      * still ok for real Darwin & when run from command line */
1351     if ( (*pi_argc > 1) && (strncmp( ppsz_argv[ 1 ] , "-psn" , 4 ) == 0) )
1352                                         /* for example -psn_0_9306113 */
1353     {
1354         /* GDMF!... I can't do this or else the MacOSX window server will
1355          * not pick up the PSN and not register the app and we crash...
1356          * hence the following kludge otherwise we'll get confused w/ argv[1]
1357          * being an input file name */
1358 #if 0
1359         ppsz_argv[ 1 ] = NULL;
1360 #endif
1361         *pi_argc = *pi_argc - 1;
1362         pi_argc--;
1363         return 0;
1364     }
1365 #endif
1366
1367     /* List all modules */
1368     p_list = vlc_list_find( p_this, VLC_OBJECT_MODULE, FIND_ANYWHERE );
1369
1370     /*
1371      * Generate the longopts and shortopts structures used by getopt_long
1372      */
1373
1374     i_opts = 0;
1375     for( i_modules_index = 0; i_modules_index < p_list->i_count;
1376          i_modules_index++ )
1377     {
1378         p_parser = (module_t *)p_list->p_values[i_modules_index].p_object ;
1379
1380         /* count the number of exported configuration options (to allocate
1381          * longopts). We also need to allocate space for two options when
1382          * dealing with boolean to allow for --foo and --no-foo */
1383         i_opts += p_parser->i_config_items
1384                      + 2 * p_parser->i_bool_items;
1385     }
1386
1387     p_longopts = malloc( sizeof(struct option) * (i_opts + 1) );
1388     if( p_longopts == NULL )
1389     {
1390         msg_Err( p_this, "out of memory" );
1391         vlc_list_release( p_list );
1392         return -1;
1393     }
1394
1395     psz_shortopts = malloc( sizeof( char ) * (2 * i_opts + 1) );
1396     if( psz_shortopts == NULL )
1397     {
1398         msg_Err( p_this, "out of memory" );
1399         free( p_longopts );
1400         vlc_list_release( p_list );
1401         return -1;
1402     }
1403
1404     /* If we are requested to ignore errors, then we must work on a copy
1405      * of the ppsz_argv array, otherwise getopt_long will reorder it for
1406      * us, ignoring the arity of the options */
1407     if( b_ignore_errors )
1408     {
1409         ppsz_argv = (char**)malloc( *pi_argc * sizeof(char *) );
1410         if( ppsz_argv == NULL )
1411         {
1412             msg_Err( p_this, "out of memory" );
1413             free( psz_shortopts );
1414             free( p_longopts );
1415             vlc_list_release( p_list );
1416             return -1;
1417         }
1418         memcpy( ppsz_argv, p_this->p_libvlc->ppsz_argv,
1419                 *pi_argc * sizeof(char *) );
1420     }
1421
1422     i_shortopts = 0;
1423     for( i_index = 0; i_index < 256; i_index++ )
1424     {
1425         pp_shortopts[i_index] = NULL;
1426     }
1427
1428     /* Fill the p_longopts and psz_shortopts structures */
1429     i_index = 0;
1430     for( i_modules_index = 0; i_modules_index < p_list->i_count;
1431          i_modules_index++ )
1432     {
1433         p_parser = (module_t *)p_list->p_values[i_modules_index].p_object ;
1434
1435         if( !p_parser->i_config_items )
1436             continue;
1437
1438         for( p_item = p_parser->p_config;
1439              p_item->i_type != CONFIG_HINT_END;
1440              p_item++ )
1441         {
1442             /* Ignore hints */
1443             if( p_item->i_type & CONFIG_HINT )
1444                 continue;
1445
1446             /* Add item to long options */
1447             p_longopts[i_index].name = strdup( p_item->psz_name );
1448             if( p_longopts[i_index].name == NULL ) continue;
1449             p_longopts[i_index].has_arg =
1450                 (p_item->i_type == CONFIG_ITEM_BOOL)?
1451                                                no_argument : required_argument;
1452             p_longopts[i_index].flag = &flag;
1453             p_longopts[i_index].val = 0;
1454             i_index++;
1455
1456             /* When dealing with bools we also need to add the --no-foo
1457              * option */
1458             if( p_item->i_type == CONFIG_ITEM_BOOL )
1459             {
1460                 char *psz_name = malloc( strlen(p_item->psz_name) + 3 );
1461                 if( psz_name == NULL ) continue;
1462                 strcpy( psz_name, "no" );
1463                 strcat( psz_name, p_item->psz_name );
1464
1465                 p_longopts[i_index].name = psz_name;
1466                 p_longopts[i_index].has_arg = no_argument;
1467                 p_longopts[i_index].flag = &flag;
1468                 p_longopts[i_index].val = 1;
1469                 i_index++;
1470
1471                 psz_name = malloc( strlen(p_item->psz_name) + 4 );
1472                 if( psz_name == NULL ) continue;
1473                 strcpy( psz_name, "no-" );
1474                 strcat( psz_name, p_item->psz_name );
1475
1476                 p_longopts[i_index].name = psz_name;
1477                 p_longopts[i_index].has_arg = no_argument;
1478                 p_longopts[i_index].flag = &flag;
1479                 p_longopts[i_index].val = 1;
1480                 i_index++;
1481             }
1482
1483             /* If item also has a short option, add it */
1484             if( p_item->i_short )
1485             {
1486                 pp_shortopts[(int)p_item->i_short] = p_item;
1487                 psz_shortopts[i_shortopts] = p_item->i_short;
1488                 i_shortopts++;
1489                 if( p_item->i_type != CONFIG_ITEM_BOOL )
1490                 {
1491                     psz_shortopts[i_shortopts] = ':';
1492                     i_shortopts++;
1493
1494                     if( p_item->i_short == 'v' )
1495                     {
1496                         psz_shortopts[i_shortopts] = ':';
1497                         i_shortopts++;
1498                     }
1499                 }
1500             }
1501         }
1502     }
1503
1504     /* We don't need the module list anymore */
1505     vlc_list_release( p_list );
1506
1507     /* Close the longopts and shortopts structures */
1508     memset( &p_longopts[i_index], 0, sizeof(struct option) );
1509     psz_shortopts[i_shortopts] = '\0';
1510
1511     /*
1512      * Parse the command line options
1513      */
1514     opterr = 0;
1515     optind = 1;
1516     while( ( i_cmd = getopt_long( *pi_argc, ppsz_argv, psz_shortopts,
1517                                   p_longopts, &i_index ) ) != EOF )
1518     {
1519         /* A long option has been recognized */
1520         if( i_cmd == 0 )
1521         {
1522             module_config_t *p_conf;
1523             char *psz_name = (char *)p_longopts[i_index].name;
1524
1525             /* Check if we deal with a --nofoo or --no-foo long option */
1526             if( flag ) psz_name += psz_name[2] == '-' ? 3 : 2;
1527
1528             /* Store the configuration option */
1529             p_conf = config_FindConfig( p_this, psz_name );
1530             if( p_conf )
1531             {
1532                 /* Check if the option is deprecated */
1533                 if( p_conf->psz_current )
1534                 {
1535                     if( !strcmp(p_conf->psz_current,"SUPPRESSED") )
1536                     {
1537                         if( !b_ignore_errors )
1538                         {
1539                             fprintf(stderr,
1540                                     "Warning: option --%s is no longer used.\n",
1541                                     p_conf->psz_name);
1542                         }
1543                        continue;
1544                     }
1545                     if( !b_ignore_errors )
1546                     {
1547                         if( p_conf->b_strict )
1548                         {
1549                             fprintf( stderr,
1550                                      "Error: option --%s is deprecated. "
1551                                      "Use --%s instead.\n",
1552                                      p_conf->psz_name, p_conf->psz_current);
1553                             /*free */
1554                             for( i_index = 0; p_longopts[i_index].name; i_index++ )
1555                                 free( (char *)p_longopts[i_index].name );
1556
1557                             free( p_longopts );
1558                             free( psz_shortopts );
1559                             return -1;
1560                         }
1561                         fprintf(stderr,
1562                                 "Warning: option --%s is deprecated. "
1563                                 "You should use --%s instead.\n",
1564                                 p_conf->psz_name, p_conf->psz_current);
1565                     }
1566                     psz_name=p_conf->psz_current;
1567                     p_conf = config_FindConfig( p_this, psz_name );
1568                 }
1569
1570                 switch( p_conf->i_type )
1571                 {
1572                     case CONFIG_ITEM_STRING:
1573                     case CONFIG_ITEM_FILE:
1574                     case CONFIG_ITEM_DIRECTORY:
1575                     case CONFIG_ITEM_MODULE:
1576                     case CONFIG_ITEM_MODULE_LIST:
1577                     case CONFIG_ITEM_MODULE_LIST_CAT:
1578                     case CONFIG_ITEM_MODULE_CAT:
1579                         config_PutPsz( p_this, psz_name, optarg );
1580                         break;
1581                     case CONFIG_ITEM_INTEGER:
1582                         config_PutInt( p_this, psz_name, strtol(optarg, 0, 0));
1583                         break;
1584                     case CONFIG_ITEM_FLOAT:
1585                         config_PutFloat( p_this, psz_name, (float)atof(optarg) );
1586                         break;
1587                     case CONFIG_ITEM_KEY:
1588                         config_PutInt( p_this, psz_name, ConfigStringToKey( optarg ) );
1589                         break;
1590                     case CONFIG_ITEM_BOOL:
1591                         config_PutInt( p_this, psz_name, !flag );
1592                         break;
1593                 }
1594                 continue;
1595             }
1596         }
1597
1598         /* A short option has been recognized */
1599         if( pp_shortopts[i_cmd] != NULL )
1600         {
1601             switch( pp_shortopts[i_cmd]->i_type )
1602             {
1603                 case CONFIG_ITEM_STRING:
1604                 case CONFIG_ITEM_FILE:
1605                 case CONFIG_ITEM_DIRECTORY:
1606                 case CONFIG_ITEM_MODULE:
1607                 case CONFIG_ITEM_MODULE_CAT:
1608                 case CONFIG_ITEM_MODULE_LIST:
1609                 case CONFIG_ITEM_MODULE_LIST_CAT:
1610                     config_PutPsz( p_this, pp_shortopts[i_cmd]->psz_name, optarg );
1611                     break;
1612                 case CONFIG_ITEM_INTEGER:
1613                     if( i_cmd == 'v' )
1614                     {
1615                         if( optarg )
1616                         {
1617                             if( *optarg == 'v' ) /* eg. -vvv */
1618                             {
1619                                 i_verbose++;
1620                                 while( *optarg == 'v' )
1621                                 {
1622                                     i_verbose++;
1623                                     optarg++;
1624                                 }
1625                             }
1626                             else
1627                             {
1628                                 i_verbose += atoi( optarg ); /* eg. -v2 */
1629                             }
1630                         }
1631                         else
1632                         {
1633                             i_verbose++; /* -v */
1634                         }
1635                         config_PutInt( p_this, pp_shortopts[i_cmd]->psz_name,
1636                                                i_verbose );
1637                     }
1638                     else
1639                     {
1640                         config_PutInt( p_this, pp_shortopts[i_cmd]->psz_name,
1641                                                strtol(optarg, 0, 0) );
1642                     }
1643                     break;
1644                 case CONFIG_ITEM_BOOL:
1645                     config_PutInt( p_this, pp_shortopts[i_cmd]->psz_name, 1 );
1646                     break;
1647             }
1648
1649             continue;
1650         }
1651
1652         /* Internal error: unknown option */
1653         if( !b_ignore_errors )
1654         {
1655             fprintf( stderr, "%s: unknown option"
1656                      " or missing mandatory argument ",
1657                      p_this->p_libvlc->psz_object_name );
1658             if( optopt )
1659             {
1660                 fprintf( stderr, "`-%c'\n", optopt );
1661             }
1662             else
1663             {
1664                 fprintf( stderr, "`%s'\n", ppsz_argv[optind-1] );
1665             }
1666             fprintf( stderr, "Try `%s --help' for more information.\n",
1667                              p_this->p_libvlc->psz_object_name );
1668
1669             for( i_index = 0; p_longopts[i_index].name; i_index++ )
1670                 free( (char *)p_longopts[i_index].name );
1671             free( p_longopts );
1672             free( psz_shortopts );
1673             return -1;
1674         }
1675     }
1676
1677     /* Free allocated resources */
1678     for( i_index = 0; p_longopts[i_index].name; i_index++ )
1679         free( (char *)p_longopts[i_index].name );
1680     free( p_longopts );
1681     free( psz_shortopts );
1682     if( b_ignore_errors ) free( ppsz_argv );
1683
1684     return 0;
1685 }
1686
1687 /**
1688  * config_GetDataDir: find directory where shared data is installed
1689  *
1690  * @return a string (always succeeds).
1691  */
1692 const char *config_GetDataDir( const vlc_object_t *p_this )
1693 {
1694 #if defined (WIN32) || defined (UNDER_CE)
1695     return p_this->p_libvlc_global->psz_vlcpath;
1696 #elif defined(__APPLE__) || defined (SYS_BEOS)
1697     static char path[PATH_MAX] = "";
1698
1699     if( *path == '\0' )
1700     {
1701         snprintf( path, sizeof( path ), "%s/share",
1702                   p_this->p_libvlc_global->psz_vlcpath );
1703         path[sizeof( path ) - 1] = '\0';
1704     }
1705     return path;
1706 #else
1707     return DATA_PATH;
1708 #endif
1709 }
1710
1711 /*****************************************************************************
1712  * config_GetHomeDir, config_GetUserDir: find the user's home directory.
1713  *****************************************************************************
1714  * This function will try by different ways to find the user's home path.
1715  * Note that this function is not reentrant, it should be called only once
1716  * at the beginning of main where the result will be stored for later use.
1717  *****************************************************************************/
1718 static char *GetDir( vlc_bool_t b_appdata )
1719 {
1720     const char *psz_localhome = NULL;
1721
1722 #if defined(HAVE_GETPWUID)
1723     struct passwd *p_pw = NULL;
1724 #endif
1725
1726 #if defined(WIN32) && !defined(UNDER_CE)
1727     typedef HRESULT (WINAPI *SHGETFOLDERPATH)( HWND, int, HANDLE, DWORD,
1728                                                LPWSTR );
1729 #ifndef CSIDL_FLAG_CREATE
1730 #   define CSIDL_FLAG_CREATE 0x8000
1731 #endif
1732 #ifndef CSIDL_APPDATA
1733 #   define CSIDL_APPDATA 0x1A
1734 #endif
1735 #ifndef CSIDL_PROFILE
1736 #   define CSIDL_PROFILE 0x28
1737 #endif
1738 #ifndef SHGFP_TYPE_CURRENT
1739 #   define SHGFP_TYPE_CURRENT 0
1740 #endif
1741
1742     HINSTANCE shfolder_dll;
1743     SHGETFOLDERPATH SHGetFolderPath ;
1744
1745     /* load the shfolder dll to retrieve SHGetFolderPath */
1746     if( ( shfolder_dll = LoadLibrary( _T("SHFolder.dll") ) ) != NULL )
1747     {
1748         SHGetFolderPath = (void *)GetProcAddress( shfolder_dll,
1749                                                   _T("SHGetFolderPathW") );
1750         if ( SHGetFolderPath != NULL )
1751         {
1752             wchar_t whomedir[MAX_PATH];
1753
1754             /* get the "Application Data" folder for the current user */
1755             if( S_OK == SHGetFolderPath( NULL,
1756                                          (b_appdata ? CSIDL_APPDATA :
1757                                            CSIDL_PROFILE) | CSIDL_FLAG_CREATE,
1758                                          NULL, SHGFP_TYPE_CURRENT,
1759                                          whomedir ) )
1760             {
1761                 FreeLibrary( shfolder_dll );
1762                 return FromWide( whomedir );
1763             }
1764         }
1765         FreeLibrary( shfolder_dll );
1766     }
1767
1768 #elif defined(UNDER_CE)
1769
1770 #ifndef CSIDL_APPDATA
1771 #   define CSIDL_APPDATA 0x1A
1772 #endif
1773
1774     wchar_t whomedir[MAX_PATH];
1775
1776     /* get the "Application Data" folder for the current user */
1777     if( SHGetSpecialFolderPath( NULL, whomedir, CSIDL_APPDATA, 1 ) )
1778         return FromWide( whomedir );
1779 #endif
1780
1781 #if defined(HAVE_GETPWUID)
1782     if( ( p_pw = getpwuid( getuid() ) ) == NULL )
1783 #endif
1784     {
1785         psz_localhome = getenv( "HOME" );
1786         if( psz_localhome == NULL )
1787         {
1788             psz_localhome = getenv( "TMP" );
1789             if( psz_localhome == NULL )
1790                 psz_localhome = "/tmp";
1791         }
1792     }
1793 #if defined(HAVE_GETPWUID)
1794     else
1795         psz_localhome = p_pw->pw_dir;
1796 #endif
1797
1798     return FromLocaleDup( psz_localhome );
1799 }
1800
1801 char *config_GetHomeDir( void )
1802 {
1803     return GetDir( VLC_TRUE );
1804 }
1805
1806 char *config_GetUserDir( void )
1807 {
1808     return GetDir( VLC_FALSE );
1809 }
1810
1811
1812 static int ConfigStringToKey( char *psz_key )
1813 {
1814     int i_key = 0;
1815     unsigned int i;
1816     char *psz_parser = strchr( psz_key, '-' );
1817     while( psz_parser && psz_parser != psz_key )
1818     {
1819         for( i = 0; i < sizeof(vlc_modifiers) / sizeof(key_descriptor_t); i++ )
1820         {
1821             if( !strncasecmp( vlc_modifiers[i].psz_key_string, psz_key,
1822                               strlen( vlc_modifiers[i].psz_key_string ) ) )
1823             {
1824                 i_key |= vlc_modifiers[i].i_key_code;
1825             }
1826         }
1827         psz_key = psz_parser + 1;
1828         psz_parser = strchr( psz_key, '-' );
1829     }
1830     for( i = 0; i < sizeof(vlc_keys) / sizeof( key_descriptor_t ); i++ )
1831     {
1832         if( !strcasecmp( vlc_keys[i].psz_key_string, psz_key ) )
1833         {
1834             i_key |= vlc_keys[i].i_key_code;
1835             break;
1836         }
1837     }
1838     return i_key;
1839 }
1840
1841 static char *ConfigKeyToString( int i_key )
1842 {
1843     char *psz_key = malloc( 100 );
1844     char *p;
1845     size_t index;
1846
1847     if ( !psz_key )
1848     {
1849         return NULL;
1850     }
1851     *psz_key = '\0';
1852     p = psz_key;
1853     for( index = 0; index < (sizeof(vlc_modifiers) / sizeof(key_descriptor_t));
1854          index++ )
1855     {
1856         if( i_key & vlc_modifiers[index].i_key_code )
1857         {
1858             p += sprintf( p, "%s-", vlc_modifiers[index].psz_key_string );
1859         }
1860     }
1861     for( index = 0; index < (sizeof(vlc_keys) / sizeof( key_descriptor_t));
1862          index++)
1863     {
1864         if( (int)( i_key & ~KEY_MODIFIER ) == vlc_keys[index].i_key_code )
1865         {
1866             p += sprintf( p, "%s", vlc_keys[index].psz_key_string );
1867             break;
1868         }
1869     }
1870     return psz_key;
1871 }