RetroArch/file_path.c

901 lines
21 KiB
C
Raw Normal View History

2012-04-21 21:13:50 +00:00
/* RetroArch - A frontend for libretro.
2014-01-01 00:50:59 +00:00
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
2012-04-13 19:29:11 +00:00
*
2012-04-21 21:13:50 +00:00
* RetroArch is free software: you can redistribute it and/or modify it under the terms
2012-04-13 19:29:11 +00:00
* of the GNU General Public License as published by the Free Software Found-
* ation, either version 3 of the License, or (at your option) any later version.
*
2012-04-21 21:13:50 +00:00
* RetroArch is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
2012-04-13 19:29:11 +00:00
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
* PURPOSE. See the GNU General Public License for more details.
*
2012-04-21 21:31:57 +00:00
* You should have received a copy of the GNU General Public License along with RetroArch.
2012-04-13 19:29:11 +00:00
* If not, see <http://www.gnu.org/licenses/>.
*/
2013-11-06 13:21:12 +00:00
#include "file_path.h"
2012-04-13 19:29:11 +00:00
#include <stdlib.h>
#include "boolean.h"
#include <string.h>
#include <time.h>
#include <errno.h>
2012-04-13 19:29:11 +00:00
#include "compat/strl.h"
2012-06-18 18:37:35 +00:00
#include "compat/posix_string.h"
2013-11-06 13:21:12 +00:00
#include "miscellaneous.h"
2012-04-13 19:29:11 +00:00
#if (defined(__CELLOS_LV2__) && !defined(__PSL1GHT__)) || defined(__QNX__) || defined(PSP)
#include <unistd.h> //stat() is defined here
2012-04-13 19:29:11 +00:00
#endif
2013-05-01 02:03:40 +00:00
#if defined(__CELLOS_LV2__)
#ifndef S_ISDIR
#define S_ISDIR(x) (x & 0040000)
#endif
#endif
2012-04-13 19:29:11 +00:00
2013-04-11 20:35:15 +00:00
#if defined(_WIN32)
#ifdef _MSC_VER
#define setmode _setmode
#endif
#include "msvc/msvc_compat.h"
#ifdef _XBOX
#include <xtl.h>
2013-04-11 20:35:15 +00:00
#define INVALID_FILE_ATTRIBUTES -1
#else
2012-04-13 19:29:11 +00:00
#include <io.h>
#include <fcntl.h>
#include <direct.h>
2012-04-13 19:29:11 +00:00
#include <windows.h>
#endif
#else
#include <sys/types.h>
#include <sys/stat.h>
#include <dirent.h>
#include <unistd.h>
2012-04-13 19:29:11 +00:00
#endif
2013-10-14 19:08:41 +00:00
// Dump stuff to file.
bool write_file(const char *path, const void *data, size_t size)
{
FILE *file = fopen(path, "wb");
if (!file)
return false;
else
{
bool ret = fwrite(data, 1, size, file) == size;
fclose(file);
return ret;
}
}
// Generic file loader.
long read_file(const char *path, void **buf)
2013-10-14 19:08:41 +00:00
{
long rc = 0, len = 0;
2013-10-14 19:08:41 +00:00
void *rom_buf = NULL;
FILE *file = fopen(path, "rb");
2013-10-14 19:08:41 +00:00
if (!file)
goto error;
fseek(file, 0, SEEK_END);
len = ftell(file);
rewind(file);
rom_buf = malloc(len + 1);
if (!rom_buf)
{
RARCH_ERR("Couldn't allocate memory.\n");
goto error;
}
if ((rc = fread(rom_buf, 1, len, file)) < len)
2013-10-14 19:08:41 +00:00
RARCH_WARN("Didn't read whole file.\n");
*buf = rom_buf;
// Allow for easy reading of strings to be safe.
// Will only work with sane character formatting (Unix).
((char*)rom_buf)[len] = '\0';
2013-10-14 19:08:41 +00:00
fclose(file);
return rc;
error:
if (file)
fclose(file);
free(rom_buf);
*buf = NULL;
return -1;
}
// Reads file content as one string.
bool read_file_string(const char *path, char **buf)
{
*buf = NULL;
FILE *file = fopen(path, "r");
long len = 0;
2013-10-14 19:08:41 +00:00
char *ptr = NULL;
if (!file)
goto error;
// ftell with "r" can be troublesome ...
// Haven't run into issues yet though.
2013-10-14 19:08:41 +00:00
fseek(file, 0, SEEK_END);
len = ftell(file) + 2; // Takes account of being able to read in EOF and '\0' at end.
rewind(file);
*buf = (char*)calloc(len, sizeof(char));
if (!*buf)
goto error;
ptr = *buf;
while (ptr && !feof(file))
{
size_t bufsize = (size_t)(((ptrdiff_t)*buf + (ptrdiff_t)len) - (ptrdiff_t)ptr);
fgets(ptr, bufsize, file);
ptr += strlen(ptr);
}
ptr = strchr(ptr, EOF);
if (ptr)
*ptr = '\0';
fclose(file);
return true;
error:
if (file)
fclose(file);
if (*buf)
free(*buf);
return false;
}
void string_list_free(struct string_list *list)
2012-04-13 19:29:11 +00:00
{
size_t i;
if (!list)
return;
for (i = 0; i < list->size; i++)
free(list->elems[i].data);
free(list->elems);
free(list);
}
2012-04-13 19:29:11 +00:00
2012-06-17 22:34:47 +00:00
static bool string_list_capacity(struct string_list *list, size_t cap)
{
rarch_assert(cap > list->size);
2012-04-13 19:29:11 +00:00
struct string_list_elem *new_data = (struct string_list_elem*)realloc(list->elems, cap * sizeof(*new_data));
2012-06-17 22:34:47 +00:00
if (!new_data)
return false;
2012-04-13 19:29:11 +00:00
list->elems = new_data;
list->cap = cap;
2012-06-17 22:34:47 +00:00
return true;
}
struct string_list *string_list_new(void)
2012-06-17 22:34:47 +00:00
{
struct string_list *list = (struct string_list*)calloc(1, sizeof(*list));
if (!list)
return NULL;
if (!string_list_capacity(list, 32))
{
string_list_free(list);
return NULL;
}
return list;
2012-06-17 22:34:47 +00:00
}
bool string_list_append(struct string_list *list, const char *elem, union string_list_elem_attr attr)
2012-06-17 22:34:47 +00:00
{
if (list->size >= list->cap &&
!string_list_capacity(list, list->cap * 2))
2012-06-17 22:34:47 +00:00
return false;
char *dup = strdup(elem);
if (!dup)
2012-06-17 22:34:47 +00:00
return false;
list->elems[list->size].data = dup;
list->elems[list->size].attr = attr;
2012-06-17 22:34:47 +00:00
list->size++;
return true;
}
2014-04-04 13:13:44 +00:00
void string_list_set(struct string_list *list, unsigned index, const char *str)
{
free(list->elems[index].data);
rarch_assert(list->elems[index].data = strdup(str));
}
void string_list_join_concat(char *buffer, size_t size, const struct string_list *list, const char *sep)
{
size_t len = strlen(buffer);
rarch_assert(len < size);
buffer += len;
size -= len;
size_t i;
for (i = 0; i < list->size; i++)
{
strlcat(buffer, list->elems[i].data, size);
if ((i + 1) < list->size)
strlcat(buffer, sep, size);
}
}
struct string_list *string_split(const char *str, const char *delim)
2012-06-17 22:34:47 +00:00
{
char *copy = NULL;
const char *tmp = NULL;
struct string_list *list = string_list_new();
if (!list)
2012-04-13 19:29:11 +00:00
goto error;
2012-06-17 22:34:47 +00:00
copy = strdup(str);
if (!copy)
goto error;
2012-06-17 22:34:47 +00:00
char *save;
tmp = strtok_r(copy, delim, &save);
2012-06-17 22:34:47 +00:00
while (tmp)
2012-04-13 19:29:11 +00:00
{
union string_list_elem_attr attr;
memset(&attr, 0, sizeof(attr));
if (!string_list_append(list, tmp, attr))
2012-04-13 19:29:11 +00:00
goto error;
2012-06-17 22:34:47 +00:00
tmp = strtok_r(NULL, delim, &save);
2012-04-13 19:29:11 +00:00
}
2012-06-17 22:34:47 +00:00
free(copy);
return list;
2012-06-17 22:34:47 +00:00
error:
string_list_free(list);
2012-06-17 22:34:47 +00:00
free(copy);
return NULL;
}
bool string_list_find_elem(const struct string_list *list, const char *elem)
2012-06-17 22:34:47 +00:00
{
size_t i;
2012-06-17 22:34:47 +00:00
if (!list)
return false;
for (i = 0; i < list->size; i++)
{
2013-04-30 21:58:32 +00:00
if (strcasecmp(list->elems[i].data, elem) == 0)
2012-06-17 22:34:47 +00:00
return true;
}
2012-06-17 22:34:47 +00:00
return false;
}
bool string_list_find_elem_prefix(const struct string_list *list, const char *prefix, const char *elem)
{
size_t i;
if (!list)
return false;
char prefixed[PATH_MAX];
snprintf(prefixed, sizeof(prefixed), "%s%s", prefix, elem);
for (i = 0; i < list->size; i++)
{
2013-04-30 21:58:32 +00:00
if (strcasecmp(list->elems[i].data, elem) == 0 ||
strcasecmp(list->elems[i].data, prefixed) == 0)
return true;
}
return false;
}
const char *path_get_extension(const char *path)
2012-06-17 22:34:47 +00:00
{
const char *ext = strrchr(path_basename(path), '.');
2012-06-17 22:34:47 +00:00
if (ext)
return ext + 1;
else
return "";
}
char *path_remove_extension(char *path)
{
2013-11-01 16:16:02 +00:00
char *last = (char*)strrchr(path_basename(path), '.');
if (*last)
*last = '\0';
return last;
}
static int qstrcmp_plain(const void *a_, const void *b_)
{
const struct string_list_elem *a = (const struct string_list_elem*)a_;
const struct string_list_elem *b = (const struct string_list_elem*)b_;
return strcasecmp(a->data, b->data);
2012-06-18 22:00:20 +00:00
}
static int qstrcmp_dir(const void *a_, const void *b_)
2012-06-18 22:00:20 +00:00
{
const struct string_list_elem *a = (const struct string_list_elem*)a_;
const struct string_list_elem *b = (const struct string_list_elem*)b_;
int a_dir = a->attr.b;
int b_dir = b->attr.b;
2014-08-02 10:01:11 +00:00
// Sort directories before files.
if (a_dir != b_dir)
return b_dir - a_dir;
else
return strcasecmp(a->data, b->data);
}
void dir_list_sort(struct string_list *list, bool dir_first)
{
if (!list)
return;
qsort(list->elems, list->size, sizeof(struct string_list_elem),
dir_first ? qstrcmp_dir : qstrcmp_plain);
}
2012-06-17 22:34:47 +00:00
#ifdef _WIN32 // Because the API is just fucked up ...
struct string_list *dir_list_new(const char *dir, const char *ext, bool include_dirs)
2012-06-17 22:34:47 +00:00
{
struct string_list *list = string_list_new();
if (!list)
2012-06-17 22:34:47 +00:00
return NULL;
HANDLE hFind = INVALID_HANDLE_VALUE;
WIN32_FIND_DATA ffd;
char path_buf[PATH_MAX];
snprintf(path_buf, sizeof(path_buf), "%s\\*", dir);
struct string_list *ext_list = NULL;
2012-06-17 22:34:47 +00:00
if (ext)
ext_list = string_split(ext, "|");
2012-04-13 19:29:11 +00:00
hFind = FindFirstFile(path_buf, &ffd);
if (hFind == INVALID_HANDLE_VALUE)
goto error;
2012-06-17 22:34:47 +00:00
do
{
2014-08-02 10:01:11 +00:00
union string_list_elem_attr attr;
char file_path[PATH_MAX];
2012-06-17 22:34:47 +00:00
const char *name = ffd.cFileName;
const char *file_ext = path_get_extension(name);
2012-06-18 21:43:24 +00:00
bool is_dir = ffd.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY;
2012-06-17 22:34:47 +00:00
2012-06-18 21:43:24 +00:00
if (!include_dirs && is_dir)
2012-06-17 22:34:47 +00:00
continue;
if (strcmp(name, ".") == 0 || strcmp(name, "..") == 0)
continue;
if (!is_dir && ext_list && !string_list_find_elem_prefix(ext_list, ".", file_ext))
2012-06-17 22:34:47 +00:00
continue;
2012-11-25 15:03:16 +00:00
fill_pathname_join(file_path, dir, name, sizeof(file_path));
2012-06-17 22:34:47 +00:00
attr.b = is_dir;
if (!string_list_append(list, file_path, attr))
2012-06-17 22:34:47 +00:00
goto error;
}
while (FindNextFile(hFind, &ffd) != 0);
FindClose(hFind);
string_list_free(ext_list);
return list;
2012-06-17 22:34:47 +00:00
error:
RARCH_ERR("Failed to open directory: \"%s\"\n", dir);
if (hFind != INVALID_HANDLE_VALUE)
FindClose(hFind);
string_list_free(list);
2012-06-17 22:34:47 +00:00
string_list_free(ext_list);
return NULL;
}
2012-04-13 19:29:11 +00:00
#else
static bool dirent_is_directory(const char *path, const struct dirent *entry)
{
#if defined(PSP)
return (entry->d_stat.st_attr & FIO_SO_IFDIR) == FIO_SO_IFDIR;
#elif defined(DT_DIR)
if (entry->d_type == DT_DIR)
return true;
2013-04-20 09:30:42 +00:00
else if (entry->d_type == DT_UNKNOWN // This can happen on certain file systems.
|| entry->d_type == DT_LNK)
return path_is_directory(path);
else
return false;
#else // dirent struct doesn't have d_type, do it the slow way ...
return path_is_directory(path);
#endif
}
struct string_list *dir_list_new(const char *dir, const char *ext, bool include_dirs)
2012-06-17 22:34:47 +00:00
{
2012-04-13 19:29:11 +00:00
DIR *directory = NULL;
const struct dirent *entry = NULL;
struct string_list *ext_list = NULL;
2014-08-02 10:01:11 +00:00
struct string_list *list = (struct string_list*)string_list_new();
if (!list)
return NULL;
2012-06-17 22:34:47 +00:00
if (ext)
ext_list = string_split(ext, "|");
2012-04-13 19:29:11 +00:00
directory = opendir(dir);
if (!directory)
goto error;
while ((entry = readdir(directory)))
{
2014-08-02 10:01:11 +00:00
bool is_dir;
char file_path[PATH_MAX];
union string_list_elem_attr attr;
2012-06-17 22:34:47 +00:00
const char *name = entry->d_name;
const char *file_ext = path_get_extension(name);
2012-04-13 19:29:11 +00:00
2012-11-25 15:03:16 +00:00
fill_pathname_join(file_path, dir, name, sizeof(file_path));
2014-08-02 10:01:11 +00:00
is_dir = dirent_is_directory(file_path, entry);
2012-06-18 21:27:49 +00:00
if (!include_dirs && is_dir)
2012-06-17 22:34:47 +00:00
continue;
2012-04-13 19:29:11 +00:00
if (strcmp(name, ".") == 0 || strcmp(name, "..") == 0)
continue;
if (!is_dir && ext_list && !string_list_find_elem_prefix(ext_list, ".", file_ext))
2012-06-17 22:34:47 +00:00
continue;
attr.b = is_dir;
if (!string_list_append(list, file_path, attr))
2012-06-17 22:34:47 +00:00
goto error;
2012-04-13 19:29:11 +00:00
}
closedir(directory);
2012-06-17 22:34:47 +00:00
string_list_free(ext_list);
return list;
2012-04-13 19:29:11 +00:00
error:
2012-04-21 21:25:32 +00:00
RARCH_ERR("Failed to open directory: \"%s\"\n", dir);
2012-06-17 22:34:47 +00:00
2012-04-13 19:29:11 +00:00
if (directory)
closedir(directory);
2012-06-17 22:34:47 +00:00
string_list_free(list);
2012-06-17 22:34:47 +00:00
string_list_free(ext_list);
2012-04-13 19:29:11 +00:00
return NULL;
}
2012-06-17 22:34:47 +00:00
#endif
2012-04-13 19:29:11 +00:00
void dir_list_free(struct string_list *list)
2012-04-13 19:29:11 +00:00
{
string_list_free(list);
2012-04-13 19:29:11 +00:00
}
2013-03-17 11:59:52 +00:00
static bool path_char_is_slash(char c)
{
#ifdef _WIN32
return (c == '/') || (c == '\\');
#else
return c == '/';
#endif
}
static const char *path_default_slash(void)
{
#ifdef _WIN32
return "\\";
#else
return "/";
#endif
}
2012-04-13 19:29:11 +00:00
bool path_is_directory(const char *path)
{
#ifdef _WIN32
DWORD ret = GetFileAttributes(path);
return (ret & FILE_ATTRIBUTE_DIRECTORY) && (ret != INVALID_FILE_ATTRIBUTES);
#else
struct stat buf;
if (stat(path, &buf) < 0)
return false;
return S_ISDIR(buf.st_mode);
#endif
}
bool path_file_exists(const char *path)
{
FILE *dummy = fopen(path, "rb");
2014-08-02 10:01:11 +00:00
2012-04-13 19:29:11 +00:00
if (dummy)
{
fclose(dummy);
return true;
}
2014-08-02 10:01:11 +00:00
2012-04-13 19:29:11 +00:00
return false;
}
void fill_pathname(char *out_path, const char *in_path, const char *replace, size_t size)
{
char tmp_path[PATH_MAX];
2014-08-02 10:01:11 +00:00
char *tok;
2012-04-13 19:29:11 +00:00
2012-04-21 21:25:32 +00:00
rarch_assert(strlcpy(tmp_path, in_path, sizeof(tmp_path)) < sizeof(tmp_path));
2014-08-02 10:01:11 +00:00
if ((tok = (char*)strrchr(path_basename(tmp_path), '.')))
2012-04-13 19:29:11 +00:00
*tok = '\0';
2012-04-21 21:25:32 +00:00
rarch_assert(strlcpy(out_path, tmp_path, size) < size);
rarch_assert(strlcat(out_path, replace, size) < size);
2012-04-13 19:29:11 +00:00
}
void fill_pathname_noext(char *out_path, const char *in_path, const char *replace, size_t size)
{
2012-04-21 21:25:32 +00:00
rarch_assert(strlcpy(out_path, in_path, size) < size);
rarch_assert(strlcat(out_path, replace, size) < size);
2012-04-13 19:29:11 +00:00
}
static char *find_last_slash(const char *str)
{
const char *slash = strrchr(str, '/');
#ifdef _WIN32
const char *backslash = strrchr(str, '\\');
2014-08-02 10:01:11 +00:00
if (backslash && ((slash && backslash > slash) || !slash))
slash = backslash;
#endif
return (char*)slash;
}
2013-01-12 22:34:24 +00:00
// Assumes path is a directory. Appends a slash
// if not already there.
void fill_pathname_slash(char *path, size_t size)
2012-04-13 19:29:11 +00:00
{
2013-01-12 22:34:24 +00:00
size_t path_len = strlen(path);
const char *last_slash = find_last_slash(path);
2012-04-13 19:29:11 +00:00
2013-01-12 22:34:24 +00:00
// Try to preserve slash type.
if (last_slash && (last_slash != (path + path_len - 1)))
{
char join_str[2] = {*last_slash};
rarch_assert(strlcat(path, join_str, size) < size);
}
else if (!last_slash)
2013-03-17 11:59:52 +00:00
rarch_assert(strlcat(path, path_default_slash(), size) < size);
2013-01-12 22:34:24 +00:00
}
2012-04-13 19:29:11 +00:00
2013-01-12 22:34:24 +00:00
void fill_pathname_dir(char *in_dir, const char *in_basename, const char *replace, size_t size)
{
fill_pathname_slash(in_dir, size);
const char *base = path_basename(in_basename);
2012-04-21 21:25:32 +00:00
rarch_assert(strlcat(in_dir, base, size) < size);
rarch_assert(strlcat(in_dir, replace, size) < size);
2012-04-13 19:29:11 +00:00
}
2012-10-11 20:54:07 +00:00
void fill_pathname_base(char *out, const char *in_path, size_t size)
2012-04-13 19:29:11 +00:00
{
const char *ptr = find_last_slash(in_path);
2012-04-13 19:29:11 +00:00
if (ptr)
ptr++;
else
ptr = in_path;
2012-10-11 20:54:07 +00:00
rarch_assert(strlcpy(out, ptr, size) < size);
2012-04-13 19:29:11 +00:00
}
void fill_pathname_basedir(char *out_dir, const char *in_path, size_t size)
{
rarch_assert(strlcpy(out_dir, in_path, size) < size);
path_basedir(out_dir);
}
2012-11-25 15:22:53 +00:00
void fill_pathname_parent_dir(char *out_dir, const char *in_dir, size_t size)
{
rarch_assert(strlcpy(out_dir, in_dir, size) < size);
path_parent_dir(out_dir);
}
void fill_dated_filename(char *out_filename, const char *ext, size_t size)
2013-02-17 02:49:59 +00:00
{
time_t cur_time;
time(&cur_time);
strftime(out_filename, size, "RetroArch-%m%d-%H%M%S.", localtime(&cur_time));
strlcat(out_filename, ext, size);
2013-02-17 02:49:59 +00:00
}
void path_basedir(char *path)
{
if (strlen(path) < 2)
return;
char *last = find_last_slash(path);
if (last)
last[1] = '\0';
else
2013-03-17 11:59:52 +00:00
snprintf(path, 3, ".%s", path_default_slash());
}
2012-11-25 15:22:53 +00:00
void path_parent_dir(char *path)
{
size_t len = strlen(path);
2013-03-17 11:59:52 +00:00
if (len && path_char_is_slash(path[len - 1]))
2012-11-25 15:22:53 +00:00
path[len - 1] = '\0';
path_basedir(path);
}
const char *path_basename(const char *path)
{
const char *last = find_last_slash(path);
if (last)
return last + 1;
else
return path;
}
bool path_is_absolute(const char *path)
{
#ifdef _WIN32
// Many roads lead to Rome ...
return path[0] == '/' || (strstr(path, "\\\\") == path) || strstr(path, ":/") || strstr(path, ":\\") || strstr(path, ":\\\\");
#else
return path[0] == '/';
#endif
}
void path_resolve_realpath(char *buf, size_t size)
{
#ifndef RARCH_CONSOLE
char tmp[PATH_MAX];
strlcpy(tmp, buf, sizeof(tmp));
#ifdef _WIN32
if (!_fullpath(buf, tmp, size))
strlcpy(buf, tmp, size);
#else
rarch_assert(size >= PATH_MAX);
// NOTE: realpath() expects at least PATH_MAX bytes in buf.
// Technically, PATH_MAX needn't be defined, but we rely on it anyways.
// POSIX 2008 can automatically allocate for you, but don't rely on that.
if (!realpath(tmp, buf))
strlcpy(buf, tmp, size);
#endif
#else
(void)buf;
(void)size;
#endif
}
static bool path_mkdir_norecurse(const char *dir)
{
2014-08-02 10:01:11 +00:00
int ret;
#if defined(_WIN32)
2014-08-02 10:01:11 +00:00
ret = _mkdir(dir);
#elif defined(IOS)
2014-08-02 10:01:11 +00:00
ret = mkdir(dir, 0755);
#else
2014-08-02 10:01:11 +00:00
ret = mkdir(dir, 0750);
#endif
if (ret < 0 && errno == EEXIST && path_is_directory(dir)) // Don't treat this as an error.
ret = 0;
if (ret < 0)
RARCH_ERR("mkdir(%s) error: %s.\n", dir, strerror(errno));
return ret == 0;
}
bool path_mkdir(const char *dir)
{
const char *target = NULL;
char *basedir = strdup(dir); // Use heap. Real chance of stack overflow if we recurse too hard.
bool ret = true;
if (!basedir)
return false;
path_parent_dir(basedir);
if (!*basedir || !strcmp(basedir, dir))
{
ret = false;
goto end;
}
if (path_is_directory(basedir))
{
target = dir;
ret = path_mkdir_norecurse(dir);
}
else
{
target = basedir;
ret = path_mkdir(basedir);
if (ret)
{
target = dir;
ret = path_mkdir_norecurse(dir);
}
}
end:
if (target && !ret)
RARCH_ERR("Failed to create directory: \"%s\".\n", target);
free(basedir);
return ret;
}
void fill_pathname_resolve_relative(char *out_path, const char *in_refpath, const char *in_path, size_t size)
{
if (path_is_absolute(in_path))
rarch_assert(strlcpy(out_path, in_path, size) < size);
else
{
rarch_assert(strlcpy(out_path, in_refpath, size) < size);
path_basedir(out_path);
rarch_assert(strlcat(out_path, in_path, size) < size);
}
}
2012-11-25 15:03:16 +00:00
void fill_pathname_join(char *out_path, const char *dir, const char *path, size_t size)
{
2013-01-12 22:34:24 +00:00
rarch_assert(strlcpy(out_path, dir, size) < size);
2012-11-25 15:03:16 +00:00
2013-01-12 22:34:24 +00:00
if (*out_path)
fill_pathname_slash(out_path, size);
2012-11-25 15:03:16 +00:00
rarch_assert(strlcat(out_path, path, size) < size);
}
void fill_pathname_expand_special(char *out_path, const char *in_path, size_t size)
{
#if !defined(RARCH_CONSOLE)
if (*in_path == '~')
{
const char *home = getenv("HOME");
if (home)
{
size_t src_size = strlcpy(out_path, home, size);
rarch_assert(src_size < size);
out_path += src_size;
size -= src_size;
in_path++;
}
}
2013-12-24 22:02:45 +00:00
else if ((in_path[0] == ':') &&
#ifdef _WIN32
((in_path[1] == '/') || (in_path[1] == '\\')))
#else
(in_path[1] == '/'))
#endif
{
char application_dir[PATH_MAX];
fill_pathname_application_path(application_dir, sizeof(application_dir));
path_basedir(application_dir);
size_t src_size = strlcpy(out_path, application_dir, size);
rarch_assert(src_size < size);
out_path += src_size;
size -= src_size;
in_path += 2;
}
#endif
rarch_assert(strlcpy(out_path, in_path, size) < size);
}
void fill_pathname_abbreviate_special(char *out_path, const char *in_path, size_t size)
{
#if !defined(RARCH_CONSOLE)
2013-12-24 22:02:45 +00:00
unsigned i;
2013-12-24 22:02:45 +00:00
const char *home = getenv("HOME");
char application_dir[PATH_MAX];
fill_pathname_application_path(application_dir, sizeof(application_dir));
path_basedir(application_dir);
// application_dir could be zero-string. Safeguard against this.
// Keep application dir in front of home, moving app dir to a new location inside
// home would break otherwise.
2013-12-24 22:02:45 +00:00
const char *candidates[3] = { application_dir, home, NULL };
const char *notations[3] = { ":", "~", NULL };
2013-12-24 22:02:45 +00:00
for (i = 0; candidates[i]; i++)
{
if (*candidates[i] && strstr(in_path, candidates[i]) == in_path)
{
size_t src_size = strlcpy(out_path, notations[i], size);
rarch_assert(src_size < size);
out_path += src_size;
size -= src_size;
in_path += strlen(candidates[i]);
if (!path_char_is_slash(*in_path))
{
rarch_assert(strlcpy(out_path, path_default_slash(), size) < size);
2013-12-24 22:02:45 +00:00
out_path++;
size--;
}
break; // Don't allow more abbrevs to take place.
}
}
#endif
rarch_assert(strlcpy(out_path, in_path, size) < size);
}
#ifndef RARCH_CONSOLE
void fill_pathname_application_path(char *buf, size_t size)
{
size_t i;
(void)i;
if (!size)
return;
#ifdef _WIN32
DWORD ret = GetModuleFileName(GetModuleHandle(NULL), buf, size - 1);
buf[ret] = '\0';
#elif defined(__APPLE__)
CFBundleRef bundle = CFBundleGetMainBundle();
if (bundle)
{
CFURLRef bundle_url = CFBundleCopyBundleURL(bundle);
CFStringRef bundle_path = CFURLCopyPath(bundle_url);
CFStringGetCString(bundle_path, buf, size, kCFStringEncodingUTF8);
CFRelease(bundle_path);
CFRelease(bundle_url);
rarch_assert(strlcat(buf, "nobin", size) < size);
return;
}
#else
*buf = '\0';
pid_t pid = getpid();
char link_path[PATH_MAX];
static const char *exts[] = { "exe", "file", "path/a.out" }; // Linux, BSD and Solaris paths. Not standardized.
for (i = 0; i < ARRAY_SIZE(exts); i++)
{
snprintf(link_path, sizeof(link_path), "/proc/%u/%s", (unsigned)pid, exts[i]);
ssize_t ret = readlink(link_path, buf, size - 1);
if (ret >= 0)
{
buf[ret] = '\0';
return;
}
}
RARCH_ERR("Cannot resolve application path! This should not happen.\n");
#endif
}
#endif