492 lines
14 KiB
C
Raw Normal View History

2018-04-16 08:57:17 +02:00
/* Copyright (C) 2010-2018 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
*/
#ifndef __LIBRETRO_SDK_FILE_PATH_H
#define __LIBRETRO_SDK_FILE_PATH_H
2013-11-06 14:21:12 +01:00
#include <stdio.h>
#include <stdint.h>
#include <stddef.h>
#include <sys/types.h>
2016-04-23 10:40:46 +02:00
#include <retro_common_api.h>
2015-09-15 18:59:40 +02:00
#include <boolean.h>
2016-04-23 10:40:46 +02:00
RETRO_BEGIN_DECLS
2013-11-06 14:21:12 +01: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,
2015-06-26 18:35:35 +02:00
RARCH_FILE_UNSUPPORTED
2014-09-06 22:03:37 -03:00
};
2015-01-08 23:08:53 +01:00
/**
* path_is_compressed_file:
* @path : path
*
* Checks if path is a compressed file.
*
* Returns: true (1) if path is a compressed file, otherwise false (0).
**/
bool path_is_compressed_file(const char *path);
2015-01-08 23:08:53 +01:00
/**
* path_contains_compressed_file:
* @path : path
*
* Checks if path contains a compressed file.
*
* Currently we only check for hash symbol (#) inside the pathname.
* If path is ever expanded to a general URI, we should check for that here.
*
* Example: Somewhere in the path there might be a compressed file
* E.g.: /path/to/file.7z#mygame.img
2015-01-08 23:08:53 +01:00
*
* Returns: true (1) if path contains compressed file, otherwise false (0).
**/
#define path_contains_compressed_file(path) (path_get_archive_delim((path)) != NULL)
2014-09-15 19:10:33 +02:00
/**
* path_get_archive_delim:
* @path : path
*
* Gets delimiter of an archive file. Only the first '#'
* after a compression extension is considered.
*
* Returns: pointer to the delimiter in the path if it contains
* a compressed file, otherwise NULL.
*/
2016-08-25 21:40:37 -04:00
const char *path_get_archive_delim(const char *path);
2015-01-08 23:08:53 +01:00
/**
* path_get_extension:
* @path : path
*
* Gets extension of file. Only '.'s
2015-01-08 23:08:53 +01:00
* after the last slash are considered.
*
* Returns: extension part from the path.
*/
2013-11-06 14:21:12 +01:00
const char *path_get_extension(const char *path);
2015-01-08 23:08:53 +01:00
/**
* path_remove_extension:
* @path : path
*
* Removes the extension from the path and returns the result.
* Removes all text after and including the last '.'.
* Only '.'s after the last slash are considered.
*
* Returns: path with the extension part removed.
*/
2013-11-06 14:21:12 +01:00
char *path_remove_extension(char *path);
2015-01-08 23:08:53 +01:00
/**
* path_basename:
* @path : path
*
* Get basename from @path.
*
* Returns: basename from path.
**/
2013-11-06 14:21:12 +01:00
const char *path_basename(const char *path);
2015-01-08 23:08:53 +01:00
/**
* path_basedir:
* @path : path
2015-01-08 23:08:53 +01:00
*
* Extracts base directory by mutating path.
* Keeps trailing '/'.
**/
2013-11-06 14:21:12 +01:00
void path_basedir(char *path);
2015-01-08 23:08:53 +01:00
/**
* path_parent_dir:
* @path : path
*
* 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);
2015-01-08 23:08:53 +01:00
/**
* path_resolve_realpath:
* @buf : buffer for path
* @size : size of buffer
*
* 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);
2015-01-08 23:08:53 +01:00
/**
* path_is_absolute:
* @path : path
*
* Checks if @path is an absolute path or a relative path.
*
2016-08-25 21:46:59 -04:00
* Returns: true if path is absolute, false if path is relative.
2015-01-08 23:08:53 +01:00
**/
2013-11-06 14:21:12 +01:00
bool path_is_absolute(const char *path);
2015-01-08 23:08:53 +01:00
/**
* fill_pathname:
* @out_path : output path
* @in_path : input path
* @replace : what to replace
2015-01-08 23:08:53 +01:00
* @size : buffer size of output path
*
* FIXME: Verify
2014-09-02 05:10:54 +02:00
*
* 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"
2014-09-02 05:10:54 +02:00
* E.g.: in_path = "/foo/bar/baz/boo.c", replace = "" =>
* out_path = "/foo/bar/baz/boo"
2014-09-02 05:10:54 +02:00
*/
void fill_pathname(char *out_path, const char *in_path,
const char *replace, size_t size);
2013-11-06 14:21:12 +01:00
2015-01-08 23:08:53 +01:00
/**
* fill_dated_filename:
* @out_filename : output filename
* @ext : extension of output filename
* @size : buffer size of output filename
*
* Creates a 'dated' filename prefixed by 'RetroArch', and
2015-01-08 23:08:53 +01:00
* concatenates extension (@ext) to it.
*
* E.g.:
2015-01-08 23:08:53 +01:00
* out_filename = "RetroArch-{month}{day}-{Hours}{Minutes}.{@ext}"
**/
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
/**
* fill_str_dated_filename:
* @out_filename : output filename
* @in_str : input string
* @ext : extension of output filename
* @size : buffer size of output filename
*
* Creates a 'dated' filename prefixed by the string @in_str, and
* concatenates extension (@ext) to it.
*
* E.g.:
* out_filename = "RetroArch-{year}{month}{day}-{Hour}{Minute}{Second}.{@ext}"
**/
void fill_str_dated_filename(char *out_filename,
const char *in_str, const char *ext, size_t size);
2015-01-08 23:08:53 +01:00
/**
* fill_pathname_noext:
* @out_path : output path
* @in_path : input path
* @replace : what to replace
2015-01-08 23:08:53 +01:00
* @size : buffer size of output path
*
* Appends a filename extension 'replace' to 'in_path', and outputs
2014-09-02 05:10:54 +02:00
* result in 'out_path'.
*
* Assumes in_path has no extension. If an extension is still
* present in 'in_path', it will be ignored.
*
2015-01-08 23:08:53 +01:00
*/
2014-09-02 05:10:54 +02:00
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
2016-05-05 16:22:35 -03:00
/**
* find_last_slash:
* @str : input path
*
* Gets a pointer to the last slash in the input path.
*
* Returns: a pointer to the last slash in the input path.
**/
char *find_last_slash(const char *str);
2015-01-08 23:08:53 +01:00
/**
* fill_pathname_dir:
* @in_dir : input directory path
* @in_basename : input basename to be appended to @in_dir
* @replace : replacement to be appended to @in_basename
* @size : size of buffer
*
* Appends basename of 'in_basename', to 'in_dir', along with 'replace'.
2014-09-02 05:10:54 +02:00
* 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"
2015-01-08 23:08:53 +01:00
**/
2014-09-02 05:10:54 +02:00
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
2015-01-08 23:08:53 +01:00
/**
* fill_pathname_base:
* @out : output path
2015-01-08 23:08:53 +01:00
* @in_path : input path
* @size : size of output path
*
* Copies basename of @in_path into @out_path.
**/
2014-09-02 05:10:54 +02:00
void fill_pathname_base(char *out_path, const char *in_path, size_t size);
2016-06-28 13:08:03 +02:00
void fill_pathname_base_noext(char *out_dir,
const char *in_path, size_t size);
2016-07-01 11:12:24 +02:00
void fill_pathname_base_ext(char *out,
const char *in_path, const char *ext,
size_t size);
2015-01-08 23:08:53 +01:00
/**
* fill_pathname_basedir:
* @out_dir : output directory
2015-01-08 23:08:53 +01:00
* @in_path : input path
* @size : size of output directory
*
* Copies base directory of @in_path into @out_path.
2014-09-02 05:10:54 +02:00
* If in_path is a path without any slashes (relative current directory),
2015-01-08 23:08:53 +01:00
* @out_path will get path "./".
**/
2014-09-02 05:10:54 +02:00
void fill_pathname_basedir(char *out_path, const char *in_path, size_t size);
2013-11-06 14:21:12 +01:00
2016-06-28 13:08:03 +02:00
void fill_pathname_basedir_noext(char *out_dir,
const char *in_path, size_t size);
/**
* fill_pathname_parent_dir_name:
* @out_dir : output directory
* @in_dir : input directory
* @size : size of output directory
*
* Copies only the parent directory name of @in_dir into @out_dir.
* The two buffers must not overlap. Removes trailing '/'.
* Returns true on success, false if a slash was not found in the path.
**/
bool fill_pathname_parent_dir_name(char *out_dir,
const char *in_dir, size_t size);
2015-01-08 23:08:53 +01:00
/**
* fill_pathname_parent_dir:
* @out_dir : output directory
2015-01-08 23:08:53 +01:00
* @in_dir : input directory
* @size : size of output directory
*
* Copies parent directory of @in_dir into @out_dir.
* Assumes @in_dir is a directory. Keeps trailing '/'.
**/
2014-09-02 05:10:54 +02:00
void fill_pathname_parent_dir(char *out_dir,
const char *in_dir, size_t size);
2015-01-08 23:08:53 +01:00
/**
* fill_pathname_resolve_relative:
* @out_path : output path
* @in_refpath : input reference path
* @in_path : input path
* @size : size of @out_path
*
* Joins basedir of @in_refpath together with @in_path.
* If @in_path is an absolute path, out_path = in_path.
2014-09-02 05:10:54 +02:00
* E.g.: in_refpath = "/foo/bar/baz.a", in_path = "foobar.cg",
2015-01-08 23:08:53 +01:00
* out_path = "/foo/bar/foobar.cg".
**/
2014-09-02 05:10:54 +02:00
void fill_pathname_resolve_relative(char *out_path, const char *in_refpath,
const char *in_path, size_t size);
2015-01-08 23:08:53 +01:00
/**
* fill_pathname_join:
* @out_path : output path
* @dir : directory
2015-01-08 23:08:53 +01:00
* @path : path
* @size : size of output path
*
* Joins a directory (@dir) and path (@path) together.
* Makes sure not to get two consecutive slashes
2015-01-08 23:08:53 +01:00
* between directory and path.
**/
2014-09-02 05:10:54 +02:00
void fill_pathname_join(char *out_path, const char *dir,
const char *path, size_t size);
2016-06-30 04:59:57 +02:00
void fill_pathname_join_special_ext(char *out_path,
const char *dir, const char *path,
const char *last, const char *ext,
size_t size);
void fill_pathname_join_concat_noext(
char *out_path,
const char *dir, const char *path,
const char *concat,
size_t size);
2016-06-29 17:46:50 +02:00
void fill_pathname_join_concat(char *out_path,
const char *dir, const char *path,
2016-06-29 17:46:50 +02:00
const char *concat,
size_t size);
2016-06-28 13:05:46 +02:00
void fill_pathname_join_noext(char *out_path,
const char *dir, const char *path, size_t size);
2015-01-08 23:08:53 +01:00
/**
* fill_pathname_join_delim:
* @out_path : output path
* @dir : directory
2015-01-08 23:08:53 +01:00
* @path : path
* @delim : delimiter
2015-01-08 23:08:53 +01:00
* @size : size of output path
*
* Joins a directory (@dir) and path (@path) together
2015-01-08 23:08:53 +01:00
* using the given delimiter (@delim).
**/
void fill_pathname_join_delim(char *out_path, const char *dir,
const char *path, const char delim, size_t size);
2016-06-29 17:51:25 +02:00
void fill_pathname_join_delim_concat(char *out_path, const char *dir,
const char *path, const char delim, const char *concat,
size_t size);
2015-01-08 23:08:53 +01:00
/**
* fill_short_pathname_representation:
* @out_rep : output representation
* @in_path : input path
* @size : size of output representation
*
* 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.
2015-01-08 23:08:53 +01:00
*
* 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);
void fill_short_pathname_representation_noext(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
/**
* path_basedir:
* @path : path
*
* Extracts base directory by mutating path.
* Keeps trailing '/'.
**/
void path_basedir_wrapper(char *path);
/**
* path_char_is_slash:
* @c : character
*
* Checks if character (@c) is a slash.
*
* Returns: true (1) if character is a slash, otherwise false (0).
*/
#ifdef _WIN32
2017-06-28 04:51:58 +02:00
#define path_char_is_slash(c) (((c) == '/') || ((c) == '\\'))
#else
2017-06-28 04:51:58 +02:00
#define path_char_is_slash(c) ((c) == '/')
#endif
/**
2018-04-19 09:43:21 +02:00
* path_default_slash and path_default_slash_c:
*
* Gets the default slash separator.
*
* Returns: default slash separator.
*/
#ifdef _WIN32
2017-06-28 04:51:58 +02:00
#define path_default_slash() "\\"
2018-04-19 09:43:21 +02:00
#define path_default_slash_c() '\\'
#else
2017-06-28 04:51:58 +02:00
#define path_default_slash() "/"
2018-04-19 09:43:21 +02:00
#define path_default_slash_c() '/'
#endif
/**
2015-01-08 23:08:53 +01:00
* fill_pathname_slash:
* @path : path
* @size : size of path
*
* Assumes path is a directory. Appends a slash
* if not already there.
**/
void fill_pathname_slash(char *path, size_t size);
2018-03-28 16:41:37 +02:00
#if !defined(RARCH_CONSOLE) && defined(RARCH_INTERNAL)
2013-11-06 14:21:12 +01:00
void fill_pathname_application_path(char *buf, size_t size);
#endif
2015-09-22 19:34:16 +02:00
/**
* path_mkdir:
* @dir : directory
*
* Create directory on filesystem.
*
* Returns: true (1) if directory could be created, otherwise false (0).
**/
bool path_mkdir(const char *dir);
2017-06-16 15:00:11 +02:00
/**
* path_is_directory:
* @path : path
*
* Checks if path is a directory.
*
* Returns: true (1) if path is a directory, otherwise false (0).
*/
bool path_is_directory(const char *path);
bool path_is_character_special(const char *path);
bool path_is_valid(const char *path);
int32_t path_get_size(const char *path);
2016-04-23 10:40:46 +02:00
RETRO_END_DECLS
2013-11-06 14:21:12 +01:00
#endif