jaulib v1.3.6
Jau Support Library (C++, Java, ..)
|
Author: Sven Gothel sgoth.nosp@m.el@j.nosp@m.ausof.nosp@m.t.co.nosp@m.m Copyright (c) 2022 Gothel Software e.K. More...
Classes | |
class | dir_item |
Representing a directory item split into dirname() and basename(). More... | |
class | file_stats |
Platform agnostic representation of POSIX ::lstat() and ::stat() for a given pathname. More... | |
struct | mount_ctx |
Typedefs | |
typedef jau::function< void(const dir_item &)> | consume_dir_item |
void consume_dir_item(const dir_item& item) | |
typedef uint64_t | mountflags_t |
Generic flag bit values for mount() flags . | |
typedef jau::function< bool(traverse_event, const file_stats &, size_t)> | path_visitor |
path_visitor jau::FunctionDef definition | |
typedef int | umountflags_t |
Generic flag bit values for umount() flags . | |
Functions | |
std::string | absolute (const std::string_view &relpath) noexcept |
Returns the absolute path of given relpath if existing, otherwise an empty string. | |
std::string | basename (const std::string_view &path) noexcept |
Return stripped leading directory components from given path separated by / . | |
bool | chdir (const std::string &path) noexcept |
Change working directory. | |
bool | compare (const file_stats &source1, const file_stats &source2, const bool verbose=false) noexcept |
Compare the bytes of both files, denoted by source1 and source2. | |
bool | compare (const std::string &source1, const std::string &source2, const bool verbose=false) noexcept |
Compare the bytes of both files, denoted by source1 and source2. | |
bool | copy (const std::string &source_path, const std::string &dest_path, const copy_options copts=copy_options::none) noexcept |
Copy the given source_path to dest_path using copy_options. | |
std::string | dirname (const std::string_view &path) noexcept |
Return stripped last component from given path separated by / , excluding the trailing separator / . | |
bool | exists (const std::string &path, bool verbose_on_error=false) noexcept |
Returns true if path exists and is accessible. | |
int | from_named_fd (const std::string &named_fd) noexcept |
Returns the file descriptor from the given named file descriptor. | |
std::string | get_cwd () noexcept |
Return the current working directory or empty on failure. | |
bool | get_dir_content (const int dirfd, const std::string &path, const consume_dir_item &digest) noexcept |
Returns a list of directory elements excluding . | |
bool | get_dir_content (const std::string &path, const consume_dir_item &digest) noexcept |
Returns a list of directory elements excluding . | |
bool | isAbsolute (const std::string_view &path) noexcept |
Returns true if first character is / or - in case of Windows - \\ . | |
JAU_MAKE_BITFIELD_ENUM_STRING (copy_options, recursive, follow_symlinks, into_existing_dir, ignore_symlink_errors, overwrite, preserve_all, sync) | |
JAU_MAKE_BITFIELD_ENUM_STRING (fmode_t, sock, blk, chr, fifo, dir, file, link, no_access, not_existing) | |
JAU_MAKE_BITFIELD_ENUM_STRING (mountflags_linux, rdonly, nosuid, nodev, noexec, synchronous, remount, mandlock, dirsync, noatime, nodiratime, bind, move, rec, silent, posixacl, unbindable, private_, slave, shared, relatime, kernmount, i_version, strictatime, lazytime, active, nouser) | |
JAU_MAKE_BITFIELD_ENUM_STRING (traverse_event, symlink, file, dir_check_entry, dir_entry, dir_exit, dir_symlink) | |
JAU_MAKE_BITFIELD_ENUM_STRING (traverse_options, recursive, follow_symlinks, lexicographical_order, dir_check_entry, dir_entry, dir_exit) | |
JAU_MAKE_BITFIELD_ENUM_STRING (umountflags_linux, force, detach, expire, nofollow) | |
JAU_MAKE_BITFIELD_ENUM_STRING2 (file_stats::field_t, field_t, type, mode, nlink, uid, gid, atime, mtime, ctime, ino, size, blocks, btime) | |
JAU_MAKE_ENUM_INFO (fmode_t, none, sock, blk, chr, fifo, dir, file, link, no_access, not_existing) | |
JAU_MAKE_ENUM_INFO (mountflags_linux, none, rdonly, nosuid, nodev, noexec, synchronous, remount, mandlock, dirsync, noatime, nodiratime, bind, move, rec, silent, posixacl, unbindable, private_, slave, shared, relatime, kernmount, i_version, strictatime, lazytime, active, nouser) | |
std::string | lookup_asset_dir (const char *exe_path, const char *asset_file, const char *asset_install_subdir) noexcept |
Returns located asset directory if found, otherwise an empty string. | |
bool | mkdir (const std::string &path, const fmode_t mode=jau::fs::fmode_t::def_dir_prot, const bool verbose=false) noexcept |
Create directory. | |
mount_ctx | mount (const std::string &source, const std::string &target, const std::string &fs_type, const mountflags_t flags, const std::string &fs_options="") |
Attach the filesystem named in source to target using the given filesystem source directly. | |
mount_ctx | mount_image (const std::string &image_path, const std::string &target, const std::string &fs_type, const mountflags_t flags, const std::string &fs_options="") |
Attach the filesystem image named in image_path to target using an intermediate platform specific filesystem image loop-device. | |
constexpr ::mode_t | posix_protection_bits (const fmode_t mask) noexcept |
Returns the POSIX protection bits: rwx_all | set_uid | set_gid | sticky, i.e. | |
bool | remove (const std::string &path, const traverse_options topts=traverse_options::none) noexcept |
Remove the given path. | |
bool | rename (const std::string &oldpath, const std::string &newpath) noexcept |
Rename oldpath to newpath using POSIX rename() , with the following combinations. | |
void | sync () noexcept |
Synchronizes filesystems, i.e. | |
std::string | to_named_fd (const int fd) noexcept |
Returns platform dependent named file descriptor of given file descriptor, if supported. | |
std::string | to_string (const fmode_t mask, const bool show_rwx) noexcept |
Return the string representation of fmode_t. | |
bool | touch (const std::string &path, const fmode_t mode=jau::fs::fmode_t::def_file_prot) noexcept |
Touch the file with current time and create file if not existing yet. | |
bool | touch (const std::string &path, const jau::fraction_timespec &atime, const jau::fraction_timespec &mtime, const fmode_t mode=jau::fs::fmode_t::def_file_prot) noexcept |
Touch the file with given atime and mtime and create file if not existing yet. | |
bool | umount (const mount_ctx &context, const umountflags_t flags) |
Detach the given mount_ctx context | |
bool | umount (const std::string &target, const umountflags_t flags) |
Detach the topmost filesystem mounted on target optionally using given umountflags options if supported. | |
bool | visit (const file_stats &item_stats, const traverse_options topts, const path_visitor &visitor, std::vector< int > *dirfds=nullptr) noexcept |
Visit element(s) of a given path, see traverse_options for detailed settings. | |
bool | visit (const std::string &path, const traverse_options topts, const path_visitor &visitor, std::vector< int > *dirfds=nullptr) noexcept |
Visit element(s) of a given path, see traverse_options for detailed settings. | |
Author: Sven Gothel sgoth.nosp@m.el@j.nosp@m.ausof.nosp@m.t.co.nosp@m.m Copyright (c) 2022 Gothel Software e.K.
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.
jau::fs::JAU_MAKE_ENUM_INFO | ( | fmode_t | , |
none | , | ||
sock | , | ||
blk | , | ||
chr | , | ||
fifo | , | ||
dir | , | ||
file | , | ||
link | , | ||
no_access | , | ||
not_existing | ) |
jau::fs::JAU_MAKE_ENUM_INFO | ( | mountflags_linux | , |
none | , | ||
rdonly | , | ||
nosuid | , | ||
nodev | , | ||
noexec | , | ||
synchronous | , | ||
remount | , | ||
mandlock | , | ||
dirsync | , | ||
noatime | , | ||
nodiratime | , | ||
bind | , | ||
move | , | ||
rec | , | ||
silent | , | ||
posixacl | , | ||
unbindable | , | ||
private_ | , | ||
slave | , | ||
shared | , | ||
relatime | , | ||
kernmount | , | ||
i_version | , | ||
strictatime | , | ||
lazytime | , | ||
active | , | ||
nouser | ) |