2001-10-30 17:04:59 +00:00
|
|
|
|
2004-07-23 16:35:20 +00:00
|
|
|
/*
|
|
|
|
* Get path to config dir/file.
|
|
|
|
*
|
|
|
|
* Return Values:
|
|
|
|
* Returns the pointer to the ALLOCATED buffer containing the
|
|
|
|
* zero terminated path string. This buffer has to be FREED
|
|
|
|
* by the caller.
|
|
|
|
*
|
|
|
|
*/
|
2005-04-13 11:46:35 +00:00
|
|
|
#ifdef MACOSX_BUNDLE
|
2005-04-22 12:45:29 +00:00
|
|
|
#include <CoreFoundation/CoreFoundation.h>
|
2005-04-13 11:46:35 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <string.h>
|
|
|
|
#endif
|
|
|
|
|
2001-10-30 17:04:59 +00:00
|
|
|
char *get_path(char *filename){
|
|
|
|
char *homedir;
|
|
|
|
char *buff;
|
2003-04-30 18:16:21 +00:00
|
|
|
#if defined(__MINGW32__)
|
2003-04-18 18:17:05 +00:00
|
|
|
static char *config_dir = "/mplayer";
|
|
|
|
#else
|
2001-10-30 17:04:59 +00:00
|
|
|
static char *config_dir = "/.mplayer";
|
2003-04-18 18:17:05 +00:00
|
|
|
#endif
|
2001-10-30 17:04:59 +00:00
|
|
|
int len;
|
2005-04-13 11:46:35 +00:00
|
|
|
#ifdef MACOSX_BUNDLE
|
|
|
|
struct stat dummy;
|
2005-06-03 14:52:15 +00:00
|
|
|
CFIndex maxlen=256;
|
|
|
|
CFURLRef res_url_ref=NULL;
|
|
|
|
CFURLRef bdl_url_ref=NULL;
|
|
|
|
char *res_url_path = NULL;
|
|
|
|
char *bdl_url_path = NULL;
|
2005-04-13 11:46:35 +00:00
|
|
|
#endif
|
2001-10-30 17:04:59 +00:00
|
|
|
|
|
|
|
if ((homedir = getenv("HOME")) == NULL)
|
2003-04-18 18:17:05 +00:00
|
|
|
#if defined(__MINGW32__)||defined(__CYGWIN__) /*hack to get fonts etc. loaded outside of cygwin environment*/
|
|
|
|
{
|
|
|
|
int i,imax=0;
|
2003-04-18 20:11:36 +00:00
|
|
|
char exedir[260];
|
|
|
|
GetModuleFileNameA(NULL, exedir, 260);
|
2003-04-18 18:17:05 +00:00
|
|
|
for(i=0; i< strlen(exedir);i++)if(exedir[i] =='\\'){exedir[i]='/';imax=i;}
|
|
|
|
exedir[imax]='\0';
|
|
|
|
homedir = exedir;
|
|
|
|
}
|
|
|
|
#else
|
2001-10-30 17:04:59 +00:00
|
|
|
return NULL;
|
2003-04-18 18:17:05 +00:00
|
|
|
#endif
|
2001-10-30 17:04:59 +00:00
|
|
|
len = strlen(homedir) + strlen(config_dir) + 1;
|
|
|
|
if (filename == NULL) {
|
|
|
|
if ((buff = (char *) malloc(len)) == NULL)
|
|
|
|
return NULL;
|
|
|
|
sprintf(buff, "%s%s", homedir, config_dir);
|
|
|
|
} else {
|
|
|
|
len += strlen(filename) + 1;
|
|
|
|
if ((buff = (char *) malloc(len)) == NULL)
|
|
|
|
return NULL;
|
|
|
|
sprintf(buff, "%s%s/%s", homedir, config_dir, filename);
|
|
|
|
}
|
2005-04-13 11:46:35 +00:00
|
|
|
|
|
|
|
#ifdef MACOSX_BUNDLE
|
|
|
|
if(stat(buff, &dummy)) {
|
|
|
|
|
2005-06-03 14:52:15 +00:00
|
|
|
res_url_ref=CFBundleCopyResourcesDirectoryURL(CFBundleGetMainBundle());
|
|
|
|
bdl_url_ref=CFBundleCopyBundleURL(CFBundleGetMainBundle());
|
2005-04-13 11:46:35 +00:00
|
|
|
|
2005-06-03 14:52:15 +00:00
|
|
|
if(res_url_ref&&bdl_url_ref) {
|
2005-04-13 11:46:35 +00:00
|
|
|
|
2005-06-03 14:52:15 +00:00
|
|
|
res_url_path=malloc(maxlen);
|
|
|
|
bdl_url_path=malloc(maxlen);
|
|
|
|
|
|
|
|
while(!CFURLGetFileSystemRepresentation(res_url_ref, true, res_url_path, maxlen)) {
|
|
|
|
maxlen*=2;
|
|
|
|
res_url_path=realloc(res_url_path, maxlen);
|
|
|
|
}
|
|
|
|
CFRelease(res_url_ref);
|
|
|
|
|
|
|
|
while(!CFURLGetFileSystemRepresentation(bdl_url_ref, true, bdl_url_path, maxlen)) {
|
2005-04-13 11:46:35 +00:00
|
|
|
maxlen*=2;
|
2005-06-03 14:52:15 +00:00
|
|
|
bdl_url_path=realloc(bdl_url_path, maxlen);
|
2005-04-13 11:46:35 +00:00
|
|
|
}
|
2005-06-03 14:52:15 +00:00
|
|
|
CFRelease(bdl_url_ref);
|
|
|
|
|
|
|
|
if( strcmp(res_url_path, bdl_url_path) == 0)
|
|
|
|
res_url_path = NULL;
|
2005-04-13 11:46:35 +00:00
|
|
|
}
|
|
|
|
|
2005-06-03 14:52:15 +00:00
|
|
|
if(res_url_path&&filename) {
|
|
|
|
if((strlen(filename)+strlen(res_url_path)+2)>maxlen) {
|
|
|
|
maxlen=strlen(filename)+strlen(res_url_path)+2;
|
2005-04-13 11:46:35 +00:00
|
|
|
}
|
2005-06-03 14:52:15 +00:00
|
|
|
free(buff);
|
|
|
|
buff = (char *) malloc(maxlen);
|
|
|
|
strcpy(buff, res_url_path);
|
|
|
|
|
2005-04-13 11:46:35 +00:00
|
|
|
strcat(buff,"/");
|
|
|
|
strcat(buff, filename);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
2001-12-25 20:41:04 +00:00
|
|
|
mp_msg(MSGT_GLOBAL,MSGL_V,"get_path('%s') -> '%s'\n",filename,buff);
|
2001-10-30 17:04:59 +00:00
|
|
|
return buff;
|
|
|
|
}
|