libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
cosmos::FileMode Class Reference

Represents the mode bits portion of a ModeT. More...

#include <types.hxx>

Public Member Functions

 FileMode (const FileModeBits mask)
 Constructs a FileMode from the given bitmask object.
 
 FileMode (const ModeT raw=ModeT::NONE)
 Constructs a FileMode from the given raw input.
 
bool isSetUID () const
 
bool isSetGID () const
 
bool isSticky () const
 
bool canOwnerRead () const
 
bool canOwnerWrite () const
 
bool canOwnerExec () const
 
bool canGroupRead () const
 
bool canGroupWrite () const
 
bool canGroupExec () const
 
bool canOthersRead () const
 
bool canOthersWrite () const
 
bool canOthersExec () const
 
bool canAnyRead () const
 
bool canAnyWrite () const
 
bool canAnyExec () const
 
FileModeBitsmask ()
 Returns the complete bitmask object.
 
const FileModeBitsmask () const
 
std::string symbolic () const
 Returns a symbolic string representation of the mode.
 
ModeT raw () const
 
bool operator== (const FileMode &other) const
 
bool operator!= (const FileMode &other) const
 

Protected Attributes

FileModeBits m_mode
 bitmask for mode bits
 

Detailed Description

Represents the mode bits portion of a ModeT.

This is wrapper around the primitive ModeT describing the classical UNIX file permissions and mode bits.

Definition at line 221 of file types.hxx.

Constructor & Destructor Documentation

◆ FileMode() [1/2]

cosmos::FileMode::FileMode ( const FileModeBits mask)
inlineexplicit

Constructs a FileMode from the given bitmask object.

Definition at line 224 of file types.hxx.

224 :
225 m_mode{mask}
226 {}
FileModeBits m_mode
bitmask for mode bits
Definition types.hxx:302
FileModeBits & mask()
Returns the complete bitmask object.
Definition types.hxx:278

◆ FileMode() [2/2]

cosmos::FileMode::FileMode ( const ModeT raw = ModeT::NONE)
inline

Constructs a FileMode from the given raw input.

  • can be used to specify a literal: FileMode{ModeT{0751}}
  • or to pass in a mode_t received from a system call (struct stat)

This constructor is consciously not explicit to allow simpler use of octal literals.

Definition at line 236 of file types.hxx.

236 :
237 m_mode{static_cast<FileModeBit>(raw & ModeT::MODE_T_MODE_MASK)}
238 {}
FileModeBit
Bitmask values for file mode bits.
Definition types.hxx:125

Member Function Documentation

◆ canAnyExec()

bool cosmos::FileMode::canAnyExec ( ) const
inline

Definition at line 270 of file types.hxx.

270 {
271 return m_mode.anyOf({
272 FileModeBit::OWNER_EXEC,
273 FileModeBit::GROUP_EXEC,
274 FileModeBit::OTHER_EXEC});
275 }
bool anyOf(const std::initializer_list< ENUM > &flags) const
Returns whether any of the given values is set.
Definition BitMask.hxx:237

◆ canAnyRead()

bool cosmos::FileMode::canAnyRead ( ) const
inline

Definition at line 256 of file types.hxx.

256 {
257 return m_mode.anyOf({
258 FileModeBit::OWNER_READ,
259 FileModeBit::GROUP_READ,
260 FileModeBit::OTHER_READ});
261 }

◆ canAnyWrite()

bool cosmos::FileMode::canAnyWrite ( ) const
inline

Definition at line 263 of file types.hxx.

263 {
264 return m_mode.anyOf({
265 FileModeBit::OWNER_WRITE,
266 FileModeBit::GROUP_WRITE,
267 FileModeBit::OTHER_WRITE});
268 }

◆ canGroupExec()

bool cosmos::FileMode::canGroupExec ( ) const
inline

Definition at line 250 of file types.hxx.

250{ return m_mode[FileModeBit::GROUP_EXEC]; }

◆ canGroupRead()

bool cosmos::FileMode::canGroupRead ( ) const
inline

Definition at line 248 of file types.hxx.

248{ return m_mode[FileModeBit::GROUP_READ]; }

◆ canGroupWrite()

bool cosmos::FileMode::canGroupWrite ( ) const
inline

Definition at line 249 of file types.hxx.

249{ return m_mode[FileModeBit::GROUP_WRITE]; }

◆ canOthersExec()

bool cosmos::FileMode::canOthersExec ( ) const
inline

Definition at line 254 of file types.hxx.

