libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
types.hxx File Reference
#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.
 

Detailed Description

Basic types used in file system APIs.

Definition in file types.hxx.

Typedef Documentation

◆ AutoCloseFD

using cosmos::AutoCloseFD = NamedBool<struct close_file_t, true>

Strong boolean type for expressing the responsibility to close file descriptors.

Definition at line 29 of file types.hxx.

◆ FileModeBits

using cosmos::FileModeBits = BitMask<FileModeBit>

BitMask of FileModeBit (represents the mode bit portion of ModeT).

Definition at line 144 of file types.hxx.

◆ FollowSymlinks

using cosmos::FollowSymlinks = NamedBool<struct follow_links_t, false>

Strong boolean type to enable following of symlinks in the file system.

Definition at line 26 of file types.hxx.

◆ OpenFlags

using cosmos::OpenFlags = BitMask<OpenFlag>

Collection of OpenFlag used for opening files.

Definition at line 96 of file types.hxx.

Enumeration Type Documentation

◆ DeviceID

enum class cosmos::DeviceID : dev_t
strong

A device file identification type (consists of major:minor parts).

Definition at line 48 of file types.hxx.

48 : dev_t {
49};

◆ FileModeBit

enum class cosmos::FileModeBit : mode_t
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.

125 : mode_t {
126 SETUID = S_ISUID, // set user-id bit
127 SETGID = S_ISGID, // set group-id bit
128 STICKY = S_ISVTX, // only has a meaning for directory, typically set on /tmp
129 OWNER_READ = S_IRUSR,
130 OWNER_WRITE = S_IWUSR,
131 OWNER_EXEC = S_IXUSR,
132 OWNER_ALL = S_IRWXU,
133 GROUP_READ = S_IRGRP,
134 GROUP_WRITE = S_IWGRP,
135 GROUP_EXEC = S_IXGRP,
136 GROUP_ALL = S_IRWXG,
137 OTHER_READ = S_IROTH,
138 OTHER_WRITE = S_IWOTH,
139 OTHER_EXEC = S_IXOTH,
140 OTHER_ALL = S_IRWXO
141};

◆ FileNum

enum class cosmos::FileNum : int
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.

32 : int {
33 INVALID = -1,
34 STDIN = STDIN_FILENO,
35 STDOUT = STDOUT_FILENO,
36 STDERR = STDERR_FILENO,
38 AT_CWD = AT_FDCWD,
40 MAX_FD = ~int(0)
41};
@ MAX_FD
maximum file descriptor number; useful in fs::close_range().

◆ Inode

enum class cosmos::Inode : ino_t
strong

A unique file number for a file on a block device.

Definition at line 44 of file types.hxx.

44 : ino_t {
45};

◆ ModeT

enum class cosmos::ModeT : mode_t
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.

106 : mode_t {
107 NONE = 0,
108 MODE_T_TYPE_MASK = S_IFMT,
109 MODE_T_MODE_MASK = ~static_cast<mode_t>(S_IFMT)
110};
@ MODE_T_MODE_MASK
masks all mode bits
@ MODE_T_TYPE_MASK
masks all type bits

◆ OpenFlag

enum class cosmos::OpenFlag : int
strong

Strong enum type wrapper for file descriptor settings on top of the basic OpenMode..

Enumerator
APPEND 

Writes will always happen at the end of the file.

ASYNC 

Enable signal driven I/O for certain file types.

CLOEXEC 

Close file descriptor during execve() system call.

CREATE 

Create the file if it doesn't exist (file mode required as well).

DIRECT 

Bypass Kernel side caching.

DIRECTORY 

Require the path to refer to a directory.

DSYNC 

Use synchronous write operation, after write() returns everything should be written to disk.

EXCLUSIVE 

Use this in conjunction with CREATE to make sure the file gets newly created.

NOATIME 

Don't update the access time of the file if certain preconditions are fulfilled.

NO_CONTROLLING_TTY 

If the file refers to a terminal, don't make it the controlling terminal of the calling process.

NOFOLLOW 

Don't follow symlinks in the final path component.

NONBLOCK 

Attempt to open the file in non-blocking mode causing I/O operations not to block.

PATH 

Open only the file location, not the actual file object the resulting file descriptor can mostly only be used for Navigating the file system using *at system calls.

SYNC 

Similar to DSYNC, see man page.

TMPFILE 

Attempt to create an unnamed temporary file, path needs to specify the directory where to create it.

TRUNCATE 

If write access was requested and is allowed then an already existing file object is truncated to zero size.

Definition at line 59 of file types.hxx.

