]> git.sesse.net Git - vlc/blob - src/config/dirs.c
Store the home directory statically, as it cannot change
[vlc] / src / config / dirs.c
1 /*****************************************************************************
2  * dirs.c: directories configuration
3  *****************************************************************************
4  * Copyright (C) 2001-2007 the VideoLAN team
5  * Copyright © 2007-2008 Rémi Denis-Courmont
6  *
7  * Authors: Gildas Bazin <gbazin@videolan.org>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 #ifdef HAVE_CONFIG_H
25 # include "config.h"
26 #endif
27
28 #include <vlc/vlc.h>
29
30 #if defined( WIN32 )
31 # define _WIN32_IE IE5
32 # include <w32api.h>
33 # include <direct.h>
34 # include <shlobj.h>
35 #else
36 # include <unistd.h>
37 # include <pwd.h>
38 #endif
39
40 #include "../libvlc.h"
41 #include "configuration.h"
42 #include <vlc_charset.h>
43 #include <vlc_configuration.h>
44
45 #include <errno.h>                                                  /* errno */
46 #include <assert.h>
47 #include <limits.h>
48
49 /**
50  * config_GetDataDir: find directory where shared data is installed
51  *
52  * @return a string (always succeeds).
53  */
54 const char *config_GetDataDir( void )
55 {
56 #if defined (WIN32) || defined(__APPLE__) || defined (SYS_BEOS)
57     static char path[PATH_MAX] = "";
58
59     if( *path == '\0' )
60     {
61         snprintf( path, sizeof( path ), "%s/share",
62                   vlc_global()->psz_vlcpath );
63         path[sizeof( path ) - 1] = '\0';
64     }
65     return path;
66 #else
67     return DATA_PATH;
68 #endif
69 }
70
71 /**
72  * Determines the system configuration directory.
73  *
74  * @return a string (always succeeds).
75  */
76 const char *config_GetConfDir( void )
77 {
78 #if defined (WIN32) || defined(__APPLE__) || defined (SYS_BEOS)
79     static char path[PATH_MAX] = "";
80
81     if( *path == '\0' )
82     {
83         snprintf( path, sizeof( path ), "%s/share", /* FIXME: Duh? */
84                   vlc_global()->psz_vlcpath );
85         path[sizeof( path ) - 1] = '\0';
86     }
87     return path;
88 #else
89     return SYSCONFDIR;
90 #endif
91 }
92
93 static const char *GetDir( bool b_appdata )
94 {
95     static char homedir[PATH_MAX] = "";
96
97 #if defined (WIN32)
98     wchar_t wdir[MAX_PATH];
99
100 # if defined (UNDER_CE)
101     if( SHGetSpecialFolderPath( NULL, wdir, CSIDL_APPDATA, 1 ) )
102 # else
103     /* Get the "Application Data" folder for the current user */
104     if( S_OK == SHGetFolderPathW( NULL,
105               (b_appdata ? CSIDL_APPDATA : CSIDL_PROFILE) | CSIDL_FLAG_CREATE,
106                                   NULL, SHGFP_TYPE_CURRENT, wdir ) )
107 # endif
108     {
109         static char appdir[PATH_MAX] = "";
110         WideCharToMultiByte (CP_UTF8, 0, wdir, -1,
111                              b_appdata ? appdir : homedir, PATH_MAX,
112                              NULL, NULL);
113         return b_appdata ? appdir : homedir;
114     }
115 #else
116     (void)b_appdata;
117 #endif
118
119 #ifdef LIBVLC_USE_PTHREAD
120     static pthread_mutex_t lock = PTHREAD_MUTEX_INITIALIZER;
121     pthread_mutex_lock (&lock);
122 #endif
123
124     if (!*homedir)
125     {
126         const char *psz_localhome = getenv( "HOME" );
127 #if defined(HAVE_GETPWUID_R)
128         char buf[sysconf (_SC_GETPW_R_SIZE_MAX)];
129         if (psz_localhome == NULL)
130         {
131             struct passwd pw, *res;
132
133             if (!getpwuid_r (getuid (), &pw, buf, sizeof (buf), &res) && res)
134                 psz_localhome = pw.pw_dir;
135         }
136 #endif
137         if (psz_localhome == NULL)
138             psz_localhome = getenv( "TMP" );
139         if (psz_localhome == NULL)
140             psz_localhome = "/tmp";
141
142         const char *uhomedir = FromLocale (psz_localhome);
143         strncpy (homedir, uhomedir, sizeof (homedir) - 1);
144         homedir[sizeof (homedir) - 1] = '\0';
145         LocaleFree (uhomedir);
146     }
147 #ifdef LIBVLC_USE_PTHREAD
148     pthread_mutex_unlock (&lock);
149 #endif
150     return homedir;
151 }
152
153 /**
154  * Get the user's home directory
155  */
156 char *config_GetHomeDir( void )
157 {
158     return strdup (GetDir( false ));
159 }
160
161 static char *config_GetFooDir (const char *xdg_name, const char *xdg_default)
162 {
163     char *psz_dir;
164 #if defined(WIN32) || defined(__APPLE__) || defined(SYS_BEOS)
165     char *psz_parent = strdup (GetDir (true));
166
167     if( asprintf( &psz_dir, "%s" DIR_SEP CONFIG_DIR, psz_parent ) == -1 )
168         psz_dir = NULL;
169
170     free (psz_parent);
171     (void)xdg_name; (void)xdg_default;
172 #else
173     char var[sizeof ("XDG__HOME") + strlen (xdg_name)];
174
175     /* XDG Base Directory Specification - Version 0.6 */
176     snprintf (var, sizeof (var), "XDG_%s_HOME", xdg_name);
177     char *psz_home = getenv( var );
178     psz_home = psz_home ? FromLocaleDup( psz_home ) : NULL;
179     if( psz_home )
180     {
181         if( asprintf( &psz_dir, "%s/vlc", psz_home ) == -1 )
182             psz_dir = NULL;
183         goto out;
184     }
185
186     /* Try HOME, then fallback to non-XDG dirs */
187     psz_home = config_GetHomeDir();
188     if( asprintf( &psz_dir, "%s/%s/vlc", psz_home, xdg_default ) == -1 )
189         psz_dir = NULL;
190
191 out:
192     free (psz_home);
193 #endif
194     return psz_dir;
195 }
196
197 /**
198  * Get the user's VLC configuration directory
199  */
200 char *config_GetUserConfDir( void )
201 {
202     return config_GetFooDir ("CONFIG", ".config");
203 }
204
205 /**
206  * Get the user's VLC data directory
207  * (used for stuff like the skins, custom lua modules, ...)
208  */
209 char *config_GetUserDataDir( void )
210 {
211     return config_GetFooDir ("DATA", ".local/share");
212 }
213
214 /**
215  * Get the user's VLC cache directory
216  * (used for stuff like the modules cache, the album art cache, ...)
217  */
218 char *config_GetCacheDir( void )
219 {
220     return config_GetFooDir ("CACHE", ".cache");
221 }