2014-07-03 21:58:39 +00:00
|
|
|
/*
|
2017-11-27 22:22:44 +00:00
|
|
|
* This file Copyright (C) 2013-2017 Mnemosyne LLC
|
2014-07-03 21:58:39 +00:00
|
|
|
*
|
|
|
|
* It may be used under the GNU GPL versions 2 or 3
|
|
|
|
* or any future license endorsed by Mnemosyne LLC.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2016-03-29 16:37:21 +00:00
|
|
|
#pragma once
|
2014-07-03 21:58:39 +00:00
|
|
|
|
|
|
|
#include <inttypes.h>
|
|
|
|
#include <time.h>
|
|
|
|
|
2014-11-30 20:08:20 +00:00
|
|
|
#ifdef _WIN32
|
2017-04-19 12:04:45 +00:00
|
|
|
#include <windows.h>
|
2014-07-03 21:58:39 +00:00
|
|
|
#endif
|
|
|
|
|
2020-08-11 18:11:55 +00:00
|
|
|
#include "tr-macros.h"
|
|
|
|
|
|
|
|
TR_BEGIN_DECLS
|
2014-07-03 21:58:39 +00:00
|
|
|
|
2015-04-11 14:54:01 +00:00
|
|
|
struct tr_error;
|
|
|
|
|
2014-07-03 21:58:39 +00:00
|
|
|
/**
|
|
|
|
* @addtogroup file_io File IO
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
2014-07-08 00:15:12 +00:00
|
|
|
#ifndef _WIN32
|
2017-04-19 12:04:45 +00:00
|
|
|
|
|
|
|
/** @brief Platform-specific file descriptor type. */
|
|
|
|
typedef int tr_sys_file_t;
|
|
|
|
/** @brief Platform-specific invalid file descriptor constant. */
|
|
|
|
#define TR_BAD_SYS_FILE (-1)
|
|
|
|
/** @brief Platform-specific directory descriptor type. */
|
|
|
|
typedef void* tr_sys_dir_t;
|
|
|
|
/** @brief Platform-specific end-of-line sequence. */
|
|
|
|
#define TR_NATIVE_EOL_STR "\n"
|
|
|
|
/** @brief Platform-specific end-of-line sequence length. */
|
|
|
|
#define TR_NATIVE_EOL_STR_SIZE 1
|
|
|
|
|
2014-07-08 00:15:12 +00:00
|
|
|
#else
|
2017-04-19 12:04:45 +00:00
|
|
|
|
|
|
|
typedef HANDLE tr_sys_file_t;
|
|
|
|
#define TR_BAD_SYS_FILE INVALID_HANDLE_VALUE
|
|
|
|
typedef struct tr_sys_dir_win32* tr_sys_dir_t;
|
|
|
|
#define TR_NATIVE_EOL_STR "\r\n"
|
|
|
|
#define TR_NATIVE_EOL_STR_SIZE 2
|
|
|
|
|
2014-07-08 00:15:12 +00:00
|
|
|
#endif
|
|
|
|
|
2014-09-21 17:52:36 +00:00
|
|
|
/** @brief Platform-specific invalid directory descriptor constant. */
|
|
|
|
#define TR_BAD_SYS_DIR ((tr_sys_dir_t)NULL)
|
|
|
|
|
2014-07-08 00:15:12 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
2017-04-19 12:04:45 +00:00
|
|
|
TR_STD_SYS_FILE_IN,
|
|
|
|
TR_STD_SYS_FILE_OUT,
|
|
|
|
TR_STD_SYS_FILE_ERR
|
2021-08-15 09:41:48 +00:00
|
|
|
} tr_std_sys_file_t;
|
2014-07-08 00:15:12 +00:00
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
2017-04-19 12:04:45 +00:00
|
|
|
TR_SYS_FILE_READ = (1 << 0),
|
|
|
|
TR_SYS_FILE_WRITE = (1 << 1),
|
|
|
|
TR_SYS_FILE_CREATE = (1 << 2),
|
|
|
|
TR_SYS_FILE_CREATE_NEW = (1 << 3),
|
|
|
|
TR_SYS_FILE_APPEND = (1 << 4),
|
|
|
|
TR_SYS_FILE_TRUNCATE = (1 << 5),
|
|
|
|
TR_SYS_FILE_SEQUENTIAL = (1 << 6)
|
2021-08-15 09:41:48 +00:00
|
|
|
} tr_sys_file_open_flags_t;
|
2014-07-08 00:15:12 +00:00
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
2017-04-19 12:04:45 +00:00
|
|
|
TR_SEEK_SET,
|
|
|
|
TR_SEEK_CUR,
|
|
|
|
TR_SEEK_END
|
2021-08-15 09:41:48 +00:00
|
|
|
} tr_seek_origin_t;
|
2014-07-08 00:15:12 +00:00
|
|
|
|
2016-09-21 20:56:03 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
2017-04-19 12:04:45 +00:00
|
|
|
TR_SYS_FILE_LOCK_SH = (1 << 0),
|
|
|
|
TR_SYS_FILE_LOCK_EX = (1 << 1),
|
|
|
|
TR_SYS_FILE_LOCK_NB = (1 << 2),
|
|
|
|
TR_SYS_FILE_LOCK_UN = (1 << 3)
|
2021-08-15 09:41:48 +00:00
|
|
|
} tr_sys_file_lock_flags_t;
|
2016-09-21 20:56:03 +00:00
|
|
|
|
2014-07-03 21:58:39 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
2017-04-19 12:04:45 +00:00
|
|
|
TR_SYS_PATH_NO_FOLLOW = (1 << 0)
|
2021-08-15 09:41:48 +00:00
|
|
|
} tr_sys_path_get_info_flags_t;
|
2014-07-03 21:58:39 +00:00
|
|
|
|
2017-07-08 13:09:37 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
TR_SYS_FILE_ADVICE_WILL_NEED,
|
|
|
|
TR_SYS_FILE_ADVICE_DONT_NEED
|
2021-08-15 09:41:48 +00:00
|
|
|
} tr_sys_file_advice_t;
|
2017-07-08 13:09:37 +00:00
|
|
|
|
2014-07-08 00:15:12 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
2017-04-19 12:04:45 +00:00
|
|
|
TR_SYS_FILE_PREALLOC_SPARSE = (1 << 0)
|
2021-08-15 09:41:48 +00:00
|
|
|
} tr_sys_file_preallocate_flags_t;
|
2014-07-08 00:15:12 +00:00
|
|
|
|
2014-09-21 17:52:36 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
2017-04-19 12:04:45 +00:00
|
|
|
TR_SYS_DIR_CREATE_PARENTS = (1 << 0)
|
2021-08-15 09:41:48 +00:00
|
|
|
} tr_sys_dir_create_flags_t;
|
2014-09-21 17:52:36 +00:00
|
|
|
|
2014-07-03 21:58:39 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
2017-04-19 12:04:45 +00:00
|
|
|
TR_SYS_PATH_IS_FILE,
|
|
|
|
TR_SYS_PATH_IS_DIRECTORY,
|
|
|
|
TR_SYS_PATH_IS_OTHER
|
2021-08-15 09:41:48 +00:00
|
|
|
} tr_sys_path_type_t;
|
2014-07-03 21:58:39 +00:00
|
|
|
|
|
|
|
typedef struct tr_sys_path_info
|
|
|
|
{
|
2017-04-19 12:04:45 +00:00
|
|
|
tr_sys_path_type_t type;
|
|
|
|
uint64_t size;
|
|
|
|
time_t last_modified_at;
|
2021-08-15 09:41:48 +00:00
|
|
|
} tr_sys_path_info;
|
2014-07-03 21:58:39 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @name Platform-specific wrapper functions
|
|
|
|
*
|
|
|
|
* Following functions accept paths in UTF-8 encoding and convert them to native
|
|
|
|
* encoding internally if needed.
|
2014-09-21 17:52:36 +00:00
|
|
|
* Descriptors returned (@ref tr_sys_file_t and @ref tr_sys_dir_t) may have
|
|
|
|
* different type depending on platform and should generally not be passed to
|
|
|
|
* native functions, but to wrapper functions instead.
|
2014-07-03 21:58:39 +00:00
|
|
|
*
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Path-related wrappers */
|
|
|
|
|
Add in-kernel file copying for several platforms. (#1092)
* Add in-kernel copying support for Linux (sendfile64(2), copy_file_range(2)), FreeBSD 13 (copy_file_range(2)), MacOS (copyfile(2)), and Windows (CopyFileExA).
* Fix macro name USE_COPY_FILE_RANGE.
* Minor bugfixes for userspace fallback.
* Fix linux sendfile64 bugs.
* Remove some overzealous asserts.
* Allow transmission-test-copy to take an optional argument for an external reference file.
* Fix return value error of tr_sys_path_copy.
* Use COPYFILE_ALL for Macs without COPYFILE_CLONE.
* Add in-kernel file copying for several platforms.
Numerous operating systems now have support for copying files directly in the
kernel, which is generally more efficient than copying in a userspace read(2)/
write(2) loop. (This becomes particularly relevant for 4th gen PCI-E storage,
which approaches the latency of DRAM.) For Linux I use sendfile64(2), and, for
later kernels, copy_file_range(2). FreeBSD 13 will also support
copy_file_range(2). MacOS has copyfile(2), and Windows has CopyFileExA.
Operating systems lacking such a syscall continue to use the existing
read(2)/write(2) loop.
* Appease uncrustify.
* Appease uncrustify.
* copy-test: generate random content at run time.
* copy-test: Stylistic changes and more check()s.
* copy-test: files_are_identical should follow test idioms
* tr_sys_path_copy: numerous tweaks as requested by review.
* s/old file/source file; s/new file/destination file.
* tr_sys_path_copy: handle win32 wide characters in paths.
* Uncrustify.
* test-copy: Use non-string create_file_with_contents.
* tr_sys_path_copy: numerous fixes.
Per review: generate test file content at runtime; tidy use of check();
fix style; re-measure file sizes in the copy; define a macro when the
system does not provide it; use Unicode APIs on Windows; and fix
documentation.
* Updated as per comments.
* Rebase kernel-copy changes onto 3.0 with gtest.
* Undo irrelevant comment change.
* Fix syntax error.
* Use tr_malloc() instead of tr_valloc().
* Use EXPECT instead of TR_ASSERT in gtest.
* Add error handling.
* Acceptable coding style has changed again.
Now it's camelCase. Also use nullptr instead of NULL, etc.
* Fix east/west const.
Co-authored-by: Mike Gelfand <mikedld@users.noreply.github.com>
2021-08-07 09:04:03 +00:00
|
|
|
/**
|
|
|
|
* @brief Portability wrapper for various in-kernel file copy functions, with a
|
|
|
|
* fallback to a userspace read/write loop.
|
|
|
|
*
|
|
|
|
* @param[in] src_path Path to source file.
|
|
|
|
* @param[in] dst_path Path to destination file.
|
|
|
|
* @param[out] error Pointer to error object. Optional, pass `NULL` if you
|
|
|
|
* are not interested in error details.
|
|
|
|
*
|
|
|
|
* @return `True` on success, `false` otherwise (with `error` set accordingly).
|
|
|
|
*/
|
|
|
|
bool tr_sys_path_copy(char const* src_path, char const* dst_path, struct tr_error** error);
|
|
|
|
|
2014-07-03 21:58:39 +00:00
|
|
|
/**
|
2017-04-21 07:40:57 +00:00
|
|
|
* @brief Portability wrapper for `stat()`.
|
2014-07-03 21:58:39 +00:00
|
|
|
*
|
|
|
|
* @param[in] path Path to file or directory.
|
|
|
|
* @param[in] flags Combination of @ref tr_sys_path_get_info_flags_t values.
|
|
|
|
* @param[out] info Result buffer.
|
|
|
|
* @param[out] error Pointer to error object. Optional, pass `NULL` if you are
|
|
|
|
* not interested in error details.
|
|
|
|
*
|
|
|
|
* @return `True` on success, `false` otherwise (with `error` set accordingly).
|
|
|
|
*/
|
2017-04-20 16:02:19 +00:00
|
|
|
bool tr_sys_path_get_info(char const* path, int flags, tr_sys_path_info* info, struct tr_error** error);
|
2014-07-03 21:58:39 +00:00
|
|
|
|
|
|
|
/**
|
2017-04-21 07:40:57 +00:00
|
|
|
* @brief Portability wrapper for `access()`.
|
2014-07-03 21:58:39 +00:00
|
|
|
*
|
|
|
|
* @param[in] path Path to file or directory.
|
|
|
|
* @param[out] error Pointer to error object. Optional, pass `NULL` if you are
|
|
|
|
* not interested in error details.
|
|
|
|
*
|
|
|
|
* @return `True` if path exists, `false` otherwise. Note that `false` will also
|
|
|
|
* be returned in case of error; if you need to distinguish the two,
|
|
|
|
* check if `error` is `NULL` afterwards.
|
|
|
|
*/
|
2017-04-20 16:02:19 +00:00
|
|
|
bool tr_sys_path_exists(char const* path, struct tr_error** error);
|
2014-07-03 21:58:39 +00:00
|
|
|
|
2015-10-20 21:22:19 +00:00
|
|
|
/**
|
|
|
|
* @brief Check whether path is relative.
|
|
|
|
*
|
|
|
|
* This function only analyzes the string, so no error reporting is needed.
|
|
|
|
*
|
|
|
|
* @param[in] path Path to file or directory.
|
|
|
|
*
|
|
|
|
* @return `True` if path is relative, `false` otherwise
|
|
|
|
*/
|
2017-04-20 16:02:19 +00:00
|
|
|
bool tr_sys_path_is_relative(char const* path);
|
2015-10-20 21:22:19 +00:00
|
|
|
|
2014-07-03 21:58:39 +00:00
|
|
|
/**
|
|
|
|
* @brief Test to see if the two filenames point to the same file.
|
|
|
|
*
|
|
|
|
* @param[in] path1 Path to first file or directory.
|
|
|
|
* @param[in] path2 Path to second file or directory.
|
|
|
|
* @param[out] error Pointer to error object. Optional, pass `NULL` if you are
|
|
|
|
* not interested in error details.
|
|
|
|
*
|
|
|
|
* @return `True` if two paths point to the same file or directory, `false`
|
|
|
|
* otherwise. Note that `false` will also be returned in case of error;
|
|
|
|
* if you need to distinguish the two, check if `error` is `NULL`
|
|
|
|
* afterwards.
|
|
|
|
*/
|
2017-04-20 16:02:19 +00:00
|
|
|
bool tr_sys_path_is_same(char const* path1, char const* path2, struct tr_error** error);
|
2014-07-03 21:58:39 +00:00
|
|
|
|
|
|
|
/**
|
2017-04-21 07:40:57 +00:00
|
|
|
* @brief Portability wrapper for `realpath()`.
|
2014-07-03 21:58:39 +00:00
|
|
|
*
|
|
|
|
* @param[in] path Path to file or directory.
|
|
|
|
* @param[out] error Pointer to error object. Optional, pass `NULL` if you are
|
|
|
|
* not interested in error details.
|
|
|
|
*
|
|
|
|
* @return Pointer to newly allocated buffer containing full path (with symbolic
|
|
|
|
* links, `.` and `..` resolved) on success (use @ref tr_free to free it
|
|
|
|
* when no longer needed), `NULL` otherwise (with `error` set
|
|
|
|
* accordingly).
|
|
|
|
*/
|
2017-04-20 16:02:19 +00:00
|
|
|
char* tr_sys_path_resolve(char const* path, struct tr_error** error);
|
2014-07-03 21:58:39 +00:00
|
|
|
|
|
|
|
/**
|
2017-04-21 07:40:57 +00:00
|
|
|
* @brief Portability wrapper for `basename()`.
|
2014-07-03 21:58:39 +00:00
|
|
|
*
|
|
|
|
* @param[in] path Path to file or directory.
|
|
|
|
* @param[out] error Pointer to error object. Optional, pass `NULL` if you are
|
|
|
|
* not interested in error details.
|
|
|
|
*
|
|
|
|
* @return Pointer to newly allocated buffer containing base name (last path
|
|
|
|
* component; parent path removed) on success (use @ref tr_free to free
|
|
|
|
* it when no longer needed), `NULL` otherwise (with `error` set
|
|
|
|
* accordingly).
|
|
|
|
*/
|
2017-04-20 16:02:19 +00:00
|
|
|
char* tr_sys_path_basename(char const* path, struct tr_error** error);
|
2014-07-03 21:58:39 +00:00
|
|
|
|
|
|
|
/**
|
2017-04-21 07:40:57 +00:00
|
|
|
* @brief Portability wrapper for `dirname()`.
|
2014-07-03 21:58:39 +00:00
|
|
|
*
|
|
|
|
* @param[in] path Path to file or directory.
|
|
|
|
* @param[out] error Pointer to error object. Optional, pass `NULL` if you are
|
|
|
|
* not interested in error details.
|
|
|
|
*
|
|
|
|
* @return Pointer to newly allocated buffer containing directory (parent path;
|
|
|
|
* last path component removed) on success (use @ref tr_free to free it
|
|
|
|
* when no longer needed), `NULL` otherwise (with `error` set
|
|
|
|
* accordingly).
|
|
|
|
*/
|
2017-04-20 16:02:19 +00:00
|
|
|
char* tr_sys_path_dirname(char const* path, struct tr_error** error);
|
2014-07-03 21:58:39 +00:00
|
|
|
|
|
|
|
/**
|
2017-04-21 07:40:57 +00:00
|
|
|
* @brief Portability wrapper for `rename()`.
|
2014-07-03 21:58:39 +00:00
|
|
|
*
|
|
|
|
* @param[in] src_path Path to source file or directory.
|
|
|
|
* @param[in] dst_path Path to destination file or directory.
|
|
|
|
* @param[out] error Pointer to error object. Optional, pass `NULL` if you
|
|
|
|
* are not interested in error details.
|
|
|
|
*
|
|
|
|
* @return `True` on success, `false` otherwise (with `error` set accordingly).
|
|
|
|
* Rename will generally only succeed if both source and destination are
|
|
|
|
* on the same partition.
|
|
|
|
*/
|
2017-04-20 16:02:19 +00:00
|
|
|
bool tr_sys_path_rename(char const* src_path, char const* dst_path, struct tr_error** error);
|
2014-07-03 21:58:39 +00:00
|
|
|
|
|
|
|
/**
|
2017-04-21 07:40:57 +00:00
|
|
|
* @brief Portability wrapper for `remove()`.
|
2014-07-03 21:58:39 +00:00
|
|
|
*
|
|
|
|
* @param[in] path Path to file or directory.
|
|
|
|
* @param[out] error Pointer to error object. Optional, pass `NULL` if you are
|
|
|
|
* not interested in error details.
|
|
|
|
*
|
|
|
|
* @return `True` on success, `false` otherwise (with `error` set accordingly).
|
|
|
|
* Directory removal will only succeed if it is empty (contains no other
|
|
|
|
* files and directories).
|
|
|
|
*/
|
2017-04-20 16:02:19 +00:00
|
|
|
bool tr_sys_path_remove(char const* path, struct tr_error** error);
|
2014-07-03 21:58:39 +00:00
|
|
|
|
2017-11-27 22:22:44 +00:00
|
|
|
/**
|
|
|
|
* @brief Transform path separators to native ones, in-place.
|
|
|
|
*
|
|
|
|
* @param[in,out] path Path to transform.
|
|
|
|
*
|
|
|
|
* @return Same path but with native (and uniform) separators.
|
|
|
|
*/
|
|
|
|
char* tr_sys_path_native_separators(char* path);
|
|
|
|
|
2014-07-08 00:15:12 +00:00
|
|
|
/* File-related wrappers */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Get handle to one of standard I/O files.
|
|
|
|
*
|
|
|
|
* @param[in] std_file Standard file identifier.
|
|
|
|
* @param[out] error Pointer to error object. Optional, pass `NULL` if you
|
|
|
|
* are not interested in error details.
|
|
|
|
*
|
|
|
|
* @return Opened file descriptor on success, `TR_BAD_SYS_FILE` otherwise (with
|
|
|
|
* `error` set accordingly). DO NOT pass this descriptor to
|
|
|
|
* @ref tr_sys_file_close (unless you know what you are doing).
|
|
|
|
*/
|
2017-04-19 12:04:45 +00:00
|
|
|
tr_sys_file_t tr_sys_file_get_std(tr_std_sys_file_t std_file, struct tr_error** error);
|
2014-07-08 00:15:12 +00:00
|
|
|
|
|
|
|
/**
|
2017-04-21 07:40:57 +00:00
|
|
|
* @brief Portability wrapper for `open()`.
|
2014-07-08 00:15:12 +00:00
|
|
|
*
|
|
|
|
* @param[in] path Path to file.
|
|
|
|
* @param[in] flags Combination of @ref tr_sys_file_open_flags_t values.
|
|
|
|
* @param[in] permissions Permissions to create file with (in case
|
|
|
|
@ref TR_SYS_FILE_CREATE is used). Not used on Windows.
|
|
|
|
* @param[out] error Pointer to error object. Optional, pass `NULL` if you
|
|
|
|
* are not interested in error details.
|
|
|
|
*
|
|
|
|
* @return Opened file descriptor on success, `TR_BAD_SYS_FILE` otherwise (with
|
|
|
|
* `error` set accordingly).
|
|
|
|
*/
|
2017-04-20 16:02:19 +00:00
|
|
|
tr_sys_file_t tr_sys_file_open(char const* path, int flags, int permissions, struct tr_error** error);
|
2014-07-08 00:15:12 +00:00
|
|
|
|
|
|
|
/**
|
2017-04-21 07:40:57 +00:00
|
|
|
* @brief Portability wrapper for `mkstemp()`.
|
2014-07-08 00:15:12 +00:00
|
|
|
*
|
|
|
|
* @param[in,out] path_template Template path to file. Should end with at least
|
|
|
|
* six 'X' characters. Upon success, trailing 'X'
|
|
|
|
* characters are replaced with actual random
|
|
|
|
* characters used to form a unique path to
|
|
|
|
* temporary file.
|
|
|
|
* @param[out] error Pointer to error object. Optional, pass `NULL`
|
|
|
|
* if you are not interested in error details.
|
|
|
|
*
|
|
|
|
* @return Opened file descriptor on success, `TR_BAD_SYS_FILE` otherwise (with
|
|
|
|
* `error` set accordingly).
|
|
|
|
*/
|
2017-04-19 12:04:45 +00:00
|
|
|
tr_sys_file_t tr_sys_file_open_temp(char* path_template, struct tr_error** error);
|
2014-07-08 00:15:12 +00:00
|
|
|
|
|
|
|
/**
|
2017-04-21 07:40:57 +00:00
|
|
|
* @brief Portability wrapper for `close()`.
|
2014-07-08 00:15:12 +00:00
|
|
|
*
|
|
|
|
* @param[in] handle Valid file descriptor.
|
|
|
|
* @param[out] error Pointer to error object. Optional, pass `NULL` if you are
|
|
|
|
* not interested in error details.
|
|
|
|
*
|
|
|
|
* @return `True` on success, `false` otherwise (with `error` set accordingly).
|
|
|
|
*/
|
2017-04-19 12:04:45 +00:00
|
|
|
bool tr_sys_file_close(tr_sys_file_t handle, struct tr_error** error);
|
2014-07-08 00:15:12 +00:00
|
|
|
|
|
|
|
/**
|
2017-04-21 07:40:57 +00:00
|
|
|
* @brief Portability wrapper for `fstat()`.
|
2014-07-08 00:15:12 +00:00
|
|
|
*
|
|
|
|
* @param[in] handle Valid file descriptor.
|
|
|
|
* @param[out] info Result buffer.
|
|
|
|
* @param[out] error Pointer to error object. Optional, pass `NULL` if you are
|
|
|
|
* not interested in error details.
|
|
|
|
*
|
|
|
|
* @return `True` on success, `false` otherwise (with `error` set accordingly).
|
|
|
|
*/
|
2017-04-19 12:04:45 +00:00
|
|
|
bool tr_sys_file_get_info(tr_sys_file_t handle, tr_sys_path_info* info, struct tr_error** error);
|
2014-07-08 00:15:12 +00:00
|
|
|
|
|
|
|
/**
|
2017-04-21 07:40:57 +00:00
|
|
|
* @brief Portability wrapper for `lseek()`.
|
2014-07-08 00:15:12 +00:00
|
|
|
*
|
|
|
|
* @param[in] handle Valid file descriptor.
|
|
|
|
* @param[in] offset Relative file offset in bytes to seek to.
|
|
|
|
* @param[in] origin Offset origin.
|
|
|
|
* @param[out] new_offset New offset in bytes from beginning of file. Optional,
|
|
|
|
* pass `NULL` if you are not interested.
|
|
|
|
* @param[out] error Pointer to error object. Optional, pass `NULL` if you
|
|
|
|
* are not interested in error details.
|
|
|
|
*
|
|
|
|
* @return `True` on success, `false` otherwise (with `error` set accordingly).
|
|
|
|
*/
|
2021-08-15 09:41:48 +00:00
|
|
|
bool tr_sys_file_seek(
|
|
|
|
tr_sys_file_t handle,
|
|
|
|
int64_t offset,
|
|
|
|
tr_seek_origin_t origin,
|
|
|
|
uint64_t* new_offset,
|
2017-04-19 12:04:45 +00:00
|
|
|
struct tr_error** error);
|
2014-07-08 00:15:12 +00:00
|
|
|
|
|
|
|
/**
|
2017-04-21 07:40:57 +00:00
|
|
|
* @brief Portability wrapper for `read()`.
|
2014-07-08 00:15:12 +00:00
|
|
|
*
|
|
|
|
* @param[in] handle Valid file descriptor.
|
|
|
|
* @param[out] buffer Buffer to store read data to.
|
|
|
|
* @param[in] size Number of bytes to read.
|
|
|
|
* @param[out] bytes_read Number of bytes actually read. Optional, pass `NULL`
|
|
|
|
* if you are not interested.
|
|
|
|
* @param[out] error Pointer to error object. Optional, pass `NULL` if you
|
|
|
|
* are not interested in error details.
|
|
|
|
*
|
|
|
|
* @return `True` on success, `false` otherwise (with `error` set accordingly).
|
|
|
|
*/
|
2017-04-19 12:04:45 +00:00
|
|
|
bool tr_sys_file_read(tr_sys_file_t handle, void* buffer, uint64_t size, uint64_t* bytes_read, struct tr_error** error);
|
2014-07-08 00:15:12 +00:00
|
|
|
|
|
|
|
/**
|
2017-04-21 07:40:57 +00:00
|
|
|
* @brief Like `pread()`, except that the position is undefined afterwards.
|
2014-07-08 00:15:12 +00:00
|
|
|
* Not thread-safe.
|
|
|
|
*
|
|
|
|
* @param[in] handle Valid file descriptor.
|
|
|
|
* @param[out] buffer Buffer to store read data to.
|
|
|
|
* @param[in] size Number of bytes to read.
|
|
|
|
* @param[in] offset File offset in bytes to start reading from.
|
|
|
|
* @param[out] bytes_read Number of bytes actually read. Optional, pass `NULL`
|
|
|
|
* if you are not interested.
|
|
|
|
* @param[out] error Pointer to error object. Optional, pass `NULL` if you
|
|
|
|
* are not interested in error details.
|
|
|
|
*
|
|
|
|
* @return `True` on success, `false` otherwise (with `error` set accordingly).
|
|
|
|
*/
|
2021-08-15 09:41:48 +00:00
|
|
|
bool tr_sys_file_read_at(
|
|
|
|
tr_sys_file_t handle,
|
|
|
|
void* buffer,
|
|
|
|
uint64_t size,
|
|
|
|
uint64_t offset,
|
|
|
|
uint64_t* bytes_read,
|
2017-04-19 12:04:45 +00:00
|
|
|
struct tr_error** error);
|
2014-07-08 00:15:12 +00:00
|
|
|
|
|
|
|
/**
|
2017-04-21 07:40:57 +00:00
|
|
|
* @brief Portability wrapper for `write()`.
|
2014-07-08 00:15:12 +00:00
|
|
|
*
|
|
|
|
* @param[in] handle Valid file descriptor.
|
|
|
|
* @param[in] buffer Buffer to get data being written from.
|
|
|
|
* @param[in] size Number of bytes to write.
|
|
|
|
* @param[out] bytes_written Number of bytes actually written. Optional, pass
|
|
|
|
* `NULL` if you are not interested.
|
|
|
|
* @param[out] error Pointer to error object. Optional, pass `NULL` if
|
|
|
|
* you are not interested in error details.
|
|
|
|
*
|
|
|
|
* @return `True` on success, `false` otherwise (with `error` set accordingly).
|
|
|
|
*/
|
2021-08-15 09:41:48 +00:00
|
|
|
bool tr_sys_file_write(
|
|
|
|
tr_sys_file_t handle,
|
|
|
|
void const* buffer,
|
|
|
|
uint64_t size,
|
|
|
|
uint64_t* bytes_written,
|
2017-04-19 12:04:45 +00:00
|
|
|
struct tr_error** error);
|
2014-07-08 00:15:12 +00:00
|
|
|
|
|
|
|
/**
|
2017-04-21 07:40:57 +00:00
|
|
|
* @brief Like `pwrite()`, except that the position is undefined afterwards.
|
2014-07-08 00:15:12 +00:00
|
|
|
* Not thread-safe.
|
|
|
|
*
|
|
|
|
* @param[in] handle Valid file descriptor.
|
|
|
|
* @param[in] buffer Buffer to get data being written from.
|
|
|
|
* @param[in] size Number of bytes to write.
|
|
|
|
* @param[in] offset File offset in bytes to start writing from.
|
|
|
|
* @param[out] bytes_written Number of bytes actually written. Optional, pass
|
|
|
|
* `NULL` if you are not interested.
|
|
|
|
* @param[out] error Pointer to error object. Optional, pass `NULL` if you
|
|
|
|
* are not interested in error details.
|
|
|
|
*
|
|
|
|
* @return `True` on success, `false` otherwise (with `error` set accordingly).
|
|
|
|
*/
|
2021-08-15 09:41:48 +00:00
|
|
|
bool tr_sys_file_write_at(
|
|
|
|
tr_sys_file_t handle,
|
|
|
|
void const* buffer,
|
|
|
|
uint64_t size,
|
|
|
|
uint64_t offset,
|
|
|
|
uint64_t* bytes_written,
|
2017-04-19 12:04:45 +00:00
|
|
|
struct tr_error** error);
|
2014-07-08 00:15:12 +00:00
|
|
|
|
|
|
|
/**
|
2017-04-21 07:40:57 +00:00
|
|
|
* @brief Portability wrapper for `fsync()`.
|
2014-07-08 00:15:12 +00:00
|
|
|
*
|
|
|
|
* @param[in] handle Valid file descriptor.
|
|
|
|
* @param[out] error Pointer to error object. Optional, pass `NULL` if you are
|
|
|
|
* not interested in error details.
|
|
|
|
*
|
|
|
|
* @return `True` on success, `false` otherwise (with `error` set accordingly).
|
|
|
|
*/
|
2017-04-19 12:04:45 +00:00
|
|
|
bool tr_sys_file_flush(tr_sys_file_t handle, struct tr_error** error);
|
2014-07-08 00:15:12 +00:00
|
|
|
|
|
|
|
/**
|
2017-04-21 07:40:57 +00:00
|
|
|
* @brief Portability wrapper for `ftruncate()`.
|
2014-07-08 00:15:12 +00:00
|
|
|
*
|
|
|
|
* @param[in] handle Valid file descriptor.
|
|
|
|
* @param[in] size Number of bytes to truncate (or extend) file to.
|
|
|
|
* @param[out] error Pointer to error object. Optional, pass `NULL` if you are
|
|
|
|
* not interested in error details.
|
|
|
|
*
|
|
|
|
* @return `True` on success, `false` otherwise (with `error` set accordingly).
|
|
|
|
*/
|
2017-04-19 12:04:45 +00:00
|
|
|
bool tr_sys_file_truncate(tr_sys_file_t handle, uint64_t size, struct tr_error** error);
|
2014-07-08 00:15:12 +00:00
|
|
|
|
|
|
|
/**
|
2017-07-08 13:09:37 +00:00
|
|
|
* @brief Tell system to prefetch or discard some part of file which is [not] to be read soon.
|
2014-07-08 00:15:12 +00:00
|
|
|
*
|
|
|
|
* @param[in] handle Valid file descriptor.
|
|
|
|
* @param[in] offset Offset in file to prefetch from.
|
|
|
|
* @param[in] size Number of bytes to prefetch.
|
|
|
|
* @param[out] error Pointer to error object. Optional, pass `NULL` if you are
|
|
|
|
* not interested in error details.
|
|
|
|
*
|
|
|
|
* @return `True` on success, `false` otherwise (with `error` set accordingly).
|
|
|
|
*/
|
2021-08-15 09:41:48 +00:00
|
|
|
bool tr_sys_file_advise(
|
|
|
|
tr_sys_file_t handle,
|
|
|
|
uint64_t offset,
|
|
|
|
uint64_t size,
|
|
|
|
tr_sys_file_advice_t advice,
|
2017-07-08 13:09:37 +00:00
|
|
|
struct tr_error** error);
|
2014-07-08 00:15:12 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Preallocate file to specified size in full or sparse mode.
|
|
|
|
*
|
|
|
|
* @param[in] handle Valid file descriptor.
|
|
|
|
* @param[in] size Number of bytes to preallocate file to.
|
|
|
|
* @param[in] flags Combination of @ref tr_sys_file_preallocate_flags_t values.
|
|
|
|
* @param[out] error Pointer to error object. Optional, pass `NULL` if you are
|
|
|
|
* not interested in error details.
|
|
|
|
*
|
|
|
|
* @return `True` on success, `false` otherwise (with `error` set accordingly).
|
|
|
|
*/
|
2017-04-19 12:04:45 +00:00
|
|
|
bool tr_sys_file_preallocate(tr_sys_file_t handle, uint64_t size, int flags, struct tr_error** error);
|
2014-07-08 00:15:12 +00:00
|
|
|
|
|
|
|
/**
|
2017-04-21 07:40:57 +00:00
|
|
|
* @brief Portability wrapper for `mmap()` for files.
|
2014-07-08 00:15:12 +00:00
|
|
|
*
|
|
|
|
* @param[in] handle Valid file descriptor.
|
|
|
|
* @param[in] offset Offset in file to map from.
|
|
|
|
* @param[in] size Number of bytes to map.
|
|
|
|
* @param[out] error Pointer to error object. Optional, pass `NULL` if you are
|
|
|
|
* not interested in error details.
|
|
|
|
*
|
|
|
|
* @return Pointer to mapped file data on success, `NULL` otherwise (with
|
|
|
|
* `error` set accordingly).
|
|
|
|
*/
|
2017-04-19 12:04:45 +00:00
|
|
|
void* tr_sys_file_map_for_reading(tr_sys_file_t handle, uint64_t offset, uint64_t size, struct tr_error** error);
|
2014-07-08 00:15:12 +00:00
|
|
|
|
|
|
|
/**
|
2017-04-21 07:40:57 +00:00
|
|
|
* @brief Portability wrapper for `munmap()` for files.
|
2014-07-08 00:15:12 +00:00
|
|
|
*
|
|
|
|
* @param[in] address Pointer to mapped file data.
|
|
|
|
* @param[in] size Size of mapped data in bytes.
|
|
|
|
* @param[out] error Pointer to error object. Optional, pass `NULL` if you are
|
|
|
|
* not interested in error details.
|
|
|
|
*
|
|
|
|
* @return `True` on success, `false` otherwise (with `error` set accordingly).
|
|
|
|
*/
|
2017-04-20 16:02:19 +00:00
|
|
|
bool tr_sys_file_unmap(void const* address, uint64_t size, struct tr_error** error);
|
2014-07-08 00:15:12 +00:00
|
|
|
|
2016-09-21 20:56:03 +00:00
|
|
|
/**
|
2017-04-21 07:40:57 +00:00
|
|
|
* @brief Portability wrapper for `flock()`.
|
2016-09-21 20:56:03 +00:00
|
|
|
*
|
|
|
|
* Don't try to upgrade or downgrade the lock unless you know what you are
|
|
|
|
* doing, as behavior varies a bit between platforms.
|
|
|
|
*
|
|
|
|
* @param[in] handle Valid file descriptor.
|
|
|
|
* @param[in] operation Combination of @ref tr_sys_file_lock_flags_t values.
|
|
|
|
* @param[out] error Pointer to error object. Optional, pass `NULL` if you
|
|
|
|
* are not interested in error details.
|
|
|
|
*
|
|
|
|
* @return `True` on success, `false` otherwise (with `error` set accordingly).
|
|
|
|
*/
|
2017-04-19 12:04:45 +00:00
|
|
|
bool tr_sys_file_lock(tr_sys_file_t handle, int operation, struct tr_error** error);
|
2016-09-21 20:56:03 +00:00
|
|
|
|
2014-09-21 17:57:45 +00:00
|
|
|
/* File-related wrappers (utility) */
|
|
|
|
|
|
|
|
/**
|
2017-04-21 07:40:57 +00:00
|
|
|
* @brief Portability wrapper for `fgets()`, removing EOL internally.
|
2014-09-21 17:57:45 +00:00
|
|
|
*
|
|
|
|
* Special care should be taken when reading from one of standard input streams
|
|
|
|
* (@ref tr_std_sys_file_t) since no UTF-8 conversion is currently being made.
|
|
|
|
*
|
|
|
|
* Reading from other streams (files, pipes) also leaves data untouched, so it
|
|
|
|
* should already be in UTF-8 encoding, or whichever else you expect.
|
|
|
|
*
|
|
|
|
* @param[in] handle Valid file descriptor.
|
|
|
|
* @param[out] buffer Buffer to store read zero-terminated string to.
|
|
|
|
* @param[in] buffer_size Buffer size in bytes, taking '\0' character into
|
|
|
|
* account.
|
|
|
|
* @param[out] error Pointer to error object. Optional, pass `NULL` if you
|
|
|
|
* are not interested in error details.
|
|
|
|
*
|
|
|
|
* @return `True` on success, `false` otherwise (with `error` set accordingly).
|
|
|
|
* Note that `false` will also be returned in case of end of file; if
|
|
|
|
* you need to distinguish the two, check if `error` is `NULL`
|
|
|
|
* afterwards.
|
|
|
|
*/
|
2017-04-19 12:04:45 +00:00
|
|
|
bool tr_sys_file_read_line(tr_sys_file_t handle, char* buffer, size_t buffer_size, struct tr_error** error);
|
2014-09-21 17:57:45 +00:00
|
|
|
|
|
|
|
/**
|
2017-04-21 07:40:57 +00:00
|
|
|
* @brief Portability wrapper for `fputs()`, appending EOL internally.
|
2014-09-21 17:57:45 +00:00
|
|
|
*
|
|
|
|
* Special care should be taken when writing to one of standard output streams
|
|
|
|
* (@ref tr_std_sys_file_t) since no UTF-8 conversion is currently being made.
|
|
|
|
*
|
|
|
|
* Writing to other streams (files, pipes) also leaves data untouched, so it
|
|
|
|
* should already be in UTF-8 encoding, or whichever else you expect.
|
|
|
|
*
|
|
|
|
* @param[in] handle Valid file descriptor.
|
|
|
|
* @param[in] buffer Zero-terminated string to write.
|
|
|
|
* @param[out] error Pointer to error object. Optional, pass `NULL` if you are
|
|
|
|
* not interested in error details.
|
|
|
|
*
|
|
|
|
* @return `True` on success, `false` otherwise (with `error` set accordingly).
|
|
|
|
*/
|
2017-04-20 16:02:19 +00:00
|
|
|
bool tr_sys_file_write_line(tr_sys_file_t handle, char const* buffer, struct tr_error** error);
|
2014-09-21 17:57:45 +00:00
|
|
|
|
|
|
|
/**
|
2017-04-21 07:40:57 +00:00
|
|
|
* @brief Portability wrapper for `fprintf()`.
|
2014-09-21 17:57:45 +00:00
|
|
|
*
|
|
|
|
* Special care should be taken when writing to one of standard output streams
|
|
|
|
* (@ref tr_std_sys_file_t) since no UTF-8 conversion is currently being made.
|
|
|
|
*
|
|
|
|
* Writing to other streams (files, pipes) also leaves data untouched, so it
|
|
|
|
* should already be in UTF-8 encoding, or whichever else you expect.
|
|
|
|
*
|
|
|
|
* @param[in] handle Valid file descriptor.
|
|
|
|
* @param[in] format String format to write.
|
|
|
|
* @param[out] error Pointer to error object. Optional, pass `NULL` if you are
|
|
|
|
* not interested in error details.
|
|
|
|
* @param[in] ... Format arguments.
|
|
|
|
*
|
|
|
|
* @return `True` on success, `false` otherwise (with `error` set accordingly).
|
|
|
|
*/
|
fix: gcc warnings in libtransmission/ and utils/ (#843)
* fix: __attribute__(__printf__) warnings
* fix: implicit fallthrough warning
* fixup! fix: implicit fallthrough warning
* fix: disable warnings for 3rd party code
Since we want to leave upstream code as-is
* fixup! fix: disable warnings for 3rd party code
* fixup! fix: disable warnings for 3rd party code
* silence spurious alignment warning
Xrefs
Discussion: https://stackoverflow.com/a/35554349
Macro inspiration: https://pagure.io/SSSD/sssd/blob/90ac46f71068d131391492360a8553bdd005b5a7/f/src/util/util_safealign.h#_35
* fixup! fix: disable warnings for 3rd party code
* fixup! fix: implicit fallthrough warning
* make uncrustify happy
* remove uncrustify-test.sh
that's probably off-topic for this PR
* fixup! fix: __attribute__(__printf__) warnings
* Update libtransmission/CMakeLists.txt
Co-Authored-By: ckerr <ckerr@github.com>
* fixup! silence spurious alignment warning
* use -w for DISABLE_WARNINGS in Clang
* refactor: fix libtransmission deprecation warnings
* fix: pthread_create's start_routine's return value
This was defined as `void` on non-Windows but should have been `void*`
* chore: uncrustify
* fix: add DISABLE_WARNINGS option for SunPro Studio
* fix "unused in lambda capture" warnings by clang++
* fix 'increases required alignment' warning
Caused from storing int16_t's in a char array.
* fix net.c 'increases required alignment' warning
The code passes in a `struct sockaddr_storage*` which is a padded struct
large enough for the necessary alignment. Unfortunately it was recast as
a `struct sockaddr*` which has less padding and a smaller alignment. The
warning occrred because of these differing alignments.
* make building quieter so warnings are more visible
* fixup! fix 'increases required alignment' warning
* Fix -Wcast-function-type warnings in GTK+ app code
https://gitlab.gnome.org/GNOME/gnome-terminal/issues/96 talks about both
the issue and its solution.
GCC 8's -Wcast-function-type, enabled by -Wextra, is problematic in glib
applications because it's idiomatic there to recast function signatures,
e.g. `g_slist_free(list, (GFunc)g_free, NULL);`.
Disabling the warning with pragmas causes "unrecognized pragma" warnings
on clang and older versions of gcc, and disabling the warning could miss
actual bugs. GCC defines `void (*)(void)` as a special case that matches
anything so we can silence warnings by double-casting through GCallback.
In the previous example, the warning is silenced by changing the code to
read `g_slist_free(list, (GFunc)(GCallback)g_free, NULL);`).
* fixup! fix "unused in lambda capture" warnings by clang++
* fixup! fix "unused in lambda capture" warnings by clang++
* fix two more libtransmission compiler warnings
* fix: in watchdir, use TR_ENABLE_ASSERTS not NDEBUG
2019-11-06 17:27:03 +00:00
|
|
|
bool tr_sys_file_write_fmt(tr_sys_file_t handle, char const* format, struct tr_error** error, ...) TR_GNUC_PRINTF(2, 4);
|
2014-09-21 17:57:45 +00:00
|
|
|
|
2014-09-21 17:52:36 +00:00
|
|
|
/* Directory-related wrappers */
|
|
|
|
|
|
|
|
/**
|
2017-04-21 07:40:57 +00:00
|
|
|
* @brief Portability wrapper for `getcwd()`.
|
2014-09-21 17:52:36 +00:00
|
|
|
*
|
|
|
|
* @param[out] error Pointer to error object. Optional, pass `NULL` if you are
|
|
|
|
* not interested in error details.
|
|
|
|
*
|
|
|
|
* @return Pointer to newly allocated buffer containing path to current
|
|
|
|
* directory (use @ref tr_free to free it when no longer needed) on
|
|
|
|
* success, `NULL` otherwise (with `error` set accordingly).
|
|
|
|
*/
|
2017-04-19 12:04:45 +00:00
|
|
|
char* tr_sys_dir_get_current(struct tr_error** error);
|
2014-09-21 17:52:36 +00:00
|
|
|
|
|
|
|
/**
|
2017-04-21 07:40:57 +00:00
|
|
|
* @brief Like `mkdir()`, but makes parent directories if needed.
|
2014-09-21 17:52:36 +00:00
|
|
|
*
|
|
|
|
* @param[in] path Path to directory.
|
|
|
|
* @param[in] flags Combination of @ref tr_sys_dir_create_flags_t values.
|
|
|
|
* @param[in] permissions Permissions to create directory with. Not used on
|
|
|
|
Windows.
|
|
|
|
* @param[out] error Pointer to error object. Optional, pass `NULL` if you
|
|
|
|
* are not interested in error details.
|
|
|
|
*
|
|
|
|
* @return `True` on success, `false` otherwise (with `error` set accordingly).
|
|
|
|
*/
|
2017-04-20 16:02:19 +00:00
|
|
|
bool tr_sys_dir_create(char const* path, int flags, int permissions, struct tr_error** error);
|
2014-09-21 17:52:36 +00:00
|
|
|
|
|
|
|
/**
|
2017-04-21 07:40:57 +00:00
|
|
|
* @brief Portability wrapper for `mkdtemp()`.
|
2014-09-21 17:52:36 +00:00
|
|
|
*
|
|
|
|
* @param[in,out] path_template Template path to directory. Should end with at
|
|
|
|
* least six 'X' characters. Upon success, trailing
|
|
|
|
* 'X' characters are replaced with actual random
|
|
|
|
* characters used to form a unique path to
|
|
|
|
* temporary directory.
|
|
|
|
* @param[out] error Pointer to error object. Optional, pass `NULL`
|
|
|
|
* if you are not interested in error details.
|
|
|
|
*
|
|
|
|
* @return `True` on success, `false` otherwise (with `error` set accordingly).
|
|
|
|
*/
|
2017-04-19 12:04:45 +00:00
|
|
|
bool tr_sys_dir_create_temp(char* path_template, struct tr_error** error);
|
2014-09-21 17:52:36 +00:00
|
|
|
|
|
|
|
/**
|
2017-04-21 07:40:57 +00:00
|
|
|
* @brief Portability wrapper for `opendir()`.
|
2014-09-21 17:52:36 +00:00
|
|
|
*
|
|
|
|
* @param[in] path Path to directory.
|
|
|
|
* @param[out] error Pointer to error object. Optional, pass `NULL` if you are
|
|
|
|
* not interested in error details.
|
|
|
|
*
|
|
|
|
* @return Opened directory descriptor on success, `TR_BAD_SYS_DIR` otherwise
|
|
|
|
* (with `error` set accordingly).
|
|
|
|
*/
|
2017-04-20 16:02:19 +00:00
|
|
|
tr_sys_dir_t tr_sys_dir_open(char const* path, struct tr_error** error);
|
2014-09-21 17:52:36 +00:00
|
|
|
|
|
|
|
/**
|
2017-04-21 07:40:57 +00:00
|
|
|
* @brief Portability wrapper for `readdir()`.
|
2014-09-21 17:52:36 +00:00
|
|
|
*
|
|
|
|
* @param[in] handle Valid directory descriptor.
|
|
|
|
* @param[out] error Pointer to error object. Optional, pass `NULL` if you are
|
|
|
|
* not interested in error details.
|
|
|
|
*
|
|
|
|
* @return Pointer to next directory entry name (stored internally, DO NOT pass
|
|
|
|
* it to @ref tr_free) on success, `NULL` otherwise (with `error` set
|
|
|
|
* accordingly). Note that `NULL` will also be returned in case of end
|
|
|
|
* of directory; if you need to distinguish the two, check if `error`
|
|
|
|
* is `NULL` afterwards.
|
|
|
|
*/
|
2017-04-20 16:02:19 +00:00
|
|
|
char const* tr_sys_dir_read_name(tr_sys_dir_t handle, struct tr_error** error);
|
2014-09-21 17:52:36 +00:00
|
|
|
|
|
|
|
/**
|
2017-04-21 07:40:57 +00:00
|
|
|
* @brief Portability wrapper for `closedir()`.
|
2014-09-21 17:52:36 +00:00
|
|
|
*
|
|
|
|
* @param[in] handle Valid directory descriptor.
|
|
|
|
* @param[out] error Pointer to error object. Optional, pass `NULL` if you are
|
|
|
|
* not interested in error details.
|
|
|
|
*
|
|
|
|
* @return `True` on success, `false` otherwise (with `error` set accordingly).
|
|
|
|
*/
|
2017-04-19 12:04:45 +00:00
|
|
|
bool tr_sys_dir_close(tr_sys_dir_t handle, struct tr_error** error);
|
2014-09-21 17:52:36 +00:00
|
|
|
|
2014-07-03 21:58:39 +00:00
|
|
|
/** @} */
|
|
|
|
/** @} */
|
|
|
|
|
2020-08-11 18:11:55 +00:00
|
|
|
TR_END_DECLS
|