libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
FileStatus.hxx
1#pragma once
2
3// Linux
4#include <sys/stat.h>
5
6// C++
7#include <cstring>
8#include <string_view>
9
10// cosmos
11#include <cosmos/SysString.hxx>
12#include <cosmos/dso_export.h>
13#include <cosmos/fs/DirFD.hxx>
14#include <cosmos/fs/FileDescriptor.hxx>
15#include <cosmos/fs/types.hxx>
16#include <cosmos/time/types.hxx>
17#include <cosmos/types.hxx>
18
19namespace cosmos {
20
22
34class COSMOS_API FileStatus {
35public: // functions
36
37 FileStatus() {
38 reset();
39 }
40
41 explicit FileStatus(const SysString path, const FollowSymlinks follow = FollowSymlinks{false}) {
42 updateFrom(path, follow);
43 }
44
45 explicit FileStatus(const FileDescriptor fd) {
46 updateFrom(fd);
47 }
48
49 explicit FileStatus(const DirFD fd, const SysString path, const FollowSymlinks follow = FollowSymlinks{false}) {
50 updateFrom(fd, path, follow);
51 }
52
54
61 void updateFrom(const SysString path, const FollowSymlinks follow = FollowSymlinks{false});
62
64
71 void updateFrom(const FileDescriptor fd);
72
74
88 void updateFrom(const DirFD fd, const SysString path, const FollowSymlinks follow = FollowSymlinks{false});
89
90 void reset() {
91 // we identify an invalid stat structure by clearing the mode
92 // field only. Due to the file type bits it should never be
93 // zero for any valid struct stat.
94 m_st.st_mode = 0;
95 }
96
97 bool valid() const {
98 return m_st.st_mode != 0;
99 }
100
102 ModeT rawMode() const {
103 return ModeT{m_st.st_mode};
104 }
105
107 FileMode mode() const {
108 return FileMode{rawMode()};
109 }
110
112 FileType type() const {
113 return FileType{rawMode()};
114 }
115
117 DeviceID device() const {
118 return DeviceID{m_st.st_dev};
119 }
120
122
127 Inode inode() const {
128 return Inode{m_st.st_ino};
129 }
130
132 nlink_t numLinks() const {
133 return m_st.st_nlink;
134 }
135
137 UserID uid() const {
138 return UserID{m_st.st_uid};
139 }
140
142 GroupID gid() const {
143 return GroupID{m_st.st_gid};
144 }
145
147
158 off_t size() const {
159 switch (type().raw()) {
160 case FileType::REGULAR:
161 case FileType::LINK:
162 case FileType::DIRECTORY:
163 return m_st.st_size;
164 default:
165 throwBadType("invalid type for st_size");
166 return 0;
167 }
168 };
169
171
178 DeviceID representedDevice() const;
179
181
187 blksize_t blockSize() const {
188 return m_st.st_blksize;
189 }
190
192
196 blkcnt_t allocatedBlocks() const {
197 return m_st.st_blocks;
198 }
199
200 // NOTE: the TimeSpec timestamp fields are POSIX 2008, before we only
201 // had second resolution integers in st_mtime, st_ctime, st_atime.
202
204 const RealTime& modTime() const {
205 // This is a bit dirty, casting the struct timespec to its
206 // wrapper type. Should work as long as we don't change the
207 // object size (is checked in the compilation unit for
208 // TimeSpec). This saves us some copying since struct timespec
209 // is 16 bytes in size.
210 return *reinterpret_cast<const RealTime*>(&m_st.st_mtim);
211 }
212
214
218 const RealTime& statusTime() const {
219 return *reinterpret_cast<const RealTime*>(&m_st.st_ctim);
220 }
221
223
228 const RealTime& accessTime() const {
229 return *reinterpret_cast<const RealTime*>(&m_st.st_atim);
230 }
231
233
238 bool isSameFile(const FileStatus &other) const {
239 return this->inode() == other.inode() &&
240 this->device() == other.device();
241 }
242
244
249 bool operator==(const FileStatus &other) {
250 return std::memcmp(&m_st, &other.m_st, sizeof(m_st)) == 0;
251 }
252
253 bool operator!=(const FileStatus &other) {
254 return !(*this == other);
255 }
256
257protected: // functions
258
259 void throwBadType(const std::string_view context) const;
260
261protected: // data
262
263 struct stat m_st;
264};
265
266} // end ns
A specialized FileDescriptor for directory objects.
Definition DirFD.hxx:17
Thin Wrapper around OS file descriptors.
Represents the mode bits portion of a ModeT.
Definition types.hxx:221
Obtain and access file status information.
Inode inode() const
Returns the unique file inode for the file.
const RealTime & accessTime() const
Returns the time of the last (read) access of the file content.
FileMode mode() const
Returns the file mode bitmask containing the permission bits for the file.
bool operator==(const FileStatus &other)
Compares the two objects on raw data level.
off_t size() const
Returns the size of the file in bytes.
bool isSameFile(const FileStatus &other) const
Returns whether the two FileStatus objects refer to the same file.
ModeT rawMode() const
Returns the composite ModeT for the file.
blksize_t blockSize() const
Preferred block size for file system I/O.
FileType type() const
Returns the FileType representation for the file.
const RealTime & statusTime() const
Returns the time of the last status (inode) modification.
const RealTime & modTime() const
Returns the time of the last modification of the file content.
nlink_t numLinks() const
Returns the number of hard links for this file.
GroupID gid() const
Returns the GID of the owner of the file.
UserID uid() const
Returns the UID of the owner of the file.
DeviceID device() const
Returns the identifier for the block device this file resides on.
blkcnt_t allocatedBlocks() const
Returns the number of blocks in 512 byte units allocated to the file.
Convenience wrapper around FileT.
Definition types.hxx:151
Strong template type to wrap boolean values in a named type.
Definition utils.hxx:50
A C++ wrapper around the POSIX struct timespec coupled to a specific CLOCK type.
Definition types.hxx:57
DeviceID
A device file identification type (consists of major:minor parts).
Definition types.hxx:48
Inode
A unique file number for a file on a block device.
Definition types.hxx:44
ModeT
Combined file type and mode bits of a file (as found in st_mode struct stat).
Definition types.hxx:106
Wrapper type around a C-style string for use with system APIs.
Definition SysString.hxx:33