libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
cosmos::FileLockGuard Struct Reference

Helper type for guarding a FileLock. More...

#include <FileLock.hxx>

Public Member Functions

 FileLockGuard (FileDescriptor fd, const FileLock &lock)
 

Protected Attributes

FileDescriptor m_fd
 
FileLock m_lock
 

Detailed Description

Helper type for guarding a FileLock.

This guard covers the typical use of FileLock: Using blocking waits for open file description locks. The concrete lock type and range is selected at construction time. Ad destruction time a corresponding unlock operation is carried out.

Definition at line 149 of file FileLock.hxx.

Constructor & Destructor Documentation

◆ FileLockGuard()

cosmos::FileLockGuard::FileLockGuard ( FileDescriptor fd,
const FileLock & lock )

Definition at line 7 of file FileLock.cxx.

7 :
8 m_fd{fd}, m_lock{lock} {
9 if (lock.type() == FileLock::Type::UNLOCK) {
10 cosmos_throw (UsageError("Cannot combine UNLOCK operation with FileLockGuard"));
11 }
12 m_fd.setOFDLockWait(m_lock);
13}
void setOFDLockWait(const FileLock &lock) const
Just like setLockWait() but using open-file-description locks.

◆ ~FileLockGuard()

cosmos::FileLockGuard::~FileLockGuard ( )
inline

Definition at line 153 of file FileLock.hxx.

153 {
154 m_lock.setType(FileLock::Type::UNLOCK);
155 m_fd.setOFDLockWait(m_lock);
156 }

Member Data Documentation

◆ m_fd

FileDescriptor cosmos::FileLockGuard::m_fd
protected

Definition at line 160 of file FileLock.hxx.

◆ m_lock

FileLock cosmos::FileLockGuard::m_lock
protected

Definition at line 161 of file FileLock.hxx.


The documentation for this struct was generated from the following files: