7#include <cosmos/error/ApiError.hxx>
8#include <cosmos/error/RuntimeError.hxx>
9#include <cosmos/memory.hxx>
13constexpr size_t BUF_INIT_SIZE = 512;
14constexpr size_t BUF_MAX_SIZE = 65535;
16template <
typename DB_STRUCT>
19 m_buf.resize(BUF_INIT_SIZE);
22 const auto err = get_func(&res);
25 return res !=
nullptr;
26 case Errno::RANGE: m_buf.resize(m_buf.size() << 1);
break;
30 if (m_buf.size() > BUF_MAX_SIZE) {
39template <
typename DB_STRUCT>
Specialized exception type used when system APIs fail.
bool getInfo(std::function< int(DB_STRUCT **)> get_func, const char *errlabel)
Helper to drive the common getter function logic for getpw* and getgr*.
void reset()
Zeroes out all data.
Exception type for generic runtime errors.
Errno
Strong enum type representing errno error constants.
void zero_object(T &obj)
Completely overwrites the given object with zeroes.