libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
FileLock.hxx
1#pragma once
2
3// Linux
4#include <fcntl.h>
5
6// cosmos
7#include <cosmos/fs/FileDescriptor.hxx>
8#include <cosmos/memory.hxx>
9#include <cosmos/proc/types.hxx>
10#include <cosmos/utils.hxx>
11
12namespace cosmos {
13
15
59class FileLock :
60 public flock {
61public: // types
62
63 enum class Type : short {
64 READ_LOCK = F_RDLCK,
65 WRITE_LOCK = F_WRLCK,
66 UNLOCK = F_UNLCK
67 };
68
69 // note: although the basic constants are the same, a different base
70 // type is used in StreamIO::SeekType, so use a dedicated enum type
71 // here.
72 enum class SeekDir : short {
73 SET = SEEK_SET,
74 CUR = SEEK_CUR,
75 END = SEEK_END
76 };
77
78public: // functions
79
80 explicit FileLock(const Type type, const SeekDir dir = SeekDir::SET) {
81 clear(type, dir);
82 }
83
84 void clear(const Type type, const SeekDir dir = SeekDir::SET) {
85 zero_object(static_cast<flock&>(*this));
86 setType(type);
87 setWhence(dir);
88 }
89
90 Type type() const {
91 return Type{this->l_type};
92 }
93
94 void setType(const Type type) {
95 this->l_type = cosmos::to_integral(type);
96 }
97
98 SeekDir whence() const {
99 return SeekDir{this->l_whence};
100 }
101
102 void setWhence(const SeekDir dir) {
103 this->l_whence = cosmos::to_integral(dir);
104 }
105
106 off_t start() const {
107 return this->l_start;
108 }
109
110 void setStart(const off_t start) {
111 this->l_start = start;
112 }
113
114 off_t length() const {
115 return this->l_len;
116 }
117
118 void setLength(const off_t len) {
119 this->l_len = len;
120 }
121
122 ProcessID pid() const {
123 return ProcessID{this->l_pid};
124 }
125
127 void clearPID() {
128 this->l_pid = 0;
129 }
130
132
137 bool isOFDLock() const {
138 return pid() == ProcessID::INVALID;
139 }
140};
141
143
149struct COSMOS_API FileLockGuard {
150
151 FileLockGuard(FileDescriptor fd, const FileLock &lock);
152
154 m_lock.setType(FileLock::Type::UNLOCK);
155 m_fd.setOFDLockWait(m_lock);
156 }
157
158protected: // data
159
160 FileDescriptor m_fd;
161 FileLock m_lock;
162};
163
164} // end ns
Thin Wrapper around OS file descriptors.
Wrapper around struct flock used for advisory file locking in FileDescriptor.
Definition FileLock.hxx:60
bool isOFDLock() const
Check output data whether it describes an OFD lock.
Definition FileLock.hxx:137
void clearPID()
reset the process ID to zero which is a requirement for setting OFD locks.
Definition FileLock.hxx:127
void zero_object(T &obj)
Completely overwrites the given object with zeroes.
Definition memory.hxx:23
ProcessID
Definition types.hxx:25
Helper type for guarding a FileLock.
Definition FileLock.hxx:149