libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
cosmos::GroupInfo Class Reference

Group Database Information. More...

#include <GroupInfo.hxx>

+ Inheritance diagram for cosmos::GroupInfo:

Public Member Functions

 GroupInfo (const SysString name)
 Obtains GroupInfo for the given group name name.
 
 GroupInfo (const GroupID gid)
 Obtains GroupInfo for the given numerical group id gid.
 
GroupID gid () const
 The groups numerical ID.
 
SysString name () const
 Returns the name associated with the group.
 
SysString passwd () const
 Returns the optional encrypted group password.
 
SysStringVector members () const
 Returns a vector containing the name of users that are members of this group.
 
- Public Member Functions inherited from cosmos::InfoBase< struct group >
bool valid () const
 Returns whether data is present in the object.
 
void reset ()
 Zeroes out all data.
 
const struct group * raw () const
 Grants access to the raw underlying data structure.
 
struct group * raw ()
 

Additional Inherited Members

- Protected Member Functions inherited from cosmos::InfoBase< struct group >
bool getInfo (std::function< int(struct group **)> get_func, const char *errlabel)
 Helper to drive the common getter function logic for getpw* and getgr*.
 
- Protected Attributes inherited from cosmos::InfoBase< struct group >
bool m_valid
 
struct group m_info
 struct passwd or struct group.
 
std::vector< char > m_buf
 Extra space for storing the dynamic strings in the m_info struct.
 

Detailed Description

Group Database Information.

This type obtains and stores data for an individual group account ID as found in the /etc/group database.

Definition at line 22 of file GroupInfo.hxx.

Constructor & Destructor Documentation

◆ GroupInfo() [1/2]

cosmos::GroupInfo::GroupInfo ( const SysString name)
explicit

Obtains GroupInfo for the given group name name.

Definition at line 9 of file GroupInfo.cxx.

9 {
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}
SysString name() const
Returns the name associated with the group.
Definition GroupInfo.hxx:36
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

◆ GroupInfo() [2/2]

cosmos::GroupInfo::GroupInfo ( const GroupID gid)
explicit

Obtains GroupInfo for the given numerical group id gid.

Definition at line 22 of file GroupInfo.cxx.

22 {
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}
GroupID gid() const
The groups numerical ID.
Definition GroupInfo.hxx:33

Member Function Documentation

◆ gid()

GroupID cosmos::GroupInfo::gid ( ) const
inline

The groups numerical ID.

Definition at line 33 of file GroupInfo.hxx.

33{ return GroupID{m_info.gr_gid}; }

◆ members()

SysStringVector cosmos::GroupInfo::members ( ) const

Returns a vector containing the name of users that are members of this group.

Definition at line 34 of file GroupInfo.cxx.

34 {
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}
std::vector< SysString > SysStringVector
A vector of c-string wrappers.
Definition string.hxx:24

◆ name()

SysString cosmos::GroupInfo::name ( ) const
inline

Returns the name associated with the group.

Definition at line 36 of file GroupInfo.hxx.

36{ return SysString{m_info.gr_name}; }

◆ passwd()

SysString cosmos::GroupInfo::passwd ( ) const
inline

Returns the optional encrypted group password.

Definition at line 39 of file GroupInfo.hxx.

39{ return SysString{m_info.gr_passwd}; }

The documentation for this class was generated from the following files: