2014-10-22 00:23:06 +02:00
|
|
|
/* Copyright (C) 2010-2014 The RetroArch team
|
2013-12-31 22:37:47 +01:00
|
|
|
*
|
2014-10-22 00:23:06 +02:00
|
|
|
* ---------------------------------------------------------------------------------------
|
|
|
|
* The following license statement only applies to this file (file_path.h).
|
|
|
|
* ---------------------------------------------------------------------------------------
|
2013-12-31 22:37:47 +01:00
|
|
|
*
|
2014-10-22 00:23:06 +02:00
|
|
|
* Permission is hereby granted, free of charge,
|
|
|
|
* to any person obtaining a copy of this software and associated documentation files (the "Software"),
|
|
|
|
* to deal in the Software without restriction, including without limitation the rights to
|
|
|
|
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software,
|
|
|
|
* and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
|
|
|
|
* INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
|
|
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
|
|
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
2013-12-31 22:37:47 +01:00
|
|
|
*/
|
|
|
|
|
2014-10-21 23:33:20 +02:00
|
|
|
#ifndef __LIBRETRO_SDK_FILE_PATH_H
|
|
|
|
#define __LIBRETRO_SDK_FILE_PATH_H
|
2013-11-06 14:21:12 +01:00
|
|
|
|
2014-10-21 05:05:52 +02:00
|
|
|
#include <boolean.h>
|
2013-11-06 14:21:12 +01:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <sys/types.h>
|
2014-10-21 19:59:27 +02:00
|
|
|
#include <string/string_list.h>
|
2013-11-06 14:21:12 +01:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2014-09-04 21:42:49 +02:00
|
|
|
/* Order in this enum is equivalent to negative sort order in filelist
|
|
|
|
* (i.e. DIRECTORY is on top of PLAIN_FILE) */
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
RARCH_FILETYPE_UNSET,
|
|
|
|
RARCH_PLAIN_FILE,
|
|
|
|
RARCH_COMPRESSED_FILE_IN_ARCHIVE,
|
|
|
|
RARCH_COMPRESSED_ARCHIVE,
|
|
|
|
RARCH_DIRECTORY,
|
|
|
|
RARCH_FILE_UNSUPPORTED,
|
2014-09-06 22:03:37 -03:00
|
|
|
};
|
2014-09-04 21:42:49 +02:00
|
|
|
|
|
|
|
|
|
|
|
/* path_is_compressed_file also means: The compressed file is supported */
|
|
|
|
bool path_is_compressed_file(const char *path);
|
2014-09-12 17:05:05 +02:00
|
|
|
|
|
|
|
/* Somewhere in the path there might be a compressed file
|
|
|
|
* E.g.: /path/to/file.7z#mygame.img
|
|
|
|
*/
|
|
|
|
bool path_contains_compressed_file(const char *path);
|
2014-09-15 19:10:33 +02:00
|
|
|
|
2013-11-06 14:21:12 +01:00
|
|
|
bool path_is_directory(const char *path);
|
2014-09-15 19:10:33 +02:00
|
|
|
|
2013-11-06 14:21:12 +01:00
|
|
|
bool path_file_exists(const char *path);
|
|
|
|
|
2014-09-02 05:10:54 +02:00
|
|
|
/* Gets extension of file. Only '.'s after the last slash are considered. */
|
2013-11-06 14:21:12 +01:00
|
|
|
const char *path_get_extension(const char *path);
|
|
|
|
|
|
|
|
bool path_mkdir(const char *dir);
|
|
|
|
|
2014-09-02 05:10:54 +02:00
|
|
|
/* Removes all text after and including the last '.'.
|
|
|
|
* Only '.'s after the last slash are considered. */
|
2013-11-06 14:21:12 +01:00
|
|
|
char *path_remove_extension(char *path);
|
|
|
|
|
2014-09-02 05:10:54 +02:00
|
|
|
/* Returns basename from path. */
|
2013-11-06 14:21:12 +01:00
|
|
|
const char *path_basename(const char *path);
|
|
|
|
|
2014-09-02 05:10:54 +02:00
|
|
|
/* Extracts base directory by mutating path.
|
|
|
|
* Keeps trailing '/'. */
|
2013-11-06 14:21:12 +01:00
|
|
|
void path_basedir(char *path);
|
|
|
|
|
2014-09-02 05:10:54 +02:00
|
|
|
/* Extracts parent directory by mutating path.
|
|
|
|
* Assumes that path is a directory. Keeps trailing '/'. */
|
2013-11-06 14:21:12 +01:00
|
|
|
void path_parent_dir(char *path);
|
|
|
|
|
2014-09-02 05:10:54 +02:00
|
|
|
/* Turns relative paths into absolute path.
|
|
|
|
* If relative, rebases on current working dir. */
|
2013-11-06 14:21:12 +01:00
|
|
|
void path_resolve_realpath(char *buf, size_t size);
|
|
|
|
|
|
|
|
bool path_is_absolute(const char *path);
|
|
|
|
|
2014-09-02 05:10:54 +02:00
|
|
|
/* Path-name operations.
|
|
|
|
* If any of these operation are detected to overflow, the application will
|
|
|
|
* be terminated.
|
|
|
|
*
|
|
|
|
* Replaces filename extension with 'replace' and outputs result to out_path.
|
|
|
|
* The extension here is considered to be the string from the last '.'
|
|
|
|
* to the end.
|
|
|
|
*
|
|
|
|
* Only '.'s after the last slash are considered as extensions.
|
|
|
|
* If no '.' is present, in_path and replace will simply be concatenated.
|
|
|
|
* 'size' is buffer size of 'out_path'.
|
|
|
|
* E.g.: in_path = "/foo/bar/baz/boo.c", replace = ".asm" =>
|
|
|
|
* out_path = "/foo/bar/baz/boo.asm"
|
|
|
|
* E.g.: in_path = "/foo/bar/baz/boo.c", replace = "" =>
|
|
|
|
* out_path = "/foo/bar/baz/boo"
|
|
|
|
*/
|
|
|
|
void fill_pathname(char *out_path, const char *in_path,
|
|
|
|
const char *replace, size_t size);
|
2013-11-06 14:21:12 +01:00
|
|
|
|
2014-09-02 05:10:54 +02:00
|
|
|
void fill_dated_filename(char *out_filename,
|
|
|
|
const char *ext, size_t size);
|
2013-11-06 14:21:12 +01:00
|
|
|
|
2014-09-02 05:10:54 +02:00
|
|
|
/* Appends a filename extension 'replace' to 'in_path', and outputs
|
|
|
|
* result in 'out_path'.
|
|
|
|
*
|
|
|
|
* Assumes in_path has no extension. If an extension is still
|
|
|
|
* present in 'in_path', it will be ignored.
|
|
|
|
*
|
|
|
|
* 'size' is buffer size of 'out_path'. */
|
|
|
|
void fill_pathname_noext(char *out_path, const char *in_path,
|
|
|
|
const char *replace, size_t size);
|
2013-11-06 14:21:12 +01:00
|
|
|
|
2014-09-02 05:10:54 +02:00
|
|
|
/* Appends basename of 'in_basename', to 'in_dir', along with 'replace'.
|
|
|
|
* Basename of in_basename is the string after the last '/' or '\\',
|
|
|
|
* i.e the filename without directories.
|
|
|
|
*
|
|
|
|
* If in_basename has no '/' or '\\', the whole 'in_basename' will be used.
|
|
|
|
* 'size' is buffer size of 'in_dir'.
|
|
|
|
*
|
|
|
|
* E.g..: in_dir = "/tmp/some_dir", in_basename = "/some_content/foo.c",
|
|
|
|
* replace = ".asm" => in_dir = "/tmp/some_dir/foo.c.asm"
|
|
|
|
*
|
|
|
|
* */
|
|
|
|
void fill_pathname_dir(char *in_dir, const char *in_basename,
|
|
|
|
const char *replace, size_t size);
|
2013-11-06 14:21:12 +01:00
|
|
|
|
2014-09-02 05:10:54 +02:00
|
|
|
/* Copies basename of in_path into out_path. */
|
|
|
|
void fill_pathname_base(char *out_path, const char *in_path, size_t size);
|
|
|
|
|
|
|
|
/* Copies base directory of in_path into out_path.
|
|
|
|
* If in_path is a path without any slashes (relative current directory),
|
|
|
|
* out_path will get path "./". */
|
|
|
|
void fill_pathname_basedir(char *out_path, const char *in_path, size_t size);
|
2013-11-06 14:21:12 +01:00
|
|
|
|
2014-09-02 05:10:54 +02:00
|
|
|
/* Copies parent directory of in_dir into out_dir.
|
|
|
|
* Assumes in_dir is a directory. Keeps trailing '/'. */
|
|
|
|
void fill_pathname_parent_dir(char *out_dir,
|
|
|
|
const char *in_dir, size_t size);
|
|
|
|
|
|
|
|
/* Joins basedir of in_refpath together with in_path.
|
|
|
|
* If in_path is an absolute path, out_path = in_path.
|
|
|
|
* E.g.: in_refpath = "/foo/bar/baz.a", in_path = "foobar.cg",
|
|
|
|
* out_path = "/foo/bar/foobar.cg". */
|
|
|
|
void fill_pathname_resolve_relative(char *out_path, const char *in_refpath,
|
|
|
|
const char *in_path, size_t size);
|
|
|
|
|
|
|
|
/* Joins a directory and path together. Makes sure not to get
|
|
|
|
* two consecutive slashes between dir and path. */
|
|
|
|
void fill_pathname_join(char *out_path, const char *dir,
|
|
|
|
const char *path, size_t size);
|
|
|
|
|
2014-09-12 17:46:40 +02:00
|
|
|
/* Joins a directory and path together using the given char. */
|
|
|
|
void fill_pathname_join_delim(char *out_path, const char *dir,
|
|
|
|
const char *path, const char delim, size_t size);
|
|
|
|
|
2014-09-12 17:05:05 +02:00
|
|
|
/* Generates a short representation of path. It should only
|
|
|
|
* be used for displaying the result; the output representation is not
|
|
|
|
* binding in any meaningful way (for a normal path, this is the same as basename)
|
|
|
|
* In case of more complex URLs, this should cut everything except for
|
|
|
|
* the main image file.
|
|
|
|
* E.g.: "/path/to/game.img" -> game.img
|
|
|
|
* "/path/to/myarchive.7z#folder/to/game.img" -> game.img
|
|
|
|
*/
|
|
|
|
void fill_short_pathname_representation(char* out_rep,
|
|
|
|
const char *in_path, size_t size);
|
|
|
|
|
2014-09-02 05:10:54 +02:00
|
|
|
void fill_pathname_expand_special(char *out_path,
|
|
|
|
const char *in_path, size_t size);
|
2014-09-15 19:10:33 +02:00
|
|
|
|
2014-09-02 05:10:54 +02:00
|
|
|
void fill_pathname_abbreviate_special(char *out_path,
|
|
|
|
const char *in_path, size_t size);
|
2014-09-15 19:10:33 +02:00
|
|
|
|
2014-05-10 05:25:50 +02:00
|
|
|
void fill_pathname_slash(char *path, size_t size);
|
2013-12-24 12:23:21 -05:00
|
|
|
|
2013-11-06 14:21:12 +01:00
|
|
|
#ifndef RARCH_CONSOLE
|
|
|
|
void fill_pathname_application_path(char *buf, size_t size);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|