libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
GroupInfo.cxx
1// cosmos
2#include <cosmos/error/UsageError.hxx>
3#include <cosmos/GroupInfo.hxx>
4#include <cosmos/private/InfoBase.hxx>
5#include <cosmos/utils.hxx>
6
7namespace cosmos {
8
10 auto call = [&](struct group **res) -> int {
11 return getgrnam_r(name.raw(), &m_info,
12 m_buf.data(), m_buf.size(),
13 res);
14 };
15
16 m_valid = getInfo(call, "getgrnam_r()");
17
18 if (!m_valid)
19 reset();
20}
21
22GroupInfo::GroupInfo(const GroupID gid) {
23 auto call = [&](struct group **res) -> int {
24 return getgrgid_r(to_integral(gid), &m_info,
25 m_buf.data(), m_buf.size(),
26 res);
27 };
28
29 m_valid = getInfo(call, "getgrgid_r()");
30 if (!m_valid)
31 reset();
32}
33
35 if (!valid()) {
36 cosmos_throw (UsageError{"cannot get members of invalid GroupInfo"});
37 }
38
40
41 for (char **member = m_info.gr_mem; *member != nullptr; member++) {
42 ret.push_back(*member);
43 }
44
45 return ret;
46}
47
48} // end ns
GroupID gid() const
The groups numerical ID.
Definition GroupInfo.hxx:33
SysStringVector members() const
Returns a vector containing the name of users that are members of this group.
Definition GroupInfo.cxx:34
SysString name() const
Returns the name associated with the group.
Definition GroupInfo.hxx:36
GroupInfo(const SysString name)
Obtains GroupInfo for the given group name name.
Definition GroupInfo.cxx:9
bool getInfo(std::function< int(struct group **)> get_func, const char *errlabel)
Definition InfoBase.hxx:17
std::vector< char > m_buf
Definition InfoBase.hxx:40
Exception type for logical usage errors within the application.
std::vector< SysString > SysStringVector
A vector of c-string wrappers.
Definition string.hxx:24
Wrapper type around a C-style string for use with system APIs.
Definition SysString.hxx:33