2#include <cosmos/error/UsageError.hxx>
3#include <cosmos/GroupInfo.hxx>
4#include <cosmos/private/InfoBase.hxx>
5#include <cosmos/utils.hxx>
10 auto call = [&](
struct group **res) ->
int {
16 m_valid =
getInfo(call,
"getgrnam_r()");
23 auto call = [&](
struct group **res) ->
int {
24 return getgrgid_r(to_integral(
gid), &
m_info,
29 m_valid =
getInfo(call,
"getgrgid_r()");
36 cosmos_throw (
UsageError{
"cannot get members of invalid GroupInfo"});
41 for (
char **member =
m_info.gr_mem; *member !=
nullptr; member++) {
42 ret.push_back(*member);
GroupID gid() const
The groups numerical ID.
SysStringVector members() const
Returns a vector containing the name of users that are members of this group.
SysString name() const
Returns the name associated with the group.
GroupInfo(const SysString name)
Obtains GroupInfo for the given group name name.
bool getInfo(std::function< int(struct group **)> get_func, const char *errlabel)
std::vector< char > m_buf
Exception type for logical usage errors within the application.
std::vector< SysString > SysStringVector
A vector of c-string wrappers.
Wrapper type around a C-style string for use with system APIs.