1 /*****************************************************************************
2 * dirs.c: XDG directories configuration
3 *****************************************************************************
4 * Copyright (C) 2001-2007 VLC authors and VideoLAN
5 * Copyright © 2007-2009 Rémi Denis-Courmont
7 * Authors: Gildas Bazin <gbazin@videolan.org>
9 * This program is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU Lesser General Public License as published by
11 * the Free Software Foundation; either version 2.1 of the License, or
12 * (at your option) any later version.
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 Lesser General Public License for more details.
19 * You should have received a copy of the GNU Lesser General Public License
20 * along with this program; if not, write to the Free Software Foundation,
21 * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22 *****************************************************************************/
28 #include <vlc_common.h>
30 #include "../libvlc.h"
31 #include "config/configuration.h"
38 #if !defined (__linux__)
40 * Determines the shared data directory
42 * @return a nul-terminated string or NULL. Use free() to release it.
44 char *config_GetDataDir (void)
46 const char *path
= getenv ("VLC_DATA_PATH");
47 return strdup ((path
!= NULL
) ? path
: PKGDATADIR
);
51 * Determines the architecture-dependent data directory
53 * @return a string (always succeeds).
55 char *config_GetLibDir (void)
57 return strdup (PKGLIBDIR
);
61 static char *config_GetHomeDir (void)
64 const char *home
= getenv ("HOME");
67 #if defined(HAVE_GETPWUID_R)
68 /* 2/ Try /etc/passwd */
69 long max
= sysconf (_SC_GETPW_R_SIZE_MAX
);
73 struct passwd pwbuf
, *pw
;
75 if (getpwuid_r (getuid (), &pwbuf
, buf
, sizeof (buf
), &pw
) == 0
77 return strdup (pw
->pw_dir
);
83 static char *config_GetAppDir (const char *xdg_name
, const char *xdg_default
)
86 char var
[sizeof ("XDG__HOME") + strlen (xdg_name
)];
88 /* XDG Base Directory Specification - Version 0.6 */
89 snprintf (var
, sizeof (var
), "XDG_%s_HOME", xdg_name
);
91 const char *home
= getenv (var
);
94 if (asprintf (&psz_dir
, "%s/vlc", home
) == -1)
99 char *psz_home
= config_GetHomeDir ();
101 || asprintf( &psz_dir
, "%s/%s/vlc", psz_home
, xdg_default
) == -1 )
107 static char *config_GetTypeDir (const char *xdg_name
)
109 const size_t namelen
= strlen (xdg_name
);
110 const char *home
= getenv ("HOME");
111 const char *dir
= getenv ("XDG_CONFIG_HOME");
112 const char *file
= "user-dirs.dirs";
119 file
= ".config/user-dirs.dirs";
123 if (asprintf (&path
, "%s/%s", dir
, file
) == -1)
126 FILE *stream
= fopen (path
, "rte");
131 char *linebuf
= NULL
;
134 while (getline (&linebuf
, &linelen
, stream
) != -1)
137 ptr
+= strspn (ptr
, " \t"); /* Skip whites */
138 if (strncmp (ptr
, "XDG_", 4))
140 ptr
+= 4; /* Skip XDG_ */
141 if (strncmp (ptr
, xdg_name
, namelen
))
143 ptr
+= namelen
; /* Skip XDG type name */
144 if (strncmp (ptr
, "_DIR", 4))
146 ptr
+= 4; /* Skip _DIR */
147 ptr
+= strspn (ptr
, " \t"); /* Skip whites */
150 ptr
++; /* Skip equality sign */
151 ptr
+= strspn (ptr
, " \t"); /* Skip whites */
154 ptr
++; /* Skip quote */
155 linelen
-= ptr
- linebuf
;
158 if (strncmp (ptr
, "$HOME", 5))
160 path
= malloc (linelen
);
166 { /* Prefix with $HOME */
167 const size_t homelen
= strlen (home
);
169 path
= malloc (homelen
+ linelen
- 5);
172 memcpy (path
, home
, homelen
);
173 out
= path
+ homelen
;
199 if (strcmp (xdg_name
, "DESKTOP") == 0)
201 if (asprintf (&path
, "%s/Desktop", home
) == -1)
205 path
= strdup (home
);
212 char *config_GetUserDir (vlc_userdir_t type
)
219 return config_GetAppDir ("CONFIG", ".config");
221 return config_GetAppDir ("DATA", ".local/share");
223 return config_GetAppDir ("CACHE", ".cache");
225 case VLC_DESKTOP_DIR
:
226 return config_GetTypeDir ("DESKTOP");
227 case VLC_DOWNLOAD_DIR
:
228 return config_GetTypeDir ("DOWNLOAD");
229 case VLC_TEMPLATES_DIR
:
230 return config_GetTypeDir ("TEMPLATES");
231 case VLC_PUBLICSHARE_DIR
:
232 return config_GetTypeDir ("PUBLICSHARE");
233 case VLC_DOCUMENTS_DIR
:
234 return config_GetTypeDir ("DOCUMENTS");
236 return config_GetTypeDir ("MUSIC");
237 case VLC_PICTURES_DIR
:
238 return config_GetTypeDir ("PICTURES");
240 return config_GetTypeDir ("VIDEOS");
242 return config_GetHomeDir ();