59 : int {
61 APPEND = O_APPEND,
63 ASYNC = O_ASYNC,
65 CLOEXEC = O_CLOEXEC,
67 CREATE = O_CREAT,
69 DIRECT = O_DIRECT,
71 DIRECTORY = O_DIRECTORY,
73 DSYNC = O_DSYNC,
75 EXCLUSIVE = O_EXCL,
77 NOATIME = O_NOATIME,
79 NO_CONTROLLING_TTY = O_NOCTTY,
81 NOFOLLOW = O_NOFOLLOW,
83 NONBLOCK = O_NONBLOCK,
86 PATH = O_PATH,
88 SYNC = O_SYNC,
90 TMPFILE = O_TMPFILE,
92 TRUNCATE = O_TRUNC
93};
@ CLOEXEC
Instead of closing, mark all matching file descriptors as CLOEXEC.
@ TRUNCATE
If write access was requested and is allowed then an already existing file object is truncated to zer...
@ DSYNC
Use synchronous write operation, after write() returns everything should be written to disk.
@ SYNC
Similar to DSYNC, see man page.
@ DIRECTORY
Require the path to refer to a directory.
@ CREATE
Create the file if it doesn't exist (file mode required as well).
@ NOFOLLOW
Don't follow symlinks in the final path component.
@ APPEND
Writes will always happen at the end of the file.
@ NO_CONTROLLING_TTY
If the file refers to a terminal, don't make it the controlling terminal of the calling process.
@ DIRECT
Bypass Kernel side caching.
@ NOATIME
Don't update the access time of the file if certain preconditions are fulfilled.
@ NONBLOCK
Attempt to open the file in non-blocking mode causing I/O operations not to block.
@ TMPFILE
Attempt to create an unnamed temporary file, path needs to specify the directory where to create it.
@ ASYNC
Enable signal driven I/O for certain file types.
@ EXCLUSIVE
Use this in conjunction with CREATE to make sure the file gets newly created.

◆ OpenMode

enum class cosmos::OpenMode : int
strong

Strong enum type wrapper for the basic open() mode flag.

Definition at line 52 of file types.hxx.

52 : int {
53 READ_ONLY = O_RDONLY,
54 WRITE_ONLY = O_WRONLY,
55 READ_WRITE = O_RDWR
56};

Function Documentation

◆ operator&()

ModeT cosmos::operator& ( const ModeT a,
const ModeT b )
inline

Support bit masking operations on ModeT for extracting type and mode parts.

Definition at line 113 of file types.hxx.

113 {
114 auto ret = static_cast<mode_t>(a) & static_cast<mode_t>(b);
115 return static_cast<ModeT>(ret);
116}
ModeT
Combined file type and mode bits of a file (as found in st_mode struct stat).
Definition types.hxx:106

◆ operator<<() [1/3]

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.

103 {
104 o << mode.symbolic() << " (" << cosmos::OctNum{cosmos::to_integral(mode.raw()), 4} << ")";
105 return o;
106}
std::string symbolic() const
Returns a symbolic string representation of the mode.
Helper to output a primitive integer as octal in the style of 0o123.

◆ operator<<() [2/3]

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.

108 {
109 o << type.symbolic();
110 return o;
111}
char symbolic() const
Returns a symbolic character representing the type.

◆ operator<<() [3/3]

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.

113 {
114 using Flag = cosmos::OpenFlag;
115 bool first = true;
116
117 for (const auto &pair: {
118 std::make_pair(Flag::APPEND, "APPEND"),
119 {Flag::ASYNC, "ASYNC"},
120 {Flag::CLOEXEC, "CLOEXEC"},
121 {Flag::CREATE, "CREATE"},
122 {Flag::DIRECT, "DIRECT"},
123 {Flag::DIRECTORY, "DIRECTORY"},
124 {Flag::DSYNC, "DSYNC"},
125 {Flag::EXCLUSIVE, "EXCLUSIVE"},
126 {Flag::NOATIME, "NOATIME"},
127 {Flag::NO_CONTROLLING_TTY, "NO_CONTROLLING_TTY"},
128 {Flag::NOFOLLOW, "NOFOLLOW"},
129 {Flag::NONBLOCK, "NONBLOCK"},
130 {Flag::PATH, "PATH"},
131 {Flag::SYNC, "SYNC"},
132 {Flag::TMPFILE, "TMPFILE"},
133 {Flag::TRUNCATE, "TRUNCATE"}
134 }) {
135 auto [flag, label] = pair;
136
137 if (flags[flag]) {
138 if (first)
139 first = false;
140 else
141 o << ", ";
142
143 o << label;
144 }
145 }
146
147 return o;
148}
OpenFlag
Strong enum type wrapper for file descriptor settings on top of the basic OpenMode....
Definition types.hxx:59