libcosmos
Linux C++ System Programming Library
|
#include <fcntl.h>
#include <sys/stat.h>
#include <unistd.h>
#include <iosfwd>
#include <string>
#include <cosmos/BitMask.hxx>
#include <cosmos/dso_export.h>
#include <cosmos/utils.hxx>
Go to the source code of this file.
Classes | |
class | cosmos::FileType |
Convenience wrapper around FileT. More... | |
class | cosmos::FileMode |
Represents the mode bits portion of a ModeT. More... | |
Typedefs | |
using | cosmos::FollowSymlinks = NamedBool<struct follow_links_t, false> |
Strong boolean type to enable following of symlinks in the file system. | |
using | cosmos::AutoCloseFD = NamedBool<struct close_file_t, true> |
Strong boolean type for expressing the responsibility to close file descriptors. | |
using | cosmos::OpenFlags = BitMask<OpenFlag> |
Collection of OpenFlag used for opening files. | |
using | cosmos::FileModeBits = BitMask<FileModeBit> |
BitMask of FileModeBit (represents the mode bit portion of ModeT). | |
Enumerations | |
enum class | cosmos::FileNum : int { INVALID = -1 , STDIN = STDIN_FILENO , STDOUT = STDOUT_FILENO , STDERR = STDERR_FILENO , AT_CWD = AT_FDCWD , MAX_FD = ~int(0) } |
Primitive file descriptor. More... | |
enum class | cosmos::Inode : ino_t |
A unique file number for a file on a block device. More... | |
enum class | cosmos::DeviceID : dev_t |
A device file identification type (consists of major:minor parts). More... | |
enum class | cosmos::OpenMode : int { READ_ONLY = O_RDONLY , WRITE_ONLY = O_WRONLY , READ_WRITE = O_RDWR } |
Strong enum type wrapper for the basic open() mode flag. More... | |
enum class | cosmos::OpenFlag : int { APPEND = O_APPEND , ASYNC = O_ASYNC , CLOEXEC = O_CLOEXEC , CREATE = O_CREAT , DIRECT = O_DIRECT , DIRECTORY = O_DIRECTORY , DSYNC = O_DSYNC , EXCLUSIVE = O_EXCL , NOATIME = O_NOATIME , NO_CONTROLLING_TTY = O_NOCTTY , NOFOLLOW = O_NOFOLLOW , NONBLOCK = O_NONBLOCK , PATH = O_PATH , SYNC = O_SYNC , TMPFILE = O_TMPFILE , TRUNCATE = O_TRUNC } |
Strong enum type wrapper for file descriptor settings on top of the basic OpenMode.. More... | |
enum class | cosmos::ModeT : mode_t { NONE = 0 , MODE_T_TYPE_MASK = S_IFMT , MODE_T_MODE_MASK = ~static_cast<mode_t>(S_IFMT) } |
Combined file type and mode bits of a file (as found in st_mode struct stat). More... | |
enum class | cosmos::FileModeBit : mode_t { SETUID = S_ISUID , SETGID = S_ISGID , STICKY = S_ISVTX , OWNER_READ = S_IRUSR , OWNER_WRITE = S_IWUSR , OWNER_EXEC = S_IXUSR , OWNER_ALL = S_IRWXU , GROUP_READ = S_IRGRP , GROUP_WRITE = S_IWGRP , GROUP_EXEC = S_IXGRP , GROUP_ALL = S_IRWXG , OTHER_READ = S_IROTH , OTHER_WRITE = S_IWOTH , OTHER_EXEC = S_IXOTH , OTHER_ALL = S_IRWXO } |
Bitmask values for file mode bits. More... | |
Functions | |
ModeT | cosmos::operator& (const ModeT a, const ModeT b) |
Support bit masking operations on ModeT for extracting type and mode parts. | |
COSMOS_API std::ostream & | operator<< (std::ostream &o, const cosmos::FileMode mode) |
Outputs a friendly version of the FileMode information onto the stream. | |
COSMOS_API std::ostream & | operator<< (std::ostream &o, const cosmos::FileType type) |
Outputs a symbolic type character onto the stream. | |
COSMOS_API std::ostream & | operator<< (std::ostream &o, const cosmos::OpenFlags flags) |
Outputs a friendly version of the OpenFlags bitmask onto the stream. | |
Basic types used in file system APIs.
Definition in file types.hxx.
using cosmos::AutoCloseFD = NamedBool<struct close_file_t, true> |
using cosmos::FileModeBits = BitMask<FileModeBit> |
using cosmos::FollowSymlinks = NamedBool<struct follow_links_t, false> |
using cosmos::OpenFlags = BitMask<OpenFlag> |
|
strong |
|
strong |
Bitmask values for file mode bits.
These are the lower (07777) bits of the st_mode field in struct stat.
These make up the classical UNIX user/group/other permission bits plus the three special bits for set-uid, set-gid and sticky bit.
Definition at line 125 of file types.hxx.
|
strong |
Primitive file descriptor.
Enumerator | |
---|---|
AT_CWD | special constant denoting the CWD in the *at family of API calls. |
MAX_FD | maximum file descriptor number; useful in fs::close_range(). |
Definition at line 32 of file types.hxx.
|
strong |
|
strong |
Combined file type and mode bits of a file (as found in st_mode struct stat).
In struct stat the st_mode field contains the file type value in the upper four bits and the file mode bitmask in the lower bits.
This type should be treated mostly opaque. Operate on the two parts independently by using FileType and FileMode.
Enumerator | |
---|---|
MODE_T_TYPE_MASK | masks all type bits |
MODE_T_MODE_MASK | masks all mode bits |
Definition at line 106 of file types.hxx.
|
strong |
Strong enum type wrapper for file descriptor settings on top of the basic OpenMode..
Definition at line 59 of file types.hxx.
|
strong |
Support bit masking operations on ModeT for extracting type and mode parts.
Definition at line 113 of file types.hxx.
COSMOS_API std::ostream & operator<< | ( | std::ostream & | o, |
const cosmos::FileMode | mode ) |
Outputs a friendly version of the FileMode information onto the stream.
Definition at line 103 of file FileStatus.cxx.
COSMOS_API std::ostream & operator<< | ( | std::ostream & | o, |
const cosmos::FileType | type ) |
Outputs a symbolic type character onto the stream.
Definition at line 108 of file FileStatus.cxx.
COSMOS_API std::ostream & operator<< | ( | std::ostream & | o, |
const cosmos::OpenFlags | flags ) |
Outputs a friendly version of the OpenFlags bitmask onto the stream.
Definition at line 113 of file FileStatus.cxx.