254{ return m_mode[FileModeBit::OTHER_EXEC]; }

◆ canOthersRead()

bool cosmos::FileMode::canOthersRead ( ) const
inline

Definition at line 252 of file types.hxx.

252{ return m_mode[FileModeBit::OTHER_READ]; }

◆ canOthersWrite()

bool cosmos::FileMode::canOthersWrite ( ) const
inline

Definition at line 253 of file types.hxx.

253{ return m_mode[FileModeBit::OTHER_WRITE]; }

◆ canOwnerExec()

bool cosmos::FileMode::canOwnerExec ( ) const
inline

Definition at line 246 of file types.hxx.

246{ return m_mode[FileModeBit::OWNER_EXEC]; }

◆ canOwnerRead()

bool cosmos::FileMode::canOwnerRead ( ) const
inline

Definition at line 244 of file types.hxx.

244{ return m_mode[FileModeBit::OWNER_READ]; }

◆ canOwnerWrite()

bool cosmos::FileMode::canOwnerWrite ( ) const
inline

Definition at line 245 of file types.hxx.

245{ return m_mode[FileModeBit::OWNER_WRITE]; }

◆ isSetGID()

bool cosmos::FileMode::isSetGID ( ) const
inline

Definition at line 241 of file types.hxx.

241{ return m_mode[FileModeBit::SETGID]; }

◆ isSetUID()

bool cosmos::FileMode::isSetUID ( ) const
inline

Definition at line 240 of file types.hxx.

240{ return m_mode[FileModeBit::SETUID]; }

◆ isSticky()

bool cosmos::FileMode::isSticky ( ) const
inline

Definition at line 242 of file types.hxx.

242{ return m_mode[FileModeBit::STICKY]; }

◆ mask() [1/2]

FileModeBits & cosmos::FileMode::mask ( )
inline

Returns the complete bitmask object.

Definition at line 278 of file types.hxx.

278{ return m_mode; }

◆ mask() [2/2]

const FileModeBits & cosmos::FileMode::mask ( ) const
inline

Definition at line 279 of file types.hxx.

279{ return m_mode; }

◆ operator!=()

bool cosmos::FileMode::operator!= ( const FileMode & other) const
inline

Definition at line 295 of file types.hxx.

295 {
296 return !(*this == other);
297 }

◆ operator==()

bool cosmos::FileMode::operator== ( const FileMode & other) const
inline

Definition at line 291 of file types.hxx.

291 {
292 return m_mode == other.m_mode;
293 }

◆ raw()

ModeT cosmos::FileMode::raw ( ) const
inline

Definition at line 289 of file types.hxx.

289{ return ModeT{m_mode.raw()}; }
EnumBaseType raw() const
Returns the raw bitfield integer.
Definition BitMask.hxx:56
ModeT
Combined file type and mode bits of a file (as found in st_mode struct stat).
Definition types.hxx:106

◆ symbolic()

std::string cosmos::FileMode::symbolic ( ) const

Returns a symbolic string representation of the mode.

This returns a string like "r-x---r-x" as known from the ls utility and similar tools. The type is not part of this. You can use FileType::symbolic() to also get the type character in front.

Definition at line 51 of file FileStatus.cxx.

51 {
52 std::string ret;
53
54 if (canOwnerRead()) ret.push_back('r');
55 else ret.push_back('-');
56
57 if (canOwnerWrite()) ret.push_back('w');
58 else ret.push_back('-');
59
60 if (isSetUID()) ret.push_back('s');
61 else if (canOwnerExec()) ret.push_back('x');
62 else ret.push_back('-');
63
64 if (canGroupRead()) ret.push_back('r');
65 else ret.push_back('-');
66
67 if (canGroupWrite()) ret.push_back('w');
68 else ret.push_back('-');
69
70 if (isSetGID()) ret.push_back('s');
71 else if (canGroupExec()) ret.push_back('x');
72 else ret.push_back('-');
73
74 if (canOthersRead()) ret.push_back('r');
75 else ret.push_back('-');
76
77 if (canOthersWrite()) ret.push_back('w');
78 else ret.push_back('-');
79
80 if (isSticky()) ret.push_back('t');
81 else if(canOthersExec()) ret.push_back('x');
82 else ret.push_back('-');
83
84 return ret;
85}

Member Data Documentation

◆ m_mode

FileModeBits cosmos::FileMode::m_mode
protected

bitmask for mode bits

Definition at line 302 of file types.hxx.


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