libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
PasswdInfo.hxx
1#pragma once
2
3// Linux
4#include <pwd.h>
5
6// cosmos
7#include <cosmos/InfoBase.hxx>
8#include <cosmos/types.hxx>
9#include <cosmos/SysString.hxx>
10
11namespace cosmos {
12
14
18class COSMOS_API PasswdInfo :
19 public InfoBase<struct passwd> {
20public: // functions
21
23
30 explicit PasswdInfo(const SysString name);
31
33
36 explicit PasswdInfo(const UserID uid);
37
38 SysString name() const { return m_info.pw_name; }
39
41 SysString passwd() const { return m_info.pw_passwd; }
42
43 UserID uid() const { return UserID{m_info.pw_uid}; }
44
46 GroupID gid() const { return GroupID{m_info.pw_gid}; }
47
49 SysString gecos() const { return m_info.pw_gecos; }
50
52 SysString homeDir() const { return m_info.pw_dir; }
53
55 SysString shell() const { return m_info.pw_shell; }
56};
57
58} // end ns
Base class for PasswdInfo and GroupInfo.
Definition InfoBase.hxx:12
Password Database Information for Users.
SysString passwd() const
Returns the optional encrypted password.
SysString homeDir() const
Path to the user's home directory.
GroupID gid() const
The user's main group ID.
SysString gecos() const
Returns the comment field which is used for different things like a full user name.
SysString shell() const
Optional command interpreter for the user.
Wrapper type around a C-style string for use with system APIs.
Definition SysString.hxx:33