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