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