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>
42 updateFrom(path, follow);
50 updateFrom(fd, path, follow);
98 return m_st.st_mode != 0;
103 return ModeT{m_st.st_mode};
128 return Inode{m_st.st_ino};
133 return m_st.st_nlink;
138 return UserID{m_st.st_uid};
143 return GroupID{m_st.st_gid};
159 switch (type().raw()) {
160 case FileType::REGULAR:
162 case FileType::DIRECTORY:
165 throwBadType(
"invalid type for st_size");
188 return m_st.st_blksize;
197 return m_st.st_blocks;
210 return *
reinterpret_cast<const RealTime*
>(&m_st.st_mtim);
219 return *
reinterpret_cast<const RealTime*
>(&m_st.st_ctim);
229 return *
reinterpret_cast<const RealTime*
>(&m_st.st_atim);
239 return this->inode() == other.
inode() &&
240 this->device() == other.
device();
250 return std::memcmp(&m_st, &other.m_st,
sizeof(m_st)) == 0;
254 return !(*
this == other);
259 void throwBadType(
const std::string_view context)
const;
A specialized FileDescriptor for directory objects.
Thin Wrapper around OS file descriptors.
Represents the mode bits portion of a ModeT.
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.
Strong template type to wrap boolean values in a named type.
A C++ wrapper around the POSIX struct timespec coupled to a specific CLOCK type.
DeviceID
A device file identification type (consists of major:minor parts).
Inode
A unique file number for a file on a block device.
ModeT
Combined file type and mode bits of a file (as found in st_mode struct stat).
Wrapper type around a C-style string for use with system APIs.