libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
FileStatus.cxx
1// C++
2#include <utility>
3
4// cosmos
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>
10
11namespace cosmos {
12
13void FileStatus::throwBadType(const std::string_view context) const {
14 cosmos_throw (UsageError(context));
15}
16
18 if (fstat(to_integral(fd.raw()), &m_st) != 0) {
19 cosmos_throw (ApiError("fstat()"));
20 }
21}
22
23void FileStatus::updateFrom(const SysString path, const FollowSymlinks follow) {
24 auto statfunc = follow ? ::stat : ::lstat;
25
26 if (statfunc(path.raw(), &m_st) != 0) {
27 cosmos_throw (FileError(path, follow ? "stat" : "lstat"));
28 }
29}
30
31void FileStatus::updateFrom(const DirFD fd, const SysString path, const FollowSymlinks follow) {
32
33 auto res = ::fstatat(to_integral(fd.raw()), path.raw(), &m_st, follow ? 0 : AT_SYMLINK_NOFOLLOW);
34
35 if (res != 0) {
36 cosmos_throw (FileError(path, "fstatat()"));
37 }
38}
39
41 switch (type().raw()) {
42 case FileType::BLOCKDEV:
43 case FileType::CHARDEV:
44 return DeviceID{m_st.st_rdev};
45 default:
46 throwBadType("attempted to get st_rdev but this is no dev!");
47 return DeviceID{0};
48 }
49}
50
51std::string FileMode::symbolic() const {
52 std::string ret;
53
54 if (canOwnerRead()) ret.push_back('r');
55 else ret.push_back('-');
56
57 if (canOwnerWrite()) ret.push_back('w');
58 else ret.push_back('-');
59
60 if (isSetUID()) ret.push_back('s');
61 else if (canOwnerExec()) ret.push_back('x');
62 else ret.push_back('-');
63
64 if (canGroupRead()) ret.push_back('r');
65 else ret.push_back('-');
66
67 if (canGroupWrite()) ret.push_back('w');
68 else ret.push_back('-');
69
70 if (isSetGID()) ret.push_back('s');
71 else if (canGroupExec()) ret.push_back('x');
72 else ret.push_back('-');
73
74 if (canOthersRead()) ret.push_back('r');
75 else ret.push_back('-');
76
77 if (canOthersWrite()) ret.push_back('w');
78 else ret.push_back('-');
79
80 if (isSticky()) ret.push_back('t');
81 else if(canOthersExec()) ret.push_back('x');
82 else ret.push_back('-');
83
84 return ret;
85}
86
87char FileType::symbolic() const {
88 switch(raw()) {
89 default: return '?';
90 case NONE: return '-';
91 case SOCKET: return 's';
92 case LINK: return 'l';
93 case REGULAR: return '-';
94 case BLOCKDEV: return 'b';
95 case DIRECTORY: return 'd';
96 case CHARDEV: return 'c';
97 case FIFO: return 'p';
98 }
99}
100
101} // end ns
102
103std::ostream& operator<<(std::ostream &o, const cosmos::FileMode mode) {
104 o << mode.symbolic() << " (" << cosmos::OctNum{cosmos::to_integral(mode.raw()), 4} << ")";
105 return o;
106}
107
108std::ostream& operator<<(std::ostream &o, const cosmos::FileType type) {
109 o << type.symbolic();
110 return o;
111}
112
113std::ostream& operator<<(std::ostream &o, const cosmos::OpenFlags flags) {
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}
Specialized exception type used when system APIs fail.
Definition ApiError.hxx:18
A typesafe bit mask representation using class enums.
Definition BitMask.hxx:19
A specialized FileDescriptor for directory objects.
Definition DirFD.hxx:17
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.
Definition FileError.hxx:22
Represents the mode bits portion of a ModeT.
Definition types.hxx:221
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.
Definition types.hxx:151
@ REGULAR
symbolic link
Definition types.hxx:172
char symbolic() const
Returns a symbolic character representing the type.
Strong template type to wrap boolean values in a named type.
Definition utils.hxx:50
DeviceID
A device file identification type (consists of major:minor parts).
Definition types.hxx:48
OpenFlag
Strong enum type wrapper for file descriptor settings on top of the basic OpenMode....
Definition types.hxx:59
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.
Definition SysString.hxx:33