libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
InfoBase.hxx
1#pragma once
2
3// C++
4#include <functional>
5#include <string_view>
6#include <vector>
7
8namespace cosmos {
9
11template <typename DB_STRUCT>
12class InfoBase {
13public: // functions
14
16
20 bool valid() const { return m_valid; }
21
23 void reset();
24
26 const DB_STRUCT* raw() const { return &m_info; }
27 DB_STRUCT* raw() { return &m_info; }
28
29protected: // functions
30
32 bool getInfo(std::function<int(DB_STRUCT**)> get_func, const char *errlabel);
33
34protected: // data
35
36 bool m_valid = false;
38 DB_STRUCT m_info;
40 std::vector<char> m_buf;
41};
42
43} // end ns
Base class for PasswdInfo and GroupInfo.
Definition InfoBase.hxx:12
DB_STRUCT m_info
struct passwd or struct group.
Definition InfoBase.hxx:38
bool getInfo(std::function< int(DB_STRUCT **)> get_func, const char *errlabel)
Helper to drive the common getter function logic for getpw* and getgr*.
Definition InfoBase.hxx:17
std::vector< char > m_buf
Extra space for storing the dynamic strings in the m_info struct.
Definition InfoBase.hxx:40
bool valid() const
Returns whether data is present in the object.
Definition InfoBase.hxx:20
const DB_STRUCT * raw() const
Grants access to the raw underlying data structure.
Definition InfoBase.hxx:26
void reset()
Zeroes out all data.
Definition InfoBase.hxx:40