libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
GroupInfo.hxx
1#pragma once
2
3// Linux
4#include <grp.h>
5
6// C++
7#include <string_view>
8
9// cosmos
10#include <cosmos/InfoBase.hxx>
11#include <cosmos/string.hxx>
12#include <cosmos/types.hxx>
13#include <cosmos/utils.hxx>
14
15namespace cosmos {
16
18
22class COSMOS_API GroupInfo :
23 public InfoBase<struct group> {
24public: // functions
25
27 explicit GroupInfo(const SysString name);
28
30 explicit GroupInfo(const GroupID gid);
31
33 GroupID gid() const { return GroupID{m_info.gr_gid}; }
34
36 SysString name() const { return SysString{m_info.gr_name}; }
37
39 SysString passwd() const { return SysString{m_info.gr_passwd}; }
40
42 SysStringVector members() const;
43};
44
45} // end ns
Group Database Information.
Definition GroupInfo.hxx:23
SysString passwd() const
Returns the optional encrypted group password.
Definition GroupInfo.hxx:39
GroupID gid() const
The groups numerical ID.
Definition GroupInfo.hxx:33
SysString name() const
Returns the name associated with the group.
Definition GroupInfo.hxx:36
Base class for PasswdInfo and GroupInfo.
Definition InfoBase.hxx:12
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