1 /*****************************************************************************
2 * darwin_dirs.c: Mac OS X directories configuration
3 *****************************************************************************
4 * Copyright (C) 2001-2009 VLC authors and VideoLAN
5 * Copyright © 2007-2012 Rémi Denis-Courmont
7 * Authors: Gildas Bazin <gbazin@videolan.org>
8 * Felix Paul Kühne <fkuehne at videolan dot org>
10 * This program is free software; you can redistribute it and/or modify it
11 * under the terms of the GNU Lesser General Public License as published by
12 * the Free Software Foundation; either version 2.1 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU Lesser General Public License for more details.
20 * You should have received a copy of the GNU Lesser General Public License
21 * along with this program; if not, write to the Free Software Foundation,
22 * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23 *****************************************************************************/
25 #include <CoreFoundation/CoreFoundation.h>
31 #include <vlc_common.h>
33 #include "../libvlc.h"
34 #include <vlc_configuration.h>
35 #include "config/configuration.h"
39 #include <mach-o/dyld.h>
42 # define MAXPATHLEN 1024
45 static char *config_GetLibPath (void)
47 /* Get the full program path and name */
48 /* First try to see if we are linked to the framework */
49 for (unsigned i
= 0; i
< _dyld_image_count(); i
++)
51 const char *psz_img_name
= _dyld_get_image_name(i
);
52 const char *p
= strstr( psz_img_name
, "VLCKit.framework/Versions/" );
54 /* Check for "VLCKit.framework/Versions/Current/VLCKit",
55 * as well as "VLCKit.framework/Versions/A/VLCKit" and
56 * "VLC.framework/Versions/B/VLCKit" */
59 /* Look for the next forward slash */
60 p
+= 26; /* p_char += strlen(" VLCKit.framework/Versions/" ) */
61 p
+= strcspn( p
, "/" );
63 /* If the string ends with VLC then we've found a winner */
64 if ( !strcmp( p
, "/VLCKit" ) )
65 return strdup( psz_img_name
);
68 /* Do we end by "VLC"? If so we are the legacy VLC.app that doesn't
70 size_t len
= strlen(psz_img_name
);
71 if( len
>= 3 && !strcmp( psz_img_name
+ len
- 3, "VLC") )
72 return strdup( psz_img_name
);
75 /* We are not linked to the VLC.framework, let's use dladdr to figure
78 if( dladdr(system_Init
, &info
) )
79 return strdup(dirname( info
.dli_fname
));
81 char path
[MAXPATHLEN
+1];
82 uint32_t path_len
= sizeof(path
) - 1;
84 if ( !_NSGetExecutablePath(path
, &path_len
) )
89 char *config_GetLibDir (void)
91 char *path
= config_GetLibPath ();
94 char *p
= strrchr (path
, '/');
103 /* should never happen */
107 char *config_GetDataDir (void)
109 const char *path
= getenv ("VLC_DATA_PATH");
111 return strdup (path
);
113 char *vlcpath
= config_GetLibDir ();
116 if (asprintf (&datadir
, "%s/share", vlcpath
) == -1)
123 static char *config_GetHomeDir (void)
125 const char *home
= getenv ("HOME");
130 return strdup (home
);
133 static char *getAppDependentDir(vlc_userdir_t type
)
135 const char *psz_path
;
139 psz_path
= "%s/Library/Preferences/%s";
141 case VLC_TEMPLATES_DIR
:
143 psz_path
= "%s/Library/Application Support/%s";
146 psz_path
= "%s/Library/Caches/%s";
154 const char *name
= "org.videolan.vlc";
156 CFBundleRef mainBundle
= CFBundleGetMainBundle();
159 CFStringRef identifierAsNS
= CFBundleGetIdentifier(mainBundle
);
162 char identifier
[256];
163 Boolean ret
= CFStringGetCString(identifierAsNS
, identifier
, sizeof(identifier
), kCFStringEncodingUTF8
);
169 char *psz_parent
= config_GetHomeDir ();
171 if( asprintf( &psz_dir
, psz_path
, psz_parent
, name
) == -1 )
178 char *config_GetUserDir (vlc_userdir_t type
)
180 const char *psz_path
;
184 case VLC_TEMPLATES_DIR
:
187 return getAppDependentDir(type
);
189 case VLC_DESKTOP_DIR
:
190 psz_path
= "%s/Desktop";
192 case VLC_DOWNLOAD_DIR
:
193 psz_path
= "%s/Downloads";
195 case VLC_DOCUMENTS_DIR
:
196 psz_path
= "%s/Documents";
199 psz_path
= "%s/Music";
201 case VLC_PICTURES_DIR
:
202 psz_path
= "%s/Pictures";
205 psz_path
= "%s/Movies";
207 case VLC_PUBLICSHARE_DIR
:
208 psz_path
= "%s/Public";
214 char *psz_parent
= config_GetHomeDir ();
216 if( asprintf( &psz_dir
, psz_path
, psz_parent
) == -1 )