7#include <cosmos/fs/FileDescriptor.hxx>
8#include <cosmos/memory.hxx>
9#include <cosmos/proc/types.hxx>
10#include <cosmos/utils.hxx>
63 enum class Type :
short {
72 enum class SeekDir :
short {
80 explicit FileLock(
const Type type,
const SeekDir dir = SeekDir::SET) {
84 void clear(
const Type type,
const SeekDir dir = SeekDir::SET) {
91 return Type{this->l_type};
94 void setType(
const Type type) {
95 this->l_type = cosmos::to_integral(type);
98 SeekDir whence()
const {
99 return SeekDir{this->l_whence};
102 void setWhence(
const SeekDir dir) {
103 this->l_whence = cosmos::to_integral(dir);
106 off_t start()
const {
107 return this->l_start;
110 void setStart(
const off_t start) {
111 this->l_start = start;
114 off_t length()
const {
118 void setLength(
const off_t len) {
138 return pid() == ProcessID::INVALID;
154 m_lock.setType(FileLock::Type::UNLOCK);
155 m_fd.setOFDLockWait(m_lock);
Thin Wrapper around OS file descriptors.
Wrapper around struct flock used for advisory file locking in FileDescriptor.
bool isOFDLock() const
Check output data whether it describes an OFD lock.
void clearPID()
reset the process ID to zero which is a requirement for setting OFD locks.
void zero_object(T &obj)
Completely overwrites the given object with zeroes.
Helper type for guarding a FileLock.