libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
InfoBase.hxx
1#pragma once
2
3// C++
4#include <cstring>
5
6// cosmos
7#include <cosmos/error/ApiError.hxx>
8#include <cosmos/error/RuntimeError.hxx>
9#include <cosmos/memory.hxx>
10
11namespace cosmos {
12
13constexpr size_t BUF_INIT_SIZE = 512;
14constexpr size_t BUF_MAX_SIZE = 65535;
15
16template <typename DB_STRUCT>
17bool InfoBase<DB_STRUCT>::getInfo(std::function<int(DB_STRUCT**)> get_func, const char *errlabel) {
18 DB_STRUCT *res;
19 m_buf.resize(BUF_INIT_SIZE);
20
21 while (true) {
22 const auto err = get_func(&res);
23 switch(Errno{err}) {
24 case Errno::NO_ERROR:
25 return res != nullptr;
26 case Errno::RANGE: m_buf.resize(m_buf.size() << 1); break;
27 default: cosmos_throw(ApiError(errlabel, Errno{err})); break;
28 }
29
30 if (m_buf.size() > BUF_MAX_SIZE) {
31 // don't get too crazy here
32 cosmos_throw(RuntimeError("buffer size limit reached"));
33 }
34 }
35
36 return false;
37}
38
39template <typename DB_STRUCT>
41 m_buf.clear();
42 zero_object(m_info);
43 m_valid = false;
44}
45
46} // end ns
Specialized exception type used when system APIs fail.
Definition ApiError.hxx:18
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
void reset()
Zeroes out all data.
Definition InfoBase.hxx:40
Exception type for generic runtime errors.
Errno
Strong enum type representing errno error constants.
Definition errno.hxx:29
void zero_object(T &obj)
Completely overwrites the given object with zeroes.
Definition memory.hxx:23