dirs.c
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:6k
源码类别:

midi

开发平台:

Unix_Linux

  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. #ifdef HAVE_CONFIG_H
  24. # include "config.h"
  25. #endif
  26. #include <vlc_common.h>
  27. #if defined( WIN32 )
  28. # define _WIN32_IE IE5
  29. # include <w32api.h>
  30. #ifndef UNDER_CE
  31. # include <direct.h>
  32. #endif
  33. # include <shlobj.h>
  34. #else
  35. # include <unistd.h>
  36. # include <pwd.h>
  37. #endif
  38. #include "../libvlc.h"
  39. #include "configuration.h"
  40. #include <vlc_charset.h>
  41. #include <vlc_configuration.h>
  42. #include <errno.h>                                                  /* errno */
  43. #include <assert.h>
  44. #include <limits.h>
  45. #if defined( WIN32 )
  46. # define DIR_SHARE ""
  47. #else
  48. # define DIR_SHARE "share"
  49. #endif
  50. /**
  51.  * config_GetDataDir: find directory where shared data is installed
  52.  *
  53.  * @return a string (always succeeds).
  54.  */
  55. const char *config_GetDataDir( void )
  56. {
  57. #if defined (WIN32) || defined(__APPLE__) || defined (SYS_BEOS)
  58.     static char path[PATH_MAX] = "";
  59.     if( *path == '' )
  60.     {
  61.         snprintf( path, sizeof( path ), "%s" DIR_SEP DIR_SHARE, psz_vlcpath );
  62.         path[sizeof( path ) - 1] = '';
  63.     }
  64.     return path;
  65. #else
  66.     return DATA_PATH;
  67. #endif
  68. }
  69. static const char *GetDir( bool b_appdata, bool b_common_appdata )
  70. {
  71.     /* FIXME: a full memory page here - quite a waste... */
  72.     static char homedir[PATH_MAX] = "";
  73. #if defined (WIN32)
  74.     wchar_t wdir[MAX_PATH];
  75. # if defined (UNDER_CE)
  76.     /*There are some errors in cegcc headers*/
  77. #undef SHGetSpecialFolderPath
  78.     BOOL WINAPI SHGetSpecialFolderPath(HWND,LPWSTR,int,BOOL);
  79.     if( SHGetSpecialFolderPath( NULL, wdir, CSIDL_APPDATA, 1 ) )
  80. # else
  81.     /* Get the "Application Data" folder for the current user */
  82.     if( S_OK == SHGetFolderPathW( NULL,
  83.               ( b_appdata ? CSIDL_APPDATA :
  84.                ( b_common_appdata ? CSIDL_COMMON_APPDATA: CSIDL_PERSONAL ) )
  85.               | CSIDL_FLAG_CREATE,
  86.                                   NULL, SHGFP_TYPE_CURRENT, wdir ) )
  87. # endif
  88.     {
  89.         static char appdir[PATH_MAX] = "";
  90.         static char comappdir[PATH_MAX] = "";
  91.         WideCharToMultiByte (CP_UTF8, 0, wdir, -1,
  92.                              b_appdata ? appdir :
  93.                              (b_common_appdata ? comappdir :homedir),
  94.                               PATH_MAX, NULL, NULL);
  95.         return b_appdata ? appdir : (b_common_appdata ? comappdir :homedir);
  96.     }
  97. #else
  98.     (void)b_appdata;
  99.     (void)b_common_appdata;
  100. #endif
  101. #ifdef LIBVLC_USE_PTHREAD
  102.     static pthread_mutex_t lock = PTHREAD_MUTEX_INITIALIZER;
  103.     pthread_mutex_lock (&lock);
  104. #endif
  105.     if (!*homedir)
  106.     {
  107.         const char *psz_localhome = getenv( "HOME" );
  108. #if defined(HAVE_GETPWUID_R)
  109.         char buf[sysconf (_SC_GETPW_R_SIZE_MAX)];
  110.         if (psz_localhome == NULL)
  111.         {
  112.             struct passwd pw, *res;
  113.             if (!getpwuid_r (getuid (), &pw, buf, sizeof (buf), &res) && res)
  114.                 psz_localhome = pw.pw_dir;
  115.         }
  116. #endif
  117.         if (psz_localhome == NULL)
  118.             psz_localhome = getenv( "TMP" );
  119.         if (psz_localhome == NULL)
  120.             psz_localhome = "/tmp";
  121.         const char *uhomedir = FromLocale (psz_localhome);
  122.         strncpy (homedir, uhomedir, sizeof (homedir) - 1);
  123.         homedir[sizeof (homedir) - 1] = '';
  124.         LocaleFree (uhomedir);
  125.     }
  126. #ifdef LIBVLC_USE_PTHREAD
  127.     pthread_mutex_unlock (&lock);
  128. #endif
  129.     return homedir;
  130. }
  131. /**
  132.  * Determines the system configuration directory.
  133.  *
  134.  * @return a string (always succeeds).
  135.  */
  136. const char *config_GetConfDir( void )
  137. {
  138. #if defined (WIN32)
  139.     return GetDir( false, true );
  140. #elif defined(__APPLE__) || defined (SYS_BEOS)
  141.     static char path[PATH_MAX] = "";
  142.     if( *path == '' )
  143.     {
  144.         snprintf( path, sizeof( path ), "%s"DIR_SEP DIR_SHARE, /* FIXME: Duh? */
  145.                   psz_vlcpath );
  146.         path[sizeof( path ) - 1] = '';
  147.     }
  148.     return path;
  149. #else
  150.     return SYSCONFDIR;
  151. #endif
  152. }
  153. /**
  154.  * Get the user's home directory
  155.  */
  156. const char *config_GetHomeDir( void )
  157. {
  158.     return GetDir (false, false);
  159. }
  160. static char *config_GetFooDir (const char *xdg_name, const char *xdg_default)
  161. {
  162.     char *psz_dir;
  163. #if defined(WIN32) || defined(__APPLE__) || defined(SYS_BEOS)
  164.     const char *psz_parent = GetDir (true, false);
  165.     if( asprintf( &psz_dir, "%s" DIR_SEP CONFIG_DIR, psz_parent ) == -1 )
  166.         psz_dir = NULL;
  167.     (void)xdg_name; (void)xdg_default;
  168. #else
  169.     char var[sizeof ("XDG__HOME") + strlen (xdg_name)];
  170.     /* XDG Base Directory Specification - Version 0.6 */
  171.     snprintf (var, sizeof (var), "XDG_%s_HOME", xdg_name);
  172.     const char *psz_home = getenv (var);
  173.     psz_home = psz_home ? FromLocale (psz_home) : NULL;
  174.     if( psz_home )
  175.     {
  176.         if( asprintf( &psz_dir, "%s/vlc", psz_home ) == -1 )
  177.             psz_dir = NULL;
  178.         LocaleFree (psz_home);
  179.         return psz_dir;
  180.     }
  181.     /* Try HOME, then fallback to non-XDG dirs */
  182.     psz_home = config_GetHomeDir();
  183.     if( asprintf( &psz_dir, "%s/%s/vlc", psz_home, xdg_default ) == -1 )
  184.         psz_dir = NULL;
  185. #endif
  186.     return psz_dir;
  187. }
  188. /**
  189.  * Get the user's VLC configuration directory
  190.  */
  191. char *config_GetUserConfDir( void )
  192. {
  193.     return config_GetFooDir ("CONFIG", ".config");
  194. }
  195. /**
  196.  * Get the user's VLC data directory
  197.  * (used for stuff like the skins, custom lua modules, ...)
  198.  */
  199. char *config_GetUserDataDir( void )
  200. {
  201.     return config_GetFooDir ("DATA", ".local/share");
  202. }
  203. /**
  204.  * Get the user's VLC cache directory
  205.  * (used for stuff like the modules cache, the album art cache, ...)
  206.  */
  207. char *config_GetCacheDir( void )
  208. {
  209.     return config_GetFooDir ("CACHE", ".cache");
  210. }