5#include <cosmos/error/FileError.hxx>
6#include <cosmos/error/UsageError.hxx>
7#include <cosmos/formatting.hxx>
8#include <cosmos/fs/FileStatus.hxx>
9#include <cosmos/utils.hxx>
13void FileStatus::throwBadType(
const std::string_view context)
const {
14 cosmos_throw (UsageError(context));
18 if (fstat(to_integral(fd.
raw()), &m_st) != 0) {
24 auto statfunc = follow ? ::stat : ::lstat;
26 if (statfunc(path.raw(), &m_st) != 0) {
27 cosmos_throw (
FileError(path, follow ?
"stat" :
"lstat"));
33 auto res = ::fstatat(to_integral(fd.
raw()), path.raw(), &m_st, follow ? 0 : AT_SYMLINK_NOFOLLOW);
36 cosmos_throw (
FileError(path,
"fstatat()"));
41 switch (
type().raw()) {
42 case FileType::BLOCKDEV:
43 case FileType::CHARDEV:
46 throwBadType(
"attempted to get st_rdev but this is no dev!");
54 if (canOwnerRead()) ret.push_back(
'r');
55 else ret.push_back(
'-');
57 if (canOwnerWrite()) ret.push_back(
'w');
58 else ret.push_back(
'-');
60 if (isSetUID()) ret.push_back(
's');
61 else if (canOwnerExec()) ret.push_back(
'x');
62 else ret.push_back(
'-');
64 if (canGroupRead()) ret.push_back(
'r');
65 else ret.push_back(
'-');
67 if (canGroupWrite()) ret.push_back(
'w');
68 else ret.push_back(
'-');
70 if (isSetGID()) ret.push_back(
's');
71 else if (canGroupExec()) ret.push_back(
'x');
72 else ret.push_back(
'-');
74 if (canOthersRead()) ret.push_back(
'r');
75 else ret.push_back(
'-');
77 if (canOthersWrite()) ret.push_back(
'w');
78 else ret.push_back(
'-');
80 if (isSticky()) ret.push_back(
't');
81 else if(canOthersExec()) ret.push_back(
'x');
82 else ret.push_back(
'-');
90 case NONE:
return '-';
91 case SOCKET:
return 's';
92 case LINK:
return 'l';
94 case BLOCKDEV:
return 'b';
95 case DIRECTORY:
return 'd';
96 case CHARDEV:
return 'c';
97 case FIFO:
return 'p';
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"}
135 auto [flag, label] = pair;
Specialized exception type used when system APIs fail.
A typesafe bit mask representation using class enums.
A specialized FileDescriptor for directory objects.
Thin Wrapper around OS file descriptors.
FileNum raw() const
Returns the primitive file descriptor contained in the object.
Specialized exception type used for file related APIs.
Represents the mode bits portion of a ModeT.
std::string symbolic() const
Returns a symbolic string representation of the mode.
DeviceID representedDevice() const
Returns the identifier of the device this file represents.
FileType type() const
Returns the FileType representation for the file.
void updateFrom(const SysString path, const FollowSymlinks follow=FollowSymlinks{false})
Obtains stat data for the file object at the given path (stat, lstat).
Convenience wrapper around FileT.
char symbolic() const
Returns a symbolic character representing the type.
Strong template type to wrap boolean values in a named type.
DeviceID
A device file identification type (consists of major:minor parts).
OpenFlag
Strong enum type wrapper for file descriptor settings on top of the basic OpenMode....
Helper to output a primitive integer as octal in the style of 0o123.
Wrapper type around a C-style string for use with system APIs.