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.
|
2010-01-30 23:24:23 +00:00
|
|
|
*
|
|
|
|
* This file is part of MPlayer.
|
|
|
|
*
|
|
|
|
* MPlayer is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* MPlayer is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with MPlayer; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
2004-07-23 16:35:20 +00:00
|
|
|
*/
|
2007-08-28 11:20:24 +00:00
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2011-02-23 14:18:09 +00:00
|
|
|
#include <stdbool.h>
|
2012-02-03 07:05:11 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <unistd.h>
|
2010-02-18 09:29:05 +00:00
|
|
|
#include "config.h"
|
2007-08-28 11:20:24 +00:00
|
|
|
#include "mp_msg.h"
|
2010-03-20 23:38:27 +00:00
|
|
|
#include "path.h"
|
2007-08-28 11:20:24 +00:00
|
|
|
|
2008-08-07 12:20:50 +00:00
|
|
|
#ifdef CONFIG_MACOSX_BUNDLE
|
2005-04-22 12:45:29 +00:00
|
|
|
#include <CoreFoundation/CoreFoundation.h>
|
2005-04-13 11:46:35 +00:00
|
|
|
#include <unistd.h>
|
2009-01-30 23:29:39 +00:00
|
|
|
#elif defined(__MINGW32__)
|
2007-08-29 09:31:44 +00:00
|
|
|
#include <windows.h>
|
2009-01-30 23:29:39 +00:00
|
|
|
#elif defined(__CYGWIN__)
|
2008-10-13 14:55:01 +00:00
|
|
|
#include <windows.h>
|
|
|
|
#include <sys/cygwin.h>
|
2008-02-24 12:41:51 +00:00
|
|
|
#endif
|
|
|
|
|
2011-02-23 14:18:09 +00:00
|
|
|
#include "talloc.h"
|
|
|
|
|
2012-02-03 07:05:11 +00:00
|
|
|
#include "osdep/io.h"
|
2010-03-10 10:00:59 +00:00
|
|
|
|
2006-07-03 23:27:37 +00:00
|
|
|
char *get_path(const char *filename){
|
2001-10-30 17:04:59 +00:00
|
|
|
char *homedir;
|
|
|
|
char *buff;
|
2007-08-29 09:43:00 +00:00
|
|
|
#ifdef __MINGW32__
|
|
|
|
static char *config_dir = "/mplayer";
|
2003-04-18 18:17:05 +00:00
|
|
|
#else
|
2001-10-30 17:04:59 +00:00
|
|
|
static char *config_dir = "/.mplayer";
|
2012-04-28 15:37:01 +00:00
|
|
|
#endif
|
|
|
|
#if defined(__MINGW32__) || defined(__CYGWIN__)
|
|
|
|
char exedir[260];
|
2003-04-18 18:17:05 +00:00
|
|
|
#endif
|
2001-10-30 17:04:59 +00:00
|
|
|
int len;
|
2008-08-07 12:20:50 +00:00
|
|
|
#ifdef CONFIG_MACOSX_BUNDLE
|
2005-04-13 11:46:35 +00:00
|
|
|
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
|
|
|
|
2005-10-29 12:16:46 +00:00
|
|
|
if ((homedir = getenv("MPLAYER_HOME")) != NULL)
|
|
|
|
config_dir = "";
|
|
|
|
else if ((homedir = getenv("HOME")) == NULL)
|
2007-08-29 09:43:00 +00:00
|
|
|
#if defined(__MINGW32__) || defined(__CYGWIN__)
|
|
|
|
/* Hack to get fonts etc. loaded outside of Cygwin environment. */
|
2003-04-18 18:17:05 +00:00
|
|
|
{
|
2007-08-29 09:43:00 +00:00
|
|
|
int i,imax=0;
|
2012-04-28 15:37:01 +00:00
|
|
|
len = (int)GetModuleFileNameA(NULL, exedir, 260);
|
|
|
|
for (i=0; i < len; i++)
|
2007-08-29 09:43:00 +00:00
|
|
|
if (exedir[i] =='\\')
|
|
|
|
{exedir[i]='/'; imax=i;}
|
|
|
|
exedir[imax]='\0';
|
|
|
|
homedir = exedir;
|
2003-04-18 18:17:05 +00:00
|
|
|
}
|
|
|
|
#else
|
2007-08-29 09:43:00 +00:00
|
|
|
return NULL;
|
|
|
|
#endif
|
2001-10-30 17:04:59 +00:00
|
|
|
len = strlen(homedir) + strlen(config_dir) + 1;
|
|
|
|
if (filename == NULL) {
|
2007-07-19 13:52:39 +00:00
|
|
|
if ((buff = malloc(len)) == NULL)
|
2001-10-30 17:04:59 +00:00
|
|
|
return NULL;
|
|
|
|
sprintf(buff, "%s%s", homedir, config_dir);
|
|
|
|
} else {
|
|
|
|
len += strlen(filename) + 1;
|
2007-07-19 13:52:39 +00:00
|
|
|
if ((buff = malloc(len)) == NULL)
|
2001-10-30 17:04:59 +00:00
|
|
|
return NULL;
|
|
|
|
sprintf(buff, "%s%s/%s", homedir, config_dir, filename);
|
|
|
|
}
|
2005-04-13 11:46:35 +00:00
|
|
|
|
2008-08-07 12:20:50 +00:00
|
|
|
#ifdef CONFIG_MACOSX_BUNDLE
|
2007-08-29 09:43:00 +00:00
|
|
|
if (stat(buff, &dummy)) {
|
|
|
|
|
2005-06-03 14:52:15 +00:00
|
|
|
res_url_ref=CFBundleCopyResourcesDirectoryURL(CFBundleGetMainBundle());
|
|
|
|
bdl_url_ref=CFBundleCopyBundleURL(CFBundleGetMainBundle());
|
2007-08-29 09:43:00 +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);
|
|
|
|
|
2007-08-29 09:43:00 +00:00
|
|
|
while (!CFURLGetFileSystemRepresentation(res_url_ref, true, res_url_path, maxlen)) {
|
2005-06-03 14:52:15 +00:00
|
|
|
maxlen*=2;
|
|
|
|
res_url_path=realloc(res_url_path, maxlen);
|
|
|
|
}
|
|
|
|
CFRelease(res_url_ref);
|
2007-08-29 09:43:00 +00:00
|
|
|
|
|
|
|
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);
|
2007-08-29 09:43:00 +00:00
|
|
|
|
|
|
|
if (strcmp(res_url_path, bdl_url_path) == 0)
|
2005-06-03 14:52:15 +00:00
|
|
|
res_url_path = NULL;
|
2005-04-13 11:46:35 +00:00
|
|
|
}
|
2007-08-29 09:43:00 +00:00
|
|
|
|
|
|
|
if (res_url_path&&filename) {
|
|
|
|
if ((strlen(filename)+strlen(res_url_path)+2)>maxlen) {
|
2005-06-03 14:52:15 +00:00
|
|
|
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);
|
2007-07-19 13:52:39 +00:00
|
|
|
buff = malloc(maxlen);
|
2005-06-03 14:52:15 +00:00
|
|
|
strcpy(buff, res_url_path);
|
2007-08-29 09:43:00 +00:00
|
|
|
|
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;
|
|
|
|
}
|
2005-10-16 19:14:09 +00:00
|
|
|
|
2011-02-23 14:18:09 +00:00
|
|
|
char *mp_basename(const char *path)
|
2010-11-16 21:06:52 +00:00
|
|
|
{
|
|
|
|
char *s;
|
|
|
|
|
|
|
|
#if HAVE_DOS_PATHS
|
|
|
|
s = strrchr(path, '\\');
|
|
|
|
if (s)
|
|
|
|
path = s + 1;
|
|
|
|
s = strrchr(path, ':');
|
|
|
|
if (s)
|
|
|
|
path = s + 1;
|
|
|
|
#endif
|
|
|
|
s = strrchr(path, '/');
|
2011-02-23 14:18:09 +00:00
|
|
|
return s ? s + 1 : (char *)path;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct bstr mp_dirname(const char *path)
|
|
|
|
{
|
|
|
|
struct bstr ret = {(uint8_t *)path, mp_basename(path) - path};
|
|
|
|
if (ret.len == 0)
|
2012-07-28 21:47:42 +00:00
|
|
|
return bstr0(".");
|
2011-02-23 14:18:09 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
char *mp_path_join(void *talloc_ctx, struct bstr p1, struct bstr p2)
|
|
|
|
{
|
|
|
|
if (p1.len == 0)
|
|
|
|
return bstrdup0(talloc_ctx, p2);
|
|
|
|
if (p2.len == 0)
|
|
|
|
return bstrdup0(talloc_ctx, p1);
|
|
|
|
|
|
|
|
#if HAVE_DOS_PATHS
|
|
|
|
if (p2.len >= 2 && p2.start[1] == ':'
|
|
|
|
|| p2.start[0] == '\\' || p2.start[0] == '/')
|
|
|
|
#else
|
|
|
|
if (p2.start[0] == '/')
|
|
|
|
#endif
|
|
|
|
return bstrdup0(talloc_ctx, p2); // absolute path
|
|
|
|
|
|
|
|
bool have_separator;
|
|
|
|
int endchar1 = p1.start[p1.len - 1];
|
|
|
|
#if HAVE_DOS_PATHS
|
|
|
|
have_separator = endchar1 == '/' || endchar1 == '\\'
|
|
|
|
|| p1.len == 2 && endchar1 == ':'; // "X:" only
|
|
|
|
#else
|
|
|
|
have_separator = endchar1 == '/';
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return talloc_asprintf(talloc_ctx, "%.*s%s%.*s", BSTR_P(p1),
|
|
|
|
have_separator ? "" : "/", BSTR_P(p2));
|
2010-11-16 21:06:52 +00:00
|
|
|
}
|
2012-02-03 07:05:11 +00:00
|
|
|
|
|
|
|
bool mp_path_exists(const char *path)
|
|
|
|
{
|
|
|
|
struct stat st;
|
|
|
|
return mp_stat(path, &st) == 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool mp_path_isdir(const char *path)
|
|
|
|
{
|
|
|
|
struct stat st;
|
|
|
|
return mp_stat(path, &st) == 0 && S_ISDIR(st.st_mode);
|
|
|
|
}
|